]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - MAINTAINERS
Merge remote-tracking branch 'cifs/for-next'
[karo-tx-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 SEATTLE DEVICE TREE SUPPORT
677 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
678 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
679 M:      Tom Lendacky <thomas.lendacky@amd.com>
680 S:      Supported
681 F:      arch/arm64/boot/dts/amd/
682
683 AMD XGBE DRIVER
684 M:      Tom Lendacky <thomas.lendacky@amd.com>
685 L:      netdev@vger.kernel.org
686 S:      Supported
687 F:      drivers/net/ethernet/amd/xgbe/
688 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
689
690 AMS (Apple Motion Sensor) DRIVER
691 M:      Michael Hanselmann <linux-kernel@hansmi.ch>
692 S:      Supported
693 F:      drivers/macintosh/ams/
694
695 ANALOG DEVICES INC AD9389B DRIVER
696 M:      Hans Verkuil <hans.verkuil@cisco.com>
697 L:      linux-media@vger.kernel.org
698 S:      Maintained
699 F:      drivers/media/i2c/ad9389b*
700
701 ANALOG DEVICES INC ADV7180 DRIVER
702 M:      Lars-Peter Clausen <lars@metafoo.de>
703 L:      linux-media@vger.kernel.org
704 W:      http://ez.analog.com/community/linux-device-drivers
705 S:      Supported
706 F:      drivers/media/i2c/adv7180.c
707
708 ANALOG DEVICES INC ADV7511 DRIVER
709 M:      Hans Verkuil <hans.verkuil@cisco.com>
710 L:      linux-media@vger.kernel.org
711 S:      Maintained
712 F:      drivers/media/i2c/adv7511*
713
714 ANALOG DEVICES INC ADV7604 DRIVER
715 M:      Hans Verkuil <hans.verkuil@cisco.com>
716 L:      linux-media@vger.kernel.org
717 S:      Maintained
718 F:      drivers/media/i2c/adv7604*
719
720 ANALOG DEVICES INC ADV7842 DRIVER
721 M:      Hans Verkuil <hans.verkuil@cisco.com>
722 L:      linux-media@vger.kernel.org
723 S:      Maintained
724 F:      drivers/media/i2c/adv7842*
725
726 ANALOG DEVICES INC ASOC CODEC DRIVERS
727 M:      Lars-Peter Clausen <lars@metafoo.de>
728 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
729 W:      http://wiki.analog.com/
730 W:      http://ez.analog.com/community/linux-device-drivers
731 S:      Supported
732 F:      sound/soc/codecs/adau*
733 F:      sound/soc/codecs/adav*
734 F:      sound/soc/codecs/ad1*
735 F:      sound/soc/codecs/ad7*
736 F:      sound/soc/codecs/ssm*
737 F:      sound/soc/codecs/sigmadsp.*
738
739 ANALOG DEVICES INC ASOC DRIVERS
740 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
741 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
742 W:      http://blackfin.uclinux.org/
743 S:      Supported
744 F:      sound/soc/blackfin/*
745
746 ANALOG DEVICES INC IIO DRIVERS
747 M:      Lars-Peter Clausen <lars@metafoo.de>
748 M:      Michael Hennerich <Michael.Hennerich@analog.com>
749 W:      http://wiki.analog.com/
750 W:      http://ez.analog.com/community/linux-device-drivers
751 S:      Supported
752 F:      drivers/iio/*/ad*
753 X:      drivers/iio/*/adjd*
754 F:      drivers/staging/iio/*/ad*
755 F:      staging/iio/trigger/iio-trig-bfin-timer.c
756
757 ANALOG DEVICES INC DMA DRIVERS
758 M:      Lars-Peter Clausen <lars@metafoo.de>
759 W:      http://ez.analog.com/community/linux-device-drivers
760 S:      Supported
761 F:      drivers/dma/dma-axi-dmac.c
762
763 ANDROID DRIVERS
764 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
765 M:      Arve HjønnevĂ¥g <arve@android.com>
766 M:      Riley Andrews <riandrews@android.com>
767 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
768 L:      devel@driverdev.osuosl.org
769 S:      Supported
770 F:      drivers/android/
771 F:      drivers/staging/android/
772
773 AOA (Apple Onboard Audio) ALSA DRIVER
774 M:      Johannes Berg <johannes@sipsolutions.net>
775 L:      linuxppc-dev@lists.ozlabs.org
776 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
777 S:      Maintained
778 F:      sound/aoa/
779
780 APM DRIVER
781 M:      Jiri Kosina <jikos@kernel.org>
782 S:      Odd fixes
783 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
784 F:      arch/x86/kernel/apm_32.c
785 F:      include/linux/apm_bios.h
786 F:      include/uapi/linux/apm_bios.h
787 F:      drivers/char/apm-emulation.c
788
789 APPLE BCM5974 MULTITOUCH DRIVER
790 M:      Henrik Rydberg <rydberg@bitmath.org>
791 L:      linux-input@vger.kernel.org
792 S:      Odd fixes
793 F:      drivers/input/mouse/bcm5974.c
794
795 APPLE SMC DRIVER
796 M:      Henrik Rydberg <rydberg@bitmath.org>
797 L:      lm-sensors@lm-sensors.org
798 S:      Odd fixes
799 F:      drivers/hwmon/applesmc.c
800
801 APPLETALK NETWORK LAYER
802 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
803 S:      Maintained
804 F:      drivers/net/appletalk/
805 F:      net/appletalk/
806
807 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
808 M:      Duc Dang <dhdang@apm.com>
809 S:      Supported
810 F:      arch/arm64/boot/dts/apm/
811
812 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
813 M:      Iyappan Subramanian <isubramanian@apm.com>
814 M:      Keyur Chudgar <kchudgar@apm.com>
815 S:      Supported
816 F:      drivers/net/ethernet/apm/xgene/
817 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
818
819 APTINA CAMERA SENSOR PLL
820 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
821 L:      linux-media@vger.kernel.org
822 S:      Maintained
823 F:      drivers/media/i2c/aptina-pll.*
824
825 ARC FRAMEBUFFER DRIVER
826 M:      Jaya Kumar <jayalk@intworks.biz>
827 S:      Maintained
828 F:      drivers/video/fbdev/arcfb.c
829 F:      drivers/video/fbdev/core/fb_defio.c
830
831 ARCNET NETWORK LAYER
832 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
833 L:      netdev@vger.kernel.org
834 S:      Maintained
835 F:      drivers/net/arcnet/
836 F:      include/uapi/linux/if_arcnet.h
837
838 ARM MFM AND FLOPPY DRIVERS
839 M:      Ian Molton <spyro@f2s.com>
840 S:      Maintained
841 F:      arch/arm/lib/floppydma.S
842 F:      arch/arm/include/asm/floppy.h
843
844 ARM PMU PROFILING AND DEBUGGING
845 M:      Will Deacon <will.deacon@arm.com>
846 R:      Mark Rutland <mark.rutland@arm.com>
847 S:      Maintained
848 F:      arch/arm*/kernel/perf_*
849 F:      arch/arm/oprofile/common.c
850 F:      arch/arm*/kernel/hw_breakpoint.c
851 F:      arch/arm*/include/asm/hw_breakpoint.h
852 F:      arch/arm*/include/asm/perf_event.h
853 F:      drivers/perf/arm_pmu.c
854 F:      include/linux/perf/arm_pmu.h
855
856 ARM PORT
857 M:      Russell King <linux@arm.linux.org.uk>
858 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
859 W:      http://www.arm.linux.org.uk/
860 S:      Maintained
861 F:      arch/arm/
862
863 ARM SUB-ARCHITECTURES
864 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
865 S:      Maintained
866 F:      arch/arm/mach-*/
867 F:      arch/arm/plat-*/
868 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
869
870 ARM PRIMECELL AACI PL041 DRIVER
871 M:      Russell King <linux@arm.linux.org.uk>
872 S:      Maintained
873 F:      sound/arm/aaci.*
874
875 ARM PRIMECELL CLCD PL110 DRIVER
876 M:      Russell King <linux@arm.linux.org.uk>
877 S:      Maintained
878 F:      drivers/video/fbdev/amba-clcd.*
879
880 ARM PRIMECELL KMI PL050 DRIVER
881 M:      Russell King <linux@arm.linux.org.uk>
882 S:      Maintained
883 F:      drivers/input/serio/ambakmi.*
884 F:      include/linux/amba/kmi.h
885
886 ARM PRIMECELL MMCI PL180/1 DRIVER
887 M:      Russell King <linux@arm.linux.org.uk>
888 S:      Maintained
889 F:      drivers/mmc/host/mmci.*
890 F:      include/linux/amba/mmci.h
891
892 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
893 M:      Russell King <linux@arm.linux.org.uk>
894 S:      Maintained
895 F:      drivers/tty/serial/amba-pl01*.c
896 F:      include/linux/amba/serial.h
897
898 ARM PRIMECELL BUS SUPPORT
899 M:      Russell King <linux@arm.linux.org.uk>
900 S:      Maintained
901 F:      drivers/amba/
902 F:      include/linux/amba/bus.h
903
904 ARM/ADS SPHERE MACHINE SUPPORT
905 M:      Lennert Buytenhek <kernel@wantstofly.org>
906 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
907 S:      Maintained
908
909 ARM/AFEB9260 MACHINE SUPPORT
910 M:      Sergey Lapin <slapin@ossfans.org>
911 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
912 S:      Maintained
913
914 ARM/AJECO 1ARM MACHINE SUPPORT
915 M:      Lennert Buytenhek <kernel@wantstofly.org>
916 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
917 S:      Maintained
918
919 ARM/Allwinner sunXi SoC support
920 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
921 M:      Chen-Yu Tsai <wens@csie.org>
922 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
923 S:      Maintained
924 N:      sun[x456789]i
925
926 ARM/Allwinner SoC Clock Support
927 M:      Emilio LĂ³pez <emilio@elopez.com.ar>
928 S:      Maintained
929 F:      drivers/clk/sunxi/
930
931 ARM/Amlogic Meson SoC support
932 M:      Carlo Caione <carlo@caione.org>
933 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
934 L:      linux-meson@googlegroups.com
935 W:      http://linux-meson.com/
936 S:      Maintained
937 F:      arch/arm/mach-meson/
938 F:      arch/arm/boot/dts/meson*
939 N:      meson
940
941 ARM/Annapurna Labs ALPINE ARCHITECTURE
942 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
943 M:      Antoine Tenart <antoine.tenart@free-electrons.com>
944 S:      Maintained
945 F:      arch/arm/mach-alpine/
946 F:      arch/arm/boot/dts/alpine*
947 F:      arch/arm64/boot/dts/al/
948 F:      drivers/*/*alpine*
949
950 ARM/ARTPEC MACHINE SUPPORT
951 M:      Jesper Nilsson <jesper.nilsson@axis.com>
952 M:      Lars Persson <lars.persson@axis.com>
953 M:      Niklas Cassel <niklas.cassel@axis.com>
954 S:      Maintained
955 L:      linux-arm-kernel@axis.com
956 F:      arch/arm/mach-artpec
957 F:      arch/arm/boot/dts/artpec6*
958 F:      drivers/clk/clk-artpec6.c
959
960 ARM/ATMEL AT91RM9200, AT91SAM9 AND SAMA5 SOC SUPPORT
961 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
962 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
963 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
964 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
965 W:      http://www.linux4sam.org
966 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nferre/linux-at91.git
967 S:      Supported
968 F:      arch/arm/mach-at91/
969 F:      include/soc/at91/
970 F:      arch/arm/boot/dts/at91*.dts
971 F:      arch/arm/boot/dts/at91*.dtsi
972 F:      arch/arm/boot/dts/sama*.dts
973 F:      arch/arm/boot/dts/sama*.dtsi
974 F:      arch/arm/include/debug/at91.S
975
976 ARM/ATMEL AT91 Clock Support
977 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
978 S:      Maintained
979 F:      drivers/clk/at91
980
981 ARM/CALXEDA HIGHBANK ARCHITECTURE
982 M:      Rob Herring <robh@kernel.org>
983 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
984 S:      Maintained
985 F:      arch/arm/mach-highbank/
986 F:      arch/arm/boot/dts/highbank.dts
987 F:      arch/arm/boot/dts/ecx-*.dts*
988
989 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
990 M:      Krzysztof Halasa <khalasa@piap.pl>
991 S:      Maintained
992 F:      arch/arm/mach-cns3xxx/
993
994 ARM/CAVIUM THUNDER NETWORK DRIVER
995 M:      Sunil Goutham <sgoutham@cavium.com>
996 M:      Robert Richter <rric@kernel.org>
997 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
998 S:      Supported
999 F:      drivers/net/ethernet/cavium/thunder/
1000
1001 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1002 M:      Alexander Shiyan <shc_work@mail.ru>
1003 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1004 S:      Odd Fixes
1005 N:      clps711x
1006
1007 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1008 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1009 M:      Ryan Mallon <rmallon@gmail.com>
1010 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1011 S:      Maintained
1012 F:      arch/arm/mach-ep93xx/
1013 F:      arch/arm/mach-ep93xx/include/mach/
1014
1015 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1016 M:      Lennert Buytenhek <kernel@wantstofly.org>
1017 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1018 S:      Maintained
1019
1020 ARM/CLKDEV SUPPORT
1021 M:      Russell King <linux@arm.linux.org.uk>
1022 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1023 S:      Maintained
1024 F:      arch/arm/include/asm/clkdev.h
1025 F:      drivers/clk/clkdev.c
1026
1027 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
1028 M:      Mike Rapoport <mike@compulab.co.il>
1029 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1030 S:      Maintained
1031
1032 ARM/CONTEC MICRO9 MACHINE SUPPORT
1033 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1034 S:      Maintained
1035 F:      arch/arm/mach-ep93xx/micro9.c
1036
1037 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1038 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1039 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1040 S:      Maintained
1041 F:      drivers/hwtracing/coresight/*
1042 F:      Documentation/trace/coresight.txt
1043 F:      Documentation/devicetree/bindings/arm/coresight.txt
1044 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1045
1046 ARM/CORGI MACHINE SUPPORT
1047 M:      Richard Purdie <rpurdie@rpsys.net>
1048 S:      Maintained
1049
1050 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1051 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1052 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1053 T:      git git://github.com/ulli-kroll/linux.git
1054 S:      Maintained
1055 F:      arch/arm/mach-gemini/
1056 F:      drivers/rtc/rtc-gemini.c
1057
1058 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1059 M:      Barry Song <baohua@kernel.org>
1060 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1061 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1062 S:      Maintained
1063 F:      arch/arm/boot/dts/prima2*
1064 F:      arch/arm/mach-prima2/
1065 F:      drivers/clk/sirf/
1066 F:      drivers/clocksource/timer-prima2.c
1067 F:      drivers/clocksource/timer-atlas7.c
1068 N:      [^a-z]sirf
1069
1070 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1071 M:      Baruch Siach <baruch@tkos.co.il>
1072 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1073 S:      Maintained
1074 F:      arch/arm/boot/dts/cx92755*
1075 N:      digicolor
1076
1077 ARM/EBSA110 MACHINE SUPPORT
1078 M:      Russell King <linux@arm.linux.org.uk>
1079 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1080 W:      http://www.arm.linux.org.uk/
1081 S:      Maintained
1082 F:      arch/arm/mach-ebsa110/
1083 F:      drivers/net/ethernet/amd/am79c961a.*
1084
1085 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1086 M:      Uwe Kleine-König <kernel@pengutronix.de>
1087 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1088 S:      Maintained
1089 N:      efm32
1090
1091 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1092 M:      Daniel Ribeiro <drwyrm@gmail.com>
1093 M:      Stefan Schmidt <stefan@openezx.org>
1094 M:      Harald Welte <laforge@openezx.org>
1095 L:      openezx-devel@lists.openezx.org (moderated for non-subscribers)
1096 W:      http://www.openezx.org/
1097 S:      Maintained
1098 T:      topgit git://git.openezx.org/openezx.git
1099 F:      arch/arm/mach-pxa/ezx.c
1100
1101 ARM/FARADAY FA526 PORT
1102 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1103 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1104 S:      Maintained
1105 T:      git git://git.berlios.de/gemini-board
1106 F:      arch/arm/mm/*-fa*
1107
1108 ARM/FOOTBRIDGE ARCHITECTURE
1109 M:      Russell King <linux@arm.linux.org.uk>
1110 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1111 W:      http://www.arm.linux.org.uk/
1112 S:      Maintained
1113 F:      arch/arm/include/asm/hardware/dec21285.h
1114 F:      arch/arm/mach-footbridge/
1115
1116 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1117 M:      Shawn Guo <shawnguo@kernel.org>
1118 M:      Sascha Hauer <kernel@pengutronix.de>
1119 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1120 S:      Maintained
1121 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1122 F:      arch/arm/mach-imx/
1123 F:      arch/arm/mach-mxs/
1124 F:      arch/arm/boot/dts/imx*
1125 F:      arch/arm/configs/imx*_defconfig
1126 F:      drivers/clk/imx/
1127 F:      include/soc/imx/
1128
1129 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1130 M:      Shawn Guo <shawnguo@kernel.org>
1131 M:      Sascha Hauer <kernel@pengutronix.de>
1132 R:      Stefan Agner <stefan@agner.ch>
1133 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1134 S:      Maintained
1135 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1136 F:      arch/arm/mach-imx/*vf610*
1137 F:      arch/arm/boot/dts/vf*
1138
1139 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1140 M:      Lennert Buytenhek <kernel@wantstofly.org>
1141 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1142 S:      Maintained
1143
1144 ARM/GUMSTIX MACHINE SUPPORT
1145 M:      Steve Sakoman <sakoman@gmail.com>
1146 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1147 S:      Maintained
1148
1149 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1150 M:      Philipp Zabel <philipp.zabel@gmail.com>
1151 M:      Paul Parsons <lost.distance@yahoo.com>
1152 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1153 S:      Maintained
1154 F:      arch/arm/mach-pxa/hx4700.c
1155 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1156 F:      sound/soc/pxa/hx4700.c
1157
1158 ARM/HISILICON SOC SUPPORT
1159 M:      Wei Xu <xuwei5@hisilicon.com>
1160 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1161 W:      http://www.hisilicon.com
1162 S:      Supported
1163 T:      git git://github.com/hisilicon/linux-hisi.git
1164 F:      arch/arm/mach-hisi/
1165 F:      arch/arm/boot/dts/hi3*
1166 F:      arch/arm/boot/dts/hip*
1167 F:      arch/arm/boot/dts/hisi*
1168 F:      arch/arm64/boot/dts/hisilicon/
1169
1170 ARM/HP JORNADA 7XX MACHINE SUPPORT
1171 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1172 W:      www.jlime.com
1173 S:      Maintained
1174 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1175 F:      arch/arm/mach-sa1100/jornada720.c
1176 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1177
1178 ARM/IGEP MACHINE SUPPORT
1179 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1180 M:      Javier Martinez Canillas <javier@dowhile0.org>
1181 L:      linux-omap@vger.kernel.org
1182 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1183 S:      Maintained
1184 F:      arch/arm/boot/dts/omap3-igep*
1185
1186 ARM/INCOME PXA270 SUPPORT
1187 M:      Marek Vasut <marek.vasut@gmail.com>
1188 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1189 S:      Maintained
1190 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1191
1192 ARM/INTEL IOP32X ARM ARCHITECTURE
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 IOP33X ARM ARCHITECTURE
1198 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1199 S:      Orphan
1200
1201 ARM/INTEL IOP13XX ARM ARCHITECTURE
1202 M:      Lennert Buytenhek <kernel@wantstofly.org>
1203 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1204 S:      Maintained
1205
1206 ARM/INTEL IQ81342EX MACHINE SUPPORT
1207 M:      Lennert Buytenhek <kernel@wantstofly.org>
1208 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1209 S:      Maintained
1210
1211 ARM/INTEL IXDP2850 MACHINE SUPPORT
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/INTEL IXP4XX ARM ARCHITECTURE
1217 M:      Imre Kaloz <kaloz@openwrt.org>
1218 M:      Krzysztof Halasa <khalasa@piap.pl>
1219 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1220 S:      Maintained
1221 F:      arch/arm/mach-ixp4xx/
1222
1223 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1224 M:      Jonathan Cameron <jic23@cam.ac.uk>
1225 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1226 S:      Maintained
1227 F:      arch/arm/mach-pxa/stargate2.c
1228 F:      drivers/pcmcia/pxa2xx_stargate2.c
1229
1230 ARM/INTEL XSC3 (MANZANO) ARM CORE
1231 M:      Lennert Buytenhek <kernel@wantstofly.org>
1232 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1233 S:      Maintained
1234
1235 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1236 M:      Lennert Buytenhek <kernel@wantstofly.org>
1237 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1238 S:      Maintained
1239
1240 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
1241 M:      Santosh Shilimkar <ssantosh@kernel.org>
1242 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1243 S:      Maintained
1244 F:      arch/arm/mach-keystone/
1245 F:      arch/arm/boot/dts/k2*
1246 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
1247
1248 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
1249 M:      Santosh Shilimkar <ssantosh@kernel.org>
1250 L:      linux-kernel@vger.kernel.org
1251 S:      Maintained
1252 F:      drivers/clk/keystone/
1253
1254 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
1255 M:      Santosh Shilimkar <ssantosh@kernel.org>
1256 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1257 L:      linux-kernel@vger.kernel.org
1258 S:      Maintained
1259 F:      drivers/clocksource/timer-keystone.c
1260
1261 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
1262 M:      Santosh Shilimkar <ssantosh@kernel.org>
1263 L:      linux-kernel@vger.kernel.org
1264 S:      Maintained
1265 F:      drivers/power/reset/keystone-reset.c
1266
1267 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
1268 M:      Santosh Shilimkar <ssantosh@kernel.org>
1269 L:      linux-kernel@vger.kernel.org
1270 S:      Maintained
1271 F:      drivers/memory/*emif*
1272
1273 ARM/LOGICPD PXA270 MACHINE SUPPORT
1274 M:      Lennert Buytenhek <kernel@wantstofly.org>
1275 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1276 S:      Maintained
1277
1278 ARM/LPC18XX ARCHITECTURE
1279 M:      Joachim Eastwood <manabian@gmail.com>
1280 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1281 S:      Maintained
1282 F:      arch/arm/boot/dts/lpc43*
1283 F:      drivers/clk/nxp/clk-lpc18xx*
1284 F:      drivers/clocksource/time-lpc32xx.c
1285 F:      drivers/i2c/busses/i2c-lpc2k.c
1286 F:      drivers/memory/pl172.c
1287 F:      drivers/mtd/spi-nor/nxp-spifi.c
1288 F:      drivers/rtc/rtc-lpc24xx.c
1289 N:      lpc18xx
1290
1291 ARM/MAGICIAN MACHINE SUPPORT
1292 M:      Philipp Zabel <philipp.zabel@gmail.com>
1293 S:      Maintained
1294
1295 ARM/Marvell Kirkwood and Armada 370, 375, 38x, XP SOC support
1296 M:      Jason Cooper <jason@lakedaemon.net>
1297 M:      Andrew Lunn <andrew@lunn.ch>
1298 M:      Gregory Clement <gregory.clement@free-electrons.com>
1299 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1300 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1301 S:      Maintained
1302 F:      arch/arm/mach-mvebu/
1303 F:      drivers/rtc/rtc-armada38x.c
1304 F:      arch/arm/boot/dts/armada*
1305 F:      arch/arm/boot/dts/kirkwood*
1306 F:      arch/arm64/boot/dts/marvell/armada*
1307
1308
1309 ARM/Marvell Berlin SoC support
1310 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1311 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1312 S:      Maintained
1313 F:      arch/arm/mach-berlin/
1314 F:      arch/arm/boot/dts/berlin*
1315 F:      arch/arm64/boot/dts/marvell/berlin*
1316
1317
1318 ARM/Marvell Dove/MV78xx0/Orion SOC support
1319 M:      Jason Cooper <jason@lakedaemon.net>
1320 M:      Andrew Lunn <andrew@lunn.ch>
1321 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1322 M:      Gregory Clement <gregory.clement@free-electrons.com>
1323 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1324 S:      Maintained
1325 F:      arch/arm/mach-dove/
1326 F:      arch/arm/mach-mv78xx0/
1327 F:      arch/arm/mach-orion5x/
1328 F:      arch/arm/plat-orion/
1329 F:      arch/arm/boot/dts/dove*
1330 F:      arch/arm/boot/dts/orion5x*
1331
1332
1333 ARM/Orion SoC/Technologic Systems TS-78xx platform support
1334 M:      Alexander Clouter <alex@digriz.org.uk>
1335 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1336 W:      http://www.digriz.org.uk/ts78xx/kernel
1337 S:      Maintained
1338 F:      arch/arm/mach-orion5x/ts78xx-*
1339
1340 ARM/Mediatek RTC DRIVER
1341 M:      Eddie Huang <eddie.huang@mediatek.com>
1342 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1343 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1344 S:      Maintained
1345 F:      drivers/rtc/rtc-mt6397.c
1346
1347 ARM/Mediatek SoC support
1348 M:      Matthias Brugger <matthias.bgg@gmail.com>
1349 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1350 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1351 S:      Maintained
1352 F:      arch/arm/boot/dts/mt6*
1353 F:      arch/arm/boot/dts/mt8*
1354 F:      arch/arm/mach-mediatek/
1355 N:      mtk
1356 K:      mediatek
1357
1358 ARM/Mediatek USB3 PHY DRIVER
1359 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
1360 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1361 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1362 S:      Maintained
1363 F:      drivers/phy/phy-mt65xx-usb3.c
1364
1365 ARM/MICREL KS8695 ARCHITECTURE
1366 M:      Greg Ungerer <gerg@uclinux.org>
1367 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1368 F:      arch/arm/mach-ks8695/
1369 S:      Odd Fixes
1370
1371 ARM/MIOA701 MACHINE SUPPORT
1372 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1373 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1374 F:      arch/arm/mach-pxa/mioa701.c
1375 S:      Maintained
1376
1377 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1378 M:      Michael Petchkovsky <mkpetch@internode.on.net>
1379 S:      Maintained
1380
1381 ARM/NOMADIK ARCHITECTURE
1382 M:      Alessandro Rubini <rubini@unipv.it>
1383 M:      Linus Walleij <linus.walleij@linaro.org>
1384 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1385 S:      Maintained
1386 F:      arch/arm/mach-nomadik/
1387 F:      drivers/pinctrl/nomadik/
1388 F:      drivers/i2c/busses/i2c-nomadik.c
1389 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
1390
1391 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
1392 M:      Nelson Castillo <arhuaco@freaks-unidos.net>
1393 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
1394 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
1395 S:      Supported
1396
1397 ARM/TOSA MACHINE SUPPORT
1398 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1399 M:      Dirk Opfer <dirk@opfer-online.de>
1400 S:      Maintained
1401
1402 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
1403 M:      Marek Vasut <marek.vasut@gmail.com>
1404 L:      linux-arm-kernel@lists.infradead.org
1405 W:      http://hackndev.com
1406 S:      Maintained
1407 F:      arch/arm/mach-pxa/include/mach/palmtx.h
1408 F:      arch/arm/mach-pxa/palmtx.c
1409 F:      arch/arm/mach-pxa/include/mach/palmt5.h
1410 F:      arch/arm/mach-pxa/palmt5.c
1411 F:      arch/arm/mach-pxa/include/mach/palmld.h
1412 F:      arch/arm/mach-pxa/palmld.c
1413 F:      arch/arm/mach-pxa/include/mach/palmte2.h
1414 F:      arch/arm/mach-pxa/palmte2.c
1415 F:      arch/arm/mach-pxa/include/mach/palmtc.h
1416 F:      arch/arm/mach-pxa/palmtc.c
1417
1418 ARM/PALM TREO SUPPORT
1419 M:      Tomas Cech <sleep_walker@suse.com>
1420 L:      linux-arm-kernel@lists.infradead.org
1421 W:      http://hackndev.com
1422 S:      Maintained
1423 F:      arch/arm/mach-pxa/include/mach/palmtreo.h
1424 F:      arch/arm/mach-pxa/palmtreo.c
1425
1426 ARM/PALMZ72 SUPPORT
1427 M:      Sergey Lapin <slapin@ossfans.org>
1428 L:      linux-arm-kernel@lists.infradead.org
1429 W:      http://hackndev.com
1430 S:      Maintained
1431 F:      arch/arm/mach-pxa/include/mach/palmz72.h
1432 F:      arch/arm/mach-pxa/palmz72.c
1433
1434 ARM/PLEB SUPPORT
1435 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
1436 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1437 S:      Maintained
1438
1439 ARM/PT DIGITAL BOARD PORT
1440 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
1441 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1442 W:      http://www.arm.linux.org.uk/
1443 S:      Maintained
1444
1445 ARM/QUALCOMM SUPPORT
1446 M:      Andy Gross <andy.gross@linaro.org>
1447 M:      David Brown <david.brown@linaro.org>
1448 L:      linux-arm-msm@vger.kernel.org
1449 L:      linux-soc@vger.kernel.org
1450 S:      Maintained
1451 F:      arch/arm/boot/dts/qcom-*.dts
1452 F:      arch/arm/boot/dts/qcom-*.dtsi
1453 F:      arch/arm/mach-qcom/
1454 F:      arch/arm64/boot/dts/qcom/*
1455 F:      drivers/i2c/busses/i2c-qup.c
1456 F:      drivers/clk/qcom/
1457 F:      drivers/soc/qcom/
1458 F:      drivers/spi/spi-qup.c
1459 F:      drivers/tty/serial/msm_serial.h
1460 F:      drivers/tty/serial/msm_serial.c
1461 F:      drivers/*/pm8???-*
1462 F:      drivers/mfd/ssbi.c
1463 F:      drivers/firmware/qcom_scm.c
1464 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/agross/linux.git
1465
1466 ARM/RADISYS ENP2611 MACHINE SUPPORT
1467 M:      Lennert Buytenhek <kernel@wantstofly.org>
1468 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1469 S:      Maintained
1470
1471 ARM/RENESAS ARM64 ARCHITECTURE
1472 M:      Simon Horman <horms@verge.net.au>
1473 M:      Magnus Damm <magnus.damm@gmail.com>
1474 L:      linux-renesas-soc@vger.kernel.org
1475 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
1476 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1477 S:      Supported
1478 F:      arch/arm64/boot/dts/renesas/
1479
1480 ARM/RISCPC ARCHITECTURE
1481 M:      Russell King <linux@arm.linux.org.uk>
1482 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1483 W:      http://www.arm.linux.org.uk/
1484 S:      Maintained
1485 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
1486 F:      arch/arm/include/asm/hardware/ioc.h
1487 F:      arch/arm/include/asm/hardware/iomd.h
1488 F:      arch/arm/include/asm/hardware/memc.h
1489 F:      arch/arm/mach-rpc/
1490 F:      drivers/net/ethernet/8390/etherh.c
1491 F:      drivers/net/ethernet/i825xx/ether1*
1492 F:      drivers/net/ethernet/seeq/ether3*
1493 F:      drivers/scsi/arm/
1494
1495 ARM/Rockchip SoC support
1496 M:      Heiko Stuebner <heiko@sntech.de>
1497 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1498 L:      linux-rockchip@lists.infradead.org
1499 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
1500 S:      Maintained
1501 F:      arch/arm/boot/dts/rk3*
1502 F:      arch/arm/mach-rockchip/
1503 F:      drivers/clk/rockchip/
1504 F:      drivers/i2c/busses/i2c-rk3x.c
1505 F:      drivers/*/*rockchip*
1506 F:      drivers/*/*/*rockchip*
1507 F:      sound/soc/rockchip/
1508 N:      rockchip
1509
1510 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
1511 M:      Kukjin Kim <kgene@kernel.org>
1512 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
1513 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1514 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1515 S:      Maintained
1516 F:      arch/arm/boot/dts/s3c*
1517 F:      arch/arm/boot/dts/s5p*
1518 F:      arch/arm/boot/dts/samsung*
1519 F:      arch/arm/boot/dts/exynos*
1520 F:      arch/arm64/boot/dts/exynos/
1521 F:      arch/arm/plat-samsung/
1522 F:      arch/arm/mach-s3c24*/
1523 F:      arch/arm/mach-s3c64xx/
1524 F:      arch/arm/mach-s5p*/
1525 F:      arch/arm/mach-exynos*/
1526 F:      drivers/*/*s3c2410*
1527 F:      drivers/*/*/*s3c2410*
1528 F:      drivers/memory/samsung/*
1529 F:      drivers/soc/samsung/*
1530 F:      drivers/spi/spi-s3c*
1531 F:      sound/soc/samsung/*
1532 F:      Documentation/arm/Samsung/
1533 F:      Documentation/devicetree/bindings/arm/samsung/
1534 F:      Documentation/devicetree/bindings/sram/samsung-sram.txt
1535 F:      Documentation/devicetree/bindings/power/pd-samsung.txt
1536 N:      exynos
1537
1538 ARM/SAMSUNG MOBILE MACHINE SUPPORT
1539 M:      Kyungmin Park <kyungmin.park@samsung.com>
1540 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1541 S:      Maintained
1542 F:      arch/arm/mach-s5pv210/
1543
1544 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1545 M:      Kyungmin Park <kyungmin.park@samsung.com>
1546 M:      Kamil Debski <k.debski@samsung.com>
1547 L:      linux-arm-kernel@lists.infradead.org
1548 L:      linux-media@vger.kernel.org
1549 S:      Maintained
1550 F:      drivers/media/platform/s5p-g2d/
1551
1552 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1553 M:      Kyungmin Park <kyungmin.park@samsung.com>
1554 M:      Kamil Debski <k.debski@samsung.com>
1555 M:      Jeongtae Park <jtp.park@samsung.com>
1556 L:      linux-arm-kernel@lists.infradead.org
1557 L:      linux-media@vger.kernel.org
1558 S:      Maintained
1559 F:      arch/arm/plat-samsung/s5p-dev-mfc.c
1560 F:      drivers/media/platform/s5p-mfc/
1561
1562 ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1563 M:      Kyungmin Park <kyungmin.park@samsung.com>
1564 M:      Tomasz Stanislawski <t.stanislaws@samsung.com>
1565 L:      linux-arm-kernel@lists.infradead.org
1566 L:      linux-media@vger.kernel.org
1567 S:      Maintained
1568 F:      drivers/media/platform/s5p-tv/
1569
1570 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
1571 M:      Andrzej Pietrasiewicz <andrzej.p@samsung.com>
1572 M:      Jacek Anaszewski <j.anaszewski@samsung.com>
1573 L:      linux-arm-kernel@lists.infradead.org
1574 L:      linux-media@vger.kernel.org
1575 S:      Maintained
1576 F:      drivers/media/platform/s5p-jpeg/
1577
1578 ARM/SHMOBILE ARM ARCHITECTURE
1579 M:      Simon Horman <horms@verge.net.au>
1580 M:      Magnus Damm <magnus.damm@gmail.com>
1581 L:      linux-renesas-soc@vger.kernel.org
1582 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
1583 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1584 S:      Supported
1585 F:      arch/arm/boot/dts/emev2*
1586 F:      arch/arm/boot/dts/r7s*
1587 F:      arch/arm/boot/dts/r8a*
1588 F:      arch/arm/boot/dts/sh*
1589 F:      arch/arm/configs/shmobile_defconfig
1590 F:      arch/arm/include/debug/renesas-scif.S
1591 F:      arch/arm/mach-shmobile/
1592 F:      drivers/sh/
1593
1594 ARM/SOCFPGA ARCHITECTURE
1595 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1596 S:      Maintained
1597 F:      arch/arm/mach-socfpga/
1598 F:      arch/arm/boot/dts/socfpga*
1599 F:      arch/arm/configs/socfpga_defconfig
1600 F:      arch/arm64/boot/dts/altera/
1601 W:      http://www.rocketboards.org
1602 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
1603
1604 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1605 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1606 S:      Maintained
1607 F:      drivers/clk/socfpga/
1608
1609 ARM/SOCFPGA EDAC SUPPORT
1610 M:      Thor Thayer <tthayer@opensource.altera.com>
1611 S:      Maintained
1612 F:      drivers/edac/altera_edac.
1613
1614 ARM/STI ARCHITECTURE
1615 M:      Srinivas Kandagatla <srinivas.kandagatla@gmail.com>
1616 M:      Maxime Coquelin <maxime.coquelin@st.com>
1617 M:      Patrice Chotard <patrice.chotard@st.com>
1618 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1619 L:      kernel@stlinux.com
1620 W:      http://www.stlinux.com
1621 S:      Maintained
1622 F:      arch/arm/mach-sti/
1623 F:      arch/arm/boot/dts/sti*
1624 F:      drivers/char/hw_random/st-rng.c
1625 F:      drivers/clocksource/arm_global_timer.c
1626 F:      drivers/clocksource/clksrc_st_lpc.c
1627 F:      drivers/i2c/busses/i2c-st.c
1628 F:      drivers/media/rc/st_rc.c
1629 F:      drivers/media/platform/sti/c8sectpfe/
1630 F:      drivers/mmc/host/sdhci-st.c
1631 F:      drivers/phy/phy-miphy28lp.c
1632 F:      drivers/phy/phy-miphy365x.c
1633 F:      drivers/phy/phy-stih407-usb.c
1634 F:      drivers/phy/phy-stih41x-usb.c
1635 F:      drivers/pinctrl/pinctrl-st.c
1636 F:      drivers/reset/sti/
1637 F:      drivers/rtc/rtc-st-lpc.c
1638 F:      drivers/tty/serial/st-asc.c
1639 F:      drivers/usb/dwc3/dwc3-st.c
1640 F:      drivers/usb/host/ehci-st.c
1641 F:      drivers/usb/host/ohci-st.c
1642 F:      drivers/watchdog/st_lpc_wdt.c
1643 F:      drivers/ata/ahci_st.c
1644
1645 ARM/STM32 ARCHITECTURE
1646 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
1647 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1648 S:      Maintained
1649 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git
1650 N:      stm32
1651 F:      drivers/clocksource/armv7m_systick.c
1652
1653 ARM/TANGO ARCHITECTURE
1654 M:      Marc Gonzalez <marc_gonzalez@sigmadesigns.com>
1655 L:      linux-arm-kernel@lists.infradead.org
1656 S:      Maintained
1657 F:      arch/arm/mach-tango/
1658 F:      arch/arm/boot/dts/tango*
1659
1660 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
1661 M:      Lennert Buytenhek <kernel@wantstofly.org>
1662 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1663 S:      Maintained
1664
1665 ARM/TETON BGA MACHINE SUPPORT
1666 M:      "Mark F. Brown" <mark.brown314@gmail.com>
1667 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1668 S:      Maintained
1669
1670 ARM/THECUS N2100 MACHINE SUPPORT
1671 M:      Lennert Buytenhek <kernel@wantstofly.org>
1672 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1673 S:      Maintained
1674
1675 ARM/NUVOTON W90X900 ARM ARCHITECTURE
1676 M:      Wan ZongShun <mcuos.com@gmail.com>
1677 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1678 W:      http://www.mcuos.com
1679 S:      Maintained
1680 F:      arch/arm/mach-w90x900/
1681 F:      drivers/input/keyboard/w90p910_keypad.c
1682 F:      drivers/input/touchscreen/w90p910_ts.c
1683 F:      drivers/watchdog/nuc900_wdt.c
1684 F:      drivers/net/ethernet/nuvoton/w90p910_ether.c
1685 F:      drivers/mtd/nand/nuc900_nand.c
1686 F:      drivers/rtc/rtc-nuc900.c
1687 F:      drivers/spi/spi-nuc900.c
1688 F:      drivers/usb/host/ehci-w90x900.c
1689 F:      drivers/video/fbdev/nuc900fb.c
1690
1691 ARM/U300 MACHINE SUPPORT
1692 M:      Linus Walleij <linus.walleij@linaro.org>
1693 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1694 S:      Supported
1695 F:      arch/arm/mach-u300/
1696 F:      drivers/clocksource/timer-u300.c
1697 F:      drivers/i2c/busses/i2c-stu300.c
1698 F:      drivers/rtc/rtc-coh901331.c
1699 F:      drivers/watchdog/coh901327_wdt.c
1700 F:      drivers/dma/coh901318*
1701 F:      drivers/mfd/ab3100*
1702 F:      drivers/rtc/rtc-ab3100.c
1703 F:      drivers/rtc/rtc-coh901331.c
1704 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1705
1706 ARM/UNIPHIER ARCHITECTURE
1707 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
1708 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1709 S:      Maintained
1710 F:      arch/arm/boot/dts/uniphier*
1711 F:      arch/arm/include/asm/hardware/cache-uniphier.h
1712 F:      arch/arm/mach-uniphier/
1713 F:      arch/arm/mm/cache-uniphier.c
1714 F:      arch/arm64/boot/dts/socionext/
1715 F:      drivers/bus/uniphier-system-bus.c
1716 F:      drivers/i2c/busses/i2c-uniphier*
1717 F:      drivers/pinctrl/uniphier/
1718 F:      drivers/tty/serial/8250/8250_uniphier.c
1719 N:      uniphier
1720
1721 ARM/Ux500 ARM ARCHITECTURE
1722 M:      Linus Walleij <linus.walleij@linaro.org>
1723 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1724 S:      Maintained
1725 F:      arch/arm/mach-ux500/
1726 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
1727 F:      drivers/dma/ste_dma40*
1728 F:      drivers/hwspinlock/u8500_hsem.c
1729 F:      drivers/mfd/abx500*
1730 F:      drivers/mfd/ab8500*
1731 F:      drivers/mfd/dbx500*
1732 F:      drivers/mfd/db8500*
1733 F:      drivers/pinctrl/nomadik/pinctrl-ab*
1734 F:      drivers/pinctrl/nomadik/pinctrl-nomadik*
1735 F:      drivers/rtc/rtc-ab8500.c
1736 F:      drivers/rtc/rtc-pl031.c
1737 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1738
1739 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
1740 M:      Ulf Hansson <ulf.hansson@linaro.org>
1741 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1742 T:      git git://git.linaro.org/people/ulfh/clk.git
1743 S:      Maintained
1744 F:      drivers/clk/ux500/
1745 F:      include/linux/platform_data/clk-ux500.h
1746
1747 ARM/VERSATILE EXPRESS PLATFORM
1748 M:      Liviu Dudau <liviu.dudau@arm.com>
1749 M:      Sudeep Holla <sudeep.holla@arm.com>
1750 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
1751 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1752 S:      Maintained
1753 F:      arch/arm/boot/dts/vexpress*
1754 F:      arch/arm64/boot/dts/arm/
1755 F:      arch/arm/mach-vexpress/
1756 F:      */*/vexpress*
1757 F:      */*/*/vexpress*
1758 F:      drivers/clk/versatile/clk-vexpress-osc.c
1759 F:      drivers/clocksource/versatile.c
1760
1761 ARM/VFP SUPPORT
1762 M:      Russell King <linux@arm.linux.org.uk>
1763 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1764 W:      http://www.arm.linux.org.uk/
1765 S:      Maintained
1766 F:      arch/arm/vfp/
1767
1768 ARM/VOIPAC PXA270 SUPPORT
1769 M:      Marek Vasut <marek.vasut@gmail.com>
1770 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1771 S:      Maintained
1772 F:      arch/arm/mach-pxa/vpac270.c
1773 F:      arch/arm/mach-pxa/include/mach/vpac270.h
1774
1775 ARM/VT8500 ARM ARCHITECTURE
1776 M:      Tony Prisk <linux@prisktech.co.nz>
1777 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1778 S:      Maintained
1779 F:      arch/arm/mach-vt8500/
1780 F:      drivers/clocksource/vt8500_timer.c
1781 F:      drivers/i2c/busses/i2c-wmt.c
1782 F:      drivers/mmc/host/wmt-sdmmc.c
1783 F:      drivers/pwm/pwm-vt8500.c
1784 F:      drivers/rtc/rtc-vt8500.c
1785 F:      drivers/tty/serial/vt8500_serial.c
1786 F:      drivers/usb/host/ehci-platform.c
1787 F:      drivers/usb/host/uhci-platform.c
1788 F:      drivers/video/fbdev/vt8500lcdfb.*
1789 F:      drivers/video/fbdev/wm8505fb*
1790 F:      drivers/video/fbdev/wmt_ge_rops.*
1791
1792 ARM/ZIPIT Z2 SUPPORT
1793 M:      Marek Vasut <marek.vasut@gmail.com>
1794 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1795 S:      Maintained
1796 F:      arch/arm/mach-pxa/z2.c
1797 F:      arch/arm/mach-pxa/include/mach/z2.h
1798
1799 ARM/ZTE ARCHITECTURE
1800 M:      Jun Nie <jun.nie@linaro.org>
1801 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1802 S:      Maintained
1803 F:      arch/arm/mach-zx/
1804 F:      drivers/clk/zte/
1805 F:      Documentation/devicetree/bindings/arm/zte.txt
1806 F:      Documentation/devicetree/bindings/clock/zx296702-clk.txt
1807
1808 ARM/ZYNQ ARCHITECTURE
1809 M:      Michal Simek <michal.simek@xilinx.com>
1810 R:      Sören Brinkmann <soren.brinkmann@xilinx.com>
1811 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1812 W:      http://wiki.xilinx.com
1813 T:      git https://github.com/Xilinx/linux-xlnx.git
1814 S:      Supported
1815 F:      arch/arm/mach-zynq/
1816 F:      drivers/cpuidle/cpuidle-zynq.c
1817 F:      drivers/block/xsysace.c
1818 N:      zynq
1819 N:      xilinx
1820 F:      drivers/clocksource/cadence_ttc_timer.c
1821 F:      drivers/i2c/busses/i2c-cadence.c
1822 F:      drivers/mmc/host/sdhci-of-arasan.c
1823 F:      drivers/edac/synopsys_edac.c
1824
1825 ARM SMMU DRIVERS
1826 M:      Will Deacon <will.deacon@arm.com>
1827 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1828 S:      Maintained
1829 F:      drivers/iommu/arm-smmu.c
1830 F:      drivers/iommu/arm-smmu-v3.c
1831 F:      drivers/iommu/io-pgtable-arm.c
1832
1833 ARM64 PORT (AARCH64 ARCHITECTURE)
1834 M:      Catalin Marinas <catalin.marinas@arm.com>
1835 M:      Will Deacon <will.deacon@arm.com>
1836 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1837 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
1838 S:      Maintained
1839 F:      arch/arm64/
1840 F:      Documentation/arm64/
1841
1842 AS3645A LED FLASH CONTROLLER DRIVER
1843 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1844 L:      linux-media@vger.kernel.org
1845 T:      git git://linuxtv.org/media_tree.git
1846 S:      Maintained
1847 F:      drivers/media/i2c/as3645a.c
1848 F:      include/media/i2c/as3645a.h
1849
1850 ASC7621 HARDWARE MONITOR DRIVER
1851 M:      George Joseph <george.joseph@fairview5.com>
1852 L:      lm-sensors@lm-sensors.org
1853 S:      Maintained
1854 F:      Documentation/hwmon/asc7621
1855 F:      drivers/hwmon/asc7621.c
1856
1857 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
1858 M:      Corentin Chary <corentin.chary@gmail.com>
1859 L:      acpi4asus-user@lists.sourceforge.net
1860 L:      platform-driver-x86@vger.kernel.org
1861 W:      http://acpi4asus.sf.net
1862 S:      Maintained
1863 F:      drivers/platform/x86/asus*.c
1864 F:      drivers/platform/x86/eeepc*.c
1865
1866 ASUS WIRELESS RADIO CONTROL DRIVER
1867 M:      JoĂ£o Paulo Rechi Vita <jprvita@gmail.com>
1868 L:      platform-driver-x86@vger.kernel.org
1869 S:      Maintained
1870 F:      drivers/platform/x86/asus-wireless.c
1871
1872 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
1873 R:      Dan Williams <dan.j.williams@intel.com>
1874 W:      http://sourceforge.net/projects/xscaleiop
1875 S:      Odd fixes
1876 F:      Documentation/crypto/async-tx-api.txt
1877 F:      crypto/async_tx/
1878 F:      drivers/dma/
1879 F:      include/linux/dmaengine.h
1880 F:      include/linux/async_tx.h
1881
1882 AT24 EEPROM DRIVER
1883 M:      Wolfram Sang <wsa@the-dreams.de>
1884 L:      linux-i2c@vger.kernel.org
1885 S:      Maintained
1886 F:      drivers/misc/eeprom/at24.c
1887 F:      include/linux/platform_data/at24.h
1888
1889 ATA OVER ETHERNET (AOE) DRIVER
1890 M:      "Ed L. Cashin" <ed.cashin@acm.org>
1891 W:      http://www.openaoe.org/
1892 S:      Supported
1893 F:      Documentation/aoe/
1894 F:      drivers/block/aoe/
1895
1896 ATHEROS 71XX/9XXX GPIO DRIVER
1897 M:      Alban Bedel <albeu@free.fr>
1898 W:      https://github.com/AlbanBedel/linux
1899 T:      git git://github.com/AlbanBedel/linux
1900 S:      Maintained
1901 F:      drivers/gpio/gpio-ath79.c
1902 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
1903
1904 ATHEROS ATH GENERIC UTILITIES
1905 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1906 L:      linux-wireless@vger.kernel.org
1907 S:      Supported
1908 F:      drivers/net/wireless/ath/*
1909
1910 ATHEROS ATH5K WIRELESS DRIVER
1911 M:      Jiri Slaby <jirislaby@gmail.com>
1912 M:      Nick Kossifidis <mickflemm@gmail.com>
1913 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1914 L:      linux-wireless@vger.kernel.org
1915 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
1916 S:      Maintained
1917 F:      drivers/net/wireless/ath/ath5k/
1918
1919 ATHEROS ATH6KL WIRELESS DRIVER
1920 M:      Kalle Valo <kvalo@qca.qualcomm.com>
1921 L:      linux-wireless@vger.kernel.org
1922 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
1923 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
1924 S:      Supported
1925 F:      drivers/net/wireless/ath/ath6kl/
1926
1927 WILOCITY WIL6210 WIRELESS DRIVER
1928 M:      Maya Erez <qca_merez@qca.qualcomm.com>
1929 L:      linux-wireless@vger.kernel.org
1930 L:      wil6210@qca.qualcomm.com
1931 S:      Supported
1932 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
1933 F:      drivers/net/wireless/ath/wil6210/
1934 F:      include/uapi/linux/wil6210_uapi.h
1935
1936 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1937 M:      Christian Lamparter <chunkeey@googlemail.com>
1938 L:      linux-wireless@vger.kernel.org
1939 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
1940 S:      Maintained
1941 F:      drivers/net/wireless/ath/carl9170/
1942
1943 ATK0110 HWMON DRIVER
1944 M:      Luca Tettamanti <kronos.it@gmail.com>
1945 L:      lm-sensors@lm-sensors.org
1946 S:      Maintained
1947 F:      drivers/hwmon/asus_atk0110.c
1948
1949 ATI_REMOTE2 DRIVER
1950 M:      Ville Syrjala <syrjala@sci.fi>
1951 S:      Maintained
1952 F:      drivers/input/misc/ati_remote2.c
1953
1954 ATLX ETHERNET DRIVERS
1955 M:      Jay Cliburn <jcliburn@gmail.com>
1956 M:      Chris Snook <chris.snook@gmail.com>
1957 L:      netdev@vger.kernel.org
1958 W:      http://sourceforge.net/projects/atl1
1959 W:      http://atl1.sourceforge.net
1960 S:      Maintained
1961 F:      drivers/net/ethernet/atheros/
1962
1963 ATM
1964 M:      Chas Williams <3chas3@gmail.com>
1965 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
1966 L:      netdev@vger.kernel.org
1967 W:      http://linux-atm.sourceforge.net
1968 S:      Maintained
1969 F:      drivers/atm/
1970 F:      include/linux/atm*
1971 F:      include/uapi/linux/atm*
1972
1973 ATMEL AT91 / AT32 MCI DRIVER
1974 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1975 S:      Maintained
1976 F:      drivers/mmc/host/atmel-mci.c
1977
1978 ATMEL AT91 / AT32 SERIAL DRIVER
1979 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1980 S:      Supported
1981 F:      drivers/tty/serial/atmel_serial.c
1982
1983 ATMEL Audio ALSA driver
1984 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1985 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1986 S:      Supported
1987 F:      sound/soc/atmel
1988
1989 ATMEL DMA DRIVER
1990 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1991 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1992 S:      Supported
1993 F:      drivers/dma/at_hdmac.c
1994 F:      drivers/dma/at_hdmac_regs.h
1995 F:      include/linux/platform_data/dma-atmel.h
1996
1997 ATMEL XDMA DRIVER
1998 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1999 L:      linux-arm-kernel@lists.infradead.org
2000 L:      dmaengine@vger.kernel.org
2001 S:      Supported
2002 F:      drivers/dma/at_xdmac.c
2003
2004 ATMEL I2C DRIVER
2005 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
2006 L:      linux-i2c@vger.kernel.org
2007 S:      Supported
2008 F:      drivers/i2c/busses/i2c-at91.c
2009
2010 ATMEL ISI DRIVER
2011 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
2012 L:      linux-media@vger.kernel.org
2013 S:      Supported
2014 F:      drivers/media/platform/soc_camera/atmel-isi.c
2015 F:      include/media/atmel-isi.h
2016
2017 ATMEL LCDFB DRIVER
2018 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2019 L:      linux-fbdev@vger.kernel.org
2020 S:      Maintained
2021 F:      drivers/video/fbdev/atmel_lcdfb.c
2022 F:      include/video/atmel_lcdc.h
2023
2024 ATMEL MACB ETHERNET DRIVER
2025 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2026 S:      Supported
2027 F:      drivers/net/ethernet/cadence/
2028
2029 ATMEL NAND DRIVER
2030 M:      Wenyou Yang <wenyou.yang@atmel.com>
2031 M:      Josh Wu <rainyfeeling@outlook.com>
2032 L:      linux-mtd@lists.infradead.org
2033 S:      Supported
2034 F:      drivers/mtd/nand/atmel_nand*
2035
2036 ATMEL SDMMC DRIVER
2037 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
2038 L:      linux-mmc@vger.kernel.org
2039 S:      Supported
2040 F:      drivers/mmc/host/sdhci-of-at91.c
2041
2042 ATMEL SPI DRIVER
2043 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2044 S:      Supported
2045 F:      drivers/spi/spi-atmel.*
2046
2047 ATMEL SSC DRIVER
2048 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2049 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2050 S:      Supported
2051 F:      drivers/misc/atmel-ssc.c
2052 F:      include/linux/atmel-ssc.h
2053
2054 ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
2055 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2056 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2057 S:      Supported
2058 F:      drivers/misc/atmel_tclib.c
2059 F:      drivers/clocksource/tcb_clksrc.c
2060
2061 ATMEL USBA UDC DRIVER
2062 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2063 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2064 S:      Supported
2065 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
2066
2067 ATMEL WIRELESS DRIVER
2068 M:      Simon Kelley <simon@thekelleys.org.uk>
2069 L:      linux-wireless@vger.kernel.org
2070 W:      http://www.thekelleys.org.uk/atmel
2071 W:      http://atmelwlandriver.sourceforge.net/
2072 S:      Maintained
2073 F:      drivers/net/wireless/atmel/atmel*
2074
2075 ATMEL MAXTOUCH DRIVER
2076 M:      Nick Dyer <nick.dyer@itdev.co.uk>
2077 T:      git git://github.com/atmel-maxtouch/linux.git
2078 S:      Supported
2079 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2080 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2081 F:      include/linux/platform_data/atmel_mxt_ts.h
2082
2083 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2084 M:      Bradley Grove <linuxdrivers@attotech.com>
2085 L:      linux-scsi@vger.kernel.org
2086 W:      http://www.attotech.com
2087 S:      Supported
2088 F:      drivers/scsi/esas2r
2089
2090 ATUSB IEEE 802.15.4 RADIO DRIVER
2091 M:      Stefan Schmidt <stefan@osg.samsung.com>
2092 L:      linux-wpan@vger.kernel.org
2093 S:      Maintained
2094 F:      drivers/net/ieee802154/atusb.c
2095 F:      drivers/net/ieee802154/atusb.h
2096 F:      drivers/net/ieee802154/at86rf230.h
2097
2098 AUDIT SUBSYSTEM
2099 M:      Paul Moore <paul@paul-moore.com>
2100 M:      Eric Paris <eparis@redhat.com>
2101 L:      linux-audit@redhat.com (moderated for non-subscribers)
2102 W:      http://people.redhat.com/sgrubb/audit/
2103 T:      git git://git.infradead.org/users/pcmoore/audit
2104 S:      Maintained
2105 F:      include/linux/audit.h
2106 F:      include/uapi/linux/audit.h
2107 F:      kernel/audit*
2108
2109 AUXILIARY DISPLAY DRIVERS
2110 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2111 W:      http://miguelojeda.es/auxdisplay.htm
2112 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2113 S:      Maintained
2114 F:      drivers/auxdisplay/
2115 F:      include/linux/cfag12864b.h
2116
2117 AVR32 ARCHITECTURE
2118 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
2119 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
2120 W:      http://www.atmel.com/products/AVR32/
2121 W:      http://mirror.egtvedt.no/avr32linux.org/
2122 W:      http://avrfreaks.net/
2123 S:      Maintained
2124 F:      arch/avr32/
2125
2126 AVR32/AT32AP MACHINE SUPPORT
2127 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
2128 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
2129 S:      Maintained
2130 F:      arch/avr32/mach-at32ap/
2131
2132 AX.25 NETWORK LAYER
2133 M:      Ralf Baechle <ralf@linux-mips.org>
2134 L:      linux-hams@vger.kernel.org
2135 W:      http://www.linux-ax25.org/
2136 S:      Maintained
2137 F:      include/uapi/linux/ax25.h
2138 F:      include/net/ax25.h
2139 F:      net/ax25/
2140
2141 AZ6007 DVB DRIVER
2142 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2143 L:      linux-media@vger.kernel.org
2144 W:      https://linuxtv.org
2145 T:      git git://linuxtv.org/media_tree.git
2146 S:      Maintained
2147 F:      drivers/media/usb/dvb-usb-v2/az6007.c
2148
2149 AZTECH FM RADIO RECEIVER DRIVER
2150 M:      Hans Verkuil <hverkuil@xs4all.nl>
2151 L:      linux-media@vger.kernel.org
2152 T:      git git://linuxtv.org/media_tree.git
2153 W:      https://linuxtv.org
2154 S:      Maintained
2155 F:      drivers/media/radio/radio-aztech*
2156
2157 B43 WIRELESS DRIVER
2158 L:      linux-wireless@vger.kernel.org
2159 L:      b43-dev@lists.infradead.org
2160 W:      http://wireless.kernel.org/en/users/Drivers/b43
2161 S:      Odd Fixes
2162 F:      drivers/net/wireless/broadcom/b43/
2163
2164 B43LEGACY WIRELESS DRIVER
2165 M:      Larry Finger <Larry.Finger@lwfinger.net>
2166 L:      linux-wireless@vger.kernel.org
2167 L:      b43-dev@lists.infradead.org
2168 W:      http://wireless.kernel.org/en/users/Drivers/b43
2169 S:      Maintained
2170 F:      drivers/net/wireless/broadcom/b43legacy/
2171
2172 BACKLIGHT CLASS/SUBSYSTEM
2173 M:      Jingoo Han <jingoohan1@gmail.com>
2174 M:      Lee Jones <lee.jones@linaro.org>
2175 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
2176 S:      Maintained
2177 F:      drivers/video/backlight/
2178 F:      include/linux/backlight.h
2179
2180 BATMAN ADVANCED
2181 M:      Marek Lindner <mareklindner@neomailbox.ch>
2182 M:      Simon Wunderlich <sw@simonwunderlich.de>
2183 M:      Antonio Quartulli <a@unstable.cc>
2184 L:      b.a.t.m.a.n@lists.open-mesh.org
2185 W:      http://www.open-mesh.org/
2186 S:      Maintained
2187 F:      net/batman-adv/
2188
2189 BAYCOM/HDLCDRV DRIVERS FOR AX.25
2190 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
2191 L:      linux-hams@vger.kernel.org
2192 W:      http://www.baycom.org/~tom/ham/ham.html
2193 S:      Maintained
2194 F:      drivers/net/hamradio/baycom*
2195
2196 BCACHE (BLOCK LAYER CACHE)
2197 M:      Kent Overstreet <kent.overstreet@gmail.com>
2198 L:      linux-bcache@vger.kernel.org
2199 W:      http://bcache.evilpiepirate.org
2200 S:      Maintained
2201 F:      drivers/md/bcache/
2202
2203 BDISP ST MEDIA DRIVER
2204 M:      Fabien Dessenne <fabien.dessenne@st.com>
2205 L:      linux-media@vger.kernel.org
2206 T:      git git://linuxtv.org/media_tree.git
2207 W:      https://linuxtv.org
2208 S:      Supported
2209 F:      drivers/media/platform/sti/bdisp
2210
2211 BEFS FILE SYSTEM
2212 S:      Orphan
2213 F:      Documentation/filesystems/befs.txt
2214 F:      fs/befs/
2215
2216 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
2217 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
2218 L:      netdev@vger.kernel.org
2219 S:      Maintained
2220 F:      drivers/net/ethernet/ec_bhf.c
2221
2222 BFS FILE SYSTEM
2223 M:      "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
2224 S:      Maintained
2225 F:      Documentation/filesystems/bfs.txt
2226 F:      fs/bfs/
2227 F:      include/uapi/linux/bfs_fs.h
2228
2229 BLACKFIN ARCHITECTURE
2230 M:      Steven Miao <realmz6@gmail.com>
2231 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2232 T:      git git://git.code.sf.net/p/adi-linux/code
2233 W:      http://blackfin.uclinux.org
2234 S:      Supported
2235 F:      arch/blackfin/
2236
2237 BLACKFIN EMAC DRIVER
2238 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2239 W:      http://blackfin.uclinux.org
2240 S:      Supported
2241 F:      drivers/net/ethernet/adi/
2242
2243 BLACKFIN RTC DRIVER
2244 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2245 W:      http://blackfin.uclinux.org
2246 S:      Supported
2247 F:      drivers/rtc/rtc-bfin.c
2248
2249 BLACKFIN SDH DRIVER
2250 M:      Sonic Zhang <sonic.zhang@analog.com>
2251 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2252 W:      http://blackfin.uclinux.org
2253 S:      Supported
2254 F:      drivers/mmc/host/bfin_sdh.c
2255
2256 BLACKFIN SERIAL DRIVER
2257 M:      Sonic Zhang <sonic.zhang@analog.com>
2258 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2259 W:      http://blackfin.uclinux.org
2260 S:      Supported
2261 F:      drivers/tty/serial/bfin_uart.c
2262
2263 BLACKFIN WATCHDOG DRIVER
2264 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2265 W:      http://blackfin.uclinux.org
2266 S:      Supported
2267 F:      drivers/watchdog/bfin_wdt.c
2268
2269 BLACKFIN I2C TWI DRIVER
2270 M:      Sonic Zhang <sonic.zhang@analog.com>
2271 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2272 W:      http://blackfin.uclinux.org/
2273 S:      Supported
2274 F:      drivers/i2c/busses/i2c-bfin-twi.c
2275
2276 BLACKFIN MEDIA DRIVER
2277 M:      Scott Jiang <scott.jiang.linux@gmail.com>
2278 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2279 W:      http://blackfin.uclinux.org/
2280 S:      Supported
2281 F:      drivers/media/platform/blackfin/
2282 F:      drivers/media/i2c/adv7183*
2283 F:      drivers/media/i2c/vs6624*
2284
2285 BLINKM RGB LED DRIVER
2286 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
2287 S:      Maintained
2288 F:      drivers/leds/leds-blinkm.c
2289
2290 BLOCK LAYER
2291 M:      Jens Axboe <axboe@kernel.dk>
2292 L:      linux-block@vger.kernel.org
2293 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
2294 S:      Maintained
2295 F:      block/
2296 F:      kernel/trace/blktrace.c
2297
2298 BLOCK2MTD DRIVER
2299 M:      Joern Engel <joern@lazybastard.org>
2300 L:      linux-mtd@lists.infradead.org
2301 S:      Maintained
2302 F:      drivers/mtd/devices/block2mtd.c
2303
2304 BLUETOOTH DRIVERS
2305 M:      Marcel Holtmann <marcel@holtmann.org>
2306 M:      Gustavo Padovan <gustavo@padovan.org>
2307 M:      Johan Hedberg <johan.hedberg@gmail.com>
2308 L:      linux-bluetooth@vger.kernel.org
2309 W:      http://www.bluez.org/
2310 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2311 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2312 S:      Maintained
2313 F:      drivers/bluetooth/
2314
2315 BLUETOOTH SUBSYSTEM
2316 M:      Marcel Holtmann <marcel@holtmann.org>
2317 M:      Gustavo Padovan <gustavo@padovan.org>
2318 M:      Johan Hedberg <johan.hedberg@gmail.com>
2319 L:      linux-bluetooth@vger.kernel.org
2320 W:      http://www.bluez.org/
2321 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2322 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2323 S:      Maintained
2324 F:      net/bluetooth/
2325 F:      include/net/bluetooth/
2326
2327 BONDING DRIVER
2328 M:      Jay Vosburgh <j.vosburgh@gmail.com>
2329 M:      Veaceslav Falico <vfalico@gmail.com>
2330 M:      Andy Gospodarek <gospo@cumulusnetworks.com>
2331 L:      netdev@vger.kernel.org
2332 W:      http://sourceforge.net/projects/bonding/
2333 S:      Supported
2334 F:      drivers/net/bonding/
2335 F:      include/uapi/linux/if_bonding.h
2336
2337 BPF (Safe dynamic programs and tools)
2338 M:      Alexei Starovoitov <ast@kernel.org>
2339 L:      netdev@vger.kernel.org
2340 L:      linux-kernel@vger.kernel.org
2341 S:      Supported
2342 F:      kernel/bpf/
2343
2344 BROADCOM B44 10/100 ETHERNET DRIVER
2345 M:      Gary Zambrano <zambrano@broadcom.com>
2346 L:      netdev@vger.kernel.org
2347 S:      Supported
2348 F:      drivers/net/ethernet/broadcom/b44.*
2349
2350 BROADCOM GENET ETHERNET DRIVER
2351 M:      Florian Fainelli <f.fainelli@gmail.com>
2352 L:      netdev@vger.kernel.org
2353 S:      Supported
2354 F:      drivers/net/ethernet/broadcom/genet/
2355
2356 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
2357 M:      Sony Chacko <sony.chacko@qlogic.com>
2358 M:      Dept-HSGLinuxNICDev@qlogic.com
2359 L:      netdev@vger.kernel.org
2360 S:      Supported
2361 F:      drivers/net/ethernet/broadcom/bnx2.*
2362 F:      drivers/net/ethernet/broadcom/bnx2_*
2363
2364 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
2365 M:      Ariel Elior <ariel.elior@qlogic.com>
2366 L:      netdev@vger.kernel.org
2367 S:      Supported
2368 F:      drivers/net/ethernet/broadcom/bnx2x/
2369
2370 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
2371 M:      Florian Fainelli <f.fainelli@gmail.com>
2372 M:      Ray Jui <rjui@broadcom.com>
2373 M:      Scott Branden <sbranden@broadcom.com>
2374 L:      bcm-kernel-feedback-list@broadcom.com
2375 T:      git git://github.com/broadcom/mach-bcm
2376 S:      Maintained
2377 F:      arch/arm/mach-bcm/
2378 F:      arch/arm/boot/dts/bcm113*
2379 F:      arch/arm/boot/dts/bcm216*
2380 F:      arch/arm/boot/dts/bcm281*
2381 F:      arch/arm64/boot/dts/broadcom/
2382 F:      arch/arm/configs/bcm_defconfig
2383 F:      drivers/mmc/host/sdhci-bcm-kona.c
2384 F:      drivers/clocksource/bcm_kona_timer.c
2385
2386 BROADCOM BCM2835 ARM ARCHITECTURE
2387 M:      Stephen Warren <swarren@wwwdotorg.org>
2388 M:      Lee Jones <lee@kernel.org>
2389 M:      Eric Anholt <eric@anholt.net>
2390 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
2391 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2392 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rpi/linux-rpi.git
2393 S:      Maintained
2394 N:      bcm2835
2395
2396 BROADCOM BCM47XX MIPS ARCHITECTURE
2397 M:      Hauke Mehrtens <hauke@hauke-m.de>
2398 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2399 L:      linux-mips@linux-mips.org
2400 S:      Maintained
2401 F:      arch/mips/bcm47xx/*
2402 F:      arch/mips/include/asm/mach-bcm47xx/*
2403
2404 BROADCOM BCM5301X ARM ARCHITECTURE
2405 M:      Hauke Mehrtens <hauke@hauke-m.de>
2406 L:      linux-arm-kernel@lists.infradead.org
2407 S:      Maintained
2408 F:      arch/arm/mach-bcm/bcm_5301x.c
2409 F:      arch/arm/boot/dts/bcm5301x.dtsi
2410 F:      arch/arm/boot/dts/bcm470*
2411
2412 BROADCOM BCM63XX ARM ARCHITECTURE
2413 M:      Florian Fainelli <f.fainelli@gmail.com>
2414 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2415 L:      bcm-kernel-feedback-list@broadcom.com
2416 T:      git git://github.com/broadcom/stblinux.git
2417 S:      Maintained
2418 F:      arch/arm/mach-bcm/bcm63xx.c
2419 F:      arch/arm/include/debug/bcm63xx.S
2420
2421 BROADCOM BCM63XX/BCM33XX UDC DRIVER
2422 M:      Kevin Cernekee <cernekee@gmail.com>
2423 L:      linux-usb@vger.kernel.org
2424 S:      Maintained
2425 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
2426
2427 BROADCOM BCM7XXX ARM ARCHITECTURE
2428 M:      Brian Norris <computersforpeace@gmail.com>
2429 M:      Gregory Fong <gregory.0xf0@gmail.com>
2430 M:      Florian Fainelli <f.fainelli@gmail.com>
2431 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2432 L:      bcm-kernel-feedback-list@broadcom.com
2433 T:      git git://github.com/broadcom/stblinux.git
2434 S:      Maintained
2435 F:      arch/arm/mach-bcm/*brcmstb*
2436 F:      arch/arm/boot/dts/bcm7*.dts*
2437 F:      drivers/bus/brcmstb_gisb.c
2438 N:      brcmstb
2439
2440 BROADCOM BMIPS MIPS ARCHITECTURE
2441 M:      Kevin Cernekee <cernekee@gmail.com>
2442 M:      Florian Fainelli <f.fainelli@gmail.com>
2443 L:      linux-mips@linux-mips.org
2444 T:      git git://github.com/broadcom/stblinux.git
2445 S:      Maintained
2446 F:      arch/mips/bmips/*
2447 F:      arch/mips/include/asm/mach-bmips/*
2448 F:      arch/mips/kernel/*bmips*
2449 F:      arch/mips/boot/dts/brcm/bcm*.dts*
2450 F:      drivers/irqchip/irq-bcm7*
2451 F:      drivers/irqchip/irq-brcmstb*
2452 F:      include/linux/bcm963xx_nvram.h
2453 F:      include/linux/bcm963xx_tag.h
2454
2455 BROADCOM TG3 GIGABIT ETHERNET DRIVER
2456 M:      Prashant Sreedharan <prashant@broadcom.com>
2457 M:      Michael Chan <mchan@broadcom.com>
2458 L:      netdev@vger.kernel.org
2459 S:      Supported
2460 F:      drivers/net/ethernet/broadcom/tg3.*
2461
2462 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2463 M:      Brett Rudley <brudley@broadcom.com>
2464 M:      Arend van Spriel <arend@broadcom.com>
2465 M:      Franky (Zhenhui) Lin <frankyl@broadcom.com>
2466 M:      Hante Meuleman <meuleman@broadcom.com>
2467 L:      linux-wireless@vger.kernel.org
2468 L:      brcm80211-dev-list@broadcom.com
2469 S:      Supported
2470 F:      drivers/net/wireless/broadcom/brcm80211/
2471
2472 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
2473 M:      QLogic-Storage-Upstream@qlogic.com
2474 L:      linux-scsi@vger.kernel.org
2475 S:      Supported
2476 F:      drivers/scsi/bnx2fc/
2477
2478 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
2479 M:      QLogic-Storage-Upstream@qlogic.com
2480 L:      linux-scsi@vger.kernel.org
2481 S:      Supported
2482 F:      drivers/scsi/bnx2i/
2483
2484 BROADCOM IPROC ARM ARCHITECTURE
2485 M:      Ray Jui <rjui@broadcom.com>
2486 M:      Scott Branden <sbranden@broadcom.com>
2487 M:      Jon Mason <jonmason@broadcom.com>
2488 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2489 L:      bcm-kernel-feedback-list@broadcom.com
2490 T:      git git://github.com/broadcom/cygnus-linux.git
2491 S:      Maintained
2492 N:      iproc
2493 N:      cygnus
2494 N:      nsp
2495 N:      bcm9113*
2496 N:      bcm9583*
2497 N:      bcm9585*
2498 N:      bcm9586*
2499 N:      bcm988312
2500 N:      bcm113*
2501 N:      bcm583*
2502 N:      bcm585*
2503 N:      bcm586*
2504 N:      bcm88312
2505
2506 BROADCOM BRCMSTB GPIO DRIVER
2507 M:      Gregory Fong <gregory.0xf0@gmail.com>
2508 L:      bcm-kernel-feedback-list@broadcom.com
2509 S:      Supported
2510 F:      drivers/gpio/gpio-brcmstb.c
2511 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
2512
2513 BROADCOM KONA GPIO DRIVER
2514 M:      Ray Jui <rjui@broadcom.com>
2515 L:      bcm-kernel-feedback-list@broadcom.com
2516 S:      Supported
2517 F:      drivers/gpio/gpio-bcm-kona.c
2518 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
2519
2520 BROADCOM NVRAM DRIVER
2521 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2522 L:      linux-mips@linux-mips.org
2523 S:      Maintained
2524 F:      drivers/firmware/broadcom/*
2525
2526 BROADCOM STB NAND FLASH DRIVER
2527 M:      Brian Norris <computersforpeace@gmail.com>
2528 M:      Kamal Dasu <kdasu.kdev@gmail.com>
2529 L:      linux-mtd@lists.infradead.org
2530 L:      bcm-kernel-feedback-list@broadcom.com
2531 S:      Maintained
2532 F:      drivers/mtd/nand/brcmnand/
2533
2534 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2535 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2536 L:      linux-wireless@vger.kernel.org
2537 S:      Maintained
2538 F:      drivers/bcma/
2539 F:      include/linux/bcma/
2540
2541 BROADCOM SYSTEMPORT ETHERNET DRIVER
2542 M:      Florian Fainelli <f.fainelli@gmail.com>
2543 L:      netdev@vger.kernel.org
2544 S:      Supported
2545 F:      drivers/net/ethernet/broadcom/bcmsysport.*
2546
2547 BROADCOM VULCAN ARM64 SOC
2548 M:      Jayachandran C. <jchandra@broadcom.com>
2549 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2550 L:      bcm-kernel-feedback-list@broadcom.com
2551 S:      Maintained
2552 F:      arch/arm64/boot/dts/broadcom/vulcan*
2553
2554 BROCADE BFA FC SCSI DRIVER
2555 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
2556 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
2557 L:      linux-scsi@vger.kernel.org
2558 S:      Supported
2559 F:      drivers/scsi/bfa/
2560
2561 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
2562 M:      Rasesh Mody <rasesh.mody@qlogic.com>
2563 L:      netdev@vger.kernel.org
2564 S:      Supported
2565 F:      drivers/net/ethernet/brocade/bna/
2566
2567 BSG (block layer generic sg v4 driver)
2568 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
2569 L:      linux-scsi@vger.kernel.org
2570 S:      Supported
2571 F:      block/bsg.c
2572 F:      include/linux/bsg.h
2573 F:      include/uapi/linux/bsg.h
2574
2575 BT87X AUDIO DRIVER
2576 M:      Clemens Ladisch <clemens@ladisch.de>
2577 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2578 T:      git git://git.alsa-project.org/alsa-kernel.git
2579 S:      Maintained
2580 F:      Documentation/sound/alsa/Bt87x.txt
2581 F:      sound/pci/bt87x.c
2582
2583 BT8XXGPIO DRIVER
2584 M:      Michael Buesch <m@bues.ch>
2585 W:      http://bu3sch.de/btgpio.php
2586 S:      Maintained
2587 F:      drivers/gpio/gpio-bt8xx.c
2588
2589 BTRFS FILE SYSTEM
2590 M:      Chris Mason <clm@fb.com>
2591 M:      Josef Bacik <jbacik@fb.com>
2592 M:      David Sterba <dsterba@suse.com>
2593 L:      linux-btrfs@vger.kernel.org
2594 W:      http://btrfs.wiki.kernel.org/
2595 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
2596 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
2597 S:      Maintained
2598 F:      Documentation/filesystems/btrfs.txt
2599 F:      fs/btrfs/
2600
2601 BTTV VIDEO4LINUX DRIVER
2602 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2603 L:      linux-media@vger.kernel.org
2604 W:      https://linuxtv.org
2605 T:      git git://linuxtv.org/media_tree.git
2606 S:      Odd fixes
2607 F:      Documentation/video4linux/bttv/
2608 F:      drivers/media/pci/bt8xx/bttv*
2609
2610 BUSLOGIC SCSI DRIVER
2611 M:      Khalid Aziz <khalid@gonehiking.org>
2612 L:      linux-scsi@vger.kernel.org
2613 S:      Maintained
2614 F:      drivers/scsi/BusLogic.*
2615 F:      drivers/scsi/FlashPoint.*
2616
2617 C-MEDIA CMI8788 DRIVER
2618 M:      Clemens Ladisch <clemens@ladisch.de>
2619 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2620 T:      git git://git.alsa-project.org/alsa-kernel.git
2621 S:      Maintained
2622 F:      sound/pci/oxygen/
2623
2624 C6X ARCHITECTURE
2625 M:      Mark Salter <msalter@redhat.com>
2626 M:      Aurelien Jacquiot <a-jacquiot@ti.com>
2627 L:      linux-c6x-dev@linux-c6x.org
2628 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
2629 S:      Maintained
2630 F:      arch/c6x/
2631
2632 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
2633 M:      David Howells <dhowells@redhat.com>
2634 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
2635 S:      Supported
2636 F:      Documentation/filesystems/caching/cachefiles.txt
2637 F:      fs/cachefiles/
2638
2639 CADET FM/AM RADIO RECEIVER DRIVER
2640 M:      Hans Verkuil <hverkuil@xs4all.nl>
2641 L:      linux-media@vger.kernel.org
2642 T:      git git://linuxtv.org/media_tree.git
2643 W:      https://linuxtv.org
2644 S:      Maintained
2645 F:      drivers/media/radio/radio-cadet*
2646
2647 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
2648 M:      Jonathan Corbet <corbet@lwn.net>
2649 L:      linux-media@vger.kernel.org
2650 T:      git git://linuxtv.org/media_tree.git
2651 S:      Maintained
2652 F:      Documentation/video4linux/cafe_ccic
2653 F:      drivers/media/platform/marvell-ccic/
2654
2655 CAIF NETWORK LAYER
2656 M:      Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
2657 L:      netdev@vger.kernel.org
2658 S:      Supported
2659 F:      Documentation/networking/caif/
2660 F:      drivers/net/caif/
2661 F:      include/uapi/linux/caif/
2662 F:      include/net/caif/
2663 F:      net/caif/
2664
2665 CALGARY x86-64 IOMMU
2666 M:      Muli Ben-Yehuda <muli@il.ibm.com>
2667 M:      "Jon D. Mason" <jdmason@kudzu.us>
2668 L:      discuss@x86-64.org
2669 S:      Maintained
2670 F:      arch/x86/kernel/pci-calgary_64.c
2671 F:      arch/x86/kernel/tce_64.c
2672 F:      arch/x86/include/asm/calgary.h
2673 F:      arch/x86/include/asm/tce.h
2674
2675 CAN NETWORK LAYER
2676 M:      Oliver Hartkopp <socketcan@hartkopp.net>
2677 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2678 L:      linux-can@vger.kernel.org
2679 W:      https://github.com/linux-can
2680 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2681 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2682 S:      Maintained
2683 F:      Documentation/networking/can.txt
2684 F:      net/can/
2685 F:      include/linux/can/core.h
2686 F:      include/uapi/linux/can.h
2687 F:      include/uapi/linux/can/bcm.h
2688 F:      include/uapi/linux/can/raw.h
2689 F:      include/uapi/linux/can/gw.h
2690
2691 CAN NETWORK DRIVERS
2692 M:      Wolfgang Grandegger <wg@grandegger.com>
2693 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2694 L:      linux-can@vger.kernel.org
2695 W:      https://github.com/linux-can
2696 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2697 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2698 S:      Maintained
2699 F:      drivers/net/can/
2700 F:      include/linux/can/dev.h
2701 F:      include/linux/can/platform/
2702 F:      include/uapi/linux/can/error.h
2703 F:      include/uapi/linux/can/netlink.h
2704
2705 CAPABILITIES
2706 M:      Serge Hallyn <serge.hallyn@canonical.com>
2707 L:      linux-security-module@vger.kernel.org
2708 S:      Supported
2709 F:      include/linux/capability.h
2710 F:      include/uapi/linux/capability.h
2711 F:      security/commoncap.c
2712 F:      kernel/capability.c
2713
2714 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
2715 M:      Kevin Tsai <ktsai@capellamicro.com>
2716 S:      Maintained
2717 F:      drivers/iio/light/cm*
2718 F:      Documentation/devicetree/bindings/i2c/trivial-devices.txt
2719
2720 CAVIUM LIQUIDIO NETWORK DRIVER
2721 M:     Derek Chickles <derek.chickles@caviumnetworks.com>
2722 M:     Satanand Burla <satananda.burla@caviumnetworks.com>
2723 M:     Felix Manlunas <felix.manlunas@caviumnetworks.com>
2724 M:     Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com>
2725 L:     netdev@vger.kernel.org
2726 W:     http://www.cavium.com
2727 S:     Supported
2728 F:     drivers/net/ethernet/cavium/liquidio/
2729
2730 CC2520 IEEE-802.15.4 RADIO DRIVER
2731 M:      Varka Bhadram <varkabhadram@gmail.com>
2732 L:      linux-wpan@vger.kernel.org
2733 S:      Maintained
2734 F:      drivers/net/ieee802154/cc2520.c
2735 F:      include/linux/spi/cc2520.h
2736 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
2737
2738 CELL BROADBAND ENGINE ARCHITECTURE
2739 M:      Arnd Bergmann <arnd@arndb.de>
2740 L:      linuxppc-dev@lists.ozlabs.org
2741 W:      http://www.ibm.com/developerworks/power/cell/
2742 S:      Supported
2743 F:      arch/powerpc/include/asm/cell*.h
2744 F:      arch/powerpc/include/asm/spu*.h
2745 F:      arch/powerpc/include/uapi/asm/spu*.h
2746 F:      arch/powerpc/oprofile/*cell*
2747 F:      arch/powerpc/platforms/cell/
2748
2749 CEPH COMMON CODE (LIBCEPH)
2750 M:      Ilya Dryomov <idryomov@gmail.com>
2751 M:      "Yan, Zheng" <zyan@redhat.com>
2752 M:      Sage Weil <sage@redhat.com>
2753 L:      ceph-devel@vger.kernel.org
2754 W:      http://ceph.com/
2755 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2756 T:      git git://github.com/ceph/ceph-client.git
2757 S:      Supported
2758 F:      net/ceph/
2759 F:      include/linux/ceph/
2760 F:      include/linux/crush/
2761
2762 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
2763 M:      "Yan, Zheng" <zyan@redhat.com>
2764 M:      Sage Weil <sage@redhat.com>
2765 M:      Ilya Dryomov <idryomov@gmail.com>
2766 L:      ceph-devel@vger.kernel.org
2767 W:      http://ceph.com/
2768 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2769 T:      git git://github.com/ceph/ceph-client.git
2770 S:      Supported
2771 F:      Documentation/filesystems/ceph.txt
2772 F:      fs/ceph/
2773
2774 CERTIFICATE HANDLING:
2775 M:      David Howells <dhowells@redhat.com>
2776 M:      David Woodhouse <dwmw2@infradead.org>
2777 L:      keyrings@vger.kernel.org
2778 S:      Maintained
2779 F:      Documentation/module-signing.txt
2780 F:      certs/
2781 F:      scripts/sign-file.c
2782 F:      scripts/extract-cert.c
2783
2784 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
2785 L:      linux-usb@vger.kernel.org
2786 S:      Orphan
2787 F:      Documentation/usb/WUSB-Design-overview.txt
2788 F:      Documentation/usb/wusb-cbaf
2789 F:      drivers/usb/host/hwa-hc.c
2790 F:      drivers/usb/host/whci/
2791 F:      drivers/usb/wusbcore/
2792 F:      include/linux/usb/wusb*
2793
2794 CFAG12864B LCD DRIVER
2795 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2796 W:      http://miguelojeda.es/auxdisplay.htm
2797 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2798 S:      Maintained
2799 F:      drivers/auxdisplay/cfag12864b.c
2800 F:      include/linux/cfag12864b.h
2801
2802 CFAG12864BFB LCD FRAMEBUFFER DRIVER
2803 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2804 W:      http://miguelojeda.es/auxdisplay.htm
2805 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2806 S:      Maintained
2807 F:      drivers/auxdisplay/cfag12864bfb.c
2808 F:      include/linux/cfag12864b.h
2809
2810 CFG80211 and NL80211
2811 M:      Johannes Berg <johannes@sipsolutions.net>
2812 L:      linux-wireless@vger.kernel.org
2813 W:      http://wireless.kernel.org/
2814 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2815 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
2816 S:      Maintained
2817 F:      include/uapi/linux/nl80211.h
2818 F:      include/net/cfg80211.h
2819 F:      net/wireless/*
2820 X:      net/wireless/wext*
2821
2822 CHAR and MISC DRIVERS
2823 M:      Arnd Bergmann <arnd@arndb.de>
2824 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2825 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
2826 S:      Supported
2827 F:      drivers/char/*
2828 F:      drivers/misc/*
2829 F:      include/linux/miscdevice.h
2830
2831 CHECKPATCH
2832 M:      Andy Whitcroft <apw@canonical.com>
2833 M:      Joe Perches <joe@perches.com>
2834 S:      Maintained
2835 F:      scripts/checkpatch.pl
2836
2837 CHINESE DOCUMENTATION
2838 M:      Harry Wei <harryxiyou@gmail.com>
2839 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
2840 L:      linux-kernel@zh-kernel.org (moderated for non-subscribers)
2841 S:      Maintained
2842 F:      Documentation/zh_CN/
2843
2844 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
2845 M:      Peter Chen <Peter.Chen@nxp.com>
2846 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
2847 L:      linux-usb@vger.kernel.org
2848 S:      Maintained
2849 F:      drivers/usb/chipidea/
2850
2851 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
2852 M:      Hans de Goede <hdegoede@redhat.com>
2853 L:      linux-input@vger.kernel.org
2854 S:      Maintained
2855 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
2856 F:      drivers/input/touchscreen/chipone_icn8318.c
2857
2858 CHROME HARDWARE PLATFORM SUPPORT
2859 M:      Olof Johansson <olof@lixom.net>
2860 S:      Maintained
2861 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/olof/chrome-platform.git
2862 F:      drivers/platform/chrome/
2863
2864 CISCO VIC ETHERNET NIC DRIVER
2865 M:      Christian Benvenuti <benve@cisco.com>
2866 M:      Sujith Sankar <ssujith@cisco.com>
2867 M:      Govindarajulu Varadarajan <_govind@gmx.com>
2868 M:      Neel Patel <neepatel@cisco.com>
2869 S:      Supported
2870 F:      drivers/net/ethernet/cisco/enic/
2871
2872 CISCO VIC LOW LATENCY NIC DRIVER
2873 M:      Christian Benvenuti <benve@cisco.com>
2874 M:      Dave Goodell <dgoodell@cisco.com>
2875 S:      Supported
2876 F:      drivers/infiniband/hw/usnic/
2877
2878 CIRRUS LOGIC EP93XX ETHERNET DRIVER
2879 M:      Hartley Sweeten <hsweeten@visionengravers.com>
2880 L:      netdev@vger.kernel.org
2881 S:      Maintained
2882 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
2883
2884 CIRRUS LOGIC AUDIO CODEC DRIVERS
2885 M:      Brian Austin <brian.austin@cirrus.com>
2886 M:      Paul Handrigan <Paul.Handrigan@cirrus.com>
2887 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2888 S:      Maintained
2889 F:      sound/soc/codecs/cs*
2890
2891 CLEANCACHE API
2892 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2893 L:      linux-kernel@vger.kernel.org
2894 S:      Maintained
2895 F:      mm/cleancache.c
2896 F:      include/linux/cleancache.h
2897
2898 CLK API
2899 M:      Russell King <linux@arm.linux.org.uk>
2900 L:      linux-clk@vger.kernel.org
2901 S:      Maintained
2902 F:      include/linux/clk.h
2903
2904 CLOCKSOURCE, CLOCKEVENT DRIVERS
2905 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2906 M:      Thomas Gleixner <tglx@linutronix.de>
2907 L:      linux-kernel@vger.kernel.org
2908 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
2909 S:      Supported
2910 F:      drivers/clocksource
2911
2912 CISCO FCOE HBA DRIVER
2913 M:      Hiral Patel <hiralpat@cisco.com>
2914 M:      Suma Ramars <sramars@cisco.com>
2915 M:      Brian Uchino <buchino@cisco.com>
2916 L:      linux-scsi@vger.kernel.org
2917 S:      Supported
2918 F:      drivers/scsi/fnic/
2919
2920 CISCO SCSI HBA DRIVER
2921 M:      Narsimhulu Musini <nmusini@cisco.com>
2922 M:      Sesidhar Baddela <sebaddel@cisco.com>
2923 L:      linux-scsi@vger.kernel.org
2924 S:      Supported
2925 F:      drivers/scsi/snic/
2926
2927 CMPC ACPI DRIVER
2928 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2929 M:      Daniel Oliveira Nascimento <don@syst.com.br>
2930 L:      platform-driver-x86@vger.kernel.org
2931 S:      Supported
2932 F:      drivers/platform/x86/classmate-laptop.c
2933
2934 COBALT MEDIA DRIVER
2935 M:      Hans Verkuil <hans.verkuil@cisco.com>
2936 L:      linux-media@vger.kernel.org
2937 T:      git git://linuxtv.org/media_tree.git
2938 W:      https://linuxtv.org
2939 S:      Supported
2940 F:      drivers/media/pci/cobalt/
2941
2942 COCCINELLE/Semantic Patches (SmPL)
2943 M:      Julia Lawall <Julia.Lawall@lip6.fr>
2944 M:      Gilles Muller <Gilles.Muller@lip6.fr>
2945 M:      Nicolas Palix <nicolas.palix@imag.fr>
2946 M:      Michal Marek <mmarek@suse.com>
2947 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
2948 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
2949 W:      http://coccinelle.lip6.fr/
2950 S:      Supported
2951 F:      Documentation/coccinelle.txt
2952 F:      scripts/coccinelle/
2953 F:      scripts/coccicheck
2954
2955 CODA FILE SYSTEM
2956 M:      Jan Harkes <jaharkes@cs.cmu.edu>
2957 M:      coda@cs.cmu.edu
2958 L:      codalist@coda.cs.cmu.edu
2959 W:      http://www.coda.cs.cmu.edu/
2960 S:      Maintained
2961 F:      Documentation/filesystems/coda.txt
2962 F:      fs/coda/
2963 F:      include/linux/coda*.h
2964 F:      include/uapi/linux/coda*.h
2965
2966 CODA V4L2 MEM2MEM DRIVER
2967 M:      Philipp Zabel <p.zabel@pengutronix.de>
2968 L:      linux-media@vger.kernel.org
2969 S:      Maintained
2970 F:      Documentation/devicetree/bindings/media/coda.txt
2971 F:      drivers/media/platform/coda/
2972
2973 COMMON CLK FRAMEWORK
2974 M:      Michael Turquette <mturquette@baylibre.com>
2975 M:      Stephen Boyd <sboyd@codeaurora.org>
2976 L:      linux-clk@vger.kernel.org
2977 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
2978 S:      Maintained
2979 F:      drivers/clk/
2980 X:      drivers/clk/clkdev.c
2981 F:      include/linux/clk-pr*
2982 F:      include/linux/clk/
2983
2984 COMMON INTERNET FILE SYSTEM (CIFS)
2985 M:      Steve French <sfrench@samba.org>
2986 L:      linux-cifs@vger.kernel.org
2987 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
2988 W:      http://linux-cifs.samba.org/
2989 T:      git git://git.samba.org/sfrench/cifs-2.6.git
2990 S:      Supported
2991 F:      Documentation/filesystems/cifs/
2992 F:      fs/cifs/
2993
2994 COMPACTPCI HOTPLUG CORE
2995 M:      Scott Murray <scott@spiteful.org>
2996 L:      linux-pci@vger.kernel.org
2997 S:      Maintained
2998 F:      drivers/pci/hotplug/cpci_hotplug*
2999
3000 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
3001 M:      Scott Murray <scott@spiteful.org>
3002 L:      linux-pci@vger.kernel.org
3003 S:      Maintained
3004 F:      drivers/pci/hotplug/cpcihp_zt5550.*
3005
3006 COMPACTPCI HOTPLUG GENERIC DRIVER
3007 M:      Scott Murray <scott@spiteful.org>
3008 L:      linux-pci@vger.kernel.org
3009 S:      Maintained
3010 F:      drivers/pci/hotplug/cpcihp_generic.c
3011
3012 COMPAL LAPTOP SUPPORT
3013 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
3014 L:      platform-driver-x86@vger.kernel.org
3015 S:      Maintained
3016 F:      drivers/platform/x86/compal-laptop.c
3017
3018 CONEXANT ACCESSRUNNER USB DRIVER
3019 L:      accessrunner-general@lists.sourceforge.net
3020 W:      http://accessrunner.sourceforge.net/
3021 S:      Orphan
3022 F:      drivers/usb/atm/cxacru.c
3023
3024 CONFIGFS
3025 M:      Joel Becker <jlbec@evilplan.org>
3026 M:      Christoph Hellwig <hch@lst.de>
3027 T:      git git://git.infradead.org/users/hch/configfs.git
3028 S:      Supported
3029 F:      fs/configfs/
3030 F:      include/linux/configfs.h
3031
3032 CONNECTOR
3033 M:      Evgeniy Polyakov <zbr@ioremap.net>
3034 L:      netdev@vger.kernel.org
3035 S:      Maintained
3036 F:      drivers/connector/
3037
3038 CONTROL GROUP (CGROUP)
3039 M:      Tejun Heo <tj@kernel.org>
3040 M:      Li Zefan <lizefan@huawei.com>
3041 M:      Johannes Weiner <hannes@cmpxchg.org>
3042 L:      cgroups@vger.kernel.org
3043 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3044 S:      Maintained
3045 F:      Documentation/cgroups/
3046 F:      include/linux/cgroup*
3047 F:      kernel/cgroup*
3048
3049 CONTROL GROUP - CPUSET
3050 M:      Li Zefan <lizefan@huawei.com>
3051 L:      cgroups@vger.kernel.org
3052 W:      http://www.bullopensource.org/cpuset/
3053 W:      http://oss.sgi.com/projects/cpusets/
3054 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3055 S:      Maintained
3056 F:      Documentation/cgroups/cpusets.txt
3057 F:      include/linux/cpuset.h
3058 F:      kernel/cpuset.c
3059
3060 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
3061 M:      Johannes Weiner <hannes@cmpxchg.org>
3062 M:      Michal Hocko <mhocko@kernel.org>
3063 M:      Vladimir Davydov <vdavydov@virtuozzo.com>
3064 L:      cgroups@vger.kernel.org
3065 L:      linux-mm@kvack.org
3066 S:      Maintained
3067 F:      mm/memcontrol.c
3068 F:      mm/swap_cgroup.c
3069
3070 CORETEMP HARDWARE MONITORING DRIVER
3071 M:      Fenghua Yu <fenghua.yu@intel.com>
3072 L:      lm-sensors@lm-sensors.org
3073 S:      Maintained
3074 F:      Documentation/hwmon/coretemp
3075 F:      drivers/hwmon/coretemp.c
3076
3077 COSA/SRP SYNC SERIAL DRIVER
3078 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
3079 W:      http://www.fi.muni.cz/~kas/cosa/
3080 S:      Maintained
3081 F:      drivers/net/wan/cosa*
3082
3083 CPMAC ETHERNET DRIVER
3084 M:      Florian Fainelli <florian@openwrt.org>
3085 L:      netdev@vger.kernel.org
3086 S:      Maintained
3087 F:      drivers/net/ethernet/ti/cpmac.c
3088
3089 CPU FREQUENCY DRIVERS
3090 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
3091 M:      Viresh Kumar <viresh.kumar@linaro.org>
3092 L:      linux-pm@vger.kernel.org
3093 S:      Maintained
3094 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3095 T:      git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
3096 F:      drivers/cpufreq/
3097 F:      include/linux/cpufreq.h
3098
3099 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
3100 M:      Viresh Kumar <viresh.kumar@linaro.org>
3101 M:      Sudeep Holla <sudeep.holla@arm.com>
3102 L:      linux-pm@vger.kernel.org
3103 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
3104 S:      Maintained
3105 F:      drivers/cpufreq/arm_big_little.h
3106 F:      drivers/cpufreq/arm_big_little.c
3107 F:      drivers/cpufreq/arm_big_little_dt.c
3108
3109 CPUIDLE DRIVER - ARM BIG LITTLE
3110 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
3111 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3112 L:      linux-pm@vger.kernel.org
3113 L:      linux-arm-kernel@lists.infradead.org
3114 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3115 S:      Maintained
3116 F:      drivers/cpuidle/cpuidle-big_little.c
3117
3118 CPUIDLE DRIVER - ARM EXYNOS
3119 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
3120 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3121 M:      Kukjin Kim <kgene@kernel.org>
3122 L:      linux-pm@vger.kernel.org
3123 L:      linux-samsung-soc@vger.kernel.org
3124 S:      Supported
3125 F:      drivers/cpuidle/cpuidle-exynos.c
3126 F:      arch/arm/mach-exynos/pm.c
3127
3128 CPUIDLE DRIVERS
3129 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
3130 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3131 L:      linux-pm@vger.kernel.org
3132 S:      Maintained
3133 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3134 F:      drivers/cpuidle/*
3135 F:      include/linux/cpuidle.h
3136
3137 CPUID/MSR DRIVER
3138 M:      "H. Peter Anvin" <hpa@zytor.com>
3139 S:      Maintained
3140 F:      arch/x86/kernel/cpuid.c
3141 F:      arch/x86/kernel/msr.c
3142
3143 CPU POWER MONITORING SUBSYSTEM
3144 M:      Thomas Renninger <trenn@suse.com>
3145 L:      linux-pm@vger.kernel.org
3146 S:      Maintained
3147 F:      tools/power/cpupower/
3148
3149 CRAMFS FILESYSTEM
3150 W:      http://sourceforge.net/projects/cramfs/
3151 S:      Orphan / Obsolete
3152 F:      Documentation/filesystems/cramfs.txt
3153 F:      fs/cramfs/
3154
3155 CRIS PORT
3156 M:      Mikael Starvik <starvik@axis.com>
3157 M:      Jesper Nilsson <jesper.nilsson@axis.com>
3158 L:      linux-cris-kernel@axis.com
3159 W:      http://developer.axis.com
3160 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jesper/cris.git
3161 S:      Maintained
3162 F:      arch/cris/
3163 F:      drivers/tty/serial/crisv10.*
3164
3165 CRYPTO API
3166 M:      Herbert Xu <herbert@gondor.apana.org.au>
3167 M:      "David S. Miller" <davem@davemloft.net>
3168 L:      linux-crypto@vger.kernel.org
3169 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
3170 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
3171 S:      Maintained
3172 F:      Documentation/crypto/
3173 F:      Documentation/DocBook/crypto-API.tmpl
3174 F:      arch/*/crypto/
3175 F:      crypto/
3176 F:      drivers/crypto/
3177 F:      include/crypto/
3178
3179 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
3180 M:      Neil Horman <nhorman@tuxdriver.com>
3181 L:      linux-crypto@vger.kernel.org
3182 S:      Maintained
3183 F:      crypto/ansi_cprng.c
3184 F:      crypto/rng.c
3185
3186 CS3308 MEDIA DRIVER
3187 M:      Hans Verkuil <hverkuil@xs4all.nl>
3188 L:      linux-media@vger.kernel.org
3189 T:      git git://linuxtv.org/media_tree.git
3190 W:      http://linuxtv.org
3191 S:      Odd Fixes
3192 F:      drivers/media/i2c/cs3308.c
3193 F:      drivers/media/i2c/cs3308.h
3194
3195 CS5535 Audio ALSA driver
3196 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
3197 S:      Maintained
3198 F:      sound/pci/cs5535audio/
3199
3200 CW1200 WLAN driver
3201 M:      Solomon Peachy <pizza@shaftnet.org>
3202 S:      Maintained
3203 F:      drivers/net/wireless/st/cw1200/
3204
3205 CX18 VIDEO4LINUX DRIVER
3206 M:      Andy Walls <awalls@md.metrocast.net>
3207 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
3208 L:      linux-media@vger.kernel.org
3209 T:      git git://linuxtv.org/media_tree.git
3210 W:      https://linuxtv.org
3211 W:      http://www.ivtvdriver.org/index.php/Cx18
3212 S:      Maintained
3213 F:      Documentation/video4linux/cx18.txt
3214 F:      drivers/media/pci/cx18/
3215 F:      include/uapi/linux/ivtv*
3216
3217 CX2341X MPEG ENCODER HELPER MODULE
3218 M:      Hans Verkuil <hverkuil@xs4all.nl>
3219 L:      linux-media@vger.kernel.org
3220 T:      git git://linuxtv.org/media_tree.git
3221 W:      https://linuxtv.org
3222 S:      Maintained
3223 F:      drivers/media/common/cx2341x*
3224 F:      include/media/cx2341x*
3225
3226 CX24120 MEDIA DRIVER
3227 M:      Jemma Denson <jdenson@gmail.com>
3228 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
3229 L:      linux-media@vger.kernel.org
3230 W:      https://linuxtv.org
3231 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3232 S:      Maintained
3233 F:      drivers/media/dvb-frontends/cx24120*
3234
3235 CX88 VIDEO4LINUX DRIVER
3236 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3237 L:      linux-media@vger.kernel.org
3238 W:      https://linuxtv.org
3239 T:      git git://linuxtv.org/media_tree.git
3240 S:      Odd fixes
3241 F:      Documentation/video4linux/cx88/
3242 F:      drivers/media/pci/cx88/
3243
3244 CXD2820R MEDIA DRIVER
3245 M:      Antti Palosaari <crope@iki.fi>
3246 L:      linux-media@vger.kernel.org
3247 W:      https://linuxtv.org
3248 W:      http://palosaari.fi/linux/
3249 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3250 T:      git git://linuxtv.org/anttip/media_tree.git
3251 S:      Maintained
3252 F:      drivers/media/dvb-frontends/cxd2820r*
3253
3254 CXGB3 ETHERNET DRIVER (CXGB3)
3255 M:      Santosh Raspatur <santosh@chelsio.com>
3256 L:      netdev@vger.kernel.org
3257 W:      http://www.chelsio.com
3258 S:      Supported
3259 F:      drivers/net/ethernet/chelsio/cxgb3/
3260
3261 CXGB3 ISCSI DRIVER (CXGB3I)
3262 M:      Karen Xie <kxie@chelsio.com>
3263 L:      linux-scsi@vger.kernel.org
3264 W:      http://www.chelsio.com
3265 S:      Supported
3266 F:      drivers/scsi/cxgbi/cxgb3i
3267
3268 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
3269 M:      Steve Wise <swise@chelsio.com>
3270 L:      linux-rdma@vger.kernel.org
3271 W:      http://www.openfabrics.org
3272 S:      Supported
3273 F:      drivers/infiniband/hw/cxgb3/
3274
3275 CXGB4 ETHERNET DRIVER (CXGB4)
3276 M:      Hariprasad S <hariprasad@chelsio.com>
3277 L:      netdev@vger.kernel.org
3278 W:      http://www.chelsio.com
3279 S:      Supported
3280 F:      drivers/net/ethernet/chelsio/cxgb4/
3281
3282 CXGB4 ISCSI DRIVER (CXGB4I)
3283 M:      Karen Xie <kxie@chelsio.com>
3284 L:      linux-scsi@vger.kernel.org
3285 W:      http://www.chelsio.com
3286 S:      Supported
3287 F:      drivers/scsi/cxgbi/cxgb4i
3288
3289 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
3290 M:      Steve Wise <swise@chelsio.com>
3291 L:      linux-rdma@vger.kernel.org
3292 W:      http://www.openfabrics.org
3293 S:      Supported
3294 F:      drivers/infiniband/hw/cxgb4/
3295
3296 CXGB4VF ETHERNET DRIVER (CXGB4VF)
3297 M:      Casey Leedom <leedom@chelsio.com>
3298 L:      netdev@vger.kernel.org
3299 W:      http://www.chelsio.com
3300 S:      Supported
3301 F:      drivers/net/ethernet/chelsio/cxgb4vf/
3302
3303 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
3304 M:      Ian Munsie <imunsie@au1.ibm.com>
3305 M:      Michael Neuling <mikey@neuling.org>
3306 L:      linuxppc-dev@lists.ozlabs.org
3307 S:      Supported
3308 F:      drivers/misc/cxl/
3309 F:      include/misc/cxl*
3310 F:      include/uapi/misc/cxl.h
3311 F:      Documentation/powerpc/cxl.txt
3312 F:      Documentation/powerpc/cxl.txt
3313 F:      Documentation/ABI/testing/sysfs-class-cxl
3314
3315 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
3316 M:      Manoj N. Kumar <manoj@linux.vnet.ibm.com>
3317 M:      Matthew R. Ochs <mrochs@linux.vnet.ibm.com>
3318 L:      linux-scsi@vger.kernel.org
3319 S:      Supported
3320 F:      drivers/scsi/cxlflash/
3321 F:      include/uapi/scsi/cxlflash_ioctls.h
3322 F:      Documentation/powerpc/cxlflash.txt
3323
3324 STMMAC ETHERNET DRIVER
3325 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
3326 L:      netdev@vger.kernel.org
3327 W:      http://www.stlinux.com
3328 S:      Supported
3329 F:      drivers/net/ethernet/stmicro/stmmac/
3330
3331 CYBERPRO FB DRIVER
3332 M:      Russell King <linux@arm.linux.org.uk>
3333 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3334 W:      http://www.arm.linux.org.uk/
3335 S:      Maintained
3336 F:      drivers/video/fbdev/cyber2000fb.*
3337
3338 CYCLADES ASYNC MUX DRIVER
3339 W:      http://www.cyclades.com/
3340 S:      Orphan
3341 F:      drivers/tty/cyclades.c
3342 F:      include/linux/cyclades.h
3343 F:      include/uapi/linux/cyclades.h
3344
3345 CYCLADES PC300 DRIVER
3346 W:      http://www.cyclades.com/
3347 S:      Orphan
3348 F:      drivers/net/wan/pc300*
3349
3350 CYPRESS_FIRMWARE MEDIA DRIVER
3351 M:      Antti Palosaari <crope@iki.fi>
3352 L:      linux-media@vger.kernel.org
3353 W:      https://linuxtv.org
3354 W:      http://palosaari.fi/linux/
3355 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3356 T:      git git://linuxtv.org/anttip/media_tree.git
3357 S:      Maintained
3358 F:      drivers/media/common/cypress_firmware*
3359
3360 CYTTSP TOUCHSCREEN DRIVER
3361 M:      Ferruh Yigit <fery@cypress.com>
3362 L:      linux-input@vger.kernel.org
3363 S:      Supported
3364 F:      drivers/input/touchscreen/cyttsp*
3365 F:      include/linux/input/cyttsp.h
3366
3367 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
3368 M:      Joshua Kinard <kumba@gentoo.org>
3369 S:      Maintained
3370 F:      drivers/rtc/rtc-ds1685.c
3371 F:      include/linux/rtc/ds1685.h
3372
3373 DAMA SLAVE for AX.25
3374 M:      Joerg Reuter <jreuter@yaina.de>
3375 W:      http://yaina.de/jreuter/
3376 W:      http://www.qsl.net/dl1bke/
3377 L:      linux-hams@vger.kernel.org
3378 S:      Maintained
3379 F:      net/ax25/af_ax25.c
3380 F:      net/ax25/ax25_dev.c
3381 F:      net/ax25/ax25_ds_*
3382 F:      net/ax25/ax25_in.c
3383 F:      net/ax25/ax25_out.c
3384 F:      net/ax25/ax25_timer.c
3385 F:      net/ax25/sysctl_net_ax25.c
3386
3387 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
3388 L:      netdev@vger.kernel.org
3389 S:      Orphan
3390 F:      Documentation/networking/dmfe.txt
3391 F:      drivers/net/ethernet/dec/tulip/dmfe.c
3392
3393 DC390/AM53C974 SCSI driver
3394 M:      Hannes Reinecke <hare@suse.com>
3395 L:      linux-scsi@vger.kernel.org
3396 S:      Maintained
3397 F:      drivers/scsi/am53c974.c
3398
3399 DC395x SCSI driver
3400 M:      Oliver Neukum <oliver@neukum.org>
3401 M:      Ali Akcaagac <aliakc@web.de>
3402 M:      Jamie Lenehan <lenehan@twibble.org>
3403 L:      dc395x@twibble.org
3404 W:      http://twibble.org/dist/dc395x/
3405 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
3406 S:      Maintained
3407 F:      Documentation/scsi/dc395x.txt
3408 F:      drivers/scsi/dc395x.*
3409
3410 DCCP PROTOCOL
3411 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
3412 L:      dccp@vger.kernel.org
3413 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
3414 S:      Maintained
3415 F:      include/linux/dccp.h
3416 F:      include/uapi/linux/dccp.h
3417 F:      include/linux/tfrc.h
3418 F:      net/dccp/
3419
3420 DECnet NETWORK LAYER
3421 W:      http://linux-decnet.sourceforge.net
3422 L:      linux-decnet-user@lists.sourceforge.net
3423 S:      Orphan
3424 F:      Documentation/networking/decnet.txt
3425 F:      net/decnet/
3426
3427 DECSTATION PLATFORM SUPPORT
3428 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3429 L:      linux-mips@linux-mips.org
3430 W:      http://www.linux-mips.org/wiki/DECstation
3431 S:      Maintained
3432 F:      arch/mips/dec/
3433 F:      arch/mips/include/asm/dec/
3434 F:      arch/mips/include/asm/mach-dec/
3435
3436 DEFXX FDDI NETWORK DRIVER
3437 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3438 S:      Maintained
3439 F:      drivers/net/fddi/defxx.*
3440
3441 DELL LAPTOP DRIVER
3442 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3443 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3444 L:      platform-driver-x86@vger.kernel.org
3445 S:      Maintained
3446 F:      drivers/platform/x86/dell-laptop.c
3447
3448 DELL LAPTOP RBTN DRIVER
3449 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3450 S:      Maintained
3451 F:      drivers/platform/x86/dell-rbtn.*
3452
3453 DELL LAPTOP FREEFALL DRIVER
3454 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3455 S:      Maintained
3456 F:      drivers/platform/x86/dell-smo8800.c
3457
3458 DELL LAPTOP SMM DRIVER
3459 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3460 S:      Maintained
3461 F:      drivers/hwmon/dell-smm-hwmon.c
3462 F:      include/uapi/linux/i8k.h
3463
3464 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
3465 M:      Doug Warzecha <Douglas_Warzecha@dell.com>
3466 S:      Maintained
3467 F:      Documentation/dcdbas.txt
3468 F:      drivers/firmware/dcdbas.*
3469
3470 DELL WMI EXTRAS DRIVER
3471 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3472 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3473 S:      Maintained
3474 F:      drivers/platform/x86/dell-wmi.c
3475
3476 DESIGNWARE USB2 DRD IP DRIVER
3477 M:      John Youn <johnyoun@synopsys.com>
3478 L:      linux-usb@vger.kernel.org
3479 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3480 S:      Maintained
3481 F:      drivers/usb/dwc2/
3482
3483 DESIGNWARE USB3 DRD IP DRIVER
3484 M:      Felipe Balbi <balbi@kernel.org>
3485 L:      linux-usb@vger.kernel.org
3486 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3487 S:      Maintained
3488 F:      drivers/usb/dwc3/
3489
3490 DEVICE COREDUMP (DEV_COREDUMP)
3491 M:      Johannes Berg <johannes@sipsolutions.net>
3492 L:      linux-kernel@vger.kernel.org
3493 S:      Maintained
3494 F:      drivers/base/devcoredump.c
3495 F:      include/linux/devcoredump.h
3496
3497 DEVICE FREQUENCY (DEVFREQ)
3498 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
3499 M:      Kyungmin Park <kyungmin.park@samsung.com>
3500 L:      linux-pm@vger.kernel.org
3501 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3502 S:      Maintained
3503 F:      drivers/devfreq/
3504 F:      include/linux/devfreq.h
3505 F:      Documentation/devicetree/bindings/devfreq/
3506
3507 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
3508 M:      Chanwoo Choi <cw00.choi@samsung.com>
3509 L:      linux-pm@vger.kernel.org
3510 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3511 S:      Supported
3512 F:      drivers/devfreq/event/
3513 F:      drivers/devfreq/devfreq-event.c
3514 F:      include/linux/devfreq-event.h
3515 F:      Documentation/devicetree/bindings/devfreq/event/
3516
3517 DEVICE NUMBER REGISTRY
3518 M:      Torben Mathiasen <device@lanana.org>
3519 W:      http://lanana.org/docs/device-list/index.html
3520 S:      Maintained
3521
3522 DEVICE-MAPPER  (LVM)
3523 M:      Alasdair Kergon <agk@redhat.com>
3524 M:      Mike Snitzer <snitzer@redhat.com>
3525 M:      dm-devel@redhat.com
3526 L:      dm-devel@redhat.com
3527 W:      http://sources.redhat.com/dm
3528 Q:      http://patchwork.kernel.org/project/dm-devel/list/
3529 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
3530 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
3531 S:      Maintained
3532 F:      Documentation/device-mapper/
3533 F:      drivers/md/dm*
3534 F:      drivers/md/persistent-data/
3535 F:      include/linux/device-mapper.h
3536 F:      include/linux/dm-*.h
3537 F:      include/uapi/linux/dm-*.h
3538
3539 DIALOG SEMICONDUCTOR DRIVERS
3540 M:      Support Opensource <support.opensource@diasemi.com>
3541 W:      http://www.dialog-semiconductor.com/products
3542 S:      Supported
3543 F:      Documentation/hwmon/da90??
3544 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
3545 F:      drivers/gpio/gpio-da90??.c
3546 F:      drivers/hwmon/da90??-hwmon.c
3547 F:      drivers/iio/adc/da91??-*.c
3548 F:      drivers/input/misc/da90??_onkey.c
3549 F:      drivers/input/touchscreen/da9052_tsi.c
3550 F:      drivers/leds/leds-da90??.c
3551 F:      drivers/mfd/da903x.c
3552 F:      drivers/mfd/da90??-*.c
3553 F:      drivers/mfd/da91??-*.c
3554 F:      drivers/power/da9052-battery.c
3555 F:      drivers/power/da91??-*.c
3556 F:      drivers/regulator/da903x.c
3557 F:      drivers/regulator/da9???-regulator.[ch]
3558 F:      drivers/rtc/rtc-da90??.c
3559 F:      drivers/video/backlight/da90??_bl.c
3560 F:      drivers/watchdog/da90??_wdt.c
3561 F:      include/linux/mfd/da903x.h
3562 F:      include/linux/mfd/da9052/
3563 F:      include/linux/mfd/da9055/
3564 F:      include/linux/mfd/da9063/
3565 F:      include/linux/mfd/da9150/
3566 F:      include/sound/da[79]*.h
3567 F:      sound/soc/codecs/da[79]*.[ch]
3568
3569 DIGI NEO AND CLASSIC PCI PRODUCTS
3570 M:      Lidza Louina <lidza.louina@gmail.com>
3571 M:      Mark Hounschell <markh@compro.net>
3572 L:      driverdev-devel@linuxdriverproject.org
3573 S:      Maintained
3574 F:      drivers/staging/dgnc/
3575
3576 DIGI EPCA PCI PRODUCTS
3577 M:      Lidza Louina <lidza.louina@gmail.com>
3578 M:      Daeseok Youn <daeseok.youn@gmail.com>
3579 L:      driverdev-devel@linuxdriverproject.org
3580 S:      Maintained
3581 F:      drivers/staging/dgap/
3582
3583 DIOLAN U2C-12 I2C DRIVER
3584 M:      Guenter Roeck <linux@roeck-us.net>
3585 L:      linux-i2c@vger.kernel.org
3586 S:      Maintained
3587 F:      drivers/i2c/busses/i2c-diolan-u2c.c
3588
3589 DIRECT ACCESS (DAX)
3590 M:      Matthew Wilcox <willy@linux.intel.com>
3591 L:      linux-fsdevel@vger.kernel.org
3592 S:      Supported
3593 F:      fs/dax.c
3594
3595 DIRECTORY NOTIFICATION (DNOTIFY)
3596 M:      Eric Paris <eparis@parisplace.org>
3597 S:      Maintained
3598 F:      Documentation/filesystems/dnotify.txt
3599 F:      fs/notify/dnotify/
3600 F:      include/linux/dnotify.h
3601
3602 DISK GEOMETRY AND PARTITION HANDLING
3603 M:      Andries Brouwer <aeb@cwi.nl>
3604 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
3605 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
3606 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
3607 S:      Maintained
3608
3609 DISKQUOTA
3610 M:      Jan Kara <jack@suse.com>
3611 S:      Maintained
3612 F:      Documentation/filesystems/quota.txt
3613 F:      fs/quota/
3614 F:      include/linux/quota*.h
3615 F:      include/uapi/linux/quota*.h
3616
3617 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
3618 M:      Bernie Thompson <bernie@plugable.com>
3619 L:      linux-fbdev@vger.kernel.org
3620 S:      Maintained
3621 W:      http://plugable.com/category/projects/udlfb/
3622 F:      drivers/video/fbdev/udlfb.c
3623 F:      include/video/udlfb.h
3624 F:      Documentation/fb/udlfb.txt
3625
3626 DISTRIBUTED LOCK MANAGER (DLM)
3627 M:      Christine Caulfield <ccaulfie@redhat.com>
3628 M:      David Teigland <teigland@redhat.com>
3629 L:      cluster-devel@redhat.com
3630 W:      http://sources.redhat.com/cluster/
3631 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
3632 S:      Supported
3633 F:      fs/dlm/
3634
3635 DMA BUFFER SHARING FRAMEWORK
3636 M:      Sumit Semwal <sumit.semwal@linaro.org>
3637 S:      Maintained
3638 L:      linux-media@vger.kernel.org
3639 L:      dri-devel@lists.freedesktop.org
3640 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
3641 F:      drivers/dma-buf/
3642 F:      include/linux/dma-buf*
3643 F:      include/linux/reservation.h
3644 F:      include/linux/*fence.h
3645 F:      Documentation/dma-buf-sharing.txt
3646 T:      git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
3647
3648 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
3649 M:      Vinod Koul <vinod.koul@intel.com>
3650 L:      dmaengine@vger.kernel.org
3651 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
3652 S:      Maintained
3653 F:      drivers/dma/
3654 F:      include/linux/dmaengine.h
3655 F:      Documentation/dmaengine/
3656 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
3657
3658 DME1737 HARDWARE MONITOR DRIVER
3659 M:      Juerg Haefliger <juergh@gmail.com>
3660 L:      lm-sensors@lm-sensors.org
3661 S:      Maintained
3662 F:      Documentation/hwmon/dme1737
3663 F:      drivers/hwmon/dme1737.c
3664
3665 DMI/SMBIOS SUPPORT
3666 M:      Jean Delvare <jdelvare@suse.com>
3667 S:      Maintained
3668 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
3669 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
3670 F:      drivers/firmware/dmi-id.c
3671 F:      drivers/firmware/dmi_scan.c
3672 F:      include/linux/dmi.h
3673
3674 DOCUMENTATION
3675 M:      Jonathan Corbet <corbet@lwn.net>
3676 L:      linux-doc@vger.kernel.org
3677 S:      Maintained
3678 F:      Documentation/
3679 F:      scripts/docproc.c
3680 F:      scripts/kernel-doc*
3681 X:      Documentation/ABI/
3682 X:      Documentation/devicetree/
3683 X:      Documentation/acpi
3684 X:      Documentation/power
3685 X:      Documentation/spi
3686 X:      Documentation/DocBook/media
3687 T:      git git://git.lwn.net/linux.git docs-next
3688
3689 DOUBLETALK DRIVER
3690 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
3691 L:      blinux-list@redhat.com
3692 S:      Maintained
3693 F:      drivers/char/dtlk.c
3694 F:      include/linux/dtlk.h
3695
3696 DPT_I2O SCSI RAID DRIVER
3697 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
3698 L:      linux-scsi@vger.kernel.org
3699 W:      http://www.adaptec.com/
3700 S:      Maintained
3701 F:      drivers/scsi/dpt*
3702 F:      drivers/scsi/dpt/
3703
3704 DRBD DRIVER
3705 M:      Philipp Reisner <philipp.reisner@linbit.com>
3706 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
3707 L:      drbd-dev@lists.linbit.com
3708 W:      http://www.drbd.org
3709 T:      git git://git.linbit.com/linux-drbd.git
3710 T:      git git://git.linbit.com/drbd-8.4.git
3711 S:      Supported
3712 F:      drivers/block/drbd/
3713 F:      lib/lru_cache.c
3714 F:      Documentation/blockdev/drbd/
3715
3716 DRIVER CORE, KOBJECTS, DEBUGFS, KERNFS AND SYSFS
3717 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3718 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
3719 S:      Supported
3720 F:      Documentation/kobject.txt
3721 F:      drivers/base/
3722 F:      fs/debugfs/
3723 F:      fs/kernfs/
3724 F:      fs/sysfs/
3725 F:      include/linux/debugfs.h
3726 F:      include/linux/kobj*
3727 F:      lib/kobj*
3728
3729 DRM DRIVERS
3730 M:      David Airlie <airlied@linux.ie>
3731 L:      dri-devel@lists.freedesktop.org
3732 T:      git git://people.freedesktop.org/~airlied/linux
3733 S:      Maintained
3734 F:      drivers/gpu/drm/
3735 F:      drivers/gpu/vga/
3736 F:      include/drm/
3737 F:      include/uapi/drm/
3738
3739 RADEON DRM DRIVERS
3740 M:      Alex Deucher <alexander.deucher@amd.com>
3741 M:      Christian König <christian.koenig@amd.com>
3742 L:      dri-devel@lists.freedesktop.org
3743 T:      git git://people.freedesktop.org/~agd5f/linux
3744 S:      Supported
3745 F:      drivers/gpu/drm/radeon/
3746 F:      include/uapi/drm/radeon*
3747
3748 DRM PANEL DRIVERS
3749 M:      Thierry Reding <thierry.reding@gmail.com>
3750 L:      dri-devel@lists.freedesktop.org
3751 T:      git git://anongit.freedesktop.org/tegra/linux.git
3752 S:      Maintained
3753 F:      drivers/gpu/drm/drm_panel.c
3754 F:      drivers/gpu/drm/panel/
3755 F:      include/drm/drm_panel.h
3756 F:      Documentation/devicetree/bindings/display/panel/
3757
3758 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
3759 M:      Daniel Vetter <daniel.vetter@intel.com>
3760 M:      Jani Nikula <jani.nikula@linux.intel.com>
3761 L:      intel-gfx@lists.freedesktop.org
3762 L:      dri-devel@lists.freedesktop.org
3763 W:      https://01.org/linuxgraphics/
3764 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
3765 T:      git git://anongit.freedesktop.org/drm-intel
3766 S:      Supported
3767 F:      drivers/gpu/drm/i915/
3768 F:      include/drm/i915*
3769 F:      include/uapi/drm/i915*
3770
3771 DRM DRIVERS FOR ATMEL HLCDC
3772 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
3773 L:      dri-devel@lists.freedesktop.org
3774 S:      Supported
3775 F:      drivers/gpu/drm/atmel-hlcdc/
3776 F:      Documentation/devicetree/bindings/drm/atmel/
3777
3778 DRM DRIVERS FOR EXYNOS
3779 M:      Inki Dae <inki.dae@samsung.com>
3780 M:      Joonyoung Shim <jy0922.shim@samsung.com>
3781 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
3782 M:      Kyungmin Park <kyungmin.park@samsung.com>
3783 L:      dri-devel@lists.freedesktop.org
3784 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
3785 S:      Supported
3786 F:      drivers/gpu/drm/exynos/
3787 F:      include/drm/exynos*
3788 F:      include/uapi/drm/exynos*
3789
3790 DRM DRIVERS FOR FREESCALE DCU
3791 M:      Jianwei Wang <jianwei.wang.chn@gmail.com>
3792 M:      Alison Wang <alison.wang@freescale.com>
3793 L:      dri-devel@lists.freedesktop.org
3794 S:      Supported
3795 F:      drivers/gpu/drm/fsl-dcu/
3796 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
3797 F:      Documentation/devicetree/bindings/display/panel/nec,nl4827hc19_05b.txt
3798
3799 DRM DRIVERS FOR FREESCALE IMX
3800 M:      Philipp Zabel <p.zabel@pengutronix.de>
3801 L:      dri-devel@lists.freedesktop.org
3802 S:      Maintained
3803 F:      drivers/gpu/drm/imx/
3804 F:      drivers/gpu/ipu-v3/
3805 F:      Documentation/devicetree/bindings/display/imx/
3806
3807 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
3808 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
3809 L:      dri-devel@lists.freedesktop.org
3810 T:      git git://github.com/patjak/drm-gma500
3811 S:      Maintained
3812 F:      drivers/gpu/drm/gma500
3813 F:      include/drm/gma500*
3814
3815 DRM DRIVERS FOR NVIDIA TEGRA
3816 M:      Thierry Reding <thierry.reding@gmail.com>
3817 M:      Terje Bergström <tbergstrom@nvidia.com>
3818 L:      dri-devel@lists.freedesktop.org
3819 L:      linux-tegra@vger.kernel.org
3820 T:      git git://anongit.freedesktop.org/tegra/linux.git
3821 S:      Supported
3822 F:      drivers/gpu/drm/tegra/
3823 F:      drivers/gpu/host1x/
3824 F:      include/linux/host1x.h
3825 F:      include/uapi/drm/tegra_drm.h
3826 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
3827
3828 DRM DRIVERS FOR RENESAS
3829 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
3830 L:      dri-devel@lists.freedesktop.org
3831 L:      linux-renesas-soc@vger.kernel.org
3832 T:      git git://people.freedesktop.org/~airlied/linux
3833 S:      Supported
3834 F:      drivers/gpu/drm/rcar-du/
3835 F:      drivers/gpu/drm/shmobile/
3836 F:      include/linux/platform_data/shmob_drm.h
3837
3838 DRM DRIVERS FOR ROCKCHIP
3839 M:      Mark Yao <mark.yao@rock-chips.com>
3840 L:      dri-devel@lists.freedesktop.org
3841 S:      Maintained
3842 F:      drivers/gpu/drm/rockchip/
3843 F:      Documentation/devicetree/bindings/display/rockchip*
3844
3845 DRM DRIVERS FOR STI
3846 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
3847 M:      Vincent Abriou <vincent.abriou@st.com>
3848 L:      dri-devel@lists.freedesktop.org
3849 T:      git http://git.linaro.org/people/benjamin.gaignard/kernel.git
3850 S:      Maintained
3851 F:      drivers/gpu/drm/sti
3852 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
3853
3854 DRM DRIVERS FOR VIVANTE GPU IP
3855 M:      Lucas Stach <l.stach@pengutronix.de>
3856 R:      Russell King <linux+etnaviv@arm.linux.org.uk>
3857 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
3858 L:      dri-devel@lists.freedesktop.org
3859 S:      Maintained
3860 F:      drivers/gpu/drm/etnaviv
3861 F:      Documentation/devicetree/bindings/display/etnaviv
3862
3863 DSBR100 USB FM RADIO DRIVER
3864 M:      Alexey Klimov <klimov.linux@gmail.com>
3865 L:      linux-media@vger.kernel.org
3866 T:      git git://linuxtv.org/media_tree.git
3867 S:      Maintained
3868 F:      drivers/media/radio/dsbr100.c
3869
3870 DSCC4 DRIVER
3871 M:      Francois Romieu <romieu@fr.zoreil.com>
3872 L:      netdev@vger.kernel.org
3873 S:      Maintained
3874 F:      drivers/net/wan/dscc4.c
3875
3876 DT3155 MEDIA DRIVER
3877 M:      Hans Verkuil <hverkuil@xs4all.nl>
3878 L:      linux-media@vger.kernel.org
3879 T:      git git://linuxtv.org/media_tree.git
3880 W:      https://linuxtv.org
3881 S:      Odd Fixes
3882 F:      drivers/media/pci/dt3155/
3883
3884 DVB_USB_AF9015 MEDIA DRIVER
3885 M:      Antti Palosaari <crope@iki.fi>
3886 L:      linux-media@vger.kernel.org
3887 W:      https://linuxtv.org
3888 W:      http://palosaari.fi/linux/
3889 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3890 T:      git git://linuxtv.org/anttip/media_tree.git
3891 S:      Maintained
3892 F:      drivers/media/usb/dvb-usb-v2/af9015*
3893
3894 DVB_USB_AF9035 MEDIA DRIVER
3895 M:      Antti Palosaari <crope@iki.fi>
3896 L:      linux-media@vger.kernel.org
3897 W:      https://linuxtv.org
3898 W:      http://palosaari.fi/linux/
3899 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3900 T:      git git://linuxtv.org/anttip/media_tree.git
3901 S:      Maintained
3902 F:      drivers/media/usb/dvb-usb-v2/af9035*
3903
3904 DVB_USB_ANYSEE MEDIA DRIVER
3905 M:      Antti Palosaari <crope@iki.fi>
3906 L:      linux-media@vger.kernel.org
3907 W:      https://linuxtv.org
3908 W:      http://palosaari.fi/linux/
3909 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3910 T:      git git://linuxtv.org/anttip/media_tree.git
3911 S:      Maintained
3912 F:      drivers/media/usb/dvb-usb-v2/anysee*
3913
3914 DVB_USB_AU6610 MEDIA DRIVER
3915 M:      Antti Palosaari <crope@iki.fi>
3916 L:      linux-media@vger.kernel.org
3917 W:      https://linuxtv.org
3918 W:      http://palosaari.fi/linux/
3919 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3920 T:      git git://linuxtv.org/anttip/media_tree.git
3921 S:      Maintained
3922 F:      drivers/media/usb/dvb-usb-v2/au6610*
3923
3924 DVB_USB_CE6230 MEDIA DRIVER
3925 M:      Antti Palosaari <crope@iki.fi>
3926 L:      linux-media@vger.kernel.org
3927 W:      https://linuxtv.org
3928 W:      http://palosaari.fi/linux/
3929 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3930 T:      git git://linuxtv.org/anttip/media_tree.git
3931 S:      Maintained
3932 F:      drivers/media/usb/dvb-usb-v2/ce6230*
3933
3934 DVB_USB_CXUSB MEDIA DRIVER
3935 M:      Michael Krufky <mkrufky@linuxtv.org>
3936 L:      linux-media@vger.kernel.org
3937 W:      https://linuxtv.org
3938 W:      http://github.com/mkrufky
3939 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3940 T:      git git://linuxtv.org/media_tree.git
3941 S:      Maintained
3942 F:      drivers/media/usb/dvb-usb/cxusb*
3943
3944 DVB_USB_EC168 MEDIA DRIVER
3945 M:      Antti Palosaari <crope@iki.fi>
3946 L:      linux-media@vger.kernel.org
3947 W:      https://linuxtv.org
3948 W:      http://palosaari.fi/linux/
3949 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3950 T:      git git://linuxtv.org/anttip/media_tree.git
3951 S:      Maintained
3952 F:      drivers/media/usb/dvb-usb-v2/ec168*
3953
3954 DVB_USB_GL861 MEDIA DRIVER
3955 M:      Antti Palosaari <crope@iki.fi>
3956 L:      linux-media@vger.kernel.org
3957 W:      https://linuxtv.org
3958 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3959 T:      git git://linuxtv.org/anttip/media_tree.git
3960 S:      Maintained
3961 F:      drivers/media/usb/dvb-usb-v2/gl861*
3962
3963 DVB_USB_MXL111SF MEDIA DRIVER
3964 M:      Michael Krufky <mkrufky@linuxtv.org>
3965 L:      linux-media@vger.kernel.org
3966 W:      https://linuxtv.org
3967 W:      http://github.com/mkrufky
3968 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3969 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
3970 S:      Maintained
3971 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
3972
3973 DVB_USB_RTL28XXU MEDIA DRIVER
3974 M:      Antti Palosaari <crope@iki.fi>
3975 L:      linux-media@vger.kernel.org
3976 W:      https://linuxtv.org
3977 W:      http://palosaari.fi/linux/
3978 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3979 T:      git git://linuxtv.org/anttip/media_tree.git
3980 S:      Maintained
3981 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
3982
3983 DVB_USB_V2 MEDIA DRIVER
3984 M:      Antti Palosaari <crope@iki.fi>
3985 L:      linux-media@vger.kernel.org
3986 W:      https://linuxtv.org
3987 W:      http://palosaari.fi/linux/
3988 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3989 T:      git git://linuxtv.org/anttip/media_tree.git
3990 S:      Maintained
3991 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
3992 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
3993
3994 DYNAMIC DEBUG
3995 M:      Jason Baron <jbaron@akamai.com>
3996 S:      Maintained
3997 F:      lib/dynamic_debug.c
3998 F:      include/linux/dynamic_debug.h
3999
4000 DZ DECSTATION DZ11 SERIAL DRIVER
4001 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4002 S:      Maintained
4003 F:      drivers/tty/serial/dz.*
4004
4005 E3X0 POWER BUTTON DRIVER
4006 M:      Moritz Fischer <moritz.fischer@ettus.com>
4007 L:      usrp-users@lists.ettus.com
4008 W:      http://www.ettus.com
4009 S:      Supported
4010 F:      drivers/input/misc/e3x0-button.c
4011 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
4012
4013 E4000 MEDIA DRIVER
4014 M:      Antti Palosaari <crope@iki.fi>
4015 L:      linux-media@vger.kernel.org
4016 W:      https://linuxtv.org
4017 W:      http://palosaari.fi/linux/
4018 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4019 T:      git git://linuxtv.org/anttip/media_tree.git
4020 S:      Maintained
4021 F:      drivers/media/tuners/e4000*
4022
4023 EATA ISA/EISA/PCI SCSI DRIVER
4024 M:      Dario Ballabio <ballabio_dario@emc.com>
4025 L:      linux-scsi@vger.kernel.org
4026 S:      Maintained
4027 F:      drivers/scsi/eata.c
4028
4029 EC100 MEDIA DRIVER
4030 M:      Antti Palosaari <crope@iki.fi>
4031 L:      linux-media@vger.kernel.org
4032 W:      https://linuxtv.org
4033 W:      http://palosaari.fi/linux/
4034 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4035 T:      git git://linuxtv.org/anttip/media_tree.git
4036 S:      Maintained
4037 F:      drivers/media/dvb-frontends/ec100*
4038
4039 ECRYPT FILE SYSTEM
4040 M:      Tyler Hicks <tyhicks@canonical.com>
4041 L:      ecryptfs@vger.kernel.org
4042 W:      http://ecryptfs.org
4043 W:      https://launchpad.net/ecryptfs
4044 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
4045 S:      Supported
4046 F:      Documentation/filesystems/ecryptfs.txt
4047 F:      fs/ecryptfs/
4048
4049 EDAC-CORE
4050 M:      Doug Thompson <dougthompson@xmission.com>
4051 M:      Borislav Petkov <bp@alien8.de>
4052 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4053 L:      linux-edac@vger.kernel.org
4054 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git for-next
4055 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-edac.git linux_next
4056 S:      Supported
4057 F:      Documentation/edac.txt
4058 F:      drivers/edac/
4059 F:      include/linux/edac.h
4060
4061 EDAC-AMD64
4062 M:      Doug Thompson <dougthompson@xmission.com>
4063 M:      Borislav Petkov <bp@alien8.de>
4064 L:      linux-edac@vger.kernel.org
4065 S:      Maintained
4066 F:      drivers/edac/amd64_edac*
4067
4068 EDAC-CALXEDA
4069 M:      Doug Thompson <dougthompson@xmission.com>
4070 M:      Robert Richter <rric@kernel.org>
4071 L:      linux-edac@vger.kernel.org
4072 S:      Maintained
4073 F:      drivers/edac/highbank*
4074
4075 EDAC-CAVIUM
4076 M:      Ralf Baechle <ralf@linux-mips.org>
4077 M:      David Daney <david.daney@cavium.com>
4078 L:      linux-edac@vger.kernel.org
4079 L:      linux-mips@linux-mips.org
4080 S:      Supported
4081 F:      drivers/edac/octeon_edac*
4082
4083 EDAC-E752X
4084 M:      Mark Gross <mark.gross@intel.com>
4085 M:      Doug Thompson <dougthompson@xmission.com>
4086 L:      linux-edac@vger.kernel.org
4087 S:      Maintained
4088 F:      drivers/edac/e752x_edac.c
4089
4090 EDAC-E7XXX
4091 M:      Doug Thompson <dougthompson@xmission.com>
4092 L:      linux-edac@vger.kernel.org
4093 S:      Maintained
4094 F:      drivers/edac/e7xxx_edac.c
4095
4096 EDAC-GHES
4097 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4098 L:      linux-edac@vger.kernel.org
4099 S:      Maintained
4100 F:      drivers/edac/ghes_edac.c
4101
4102 EDAC-I82443BXGX
4103 M:      Tim Small <tim@buttersideup.com>
4104 L:      linux-edac@vger.kernel.org
4105 S:      Maintained
4106 F:      drivers/edac/i82443bxgx_edac.c
4107
4108 EDAC-I3000
4109 M:      Jason Uhlenkott <juhlenko@akamai.com>
4110 L:      linux-edac@vger.kernel.org
4111 S:      Maintained
4112 F:      drivers/edac/i3000_edac.c
4113
4114 EDAC-I5000
4115 M:      Doug Thompson <dougthompson@xmission.com>
4116 L:      linux-edac@vger.kernel.org
4117 S:      Maintained
4118 F:      drivers/edac/i5000_edac.c
4119
4120 EDAC-I5400
4121 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4122 L:      linux-edac@vger.kernel.org
4123 S:      Maintained
4124 F:      drivers/edac/i5400_edac.c
4125
4126 EDAC-I7300
4127 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4128 L:      linux-edac@vger.kernel.org
4129 S:      Maintained
4130 F:      drivers/edac/i7300_edac.c
4131
4132 EDAC-I7CORE
4133 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4134 L:      linux-edac@vger.kernel.org
4135 S:      Maintained
4136 F:      drivers/edac/i7core_edac.c
4137
4138 EDAC-I82975X
4139 M:      Ranganathan Desikan <ravi@jetztechnologies.com>
4140 M:      "Arvind R." <arvino55@gmail.com>
4141 L:      linux-edac@vger.kernel.org
4142 S:      Maintained
4143 F:      drivers/edac/i82975x_edac.c
4144
4145 EDAC-IE31200
4146 M:      Jason Baron <jbaron@akamai.com>
4147 L:      linux-edac@vger.kernel.org
4148 S:      Maintained
4149 F:      drivers/edac/ie31200_edac.c
4150
4151 EDAC-MPC85XX
4152 M:      Johannes Thumshirn <morbidrsa@gmail.com>
4153 L:      linux-edac@vger.kernel.org
4154 S:      Maintained
4155 F:      drivers/edac/mpc85xx_edac.[ch]
4156
4157 EDAC-PASEMI
4158 M:      Egor Martovetsky <egor@pasemi.com>
4159 L:      linux-edac@vger.kernel.org
4160 S:      Maintained
4161 F:      drivers/edac/pasemi_edac.c
4162
4163 EDAC-R82600
4164 M:      Tim Small <tim@buttersideup.com>
4165 L:      linux-edac@vger.kernel.org
4166 S:      Maintained
4167 F:      drivers/edac/r82600_edac.c
4168
4169 EDAC-SBRIDGE
4170 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4171 L:      linux-edac@vger.kernel.org
4172 S:      Maintained
4173 F:      drivers/edac/sb_edac.c
4174
4175 EDAC-XGENE
4176 APPLIED MICRO (APM) X-GENE SOC EDAC
4177 M:     Loc Ho <lho@apm.com>
4178 S:     Supported
4179 F:     drivers/edac/xgene_edac.c
4180 F:     Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
4181
4182 EDIROL UA-101/UA-1000 DRIVER
4183 M:      Clemens Ladisch <clemens@ladisch.de>
4184 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4185 T:      git git://git.alsa-project.org/alsa-kernel.git
4186 S:      Maintained
4187 F:      sound/usb/misc/ua101.c
4188
4189 EXTENSIBLE FIRMWARE INTERFACE (EFI)
4190 M:      Matt Fleming <matt@codeblueprint.co.uk>
4191 L:      linux-efi@vger.kernel.org
4192 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4193 S:      Maintained
4194 F:      Documentation/efi-stub.txt
4195 F:      arch/ia64/kernel/efi.c
4196 F:      arch/x86/boot/compressed/eboot.[ch]
4197 F:      arch/x86/include/asm/efi.h
4198 F:      arch/x86/platform/efi/*
4199 F:      drivers/firmware/efi/*
4200 F:      include/linux/efi*.h
4201
4202 EFI VARIABLE FILESYSTEM
4203 M:      Matthew Garrett <matthew.garrett@nebula.com>
4204 M:      Jeremy Kerr <jk@ozlabs.org>
4205 M:      Matt Fleming <matt@codeblueprint.co.uk>
4206 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4207 L:      linux-efi@vger.kernel.org
4208 S:      Maintained
4209 F:      fs/efivarfs/
4210
4211 EFIFB FRAMEBUFFER DRIVER
4212 L:      linux-fbdev@vger.kernel.org
4213 M:      Peter Jones <pjones@redhat.com>
4214 S:      Maintained
4215 F:      drivers/video/fbdev/efifb.c
4216
4217 EFS FILESYSTEM
4218 W:      http://aeschi.ch.eu.org/efs/
4219 S:      Orphan
4220 F:      fs/efs/
4221
4222 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
4223 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
4224 L:      netdev@vger.kernel.org
4225 S:      Maintained
4226 F:      drivers/net/ethernet/ibm/ehea/
4227
4228 EM28XX VIDEO4LINUX DRIVER
4229 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4230 L:      linux-media@vger.kernel.org
4231 W:      https://linuxtv.org
4232 T:      git git://linuxtv.org/media_tree.git
4233 S:      Maintained
4234 F:      drivers/media/usb/em28xx/
4235
4236 EMBEDDED LINUX
4237 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
4238 M:      Matt Mackall <mpm@selenic.com>
4239 M:      David Woodhouse <dwmw2@infradead.org>
4240 L:      linux-embedded@vger.kernel.org
4241 S:      Maintained
4242
4243 EMULEX/AVAGO LPFC FC/FCOE SCSI DRIVER
4244 M:      James Smart <james.smart@avagotech.com>
4245 M:      Dick Kennedy <dick.kennedy@avagotech.com>
4246 L:      linux-scsi@vger.kernel.org
4247 W:      http://www.avagotech.com
4248 S:      Supported
4249 F:      drivers/scsi/lpfc/
4250
4251 ENE CB710 FLASH CARD READER DRIVER
4252 M:      MichaÅ‚ MirosÅ‚aw <mirq-linux@rere.qmqm.pl>
4253 S:      Maintained
4254 F:      drivers/misc/cb710/
4255 F:      drivers/mmc/host/cb710-mmc.*
4256 F:      include/linux/cb710.h
4257
4258 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
4259 M:      Maxim Levitsky <maximlevitsky@gmail.com>
4260 S:      Maintained
4261 F:      drivers/media/rc/ene_ir.*
4262
4263 EPSON S1D13XXX FRAMEBUFFER DRIVER
4264 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
4265 S:      Maintained
4266 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
4267 F:      drivers/video/fbdev/s1d13xxxfb.c
4268 F:      include/video/s1d13xxxfb.h
4269
4270 ET131X NETWORK DRIVER
4271 M:      Mark Einon <mark.einon@gmail.com>
4272 S:      Odd Fixes
4273 F:      drivers/net/ethernet/agere/
4274
4275 ETHERNET BRIDGE
4276 M:      Stephen Hemminger <stephen@networkplumber.org>
4277 L:      bridge@lists.linux-foundation.org
4278 L:      netdev@vger.kernel.org
4279 W:      http://www.linuxfoundation.org/en/Net:Bridge
4280 S:      Maintained
4281 F:      include/linux/netfilter_bridge/
4282 F:      net/bridge/
4283
4284 ETHERNET PHY LIBRARY
4285 M:      Florian Fainelli <f.fainelli@gmail.com>
4286 L:      netdev@vger.kernel.org
4287 S:      Maintained
4288 F:      include/linux/phy.h
4289 F:      include/linux/phy_fixed.h
4290 F:      drivers/net/phy/
4291 F:      Documentation/networking/phy.txt
4292 F:      drivers/of/of_mdio.c
4293 F:      drivers/of/of_net.c
4294
4295 EXT2 FILE SYSTEM
4296 M:      Jan Kara <jack@suse.com>
4297 L:      linux-ext4@vger.kernel.org
4298 S:      Maintained
4299 F:      Documentation/filesystems/ext2.txt
4300 F:      fs/ext2/
4301 F:      include/linux/ext2*
4302
4303 EXT4 FILE SYSTEM
4304 M:      "Theodore Ts'o" <tytso@mit.edu>
4305 M:      Andreas Dilger <adilger.kernel@dilger.ca>
4306 L:      linux-ext4@vger.kernel.org
4307 W:      http://ext4.wiki.kernel.org
4308 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
4309 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
4310 S:      Maintained
4311 F:      Documentation/filesystems/ext4.txt
4312 F:      fs/ext4/
4313
4314 Extended Verification Module (EVM)
4315 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
4316 L:      linux-ima-devel@lists.sourceforge.net
4317 L:      linux-security-module@vger.kernel.org
4318 S:      Supported
4319 F:      security/integrity/evm/
4320
4321 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
4322 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
4323 M:      Chanwoo Choi <cw00.choi@samsung.com>
4324 L:      linux-kernel@vger.kernel.org
4325 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
4326 S:      Maintained
4327 F:      drivers/extcon/
4328 F:      include/linux/extcon/
4329 F:      include/linux/extcon.h
4330 F:      Documentation/extcon/
4331 F:      Documentation/devicetree/bindings/extcon/
4332
4333 EXYNOS DP DRIVER
4334 M:      Jingoo Han <jingoohan1@gmail.com>
4335 L:      dri-devel@lists.freedesktop.org
4336 S:      Maintained
4337 F:      drivers/gpu/drm/exynos/exynos_dp*
4338
4339 EXYNOS MIPI DISPLAY DRIVERS
4340 M:      Inki Dae <inki.dae@samsung.com>
4341 M:      Donghwa Lee <dh09.lee@samsung.com>
4342 M:      Kyungmin Park <kyungmin.park@samsung.com>
4343 L:      linux-fbdev@vger.kernel.org
4344 S:      Maintained
4345 F:      drivers/video/fbdev/exynos/exynos_mipi*
4346 F:      include/video/exynos_mipi*
4347
4348 F71805F HARDWARE MONITORING DRIVER
4349 M:      Jean Delvare <jdelvare@suse.com>
4350 L:      lm-sensors@lm-sensors.org
4351 S:      Maintained
4352 F:      Documentation/hwmon/f71805f
4353 F:      drivers/hwmon/f71805f.c
4354
4355 FC0011 TUNER DRIVER
4356 M:      Michael Buesch <m@bues.ch>
4357 L:      linux-media@vger.kernel.org
4358 S:      Maintained
4359 F:      drivers/media/tuners/fc0011.h
4360 F:      drivers/media/tuners/fc0011.c
4361
4362 FC2580 MEDIA DRIVER
4363 M:      Antti Palosaari <crope@iki.fi>
4364 L:      linux-media@vger.kernel.org
4365 W:      https://linuxtv.org
4366 W:      http://palosaari.fi/linux/
4367 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4368 T:      git git://linuxtv.org/anttip/media_tree.git
4369 S:      Maintained
4370 F:      drivers/media/tuners/fc2580*
4371
4372 FANOTIFY
4373 M:      Eric Paris <eparis@redhat.com>
4374 S:      Maintained
4375 F:      fs/notify/fanotify/
4376 F:      include/linux/fanotify.h
4377 F:      include/uapi/linux/fanotify.h
4378
4379 FARSYNC SYNCHRONOUS DRIVER
4380 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
4381 W:      http://www.farsite.co.uk/
4382 S:      Supported
4383 F:      drivers/net/wan/farsync.*
4384
4385 FAULT INJECTION SUPPORT
4386 M:      Akinobu Mita <akinobu.mita@gmail.com>
4387 S:      Supported
4388 F:      Documentation/fault-injection/
4389 F:      lib/fault-inject.c
4390
4391 FBTFT Framebuffer drivers
4392 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
4393 M:      Noralf Trønnes <noralf@tronnes.org>
4394 S:      Maintained
4395 F:      drivers/staging/fbtft/
4396
4397 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
4398 M:      Vasu Dev <vasu.dev@intel.com>
4399 L:      fcoe-devel@open-fcoe.org
4400 W:      www.Open-FCoE.org
4401 S:      Supported
4402 F:      drivers/scsi/libfc/
4403 F:      drivers/scsi/fcoe/
4404 F:      include/scsi/fc/
4405 F:      include/scsi/libfc.h
4406 F:      include/scsi/libfcoe.h
4407 F:      include/uapi/scsi/fc/
4408
4409 FILE LOCKING (flock() and fcntl()/lockf())
4410 M:      Jeff Layton <jlayton@poochiereds.net>
4411 M:      "J. Bruce Fields" <bfields@fieldses.org>
4412 L:      linux-fsdevel@vger.kernel.org
4413 S:      Maintained
4414 F:      include/linux/fcntl.h
4415 F:      include/linux/fs.h
4416 F:      include/uapi/linux/fcntl.h
4417 F:      include/uapi/linux/fs.h
4418 F:      fs/fcntl.c
4419 F:      fs/locks.c
4420
4421 FILESYSTEMS (VFS and infrastructure)
4422 M:      Alexander Viro <viro@zeniv.linux.org.uk>
4423 L:      linux-fsdevel@vger.kernel.org
4424 S:      Maintained
4425 F:      fs/*
4426
4427 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
4428 M:      Riku Voipio <riku.voipio@iki.fi>
4429 L:      lm-sensors@lm-sensors.org
4430 S:      Maintained
4431 F:      drivers/hwmon/f75375s.c
4432 F:      include/linux/f75375s.h
4433
4434 FIREWIRE AUDIO DRIVERS
4435 M:      Clemens Ladisch <clemens@ladisch.de>
4436 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4437 T:      git git://git.alsa-project.org/alsa-kernel.git
4438 S:      Maintained
4439 F:      sound/firewire/
4440
4441 FIREWIRE MEDIA DRIVERS (firedtv)
4442 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4443 L:      linux-media@vger.kernel.org
4444 L:      linux1394-devel@lists.sourceforge.net
4445 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
4446 S:      Maintained
4447 F:      drivers/media/firewire/
4448
4449 FIREWIRE SBP-2 TARGET
4450 M:      Chris Boot <bootc@bootc.net>
4451 L:      linux-scsi@vger.kernel.org
4452 L:      target-devel@vger.kernel.org
4453 L:      linux1394-devel@lists.sourceforge.net
4454 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
4455 S:      Maintained
4456 F:      drivers/target/sbp/
4457
4458 FIREWIRE SUBSYSTEM
4459 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4460 L:      linux1394-devel@lists.sourceforge.net
4461 W:      http://ieee1394.wiki.kernel.org/
4462 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
4463 S:      Maintained
4464 F:      drivers/firewire/
4465 F:      include/linux/firewire.h
4466 F:      include/uapi/linux/firewire*.h
4467 F:      tools/firewire/
4468
4469 FIRMWARE LOADER (request_firmware)
4470 M:      Ming Lei <ming.lei@canonical.com>
4471 L:      linux-kernel@vger.kernel.org
4472 S:      Maintained
4473 F:      Documentation/firmware_class/
4474 F:      drivers/base/firmware*.c
4475 F:      include/linux/firmware.h
4476
4477 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
4478 M:      Joshua Morris <josh.h.morris@us.ibm.com>
4479 M:      Philip Kelleher <pjk1939@linux.vnet.ibm.com>
4480 S:      Maintained
4481 F:      drivers/block/rsxx/
4482
4483 FLOPPY DRIVER
4484 M:      Jiri Kosina <jikos@kernel.org>
4485 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
4486 S:      Odd fixes
4487 F:      drivers/block/floppy.c
4488
4489 FMC SUBSYSTEM
4490 M:      Alessandro Rubini <rubini@gnudd.com>
4491 W:      http://www.ohwr.org/projects/fmc-bus
4492 S:      Supported
4493 F:      drivers/fmc/
4494 F:      include/linux/fmc*.h
4495 F:      include/linux/ipmi-fru.h
4496 K:      fmc_d.*register
4497
4498 FPGA MANAGER FRAMEWORK
4499 M:      Alan Tull <atull@opensource.altera.com>
4500 R:      Moritz Fischer <moritz.fischer@ettus.com>
4501 S:      Maintained
4502 F:      drivers/fpga/
4503 F:      include/linux/fpga/fpga-mgr.h
4504 W:      http://www.rocketboards.org
4505
4506 FPU EMULATOR
4507 M:      Bill Metzenthen <billm@melbpc.org.au>
4508 W:      http://floatingpoint.sourceforge.net/emulator/index.html
4509 S:      Maintained
4510 F:      arch/x86/math-emu/
4511
4512 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
4513 L:      netdev@vger.kernel.org
4514 S:      Orphan
4515 F:      drivers/net/wan/dlci.c
4516 F:      drivers/net/wan/sdla.c
4517
4518 FRAMEBUFFER LAYER
4519 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
4520 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
4521 L:      linux-fbdev@vger.kernel.org
4522 W:      http://linux-fbdev.sourceforge.net/
4523 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
4524 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git
4525 S:      Maintained
4526 F:      Documentation/fb/
4527 F:      drivers/video/
4528 F:      include/video/
4529 F:      include/linux/fb.h
4530 F:      include/uapi/video/
4531 F:      include/uapi/linux/fb.h
4532
4533 FREESCALE DIU FRAMEBUFFER DRIVER
4534 M:      Timur Tabi <timur@tabi.org>
4535 L:      linux-fbdev@vger.kernel.org
4536 S:      Maintained
4537 F:      drivers/video/fbdev/fsl-diu-fb.*
4538
4539 FREESCALE DMA DRIVER
4540 M:      Li Yang <leoli@freescale.com>
4541 M:      Zhang Wei <zw@zh-kernel.org>
4542 L:      linuxppc-dev@lists.ozlabs.org
4543 S:      Maintained
4544 F:      drivers/dma/fsldma.*
4545
4546 FREESCALE I2C CPM DRIVER
4547 M:      Jochen Friedrich <jochen@scram.de>
4548 L:      linuxppc-dev@lists.ozlabs.org
4549 L:      linux-i2c@vger.kernel.org
4550 S:      Maintained
4551 F:      drivers/i2c/busses/i2c-cpm.c
4552
4553 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
4554 M:      Sascha Hauer <kernel@pengutronix.de>
4555 L:      linux-fbdev@vger.kernel.org
4556 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4557 S:      Maintained
4558 F:      include/linux/platform_data/video-imxfb.h
4559 F:      drivers/video/fbdev/imxfb.c
4560
4561 FREESCALE QUAD SPI DRIVER
4562 M:      Han Xu <han.xu@freescale.com>
4563 L:      linux-mtd@lists.infradead.org
4564 S:      Maintained
4565 F:      drivers/mtd/spi-nor/fsl-quadspi.c
4566
4567 FREESCALE SOC FS_ENET DRIVER
4568 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
4569 M:      Vitaly Bordug <vbordug@ru.mvista.com>
4570 L:      linuxppc-dev@lists.ozlabs.org
4571 L:      netdev@vger.kernel.org
4572 S:      Maintained
4573 F:      drivers/net/ethernet/freescale/fs_enet/
4574 F:      include/linux/fs_enet_pd.h
4575
4576 FREESCALE QUICC ENGINE LIBRARY
4577 L:      linuxppc-dev@lists.ozlabs.org
4578 S:      Orphan
4579 F:      drivers/soc/fsl/qe/
4580 F:      include/soc/fsl/*qe*.h
4581 F:      include/soc/fsl/*ucc*.h
4582
4583 FREESCALE USB PERIPHERAL DRIVERS
4584 M:      Li Yang <leoli@freescale.com>
4585 L:      linux-usb@vger.kernel.org
4586 L:      linuxppc-dev@lists.ozlabs.org
4587 S:      Maintained
4588 F:      drivers/usb/gadget/udc/fsl*
4589
4590 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
4591 M:      Li Yang <leoli@freescale.com>
4592 L:      netdev@vger.kernel.org
4593 L:      linuxppc-dev@lists.ozlabs.org
4594 S:      Maintained
4595 F:      drivers/net/ethernet/freescale/ucc_geth*
4596
4597 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
4598 M:      Claudiu Manoil <claudiu.manoil@freescale.com>
4599 L:      netdev@vger.kernel.org
4600 S:      Maintained
4601 F:      drivers/net/ethernet/freescale/gianfar*
4602 X:      drivers/net/ethernet/freescale/gianfar_ptp.c
4603 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
4604
4605 FREESCALE QUICC ENGINE UCC UART DRIVER
4606 M:      Timur Tabi <timur@tabi.org>
4607 L:      linuxppc-dev@lists.ozlabs.org
4608 S:      Maintained
4609 F:      drivers/tty/serial/ucc_uart.c
4610
4611 FREESCALE SOC SOUND DRIVERS
4612 M:      Timur Tabi <timur@tabi.org>
4613 M:      Nicolin Chen <nicoleotsuka@gmail.com>
4614 M:      Xiubo Li <Xiubo.Lee@gmail.com>
4615 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4616 L:      linuxppc-dev@lists.ozlabs.org
4617 S:      Maintained
4618 F:      sound/soc/fsl/fsl*
4619 F:      sound/soc/fsl/imx*
4620 F:      sound/soc/fsl/mpc8610_hpcd.c
4621
4622 FREESCALE QORIQ MANAGEMENT COMPLEX DRIVER
4623 M:      "J. German Rivera" <German.Rivera@freescale.com>
4624 L:      linux-kernel@vger.kernel.org
4625 S:      Maintained
4626 F:      drivers/staging/fsl-mc/
4627
4628 FREEVXFS FILESYSTEM
4629 M:      Christoph Hellwig <hch@infradead.org>
4630 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
4631 S:      Maintained
4632 F:      fs/freevxfs/
4633
4634 FREEZER
4635 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4636 M:      Pavel Machek <pavel@ucw.cz>
4637 L:      linux-pm@vger.kernel.org
4638 S:      Supported
4639 F:      Documentation/power/freezing-of-tasks.txt
4640 F:      include/linux/freezer.h
4641 F:      kernel/freezer.c
4642
4643 FRONTSWAP API
4644 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4645 L:      linux-kernel@vger.kernel.org
4646 S:      Maintained
4647 F:      mm/frontswap.c
4648 F:      include/linux/frontswap.h
4649
4650 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
4651 M:      David Howells <dhowells@redhat.com>
4652 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
4653 S:      Supported
4654 F:      Documentation/filesystems/caching/
4655 F:      fs/fscache/
4656 F:      include/linux/fscache*.h
4657
4658 F2FS FILE SYSTEM
4659 M:      Jaegeuk Kim <jaegeuk@kernel.org>
4660 M:      Changman Lee <cm224.lee@samsung.com>
4661 R:      Chao Yu <chao2.yu@samsung.com>
4662 L:      linux-f2fs-devel@lists.sourceforge.net
4663 W:      http://en.wikipedia.org/wiki/F2FS
4664 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
4665 S:      Maintained
4666 F:      Documentation/filesystems/f2fs.txt
4667 F:      Documentation/ABI/testing/sysfs-fs-f2fs
4668 F:      fs/f2fs/
4669 F:      include/linux/f2fs_fs.h
4670 F:      include/trace/events/f2fs.h
4671
4672 FUJITSU FR-V (FRV) PORT
4673 S:      Orphan
4674 F:      arch/frv/
4675
4676 FUJITSU LAPTOP EXTRAS
4677 M:      Jonathan Woithe <jwoithe@just42.net>
4678 L:      platform-driver-x86@vger.kernel.org
4679 S:      Maintained
4680 F:      drivers/platform/x86/fujitsu-laptop.c
4681
4682 FUJITSU M-5MO LS CAMERA ISP DRIVER
4683 M:      Kyungmin Park <kyungmin.park@samsung.com>
4684 M:      Heungjun Kim <riverful.kim@samsung.com>
4685 L:      linux-media@vger.kernel.org
4686 S:      Maintained
4687 F:      drivers/media/i2c/m5mols/
4688 F:      include/media/i2c/m5mols.h
4689
4690 FUJITSU TABLET EXTRAS
4691 M:      Robert Gerlach <khnz@gmx.de>
4692 L:      platform-driver-x86@vger.kernel.org
4693 S:      Maintained
4694 F:      drivers/platform/x86/fujitsu-tablet.c
4695
4696 FUSE: FILESYSTEM IN USERSPACE
4697 M:      Miklos Szeredi <miklos@szeredi.hu>
4698 L:      fuse-devel@lists.sourceforge.net
4699 W:      http://fuse.sourceforge.net/
4700 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
4701 S:      Maintained
4702 F:      fs/fuse/
4703 F:      include/uapi/linux/fuse.h
4704 F:      Documentation/filesystems/fuse.txt
4705
4706 FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
4707 M:      Rik Faith <faith@cs.unc.edu>
4708 L:      linux-scsi@vger.kernel.org
4709 S:      Odd Fixes (e.g., new signatures)
4710 F:      drivers/scsi/fdomain.*
4711
4712 GCOV BASED KERNEL PROFILING
4713 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
4714 S:      Maintained
4715 F:      kernel/gcov/
4716 F:      Documentation/gcov.txt
4717
4718 GDT SCSI DISK ARRAY CONTROLLER DRIVER
4719 M:      Achim Leubner <achim_leubner@adaptec.com>
4720 L:      linux-scsi@vger.kernel.org
4721 W:      http://www.icp-vortex.com/
4722 S:      Supported
4723 F:      drivers/scsi/gdt*
4724
4725 GDB KERNEL DEBUGGING HELPER SCRIPTS
4726 M:      Jan Kiszka <jan.kiszka@siemens.com>
4727 S:      Supported
4728 F:      scripts/gdb/
4729
4730 GEMTEK FM RADIO RECEIVER DRIVER
4731 M:      Hans Verkuil <hverkuil@xs4all.nl>
4732 L:      linux-media@vger.kernel.org
4733 T:      git git://linuxtv.org/media_tree.git
4734 W:      https://linuxtv.org
4735 S:      Maintained
4736 F:      drivers/media/radio/radio-gemtek*
4737
4738 GENERIC GPIO I2C DRIVER
4739 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
4740 S:      Supported
4741 F:      drivers/i2c/busses/i2c-gpio.c
4742 F:      include/linux/i2c-gpio.h
4743
4744 GENERIC GPIO I2C MULTIPLEXER DRIVER
4745 M:      Peter Korsgaard <peter.korsgaard@barco.com>
4746 L:      linux-i2c@vger.kernel.org
4747 S:      Supported
4748 F:      drivers/i2c/muxes/i2c-mux-gpio.c
4749 F:      include/linux/i2c-mux-gpio.h
4750 F:      Documentation/i2c/muxes/i2c-mux-gpio
4751
4752 GENERIC HDLC (WAN) DRIVERS
4753 M:      Krzysztof Halasa <khc@pm.waw.pl>
4754 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
4755 S:      Maintained
4756 F:      drivers/net/wan/c101.c
4757 F:      drivers/net/wan/hd6457*
4758 F:      drivers/net/wan/hdlc*
4759 F:      drivers/net/wan/n2.c
4760 F:      drivers/net/wan/pc300too.c
4761 F:      drivers/net/wan/pci200syn.c
4762 F:      drivers/net/wan/wanxl*
4763
4764 GENERIC INCLUDE/ASM HEADER FILES
4765 M:      Arnd Bergmann <arnd@arndb.de>
4766 L:      linux-arch@vger.kernel.org
4767 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
4768 S:      Maintained
4769 F:      include/asm-generic/
4770 F:      include/uapi/asm-generic/
4771
4772 GENERIC PHY FRAMEWORK
4773 M:      Kishon Vijay Abraham I <kishon@ti.com>
4774 L:      linux-kernel@vger.kernel.org
4775 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
4776 S:      Supported
4777 F:      drivers/phy/
4778 F:      include/linux/phy/
4779
4780 GENERIC PM DOMAINS
4781 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4782 M:      Kevin Hilman <khilman@kernel.org>
4783 M:      Ulf Hansson <ulf.hansson@linaro.org>
4784 L:      linux-pm@vger.kernel.org
4785 S:      Supported
4786 F:      drivers/base/power/domain*.c
4787 F:      include/linux/pm_domain.h
4788
4789 GENERIC UIO DRIVER FOR PCI DEVICES
4790 M:      "Michael S. Tsirkin" <mst@redhat.com>
4791 L:      kvm@vger.kernel.org
4792 S:      Supported
4793 F:      drivers/uio/uio_pci_generic.c
4794
4795 GET_MAINTAINER SCRIPT
4796 M:      Joe Perches <joe@perches.com>
4797 S:      Maintained
4798 F:      scripts/get_maintainer.pl
4799
4800 GFS2 FILE SYSTEM
4801 M:      Steven Whitehouse <swhiteho@redhat.com>
4802 M:      Bob Peterson <rpeterso@redhat.com>
4803 L:      cluster-devel@redhat.com
4804 W:      http://sources.redhat.com/cluster/
4805 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
4806 S:      Supported
4807 F:      Documentation/filesystems/gfs2*.txt
4808 F:      fs/gfs2/
4809 F:      include/uapi/linux/gfs2_ondisk.h
4810
4811 GIGASET ISDN DRIVERS
4812 M:      Paul Bolle <pebolle@tiscali.nl>
4813 L:      gigaset307x-common@lists.sourceforge.net
4814 W:      http://gigaset307x.sourceforge.net/
4815 S:      Odd Fixes
4816 F:      Documentation/isdn/README.gigaset
4817 F:      drivers/isdn/gigaset/
4818 F:      include/uapi/linux/gigaset_dev.h
4819
4820 GO7007 MPEG CODEC
4821 M:      Hans Verkuil <hans.verkuil@cisco.com>
4822 L:      linux-media@vger.kernel.org
4823 S:      Maintained
4824 F:      drivers/media/usb/go7007/
4825
4826 GOODIX TOUCHSCREEN
4827 M:      Bastien Nocera <hadess@hadess.net>
4828 L:      linux-input@vger.kernel.org
4829 S:      Maintained
4830 F:      drivers/input/touchscreen/goodix.c
4831
4832 GPIO SUBSYSTEM
4833 M:      Linus Walleij <linus.walleij@linaro.org>
4834 M:      Alexandre Courbot <gnurou@gmail.com>
4835 L:      linux-gpio@vger.kernel.org
4836 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
4837 S:      Maintained
4838 F:      Documentation/gpio/
4839 F:      drivers/gpio/
4840 F:      include/linux/gpio/
4841 F:      include/linux/gpio.h
4842 F:      include/asm-generic/gpio.h
4843
4844 GRE DEMULTIPLEXER DRIVER
4845 M:      Dmitry Kozlov <xeb@mail.ru>
4846 L:      netdev@vger.kernel.org
4847 S:      Maintained
4848 F:      net/ipv4/gre_demux.c
4849 F:      net/ipv4/gre_offload.c
4850 F:      include/net/gre.h
4851
4852 GRETH 10/100/1G Ethernet MAC device driver
4853 M:      Kristoffer Glembo <kristoffer@gaisler.com>
4854 L:      netdev@vger.kernel.org
4855 S:      Maintained
4856 F:      drivers/net/ethernet/aeroflex/
4857
4858 GSPCA FINEPIX SUBDRIVER
4859 M:      Frank Zago <frank@zago.net>
4860 L:      linux-media@vger.kernel.org
4861 T:      git git://linuxtv.org/media_tree.git
4862 S:      Maintained
4863 F:      drivers/media/usb/gspca/finepix.c
4864
4865 GSPCA GL860 SUBDRIVER
4866 M:      Olivier Lorin <o.lorin@laposte.net>
4867 L:      linux-media@vger.kernel.org
4868 T:      git git://linuxtv.org/media_tree.git
4869 S:      Maintained
4870 F:      drivers/media/usb/gspca/gl860/
4871
4872 GSPCA M5602 SUBDRIVER
4873 M:      Erik Andren <erik.andren@gmail.com>
4874 L:      linux-media@vger.kernel.org
4875 T:      git git://linuxtv.org/media_tree.git
4876 S:      Maintained
4877 F:      drivers/media/usb/gspca/m5602/
4878
4879 GSPCA PAC207 SONIXB SUBDRIVER
4880 M:      Hans de Goede <hdegoede@redhat.com>
4881 L:      linux-media@vger.kernel.org
4882 T:      git git://linuxtv.org/media_tree.git
4883 S:      Maintained
4884 F:      drivers/media/usb/gspca/pac207.c
4885
4886 GSPCA SN9C20X SUBDRIVER
4887 M:      Brian Johnson <brijohn@gmail.com>
4888 L:      linux-media@vger.kernel.org
4889 T:      git git://linuxtv.org/media_tree.git
4890 S:      Maintained
4891 F:      drivers/media/usb/gspca/sn9c20x.c
4892
4893 GSPCA T613 SUBDRIVER
4894 M:      Leandro Costantino <lcostantino@gmail.com>
4895 L:      linux-media@vger.kernel.org
4896 T:      git git://linuxtv.org/media_tree.git
4897 S:      Maintained
4898 F:      drivers/media/usb/gspca/t613.c
4899
4900 GSPCA USB WEBCAM DRIVER
4901 M:      Hans de Goede <hdegoede@redhat.com>
4902 L:      linux-media@vger.kernel.org
4903 T:      git git://linuxtv.org/media_tree.git
4904 S:      Maintained
4905 F:      drivers/media/usb/gspca/
4906
4907 GUID PARTITION TABLE (GPT)
4908 M:      Davidlohr Bueso <dave@stgolabs.net>
4909 L:      linux-efi@vger.kernel.org
4910 S:      Maintained
4911 F:      block/partitions/efi.*
4912
4913 STK1160 USB VIDEO CAPTURE DRIVER
4914 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
4915 L:      linux-media@vger.kernel.org
4916 T:      git git://linuxtv.org/media_tree.git
4917 S:      Maintained
4918 F:      drivers/media/usb/stk1160/
4919
4920 H8/300 ARCHITECTURE
4921 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
4922 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
4923 W:      http://uclinux-h8.sourceforge.jp
4924 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
4925 S:      Maintained
4926 F:      arch/h8300/
4927 F:      drivers/clocksource/h8300_*.c
4928 F:      drivers/clk/h8300/
4929 F:      drivers/irqchip/irq-renesas-h8*.c
4930
4931 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
4932 M:      Frank Seidel <frank@f-seidel.de>
4933 L:      platform-driver-x86@vger.kernel.org
4934 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
4935 S:      Maintained
4936 F:      drivers/platform/x86/hdaps.c
4937
4938 HDPVR USB VIDEO ENCODER DRIVER
4939 M:      Hans Verkuil <hverkuil@xs4all.nl>
4940 L:      linux-media@vger.kernel.org
4941 T:      git git://linuxtv.org/media_tree.git
4942 W:      https://linuxtv.org
4943 S:      Odd Fixes
4944 F:      drivers/media/usb/hdpvr/
4945
4946 HWPOISON MEMORY FAILURE HANDLING
4947 M:      Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
4948 L:      linux-mm@kvack.org
4949 S:      Maintained
4950 F:      mm/memory-failure.c
4951 F:      mm/hwpoison-inject.c
4952
4953 HYPERVISOR VIRTUAL CONSOLE DRIVER
4954 L:      linuxppc-dev@lists.ozlabs.org
4955 S:      Odd Fixes
4956 F:      drivers/tty/hvc/
4957
4958 HACKRF MEDIA DRIVER
4959 M:      Antti Palosaari <crope@iki.fi>
4960 L:      linux-media@vger.kernel.org
4961 W:      https://linuxtv.org
4962 W:      http://palosaari.fi/linux/
4963 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4964 T:      git git://linuxtv.org/anttip/media_tree.git
4965 S:      Maintained
4966 F:      drivers/media/usb/hackrf/
4967
4968 HARDWARE MONITORING
4969 M:      Jean Delvare <jdelvare@suse.com>
4970 M:      Guenter Roeck <linux@roeck-us.net>
4971 L:      lm-sensors@lm-sensors.org
4972 W:      http://www.lm-sensors.org/
4973 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/
4974 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
4975 S:      Maintained
4976 F:      Documentation/hwmon/
4977 F:      drivers/hwmon/
4978 F:      include/linux/hwmon*.h
4979
4980 HARDWARE RANDOM NUMBER GENERATOR CORE
4981 M:      Matt Mackall <mpm@selenic.com>
4982 M:      Herbert Xu <herbert@gondor.apana.org.au>
4983 L:      linux-crypto@vger.kernel.org
4984 S:      Odd fixes
4985 F:      Documentation/hw_random.txt
4986 F:      drivers/char/hw_random/
4987 F:      include/linux/hw_random.h
4988
4989 HARDWARE SPINLOCK CORE
4990 M:      Ohad Ben-Cohen <ohad@wizery.com>
4991 S:      Maintained
4992 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/hwspinlock.git
4993 F:      Documentation/hwspinlock.txt
4994 F:      drivers/hwspinlock/hwspinlock_*
4995 F:      include/linux/hwspinlock.h
4996
4997 HARMONY SOUND DRIVER
4998 L:      linux-parisc@vger.kernel.org
4999 S:      Maintained
5000 F:      sound/parisc/harmony.*
5001
5002 HD29L2 MEDIA DRIVER
5003 M:      Antti Palosaari <crope@iki.fi>
5004 L:      linux-media@vger.kernel.org
5005 W:      https://linuxtv.org
5006 W:      http://palosaari.fi/linux/
5007 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5008 T:      git git://linuxtv.org/anttip/media_tree.git
5009 S:      Maintained
5010 F:      drivers/media/dvb-frontends/hd29l2*
5011
5012 HEWLETT-PACKARD SMART2 RAID DRIVER
5013 L:      iss_storagedev@hp.com
5014 S:      Orphan
5015 F:      Documentation/blockdev/cpqarray.txt
5016 F:      drivers/block/cpqarray.*
5017
5018 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
5019 M:      Don Brace <don.brace@pmcs.com>
5020 L:      iss_storagedev@hp.com
5021 L:      storagedev@pmcs.com
5022 L:      linux-scsi@vger.kernel.org
5023 S:      Supported
5024 F:      Documentation/scsi/hpsa.txt
5025 F:      drivers/scsi/hpsa*.[ch]
5026 F:      include/linux/cciss*.h
5027 F:      include/uapi/linux/cciss*.h
5028
5029 HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
5030 M:      Don Brace <don.brace@pmcs.com>
5031 L:      iss_storagedev@hp.com
5032 L:      storagedev@pmcs.com
5033 L:      linux-scsi@vger.kernel.org
5034 S:      Supported
5035 F:      Documentation/blockdev/cciss.txt
5036 F:      drivers/block/cciss*
5037 F:      include/linux/cciss_ioctl.h
5038 F:      include/uapi/linux/cciss_ioctl.h
5039
5040 HFS FILESYSTEM
5041 L:      linux-fsdevel@vger.kernel.org
5042 S:      Orphan
5043 F:      Documentation/filesystems/hfs.txt
5044 F:      fs/hfs/
5045
5046 HFSPLUS FILESYSTEM
5047 L:      linux-fsdevel@vger.kernel.org
5048 S:      Orphan
5049 F:      Documentation/filesystems/hfsplus.txt
5050 F:      fs/hfsplus/
5051
5052 HGA FRAMEBUFFER DRIVER
5053 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
5054 L:      linux-nvidia@lists.surfsouth.com
5055 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
5056 S:      Maintained
5057 F:      drivers/video/fbdev/hgafb.c
5058
5059 HIBERNATION (aka Software Suspend, aka swsusp)
5060 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
5061 M:      Pavel Machek <pavel@ucw.cz>
5062 L:      linux-pm@vger.kernel.org
5063 S:      Supported
5064 F:      arch/x86/power/
5065 F:      drivers/base/power/
5066 F:      kernel/power/
5067 F:      include/linux/suspend.h
5068 F:      include/linux/freezer.h
5069 F:      include/linux/pm.h
5070 F:      arch/*/include/asm/suspend*.h
5071
5072 HID CORE LAYER
5073 M:      Jiri Kosina <jikos@kernel.org>
5074 R:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
5075 L:      linux-input@vger.kernel.org
5076 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
5077 S:      Maintained
5078 F:      drivers/hid/
5079 F:      include/linux/hid*
5080 F:      include/uapi/linux/hid*
5081
5082 HID SENSOR HUB DRIVERS
5083 M:      Jiri Kosina <jikos@kernel.org>
5084 M:      Jonathan Cameron <jic23@kernel.org>
5085 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
5086 L:      linux-input@vger.kernel.org
5087 L:      linux-iio@vger.kernel.org
5088 S:      Maintained
5089 F:      Documentation/hid/hid-sensor*
5090 F:      drivers/hid/hid-sensor-*
5091 F:      drivers/iio/*/hid-*
5092 F:      include/linux/hid-sensor-*
5093
5094 HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
5095 M:      Thomas Gleixner <tglx@linutronix.de>
5096 L:      linux-kernel@vger.kernel.org
5097 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
5098 S:      Maintained
5099 F:      Documentation/timers/
5100 F:      kernel/time/hrtimer.c
5101 F:      kernel/time/clockevents.c
5102 F:      kernel/time/tick*.*
5103 F:      kernel/time/timer_*.c
5104 F:      include/linux/clockchips.h
5105 F:      include/linux/hrtimer.h
5106
5107 HIGH-SPEED SCC DRIVER FOR AX.25
5108 L:      linux-hams@vger.kernel.org
5109 S:      Orphan
5110 F:      drivers/net/hamradio/dmascc.c
5111 F:      drivers/net/hamradio/scc.c
5112
5113 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
5114 M:      HighPoint Linux Team <linux@highpoint-tech.com>
5115 W:      http://www.highpoint-tech.com
5116 S:      Supported
5117 F:      Documentation/scsi/hptiop.txt
5118 F:      drivers/scsi/hptiop.c
5119
5120 HIPPI
5121 M:      Jes Sorensen <jes@trained-monkey.org>
5122 L:      linux-hippi@sunsite.dk
5123 S:      Maintained
5124 F:      include/linux/hippidevice.h
5125 F:      include/uapi/linux/if_hippi.h
5126 F:      net/802/hippi.c
5127 F:      drivers/net/hippi/
5128
5129 HISILICON SAS Controller
5130 M:      John Garry <john.garry@huawei.com>
5131 W:      http://www.hisilicon.com
5132 S:      Supported
5133 F:      drivers/scsi/hisi_sas/
5134 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
5135
5136 HOST AP DRIVER
5137 M:      Jouni Malinen <j@w1.fi>
5138 L:      hostap@shmoo.com (subscribers-only)
5139 L:      linux-wireless@vger.kernel.org
5140 W:      http://hostap.epitest.fi/
5141 S:      Maintained
5142 F:      drivers/net/wireless/intersil/hostap/
5143
5144 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
5145 L:      platform-driver-x86@vger.kernel.org
5146 S:      Orphan
5147 F:      drivers/platform/x86/tc1100-wmi.c
5148
5149 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
5150 M:      Jaroslav Kysela <perex@perex.cz>
5151 S:      Maintained
5152 F:      drivers/net/ethernet/hp/hp100.*
5153
5154 HPET:   High Precision Event Timers driver
5155 M:      Clemens Ladisch <clemens@ladisch.de>
5156 S:      Maintained
5157 F:      Documentation/timers/hpet.txt
5158 F:      drivers/char/hpet.c
5159 F:      include/linux/hpet.h
5160 F:      include/uapi/linux/hpet.h
5161
5162 HPET:   x86
5163 S:      Orphan
5164 F:      arch/x86/kernel/hpet.c
5165 F:      arch/x86/include/asm/hpet.h
5166
5167 HPFS FILESYSTEM
5168 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
5169 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
5170 S:      Maintained
5171 F:      fs/hpfs/
5172
5173 HSI SUBSYSTEM
5174 M:      Sebastian Reichel <sre@kernel.org>
5175 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
5176 S:      Maintained
5177 F:      Documentation/ABI/testing/sysfs-bus-hsi
5178 F:      Documentation/hsi.txt
5179 F:      drivers/hsi/
5180 F:      include/linux/hsi/
5181 F:      include/uapi/linux/hsi/
5182
5183 HSO 3G MODEM DRIVER
5184 M:      Jan Dumon <j.dumon@option.com>
5185 W:      http://www.pharscape.org
5186 S:      Maintained
5187 F:      drivers/net/usb/hso.c
5188
5189 HSR NETWORK PROTOCOL
5190 M:      Arvid Brodin <arvid.brodin@alten.se>
5191 L:      netdev@vger.kernel.org
5192 S:      Maintained
5193 F:      net/hsr/
5194
5195 HTCPEN TOUCHSCREEN DRIVER
5196 M:      Pau Oliva Fora <pof@eslack.org>
5197 L:      linux-input@vger.kernel.org
5198 S:      Maintained
5199 F:      drivers/input/touchscreen/htcpen.c
5200
5201 HUGETLB FILESYSTEM
5202 M:      Nadia Yvette Chambers <nyc@holomorphy.com>
5203 S:      Maintained
5204 F:      fs/hugetlbfs/
5205
5206 Hyper-V CORE AND DRIVERS
5207 M:      "K. Y. Srinivasan" <kys@microsoft.com>
5208 M:      Haiyang Zhang <haiyangz@microsoft.com>
5209 L:      devel@linuxdriverproject.org
5210 S:      Maintained
5211 F:      arch/x86/include/asm/mshyperv.h
5212 F:      arch/x86/include/uapi/asm/hyperv.h
5213 F:      arch/x86/kernel/cpu/mshyperv.c
5214 F:      drivers/hid/hid-hyperv.c
5215 F:      drivers/hv/
5216 F:      drivers/input/serio/hyperv-keyboard.c
5217 F:      drivers/net/hyperv/
5218 F:      drivers/scsi/storvsc_drv.c
5219 F:      drivers/video/fbdev/hyperv_fb.c
5220 F:      include/linux/hyperv.h
5221 F:      tools/hv/
5222 F:      Documentation/ABI/stable/sysfs-bus-vmbus
5223
5224 I2C OVER PARALLEL PORT
5225 M:      Jean Delvare <jdelvare@suse.com>
5226 L:      linux-i2c@vger.kernel.org
5227 S:      Maintained
5228 F:      Documentation/i2c/busses/i2c-parport
5229 F:      Documentation/i2c/busses/i2c-parport-light
5230 F:      drivers/i2c/busses/i2c-parport.c
5231 F:      drivers/i2c/busses/i2c-parport-light.c
5232
5233 I2C/SMBUS CONTROLLER DRIVERS FOR PC
5234 M:      Jean Delvare <jdelvare@suse.com>
5235 L:      linux-i2c@vger.kernel.org
5236 S:      Maintained
5237 F:      Documentation/i2c/busses/i2c-ali1535
5238 F:      Documentation/i2c/busses/i2c-ali1563
5239 F:      Documentation/i2c/busses/i2c-ali15x3
5240 F:      Documentation/i2c/busses/i2c-amd756
5241 F:      Documentation/i2c/busses/i2c-amd8111
5242 F:      Documentation/i2c/busses/i2c-i801
5243 F:      Documentation/i2c/busses/i2c-nforce2
5244 F:      Documentation/i2c/busses/i2c-piix4
5245 F:      Documentation/i2c/busses/i2c-sis5595
5246 F:      Documentation/i2c/busses/i2c-sis630
5247 F:      Documentation/i2c/busses/i2c-sis96x
5248 F:      Documentation/i2c/busses/i2c-via
5249 F:      Documentation/i2c/busses/i2c-viapro
5250 F:      drivers/i2c/busses/i2c-ali1535.c
5251 F:      drivers/i2c/busses/i2c-ali1563.c
5252 F:      drivers/i2c/busses/i2c-ali15x3.c
5253 F:      drivers/i2c/busses/i2c-amd756.c
5254 F:      drivers/i2c/busses/i2c-amd756-s4882.c
5255 F:      drivers/i2c/busses/i2c-amd8111.c
5256 F:      drivers/i2c/busses/i2c-i801.c
5257 F:      drivers/i2c/busses/i2c-isch.c
5258 F:      drivers/i2c/busses/i2c-nforce2.c
5259 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
5260 F:      drivers/i2c/busses/i2c-piix4.c
5261 F:      drivers/i2c/busses/i2c-sis5595.c
5262 F:      drivers/i2c/busses/i2c-sis630.c
5263 F:      drivers/i2c/busses/i2c-sis96x.c
5264 F:      drivers/i2c/busses/i2c-via.c
5265 F:      drivers/i2c/busses/i2c-viapro.c
5266
5267 I2C/SMBUS ISMT DRIVER
5268 M:      Seth Heasley <seth.heasley@intel.com>
5269 M:      Neil Horman <nhorman@tuxdriver.com>
5270 L:      linux-i2c@vger.kernel.org
5271 F:      drivers/i2c/busses/i2c-ismt.c
5272 F:      Documentation/i2c/busses/i2c-ismt
5273
5274 I2C/SMBUS STUB DRIVER
5275 M:      Jean Delvare <jdelvare@suse.com>
5276 L:      linux-i2c@vger.kernel.org
5277 S:      Maintained
5278 F:      drivers/i2c/i2c-stub.c
5279
5280 I2C SUBSYSTEM
5281 M:      Wolfram Sang <wsa@the-dreams.de>
5282 L:      linux-i2c@vger.kernel.org
5283 W:      https://i2c.wiki.kernel.org/
5284 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
5285 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
5286 S:      Maintained
5287 F:      Documentation/devicetree/bindings/i2c/
5288 F:      Documentation/i2c/
5289 F:      drivers/i2c/
5290 F:      drivers/i2c/*/
5291 F:      include/linux/i2c.h
5292 F:      include/linux/i2c-*.h
5293 F:      include/uapi/linux/i2c.h
5294 F:      include/uapi/linux/i2c-*.h
5295
5296 I2C ACPI SUPPORT
5297 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
5298 L:      linux-i2c@vger.kernel.org
5299 L:      linux-acpi@vger.kernel.org
5300 S:      Maintained
5301
5302 I2C-TAOS-EVM DRIVER
5303 M:      Jean Delvare <jdelvare@suse.com>
5304 L:      linux-i2c@vger.kernel.org
5305 S:      Maintained
5306 F:      Documentation/i2c/busses/i2c-taos-evm
5307 F:      drivers/i2c/busses/i2c-taos-evm.c
5308
5309 I2C-TINY-USB DRIVER
5310 M:      Till Harbaum <till@harbaum.org>
5311 L:      linux-i2c@vger.kernel.org
5312 W:      http://www.harbaum.org/till/i2c_tiny_usb
5313 S:      Maintained
5314 F:      drivers/i2c/busses/i2c-tiny-usb.c
5315
5316 i386 BOOT CODE
5317 M:      "H. Peter Anvin" <hpa@zytor.com>
5318 S:      Maintained
5319 F:      arch/x86/boot/
5320
5321 i386 SETUP CODE / CPU ERRATA WORKAROUNDS
5322 M:      "H. Peter Anvin" <hpa@zytor.com>
5323 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
5324 S:      Maintained
5325
5326 IA64 (Itanium) PLATFORM
5327 M:      Tony Luck <tony.luck@intel.com>
5328 M:      Fenghua Yu <fenghua.yu@intel.com>
5329 L:      linux-ia64@vger.kernel.org
5330 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
5331 S:      Maintained
5332 F:      arch/ia64/
5333
5334 IBM Power VMX Cryptographic instructions
5335 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5336 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5337 L:      linux-crypto@vger.kernel.org
5338 S:      Supported
5339 F:      drivers/crypto/vmx/Makefile
5340 F:      drivers/crypto/vmx/Kconfig
5341 F:      drivers/crypto/vmx/vmx.c
5342 F:      drivers/crypto/vmx/aes*
5343 F:      drivers/crypto/vmx/ghash*
5344 F:      drivers/crypto/vmx/ppc-xlate.pl
5345
5346 IBM Power in-Nest Crypto Acceleration
5347 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5348 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5349 L:      linux-crypto@vger.kernel.org
5350 S:      Supported
5351 F:      drivers/crypto/nx/Makefile
5352 F:      drivers/crypto/nx/Kconfig
5353 F:      drivers/crypto/nx/nx-aes*
5354 F:      drivers/crypto/nx/nx-sha*
5355 F:      drivers/crypto/nx/nx.*
5356 F:      drivers/crypto/nx/nx_csbcpb.h
5357 F:      drivers/crypto/nx/nx_debugfs.h
5358
5359 IBM Power 842 compression accelerator
5360 M:      Dan Streetman <ddstreet@ieee.org>
5361 S:      Supported
5362 F:      drivers/crypto/nx/Makefile
5363 F:      drivers/crypto/nx/Kconfig
5364 F:      drivers/crypto/nx/nx-842*
5365 F:      include/linux/sw842.h
5366 F:      crypto/842.c
5367 F:      lib/842/
5368
5369 IBM Power Linux RAID adapter
5370 M:      Brian King <brking@us.ibm.com>
5371 S:      Supported
5372 F:      drivers/scsi/ipr.*
5373
5374 IBM Power Virtual Ethernet Device Driver
5375 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
5376 L:      netdev@vger.kernel.org
5377 S:      Supported
5378 F:      drivers/net/ethernet/ibm/ibmveth.*
5379
5380 IBM Power SRIOV Virtual NIC Device Driver
5381 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
5382 M:      John Allen <jallen@linux.vnet.ibm.com>
5383 L:      netdev@vger.kernel.org
5384 S:      Supported
5385 F:      drivers/net/ethernet/ibm/ibmvnic.*
5386
5387 IBM Power Virtual SCSI Device Drivers
5388 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5389 L:      linux-scsi@vger.kernel.org
5390 S:      Supported
5391 F:      drivers/scsi/ibmvscsi/ibmvscsi*
5392 F:      drivers/scsi/ibmvscsi/viosrp.h
5393
5394 IBM Power Virtual FC Device Drivers
5395 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5396 L:      linux-scsi@vger.kernel.org
5397 S:      Supported
5398 F:      drivers/scsi/ibmvscsi/ibmvfc*
5399
5400 IBM ServeRAID RAID DRIVER
5401 S:      Orphan
5402 F:      drivers/scsi/ips.*
5403
5404 ICH LPC AND GPIO DRIVER
5405 M:      Peter Tyser <ptyser@xes-inc.com>
5406 S:      Maintained
5407 F:      drivers/mfd/lpc_ich.c
5408 F:      drivers/gpio/gpio-ich.c
5409
5410 IDE SUBSYSTEM
5411 M:      "David S. Miller" <davem@davemloft.net>
5412 L:      linux-ide@vger.kernel.org
5413 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
5414 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
5415 S:      Maintained
5416 F:      Documentation/ide/
5417 F:      drivers/ide/
5418 F:      include/linux/ide.h
5419
5420 IDEAPAD LAPTOP EXTRAS DRIVER
5421 M:      Ike Panhc <ike.pan@canonical.com>
5422 L:      platform-driver-x86@vger.kernel.org
5423 W:      http://launchpad.net/ideapad-laptop
5424 S:      Maintained
5425 F:      drivers/platform/x86/ideapad-laptop.c
5426
5427 IDEAPAD LAPTOP SLIDEBAR DRIVER
5428 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
5429 L:      linux-input@vger.kernel.org
5430 W:      https://github.com/o2genum/ideapad-slidebar
5431 S:      Maintained
5432 F:      drivers/input/misc/ideapad_slidebar.c
5433
5434 IDE/ATAPI DRIVERS
5435 M:      Borislav Petkov <bp@alien8.de>
5436 L:      linux-ide@vger.kernel.org
5437 S:      Maintained
5438 F:      Documentation/cdrom/ide-cd
5439 F:      drivers/ide/ide-cd*
5440
5441 IDLE-I7300
5442 M:      Andy Henroid <andrew.d.henroid@intel.com>
5443 L:      linux-pm@vger.kernel.org
5444 S:      Supported
5445 F:      drivers/idle/i7300_idle.c
5446
5447 IEEE 802.15.4 SUBSYSTEM
5448 M:      Alexander Aring <alex.aring@gmail.com>
5449 L:      linux-wpan@vger.kernel.org
5450 W:      https://github.com/linux-wpan
5451 T:      git git://github.com/linux-wpan/linux-wpan-next.git
5452 S:      Maintained
5453 F:      net/ieee802154/
5454 F:      net/mac802154/
5455 F:      drivers/net/ieee802154/
5456 F:      include/linux/nl802154.h
5457 F:      include/linux/ieee802154.h
5458 F:      include/net/nl802154.h
5459 F:      include/net/mac802154.h
5460 F:      include/net/af_ieee802154.h
5461 F:      include/net/cfg802154.h
5462 F:      include/net/ieee802154_netdev.h
5463 F:      Documentation/networking/ieee802154.txt
5464
5465 IGORPLUG-USB IR RECEIVER
5466 M:      Sean Young <sean@mess.org>
5467 L:      linux-media@vger.kernel.org
5468 S:      Maintained
5469 F:      drivers/media/rc/igorplugusb.c
5470
5471 IGUANAWORKS USB IR TRANSCEIVER
5472 M:      Sean Young <sean@mess.org>
5473 L:      linux-media@vger.kernel.org
5474 S:      Maintained
5475 F:      drivers/media/rc/iguanair.c
5476
5477 IIO SUBSYSTEM AND DRIVERS
5478 M:      Jonathan Cameron <jic23@kernel.org>
5479 R:      Hartmut Knaack <knaack.h@gmx.de>
5480 R:      Lars-Peter Clausen <lars@metafoo.de>
5481 R:      Peter Meerwald <pmeerw@pmeerw.net>
5482 L:      linux-iio@vger.kernel.org
5483 S:      Maintained
5484 F:      drivers/iio/
5485 F:      drivers/staging/iio/
5486 F:      include/linux/iio/
5487 F:      tools/iio/
5488
5489 IKANOS/ADI EAGLE ADSL USB DRIVER
5490 M:      Matthieu Castet <castet.matthieu@free.fr>
5491 M:      Stanislaw Gruszka <stf_xl@wp.pl>
5492 S:      Maintained
5493 F:      drivers/usb/atm/ueagle-atm.c
5494
5495 INA209 HARDWARE MONITOR DRIVER
5496 M:      Guenter Roeck <linux@roeck-us.net>
5497 L:      lm-sensors@lm-sensors.org
5498 S:      Maintained
5499 F:      Documentation/hwmon/ina209
5500 F:      Documentation/devicetree/bindings/i2c/ina209.txt
5501 F:      drivers/hwmon/ina209.c
5502
5503 INA2XX HARDWARE MONITOR DRIVER
5504 M:      Guenter Roeck <linux@roeck-us.net>
5505 L:      lm-sensors@lm-sensors.org
5506 S:      Maintained
5507 F:      Documentation/hwmon/ina2xx
5508 F:      drivers/hwmon/ina2xx.c
5509 F:      include/linux/platform_data/ina2xx.h
5510
5511 INDUSTRY PACK SUBSYSTEM (IPACK)
5512 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
5513 M:      Jens Taprogge <jens.taprogge@taprogge.org>
5514 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5515 L:      industrypack-devel@lists.sourceforge.net
5516 W:      http://industrypack.sourceforge.net
5517 S:      Maintained
5518 F:      drivers/ipack/
5519
5520 INGENIC JZ4780 DMA Driver
5521 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
5522 S:      Maintained
5523 F:      drivers/dma/dma-jz4780.c
5524
5525 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
5526 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
5527 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
5528 L:      linux-ima-devel@lists.sourceforge.net
5529 L:      linux-ima-user@lists.sourceforge.net
5530 L:      linux-security-module@vger.kernel.org
5531 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
5532 S:      Supported
5533 F:      security/integrity/ima/
5534
5535 IMGTEC IR DECODER DRIVER
5536 M:      James Hogan <james.hogan@imgtec.com>
5537 S:      Maintained
5538 F:      drivers/media/rc/img-ir/
5539
5540 IMS TWINTURBO FRAMEBUFFER DRIVER
5541 L:      linux-fbdev@vger.kernel.org
5542 S:      Orphan
5543 F:      drivers/video/fbdev/imsttfb.c
5544
5545 INFINIBAND SUBSYSTEM
5546 M:      Doug Ledford <dledford@redhat.com>
5547 M:      Sean Hefty <sean.hefty@intel.com>
5548 M:      Hal Rosenstock <hal.rosenstock@gmail.com>
5549 L:      linux-rdma@vger.kernel.org
5550 W:      http://www.openfabrics.org/
5551 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5552 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git
5553 S:      Supported
5554 F:      Documentation/infiniband/
5555 F:      drivers/infiniband/
5556 F:      drivers/staging/rdma/
5557 F:      include/uapi/linux/if_infiniband.h
5558 F:      include/uapi/rdma/
5559 F:      include/rdma/
5560
5561 INOTIFY
5562 M:      John McCutchan <john@johnmccutchan.com>
5563 M:      Robert Love <rlove@rlove.org>
5564 M:      Eric Paris <eparis@parisplace.org>
5565 S:      Maintained
5566 F:      Documentation/filesystems/inotify.txt
5567 F:      fs/notify/inotify/
5568 F:      include/linux/inotify.h
5569 F:      include/uapi/linux/inotify.h
5570
5571 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
5572 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
5573 L:      linux-input@vger.kernel.org
5574 Q:      http://patchwork.kernel.org/project/linux-input/list/
5575 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
5576 S:      Maintained
5577 F:      drivers/input/
5578 F:      include/linux/input.h
5579 F:      include/uapi/linux/input.h
5580 F:      include/linux/input/
5581
5582 INPUT MULTITOUCH (MT) PROTOCOL
5583 M:      Henrik Rydberg <rydberg@bitmath.org>
5584 L:      linux-input@vger.kernel.org
5585 S:      Odd fixes
5586 F:      Documentation/input/multi-touch-protocol.txt
5587 F:      drivers/input/input-mt.c
5588 K:      \b(ABS|SYN)_MT_
5589
5590 INTEL ASoC BDW/HSW DRIVERS
5591 M:      Jie Yang <yang.jie@linux.intel.com>
5592 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5593 S:      Supported
5594 F:      sound/soc/intel/common/sst-dsp*
5595 F:      sound/soc/intel/common/sst-firmware.c
5596 F:      sound/soc/intel/boards/broadwell.c
5597 F:      sound/soc/intel/haswell/
5598
5599 INTEL C600 SERIES SAS CONTROLLER DRIVER
5600 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
5601 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
5602 L:      linux-scsi@vger.kernel.org
5603 T:      git git://git.code.sf.net/p/intel-sas/isci
5604 S:      Supported
5605 F:      drivers/scsi/isci/
5606
5607 INTEL HID EVENT DRIVER
5608 M:      Alex Hung <alex.hung@canonical.com>
5609 L:      platform-driver-x86@vger.kernel.org
5610 S:      Maintained
5611 F:      drivers/platform/x86/intel-hid.c
5612
5613 INTEL IDLE DRIVER
5614 M:      Len Brown <lenb@kernel.org>
5615 L:      linux-pm@vger.kernel.org
5616 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
5617 S:      Supported
5618 F:      drivers/idle/intel_idle.c
5619
5620 INTEL PSTATE DRIVER
5621 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
5622 M:      Len Brown <lenb@kernel.org>
5623 L:      linux-pm@vger.kernel.org
5624 S:      Supported
5625 F:      drivers/cpufreq/intel_pstate.c
5626
5627 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
5628 M:      Maik Broemme <mbroemme@plusserver.de>
5629 L:      linux-fbdev@vger.kernel.org
5630 S:      Maintained
5631 F:      Documentation/fb/intelfb.txt
5632 F:      drivers/video/fbdev/intelfb/
5633
5634 INTEL 810/815 FRAMEBUFFER DRIVER
5635 M:      Antonino Daplas <adaplas@gmail.com>
5636 L:      linux-fbdev@vger.kernel.org
5637 S:      Maintained
5638 F:      drivers/video/fbdev/i810/
5639
5640 INTEL MENLOW THERMAL DRIVER
5641 M:      Sujith Thomas <sujith.thomas@intel.com>
5642 L:      platform-driver-x86@vger.kernel.org
5643 W:      https://01.org/linux-acpi
5644 S:      Supported
5645 F:      drivers/platform/x86/intel_menlow.c
5646
5647 INTEL I/OAT DMA DRIVER
5648 M:      Dave Jiang <dave.jiang@intel.com>
5649 R:      Dan Williams <dan.j.williams@intel.com>
5650 L:      dmaengine@vger.kernel.org
5651 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5652 S:      Supported
5653 F:      drivers/dma/ioat*
5654
5655 INTEL IOMMU (VT-d)
5656 M:      David Woodhouse <dwmw2@infradead.org>
5657 L:      iommu@lists.linux-foundation.org
5658 T:      git git://git.infradead.org/iommu-2.6.git
5659 S:      Supported
5660 F:      drivers/iommu/intel-iommu.c
5661 F:      include/linux/intel-iommu.h
5662
5663 INTEL IOP-ADMA DMA DRIVER
5664 R:      Dan Williams <dan.j.williams@intel.com>
5665 S:      Odd fixes
5666 F:      drivers/dma/iop-adma.c
5667
5668 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
5669 M:      Krzysztof Halasa <khalasa@piap.pl>
5670 S:      Maintained
5671 F:      arch/arm/mach-ixp4xx/include/mach/qmgr.h
5672 F:      arch/arm/mach-ixp4xx/include/mach/npe.h
5673 F:      arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
5674 F:      arch/arm/mach-ixp4xx/ixp4xx_npe.c
5675 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
5676 F:      drivers/net/wan/ixp4xx_hss.c
5677
5678 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
5679 M:      Deepak Saxena <dsaxena@plexity.net>
5680 S:      Maintained
5681 F:      drivers/char/hw_random/ixp4xx-rng.c
5682
5683 INTEL ETHERNET DRIVERS
5684 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
5685 R:      Jesse Brandeburg <jesse.brandeburg@intel.com>
5686 R:      Shannon Nelson <shannon.nelson@intel.com>
5687 R:      Carolyn Wyborny <carolyn.wyborny@intel.com>
5688 R:      Don Skidmore <donald.c.skidmore@intel.com>
5689 R:      Bruce Allan <bruce.w.allan@intel.com>
5690 R:      John Ronciak <john.ronciak@intel.com>
5691 R:      Mitch Williams <mitch.a.williams@intel.com>
5692 L:      intel-wired-lan@lists.osuosl.org
5693 W:      http://www.intel.com/support/feedback.htm
5694 W:      http://e1000.sourceforge.net/
5695 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
5696 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
5697 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
5698 S:      Supported
5699 F:      Documentation/networking/e100.txt
5700 F:      Documentation/networking/e1000.txt
5701 F:      Documentation/networking/e1000e.txt
5702 F:      Documentation/networking/igb.txt
5703 F:      Documentation/networking/igbvf.txt
5704 F:      Documentation/networking/ixgb.txt
5705 F:      Documentation/networking/ixgbe.txt
5706 F:      Documentation/networking/ixgbevf.txt
5707 F:      Documentation/networking/i40e.txt
5708 F:      Documentation/networking/i40evf.txt
5709 F:      drivers/net/ethernet/intel/
5710 F:      drivers/net/ethernet/intel/*/
5711
5712 INTEL-MID GPIO DRIVER
5713 M:      David Cohen <david.a.cohen@linux.intel.com>
5714 L:      linux-gpio@vger.kernel.org
5715 S:      Maintained
5716 F:      drivers/gpio/gpio-intel-mid.c
5717
5718 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
5719 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
5720 L:      linux-wireless@vger.kernel.org
5721 S:      Maintained
5722 F:      Documentation/networking/README.ipw2100
5723 F:      Documentation/networking/README.ipw2200
5724 F:      drivers/net/wireless/intel/ipw2x00/
5725
5726 INTEL(R) TRACE HUB
5727 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
5728 S:      Supported
5729 F:      Documentation/trace/intel_th.txt
5730 F:      drivers/hwtracing/intel_th/
5731
5732 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
5733 M:      Ning Sun <ning.sun@intel.com>
5734 L:      tboot-devel@lists.sourceforge.net
5735 W:      http://tboot.sourceforge.net
5736 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
5737 S:      Supported
5738 F:      Documentation/intel_txt.txt
5739 F:      include/linux/tboot.h
5740 F:      arch/x86/kernel/tboot.c
5741
5742 INTEL WIRELESS WIMAX CONNECTION 2400
5743 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
5744 M:      linux-wimax@intel.com
5745 L:      wimax@linuxwimax.org (subscribers-only)
5746 S:      Supported
5747 W:      http://linuxwimax.org
5748 F:      Documentation/wimax/README.i2400m
5749 F:      drivers/net/wimax/i2400m/
5750 F:      include/uapi/linux/wimax/i2400m.h
5751
5752 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
5753 M:      Stanislaw Gruszka <sgruszka@redhat.com>
5754 L:      linux-wireless@vger.kernel.org
5755 S:      Supported
5756 F:      drivers/net/wireless/intel/iwlegacy/
5757
5758 INTEL WIRELESS WIFI LINK (iwlwifi)
5759 M:      Johannes Berg <johannes.berg@intel.com>
5760 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
5761 M:      Intel Linux Wireless <linuxwifi@intel.com>
5762 L:      linux-wireless@vger.kernel.org
5763 W:      http://intellinuxwireless.org
5764 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
5765 S:      Supported
5766 F:      drivers/net/wireless/intel/iwlwifi/
5767
5768 INTEL MANAGEMENT ENGINE (mei)
5769 M:      Tomas Winkler <tomas.winkler@intel.com>
5770 L:      linux-kernel@vger.kernel.org
5771 S:      Supported
5772 F:      include/uapi/linux/mei.h
5773 F:      include/linux/mei_cl_bus.h
5774 F:      drivers/misc/mei/*
5775 F:      Documentation/misc-devices/mei/*
5776
5777 INTEL MIC DRIVERS (mic)
5778 M:      Sudeep Dutt <sudeep.dutt@intel.com>
5779 M:      Ashutosh Dixit <ashutosh.dixit@intel.com>
5780 S:      Supported
5781 W:      https://github.com/sudeepdutt/mic
5782 W:      http://software.intel.com/en-us/mic-developer
5783 F:      include/linux/mic_bus.h
5784 F:      include/linux/scif.h
5785 F:      include/uapi/linux/mic_common.h
5786 F:      include/uapi/linux/mic_ioctl.h
5787 F:      include/uapi/linux/scif_ioctl.h
5788 F:      drivers/misc/mic/
5789 F:      drivers/dma/mic_x100_dma.c
5790 F:      drivers/dma/mic_x100_dma.h
5791 F:      Documentation/mic/
5792
5793 INTEL PMC/P-Unit IPC DRIVER
5794 M:      Zha Qipeng<qipeng.zha@intel.com>
5795 L:      platform-driver-x86@vger.kernel.org
5796 S:      Maintained
5797 F:      drivers/platform/x86/intel_pmc_ipc.c
5798 F:      drivers/platform/x86/intel_punit_ipc.c
5799 F:      arch/x86/include/asm/intel_pmc_ipc.h
5800 F:      arch/x86/include/asm/intel_punit_ipc.h
5801
5802 INTEL TELEMETRY DRIVER
5803 M:      Souvik Kumar Chakravarty <souvik.k.chakravarty@intel.com>
5804 L:      platform-driver-x86@vger.kernel.org
5805 S:      Maintained
5806 F:      arch/x86/include/asm/intel_telemetry.h
5807 F:      drivers/platform/x86/intel_telemetry*
5808
5809 IOC3 ETHERNET DRIVER
5810 M:      Ralf Baechle <ralf@linux-mips.org>
5811 L:      linux-mips@linux-mips.org
5812 S:      Maintained
5813 F:      drivers/net/ethernet/sgi/ioc3-eth.c
5814
5815 IOC3 SERIAL DRIVER
5816 M:      Pat Gefre <pfg@sgi.com>
5817 L:      linux-serial@vger.kernel.org
5818 S:      Maintained
5819 F:      drivers/tty/serial/ioc3_serial.c
5820
5821 IOMMU DRIVERS
5822 M:      Joerg Roedel <joro@8bytes.org>
5823 L:      iommu@lists.linux-foundation.org
5824 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
5825 S:      Maintained
5826 F:      drivers/iommu/
5827
5828 IP MASQUERADING
5829 M:      Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
5830 S:      Maintained
5831 F:      net/ipv4/netfilter/ipt_MASQUERADE.c
5832
5833 IPMI SUBSYSTEM
5834 M:      Corey Minyard <minyard@acm.org>
5835 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
5836 W:      http://openipmi.sourceforge.net/
5837 S:      Supported
5838 F:      Documentation/IPMI.txt
5839 F:      drivers/char/ipmi/
5840 F:      include/linux/ipmi*
5841 F:      include/uapi/linux/ipmi*
5842
5843 QCOM AUDIO (ASoC) DRIVERS
5844 M:      Patrick Lai <plai@codeaurora.org>
5845 M:      Banajit Goswami <bgoswami@codeaurora.org>
5846 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5847 S:      Supported
5848 F:      sound/soc/qcom/
5849
5850 IPS SCSI RAID DRIVER
5851 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
5852 L:      linux-scsi@vger.kernel.org
5853 W:      http://www.adaptec.com/
5854 S:      Maintained
5855 F:      drivers/scsi/ips*
5856
5857 IPVS
5858 M:      Wensong Zhang <wensong@linux-vs.org>
5859 M:      Simon Horman <horms@verge.net.au>
5860 M:      Julian Anastasov <ja@ssi.bg>
5861 L:      netdev@vger.kernel.org
5862 L:      lvs-devel@vger.kernel.org
5863 S:      Maintained
5864 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
5865 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
5866 F:      Documentation/networking/ipvs-sysctl.txt
5867 F:      include/net/ip_vs.h
5868 F:      include/uapi/linux/ip_vs.h
5869 F:      net/netfilter/ipvs/
5870
5871 IPWIRELESS DRIVER
5872 M:      Jiri Kosina <jikos@kernel.org>
5873 M:      David Sterba <dsterba@suse.com>
5874 S:      Odd Fixes
5875 F:      drivers/tty/ipwireless/
5876
5877 IPX NETWORK LAYER
5878 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
5879 L:      netdev@vger.kernel.org
5880 S:      Maintained
5881 F:      include/net/ipx.h
5882 F:      include/uapi/linux/ipx.h
5883 F:      net/ipx/
5884
5885 IRDA SUBSYSTEM
5886 M:      Samuel Ortiz <samuel@sortiz.org>
5887 L:      irda-users@lists.sourceforge.net (subscribers-only)
5888 L:      netdev@vger.kernel.org
5889 W:      http://irda.sourceforge.net/
5890 S:      Maintained
5891 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
5892 F:      Documentation/networking/irda.txt
5893 F:      drivers/net/irda/
5894 F:      include/net/irda/
5895 F:      net/irda/
5896
5897 IRQ SUBSYSTEM
5898 M:      Thomas Gleixner <tglx@linutronix.de>
5899 L:      linux-kernel@vger.kernel.org
5900 S:      Maintained
5901 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5902 F:      kernel/irq/
5903
5904 IRQCHIP DRIVERS
5905 M:      Thomas Gleixner <tglx@linutronix.de>
5906 M:      Jason Cooper <jason@lakedaemon.net>
5907 M:      Marc Zyngier <marc.zyngier@arm.com>
5908 L:      linux-kernel@vger.kernel.org
5909 S:      Maintained
5910 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5911 T:      git git://git.infradead.org/users/jcooper/linux.git irqchip/core
5912 F:      Documentation/devicetree/bindings/interrupt-controller/
5913 F:      drivers/irqchip/
5914
5915 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
5916 M:      Jiang Liu <jiang.liu@linux.intel.com>
5917 M:      Marc Zyngier <marc.zyngier@arm.com>
5918 S:      Maintained
5919 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5920 F:      Documentation/IRQ-domain.txt
5921 F:      include/linux/irqdomain.h
5922 F:      kernel/irq/irqdomain.c
5923 F:      kernel/irq/msi.c
5924
5925 ISAPNP
5926 M:      Jaroslav Kysela <perex@perex.cz>
5927 S:      Maintained
5928 F:      Documentation/isapnp.txt
5929 F:      drivers/pnp/isapnp/
5930 F:      include/linux/isapnp.h
5931
5932 ISA RADIO MODULE
5933 M:      Hans Verkuil <hverkuil@xs4all.nl>
5934 L:      linux-media@vger.kernel.org
5935 T:      git git://linuxtv.org/media_tree.git
5936 W:      https://linuxtv.org
5937 S:      Maintained
5938 F:      drivers/media/radio/radio-isa*
5939
5940 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
5941 M:      Peter Jones <pjones@redhat.com>
5942 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
5943 S:      Maintained
5944 F:      drivers/firmware/iscsi_ibft*
5945
5946 ISCSI
5947 M:      Mike Christie <michaelc@cs.wisc.edu>
5948 L:      open-iscsi@googlegroups.com
5949 W:      www.open-iscsi.org
5950 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
5951 S:      Maintained
5952 F:      drivers/scsi/*iscsi*
5953 F:      include/scsi/*iscsi*
5954
5955 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
5956 M:      Or Gerlitz <ogerlitz@mellanox.com>
5957 M:      Sagi Grimberg <sagig@mellanox.com>
5958 M:      Roi Dayan <roid@mellanox.com>
5959 L:      linux-rdma@vger.kernel.org
5960 S:      Supported
5961 W:      http://www.openfabrics.org
5962 W:      www.open-iscsi.org
5963 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5964 F:      drivers/infiniband/ulp/iser/
5965
5966 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
5967 M:      Sagi Grimberg <sagig@mellanox.com>
5968 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
5969 L:      linux-rdma@vger.kernel.org
5970 L:      target-devel@vger.kernel.org
5971 S:      Supported
5972 W:      http://www.linux-iscsi.org
5973 F:      drivers/infiniband/ulp/isert
5974
5975 ISDN SUBSYSTEM
5976 M:      Karsten Keil <isdn@linux-pingi.de>
5977 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5978 L:      netdev@vger.kernel.org
5979 W:      http://www.isdn4linux.de
5980 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
5981 S:      Maintained
5982 F:      Documentation/isdn/
5983 F:      drivers/isdn/
5984 F:      include/linux/isdn.h
5985 F:      include/linux/isdn/
5986 F:      include/uapi/linux/isdn.h
5987 F:      include/uapi/linux/isdn/
5988
5989 ISDN SUBSYSTEM (Eicon active card driver)
5990 M:      Armin Schindler <mac@melware.de>
5991 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5992 W:      http://www.melware.de
5993 S:      Maintained
5994 F:      drivers/isdn/hardware/eicon/
5995
5996 IT87 HARDWARE MONITORING DRIVER
5997 M:      Jean Delvare <jdelvare@suse.com>
5998 L:      lm-sensors@lm-sensors.org
5999 S:      Maintained
6000 F:      Documentation/hwmon/it87
6001 F:      drivers/hwmon/it87.c
6002
6003 IT913X MEDIA DRIVER
6004 M:      Antti Palosaari <crope@iki.fi>
6005 L:      linux-media@vger.kernel.org
6006 W:      https://linuxtv.org
6007 W:      http://palosaari.fi/linux/
6008 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6009 T:      git git://linuxtv.org/anttip/media_tree.git
6010 S:      Maintained
6011 F:      drivers/media/tuners/it913x*
6012
6013 IVTV VIDEO4LINUX DRIVER
6014 M:      Andy Walls <awalls@md.metrocast.net>
6015 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
6016 L:      linux-media@vger.kernel.org
6017 T:      git git://linuxtv.org/media_tree.git
6018 W:      http://www.ivtvdriver.org
6019 S:      Maintained
6020 F:      Documentation/video4linux/*.ivtv
6021 F:      drivers/media/pci/ivtv/
6022 F:      include/uapi/linux/ivtv*
6023
6024 IX2505V MEDIA DRIVER
6025 M:      Malcolm Priestley <tvboxspy@gmail.com>
6026 L:      linux-media@vger.kernel.org
6027 W:      https://linuxtv.org
6028 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6029 S:      Maintained
6030 F:      drivers/media/dvb-frontends/ix2505v*
6031
6032 JC42.4 TEMPERATURE SENSOR DRIVER
6033 M:      Guenter Roeck <linux@roeck-us.net>
6034 L:      lm-sensors@lm-sensors.org
6035 S:      Maintained
6036 F:      drivers/hwmon/jc42.c
6037 F:      Documentation/hwmon/jc42
6038
6039 JFS FILESYSTEM
6040 M:      Dave Kleikamp <shaggy@kernel.org>
6041 L:      jfs-discussion@lists.sourceforge.net
6042 W:      http://jfs.sourceforge.net/
6043 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
6044 S:      Maintained
6045 F:      Documentation/filesystems/jfs.txt
6046 F:      fs/jfs/
6047
6048 JME NETWORK DRIVER
6049 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
6050 L:      netdev@vger.kernel.org
6051 S:      Maintained
6052 F:      drivers/net/ethernet/jme.*
6053
6054 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
6055 M:      David Woodhouse <dwmw2@infradead.org>
6056 L:      linux-mtd@lists.infradead.org
6057 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
6058 S:      Maintained
6059 F:      fs/jffs2/
6060 F:      include/uapi/linux/jffs2.h
6061
6062 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
6063 M:      "Theodore Ts'o" <tytso@mit.edu>
6064 M:      Jan Kara <jack@suse.com>
6065 L:      linux-ext4@vger.kernel.org
6066 S:      Maintained
6067 F:      fs/jbd2/
6068 F:      include/linux/jbd2.h
6069
6070 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
6071 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
6072 L:      linux-media@vger.kernel.org
6073 S:      Maintained
6074 F:      drivers/media/platform/rcar_jpu.c
6075
6076 JSM Neo PCI based serial card
6077 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
6078 L:      linux-serial@vger.kernel.org
6079 S:      Maintained
6080 F:      drivers/tty/serial/jsm/
6081
6082 K10TEMP HARDWARE MONITORING DRIVER
6083 M:      Clemens Ladisch <clemens@ladisch.de>
6084 L:      lm-sensors@lm-sensors.org
6085 S:      Maintained
6086 F:      Documentation/hwmon/k10temp
6087 F:      drivers/hwmon/k10temp.c
6088
6089 K8TEMP HARDWARE MONITORING DRIVER
6090 M:      Rudolf Marek <r.marek@assembler.cz>
6091 L:      lm-sensors@lm-sensors.org
6092 S:      Maintained
6093 F:      Documentation/hwmon/k8temp
6094 F:      drivers/hwmon/k8temp.c
6095
6096 KCONFIG
6097 M:      "Yann E. MORIN" <yann.morin.1998@free.fr>
6098 L:      linux-kbuild@vger.kernel.org
6099 T:      git git://gitorious.org/linux-kconfig/linux-kconfig
6100 S:      Maintained
6101 F:      Documentation/kbuild/kconfig-language.txt
6102 F:      scripts/kconfig/
6103
6104 KDUMP
6105 M:      Vivek Goyal <vgoyal@redhat.com>
6106 M:      Haren Myneni <hbabu@us.ibm.com>
6107 L:      kexec@lists.infradead.org
6108 W:      http://lse.sourceforge.net/kdump/
6109 S:      Maintained
6110 F:      Documentation/kdump/
6111
6112 KEENE FM RADIO TRANSMITTER DRIVER
6113 M:      Hans Verkuil <hverkuil@xs4all.nl>
6114 L:      linux-media@vger.kernel.org
6115 T:      git git://linuxtv.org/media_tree.git
6116 W:      https://linuxtv.org
6117 S:      Maintained
6118 F:      drivers/media/radio/radio-keene*
6119
6120 KERNEL AUTOMOUNTER v4 (AUTOFS4)
6121 M:      Ian Kent <raven@themaw.net>
6122 L:      autofs@vger.kernel.org
6123 S:      Maintained
6124 F:      fs/autofs4/
6125
6126 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
6127 M:      Michal Marek <mmarek@suse.com>
6128 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
6129 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
6130 L:      linux-kbuild@vger.kernel.org
6131 S:      Maintained
6132 F:      Documentation/kbuild/
6133 F:      Makefile
6134 F:      scripts/Makefile.*
6135 F:      scripts/basic/
6136 F:      scripts/mk*
6137 F:      scripts/package/
6138
6139 KERNEL JANITORS
6140 L:      kernel-janitors@vger.kernel.org
6141 W:      http://kernelnewbies.org/KernelJanitors
6142 S:      Odd Fixes
6143
6144 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
6145 M:      "J. Bruce Fields" <bfields@fieldses.org>
6146 M:      Jeff Layton <jlayton@poochiereds.net>
6147 L:      linux-nfs@vger.kernel.org
6148 W:      http://nfs.sourceforge.net/
6149 T:      git git://linux-nfs.org/~bfields/linux.git
6150 S:      Supported
6151 F:      fs/nfsd/
6152 F:      include/uapi/linux/nfsd/
6153 F:      fs/lockd/
6154 F:      fs/nfs_common/
6155 F:      net/sunrpc/
6156 F:      include/linux/lockd/
6157 F:      include/linux/sunrpc/
6158 F:      include/uapi/linux/sunrpc/
6159
6160 KERNEL SELFTEST FRAMEWORK
6161 M:      Shuah Khan <shuahkh@osg.samsung.com>
6162 L:      linux-kselftest@vger.kernel.org
6163 T:      git git://git.kernel.org/pub/scm/shuah/linux-kselftest
6164 S:      Maintained
6165 F:      tools/testing/selftests
6166
6167 KERNEL VIRTUAL MACHINE (KVM)
6168 M:      Gleb Natapov <gleb@kernel.org>
6169 M:      Paolo Bonzini <pbonzini@redhat.com>
6170 L:      kvm@vger.kernel.org
6171 W:      http://www.linux-kvm.org
6172 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
6173 S:      Supported
6174 F:      Documentation/*/kvm*.txt
6175 F:      Documentation/virtual/kvm/
6176 F:      arch/*/kvm/
6177 F:      arch/x86/kernel/kvm.c
6178 F:      arch/x86/kernel/kvmclock.c
6179 F:      arch/*/include/asm/kvm*
6180 F:      include/linux/kvm*
6181 F:      include/uapi/linux/kvm*
6182 F:      virt/kvm/
6183
6184 KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
6185 M:      Joerg Roedel <joro@8bytes.org>
6186 L:      kvm@vger.kernel.org
6187 W:      http://www.linux-kvm.org/
6188 S:      Maintained
6189 F:      arch/x86/include/asm/svm.h
6190 F:      arch/x86/kvm/svm.c
6191
6192 KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
6193 M:      Alexander Graf <agraf@suse.com>
6194 L:      kvm-ppc@vger.kernel.org
6195 W:      http://www.linux-kvm.org/
6196 T:      git git://github.com/agraf/linux-2.6.git
6197 S:      Supported
6198 F:      arch/powerpc/include/asm/kvm*
6199 F:      arch/powerpc/kvm/
6200
6201 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
6202 M:      Christian Borntraeger <borntraeger@de.ibm.com>
6203 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
6204 L:      linux-s390@vger.kernel.org
6205 W:      http://www.ibm.com/developerworks/linux/linux390/
6206 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
6207 S:      Supported
6208 F:      Documentation/s390/kvm.txt
6209 F:      arch/s390/include/asm/kvm*
6210 F:      arch/s390/kvm/
6211
6212 KERNEL VIRTUAL MACHINE (KVM) FOR ARM
6213 M:      Christoffer Dall <christoffer.dall@linaro.org>
6214 M:      Marc Zyngier <marc.zyngier@arm.com>
6215 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6216 L:      kvmarm@lists.cs.columbia.edu
6217 W:      http://systems.cs.columbia.edu/projects/kvm-arm
6218 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
6219 S:      Supported
6220 F:      arch/arm/include/uapi/asm/kvm*
6221 F:      arch/arm/include/asm/kvm*
6222 F:      arch/arm/kvm/
6223 F:      virt/kvm/arm/
6224 F:      include/kvm/arm_*
6225
6226 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
6227 M:      Christoffer Dall <christoffer.dall@linaro.org>
6228 M:      Marc Zyngier <marc.zyngier@arm.com>
6229 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6230 L:      kvmarm@lists.cs.columbia.edu
6231 S:      Maintained
6232 F:      arch/arm64/include/uapi/asm/kvm*
6233 F:      arch/arm64/include/asm/kvm*
6234 F:      arch/arm64/kvm/
6235
6236 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
6237 M:      James Hogan <james.hogan@imgtec.com>
6238 L:      linux-mips@linux-mips.org
6239 S:      Supported
6240 F:      arch/mips/include/uapi/asm/kvm*
6241 F:      arch/mips/include/asm/kvm*
6242 F:      arch/mips/kvm/
6243
6244 KEXEC
6245 M:      Eric Biederman <ebiederm@xmission.com>
6246 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
6247 L:      kexec@lists.infradead.org
6248 S:      Maintained
6249 F:      include/linux/kexec.h
6250 F:      include/uapi/linux/kexec.h
6251 F:      kernel/kexec.c
6252
6253 KEYS/KEYRINGS:
6254 M:      David Howells <dhowells@redhat.com>
6255 L:      keyrings@vger.kernel.org
6256 S:      Maintained
6257 F:      Documentation/security/keys.txt
6258 F:      include/linux/key.h
6259 F:      include/linux/key-type.h
6260 F:      include/keys/
6261 F:      security/keys/
6262
6263 KEYS-TRUSTED
6264 M:      David Safford <safford@us.ibm.com>
6265 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6266 L:      linux-security-module@vger.kernel.org
6267 L:      keyrings@vger.kernel.org
6268 S:      Supported
6269 F:      Documentation/security/keys-trusted-encrypted.txt
6270 F:      include/keys/trusted-type.h
6271 F:      security/keys/trusted.c
6272 F:      security/keys/trusted.h
6273
6274 KEYS-ENCRYPTED
6275 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6276 M:      David Safford <safford@us.ibm.com>
6277 L:      linux-security-module@vger.kernel.org
6278 L:      keyrings@vger.kernel.org
6279 S:      Supported
6280 F:      Documentation/security/keys-trusted-encrypted.txt
6281 F:      include/keys/encrypted-type.h
6282 F:      security/keys/encrypted-keys/
6283
6284 KGDB / KDB /debug_core
6285 M:      Jason Wessel <jason.wessel@windriver.com>
6286 W:      http://kgdb.wiki.kernel.org/
6287 L:      kgdb-bugreport@lists.sourceforge.net
6288 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
6289 S:      Maintained
6290 F:      Documentation/DocBook/kgdb.tmpl
6291 F:      drivers/misc/kgdbts.c
6292 F:      drivers/tty/serial/kgdboc.c
6293 F:      include/linux/kdb.h
6294 F:      include/linux/kgdb.h
6295 F:      kernel/debug/
6296
6297 KMEMCHECK
6298 M:      Vegard Nossum <vegardno@ifi.uio.no>
6299 M:      Pekka Enberg <penberg@kernel.org>
6300 S:      Maintained
6301 F:      Documentation/kmemcheck.txt
6302 F:      arch/x86/include/asm/kmemcheck.h
6303 F:      arch/x86/mm/kmemcheck/
6304 F:      include/linux/kmemcheck.h
6305 F:      mm/kmemcheck.c
6306
6307 KMEMLEAK
6308 M:      Catalin Marinas <catalin.marinas@arm.com>
6309 S:      Maintained
6310 F:      Documentation/kmemleak.txt
6311 F:      include/linux/kmemleak.h
6312 F:      mm/kmemleak.c
6313 F:      mm/kmemleak-test.c
6314
6315 KPROBES
6316 M:      Ananth N Mavinakayanahalli <ananth@in.ibm.com>
6317 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
6318 M:      "David S. Miller" <davem@davemloft.net>
6319 M:      Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
6320 S:      Maintained
6321 F:      Documentation/kprobes.txt
6322 F:      include/linux/kprobes.h
6323 F:      kernel/kprobes.c
6324
6325 KS0108 LCD CONTROLLER DRIVER
6326 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
6327 W:      http://miguelojeda.es/auxdisplay.htm
6328 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
6329 S:      Maintained
6330 F:      Documentation/auxdisplay/ks0108
6331 F:      drivers/auxdisplay/ks0108.c
6332 F:      include/linux/ks0108.h
6333
6334 L3MDEV
6335 M:      David Ahern <dsa@cumulusnetworks.com>
6336 L:      netdev@vger.kernel.org
6337 S:      Maintained
6338 F:      net/l3mdev
6339 F:      include/net/l3mdev.h
6340
6341 LANTIQ MIPS ARCHITECTURE
6342 M:      John Crispin <blogic@openwrt.org>
6343 L:      linux-mips@linux-mips.org
6344 S:      Maintained
6345 F:      arch/mips/lantiq
6346
6347 LAPB module
6348 L:      linux-x25@vger.kernel.org
6349 S:      Orphan
6350 F:      Documentation/networking/lapb-module.txt
6351 F:      include/*/lapb.h
6352 F:      net/lapb/
6353
6354 LASI 53c700 driver for PARISC
6355 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
6356 L:      linux-scsi@vger.kernel.org
6357 S:      Maintained
6358 F:      Documentation/scsi/53c700.txt
6359 F:      drivers/scsi/53c700*
6360
6361 LED SUBSYSTEM
6362 M:      Richard Purdie <rpurdie@rpsys.net>
6363 M:      Jacek Anaszewski <j.anaszewski@samsung.com>
6364 L:      linux-leds@vger.kernel.org
6365 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
6366 S:      Maintained
6367 F:      drivers/leds/
6368 F:      include/linux/leds.h
6369
6370 LEGACY EEPROM DRIVER
6371 M:      Jean Delvare <jdelvare@suse.com>
6372 S:      Maintained
6373 F:      Documentation/misc-devices/eeprom
6374 F:      drivers/misc/eeprom/eeprom.c
6375
6376 LEGO USB Tower driver
6377 M:      Juergen Stuber <starblue@users.sourceforge.net>
6378 L:      legousb-devel@lists.sourceforge.net
6379 W:      http://legousb.sourceforge.net/
6380 S:      Maintained
6381 F:      drivers/usb/misc/legousbtower.c
6382
6383 LG2160 MEDIA DRIVER
6384 M:      Michael Krufky <mkrufky@linuxtv.org>
6385 L:      linux-media@vger.kernel.org
6386 W:      https://linuxtv.org
6387 W:      http://github.com/mkrufky
6388 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6389 T:      git git://linuxtv.org/mkrufky/tuners.git
6390 S:      Maintained
6391 F:      drivers/media/dvb-frontends/lg2160.*
6392
6393 LGDT3305 MEDIA DRIVER
6394 M:      Michael Krufky <mkrufky@linuxtv.org>
6395 L:      linux-media@vger.kernel.org
6396 W:      https://linuxtv.org
6397 W:      http://github.com/mkrufky
6398 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6399 T:      git git://linuxtv.org/mkrufky/tuners.git
6400 S:      Maintained
6401 F:      drivers/media/dvb-frontends/lgdt3305.*
6402
6403 LGUEST
6404 M:      Rusty Russell <rusty@rustcorp.com.au>
6405 L:      lguest@lists.ozlabs.org
6406 W:      http://lguest.ozlabs.org/
6407 S:      Odd Fixes
6408 F:      arch/x86/include/asm/lguest*.h
6409 F:      arch/x86/lguest/
6410 F:      drivers/lguest/
6411 F:      include/linux/lguest*.h
6412 F:      tools/lguest/
6413
6414 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
6415 M:      Tejun Heo <tj@kernel.org>
6416 L:      linux-ide@vger.kernel.org
6417 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6418 S:      Maintained
6419 F:      drivers/ata/
6420 F:      include/linux/ata.h
6421 F:      include/linux/libata.h
6422
6423 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
6424 M:      Viresh Kumar <vireshk@kernel.org>
6425 L:      linux-ide@vger.kernel.org
6426 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6427 S:      Maintained
6428 F:      include/linux/pata_arasan_cf_data.h
6429 F:      drivers/ata/pata_arasan_cf.c
6430
6431 LIBATA PATA DRIVERS
6432 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6433 M:      Tejun Heo <tj@kernel.org>
6434 L:      linux-ide@vger.kernel.org
6435 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6436 S:      Maintained
6437 F:      drivers/ata/pata_*.c
6438 F:      drivers/ata/ata_generic.c
6439
6440 LIBATA SATA AHCI PLATFORM devices support
6441 M:      Hans de Goede <hdegoede@redhat.com>
6442 M:      Tejun Heo <tj@kernel.org>
6443 L:      linux-ide@vger.kernel.org
6444 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6445 S:      Maintained
6446 F:      drivers/ata/ahci_platform.c
6447 F:      drivers/ata/libahci_platform.c
6448 F:      include/linux/ahci_platform.h
6449
6450 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
6451 M:      Mikael Pettersson <mikpelinux@gmail.com>
6452 L:      linux-ide@vger.kernel.org
6453 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6454 S:      Maintained
6455 F:      drivers/ata/sata_promise.*
6456
6457 LIBLOCKDEP
6458 M:      Sasha Levin <sasha.levin@oracle.com>
6459 S:      Maintained
6460 F:      tools/lib/lockdep/
6461
6462 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
6463 M:      Dan Williams <dan.j.williams@intel.com>
6464 L:      linux-nvdimm@lists.01.org
6465 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6466 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
6467 S:      Supported
6468 F:      drivers/nvdimm/*
6469 F:      include/linux/nd.h
6470 F:      include/linux/libnvdimm.h
6471 F:      include/uapi/linux/ndctl.h
6472
6473 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
6474 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6475 L:      linux-nvdimm@lists.01.org
6476 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6477 S:      Supported
6478 F:      drivers/nvdimm/blk.c
6479 F:      drivers/nvdimm/region_devs.c
6480 F:      drivers/acpi/nfit*
6481
6482 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
6483 M:      Vishal Verma <vishal.l.verma@intel.com>
6484 L:      linux-nvdimm@lists.01.org
6485 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6486 S:      Supported
6487 F:      drivers/nvdimm/btt*
6488
6489 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
6490 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6491 L:      linux-nvdimm@lists.01.org
6492 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6493 S:      Supported
6494 F:      drivers/nvdimm/pmem.c
6495 F:      include/linux/pmem.h
6496 F:      arch/*/include/asm/pmem.h
6497
6498 LIGHTNVM PLATFORM SUPPORT
6499 M:      Matias Bjorling <mb@lightnvm.io>
6500 W:      http://github/OpenChannelSSD
6501 L:      linux-block@vger.kernel.org
6502 S:      Maintained
6503 F:      drivers/lightnvm/
6504 F:      include/linux/lightnvm.h
6505 F:      include/uapi/linux/lightnvm.h
6506
6507 LINUX FOR IBM pSERIES (RS/6000)
6508 M:      Paul Mackerras <paulus@au.ibm.com>
6509 W:      http://www.ibm.com/linux/ltc/projects/ppc
6510 S:      Supported
6511 F:      arch/powerpc/boot/rs6000.h
6512
6513 LINUX FOR POWERPC (32-BIT AND 64-BIT)
6514 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6515 M:      Paul Mackerras <paulus@samba.org>
6516 M:      Michael Ellerman <mpe@ellerman.id.au>
6517 W:      http://www.penguinppc.org/
6518 L:      linuxppc-dev@lists.ozlabs.org
6519 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
6520 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
6521 S:      Supported
6522 F:      Documentation/powerpc/
6523 F:      arch/powerpc/
6524
6525 LINUX FOR POWER MACINTOSH
6526 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6527 W:      http://www.penguinppc.org/
6528 L:      linuxppc-dev@lists.ozlabs.org
6529 S:      Maintained
6530 F:      arch/powerpc/platforms/powermac/
6531 F:      drivers/macintosh/
6532
6533 LINUX FOR POWERPC EMBEDDED MPC5XXX
6534 M:      Anatolij Gustschin <agust@denx.de>
6535 L:      linuxppc-dev@lists.ozlabs.org
6536 T:      git git://git.denx.de/linux-denx-agust.git
6537 S:      Maintained
6538 F:      arch/powerpc/platforms/512x/
6539 F:      arch/powerpc/platforms/52xx/
6540
6541 LINUX FOR POWERPC EMBEDDED PPC4XX
6542 M:      Alistair Popple <alistair@popple.id.au>
6543 M:      Matt Porter <mporter@kernel.crashing.org>
6544 W:      http://www.penguinppc.org/
6545 L:      linuxppc-dev@lists.ozlabs.org
6546 S:      Maintained
6547 F:      arch/powerpc/platforms/40x/
6548 F:      arch/powerpc/platforms/44x/
6549
6550 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
6551 L:      linuxppc-dev@lists.ozlabs.org
6552 S:      Orphan
6553 F:      arch/powerpc/*/*virtex*
6554 F:      arch/powerpc/*/*/*virtex*
6555
6556 LINUX FOR POWERPC EMBEDDED PPC8XX
6557 M:      Vitaly Bordug <vitb@kernel.crashing.org>
6558 W:      http://www.penguinppc.org/
6559 L:      linuxppc-dev@lists.ozlabs.org
6560 S:      Maintained
6561 F:      arch/powerpc/platforms/8xx/
6562
6563 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
6564 M:      Scott Wood <oss@buserror.net>
6565 M:      Kumar Gala <galak@kernel.crashing.org>
6566 W:      http://www.penguinppc.org/
6567 L:      linuxppc-dev@lists.ozlabs.org
6568 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
6569 S:      Maintained
6570 F:      arch/powerpc/platforms/83xx/
6571 F:      arch/powerpc/platforms/85xx/
6572
6573 LINUX FOR POWERPC PA SEMI PWRFICIENT
6574 M:      Olof Johansson <olof@lixom.net>
6575 L:      linuxppc-dev@lists.ozlabs.org
6576 S:      Maintained
6577 F:      arch/powerpc/platforms/pasemi/
6578 F:      drivers/*/*pasemi*
6579 F:      drivers/*/*/*pasemi*
6580
6581 LINUX SECURITY MODULE (LSM) FRAMEWORK
6582 M:      Chris Wright <chrisw@sous-sol.org>
6583 L:      linux-security-module@vger.kernel.org
6584 S:      Supported
6585
6586 LIS3LV02D ACCELEROMETER DRIVER
6587 M:      Eric Piel <eric.piel@tremplin-utc.net>
6588 S:      Maintained
6589 F:      Documentation/misc-devices/lis3lv02d
6590 F:      drivers/misc/lis3lv02d/
6591 F:      drivers/platform/x86/hp_accel.c
6592
6593 LIVE PATCHING
6594 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6595 M:      Seth Jennings <sjenning@redhat.com>
6596 M:      Jiri Kosina <jikos@kernel.org>
6597 M:      Vojtech Pavlik <vojtech@suse.com>
6598 S:      Maintained
6599 F:      kernel/livepatch/
6600 F:      include/linux/livepatch.h
6601 F:      arch/x86/include/asm/livepatch.h
6602 F:      arch/x86/kernel/livepatch.c
6603 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
6604 F:      samples/livepatch/
6605 L:      live-patching@vger.kernel.org
6606 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
6607
6608 LLC (802.2)
6609 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
6610 S:      Maintained
6611 F:      include/linux/llc.h
6612 F:      include/uapi/linux/llc.h
6613 F:      include/net/llc*
6614 F:      net/llc/
6615
6616 LM73 HARDWARE MONITOR DRIVER
6617 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
6618 L:      lm-sensors@lm-sensors.org
6619 S:      Maintained
6620 F:      drivers/hwmon/lm73.c
6621
6622 LM78 HARDWARE MONITOR DRIVER
6623 M:      Jean Delvare <jdelvare@suse.com>
6624 L:      lm-sensors@lm-sensors.org
6625 S:      Maintained
6626 F:      Documentation/hwmon/lm78
6627 F:      drivers/hwmon/lm78.c
6628
6629 LM83 HARDWARE MONITOR DRIVER
6630 M:      Jean Delvare <jdelvare@suse.com>
6631 L:      lm-sensors@lm-sensors.org
6632 S:      Maintained
6633 F:      Documentation/hwmon/lm83
6634 F:      drivers/hwmon/lm83.c
6635
6636 LM90 HARDWARE MONITOR DRIVER
6637 M:      Jean Delvare <jdelvare@suse.com>
6638 L:      lm-sensors@lm-sensors.org
6639 S:      Maintained
6640 F:      Documentation/hwmon/lm90
6641 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
6642 F:      drivers/hwmon/lm90.c
6643
6644 LM95234 HARDWARE MONITOR DRIVER
6645 M:      Guenter Roeck <linux@roeck-us.net>
6646 L:      lm-sensors@lm-sensors.org
6647 S:      Maintained
6648 F:      Documentation/hwmon/lm95234
6649 F:      drivers/hwmon/lm95234.c
6650
6651 LME2510 MEDIA DRIVER
6652 M:      Malcolm Priestley <tvboxspy@gmail.com>
6653 L:      linux-media@vger.kernel.org
6654 W:      https://linuxtv.org
6655 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6656 S:      Maintained
6657 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
6658
6659 LOCKDEP AND LOCKSTAT
6660 M:      Peter Zijlstra <peterz@infradead.org>
6661 M:      Ingo Molnar <mingo@redhat.com>
6662 L:      linux-kernel@vger.kernel.org
6663 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
6664 S:      Maintained
6665 F:      Documentation/locking/lockdep*.txt
6666 F:      Documentation/locking/lockstat.txt
6667 F:      include/linux/lockdep.h
6668 F:      kernel/locking/
6669
6670 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
6671 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
6672 L:      linux-ntfs-dev@lists.sourceforge.net
6673 W:      http://www.linux-ntfs.org/content/view/19/37/
6674 S:      Maintained
6675 F:      Documentation/ldm.txt
6676 F:      block/partitions/ldm.*
6677
6678 LogFS
6679 M:      Joern Engel <joern@logfs.org>
6680 M:      Prasad Joshi <prasadjoshi.linux@gmail.com>
6681 L:      logfs@logfs.org
6682 W:      logfs.org
6683 S:      Maintained
6684 F:      fs/logfs/
6685
6686 LPC32XX MACHINE SUPPORT
6687 M:      Roland Stigge <stigge@antcom.de>
6688 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6689 S:      Maintained
6690 F:      arch/arm/mach-lpc32xx/
6691
6692 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
6693 M:      Nagalakshmi Nandigama <nagalakshmi.nandigama@avagotech.com>
6694 M:      Praveen Krishnamoorthy <praveen.krishnamoorthy@avagotech.com>
6695 M:      Sreekanth Reddy <sreekanth.reddy@avagotech.com>
6696 M:      Abhijit Mahajan <abhijit.mahajan@avagotech.com>
6697 L:      MPT-FusionLinux.pdl@avagotech.com
6698 L:      linux-scsi@vger.kernel.org
6699 W:      http://www.lsilogic.com/support
6700 S:      Supported
6701 F:      drivers/message/fusion/
6702 F:      drivers/scsi/mpt2sas/
6703 F:      drivers/scsi/mpt3sas/
6704
6705 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
6706 M:      Matthew Wilcox <matthew@wil.cx>
6707 L:      linux-scsi@vger.kernel.org
6708 S:      Maintained
6709 F:      drivers/scsi/sym53c8xx_2/
6710
6711 LTC4261 HARDWARE MONITOR DRIVER
6712 M:      Guenter Roeck <linux@roeck-us.net>
6713 L:      lm-sensors@lm-sensors.org
6714 S:      Maintained
6715 F:      Documentation/hwmon/ltc4261
6716 F:      drivers/hwmon/ltc4261.c
6717
6718 LTP (Linux Test Project)
6719 M:      Mike Frysinger <vapier@gentoo.org>
6720 M:      Cyril Hrubis <chrubis@suse.cz>
6721 M:      Wanlong Gao <wanlong.gao@gmail.com>
6722 M:      Jan Stancek <jstancek@redhat.com>
6723 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
6724 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
6725 L:      ltp@lists.linux.it (subscribers-only)
6726 W:      http://linux-test-project.github.io/
6727 T:      git git://github.com/linux-test-project/ltp.git
6728 S:      Maintained
6729
6730 M32R ARCHITECTURE
6731 W:      http://www.linux-m32r.org/
6732 S:      Orphan
6733 F:      arch/m32r/
6734
6735 M68K ARCHITECTURE
6736 M:      Geert Uytterhoeven <geert@linux-m68k.org>
6737 L:      linux-m68k@lists.linux-m68k.org
6738 W:      http://www.linux-m68k.org/
6739 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
6740 S:      Maintained
6741 F:      arch/m68k/
6742 F:      drivers/zorro/
6743
6744 M68K ON APPLE MACINTOSH
6745 M:      Joshua Thompson <funaho@jurai.org>
6746 W:      http://www.mac.linux-m68k.org/
6747 L:      linux-m68k@lists.linux-m68k.org
6748 S:      Maintained
6749 F:      arch/m68k/mac/
6750
6751 M68K ON HP9000/300
6752 M:      Philip Blundell <philb@gnu.org>
6753 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
6754 S:      Maintained
6755 F:      arch/m68k/hp300/
6756
6757 M88DS3103 MEDIA DRIVER
6758 M:      Antti Palosaari <crope@iki.fi>
6759 L:      linux-media@vger.kernel.org
6760 W:      https://linuxtv.org
6761 W:      http://palosaari.fi/linux/
6762 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6763 T:      git git://linuxtv.org/anttip/media_tree.git
6764 S:      Maintained
6765 F:      drivers/media/dvb-frontends/m88ds3103*
6766
6767 M88RS2000 MEDIA DRIVER
6768 M:      Malcolm Priestley <tvboxspy@gmail.com>
6769 L:      linux-media@vger.kernel.org
6770 W:      https://linuxtv.org
6771 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6772 S:      Maintained
6773 F:      drivers/media/dvb-frontends/m88rs2000*
6774
6775 MA901 MASTERKIT USB FM RADIO DRIVER
6776 M:      Alexey Klimov <klimov.linux@gmail.com>
6777 L:      linux-media@vger.kernel.org
6778 T:      git git://linuxtv.org/media_tree.git
6779 S:      Maintained
6780 F:      drivers/media/radio/radio-ma901.c
6781
6782 MAC80211
6783 M:      Johannes Berg <johannes@sipsolutions.net>
6784 L:      linux-wireless@vger.kernel.org
6785 W:      http://wireless.kernel.org/
6786 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6787 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
6788 S:      Maintained
6789 F:      Documentation/networking/mac80211-injection.txt
6790 F:      include/net/mac80211.h
6791 F:      net/mac80211/
6792
6793 MACVLAN DRIVER
6794 M:      Patrick McHardy <kaber@trash.net>
6795 L:      netdev@vger.kernel.org
6796 S:      Maintained
6797 F:      drivers/net/macvlan.c
6798 F:      include/linux/if_macvlan.h
6799
6800 MAILBOX API
6801 M:      Jassi Brar <jassisinghbrar@gmail.com>
6802 L:      linux-kernel@vger.kernel.org
6803 S:      Maintained
6804 F:      drivers/mailbox/
6805 F:      include/linux/mailbox_client.h
6806 F:      include/linux/mailbox_controller.h
6807
6808 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
6809 M:      Michael Kerrisk <mtk.manpages@gmail.com>
6810 W:      http://www.kernel.org/doc/man-pages
6811 L:      linux-man@vger.kernel.org
6812 S:      Maintained
6813
6814 MARVELL ARMADA DRM SUPPORT
6815 M:      Russell King <rmk+kernel@arm.linux.org.uk>
6816 S:      Maintained
6817 F:      drivers/gpu/drm/armada/
6818
6819 MARVELL 88E6352 DSA support
6820 M:      Guenter Roeck <linux@roeck-us.net>
6821 S:      Maintained
6822 F:      drivers/net/dsa/mv88e6352.c
6823
6824 MARVELL CRYPTO DRIVER
6825 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
6826 M:      Arnaud Ebalard <arno@natisbad.org>
6827 F:      drivers/crypto/marvell/
6828 S:      Maintained
6829 L:      linux-crypto@vger.kernel.org
6830
6831 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
6832 M:      Mirko Lindner <mlindner@marvell.com>
6833 M:      Stephen Hemminger <stephen@networkplumber.org>
6834 L:      netdev@vger.kernel.org
6835 S:      Maintained
6836 F:      drivers/net/ethernet/marvell/sk*
6837
6838 MARVELL LIBERTAS WIRELESS DRIVER
6839 L:      libertas-dev@lists.infradead.org
6840 S:      Orphan
6841 F:      drivers/net/wireless/marvell/libertas/
6842
6843 MARVELL MV643XX ETHERNET DRIVER
6844 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
6845 L:      netdev@vger.kernel.org
6846 S:      Maintained
6847 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
6848 F:      include/linux/mv643xx.h
6849
6850 MARVELL MVNETA ETHERNET DRIVER
6851 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
6852 L:      netdev@vger.kernel.org
6853 S:      Maintained
6854 F:      drivers/net/ethernet/marvell/mvneta.*
6855
6856 MARVELL MWIFIEX WIRELESS DRIVER
6857 M:      Amitkumar Karwar <akarwar@marvell.com>
6858 M:      Nishant Sarmukadam <nishants@marvell.com>
6859 L:      linux-wireless@vger.kernel.org
6860 S:      Maintained
6861 F:      drivers/net/wireless/marvell/mwifiex/
6862
6863 MARVELL MWL8K WIRELESS DRIVER
6864 M:      Lennert Buytenhek <buytenh@wantstofly.org>
6865 L:      linux-wireless@vger.kernel.org
6866 S:      Odd Fixes
6867 F:      drivers/net/wireless/marvell/mwl8k.c
6868
6869 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
6870 M:      Nicolas Pitre <nico@fluxnic.net>
6871 S:      Odd Fixes
6872 F:      drivers/mmc/host/mvsdio.*
6873
6874 MATROX FRAMEBUFFER DRIVER
6875 L:      linux-fbdev@vger.kernel.org
6876 S:      Orphan
6877 F:      drivers/video/fbdev/matrox/matroxfb_*
6878 F:      include/uapi/linux/matroxfb.h
6879
6880 MAX16065 HARDWARE MONITOR DRIVER
6881 M:      Guenter Roeck <linux@roeck-us.net>
6882 L:      lm-sensors@lm-sensors.org
6883 S:      Maintained
6884 F:      Documentation/hwmon/max16065
6885 F:      drivers/hwmon/max16065.c
6886
6887 MAX20751 HARDWARE MONITOR DRIVER
6888 M:      Guenter Roeck <linux@roeck-us.net>
6889 L:      lm-sensors@lm-sensors.org
6890 S:      Maintained
6891 F:      Documentation/hwmon/max20751
6892 F:      drivers/hwmon/max20751.c
6893
6894 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6895 M:      "Hans J. Koch" <hjk@hansjkoch.de>
6896 L:      lm-sensors@lm-sensors.org
6897 S:      Maintained
6898 F:      Documentation/hwmon/max6650
6899 F:      drivers/hwmon/max6650.c
6900
6901 MAX6697 HARDWARE MONITOR DRIVER
6902 M:      Guenter Roeck <linux@roeck-us.net>
6903 L:      lm-sensors@lm-sensors.org
6904 S:      Maintained
6905 F:      Documentation/hwmon/max6697
6906 F:      Documentation/devicetree/bindings/i2c/max6697.txt
6907 F:      drivers/hwmon/max6697.c
6908 F:      include/linux/platform_data/max6697.h
6909
6910 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
6911 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6912 L:      linux-pm@vger.kernel.org
6913 S:      Supported
6914 F:      drivers/power/max14577_charger.c
6915 F:      drivers/power/max77693_charger.c
6916
6917 MAXIM MAX77802 MULTIFUNCTION PMIC DEVICE DRIVERS
6918 M:      Javier Martinez Canillas <javier@osg.samsung.com>
6919 L:      linux-kernel@vger.kernel.org
6920 S:      Supported
6921 F:      drivers/*/*max77802.c
6922 F:      Documentation/devicetree/bindings/*/*max77802.txt
6923 F:      include/dt-bindings/*/*max77802.h
6924
6925 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
6926 M:      Chanwoo Choi <cw00.choi@samsung.com>
6927 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6928 L:      linux-kernel@vger.kernel.org
6929 S:      Supported
6930 F:      drivers/*/max14577.c
6931 F:      drivers/*/max77686.c
6932 F:      drivers/*/max77693.c
6933 F:      drivers/extcon/extcon-max14577.c
6934 F:      drivers/extcon/extcon-max77693.c
6935 F:      drivers/rtc/rtc-max77686.c
6936 F:      drivers/clk/clk-max77686.c
6937 F:      Documentation/devicetree/bindings/mfd/max14577.txt
6938 F:      Documentation/devicetree/bindings/*/max77686.txt
6939 F:      Documentation/devicetree/bindings/mfd/max77693.txt
6940 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
6941 F:      include/linux/mfd/max14577*.h
6942 F:      include/linux/mfd/max77686*.h
6943 F:      include/linux/mfd/max77693*.h
6944
6945 MAXIRADIO FM RADIO RECEIVER DRIVER
6946 M:      Hans Verkuil <hverkuil@xs4all.nl>
6947 L:      linux-media@vger.kernel.org
6948 T:      git git://linuxtv.org/media_tree.git
6949 W:      https://linuxtv.org
6950 S:      Maintained
6951 F:      drivers/media/radio/radio-maxiradio*
6952
6953 MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVER
6954 M:      Peter Rosin <peda@axentia.se>
6955 L:      linux-iio@vger.kernel.org
6956 S:      Maintained
6957 F:      drivers/iio/potentiometer/mcp4531.c
6958
6959 MEDIA DRIVERS FOR RENESAS - VSP1
6960 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6961 L:      linux-media@vger.kernel.org
6962 L:      linux-renesas-soc@vger.kernel.org
6963 T:      git git://linuxtv.org/media_tree.git
6964 S:      Supported
6965 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
6966 F:      drivers/media/platform/vsp1/
6967
6968 MEDIA DRIVERS FOR ASCOT2E
6969 M:      Sergey Kozlov <serjk@netup.ru>
6970 L:      linux-media@vger.kernel.org
6971 W:      https://linuxtv.org
6972 W:      http://netup.tv/
6973 T:      git git://linuxtv.org/media_tree.git
6974 S:      Supported
6975 F:      drivers/media/dvb-frontends/ascot2e*
6976
6977 MEDIA DRIVERS FOR CXD2841ER
6978 M:      Sergey Kozlov <serjk@netup.ru>
6979 L:      linux-media@vger.kernel.org
6980 W:      https://linuxtv.org
6981 W:      http://netup.tv/
6982 T:      git git://linuxtv.org/media_tree.git
6983 S:      Supported
6984 F:      drivers/media/dvb-frontends/cxd2841er*
6985
6986 MEDIA DRIVERS FOR HORUS3A
6987 M:      Sergey Kozlov <serjk@netup.ru>
6988 L:      linux-media@vger.kernel.org
6989 W:      https://linuxtv.org
6990 W:      http://netup.tv/
6991 T:      git git://linuxtv.org/media_tree.git
6992 S:      Supported
6993 F:      drivers/media/dvb-frontends/horus3a*
6994
6995 MEDIA DRIVERS FOR LNBH25
6996 M:      Sergey Kozlov <serjk@netup.ru>
6997 L:      linux-media@vger.kernel.org
6998 W:      https://linuxtv.org
6999 W:      http://netup.tv/
7000 T:      git git://linuxtv.org/media_tree.git
7001 S:      Supported
7002 F:      drivers/media/dvb-frontends/lnbh25*
7003
7004 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
7005 M:      Sergey Kozlov <serjk@netup.ru>
7006 L:      linux-media@vger.kernel.org
7007 W:      https://linuxtv.org
7008 W:      http://netup.tv/
7009 T:      git git://linuxtv.org/media_tree.git
7010 S:      Supported
7011 F:      drivers/media/pci/netup_unidvb/*
7012
7013 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
7014 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
7015 P:      LinuxTV.org Project
7016 L:      linux-media@vger.kernel.org
7017 W:      https://linuxtv.org
7018 Q:      http://patchwork.kernel.org/project/linux-media/list/
7019 T:      git git://linuxtv.org/media_tree.git
7020 S:      Maintained
7021 F:      Documentation/dvb/
7022 F:      Documentation/video4linux/
7023 F:      Documentation/DocBook/media/
7024 F:      drivers/media/
7025 F:      drivers/staging/media/
7026 F:      include/linux/platform_data/media/
7027 F:      include/media/
7028 F:      include/uapi/linux/dvb/
7029 F:      include/uapi/linux/videodev2.h
7030 F:      include/uapi/linux/media.h
7031 F:      include/uapi/linux/v4l2-*
7032 F:      include/uapi/linux/meye.h
7033 F:      include/uapi/linux/ivtv*
7034 F:      include/uapi/linux/uvcvideo.h
7035
7036 MEDIATEK MT7601U WIRELESS LAN DRIVER
7037 M:      Jakub Kicinski <kubakici@wp.pl>
7038 L:      linux-wireless@vger.kernel.org
7039 S:      Maintained
7040 F:      drivers/net/wireless/mediatek/mt7601u/
7041
7042 MEGARAID SCSI/SAS DRIVERS
7043 M:      Kashyap Desai <kashyap.desai@avagotech.com>
7044 M:      Sumit Saxena <sumit.saxena@avagotech.com>
7045 M:      Uday Lingala <uday.lingala@avagotech.com>
7046 L:      megaraidlinux.pdl@avagotech.com
7047 L:      linux-scsi@vger.kernel.org
7048 W:      http://www.lsi.com
7049 S:      Maintained
7050 F:      Documentation/scsi/megaraid.txt
7051 F:      drivers/scsi/megaraid.*
7052 F:      drivers/scsi/megaraid/
7053
7054 MELLANOX ETHERNET DRIVER (mlx4_en)
7055 M:      Eugenia Emantayev <eugenia@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/mlx4/en_*
7061
7062 MELLANOX ETHERNET DRIVER (mlx5e)
7063 M:      Saeed Mahameed <saeedm@mellanox.com>
7064 L:      netdev@vger.kernel.org
7065 S:      Supported
7066 W:      http://www.mellanox.com
7067 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7068 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
7069
7070 MELLANOX ETHERNET SWITCH DRIVERS
7071 M:      Jiri Pirko <jiri@mellanox.com>
7072 M:      Ido Schimmel <idosch@mellanox.com>
7073 L:      netdev@vger.kernel.org
7074 S:      Supported
7075 W:      http://www.mellanox.com
7076 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7077 F:      drivers/net/ethernet/mellanox/mlxsw/
7078
7079 MEMBARRIER SUPPORT
7080 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7081 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
7082 L:      linux-kernel@vger.kernel.org
7083 S:      Supported
7084 F:      kernel/membarrier.c
7085 F:      include/uapi/linux/membarrier.h
7086
7087 MEMORY MANAGEMENT
7088 L:      linux-mm@kvack.org
7089 W:      http://www.linux-mm.org
7090 S:      Maintained
7091 F:      include/linux/mm.h
7092 F:      include/linux/gfp.h
7093 F:      include/linux/mmzone.h
7094 F:      include/linux/memory_hotplug.h
7095 F:      include/linux/vmalloc.h
7096 F:      mm/
7097
7098 MEMORY TECHNOLOGY DEVICES (MTD)
7099 M:      David Woodhouse <dwmw2@infradead.org>
7100 M:      Brian Norris <computersforpeace@gmail.com>
7101 L:      linux-mtd@lists.infradead.org
7102 W:      http://www.linux-mtd.infradead.org/
7103 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
7104 T:      git git://git.infradead.org/linux-mtd.git
7105 T:      git git://git.infradead.org/l2-mtd.git
7106 S:      Maintained
7107 F:      drivers/mtd/
7108 F:      include/linux/mtd/
7109 F:      include/uapi/mtd/
7110
7111 MEN A21 WATCHDOG DRIVER
7112 M:      Johannes Thumshirn <morbidrsa@gmail.com>
7113 L:      linux-watchdog@vger.kernel.org
7114 S:      Maintained
7115 F:      drivers/watchdog/mena21_wdt.c
7116
7117 MEN CHAMELEON BUS (mcb)
7118 M:      Johannes Thumshirn <morbidrsa@gmail.com>
7119 S:      Maintained
7120 F:      drivers/mcb/
7121 F:      include/linux/mcb.h
7122 F:      Documentation/men-chameleon-bus.txt
7123
7124 MEN F21BMC (Board Management Controller)
7125 M:      Andreas Werner <andreas.werner@men.de>
7126 S:      Supported
7127 F:      drivers/mfd/menf21bmc.c
7128 F:      drivers/watchdog/menf21bmc_wdt.c
7129 F:      drivers/leds/leds-menf21bmc.c
7130 F:      drivers/hwmon/menf21bmc_hwmon.c
7131 F:      Documentation/hwmon/menf21bmc
7132
7133 METAG ARCHITECTURE
7134 M:      James Hogan <james.hogan@imgtec.com>
7135 L:      linux-metag@vger.kernel.org
7136 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jhogan/metag.git
7137 S:      Odd Fixes
7138 F:      arch/metag/
7139 F:      Documentation/metag/
7140 F:      Documentation/devicetree/bindings/metag/
7141 F:      Documentation/devicetree/bindings/interrupt-controller/img,*
7142 F:      drivers/clocksource/metag_generic.c
7143 F:      drivers/irqchip/irq-metag.c
7144 F:      drivers/irqchip/irq-metag-ext.c
7145 F:      drivers/tty/metag_da.c
7146
7147 MICROBLAZE ARCHITECTURE
7148 M:      Michal Simek <monstr@monstr.eu>
7149 W:      http://www.monstr.eu/fdt/
7150 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
7151 S:      Supported
7152 F:      arch/microblaze/
7153
7154 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
7155 M:      Chen Yu <yu.c.chen@intel.com>
7156 L:      platform-driver-x86@vger.kernel.org
7157 S:      Supported
7158 F:      drivers/platform/x86/surfacepro3_button.c
7159
7160 MICROTEK X6 SCANNER
7161 M:      Oliver Neukum <oliver@neukum.org>
7162 S:      Maintained
7163 F:      drivers/usb/image/microtek.*
7164
7165 MIPS
7166 M:      Ralf Baechle <ralf@linux-mips.org>
7167 L:      linux-mips@linux-mips.org
7168 W:      http://www.linux-mips.org/
7169 T:      git git://git.linux-mips.org/pub/scm/ralf/linux.git
7170 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
7171 S:      Supported
7172 F:      Documentation/mips/
7173 F:      arch/mips/
7174
7175 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
7176 M:      Hans Verkuil <hverkuil@xs4all.nl>
7177 L:      linux-media@vger.kernel.org
7178 T:      git git://linuxtv.org/media_tree.git
7179 W:      https://linuxtv.org
7180 S:      Odd Fixes
7181 F:      drivers/media/radio/radio-miropcm20*
7182
7183 MELLANOX MLX4 core VPI driver
7184 M:      Yishai Hadas <yishaih@mellanox.com>
7185 L:      netdev@vger.kernel.org
7186 L:      linux-rdma@vger.kernel.org
7187 W:      http://www.mellanox.com
7188 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7189 S:      Supported
7190 F:      drivers/net/ethernet/mellanox/mlx4/
7191 F:      include/linux/mlx4/
7192
7193 MELLANOX MLX4 IB driver
7194 M:      Yishai Hadas <yishaih@mellanox.com>
7195 L:      linux-rdma@vger.kernel.org
7196 W:      http://www.mellanox.com
7197 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
7198 S:      Supported
7199 F:      drivers/infiniband/hw/mlx4/
7200 F:      include/linux/mlx4/
7201
7202 MELLANOX MLX5 core VPI driver
7203 M:      Matan Barak <matanb@mellanox.com>
7204 M:      Leon Romanovsky <leonro@mellanox.com>
7205 L:      netdev@vger.kernel.org
7206 L:      linux-rdma@vger.kernel.org
7207 W:      http://www.mellanox.com
7208 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7209 S:      Supported
7210 F:      drivers/net/ethernet/mellanox/mlx5/core/
7211 F:      include/linux/mlx5/
7212
7213 MELLANOX MLX5 IB driver
7214 M:      Matan Barak <matanb@mellanox.com>
7215 M:      Leon Romanovsky <leonro@mellanox.com>
7216 L:      linux-rdma@vger.kernel.org
7217 W:      http://www.mellanox.com
7218 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
7219 S:      Supported
7220 F:      drivers/infiniband/hw/mlx5/
7221 F:      include/linux/mlx5/
7222
7223 MELEXIS MLX90614 DRIVER
7224 M:      Crt Mori <cmo@melexis.com>
7225 L:      linux-iio@vger.kernel.org
7226 W:      http://www.melexis.com
7227 S:      Supported
7228 F:      drivers/iio/temperature/mlx90614.c
7229
7230 MN88472 MEDIA DRIVER
7231 M:      Antti Palosaari <crope@iki.fi>
7232 L:      linux-media@vger.kernel.org
7233 W:      https://linuxtv.org
7234 W:      http://palosaari.fi/linux/
7235 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7236 T:      git git://linuxtv.org/anttip/media_tree.git
7237 S:      Maintained
7238 F:      drivers/staging/media/mn88472/
7239 F:      drivers/media/dvb-frontends/mn88472.h
7240
7241 MN88473 MEDIA DRIVER
7242 M:      Antti Palosaari <crope@iki.fi>
7243 L:      linux-media@vger.kernel.org
7244 W:      https://linuxtv.org
7245 W:      http://palosaari.fi/linux/
7246 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7247 T:      git git://linuxtv.org/anttip/media_tree.git
7248 S:      Maintained
7249 F:      drivers/staging/media/mn88473/
7250 F:      drivers/media/dvb-frontends/mn88473.h
7251
7252 MODULE SUPPORT
7253 M:      Rusty Russell <rusty@rustcorp.com.au>
7254 S:      Maintained
7255 F:      include/linux/module.h
7256 F:      kernel/module.c
7257
7258 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
7259 W:      http://popies.net/meye/
7260 S:      Orphan
7261 F:      Documentation/video4linux/meye.txt
7262 F:      drivers/media/pci/meye/
7263 F:      include/uapi/linux/meye.h
7264
7265 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
7266 M:      Jiri Slaby <jirislaby@gmail.com>
7267 S:      Maintained
7268 F:      Documentation/serial/moxa-smartio
7269 F:      drivers/tty/mxser.*
7270
7271 MR800 AVERMEDIA USB FM RADIO DRIVER
7272 M:      Alexey Klimov <klimov.linux@gmail.com>
7273 L:      linux-media@vger.kernel.org
7274 T:      git git://linuxtv.org/media_tree.git
7275 S:      Maintained
7276 F:      drivers/media/radio/radio-mr800.c
7277
7278 MRF24J40 IEEE 802.15.4 RADIO DRIVER
7279 M:      Alan Ott <alan@signal11.us>
7280 L:      linux-wpan@vger.kernel.org
7281 S:      Maintained
7282 F:      drivers/net/ieee802154/mrf24j40.c
7283 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
7284
7285 MSI LAPTOP SUPPORT
7286 M:      "Lee, Chun-Yi" <jlee@suse.com>
7287 L:      platform-driver-x86@vger.kernel.org
7288 S:      Maintained
7289 F:      drivers/platform/x86/msi-laptop.c
7290
7291 MSI WMI SUPPORT
7292 L:      platform-driver-x86@vger.kernel.org
7293 S:      Orphan
7294 F:      drivers/platform/x86/msi-wmi.c
7295
7296 MSI001 MEDIA DRIVER
7297 M:      Antti Palosaari <crope@iki.fi>
7298 L:      linux-media@vger.kernel.org
7299 W:      https://linuxtv.org
7300 W:      http://palosaari.fi/linux/
7301 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7302 T:      git git://linuxtv.org/anttip/media_tree.git
7303 S:      Maintained
7304 F:      drivers/media/tuners/msi001*
7305
7306 MSI2500 MEDIA DRIVER
7307 M:      Antti Palosaari <crope@iki.fi>
7308 L:      linux-media@vger.kernel.org
7309 W:      https://linuxtv.org
7310 W:      http://palosaari.fi/linux/
7311 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7312 T:      git git://linuxtv.org/anttip/media_tree.git
7313 S:      Maintained
7314 F:      drivers/media/usb/msi2500/
7315
7316 MSYSTEMS DISKONCHIP G3 MTD DRIVER
7317 M:      Robert Jarzmik <robert.jarzmik@free.fr>
7318 L:      linux-mtd@lists.infradead.org
7319 S:      Maintained
7320 F:      drivers/mtd/devices/docg3*
7321
7322 MT9M032 APTINA SENSOR DRIVER
7323 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7324 L:      linux-media@vger.kernel.org
7325 T:      git git://linuxtv.org/media_tree.git
7326 S:      Maintained
7327 F:      drivers/media/i2c/mt9m032.c
7328 F:      include/media/i2c/mt9m032.h
7329
7330 MT9P031 APTINA CAMERA SENSOR
7331 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7332 L:      linux-media@vger.kernel.org
7333 T:      git git://linuxtv.org/media_tree.git
7334 S:      Maintained
7335 F:      drivers/media/i2c/mt9p031.c
7336 F:      include/media/i2c/mt9p031.h
7337
7338 MT9T001 APTINA CAMERA SENSOR
7339 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7340 L:      linux-media@vger.kernel.org
7341 T:      git git://linuxtv.org/media_tree.git
7342 S:      Maintained
7343 F:      drivers/media/i2c/mt9t001.c
7344 F:      include/media/i2c/mt9t001.h
7345
7346 MT9V032 APTINA CAMERA SENSOR
7347 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7348 L:      linux-media@vger.kernel.org
7349 T:      git git://linuxtv.org/media_tree.git
7350 S:      Maintained
7351 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
7352 F:      drivers/media/i2c/mt9v032.c
7353 F:      include/media/i2c/mt9v032.h
7354
7355 MULTIFUNCTION DEVICES (MFD)
7356 M:      Lee Jones <lee.jones@linaro.org>
7357 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
7358 S:      Supported
7359 F:      drivers/mfd/
7360 F:      include/linux/mfd/
7361
7362 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
7363 M:      Ulf Hansson <ulf.hansson@linaro.org>
7364 L:      linux-mmc@vger.kernel.org
7365 T:      git git://git.linaro.org/people/ulf.hansson/mmc.git
7366 S:      Maintained
7367 F:      drivers/mmc/
7368 F:      include/linux/mmc/
7369 F:      include/uapi/linux/mmc/
7370
7371 MULTIMEDIA CARD (MMC) ETC. OVER SPI
7372 S:      Orphan
7373 F:      drivers/mmc/host/mmc_spi.c
7374 F:      include/linux/spi/mmc_spi.h
7375
7376 MULTISOUND SOUND DRIVER
7377 M:      Andrew Veliath <andrewtv@usa.net>
7378 S:      Maintained
7379 F:      Documentation/sound/oss/MultiSound
7380 F:      sound/oss/msnd*
7381
7382 MULTITECH MULTIPORT CARD (ISICOM)
7383 S:      Orphan
7384 F:      drivers/tty/isicom.c
7385 F:      include/linux/isicom.h
7386
7387 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
7388 M:      Bin Liu <b-liu@ti.com>
7389 L:      linux-usb@vger.kernel.org
7390 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7391 S:      Maintained
7392 F:      drivers/usb/musb/
7393
7394 MXL5007T MEDIA DRIVER
7395 M:      Michael Krufky <mkrufky@linuxtv.org>
7396 L:      linux-media@vger.kernel.org
7397 W:      https://linuxtv.org
7398 W:      http://github.com/mkrufky
7399 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7400 T:      git git://linuxtv.org/mkrufky/tuners.git
7401 S:      Maintained
7402 F:      drivers/media/tuners/mxl5007t.*
7403
7404 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
7405 M:      Hyong-Youb Kim <hykim@myri.com>
7406 L:      netdev@vger.kernel.org
7407 W:      https://www.myricom.com/support/downloads/myri10ge.html
7408 S:      Supported
7409 F:      drivers/net/ethernet/myricom/myri10ge/
7410
7411 NATSEMI ETHERNET DRIVER (DP8381x)
7412 S:      Orphan
7413 F:      drivers/net/ethernet/natsemi/natsemi.c
7414
7415 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
7416 M:      Daniel Mack <zonque@gmail.com>
7417 S:      Maintained
7418 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7419 W:      http://www.native-instruments.com
7420 F:      sound/usb/caiaq/
7421
7422 NCP FILESYSTEM
7423 M:      Petr Vandrovec <petr@vandrovec.name>
7424 S:      Odd Fixes
7425 F:      fs/ncpfs/
7426
7427 NCR 5380 SCSI DRIVERS
7428 M:      Finn Thain <fthain@telegraphics.com.au>
7429 M:      Michael Schmitz <schmitzmic@gmail.com>
7430 L:      linux-scsi@vger.kernel.org
7431 S:      Maintained
7432 F:      Documentation/scsi/g_NCR5380.txt
7433 F:      drivers/scsi/NCR5380.*
7434 F:      drivers/scsi/arm/cumana_1.c
7435 F:      drivers/scsi/arm/oak.c
7436 F:      drivers/scsi/atari_NCR5380.c
7437 F:      drivers/scsi/atari_scsi.*
7438 F:      drivers/scsi/dmx3191d.c
7439 F:      drivers/scsi/dtc.*
7440 F:      drivers/scsi/g_NCR5380.*
7441 F:      drivers/scsi/g_NCR5380_mmio.c
7442 F:      drivers/scsi/mac_scsi.*
7443 F:      drivers/scsi/pas16.*
7444 F:      drivers/scsi/sun3_scsi.*
7445 F:      drivers/scsi/sun3_scsi_vme.c
7446 F:      drivers/scsi/t128.*
7447
7448 NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
7449 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
7450 L:      linux-scsi@vger.kernel.org
7451 S:      Maintained
7452 F:      drivers/scsi/NCR_D700.*
7453
7454 NCT6775 HARDWARE MONITOR DRIVER
7455 M:      Guenter Roeck <linux@roeck-us.net>
7456 L:      lm-sensors@lm-sensors.org
7457 S:      Maintained
7458 F:      Documentation/hwmon/nct6775
7459 F:      drivers/hwmon/nct6775.c
7460
7461 NETEFFECT IWARP RNIC DRIVER (IW_NES)
7462 M:      Faisal Latif <faisal.latif@intel.com>
7463 L:      linux-rdma@vger.kernel.org
7464 W:      http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
7465 S:      Supported
7466 F:      drivers/infiniband/hw/nes/
7467
7468 NETEM NETWORK EMULATOR
7469 M:      Stephen Hemminger <stephen@networkplumber.org>
7470 L:      netem@lists.linux-foundation.org
7471 S:      Maintained
7472 F:      net/sched/sch_netem.c
7473
7474 NETERION 10GbE DRIVERS (s2io/vxge)
7475 M:      Jon Mason <jdmason@kudzu.us>
7476 L:      netdev@vger.kernel.org
7477 S:      Supported
7478 F:      Documentation/networking/s2io.txt
7479 F:      Documentation/networking/vxge.txt
7480 F:      drivers/net/ethernet/neterion/
7481
7482 NETFILTER ({IP,IP6,ARP,EB,NF}TABLES)
7483 M:      Pablo Neira Ayuso <pablo@netfilter.org>
7484 M:      Patrick McHardy <kaber@trash.net>
7485 M:      Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
7486 L:      netfilter-devel@vger.kernel.org
7487 L:      coreteam@netfilter.org
7488 W:      http://www.netfilter.org/
7489 W:      http://www.iptables.org/
7490 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
7491 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
7492 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
7493 S:      Supported
7494 F:      include/linux/netfilter*
7495 F:      include/linux/netfilter/
7496 F:      include/net/netfilter/
7497 F:      include/uapi/linux/netfilter*
7498 F:      include/uapi/linux/netfilter/
7499 F:      net/*/netfilter.c
7500 F:      net/*/netfilter/
7501 F:      net/netfilter/
7502 F:      net/bridge/br_netfilter*.c
7503
7504 NETLABEL
7505 M:      Paul Moore <paul@paul-moore.com>
7506 W:      http://netlabel.sf.net
7507 L:      netdev@vger.kernel.org
7508 S:      Maintained
7509 F:      Documentation/netlabel/
7510 F:      include/net/netlabel.h
7511 F:      net/netlabel/
7512
7513 NETROM NETWORK LAYER
7514 M:      Ralf Baechle <ralf@linux-mips.org>
7515 L:      linux-hams@vger.kernel.org
7516 W:      http://www.linux-ax25.org/
7517 S:      Maintained
7518 F:      include/net/netrom.h
7519 F:      include/uapi/linux/netrom.h
7520 F:      net/netrom/
7521
7522 NETRONOME ETHERNET DRIVERS
7523 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
7524 M:      Rolf Neugebauer <rolf.neugebauer@netronome.com>
7525 L:      oss-drivers@netronome.com
7526 S:      Maintained
7527 F:      drivers/net/ethernet/netronome/
7528
7529 NETWORK BLOCK DEVICE (NBD)
7530 M:      Markus Pargmann <mpa@pengutronix.de>
7531 S:      Maintained
7532 L:      nbd-general@lists.sourceforge.net
7533 T:      git git://git.pengutronix.de/git/mpa/linux-nbd.git
7534 F:      Documentation/blockdev/nbd.txt
7535 F:      drivers/block/nbd.c
7536 F:      include/uapi/linux/nbd.h
7537
7538 NETWORK DROP MONITOR
7539 M:      Neil Horman <nhorman@tuxdriver.com>
7540 L:      netdev@vger.kernel.org
7541 S:      Maintained
7542 W:      https://fedorahosted.org/dropwatch/
7543 F:      net/core/drop_monitor.c
7544
7545 NETWORKING [GENERAL]
7546 M:      "David S. Miller" <davem@davemloft.net>
7547 L:      netdev@vger.kernel.org
7548 W:      http://www.linuxfoundation.org/en/Net
7549 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7550 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7551 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7552 S:      Maintained
7553 F:      net/
7554 F:      include/net/
7555 F:      include/linux/in.h
7556 F:      include/linux/net.h
7557 F:      include/linux/netdevice.h
7558 F:      include/uapi/linux/in.h
7559 F:      include/uapi/linux/net.h
7560 F:      include/uapi/linux/netdevice.h
7561 F:      include/uapi/linux/net_namespace.h
7562 F:      tools/net/
7563 F:      tools/testing/selftests/net/
7564 F:      lib/random32.c
7565 F:      lib/test_bpf.c
7566
7567 NETWORKING [IPv4/IPv6]
7568 M:      "David S. Miller" <davem@davemloft.net>
7569 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
7570 M:      James Morris <jmorris@namei.org>
7571 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
7572 M:      Patrick McHardy <kaber@trash.net>
7573 L:      netdev@vger.kernel.org
7574 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7575 S:      Maintained
7576 F:      net/ipv4/
7577 F:      net/ipv6/
7578 F:      include/net/ip*
7579 F:      arch/x86/net/*
7580
7581 NETWORKING [IPSEC]
7582 M:      Steffen Klassert <steffen.klassert@secunet.com>
7583 M:      Herbert Xu <herbert@gondor.apana.org.au>
7584 M:      "David S. Miller" <davem@davemloft.net>
7585 L:      netdev@vger.kernel.org
7586 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
7587 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
7588 S:      Maintained
7589 F:      net/core/flow.c
7590 F:      net/xfrm/
7591 F:      net/key/
7592 F:      net/ipv4/xfrm*
7593 F:      net/ipv4/esp4.c
7594 F:      net/ipv4/ah4.c
7595 F:      net/ipv4/ipcomp.c
7596 F:      net/ipv4/ip_vti.c
7597 F:      net/ipv6/xfrm*
7598 F:      net/ipv6/esp6.c
7599 F:      net/ipv6/ah6.c
7600 F:      net/ipv6/ipcomp6.c
7601 F:      net/ipv6/ip6_vti.c
7602 F:      include/uapi/linux/xfrm.h
7603 F:      include/net/xfrm.h
7604
7605 NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
7606 M:      Paul Moore <paul@paul-moore.com>
7607 L:      netdev@vger.kernel.org
7608 S:      Maintained
7609
7610 NETWORKING [WIRELESS]
7611 L:      linux-wireless@vger.kernel.org
7612 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7613
7614 NETWORKING DRIVERS
7615 L:      netdev@vger.kernel.org
7616 W:      http://www.linuxfoundation.org/en/Net
7617 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7618 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7619 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7620 S:      Odd Fixes
7621 F:      drivers/net/
7622 F:      include/linux/if_*
7623 F:      include/linux/netdevice.h
7624 F:      include/linux/etherdevice.h
7625 F:      include/linux/fcdevice.h
7626 F:      include/linux/fddidevice.h
7627 F:      include/linux/hippidevice.h
7628 F:      include/linux/inetdevice.h
7629 F:      include/uapi/linux/if_*
7630 F:      include/uapi/linux/netdevice.h
7631
7632 NETWORKING DRIVERS (WIRELESS)
7633 M:      Kalle Valo <kvalo@codeaurora.org>
7634 L:      linux-wireless@vger.kernel.org
7635 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7636 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
7637 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
7638 S:      Maintained
7639 F:      drivers/net/wireless/
7640
7641 NETXEN (1/10) GbE SUPPORT
7642 M:      Manish Chopra <manish.chopra@qlogic.com>
7643 M:      Sony Chacko <sony.chacko@qlogic.com>
7644 M:      Rajesh Borundia <rajesh.borundia@qlogic.com>
7645 L:      netdev@vger.kernel.org
7646 W:      http://www.qlogic.com
7647 S:      Supported
7648 F:      drivers/net/ethernet/qlogic/netxen/
7649
7650 NFC SUBSYSTEM
7651 M:      Lauro Ramos Venancio <lauro.venancio@openbossa.org>
7652 M:      Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
7653 M:      Samuel Ortiz <sameo@linux.intel.com>
7654 L:      linux-wireless@vger.kernel.org
7655 L:      linux-nfc@lists.01.org (subscribers-only)
7656 S:      Supported
7657 F:      net/nfc/
7658 F:      include/net/nfc/
7659 F:      include/uapi/linux/nfc.h
7660 F:      drivers/nfc/
7661 F:      include/linux/platform_data/microread.h
7662 F:      include/linux/platform_data/nfcmrvl.h
7663 F:      include/linux/platform_data/nxp-nci.h
7664 F:      include/linux/platform_data/pn544.h
7665 F:      include/linux/platform_data/st21nfca.h
7666 F:      include/linux/platform_data/st-nci.h
7667 F:      Documentation/devicetree/bindings/net/nfc/
7668
7669 NFS, SUNRPC, AND LOCKD CLIENTS
7670 M:      Trond Myklebust <trond.myklebust@primarydata.com>
7671 M:      Anna Schumaker <anna.schumaker@netapp.com>
7672 L:      linux-nfs@vger.kernel.org
7673 W:      http://client.linux-nfs.org
7674 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
7675 S:      Maintained
7676 F:      fs/lockd/
7677 F:      fs/nfs/
7678 F:      fs/nfs_common/
7679 F:      net/sunrpc/
7680 F:      include/linux/lockd/
7681 F:      include/linux/nfs*
7682 F:      include/linux/sunrpc/
7683 F:      include/uapi/linux/nfs*
7684 F:      include/uapi/linux/sunrpc/
7685
7686 NILFS2 FILESYSTEM
7687 M:      Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
7688 L:      linux-nilfs@vger.kernel.org
7689 W:      http://nilfs.sourceforge.net/
7690 T:      git git://github.com/konis/nilfs2.git
7691 S:      Supported
7692 F:      Documentation/filesystems/nilfs2.txt
7693 F:      fs/nilfs2/
7694 F:      include/linux/nilfs2_fs.h
7695 F:      include/trace/events/nilfs2.h
7696
7697 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
7698 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7699 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7700 S:      Maintained
7701 F:      Documentation/scsi/NinjaSCSI.txt
7702 F:      drivers/scsi/pcmcia/nsp_*
7703
7704 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
7705 M:      GOTO Masanori <gotom@debian.or.jp>
7706 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7707 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7708 S:      Maintained
7709 F:      Documentation/scsi/NinjaSCSI.txt
7710 F:      drivers/scsi/nsp32*
7711
7712 NIOS2 ARCHITECTURE
7713 M:      Ley Foon Tan <lftan@altera.com>
7714 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
7715 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
7716 S:      Maintained
7717 F:      arch/nios2/
7718
7719 NOKIA N900 POWER SUPPLY DRIVERS
7720 R:      Pali RohĂ¡r <pali.rohar@gmail.com>
7721 F:      include/linux/power/bq2415x_charger.h
7722 F:      include/linux/power/bq27xxx_battery.h
7723 F:      include/linux/power/isp1704_charger.h
7724 F:      drivers/power/bq2415x_charger.c
7725 F:      drivers/power/bq27xxx_battery.c
7726 F:      drivers/power/bq27xxx_battery_i2c.c
7727 F:      drivers/power/isp1704_charger.c
7728 F:      drivers/power/rx51_battery.c
7729
7730 NTB DRIVER CORE
7731 M:      Jon Mason <jdmason@kudzu.us>
7732 M:      Dave Jiang <dave.jiang@intel.com>
7733 M:      Allen Hubbe <Allen.Hubbe@emc.com>
7734 L:      linux-ntb@googlegroups.com
7735 S:      Supported
7736 W:      https://github.com/jonmason/ntb/wiki
7737 T:      git git://github.com/jonmason/ntb.git
7738 F:      drivers/ntb/
7739 F:      drivers/net/ntb_netdev.c
7740 F:      include/linux/ntb.h
7741 F:      include/linux/ntb_transport.h
7742
7743 NTB INTEL DRIVER
7744 M:      Jon Mason <jdmason@kudzu.us>
7745 M:      Dave Jiang <dave.jiang@intel.com>
7746 L:      linux-ntb@googlegroups.com
7747 S:      Supported
7748 W:      https://github.com/jonmason/ntb/wiki
7749 T:      git git://github.com/jonmason/ntb.git
7750 F:      drivers/ntb/hw/intel/
7751
7752 NTB AMD DRIVER
7753 M:      Xiangliang Yu <Xiangliang.Yu@amd.com>
7754 L:      linux-ntb@googlegroups.com
7755 S:      Supported
7756 F:      drivers/ntb/hw/amd/
7757
7758 NTFS FILESYSTEM
7759 M:      Anton Altaparmakov <anton@tuxera.com>
7760 L:      linux-ntfs-dev@lists.sourceforge.net
7761 W:      http://www.tuxera.com/
7762 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
7763 S:      Supported
7764 F:      Documentation/filesystems/ntfs.txt
7765 F:      fs/ntfs/
7766
7767 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
7768 M:      Antonino Daplas <adaplas@gmail.com>
7769 L:      linux-fbdev@vger.kernel.org
7770 S:      Maintained
7771 F:      drivers/video/fbdev/riva/
7772 F:      drivers/video/fbdev/nvidia/
7773
7774 NVM EXPRESS DRIVER
7775 M:      Keith Busch <keith.busch@intel.com>
7776 M:      Jens Axboe <axboe@fb.com>
7777 L:      linux-nvme@lists.infradead.org
7778 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
7779 W:      https://kernel.googlesource.com/pub/scm/linux/kernel/git/axboe/linux-block/
7780 S:      Supported
7781 F:      drivers/nvme/host/
7782 F:      include/linux/nvme.h
7783
7784 NVMEM FRAMEWORK
7785 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
7786 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
7787 S:      Maintained
7788 F:      drivers/nvmem/
7789 F:      Documentation/devicetree/bindings/nvmem/
7790 F:      include/linux/nvmem-consumer.h
7791 F:      include/linux/nvmem-provider.h
7792
7793 NXP-NCI NFC DRIVER
7794 M:      ClĂ©ment Perrochaud <clement.perrochaud@effinnov.com>
7795 R:      Charles Gorand <charles.gorand@effinnov.com>
7796 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
7797 S:      Supported
7798 F:      drivers/nfc/nxp-nci
7799
7800 NXP TDA998X DRM DRIVER
7801 M:      Russell King <rmk+kernel@arm.linux.org.uk>
7802 S:      Supported
7803 F:      drivers/gpu/drm/i2c/tda998x_drv.c
7804 F:      include/drm/i2c/tda998x.h
7805
7806 NXP TFA9879 DRIVER
7807 M:      Peter Rosin <peda@axentia.se>
7808 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7809 S:      Maintained
7810 F:      sound/soc/codecs/tfa9879*
7811
7812 OMAP SUPPORT
7813 M:      Tony Lindgren <tony@atomide.com>
7814 L:      linux-omap@vger.kernel.org
7815 W:      http://www.muru.com/linux/omap/
7816 W:      http://linux.omap.com/
7817 Q:      http://patchwork.kernel.org/project/linux-omap/list/
7818 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
7819 S:      Maintained
7820 F:      arch/arm/*omap*/
7821 F:      arch/arm/configs/omap1_defconfig
7822 F:      arch/arm/configs/omap2plus_defconfig
7823 F:      drivers/i2c/busses/i2c-omap.c
7824 F:      drivers/irqchip/irq-omap-intc.c
7825 F:      drivers/mfd/*omap*.c
7826 F:      drivers/mfd/menelaus.c
7827 F:      drivers/mfd/palmas.c
7828 F:      drivers/mfd/tps65217.c
7829 F:      drivers/mfd/tps65218.c
7830 F:      drivers/mfd/tps65910.c
7831 F:      drivers/mfd/twl-core.[ch]
7832 F:      drivers/mfd/twl4030*.c
7833 F:      drivers/mfd/twl6030*.c
7834 F:      drivers/mfd/twl6040*.c
7835 F:      drivers/regulator/palmas-regulator*.c
7836 F:      drivers/regulator/pbias-regulator.c
7837 F:      drivers/regulator/tps65217-regulator.c
7838 F:      drivers/regulator/tps65218-regulator.c
7839 F:      drivers/regulator/tps65910-regulator.c
7840 F:      drivers/regulator/twl-regulator.c
7841 F:      include/linux/i2c-omap.h
7842
7843 OMAP DEVICE TREE SUPPORT
7844 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7845 M:      Tony Lindgren <tony@atomide.com>
7846 L:      linux-omap@vger.kernel.org
7847 L:      devicetree@vger.kernel.org
7848 S:      Maintained
7849 F:      arch/arm/boot/dts/*omap*
7850 F:      arch/arm/boot/dts/*am3*
7851 F:      arch/arm/boot/dts/*am4*
7852 F:      arch/arm/boot/dts/*am5*
7853 F:      arch/arm/boot/dts/*dra7*
7854
7855 OMAP CLOCK FRAMEWORK SUPPORT
7856 M:      Paul Walmsley <paul@pwsan.com>
7857 L:      linux-omap@vger.kernel.org
7858 S:      Maintained
7859 F:      arch/arm/*omap*/*clock*
7860
7861 OMAP POWER MANAGEMENT SUPPORT
7862 M:      Kevin Hilman <khilman@deeprootsystems.com>
7863 L:      linux-omap@vger.kernel.org
7864 S:      Maintained
7865 F:      arch/arm/*omap*/*pm*
7866 F:      drivers/cpufreq/omap-cpufreq.c
7867
7868 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
7869 M:      Rajendra Nayak <rnayak@ti.com>
7870 M:      Paul Walmsley <paul@pwsan.com>
7871 L:      linux-omap@vger.kernel.org
7872 S:      Maintained
7873 F:      arch/arm/mach-omap2/prm*
7874
7875 OMAP AUDIO SUPPORT
7876 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
7877 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
7878 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7879 L:      linux-omap@vger.kernel.org
7880 S:      Maintained
7881 F:      sound/soc/omap/
7882
7883 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
7884 M:      Roger Quadros <rogerq@ti.com>
7885 M:      Tony Lindgren <tony@atomide.com>
7886 L:      linux-omap@vger.kernel.org
7887 S:      Maintained
7888 F:      drivers/memory/omap-gpmc.c
7889 F:      arch/arm/mach-omap2/*gpmc*
7890
7891 OMAP FRAMEBUFFER SUPPORT
7892 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
7893 L:      linux-fbdev@vger.kernel.org
7894 L:      linux-omap@vger.kernel.org
7895 S:      Maintained
7896 F:      drivers/video/fbdev/omap/
7897
7898 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
7899 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
7900 L:      linux-omap@vger.kernel.org
7901 L:      linux-fbdev@vger.kernel.org
7902 S:      Maintained
7903 F:      drivers/video/fbdev/omap2/
7904 F:      Documentation/arm/OMAP/DSS
7905
7906 OMAP HARDWARE SPINLOCK SUPPORT
7907 M:      Ohad Ben-Cohen <ohad@wizery.com>
7908 L:      linux-omap@vger.kernel.org
7909 S:      Maintained
7910 F:      drivers/hwspinlock/omap_hwspinlock.c
7911
7912 OMAP MMC SUPPORT
7913 M:      Jarkko Lavinen <jarkko.lavinen@nokia.com>
7914 L:      linux-omap@vger.kernel.org
7915 S:      Maintained
7916 F:      drivers/mmc/host/omap.c
7917
7918 OMAP HS MMC SUPPORT
7919 L:      linux-mmc@vger.kernel.org
7920 L:      linux-omap@vger.kernel.org
7921 S:      Orphan
7922 F:      drivers/mmc/host/omap_hsmmc.c
7923
7924 OMAP RANDOM NUMBER GENERATOR SUPPORT
7925 M:      Deepak Saxena <dsaxena@plexity.net>
7926 S:      Maintained
7927 F:      drivers/char/hw_random/omap-rng.c
7928
7929 OMAP HWMOD SUPPORT
7930 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7931 M:      Paul Walmsley <paul@pwsan.com>
7932 L:      linux-omap@vger.kernel.org
7933 S:      Maintained
7934 F:      arch/arm/mach-omap2/omap_hwmod.*
7935
7936 OMAP HWMOD DATA
7937 M:      Paul Walmsley <paul@pwsan.com>
7938 L:      linux-omap@vger.kernel.org
7939 S:      Maintained
7940 F:      arch/arm/mach-omap2/omap_hwmod*data*
7941
7942 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
7943 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7944 L:      linux-omap@vger.kernel.org
7945 S:      Maintained
7946 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
7947
7948 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
7949 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7950 L:      linux-media@vger.kernel.org
7951 S:      Maintained
7952 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
7953 F:      drivers/media/platform/omap3isp/
7954 F:      drivers/staging/media/omap4iss/
7955
7956 OMAP USB SUPPORT
7957 L:      linux-usb@vger.kernel.org
7958 L:      linux-omap@vger.kernel.org
7959 S:      Orphan
7960 F:      drivers/usb/*/*omap*
7961 F:      arch/arm/*omap*/usb*
7962
7963 OMAP GPIO DRIVER
7964 M:      Grygorii Strashko <grygorii.strashko@ti.com>
7965 M:      Santosh Shilimkar <ssantosh@kernel.org>
7966 M:      Kevin Hilman <khilman@deeprootsystems.com>
7967 L:      linux-omap@vger.kernel.org
7968 S:      Maintained
7969 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
7970 F:      drivers/gpio/gpio-omap.c
7971
7972 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
7973 M:      Mark Jackson <mpfj@newflow.co.uk>
7974 L:      linux-omap@vger.kernel.org
7975 S:      Maintained
7976 F:      arch/arm/boot/dts/am335x-nano.dts
7977
7978 OMFS FILESYSTEM
7979 M:      Bob Copeland <me@bobcopeland.com>
7980 L:      linux-karma-devel@lists.sourceforge.net
7981 S:      Maintained
7982 F:      Documentation/filesystems/omfs.txt
7983 F:      fs/omfs/
7984
7985 OMNIKEY CARDMAN 4000 DRIVER
7986 M:      Harald Welte <laforge@gnumonks.org>
7987 S:      Maintained
7988 F:      drivers/char/pcmcia/cm4000_cs.c
7989 F:      include/linux/cm4000_cs.h
7990 F:      include/uapi/linux/cm4000_cs.h
7991
7992 OMNIKEY CARDMAN 4040 DRIVER
7993 M:      Harald Welte <laforge@gnumonks.org>
7994 S:      Maintained
7995 F:      drivers/char/pcmcia/cm4040_cs.*
7996
7997 OMNIVISION OV7670 SENSOR DRIVER
7998 M:      Jonathan Corbet <corbet@lwn.net>
7999 L:      linux-media@vger.kernel.org
8000 T:      git git://linuxtv.org/media_tree.git
8001 S:      Maintained
8002 F:      drivers/media/i2c/ov7670.c
8003
8004 ONENAND FLASH DRIVER
8005 M:      Kyungmin Park <kyungmin.park@samsung.com>
8006 L:      linux-mtd@lists.infradead.org
8007 S:      Maintained
8008 F:      drivers/mtd/onenand/
8009 F:      include/linux/mtd/onenand*.h
8010
8011 ONSTREAM SCSI TAPE DRIVER
8012 M:      Willem Riede <osst@riede.org>
8013 L:      osst-users@lists.sourceforge.net
8014 L:      linux-scsi@vger.kernel.org
8015 S:      Maintained
8016 F:      Documentation/scsi/osst.txt
8017 F:      drivers/scsi/osst.*
8018 F:      drivers/scsi/osst_*.h
8019 F:      drivers/scsi/st.h
8020
8021 OPENCORES I2C BUS DRIVER
8022 M:      Peter Korsgaard <jacmet@sunsite.dk>
8023 L:      linux-i2c@vger.kernel.org
8024 S:      Maintained
8025 F:      Documentation/i2c/busses/i2c-ocores
8026 F:      drivers/i2c/busses/i2c-ocores.c
8027
8028 OPEN FIRMWARE AND FLATTENED DEVICE TREE
8029 M:      Rob Herring <robh+dt@kernel.org>
8030 M:      Frank Rowand <frowand.list@gmail.com>
8031 M:      Grant Likely <grant.likely@linaro.org>
8032 L:      devicetree@vger.kernel.org
8033 W:      http://www.devicetree.org/
8034 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/glikely/linux.git
8035 S:      Maintained
8036 F:      drivers/of/
8037 F:      include/linux/of*.h
8038 F:      scripts/dtc/
8039
8040 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
8041 M:      Rob Herring <robh+dt@kernel.org>
8042 M:      Pawel Moll <pawel.moll@arm.com>
8043 M:      Mark Rutland <mark.rutland@arm.com>
8044 M:      Ian Campbell <ijc+devicetree@hellion.org.uk>
8045 M:      Kumar Gala <galak@codeaurora.org>
8046 L:      devicetree@vger.kernel.org
8047 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
8048 S:      Maintained
8049 F:      Documentation/devicetree/
8050 F:      arch/*/boot/dts/
8051 F:      include/dt-bindings/
8052
8053 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
8054 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
8055 L:      devicetree@vger.kernel.org
8056 S:      Maintained
8057 F:      Documentation/devicetree/dynamic-resolution-notes.txt
8058 F:      Documentation/devicetree/overlay-notes.txt
8059 F:      drivers/of/overlay.c
8060 F:      drivers/of/resolver.c
8061
8062 OPENRISC ARCHITECTURE
8063 M:      Jonas Bonn <jonas@southpole.se>
8064 W:      http://openrisc.net
8065 L:      linux@lists.openrisc.net (moderated for non-subscribers)
8066 S:      Maintained
8067 T:      git git://openrisc.net/~jonas/linux
8068 F:      arch/openrisc/
8069
8070 OPENVSWITCH
8071 M:      Pravin Shelar <pshelar@nicira.com>
8072 L:      netdev@vger.kernel.org
8073 L:      dev@openvswitch.org
8074 W:      http://openvswitch.org
8075 S:      Maintained
8076 F:      net/openvswitch/
8077 F:      include/uapi/linux/openvswitch.h
8078
8079 OPERATING PERFORMANCE POINTS (OPP)
8080 M:      Viresh Kumar <vireshk@kernel.org>
8081 M:      Nishanth Menon <nm@ti.com>
8082 M:      Stephen Boyd <sboyd@codeaurora.org>
8083 L:      linux-pm@vger.kernel.org
8084 S:      Maintained
8085 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
8086 F:      drivers/base/power/opp/
8087 F:      include/linux/pm_opp.h
8088 F:      Documentation/power/opp.txt
8089 F:      Documentation/devicetree/bindings/opp/
8090
8091 OPL4 DRIVER
8092 M:      Clemens Ladisch <clemens@ladisch.de>
8093 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8094 T:      git git://git.alsa-project.org/alsa-kernel.git
8095 S:      Maintained
8096 F:      sound/drivers/opl4/
8097
8098 OPROFILE
8099 M:      Robert Richter <rric@kernel.org>
8100 L:      oprofile-list@lists.sf.net
8101 S:      Maintained
8102 F:      arch/*/include/asm/oprofile*.h
8103 F:      arch/*/oprofile/
8104 F:      drivers/oprofile/
8105 F:      include/linux/oprofile.h
8106
8107 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
8108 M:      Mark Fasheh <mfasheh@suse.com>
8109 M:      Joel Becker <jlbec@evilplan.org>
8110 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
8111 W:      http://ocfs2.wiki.kernel.org
8112 S:      Supported
8113 F:      Documentation/filesystems/ocfs2.txt
8114 F:      Documentation/filesystems/dlmfs.txt
8115 F:      fs/ocfs2/
8116
8117 ORINOCO DRIVER
8118 L:      linux-wireless@vger.kernel.org
8119 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
8120 W:      http://www.nongnu.org/orinoco/
8121 S:      Orphan
8122 F:      drivers/net/wireless/intersil/orinoco/
8123
8124 OSD LIBRARY and FILESYSTEM
8125 M:      Boaz Harrosh <ooo@electrozaur.com>
8126 M:      Benny Halevy <bhalevy@primarydata.com>
8127 L:      osd-dev@open-osd.org
8128 W:      http://open-osd.org
8129 T:      git git://git.open-osd.org/open-osd.git
8130 S:      Maintained
8131 F:      drivers/scsi/osd/
8132 F:      include/scsi/osd_*
8133 F:      fs/exofs/
8134
8135 OVERLAY FILESYSTEM
8136 M:      Miklos Szeredi <miklos@szeredi.hu>
8137 L:      linux-unionfs@vger.kernel.org
8138 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
8139 S:      Supported
8140 F:      fs/overlayfs/
8141 F:      Documentation/filesystems/overlayfs.txt
8142
8143 P54 WIRELESS DRIVER
8144 M:      Christian Lamparter <chunkeey@googlemail.com>
8145 L:      linux-wireless@vger.kernel.org
8146 W:      http://wireless.kernel.org/en/users/Drivers/p54
8147 S:      Maintained
8148 F:      drivers/net/wireless/intersil/p54/
8149
8150 PA SEMI ETHERNET DRIVER
8151 M:      Olof Johansson <olof@lixom.net>
8152 L:      netdev@vger.kernel.org
8153 S:      Maintained
8154 F:      drivers/net/ethernet/pasemi/*
8155
8156 PA SEMI SMBUS DRIVER
8157 M:      Olof Johansson <olof@lixom.net>
8158 L:      linux-i2c@vger.kernel.org
8159 S:      Maintained
8160 F:      drivers/i2c/busses/i2c-pasemi.c
8161
8162 PADATA PARALLEL EXECUTION MECHANISM
8163 M:      Steffen Klassert <steffen.klassert@secunet.com>
8164 L:      linux-crypto@vger.kernel.org
8165 S:      Maintained
8166 F:      kernel/padata.c
8167 F:      include/linux/padata.h
8168 F:      Documentation/padata.txt
8169
8170 PANASONIC LAPTOP ACPI EXTRAS DRIVER
8171 M:      Harald Welte <laforge@gnumonks.org>
8172 L:      platform-driver-x86@vger.kernel.org
8173 S:      Maintained
8174 F:      drivers/platform/x86/panasonic-laptop.c
8175
8176 PANASONIC MN10300/AM33/AM34 PORT
8177 M:      David Howells <dhowells@redhat.com>
8178 M:      Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
8179 L:      linux-am33-list@redhat.com (moderated for non-subscribers)
8180 W:      ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
8181 S:      Maintained
8182 F:      Documentation/mn10300/
8183 F:      arch/mn10300/
8184
8185 PARALLEL PORT SUBSYSTEM
8186 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
8187 M:      Sudip Mukherjee <sudip@vectorindia.org>
8188 L:      linux-parport@lists.infradead.org (subscribers-only)
8189 S:      Maintained
8190 F:      drivers/parport/
8191 F:      include/linux/parport*.h
8192 F:      drivers/char/ppdev.c
8193 F:      include/uapi/linux/ppdev.h
8194 F:      Documentation/parport*.txt
8195
8196 PARAVIRT_OPS INTERFACE
8197 M:      Jeremy Fitzhardinge <jeremy@goop.org>
8198 M:      Chris Wright <chrisw@sous-sol.org>
8199 M:      Alok Kataria <akataria@vmware.com>
8200 M:      Rusty Russell <rusty@rustcorp.com.au>
8201 L:      virtualization@lists.linux-foundation.org
8202 S:      Supported
8203 F:      Documentation/virtual/paravirt_ops.txt
8204 F:      arch/*/kernel/paravirt*
8205 F:      arch/*/include/asm/paravirt.h
8206
8207 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
8208 M:      Tim Waugh <tim@cyberelk.net>
8209 L:      linux-parport@lists.infradead.org (subscribers-only)
8210 S:      Maintained
8211 F:      Documentation/blockdev/paride.txt
8212 F:      drivers/block/paride/
8213
8214 PARISC ARCHITECTURE
8215 M:      "James E.J. Bottomley" <jejb@parisc-linux.org>
8216 M:      Helge Deller <deller@gmx.de>
8217 L:      linux-parisc@vger.kernel.org
8218 W:      http://www.parisc-linux.org/
8219 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
8220 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
8221 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
8222 S:      Maintained
8223 F:      arch/parisc/
8224 F:      Documentation/parisc/
8225 F:      drivers/parisc/
8226 F:      drivers/char/agp/parisc-agp.c
8227 F:      drivers/input/serio/gscps2.c
8228 F:      drivers/parport/parport_gsc.*
8229 F:      drivers/tty/serial/8250/8250_gsc.c
8230 F:      drivers/video/fbdev/sti*
8231 F:      drivers/video/console/sti*
8232 F:      drivers/video/logo/logo_parisc*
8233
8234 PC87360 HARDWARE MONITORING DRIVER
8235 M:      Jim Cromie <jim.cromie@gmail.com>
8236 L:      lm-sensors@lm-sensors.org
8237 S:      Maintained
8238 F:      Documentation/hwmon/pc87360
8239 F:      drivers/hwmon/pc87360.c
8240
8241 PC8736x GPIO DRIVER
8242 M:      Jim Cromie <jim.cromie@gmail.com>
8243 S:      Maintained
8244 F:      drivers/char/pc8736x_gpio.c
8245
8246 PC87427 HARDWARE MONITORING DRIVER
8247 M:      Jean Delvare <jdelvare@suse.com>
8248 L:      lm-sensors@lm-sensors.org
8249 S:      Maintained
8250 F:      Documentation/hwmon/pc87427
8251 F:      drivers/hwmon/pc87427.c
8252
8253 PCA9532 LED DRIVER
8254 M:      Riku Voipio <riku.voipio@iki.fi>
8255 S:      Maintained
8256 F:      drivers/leds/leds-pca9532.c
8257 F:      include/linux/leds-pca9532.h
8258
8259 PCA9541 I2C BUS MASTER SELECTOR DRIVER
8260 M:      Guenter Roeck <linux@roeck-us.net>
8261 L:      linux-i2c@vger.kernel.org
8262 S:      Maintained
8263 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
8264
8265 PCDP - PRIMARY CONSOLE AND DEBUG PORT
8266 M:      Khalid Aziz <khalid@gonehiking.org>
8267 S:      Maintained
8268 F:      drivers/firmware/pcdp.*
8269
8270 PCI ERROR RECOVERY
8271 M:      Linas Vepstas <linasvepstas@gmail.com>
8272 L:      linux-pci@vger.kernel.org
8273 S:      Supported
8274 F:      Documentation/PCI/pci-error-recovery.txt
8275
8276 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
8277 M:      Russell Currey <ruscur@russell.cc>
8278 L:      linuxppc-dev@lists.ozlabs.org
8279 S:      Supported
8280 F:      Documentation/powerpc/eeh-pci-error-recovery.txt
8281 F:      arch/powerpc/kernel/eeh*.c
8282 F:      arch/powerpc/platforms/*/eeh*.c
8283 F:      arch/powerpc/include/*/eeh*.h
8284
8285 PCI SUBSYSTEM
8286 M:      Bjorn Helgaas <bhelgaas@google.com>
8287 L:      linux-pci@vger.kernel.org
8288 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
8289 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
8290 S:      Supported
8291 F:      Documentation/PCI/
8292 F:      drivers/pci/
8293 F:      include/linux/pci*
8294 F:      arch/x86/pci/
8295 F:      arch/x86/kernel/quirks.c
8296
8297 PCI DRIVER FOR ALTERA PCIE IP
8298 M:      Ley Foon Tan <lftan@altera.com>
8299 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
8300 L:      linux-pci@vger.kernel.org
8301 S:      Supported
8302 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
8303 F:      drivers/pci/host/pcie-altera.c
8304
8305 PCI DRIVER FOR ARM VERSATILE PLATFORM
8306 M:      Rob Herring <robh@kernel.org>
8307 L:      linux-pci@vger.kernel.org
8308 L:      linux-arm-kernel@lists.infradead.org
8309 S:      Maintained
8310 F:      Documentation/devicetree/bindings/pci/versatile.txt
8311 F:      drivers/pci/host/pci-versatile.c
8312
8313 PCI DRIVER FOR APPLIEDMICRO XGENE
8314 M:      Tanmay Inamdar <tinamdar@apm.com>
8315 L:      linux-pci@vger.kernel.org
8316 L:      linux-arm-kernel@lists.infradead.org
8317 S:      Maintained
8318 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
8319 F:      drivers/pci/host/pci-xgene.c
8320
8321 PCI DRIVER FOR FREESCALE LAYERSCAPE
8322 M:      Minghuan Lian <minghuan.Lian@freescale.com>
8323 M:      Mingkai Hu <mingkai.hu@freescale.com>
8324 M:      Roy Zang <tie-fei.zang@freescale.com>
8325 L:      linuxppc-dev@lists.ozlabs.org
8326 L:      linux-pci@vger.kernel.org
8327 L:      linux-arm-kernel@lists.infradead.org
8328 S:      Maintained
8329 F:      drivers/pci/host/*layerscape*
8330
8331 PCI DRIVER FOR IMX6
8332 M:      Richard Zhu <Richard.Zhu@freescale.com>
8333 M:      Lucas Stach <l.stach@pengutronix.de>
8334 L:      linux-pci@vger.kernel.org
8335 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8336 S:      Maintained
8337 F:      drivers/pci/host/*imx6*
8338
8339 PCI DRIVER FOR TI KEYSTONE
8340 M:      Murali Karicheri <m-karicheri2@ti.com>
8341 L:      linux-pci@vger.kernel.org
8342 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8343 S:      Maintained
8344 F:      drivers/pci/host/*keystone*
8345
8346 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
8347 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8348 M:      Jason Cooper <jason@lakedaemon.net>
8349 L:      linux-pci@vger.kernel.org
8350 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8351 S:      Maintained
8352 F:      drivers/pci/host/*mvebu*
8353
8354 PCI DRIVER FOR NVIDIA TEGRA
8355 M:      Thierry Reding <thierry.reding@gmail.com>
8356 L:      linux-tegra@vger.kernel.org
8357 L:      linux-pci@vger.kernel.org
8358 S:      Supported
8359 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
8360 F:      drivers/pci/host/pci-tegra.c
8361
8362 PCI DRIVER FOR TI DRA7XX
8363 M:      Kishon Vijay Abraham I <kishon@ti.com>
8364 L:      linux-omap@vger.kernel.org
8365 L:      linux-pci@vger.kernel.org
8366 S:      Supported
8367 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
8368 F:      drivers/pci/host/pci-dra7xx.c
8369
8370 PCI DRIVER FOR RENESAS R-CAR
8371 M:      Simon Horman <horms@verge.net.au>
8372 L:      linux-pci@vger.kernel.org
8373 L:      linux-renesas-soc@vger.kernel.org
8374 S:      Maintained
8375 F:      drivers/pci/host/*rcar*
8376
8377 PCI DRIVER FOR SAMSUNG EXYNOS
8378 M:      Jingoo Han <jingoohan1@gmail.com>
8379 L:      linux-pci@vger.kernel.org
8380 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8381 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8382 S:      Maintained
8383 F:      drivers/pci/host/pci-exynos.c
8384
8385 PCI DRIVER FOR SYNOPSIS DESIGNWARE
8386 M:      Jingoo Han <jingoohan1@gmail.com>
8387 M:      Pratyush Anand <pratyush.anand@gmail.com>
8388 L:      linux-pci@vger.kernel.org
8389 S:      Maintained
8390 F:      drivers/pci/host/*designware*
8391
8392 PCI DRIVER FOR GENERIC OF HOSTS
8393 M:      Will Deacon <will.deacon@arm.com>
8394 L:      linux-pci@vger.kernel.org
8395 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8396 S:      Maintained
8397 F:      Documentation/devicetree/bindings/pci/host-generic-pci.txt
8398 F:      drivers/pci/host/pci-host-generic.c
8399
8400 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
8401 M:      Keith Busch <keith.busch@intel.com>
8402 L:      linux-pci@vger.kernel.org
8403 S:      Supported
8404 F:      arch/x86/pci/vmd.c
8405
8406 PCIE DRIVER FOR ST SPEAR13XX
8407 M:      Pratyush Anand <pratyush.anand@gmail.com>
8408 L:      linux-pci@vger.kernel.org
8409 S:      Maintained
8410 F:      drivers/pci/host/*spear*
8411
8412 PCI MSI DRIVER FOR ALTERA MSI IP
8413 M:      Ley Foon Tan <lftan@altera.com>
8414 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
8415 L:      linux-pci@vger.kernel.org
8416 S:      Supported
8417 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
8418 F:      drivers/pci/host/pcie-altera-msi.c
8419
8420 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
8421 M:      Duc Dang <dhdang@apm.com>
8422 L:      linux-pci@vger.kernel.org
8423 L:      linux-arm-kernel@lists.infradead.org
8424 S:      Maintained
8425 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
8426 F:      drivers/pci/host/pci-xgene-msi.c
8427
8428 PCIE DRIVER FOR HISILICON
8429 M:      Zhou Wang <wangzhou1@hisilicon.com>
8430 M:      Gabriele Paoloni <gabriele.paoloni@huawei.com>
8431 L:      linux-pci@vger.kernel.org
8432 S:      Maintained
8433 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
8434 F:      drivers/pci/host/pcie-hisi.c
8435
8436 PCIE DRIVER FOR QUALCOMM MSM
8437 M:     Stanimir Varbanov <svarbanov@mm-sol.com>
8438 L:     linux-pci@vger.kernel.org
8439 L:     linux-arm-msm@vger.kernel.org
8440 S:     Maintained
8441 F:     drivers/pci/host/*qcom*
8442
8443 PCMCIA SUBSYSTEM
8444 P:      Linux PCMCIA Team
8445 L:      linux-pcmcia@lists.infradead.org
8446 W:      http://lists.infradead.org/mailman/listinfo/linux-pcmcia
8447 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
8448 S:      Maintained
8449 F:      Documentation/pcmcia/
8450 F:      drivers/pcmcia/
8451 F:      include/pcmcia/
8452
8453 PCNET32 NETWORK DRIVER
8454 M:      Don Fry <pcnet32@frontier.com>
8455 L:      netdev@vger.kernel.org
8456 S:      Maintained
8457 F:      drivers/net/ethernet/amd/pcnet32.c
8458
8459 PCRYPT PARALLEL CRYPTO ENGINE
8460 M:      Steffen Klassert <steffen.klassert@secunet.com>
8461 L:      linux-crypto@vger.kernel.org
8462 S:      Maintained
8463 F:      crypto/pcrypt.c
8464 F:      include/crypto/pcrypt.h
8465
8466 PER-CPU MEMORY ALLOCATOR
8467 M:      Tejun Heo <tj@kernel.org>
8468 M:      Christoph Lameter <cl@linux-foundation.org>
8469 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
8470 S:      Maintained
8471 F:      include/linux/percpu*.h
8472 F:      mm/percpu*.c
8473 F:      arch/*/include/asm/percpu.h
8474
8475 PER-TASK DELAY ACCOUNTING
8476 M:      Balbir Singh <bsingharora@gmail.com>
8477 S:      Maintained
8478 F:      include/linux/delayacct.h
8479 F:      kernel/delayacct.c
8480
8481 PERFORMANCE EVENTS SUBSYSTEM
8482 M:      Peter Zijlstra <peterz@infradead.org>
8483 M:      Ingo Molnar <mingo@redhat.com>
8484 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
8485 L:      linux-kernel@vger.kernel.org
8486 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
8487 S:      Supported
8488 F:      kernel/events/*
8489 F:      include/linux/perf_event.h
8490 F:      include/uapi/linux/perf_event.h
8491 F:      arch/*/kernel/perf_event*.c
8492 F:      arch/*/kernel/*/perf_event*.c
8493 F:      arch/*/kernel/*/*/perf_event*.c
8494 F:      arch/*/include/asm/perf_event.h
8495 F:      arch/*/kernel/perf_callchain.c
8496 F:      tools/perf/
8497
8498 PERSONALITY HANDLING
8499 M:      Christoph Hellwig <hch@infradead.org>
8500 L:      linux-abi-devel@lists.sourceforge.net
8501 S:      Maintained
8502 F:      include/linux/personality.h
8503 F:      include/uapi/linux/personality.h
8504
8505 PHONET PROTOCOL
8506 M:      Remi Denis-Courmont <courmisch@gmail.com>
8507 S:      Supported
8508 F:      Documentation/networking/phonet.txt
8509 F:      include/linux/phonet.h
8510 F:      include/net/phonet/
8511 F:      include/uapi/linux/phonet.h
8512 F:      net/phonet/
8513
8514 PHRAM MTD DRIVER
8515 M:      Joern Engel <joern@lazybastard.org>
8516 L:      linux-mtd@lists.infradead.org
8517 S:      Maintained
8518 F:      drivers/mtd/devices/phram.c
8519
8520 PICOLCD HID DRIVER
8521 M:      Bruno PrĂ©mont <bonbons@linux-vserver.org>
8522 L:      linux-input@vger.kernel.org
8523 S:      Maintained
8524 F:      drivers/hid/hid-picolcd*
8525
8526 PICOXCELL SUPPORT
8527 M:      Jamie Iles <jamie@jamieiles.com>
8528 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8529 T:      git git://github.com/jamieiles/linux-2.6-ji.git
8530 S:      Supported
8531 F:      arch/arm/boot/dts/picoxcell*
8532 F:      arch/arm/mach-picoxcell/
8533 F:      drivers/crypto/picoxcell*
8534
8535 PIN CONTROL SUBSYSTEM
8536 M:      Linus Walleij <linus.walleij@linaro.org>
8537 L:      linux-gpio@vger.kernel.org
8538 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
8539 S:      Maintained
8540 F:      drivers/pinctrl/
8541 F:      include/linux/pinctrl/
8542
8543 PIN CONTROLLER - ATMEL AT91
8544 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
8545 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8546 S:      Maintained
8547 F:      drivers/pinctrl/pinctrl-at91.*
8548
8549 PIN CONTROLLER - ATMEL AT91 PIO4
8550 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
8551 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8552 L:      linux-gpio@vger.kernel.org
8553 S:      Supported
8554 F:      drivers/pinctrl/pinctrl-at91-pio4.*
8555
8556 PIN CONTROLLER - INTEL
8557 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8558 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
8559 S:      Maintained
8560 F:      drivers/pinctrl/intel/
8561
8562 PIN CONTROLLER - RENESAS
8563 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8564 M:      Geert Uytterhoeven <geert+renesas@glider.be>
8565 L:      linux-renesas-soc@vger.kernel.org
8566 S:      Maintained
8567 F:      drivers/pinctrl/sh-pfc/
8568
8569 PIN CONTROLLER - SAMSUNG
8570 M:      Tomasz Figa <tomasz.figa@gmail.com>
8571 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8572 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8573 S:      Maintained
8574 F:      drivers/pinctrl/samsung/
8575
8576 PIN CONTROLLER - SINGLE
8577 M:      Tony Lindgren <tony@atomide.com>
8578 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
8579 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8580 L:      linux-omap@vger.kernel.org
8581 S:      Maintained
8582 F:      drivers/pinctrl/pinctrl-single.c
8583
8584 PIN CONTROLLER - ST SPEAR
8585 M:      Viresh Kumar <vireshk@kernel.org>
8586 L:      spear-devel@list.st.com
8587 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8588 W:      http://www.st.com/spear
8589 S:      Maintained
8590 F:      drivers/pinctrl/spear/
8591
8592 PKTCDVD DRIVER
8593 M:      Jiri Kosina <jikos@kernel.org>
8594 S:      Maintained
8595 F:      drivers/block/pktcdvd.c
8596 F:      include/linux/pktcdvd.h
8597 F:      include/uapi/linux/pktcdvd.h
8598
8599 PKUNITY SOC DRIVERS
8600 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
8601 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
8602 S:      Maintained
8603 T:      git git://github.com/gxt/linux.git
8604 F:      drivers/input/serio/i8042-unicore32io.h
8605 F:      drivers/i2c/busses/i2c-puv3.c
8606 F:      drivers/video/fbdev/fb-puv3.c
8607 F:      drivers/rtc/rtc-puv3.c
8608
8609 PMBUS HARDWARE MONITORING DRIVERS
8610 M:      Guenter Roeck <linux@roeck-us.net>
8611 L:      lm-sensors@lm-sensors.org
8612 W:      http://www.lm-sensors.org/
8613 W:      http://www.roeck-us.net/linux/drivers/
8614 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8615 S:      Maintained
8616 F:      Documentation/hwmon/pmbus
8617 F:      drivers/hwmon/pmbus/
8618 F:      include/linux/i2c/pmbus.h
8619
8620 PMC SIERRA MaxRAID DRIVER
8621 L:      linux-scsi@vger.kernel.org
8622 W:      http://www.pmc-sierra.com/
8623 S:      Orphan
8624 F:      drivers/scsi/pmcraid.*
8625
8626 PMC SIERRA PM8001 DRIVER
8627 M:      Jack Wang <jinpu.wang@profitbricks.com>
8628 M:      lindar_liu@usish.com
8629 L:      pmchba@pmcs.com
8630 L:      linux-scsi@vger.kernel.org
8631 S:      Supported
8632 F:      drivers/scsi/pm8001/
8633
8634 POSIX CLOCKS and TIMERS
8635 M:      Thomas Gleixner <tglx@linutronix.de>
8636 L:      linux-kernel@vger.kernel.org
8637 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8638 S:      Maintained
8639 F:      fs/timerfd.c
8640 F:      include/linux/timer*
8641 F:      kernel/time/*timer*
8642
8643 POWER MANAGEMENT CORE
8644 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
8645 L:      linux-pm@vger.kernel.org
8646 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
8647 S:      Supported
8648 F:      drivers/base/power/
8649 F:      include/linux/pm.h
8650 F:      include/linux/pm_*
8651 F:      include/linux/powercap.h
8652 F:      drivers/powercap/
8653
8654 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
8655 M:      Sebastian Reichel <sre@kernel.org>
8656 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
8657 M:      David Woodhouse <dwmw2@infradead.org>
8658 L:      linux-pm@vger.kernel.org
8659 T:      git git://git.infradead.org/battery-2.6.git
8660 S:      Maintained
8661 F:      include/linux/power_supply.h
8662 F:      drivers/power/
8663 X:      drivers/power/avs/
8664
8665 POWER STATE COORDINATION INTERFACE (PSCI)
8666 M:      Mark Rutland <mark.rutland@arm.com>
8667 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
8668 L:      linux-arm-kernel@lists.infradead.org
8669 S:      Maintained
8670 F:      drivers/firmware/psci.c
8671 F:      include/linux/psci.h
8672 F:      include/uapi/linux/psci.h
8673
8674 PNP SUPPORT
8675 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
8676 S:      Maintained
8677 F:      drivers/pnp/
8678
8679 PPP PROTOCOL DRIVERS AND COMPRESSORS
8680 M:      Paul Mackerras <paulus@samba.org>
8681 L:      linux-ppp@vger.kernel.org
8682 S:      Maintained
8683 F:      drivers/net/ppp/ppp_*
8684
8685 PPP OVER ATM (RFC 2364)
8686 M:      Mitchell Blank Jr <mitch@sfgoth.com>
8687 S:      Maintained
8688 F:      net/atm/pppoatm.c
8689 F:      include/uapi/linux/atmppp.h
8690
8691 PPP OVER ETHERNET
8692 M:      Michal Ostrowski <mostrows@earthlink.net>
8693 S:      Maintained
8694 F:      drivers/net/ppp/pppoe.c
8695 F:      drivers/net/ppp/pppox.c
8696
8697 PPP OVER L2TP
8698 M:      James Chapman <jchapman@katalix.com>
8699 S:      Maintained
8700 F:      net/l2tp/l2tp_ppp.c
8701 F:      include/linux/if_pppol2tp.h
8702 F:      include/uapi/linux/if_pppol2tp.h
8703
8704 PPS SUPPORT
8705 M:      Rodolfo Giometti <giometti@enneenne.com>
8706 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
8707 L:      linuxpps@ml.enneenne.com (subscribers-only)
8708 S:      Maintained
8709 F:      Documentation/pps/
8710 F:      drivers/pps/
8711 F:      include/linux/pps*.h
8712
8713 PPTP DRIVER
8714 M:      Dmitry Kozlov <xeb@mail.ru>
8715 L:      netdev@vger.kernel.org
8716 S:      Maintained
8717 F:      drivers/net/ppp/pptp.c
8718 W:      http://sourceforge.net/projects/accel-pptp
8719
8720 PREEMPTIBLE KERNEL
8721 M:      Robert Love <rml@tech9.net>
8722 L:      kpreempt-tech@lists.sourceforge.net
8723 W:      ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
8724 S:      Supported
8725 F:      Documentation/preempt-locking.txt
8726 F:      include/linux/preempt.h
8727
8728 PRISM54 WIRELESS DRIVER
8729 M:      "Luis R. Rodriguez" <mcgrof@gmail.com>
8730 L:      linux-wireless@vger.kernel.org
8731 W:      http://wireless.kernel.org/en/users/Drivers/p54
8732 S:      Obsolete
8733 F:      drivers/net/wireless/intersil/prism54/
8734
8735 PS3 NETWORK SUPPORT
8736 M:      Geoff Levand <geoff@infradead.org>
8737 L:      netdev@vger.kernel.org
8738 L:      linuxppc-dev@lists.ozlabs.org
8739 S:      Maintained
8740 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
8741
8742 PS3 PLATFORM SUPPORT
8743 M:      Geoff Levand <geoff@infradead.org>
8744 L:      linuxppc-dev@lists.ozlabs.org
8745 S:      Maintained
8746 F:      arch/powerpc/boot/ps3*
8747 F:      arch/powerpc/include/asm/lv1call.h
8748 F:      arch/powerpc/include/asm/ps3*.h
8749 F:      arch/powerpc/platforms/ps3/
8750 F:      drivers/*/ps3*
8751 F:      drivers/ps3/
8752 F:      drivers/rtc/rtc-ps3.c
8753 F:      drivers/usb/host/*ps3.c
8754 F:      sound/ppc/snd_ps3*
8755
8756 PS3VRAM DRIVER
8757 M:      Jim Paris <jim@jtan.com>
8758 M:      Geoff Levand <geoff@infradead.org>
8759 L:      linuxppc-dev@lists.ozlabs.org
8760 S:      Maintained
8761 F:      drivers/block/ps3vram.c
8762
8763 PSTORE FILESYSTEM
8764 M:      Anton Vorontsov <anton@enomsg.org>
8765 M:      Colin Cross <ccross@android.com>
8766 M:      Kees Cook <keescook@chromium.org>
8767 M:      Tony Luck <tony.luck@intel.com>
8768 S:      Maintained
8769 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
8770 F:      fs/pstore/
8771 F:      include/linux/pstore*
8772 F:      drivers/firmware/efi/efi-pstore.c
8773 F:      drivers/acpi/apei/erst.c
8774
8775 PTP HARDWARE CLOCK SUPPORT
8776 M:      Richard Cochran <richardcochran@gmail.com>
8777 L:      netdev@vger.kernel.org
8778 S:      Maintained
8779 W:      http://linuxptp.sourceforge.net/
8780 F:      Documentation/ABI/testing/sysfs-ptp
8781 F:      Documentation/ptp/*
8782 F:      drivers/net/ethernet/freescale/gianfar_ptp.c
8783 F:      drivers/net/phy/dp83640*
8784 F:      drivers/ptp/*
8785 F:      include/linux/ptp_cl*
8786
8787 PTRACE SUPPORT
8788 M:      Roland McGrath <roland@hack.frob.com>
8789 M:      Oleg Nesterov <oleg@redhat.com>
8790 S:      Maintained
8791 F:      include/asm-generic/syscall.h
8792 F:      include/linux/ptrace.h
8793 F:      include/linux/regset.h
8794 F:      include/linux/tracehook.h
8795 F:      include/uapi/linux/ptrace.h
8796 F:      kernel/ptrace.c
8797
8798 PVRUSB2 VIDEO4LINUX DRIVER
8799 M:      Mike Isely <isely@pobox.com>
8800 L:      pvrusb2@isely.net       (subscribers-only)
8801 L:      linux-media@vger.kernel.org
8802 W:      http://www.isely.net/pvrusb2/
8803 T:      git git://linuxtv.org/media_tree.git
8804 S:      Maintained
8805 F:      Documentation/video4linux/README.pvrusb2
8806 F:      drivers/media/usb/pvrusb2/
8807
8808 PWC WEBCAM DRIVER
8809 M:      Hans de Goede <hdegoede@redhat.com>
8810 L:      linux-media@vger.kernel.org
8811 T:      git git://linuxtv.org/media_tree.git
8812 S:      Maintained
8813 F:      drivers/media/usb/pwc/*
8814
8815 PWM FAN DRIVER
8816 M:      Kamil Debski <k.debski@samsung.com>
8817 L:      lm-sensors@lm-sensors.org
8818 S:      Supported
8819 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
8820 F:      Documentation/hwmon/pwm-fan
8821 F:      drivers/hwmon/pwm-fan.c
8822
8823 PWM SUBSYSTEM
8824 M:      Thierry Reding <thierry.reding@gmail.com>
8825 L:      linux-pwm@vger.kernel.org
8826 S:      Maintained
8827 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
8828 F:      Documentation/pwm.txt
8829 F:      Documentation/devicetree/bindings/pwm/
8830 F:      include/linux/pwm.h
8831 F:      drivers/pwm/
8832 F:      drivers/video/backlight/pwm_bl.c
8833 F:      include/linux/pwm_backlight.h
8834
8835 PXA2xx/PXA3xx SUPPORT
8836 M:      Daniel Mack <daniel@zonque.org>
8837 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
8838 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8839 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8840 T:      git git://github.com/hzhuang1/linux.git
8841 T:      git git://github.com/rjarzmik/linux.git
8842 S:      Maintained
8843 F:      arch/arm/boot/dts/pxa*
8844 F:      arch/arm/mach-pxa/
8845 F:      drivers/dma/pxa*
8846 F:      drivers/pcmcia/pxa2xx*
8847 F:      drivers/pinctrl/pxa/
8848 F:      drivers/spi/spi-pxa2xx*
8849 F:      drivers/usb/gadget/udc/pxa2*
8850 F:      include/sound/pxa2xx-lib.h
8851 F:      sound/arm/pxa*
8852 F:      sound/soc/pxa/
8853
8854 PXA GPIO DRIVER
8855 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8856 L:      linux-gpio@vger.kernel.org
8857 S:      Maintained
8858 F:      drivers/gpio/gpio-pxa.c
8859
8860 PXA3xx NAND FLASH DRIVER
8861 M:      Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
8862 L:      linux-mtd@lists.infradead.org
8863 S:      Maintained
8864 F:      drivers/mtd/nand/pxa3xx_nand.c
8865
8866 MMP SUPPORT
8867 M:      Eric Miao <eric.y.miao@gmail.com>
8868 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
8869 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8870 T:      git git://github.com/hzhuang1/linux.git
8871 T:      git git://git.linaro.org/people/ycmiao/pxa-linux.git
8872 S:      Maintained
8873 F:      arch/arm/boot/dts/mmp*
8874 F:      arch/arm/mach-mmp/
8875
8876 PXA MMCI DRIVER
8877 S:      Orphan
8878
8879 PXA RTC DRIVER
8880 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8881 L:      rtc-linux@googlegroups.com
8882 S:      Maintained
8883
8884 QAT DRIVER
8885 M:      Tadeusz Struk <tadeusz.struk@intel.com>
8886 L:      qat-linux@intel.com
8887 S:      Supported
8888 F:      drivers/crypto/qat/
8889
8890 QIB DRIVER
8891 M:      Mike Marciniszyn <infinipath@intel.com>
8892 L:      linux-rdma@vger.kernel.org
8893 S:      Supported
8894 F:      drivers/infiniband/hw/qib/
8895
8896 QLOGIC QLA1280 SCSI DRIVER
8897 M:      Michael Reed <mdr@sgi.com>
8898 L:      linux-scsi@vger.kernel.org
8899 S:      Maintained
8900 F:      drivers/scsi/qla1280.[ch]
8901
8902 QLOGIC QLA2XXX FC-SCSI DRIVER
8903 M:      qla2xxx-upstream@qlogic.com
8904 L:      linux-scsi@vger.kernel.org
8905 S:      Supported
8906 F:      Documentation/scsi/LICENSE.qla2xxx
8907 F:      drivers/scsi/qla2xxx/
8908
8909 QLOGIC QLA4XXX iSCSI DRIVER
8910 M:      QLogic-Storage-Upstream@qlogic.com
8911 L:      linux-scsi@vger.kernel.org
8912 S:      Supported
8913 F:      Documentation/scsi/LICENSE.qla4xxx
8914 F:      drivers/scsi/qla4xxx/
8915
8916 QLOGIC QLA3XXX NETWORK DRIVER
8917 M:      Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
8918 M:      Ron Mercer <ron.mercer@qlogic.com>
8919 M:      linux-driver@qlogic.com
8920 L:      netdev@vger.kernel.org
8921 S:      Supported
8922 F:      Documentation/networking/LICENSE.qla3xxx
8923 F:      drivers/net/ethernet/qlogic/qla3xxx.*
8924
8925 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
8926 M:      Dept-GELinuxNICDev@qlogic.com
8927 L:      netdev@vger.kernel.org
8928 S:      Supported
8929 F:      drivers/net/ethernet/qlogic/qlcnic/
8930
8931 QLOGIC QLGE 10Gb ETHERNET DRIVER
8932 M:      Harish Patil <harish.patil@qlogic.com>
8933 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
8934 M:      Dept-GELinuxNICDev@qlogic.com
8935 M:      linux-driver@qlogic.com
8936 L:      netdev@vger.kernel.org
8937 S:      Supported
8938 F:      drivers/net/ethernet/qlogic/qlge/
8939
8940 QLOGIC QL4xxx ETHERNET DRIVER
8941 M:      Yuval Mintz <Yuval.Mintz@qlogic.com>
8942 M:      Ariel Elior <Ariel.Elior@qlogic.com>
8943 M:      everest-linux-l2@qlogic.com
8944 L:      netdev@vger.kernel.org
8945 S:      Supported
8946 F:      drivers/net/ethernet/qlogic/qed/
8947 F:      include/linux/qed/
8948 F:      drivers/net/ethernet/qlogic/qede/
8949
8950 QNX4 FILESYSTEM
8951 M:      Anders Larsen <al@alarsen.net>
8952 W:      http://www.alarsen.net/linux/qnx4fs/
8953 S:      Maintained
8954 F:      fs/qnx4/
8955 F:      include/uapi/linux/qnx4_fs.h
8956 F:      include/uapi/linux/qnxtypes.h
8957
8958 QT1010 MEDIA DRIVER
8959 M:      Antti Palosaari <crope@iki.fi>
8960 L:      linux-media@vger.kernel.org
8961 W:      https://linuxtv.org
8962 W:      http://palosaari.fi/linux/
8963 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8964 T:      git git://linuxtv.org/anttip/media_tree.git
8965 S:      Maintained
8966 F:      drivers/media/tuners/qt1010*
8967
8968 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
8969 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
8970 L:      linux-wireless@vger.kernel.org
8971 L:      ath9k-devel@lists.ath9k.org
8972 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
8973 S:      Supported
8974 F:      drivers/net/wireless/ath/ath9k/
8975
8976 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
8977 M:      Kalle Valo <kvalo@qca.qualcomm.com>
8978 L:      ath10k@lists.infradead.org
8979 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
8980 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
8981 S:      Supported
8982 F:      drivers/net/wireless/ath/ath10k/
8983
8984 QUALCOMM HEXAGON ARCHITECTURE
8985 M:      Richard Kuo <rkuo@codeaurora.org>
8986 L:      linux-hexagon@vger.kernel.org
8987 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rkuo/linux-hexagon-kernel.git
8988 S:      Supported
8989 F:      arch/hexagon/
8990
8991 QUALCOMM WCN36XX WIRELESS DRIVER
8992 M:      Eugene Krasnikov <k.eugene.e@gmail.com>
8993 L:      wcn36xx@lists.infradead.org
8994 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
8995 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
8996 S:      Supported
8997 F:      drivers/net/wireless/ath/wcn36xx/
8998
8999 RADOS BLOCK DEVICE (RBD)
9000 M:      Ilya Dryomov <idryomov@gmail.com>
9001 M:      Sage Weil <sage@redhat.com>
9002 M:      Alex Elder <elder@kernel.org>
9003 L:      ceph-devel@vger.kernel.org
9004 W:      http://ceph.com/
9005 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
9006 T:      git git://github.com/ceph/ceph-client.git
9007 S:      Supported
9008 F:      Documentation/ABI/testing/sysfs-bus-rbd
9009 F:      drivers/block/rbd.c
9010 F:      drivers/block/rbd_types.h
9011
9012 RADEON FRAMEBUFFER DISPLAY DRIVER
9013 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
9014 L:      linux-fbdev@vger.kernel.org
9015 S:      Maintained
9016 F:      drivers/video/fbdev/aty/radeon*
9017 F:      include/uapi/linux/radeonfb.h
9018
9019 RADIOSHARK RADIO DRIVER
9020 M:      Hans de Goede <hdegoede@redhat.com>
9021 L:      linux-media@vger.kernel.org
9022 T:      git git://linuxtv.org/media_tree.git
9023 S:      Maintained
9024 F:      drivers/media/radio/radio-shark.c
9025
9026 RADIOSHARK2 RADIO DRIVER
9027 M:      Hans de Goede <hdegoede@redhat.com>
9028 L:      linux-media@vger.kernel.org
9029 T:      git git://linuxtv.org/media_tree.git
9030 S:      Maintained
9031 F:      drivers/media/radio/radio-shark2.c
9032 F:      drivers/media/radio/radio-tea5777.c
9033
9034 RAGE128 FRAMEBUFFER DISPLAY DRIVER
9035 M:      Paul Mackerras <paulus@samba.org>
9036 L:      linux-fbdev@vger.kernel.org
9037 S:      Maintained
9038 F:      drivers/video/fbdev/aty/aty128fb.c
9039
9040 RALINK MIPS ARCHITECTURE
9041 M:      John Crispin <blogic@openwrt.org>
9042 L:      linux-mips@linux-mips.org
9043 S:      Maintained
9044 F:      arch/mips/ralink
9045
9046 RALINK RT2X00 WIRELESS LAN DRIVER
9047 P:      rt2x00 project
9048 M:      Stanislaw Gruszka <sgruszka@redhat.com>
9049 M:      Helmut Schaa <helmut.schaa@googlemail.com>
9050 L:      linux-wireless@vger.kernel.org
9051 S:      Maintained
9052 F:      drivers/net/wireless/ralink/rt2x00/
9053
9054 RAMDISK RAM BLOCK DEVICE DRIVER
9055 M:      Jens Axboe <axboe@kernel.dk>
9056 S:      Maintained
9057 F:      Documentation/blockdev/ramdisk.txt
9058 F:      drivers/block/brd.c
9059
9060 RANDOM NUMBER DRIVER
9061 M:      "Theodore Ts'o" <tytso@mit.edu>
9062 S:      Maintained
9063 F:      drivers/char/random.c
9064
9065 RAPIDIO SUBSYSTEM
9066 M:      Matt Porter <mporter@kernel.crashing.org>
9067 M:      Alexandre Bounine <alexandre.bounine@idt.com>
9068 S:      Maintained
9069 F:      drivers/rapidio/
9070
9071 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
9072 L:      linux-wireless@vger.kernel.org
9073 S:      Orphan
9074 F:      drivers/net/wireless/ray*
9075
9076 RCUTORTURE MODULE
9077 M:      Josh Triplett <josh@joshtriplett.org>
9078 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9079 L:      linux-kernel@vger.kernel.org
9080 S:      Supported
9081 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9082 F:      Documentation/RCU/torture.txt
9083 F:      kernel/rcu/rcutorture.c
9084
9085 RCUTORTURE TEST FRAMEWORK
9086 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9087 M:      Josh Triplett <josh@joshtriplett.org>
9088 R:      Steven Rostedt <rostedt@goodmis.org>
9089 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9090 R:      Lai Jiangshan <jiangshanlai@gmail.com>
9091 L:      linux-kernel@vger.kernel.org
9092 S:      Supported
9093 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9094 F:      tools/testing/selftests/rcutorture
9095
9096 RDC R-321X SoC
9097 M:      Florian Fainelli <florian@openwrt.org>
9098 S:      Maintained
9099
9100 RDC R6040 FAST ETHERNET DRIVER
9101 M:      Florian Fainelli <florian@openwrt.org>
9102 L:      netdev@vger.kernel.org
9103 S:      Maintained
9104 F:      drivers/net/ethernet/rdc/r6040.c
9105
9106 RDS - RELIABLE DATAGRAM SOCKETS
9107 M:      Chien Yen <chien.yen@oracle.com>
9108 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
9109 S:      Supported
9110 F:      net/rds/
9111
9112 READ-COPY UPDATE (RCU)
9113 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9114 M:      Josh Triplett <josh@joshtriplett.org>
9115 R:      Steven Rostedt <rostedt@goodmis.org>
9116 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9117 R:      Lai Jiangshan <jiangshanlai@gmail.com>
9118 L:      linux-kernel@vger.kernel.org
9119 W:      http://www.rdrop.com/users/paulmck/RCU/
9120 S:      Supported
9121 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9122 F:      Documentation/RCU/
9123 X:      Documentation/RCU/torture.txt
9124 F:      include/linux/rcu*
9125 X:      include/linux/srcu.h
9126 F:      kernel/rcu/
9127 X:      kernel/torture.c
9128
9129 REAL TIME CLOCK (RTC) SUBSYSTEM
9130 M:      Alessandro Zummo <a.zummo@towertech.it>
9131 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
9132 L:      rtc-linux@googlegroups.com
9133 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
9134 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
9135 S:      Maintained
9136 F:      Documentation/rtc.txt
9137 F:      drivers/rtc/
9138 F:      include/linux/rtc.h
9139 F:      include/uapi/linux/rtc.h
9140
9141 REALTEK AUDIO CODECS
9142 M:      Bard Liao <bardliao@realtek.com>
9143 M:      Oder Chiou <oder_chiou@realtek.com>
9144 S:      Maintained
9145 F:      sound/soc/codecs/rt*
9146 F:      include/sound/rt*.h
9147
9148 REISERFS FILE SYSTEM
9149 L:      reiserfs-devel@vger.kernel.org
9150 S:      Supported
9151 F:      fs/reiserfs/
9152
9153 REGISTER MAP ABSTRACTION
9154 M:      Mark Brown <broonie@kernel.org>
9155 L:      linux-kernel@vger.kernel.org
9156 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
9157 S:      Supported
9158 F:      drivers/base/regmap/
9159 F:      include/linux/regmap.h
9160
9161 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
9162 M:      Ohad Ben-Cohen <ohad@wizery.com>
9163 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
9164 S:      Maintained
9165 F:      drivers/remoteproc/
9166 F:      Documentation/remoteproc.txt
9167 F:      include/linux/remoteproc.h
9168
9169 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
9170 M:      Ohad Ben-Cohen <ohad@wizery.com>
9171 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
9172 S:      Maintained
9173 F:      drivers/rpmsg/
9174 F:      Documentation/rpmsg.txt
9175 F:      include/linux/rpmsg.h
9176
9177 RENESAS ETHERNET DRIVERS
9178 R:      Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
9179 L:      netdev@vger.kernel.org
9180 L:      linux-renesas-soc@vger.kernel.org
9181 F:      drivers/net/ethernet/renesas/
9182 F:      include/linux/sh_eth.h
9183
9184 RENESAS USB2 PHY DRIVER
9185 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
9186 L:      linux-renesas-soc@vger.kernel.org
9187 S:      Maintained
9188 F:      drivers/phy/phy-rcar-gen3-usb2.c
9189
9190 RESET CONTROLLER FRAMEWORK
9191 M:      Philipp Zabel <p.zabel@pengutronix.de>
9192 T:      git git://git.pengutronix.de/git/pza/linux
9193 S:      Maintained
9194 F:      drivers/reset/
9195 F:      Documentation/devicetree/bindings/reset/
9196 F:      include/dt-bindings/reset/
9197 F:      include/linux/reset.h
9198 F:      include/linux/reset-controller.h
9199
9200 RFKILL
9201 M:      Johannes Berg <johannes@sipsolutions.net>
9202 L:      linux-wireless@vger.kernel.org
9203 W:      http://wireless.kernel.org/
9204 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
9205 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
9206 S:      Maintained
9207 F:      Documentation/rfkill.txt
9208 F:      net/rfkill/
9209
9210 RHASHTABLE
9211 M:      Thomas Graf <tgraf@suug.ch>
9212 L:      netdev@vger.kernel.org
9213 S:      Maintained
9214 F:      lib/rhashtable.c
9215 F:      include/linux/rhashtable.h
9216
9217 RICOH SMARTMEDIA/XD DRIVER
9218 M:      Maxim Levitsky <maximlevitsky@gmail.com>
9219 S:      Maintained
9220 F:      drivers/mtd/nand/r852.c
9221 F:      drivers/mtd/nand/r852.h
9222
9223 RICOH R5C592 MEMORYSTICK DRIVER
9224 M:      Maxim Levitsky <maximlevitsky@gmail.com>
9225 S:      Maintained
9226 F:      drivers/memstick/host/r592.*
9227
9228 ROCCAT DRIVERS
9229 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
9230 W:      http://sourceforge.net/projects/roccat/
9231 S:      Maintained
9232 F:      drivers/hid/hid-roccat*
9233 F:      include/linux/hid-roccat*
9234 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
9235
9236 ROCKER DRIVER
9237 M:      Jiri Pirko <jiri@resnulli.us>
9238 M:      Scott Feldman <sfeldma@gmail.com>
9239 L:      netdev@vger.kernel.org
9240 S:      Supported
9241 F:      drivers/net/ethernet/rocker/
9242
9243 ROCKETPORT DRIVER
9244 P:      Comtrol Corp.
9245 W:      http://www.comtrol.com
9246 S:      Maintained
9247 F:      Documentation/serial/rocket.txt
9248 F:      drivers/tty/rocket*
9249
9250 ROCKETPORT EXPRESS/INFINITY DRIVER
9251 M:      Kevin Cernekee <cernekee@gmail.com>
9252 L:      linux-serial@vger.kernel.org
9253 S:      Odd Fixes
9254 F:      drivers/tty/serial/rp2.*
9255
9256 ROSE NETWORK LAYER
9257 M:      Ralf Baechle <ralf@linux-mips.org>
9258 L:      linux-hams@vger.kernel.org
9259 W:      http://www.linux-ax25.org/
9260 S:      Maintained
9261 F:      include/net/rose.h
9262 F:      include/uapi/linux/rose.h
9263 F:      net/rose/
9264
9265 RTL2830 MEDIA DRIVER
9266 M:      Antti Palosaari <crope@iki.fi>
9267 L:      linux-media@vger.kernel.org
9268 W:      https://linuxtv.org
9269 W:      http://palosaari.fi/linux/
9270 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9271 T:      git git://linuxtv.org/anttip/media_tree.git
9272 S:      Maintained
9273 F:      drivers/media/dvb-frontends/rtl2830*
9274
9275 RTL2832 MEDIA DRIVER
9276 M:      Antti Palosaari <crope@iki.fi>
9277 L:      linux-media@vger.kernel.org
9278 W:      https://linuxtv.org
9279 W:      http://palosaari.fi/linux/
9280 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9281 T:      git git://linuxtv.org/anttip/media_tree.git
9282 S:      Maintained
9283 F:      drivers/media/dvb-frontends/rtl2832*
9284
9285 RTL2832_SDR MEDIA DRIVER
9286 M:      Antti Palosaari <crope@iki.fi>
9287 L:      linux-media@vger.kernel.org
9288 W:      https://linuxtv.org
9289 W:      http://palosaari.fi/linux/
9290 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9291 T:      git git://linuxtv.org/anttip/media_tree.git
9292 S:      Maintained
9293 F:      drivers/media/dvb-frontends/rtl2832_sdr*
9294
9295 RTL8180 WIRELESS DRIVER
9296 L:      linux-wireless@vger.kernel.org
9297 W:      http://wireless.kernel.org/
9298 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9299 S:      Orphan
9300 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
9301
9302 RTL8187 WIRELESS DRIVER
9303 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
9304 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
9305 M:      Larry Finger <Larry.Finger@lwfinger.net>
9306 L:      linux-wireless@vger.kernel.org
9307 W:      http://wireless.kernel.org/
9308 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9309 S:      Maintained
9310 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
9311
9312 RTL8192CE WIRELESS DRIVER
9313 M:      Larry Finger <Larry.Finger@lwfinger.net>
9314 M:      Chaoming Li <chaoming_li@realsil.com.cn>
9315 L:      linux-wireless@vger.kernel.org
9316 W:      http://wireless.kernel.org/
9317 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9318 S:      Maintained
9319 F:      drivers/net/wireless/realtek/rtlwifi/
9320 F:      drivers/net/wireless/realtek/rtlwifi/rtl8192ce/
9321
9322 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
9323 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
9324 L:      linux-wireless@vger.kernel.org
9325 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8723au-mac80211
9326 S:      Maintained
9327 F:      drivers/net/wireless/realtek/rtl8xxxu/
9328
9329 S3 SAVAGE FRAMEBUFFER DRIVER
9330 M:      Antonino Daplas <adaplas@gmail.com>
9331 L:      linux-fbdev@vger.kernel.org
9332 S:      Maintained
9333 F:      drivers/video/fbdev/savage/
9334
9335 S390
9336 M:      Martin Schwidefsky <schwidefsky@de.ibm.com>
9337 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
9338 L:      linux-s390@vger.kernel.org
9339 W:      http://www.ibm.com/developerworks/linux/linux390/
9340 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
9341 S:      Supported
9342 F:      arch/s390/
9343 F:      drivers/s390/
9344 F:      Documentation/s390/
9345 F:      Documentation/DocBook/s390*
9346
9347 S390 COMMON I/O LAYER
9348 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
9349 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
9350 L:      linux-s390@vger.kernel.org
9351 W:      http://www.ibm.com/developerworks/linux/linux390/
9352 S:      Supported
9353 F:      drivers/s390/cio/
9354
9355 S390 DASD DRIVER
9356 M:      Stefan Weinhuber <wein@de.ibm.com>
9357 M:      Stefan Haberland <stefan.haberland@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/block/dasd*
9362 F:      block/partitions/ibm.c
9363
9364 S390 NETWORK DRIVERS
9365 M:      Ursula Braun <ubraun@linux.vnet.ibm.com>
9366 L:      linux-s390@vger.kernel.org
9367 W:      http://www.ibm.com/developerworks/linux/linux390/
9368 S:      Supported
9369 F:      drivers/s390/net/
9370
9371 S390 PCI SUBSYSTEM
9372 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
9373 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
9374 L:      linux-s390@vger.kernel.org
9375 W:      http://www.ibm.com/developerworks/linux/linux390/
9376 S:      Supported
9377 F:      arch/s390/pci/
9378 F:      drivers/pci/hotplug/s390_pci_hpc.c
9379
9380 S390 ZCRYPT DRIVER
9381 M:      Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
9382 L:      linux-s390@vger.kernel.org
9383 W:      http://www.ibm.com/developerworks/linux/linux390/
9384 S:      Supported
9385 F:      drivers/s390/crypto/
9386
9387 S390 ZFCP DRIVER
9388 M:      Steffen Maier <maier@linux.vnet.ibm.com>
9389 L:      linux-s390@vger.kernel.org
9390 W:      http://www.ibm.com/developerworks/linux/linux390/
9391 S:      Supported
9392 F:      drivers/s390/scsi/zfcp_*
9393
9394 S390 IUCV NETWORK LAYER
9395 M:      Ursula Braun <ubraun@linux.vnet.ibm.com>
9396 L:      linux-s390@vger.kernel.org
9397 W:      http://www.ibm.com/developerworks/linux/linux390/
9398 S:      Supported
9399 F:      drivers/s390/net/*iucv*
9400 F:      include/net/iucv/
9401 F:      net/iucv/
9402
9403 S390 IOMMU (PCI)
9404 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
9405 L:      linux-s390@vger.kernel.org
9406 W:      http://www.ibm.com/developerworks/linux/linux390/
9407 S:      Supported
9408 F:      drivers/iommu/s390-iommu.c
9409
9410 S3C24XX SD/MMC Driver
9411 M:      Ben Dooks <ben-linux@fluff.org>
9412 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9413 S:      Supported
9414 F:      drivers/mmc/host/s3cmci.*
9415
9416 SAA6588 RDS RECEIVER DRIVER
9417 M:      Hans Verkuil <hverkuil@xs4all.nl>
9418 L:      linux-media@vger.kernel.org
9419 T:      git git://linuxtv.org/media_tree.git
9420 W:      https://linuxtv.org
9421 S:      Odd Fixes
9422 F:      drivers/media/i2c/saa6588*
9423
9424 SAA7134 VIDEO4LINUX DRIVER
9425 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9426 L:      linux-media@vger.kernel.org
9427 W:      https://linuxtv.org
9428 T:      git git://linuxtv.org/media_tree.git
9429 S:      Odd fixes
9430 F:      Documentation/video4linux/*.saa7134
9431 F:      drivers/media/pci/saa7134/
9432
9433 SAA7146 VIDEO4LINUX-2 DRIVER
9434 M:      Hans Verkuil <hverkuil@xs4all.nl>
9435 L:      linux-media@vger.kernel.org
9436 T:      git git://linuxtv.org/media_tree.git
9437 S:      Maintained
9438 F:      drivers/media/common/saa7146/
9439 F:      drivers/media/pci/saa7146/
9440 F:      include/media/saa7146*
9441
9442 SAMSUNG LAPTOP DRIVER
9443 M:      Corentin Chary <corentin.chary@gmail.com>
9444 L:      platform-driver-x86@vger.kernel.org
9445 S:      Maintained
9446 F:      drivers/platform/x86/samsung-laptop.c
9447
9448 SAMSUNG AUDIO (ASoC) DRIVERS
9449 M:      Sangbeom Kim <sbkim73@samsung.com>
9450 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9451 S:      Supported
9452 F:      sound/soc/samsung/
9453
9454 SAMSUNG FRAMEBUFFER DRIVER
9455 M:      Jingoo Han <jingoohan1@gmail.com>
9456 L:      linux-fbdev@vger.kernel.org
9457 S:      Maintained
9458 F:      drivers/video/fbdev/s3c-fb.c
9459
9460 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
9461 M:      Sangbeom Kim <sbkim73@samsung.com>
9462 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
9463 L:      linux-kernel@vger.kernel.org
9464 L:      linux-samsung-soc@vger.kernel.org
9465 S:      Supported
9466 F:      drivers/mfd/sec*.c
9467 F:      drivers/regulator/s2m*.c
9468 F:      drivers/regulator/s5m*.c
9469 F:      drivers/clk/clk-s2mps11.c
9470 F:      drivers/rtc/rtc-s5m.c
9471 F:      include/linux/mfd/samsung/
9472 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
9473 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
9474 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
9475 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
9476
9477 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
9478 M:      Kyungmin Park <kyungmin.park@samsung.com>
9479 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
9480 L:      linux-media@vger.kernel.org
9481 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
9482 S:      Supported
9483 F:      drivers/media/platform/exynos4-is/
9484
9485 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
9486 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
9487 L:      linux-media@vger.kernel.org
9488 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9489 S:      Maintained
9490 F:      drivers/media/platform/s3c-camif/
9491 F:      include/media/drv-intf/s3c_camif.h
9492
9493 SAMSUNG S5C73M3 CAMERA DRIVER
9494 M:      Kyungmin Park <kyungmin.park@samsung.com>
9495 M:      Andrzej Hajda <a.hajda@samsung.com>
9496 L:      linux-media@vger.kernel.org
9497 S:      Supported
9498 F:      drivers/media/i2c/s5c73m3/*
9499
9500 SAMSUNG S5K5BAF CAMERA DRIVER
9501 M:      Kyungmin Park <kyungmin.park@samsung.com>
9502 M:      Andrzej Hajda <a.hajda@samsung.com>
9503 L:      linux-media@vger.kernel.org
9504 S:      Supported
9505 F:      drivers/media/i2c/s5k5baf.c
9506
9507 SAMSUNG S3FWRN5 NFC DRIVER
9508 M:      Robert Baldyga <r.baldyga@samsung.com>
9509 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
9510 S:      Supported
9511 F:      drivers/nfc/s3fwrn5
9512
9513 SAMSUNG SOC CLOCK DRIVERS
9514 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
9515 M:      Tomasz Figa <tomasz.figa@gmail.com>
9516 S:      Supported
9517 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9518 F:      drivers/clk/samsung/
9519
9520 SAMSUNG SXGBE DRIVERS
9521 M:      Byungho An <bh74.an@samsung.com>
9522 M:      Girish K S <ks.giri@samsung.com>
9523 M:      Vipul Pandya <vipul.pandya@samsung.com>
9524 S:      Supported
9525 L:      netdev@vger.kernel.org
9526 F:      drivers/net/ethernet/samsung/sxgbe/
9527
9528 SAMSUNG THERMAL DRIVER
9529 M:      Lukasz Majewski <l.majewski@samsung.com>
9530 L:      linux-pm@vger.kernel.org
9531 L:      linux-samsung-soc@vger.kernel.org
9532 S:      Supported
9533 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
9534 F:      drivers/thermal/samsung/
9535
9536 SAMSUNG USB2 PHY DRIVER
9537 M:      Kamil Debski <k.debski@samsung.com>
9538 L:      linux-kernel@vger.kernel.org
9539 S:      Supported
9540 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
9541 F:      Documentation/phy/samsung-usb2.txt
9542 F:      drivers/phy/phy-exynos4210-usb2.c
9543 F:      drivers/phy/phy-exynos4x12-usb2.c
9544 F:      drivers/phy/phy-exynos5250-usb2.c
9545 F:      drivers/phy/phy-s5pv210-usb2.c
9546 F:      drivers/phy/phy-samsung-usb2.c
9547 F:      drivers/phy/phy-samsung-usb2.h
9548
9549 SERIAL DRIVERS
9550 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9551 L:      linux-serial@vger.kernel.org
9552 S:      Maintained
9553 F:      drivers/tty/serial/
9554
9555 SYNOPSYS DESIGNWARE DMAC DRIVER
9556 M:      Viresh Kumar <vireshk@kernel.org>
9557 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9558 S:      Maintained
9559 F:      include/linux/dma/dw.h
9560 F:      include/linux/platform_data/dma-dw.h
9561 F:      drivers/dma/dw/
9562
9563 SYNOPSYS DESIGNWARE ETHERNET QOS 4.10a driver
9564 M: Lars Persson <lars.persson@axis.com>
9565 L: netdev@vger.kernel.org
9566 S: Supported
9567 F: Documentation/devicetree/bindings/net/snps,dwc-qos-ethernet.txt
9568 F: drivers/net/ethernet/synopsys/dwc_eth_qos.c
9569
9570 SYNOPSYS DESIGNWARE I2C DRIVER
9571 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9572 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
9573 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9574 L:      linux-i2c@vger.kernel.org
9575 S:      Maintained
9576 F:      drivers/i2c/busses/i2c-designware-*
9577 F:      include/linux/platform_data/i2c-designware.h
9578
9579 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
9580 M:      Jaehoon Chung <jh80.chung@samsung.com>
9581 L:      linux-mmc@vger.kernel.org
9582 S:      Maintained
9583 F:      include/linux/mmc/dw_mmc.h
9584 F:      drivers/mmc/host/dw_mmc*
9585
9586 SYSTEM TRACE MODULE CLASS
9587 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
9588 S:      Maintained
9589 F:      Documentation/trace/stm.txt
9590 F:      drivers/hwtracing/stm/
9591 F:      include/linux/stm.h
9592 F:      include/uapi/linux/stm.h
9593
9594 THUNDERBOLT DRIVER
9595 M:      Andreas Noever <andreas.noever@gmail.com>
9596 S:      Maintained
9597 F:      drivers/thunderbolt/
9598
9599 TI BQ27XXX POWER SUPPLY DRIVER
9600 R:      Andrew F. Davis <afd@ti.com>
9601 F:      include/linux/power/bq27xxx_battery.h
9602 F:      drivers/power/bq27xxx_battery.c
9603 F:      drivers/power/bq27xxx_battery_i2c.c
9604
9605 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
9606 M:      John Stultz <john.stultz@linaro.org>
9607 M:      Thomas Gleixner <tglx@linutronix.de>
9608 L:      linux-kernel@vger.kernel.org
9609 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
9610 S:      Supported
9611 F:      include/linux/clocksource.h
9612 F:      include/linux/time.h
9613 F:      include/linux/timex.h
9614 F:      include/uapi/linux/time.h
9615 F:      include/uapi/linux/timex.h
9616 F:      kernel/time/clocksource.c
9617 F:      kernel/time/time*.c
9618 F:      kernel/time/alarmtimer.c
9619 F:      kernel/time/ntp.c
9620 F:      tools/testing/selftests/timers/
9621
9622 SC1200 WDT DRIVER
9623 M:      Zwane Mwaikambo <zwanem@gmail.com>
9624 S:      Maintained
9625 F:      drivers/watchdog/sc1200wdt.c
9626
9627 SCHEDULER
9628 M:      Ingo Molnar <mingo@redhat.com>
9629 M:      Peter Zijlstra <peterz@infradead.org>
9630 L:      linux-kernel@vger.kernel.org
9631 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
9632 S:      Maintained
9633 F:      kernel/sched/
9634 F:      include/linux/sched.h
9635 F:      include/uapi/linux/sched.h
9636 F:      include/linux/wait.h
9637
9638 SCORE ARCHITECTURE
9639 M:      Chen Liqin <liqin.linux@gmail.com>
9640 M:      Lennox Wu <lennox.wu@gmail.com>
9641 W:      http://www.sunplus.com
9642 S:      Supported
9643 F:      arch/score/
9644
9645 SYSTEM CONTROL & POWER INTERFACE (SCPI) Message Protocol drivers
9646 M:      Sudeep Holla <sudeep.holla@arm.com>
9647 L:      linux-arm-kernel@lists.infradead.org
9648 S:      Maintained
9649 F:      Documentation/devicetree/bindings/arm/arm,scpi.txt
9650 F:      drivers/clk/clk-scpi.c
9651 F:      drivers/cpufreq/scpi-cpufreq.c
9652 F:      drivers/firmware/arm_scpi.c
9653 F:      include/linux/scpi_protocol.h
9654
9655 SCSI CDROM DRIVER
9656 M:      Jens Axboe <axboe@kernel.dk>
9657 L:      linux-scsi@vger.kernel.org
9658 W:      http://www.kernel.dk
9659 S:      Maintained
9660 F:      drivers/scsi/sr*
9661
9662 SCSI RDMA PROTOCOL (SRP) INITIATOR
9663 M:      Bart Van Assche <bart.vanassche@sandisk.com>
9664 L:      linux-rdma@vger.kernel.org
9665 S:      Supported
9666 W:      http://www.openfabrics.org
9667 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9668 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
9669 F:      drivers/infiniband/ulp/srp/
9670 F:      include/scsi/srp.h
9671
9672 SCSI SG DRIVER
9673 M:      Doug Gilbert <dgilbert@interlog.com>
9674 L:      linux-scsi@vger.kernel.org
9675 W:      http://sg.danny.cz/sg
9676 S:      Maintained
9677 F:      Documentation/scsi/scsi-generic.txt
9678 F:      drivers/scsi/sg.c
9679 F:      include/scsi/sg.h
9680
9681 SCSI SUBSYSTEM
9682 M:      "James E.J. Bottomley" <JBottomley@odin.com>
9683 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
9684 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
9685 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
9686 L:      linux-scsi@vger.kernel.org
9687 S:      Maintained
9688 F:      drivers/scsi/
9689 F:      include/scsi/
9690
9691 SCSI TAPE DRIVER
9692 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
9693 L:      linux-scsi@vger.kernel.org
9694 S:      Maintained
9695 F:      Documentation/scsi/st.txt
9696 F:      drivers/scsi/st.*
9697 F:      drivers/scsi/st_*.h
9698
9699 SCTP PROTOCOL
9700 M:      Vlad Yasevich <vyasevich@gmail.com>
9701 M:      Neil Horman <nhorman@tuxdriver.com>
9702 L:      linux-sctp@vger.kernel.org
9703 W:      http://lksctp.sourceforge.net
9704 S:      Maintained
9705 F:      Documentation/networking/sctp.txt
9706 F:      include/linux/sctp.h
9707 F:      include/uapi/linux/sctp.h
9708 F:      include/net/sctp/
9709 F:      net/sctp/
9710
9711 SCx200 CPU SUPPORT
9712 M:      Jim Cromie <jim.cromie@gmail.com>
9713 S:      Odd Fixes
9714 F:      Documentation/i2c/busses/scx200_acb
9715 F:      arch/x86/platform/scx200/
9716 F:      drivers/watchdog/scx200_wdt.c
9717 F:      drivers/i2c/busses/scx200*
9718 F:      drivers/mtd/maps/scx200_docflash.c
9719 F:      include/linux/scx200.h
9720
9721 SCx200 GPIO DRIVER
9722 M:      Jim Cromie <jim.cromie@gmail.com>
9723 S:      Maintained
9724 F:      drivers/char/scx200_gpio.c
9725 F:      include/linux/scx200_gpio.h
9726
9727 SCx200 HRT CLOCKSOURCE DRIVER
9728 M:      Jim Cromie <jim.cromie@gmail.com>
9729 S:      Maintained
9730 F:      drivers/clocksource/scx200_hrt.c
9731
9732 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
9733 M:      Sascha Sommer <saschasommer@freenet.de>
9734 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
9735 S:      Maintained
9736 F:      drivers/mmc/host/sdricoh_cs.c
9737
9738 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
9739 L:      linux-mmc@vger.kernel.org
9740 S:      Orphan
9741 F:      drivers/mmc/host/sdhci.*
9742 F:      drivers/mmc/host/sdhci-pltfm.[ch]
9743
9744 SECURE COMPUTING
9745 M:      Kees Cook <keescook@chromium.org>
9746 R:      Andy Lutomirski <luto@amacapital.net>
9747 R:      Will Drewry <wad@chromium.org>
9748 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
9749 S:      Supported
9750 F:      kernel/seccomp.c
9751 F:      include/uapi/linux/seccomp.h
9752 F:      include/linux/seccomp.h
9753 F:      tools/testing/selftests/seccomp/*
9754 K:      \bsecure_computing
9755 K:      \bTIF_SECCOMP\b
9756
9757 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
9758 M:      Ben Dooks <ben-linux@fluff.org>
9759 M:      Jaehoon Chung <jh80.chung@samsung.com>
9760 L:      linux-mmc@vger.kernel.org
9761 S:      Maintained
9762 F:      drivers/mmc/host/sdhci-s3c*
9763
9764 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
9765 M:      Viresh Kumar <vireshk@kernel.org>
9766 L:      spear-devel@list.st.com
9767 L:      linux-mmc@vger.kernel.org
9768 S:      Maintained
9769 F:      drivers/mmc/host/sdhci-spear.c
9770
9771 SECURITY SUBSYSTEM
9772 M:      James Morris <james.l.morris@oracle.com>
9773 M:      "Serge E. Hallyn" <serge@hallyn.com>
9774 L:      linux-security-module@vger.kernel.org (suggested Cc:)
9775 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
9776 W:      http://kernsec.org/
9777 S:      Supported
9778 F:      security/
9779
9780 SECURITY CONTACT
9781 M:      Security Officers <security@kernel.org>
9782 S:      Supported
9783
9784 SELINUX SECURITY MODULE
9785 M:      Paul Moore <paul@paul-moore.com>
9786 M:      Stephen Smalley <sds@tycho.nsa.gov>
9787 M:      Eric Paris <eparis@parisplace.org>
9788 L:      selinux@tycho.nsa.gov (moderated for non-subscribers)
9789 W:      http://selinuxproject.org
9790 T:      git git://git.infradead.org/users/pcmoore/selinux
9791 S:      Supported
9792 F:      include/linux/selinux*
9793 F:      security/selinux/
9794 F:      scripts/selinux/
9795
9796 APPARMOR SECURITY MODULE
9797 M:      John Johansen <john.johansen@canonical.com>
9798 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
9799 W:      apparmor.wiki.kernel.org
9800 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
9801 S:      Supported
9802 F:      security/apparmor/
9803
9804 YAMA SECURITY MODULE
9805 M:      Kees Cook <keescook@chromium.org>
9806 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
9807 S:      Supported
9808 F:      security/yama/
9809
9810 SENSABLE PHANTOM
9811 M:      Jiri Slaby <jirislaby@gmail.com>
9812 S:      Maintained
9813 F:      drivers/misc/phantom.c
9814 F:      include/uapi/linux/phantom.h
9815
9816 SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
9817 M:      Jayamohan Kallickal <jayamohan.kallickal@avagotech.com>
9818 M:      Ketan Mukadam <ketan.mukadam@avagotech.com>
9819 M:      John Soni Jose <sony.john@avagotech.com>
9820 L:      linux-scsi@vger.kernel.org
9821 W:      http://www.avagotech.com
9822 S:      Supported
9823 F:      drivers/scsi/be2iscsi/
9824
9825 Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER
9826 M:      Sathya Perla <sathya.perla@broadcom.com>
9827 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
9828 M:      Padmanabh Ratnakar <padmanabh.ratnakar@broadcom.com>
9829 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
9830 M:      Somnath Kotur <somnath.kotur@broadcom.com>
9831 L:      netdev@vger.kernel.org
9832 W:      http://www.emulex.com
9833 S:      Supported
9834 F:      drivers/net/ethernet/emulex/benet/
9835
9836 EMULEX ONECONNECT ROCE DRIVER
9837 M:      Selvin Xavier <selvin.xavier@avagotech.com>
9838 M:      Devesh Sharma <devesh.sharma@avagotech.com>
9839 M:      Mitesh Ahuja <mitesh.ahuja@avagotech.com>
9840 L:      linux-rdma@vger.kernel.org
9841 W:      http://www.emulex.com
9842 S:      Supported
9843 F:      drivers/infiniband/hw/ocrdma/
9844
9845 SFC NETWORK DRIVER
9846 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
9847 M:      Shradha Shah <sshah@solarflare.com>
9848 L:      netdev@vger.kernel.org
9849 S:      Supported
9850 F:      drivers/net/ethernet/sfc/
9851
9852 SGI GRU DRIVER
9853 M:      Dimitri Sivanich <sivanich@sgi.com>
9854 S:      Maintained
9855 F:      drivers/misc/sgi-gru/
9856
9857 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
9858 M:      Pat Gefre <pfg@sgi.com>
9859 L:      linux-ia64@vger.kernel.org
9860 S:      Supported
9861 F:      Documentation/ia64/serial.txt
9862 F:      drivers/tty/serial/ioc?_serial.c
9863 F:      include/linux/ioc?.h
9864
9865 SGI XP/XPC/XPNET DRIVER
9866 M:      Cliff Whickman <cpw@sgi.com>
9867 M:      Robin Holt <robinmholt@gmail.com>
9868 S:      Maintained
9869 F:      drivers/misc/sgi-xp/
9870
9871 SI2157 MEDIA DRIVER
9872 M:      Antti Palosaari <crope@iki.fi>
9873 L:      linux-media@vger.kernel.org
9874 W:      https://linuxtv.org
9875 W:      http://palosaari.fi/linux/
9876 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9877 T:      git git://linuxtv.org/anttip/media_tree.git
9878 S:      Maintained
9879 F:      drivers/media/tuners/si2157*
9880
9881 SI2168 MEDIA DRIVER
9882 M:      Antti Palosaari <crope@iki.fi>
9883 L:      linux-media@vger.kernel.org
9884 W:      https://linuxtv.org
9885 W:      http://palosaari.fi/linux/
9886 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9887 T:      git git://linuxtv.org/anttip/media_tree.git
9888 S:      Maintained
9889 F:      drivers/media/dvb-frontends/si2168*
9890
9891 SI470X FM RADIO RECEIVER I2C DRIVER
9892 M:      Hans Verkuil <hverkuil@xs4all.nl>
9893 L:      linux-media@vger.kernel.org
9894 T:      git git://linuxtv.org/media_tree.git
9895 W:      https://linuxtv.org
9896 S:      Odd Fixes
9897 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
9898
9899 SI470X FM RADIO RECEIVER USB DRIVER
9900 M:      Hans Verkuil <hverkuil@xs4all.nl>
9901 L:      linux-media@vger.kernel.org
9902 T:      git git://linuxtv.org/media_tree.git
9903 W:      https://linuxtv.org
9904 S:      Maintained
9905 F:      drivers/media/radio/si470x/radio-si470x-common.c
9906 F:      drivers/media/radio/si470x/radio-si470x.h
9907 F:      drivers/media/radio/si470x/radio-si470x-usb.c
9908
9909 SI4713 FM RADIO TRANSMITTER I2C DRIVER
9910 M:      Eduardo Valentin <edubezval@gmail.com>
9911 L:      linux-media@vger.kernel.org
9912 T:      git git://linuxtv.org/media_tree.git
9913 W:      https://linuxtv.org
9914 S:      Odd Fixes
9915 F:      drivers/media/radio/si4713/si4713.?
9916
9917 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
9918 M:      Eduardo Valentin <edubezval@gmail.com>
9919 L:      linux-media@vger.kernel.org
9920 T:      git git://linuxtv.org/media_tree.git
9921 W:      https://linuxtv.org
9922 S:      Odd Fixes
9923 F:      drivers/media/radio/si4713/radio-platform-si4713.c
9924
9925 SI4713 FM RADIO TRANSMITTER USB DRIVER
9926 M:      Hans Verkuil <hverkuil@xs4all.nl>
9927 L:      linux-media@vger.kernel.org
9928 T:      git git://linuxtv.org/media_tree.git
9929 W:      https://linuxtv.org
9930 S:      Maintained
9931 F:      drivers/media/radio/si4713/radio-usb-si4713.c
9932
9933 SIANO DVB DRIVER
9934 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9935 L:      linux-media@vger.kernel.org
9936 W:      https://linuxtv.org
9937 T:      git git://linuxtv.org/media_tree.git
9938 S:      Odd fixes
9939 F:      drivers/media/common/siano/
9940 F:      drivers/media/usb/siano/
9941 F:      drivers/media/usb/siano/
9942 F:      drivers/media/mmc/siano/
9943
9944 SIMPLEFB FB DRIVER
9945 M:      Hans de Goede <hdegoede@redhat.com>
9946 L:      linux-fbdev@vger.kernel.org
9947 S:      Maintained
9948 F:      Documentation/devicetree/bindings/display/simple-framebuffer.txt
9949 F:      drivers/video/fbdev/simplefb.c
9950 F:      include/linux/platform_data/simplefb.h
9951
9952 SH_VEU V4L2 MEM2MEM DRIVER
9953 L:      linux-media@vger.kernel.org
9954 S:      Orphan
9955 F:      drivers/media/platform/sh_veu.c
9956
9957 SH_VOU V4L2 OUTPUT DRIVER
9958 L:      linux-media@vger.kernel.org
9959 S:      Orphan
9960 F:      drivers/media/platform/sh_vou.c
9961 F:      include/media/drv-intf/sh_vou.h
9962
9963 SIMPLE FIRMWARE INTERFACE (SFI)
9964 M:      Len Brown <lenb@kernel.org>
9965 L:      sfi-devel@simplefirmware.org
9966 W:      http://simplefirmware.org/
9967 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
9968 S:      Supported
9969 F:      arch/x86/platform/sfi/
9970 F:      drivers/sfi/
9971 F:      include/linux/sfi*.h
9972
9973 SIMTEC EB110ATX (Chalice CATS)
9974 P:      Ben Dooks
9975 P:      Vincent Sanders <vince@simtec.co.uk>
9976 M:      Simtec Linux Team <linux@simtec.co.uk>
9977 W:      http://www.simtec.co.uk/products/EB110ATX/
9978 S:      Supported
9979
9980 SIMTEC EB2410ITX (BAST)
9981 P:      Ben Dooks
9982 P:      Vincent Sanders <vince@simtec.co.uk>
9983 M:      Simtec Linux Team <linux@simtec.co.uk>
9984 W:      http://www.simtec.co.uk/products/EB2410ITX/
9985 S:      Supported
9986 F:      arch/arm/mach-s3c24xx/mach-bast.c
9987 F:      arch/arm/mach-s3c24xx/bast-ide.c
9988 F:      arch/arm/mach-s3c24xx/bast-irq.c
9989
9990 TI DAVINCI MACHINE SUPPORT
9991 M:      Sekhar Nori <nsekhar@ti.com>
9992 M:      Kevin Hilman <khilman@deeprootsystems.com>
9993 T:      git git://gitorious.org/linux-davinci/linux-davinci.git
9994 Q:      http://patchwork.kernel.org/project/linux-davinci/list/
9995 S:      Supported
9996 F:      arch/arm/mach-davinci/
9997 F:      drivers/i2c/busses/i2c-davinci.c
9998
9999 TI DAVINCI SERIES MEDIA DRIVER
10000 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
10001 L:      linux-media@vger.kernel.org
10002 W:      https://linuxtv.org
10003 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10004 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
10005 S:      Maintained
10006 F:      drivers/media/platform/davinci/
10007 F:      include/media/davinci/
10008
10009 TI AM437X VPFE DRIVER
10010 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
10011 L:      linux-media@vger.kernel.org
10012 W:      https://linuxtv.org
10013 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10014 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
10015 S:      Maintained
10016 F:      drivers/media/platform/am437x/
10017
10018 OV2659 OMNIVISION SENSOR DRIVER
10019 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
10020 L:      linux-media@vger.kernel.org
10021 W:      https://linuxtv.org
10022 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10023 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
10024 S:      Maintained
10025 F:      drivers/media/i2c/ov2659.c
10026 F:      include/media/i2c/ov2659.h
10027
10028 SILICON MOTION SM712 FRAME BUFFER DRIVER
10029 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
10030 M:      Teddy Wang <teddy.wang@siliconmotion.com>
10031 M:      Sudip Mukherjee <sudip@vectorindia.org>
10032 L:      linux-fbdev@vger.kernel.org
10033 S:      Maintained
10034 F:      drivers/video/fbdev/sm712*
10035 F:      Documentation/fb/sm712fb.txt
10036
10037 SIS 190 ETHERNET DRIVER
10038 M:      Francois Romieu <romieu@fr.zoreil.com>
10039 L:      netdev@vger.kernel.org
10040 S:      Maintained
10041 F:      drivers/net/ethernet/sis/sis190.c
10042
10043 SIS 900/7016 FAST ETHERNET DRIVER
10044 M:      Daniele Venzano <venza@brownhat.org>
10045 W:      http://www.brownhat.org/sis900.html
10046 L:      netdev@vger.kernel.org
10047 S:      Maintained
10048 F:      drivers/net/ethernet/sis/sis900.*
10049
10050 SIS FRAMEBUFFER DRIVER
10051 M:      Thomas Winischhofer <thomas@winischhofer.net>
10052 W:      http://www.winischhofer.net/linuxsisvga.shtml
10053 S:      Maintained
10054 F:      Documentation/fb/sisfb.txt
10055 F:      drivers/video/fbdev/sis/
10056 F:      include/video/sisfb.h
10057
10058 SIS USB2VGA DRIVER
10059 M:      Thomas Winischhofer <thomas@winischhofer.net>
10060 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
10061 S:      Maintained
10062 F:      drivers/usb/misc/sisusbvga/
10063
10064 SLAB ALLOCATOR
10065 M:      Christoph Lameter <cl@linux.com>
10066 M:      Pekka Enberg <penberg@kernel.org>
10067 M:      David Rientjes <rientjes@google.com>
10068 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
10069 M:      Andrew Morton <akpm@linux-foundation.org>
10070 L:      linux-mm@kvack.org
10071 S:      Maintained
10072 F:      include/linux/sl?b*.h
10073 F:      mm/sl?b*
10074
10075 SLEEPABLE READ-COPY UPDATE (SRCU)
10076 M:      Lai Jiangshan <jiangshanlai@gmail.com>
10077 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
10078 M:      Josh Triplett <josh@joshtriplett.org>
10079 R:      Steven Rostedt <rostedt@goodmis.org>
10080 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
10081 L:      linux-kernel@vger.kernel.org
10082 W:      http://www.rdrop.com/users/paulmck/RCU/
10083 S:      Supported
10084 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
10085 F:      include/linux/srcu.h
10086 F:      kernel/rcu/srcu.c
10087
10088 SMACK SECURITY MODULE
10089 M:      Casey Schaufler <casey@schaufler-ca.com>
10090 L:      linux-security-module@vger.kernel.org
10091 W:      http://schaufler-ca.com
10092 T:      git git://git.gitorious.org/smack-next/kernel.git
10093 S:      Maintained
10094 F:      Documentation/security/Smack.txt
10095 F:      security/smack/
10096
10097 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
10098 M:      Kevin Hilman <khilman@kernel.org>
10099 M:      Nishanth Menon <nm@ti.com>
10100 S:      Maintained
10101 F:      drivers/power/avs/
10102 F:      include/linux/power/smartreflex.h
10103 L:      linux-pm@vger.kernel.org
10104
10105 SMC91x ETHERNET DRIVER
10106 M:      Nicolas Pitre <nico@fluxnic.net>
10107 S:      Odd Fixes
10108 F:      drivers/net/ethernet/smsc/smc91x.*
10109
10110 SMIA AND SMIA++ IMAGE SENSOR DRIVER
10111 M:      Sakari Ailus <sakari.ailus@iki.fi>
10112 L:      linux-media@vger.kernel.org
10113 S:      Maintained
10114 F:      drivers/media/i2c/smiapp/
10115 F:      include/media/i2c/smiapp.h
10116 F:      drivers/media/i2c/smiapp-pll.c
10117 F:      drivers/media/i2c/smiapp-pll.h
10118 F:      include/uapi/linux/smiapp.h
10119 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
10120
10121 SMM665 HARDWARE MONITOR DRIVER
10122 M:      Guenter Roeck <linux@roeck-us.net>
10123 L:      lm-sensors@lm-sensors.org
10124 S:      Maintained
10125 F:      Documentation/hwmon/smm665
10126 F:      drivers/hwmon/smm665.c
10127
10128 SMSC EMC2103 HARDWARE MONITOR DRIVER
10129 M:      Steve Glendinning <steve.glendinning@shawell.net>
10130 L:      lm-sensors@lm-sensors.org
10131 S:      Maintained
10132 F:      Documentation/hwmon/emc2103
10133 F:      drivers/hwmon/emc2103.c
10134
10135 SMSC SCH5627 HARDWARE MONITOR DRIVER
10136 M:      Hans de Goede <hdegoede@redhat.com>
10137 L:      lm-sensors@lm-sensors.org
10138 S:      Supported
10139 F:      Documentation/hwmon/sch5627
10140 F:      drivers/hwmon/sch5627.c
10141
10142 SMSC47B397 HARDWARE MONITOR DRIVER
10143 M:      Jean Delvare <jdelvare@suse.com>
10144 L:      lm-sensors@lm-sensors.org
10145 S:      Maintained
10146 F:      Documentation/hwmon/smsc47b397
10147 F:      drivers/hwmon/smsc47b397.c
10148
10149 SMSC911x ETHERNET DRIVER
10150 M:      Steve Glendinning <steve.glendinning@shawell.net>
10151 L:      netdev@vger.kernel.org
10152 S:      Maintained
10153 F:      include/linux/smsc911x.h
10154 F:      drivers/net/ethernet/smsc/smsc911x.*
10155
10156 SMSC9420 PCI ETHERNET DRIVER
10157 M:      Steve Glendinning <steve.glendinning@shawell.net>
10158 L:      netdev@vger.kernel.org
10159 S:      Maintained
10160 F:      drivers/net/ethernet/smsc/smsc9420.*
10161
10162 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
10163 M:      Steve Glendinning <steve.glendinning@shawell.net>
10164 L:      linux-fbdev@vger.kernel.org
10165 S:      Maintained
10166 F:      drivers/video/fbdev/smscufx.c
10167
10168 SOC-CAMERA V4L2 SUBSYSTEM
10169 M:      Guennadi Liakhovetski <g.liakhovetski@gmx.de>
10170 L:      linux-media@vger.kernel.org
10171 T:      git git://linuxtv.org/media_tree.git
10172 S:      Maintained
10173 F:      include/media/soc*
10174 F:      drivers/media/i2c/soc_camera/
10175 F:      drivers/media/platform/soc_camera/
10176
10177 SOEKRIS NET48XX LED SUPPORT
10178 M:      Chris Boot <bootc@bootc.net>
10179 S:      Maintained
10180 F:      drivers/leds/leds-net48xx.c
10181
10182 SOFTLOGIC 6x10 MPEG CODEC
10183 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
10184 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
10185 M:      Andrey Utkin <andrey.krieger.utkin@gmail.com>
10186 M:      Ismael Luceno <ismael@iodev.co.uk>
10187 L:      linux-media@vger.kernel.org
10188 S:      Supported
10189 F:      drivers/media/pci/solo6x10/
10190
10191 SOFTWARE RAID (Multiple Disks) SUPPORT
10192 M:      Shaohua Li <shli@kernel.org>
10193 L:      linux-raid@vger.kernel.org
10194 T:      git git://neil.brown.name/md
10195 S:      Supported
10196 F:      drivers/md/
10197 F:      include/linux/raid/
10198 F:      include/uapi/linux/raid/
10199
10200 SONIC NETWORK DRIVER
10201 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
10202 L:      netdev@vger.kernel.org
10203 S:      Maintained
10204 F:      drivers/net/ethernet/natsemi/sonic.*
10205
10206 SONICS SILICON BACKPLANE DRIVER (SSB)
10207 M:      Michael Buesch <m@bues.ch>
10208 L:      linux-wireless@vger.kernel.org
10209 S:      Maintained
10210 F:      drivers/ssb/
10211 F:      include/linux/ssb/
10212
10213 SONY VAIO CONTROL DEVICE DRIVER
10214 M:      Mattia Dongili <malattia@linux.it>
10215 L:      platform-driver-x86@vger.kernel.org
10216 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
10217 S:      Maintained
10218 F:      Documentation/laptops/sony-laptop.txt
10219 F:      drivers/char/sonypi.c
10220 F:      drivers/platform/x86/sony-laptop.c
10221 F:      include/linux/sony-laptop.h
10222
10223 SONY MEMORYSTICK CARD SUPPORT
10224 M:      Alex Dubov <oakad@yahoo.com>
10225 W:      http://tifmxx.berlios.de/
10226 S:      Maintained
10227 F:      drivers/memstick/host/tifm_ms.c
10228
10229 SONY MEMORYSTICK STANDARD SUPPORT
10230 M:      Maxim Levitsky <maximlevitsky@gmail.com>
10231 S:      Maintained
10232 F:      drivers/memstick/core/ms_block.*
10233
10234 SOUND
10235 M:      Jaroslav Kysela <perex@perex.cz>
10236 M:      Takashi Iwai <tiwai@suse.com>
10237 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10238 W:      http://www.alsa-project.org/
10239 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
10240 T:      git git://git.alsa-project.org/alsa-kernel.git
10241 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
10242 S:      Maintained
10243 F:      Documentation/sound/
10244 F:      include/sound/
10245 F:      include/uapi/sound/
10246 F:      sound/
10247
10248 SOUND - COMPRESSED AUDIO
10249 M:      Vinod Koul <vinod.koul@intel.com>
10250 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10251 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
10252 S:      Supported
10253 F:      Documentation/sound/alsa/compress_offload.txt
10254 F:      include/sound/compress_driver.h
10255 F:      include/uapi/sound/compress_*
10256 F:      sound/core/compress_offload.c
10257 F:      sound/soc/soc-compress.c
10258
10259 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
10260 M:      Liam Girdwood <lgirdwood@gmail.com>
10261 M:      Mark Brown <broonie@kernel.org>
10262 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
10263 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10264 W:      http://alsa-project.org/main/index.php/ASoC
10265 S:      Supported
10266 F:      Documentation/sound/alsa/soc/
10267 F:      sound/soc/
10268 F:      include/sound/soc*
10269
10270 SOUND - DMAENGINE HELPERS
10271 M:      Lars-Peter Clausen <lars@metafoo.de>
10272 S:      Supported
10273 F:      include/sound/dmaengine_pcm.h
10274 F:      sound/core/pcm_dmaengine.c
10275 F:      sound/soc/soc-generic-dmaengine-pcm.c
10276
10277 SP2 MEDIA DRIVER
10278 M:      Olli Salonen <olli.salonen@iki.fi>
10279 L:      linux-media@vger.kernel.org
10280 W:      https://linuxtv.org
10281 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10282 S:      Maintained
10283 F:      drivers/media/dvb-frontends/sp2*
10284
10285 SPARC + UltraSPARC (sparc/sparc64)
10286 M:      "David S. Miller" <davem@davemloft.net>
10287 L:      sparclinux@vger.kernel.org
10288 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
10289 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
10290 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
10291 S:      Maintained
10292 F:      arch/sparc/
10293 F:      drivers/sbus/
10294
10295 SPARC SERIAL DRIVERS
10296 M:      "David S. Miller" <davem@davemloft.net>
10297 L:      sparclinux@vger.kernel.org
10298 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
10299 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
10300 S:      Maintained
10301 F:      include/linux/sunserialcore.h
10302 F:      drivers/tty/serial/suncore.c
10303 F:      drivers/tty/serial/sunhv.c
10304 F:      drivers/tty/serial/sunsab.c
10305 F:      drivers/tty/serial/sunsab.h
10306 F:      drivers/tty/serial/sunsu.c
10307 F:      drivers/tty/serial/sunzilog.c
10308 F:      drivers/tty/serial/sunzilog.h
10309
10310 SPARSE CHECKER
10311 M:      "Christopher Li" <sparse@chrisli.org>
10312 L:      linux-sparse@vger.kernel.org
10313 W:      https://sparse.wiki.kernel.org/
10314 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
10315 T:      git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
10316 S:      Maintained
10317 F:      include/linux/compiler.h
10318
10319 SPEAR PLATFORM SUPPORT
10320 M:      Viresh Kumar <vireshk@kernel.org>
10321 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
10322 L:      spear-devel@list.st.com
10323 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10324 W:      http://www.st.com/spear
10325 S:      Maintained
10326 F:      arch/arm/boot/dts/spear*
10327 F:      arch/arm/mach-spear/
10328
10329 SPEAR CLOCK FRAMEWORK SUPPORT
10330 M:      Viresh Kumar <vireshk@kernel.org>
10331 L:      spear-devel@list.st.com
10332 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10333 W:      http://www.st.com/spear
10334 S:      Maintained
10335 F:      drivers/clk/spear/
10336
10337 SPI SUBSYSTEM
10338 M:      Mark Brown <broonie@kernel.org>
10339 L:      linux-spi@vger.kernel.org
10340 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
10341 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
10342 S:      Maintained
10343 F:      Documentation/spi/
10344 F:      drivers/spi/
10345 F:      include/linux/spi/
10346 F:      include/uapi/linux/spi/
10347
10348 SPIDERNET NETWORK DRIVER for CELL
10349 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
10350 L:      netdev@vger.kernel.org
10351 S:      Supported
10352 F:      Documentation/networking/spider_net.txt
10353 F:      drivers/net/ethernet/toshiba/spider_net*
10354
10355 SPU FILE SYSTEM
10356 M:      Jeremy Kerr <jk@ozlabs.org>
10357 L:      linuxppc-dev@lists.ozlabs.org
10358 W:      http://www.ibm.com/developerworks/power/cell/
10359 S:      Supported
10360 F:      Documentation/filesystems/spufs.txt
10361 F:      arch/powerpc/platforms/cell/spufs/
10362
10363 SQUASHFS FILE SYSTEM
10364 M:      Phillip Lougher <phillip@squashfs.org.uk>
10365 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
10366 W:      http://squashfs.org.uk
10367 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
10368 S:      Maintained
10369 F:      Documentation/filesystems/squashfs.txt
10370 F:      fs/squashfs/
10371
10372 SRM (Alpha) environment access
10373 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
10374 S:      Maintained
10375 F:      arch/alpha/kernel/srm_env.c
10376
10377 STABLE BRANCH
10378 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10379 L:      stable@vger.kernel.org
10380 S:      Supported
10381 F:      Documentation/stable_kernel_rules.txt
10382
10383 STAGING SUBSYSTEM
10384 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10385 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
10386 L:      devel@driverdev.osuosl.org
10387 S:      Supported
10388 F:      drivers/staging/
10389
10390 STAGING - COMEDI
10391 M:      Ian Abbott <abbotti@mev.co.uk>
10392 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
10393 S:      Odd Fixes
10394 F:      drivers/staging/comedi/
10395
10396 STAGING - FLARION FT1000 DRIVERS
10397 M:      Marek Belisko <marek.belisko@gmail.com>
10398 S:      Odd Fixes
10399 F:      drivers/staging/ft1000/
10400
10401 STAGING - INDUSTRIAL IO
10402 M:      Jonathan Cameron <jic23@kernel.org>
10403 L:      linux-iio@vger.kernel.org
10404 S:      Odd Fixes
10405 F:      drivers/staging/iio/
10406
10407 STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
10408 M:      Jarod Wilson <jarod@wilsonet.com>
10409 W:      http://www.lirc.org/
10410 S:      Odd Fixes
10411 F:      drivers/staging/media/lirc/
10412
10413 STAGING - LUSTRE PARALLEL FILESYSTEM
10414 M:      Oleg Drokin <oleg.drokin@intel.com>
10415 M:      Andreas Dilger <andreas.dilger@intel.com>
10416 L:      lustre-devel@lists.lustre.org (moderated for non-subscribers)
10417 W:      http://wiki.lustre.org/
10418 S:      Maintained
10419 F:      drivers/staging/lustre
10420
10421 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
10422 M:      Marc Dietrich <marvin24@gmx.de>
10423 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
10424 L:      linux-tegra@vger.kernel.org
10425 S:      Maintained
10426 F:      drivers/staging/nvec/
10427
10428 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
10429 M:      Jens Frederich <jfrederich@gmail.com>
10430 M:      Daniel Drake <dsd@laptop.org>
10431 M:      Jon Nettleton <jon.nettleton@gmail.com>
10432 W:      http://wiki.laptop.org/go/DCON
10433 S:      Maintained
10434 F:      drivers/staging/olpc_dcon/
10435
10436 STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
10437 M:      Willy Tarreau <willy@meta-x.org>
10438 S:      Odd Fixes
10439 F:      drivers/staging/panel/
10440
10441 STAGING - REALTEK RTL8712U DRIVERS
10442 M:      Larry Finger <Larry.Finger@lwfinger.net>
10443 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
10444 S:      Odd Fixes
10445 F:      drivers/staging/rtl8712/
10446
10447 STAGING - REALTEK RTL8723U WIRELESS DRIVER
10448 M:      Larry Finger <Larry.Finger@lwfinger.net>
10449 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
10450 L:      linux-wireless@vger.kernel.org
10451 S:      Maintained
10452 F:      drivers/staging/rtl8723au/
10453
10454 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
10455 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
10456 M:      Teddy Wang <teddy.wang@siliconmotion.com>
10457 M:      Sudip Mukherjee <sudip@vectorindia.org>
10458 L:      linux-fbdev@vger.kernel.org
10459 S:      Maintained
10460 F:      drivers/staging/sm750fb/
10461
10462 STAGING - SLICOSS
10463 M:      Lior Dotan <liodot@gmail.com>
10464 M:      Christopher Harrer <charrer@alacritech.com>
10465 S:      Odd Fixes
10466 F:      drivers/staging/slicoss/
10467
10468 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
10469 M:      William Hubbs <w.d.hubbs@gmail.com>
10470 M:      Chris Brannon <chris@the-brannons.com>
10471 M:      Kirk Reiser <kirk@reisers.ca>
10472 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
10473 L:      speakup@linux-speakup.org
10474 W:      http://www.linux-speakup.org/
10475 S:      Odd Fixes
10476 F:      drivers/staging/speakup/
10477
10478 STAGING - VIA VT665X DRIVERS
10479 M:      Forest Bond <forest@alittletooquiet.net>
10480 S:      Odd Fixes
10481 F:      drivers/staging/vt665?/
10482
10483 STAGING - WILC1000 WIFI DRIVER
10484 M:      Johnny Kim <johnny.kim@atmel.com>
10485 M:      Austin Shin <austin.shin@atmel.com>
10486 M:      Chris Park <chris.park@atmel.com>
10487 M:      Tony Cho <tony.cho@atmel.com>
10488 M:      Glen Lee <glen.lee@atmel.com>
10489 M:      Leo Kim <leo.kim@atmel.com>
10490 L:      linux-wireless@vger.kernel.org
10491 S:      Supported
10492 F:      drivers/staging/wilc1000/
10493
10494 STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
10495 M:      Arnaud Patard <arnaud.patard@rtp-net.org>
10496 S:      Odd Fixes
10497 F:      drivers/staging/xgifb/
10498
10499 HFI1 DRIVER
10500 M:      Mike Marciniszyn <infinipath@intel.com>
10501 L:      linux-rdma@vger.kernel.org
10502 S:      Supported
10503 F:      drivers/staging/rdma/hfi1
10504
10505 STARFIRE/DURALAN NETWORK DRIVER
10506 M:      Ion Badulescu <ionut@badula.org>
10507 S:      Odd Fixes
10508 F:      drivers/net/ethernet/adaptec/starfire*
10509
10510 SUN3/3X
10511 M:      Sam Creasey <sammy@sammy.net>
10512 W:      http://sammy.net/sun3/
10513 S:      Maintained
10514 F:      arch/m68k/kernel/*sun3*
10515 F:      arch/m68k/sun3*/
10516 F:      arch/m68k/include/asm/sun3*
10517 F:      drivers/net/ethernet/i825xx/sun3*
10518
10519 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
10520 M:      Hans de Goede <hdegoede@redhat.com>
10521 L:      linux-input@vger.kernel.org
10522 S:      Maintained
10523 F:      Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
10524 F:      drivers/input/keyboard/sun4i-lradc-keys.c
10525
10526 SUNDANCE NETWORK DRIVER
10527 M:      Denis Kirjanov <kda@linux-powerpc.org>
10528 L:      netdev@vger.kernel.org
10529 S:      Maintained
10530 F:      drivers/net/ethernet/dlink/sundance.c
10531
10532 SUPERH
10533 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
10534 M:      Rich Felker <dalias@libc.org>
10535 L:      linux-sh@vger.kernel.org
10536 Q:      http://patchwork.kernel.org/project/linux-sh/list/
10537 S:      Maintained
10538 F:      Documentation/sh/
10539 F:      arch/sh/
10540 F:      drivers/sh/
10541
10542 SUSPEND TO RAM
10543 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
10544 M:      Len Brown <len.brown@intel.com>
10545 M:      Pavel Machek <pavel@ucw.cz>
10546 L:      linux-pm@vger.kernel.org
10547 S:      Supported
10548 F:      Documentation/power/
10549 F:      arch/x86/kernel/acpi/
10550 F:      drivers/base/power/
10551 F:      kernel/power/
10552 F:      include/linux/suspend.h
10553 F:      include/linux/freezer.h
10554 F:      include/linux/pm.h
10555
10556 SVGA HANDLING
10557 M:      Martin Mares <mj@ucw.cz>
10558 L:      linux-video@atrey.karlin.mff.cuni.cz
10559 S:      Maintained
10560 F:      Documentation/svga.txt
10561 F:      arch/x86/boot/video*
10562
10563 SWIOTLB SUBSYSTEM
10564 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10565 L:      linux-kernel@vger.kernel.org
10566 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
10567 S:      Supported
10568 F:      lib/swiotlb.c
10569 F:      arch/*/kernel/pci-swiotlb.c
10570 F:      include/linux/swiotlb.h
10571
10572 SWITCHDEV
10573 M:      Jiri Pirko <jiri@resnulli.us>
10574 L:      netdev@vger.kernel.org
10575 S:      Supported
10576 F:      net/switchdev/
10577 F:      include/net/switchdev.h
10578
10579 SYNOPSYS ARC ARCHITECTURE
10580 M:      Vineet Gupta <vgupta@synopsys.com>
10581 L:      linux-snps-arc@lists.infradead.org
10582 S:      Supported
10583 F:      arch/arc/
10584 F:      Documentation/devicetree/bindings/arc/*
10585 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
10586 F:      drivers/tty/serial/arc_uart.c
10587 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
10588
10589 SYNOPSYS ARC SDP platform support
10590 M:      Alexey Brodkin <abrodkin@synopsys.com>
10591 S:      Supported
10592 F:      arch/arc/plat-axs10x
10593 F:      arch/arc/boot/dts/ax*
10594 F:      Documentation/devicetree/bindings/arc/axs10*
10595
10596 SYSTEM CONFIGURATION (SYSCON)
10597 M:      Lee Jones <lee.jones@linaro.org>
10598 M:      Arnd Bergmann <arnd@arndb.de>
10599 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
10600 S:      Supported
10601 F:      drivers/mfd/syscon.c
10602
10603 SYSV FILESYSTEM
10604 M:      Christoph Hellwig <hch@infradead.org>
10605 S:      Maintained
10606 F:      Documentation/filesystems/sysv-fs.txt
10607 F:      fs/sysv/
10608 F:      include/linux/sysv_fs.h
10609
10610 TARGET SUBSYSTEM
10611 M:      "Nicholas A. Bellinger" <nab@linux-iscsi.org>
10612 L:      linux-scsi@vger.kernel.org
10613 L:      target-devel@vger.kernel.org
10614 W:      http://www.linux-iscsi.org
10615 W:      http://groups.google.com/group/linux-iscsi-target-dev
10616 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10617 S:      Supported
10618 F:      drivers/target/
10619 F:      include/target/
10620 F:      Documentation/target/
10621
10622 TASKSTATS STATISTICS INTERFACE
10623 M:      Balbir Singh <bsingharora@gmail.com>
10624 S:      Maintained
10625 F:      Documentation/accounting/taskstats*
10626 F:      include/linux/taskstats*
10627 F:      kernel/taskstats.c
10628
10629 TC CLASSIFIER
10630 M:      Jamal Hadi Salim <jhs@mojatatu.com>
10631 L:      netdev@vger.kernel.org
10632 S:      Maintained
10633 F:      include/net/pkt_cls.h
10634 F:      include/uapi/linux/pkt_cls.h
10635 F:      net/sched/
10636
10637 TCP LOW PRIORITY MODULE
10638 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
10639 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
10640 W:      http://tcp-lp-mod.sourceforge.net/
10641 S:      Maintained
10642 F:      net/ipv4/tcp_lp.c
10643
10644 TDA10071 MEDIA DRIVER
10645 M:      Antti Palosaari <crope@iki.fi>
10646 L:      linux-media@vger.kernel.org
10647 W:      https://linuxtv.org
10648 W:      http://palosaari.fi/linux/
10649 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10650 T:      git git://linuxtv.org/anttip/media_tree.git
10651 S:      Maintained
10652 F:      drivers/media/dvb-frontends/tda10071*
10653
10654 TDA18212 MEDIA DRIVER
10655 M:      Antti Palosaari <crope@iki.fi>
10656 L:      linux-media@vger.kernel.org
10657 W:      https://linuxtv.org
10658 W:      http://palosaari.fi/linux/
10659 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10660 T:      git git://linuxtv.org/anttip/media_tree.git
10661 S:      Maintained
10662 F:      drivers/media/tuners/tda18212*
10663
10664 TDA18218 MEDIA DRIVER
10665 M:      Antti Palosaari <crope@iki.fi>
10666 L:      linux-media@vger.kernel.org
10667 W:      https://linuxtv.org
10668 W:      http://palosaari.fi/linux/
10669 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10670 T:      git git://linuxtv.org/anttip/media_tree.git
10671 S:      Maintained
10672 F:      drivers/media/tuners/tda18218*
10673
10674 TDA18271 MEDIA DRIVER
10675 M:      Michael Krufky <mkrufky@linuxtv.org>
10676 L:      linux-media@vger.kernel.org
10677 W:      https://linuxtv.org
10678 W:      http://github.com/mkrufky
10679 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10680 T:      git git://linuxtv.org/mkrufky/tuners.git
10681 S:      Maintained
10682 F:      drivers/media/tuners/tda18271*
10683
10684 TDA827x MEDIA DRIVER
10685 M:      Michael Krufky <mkrufky@linuxtv.org>
10686 L:      linux-media@vger.kernel.org
10687 W:      https://linuxtv.org
10688 W:      http://github.com/mkrufky
10689 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10690 T:      git git://linuxtv.org/mkrufky/tuners.git
10691 S:      Maintained
10692 F:      drivers/media/tuners/tda8290.*
10693
10694 TDA8290 MEDIA DRIVER
10695 M:      Michael Krufky <mkrufky@linuxtv.org>
10696 L:      linux-media@vger.kernel.org
10697 W:      https://linuxtv.org
10698 W:      http://github.com/mkrufky
10699 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10700 T:      git git://linuxtv.org/mkrufky/tuners.git
10701 S:      Maintained
10702 F:      drivers/media/tuners/tda8290.*
10703
10704 TDA9840 MEDIA DRIVER
10705 M:      Hans Verkuil <hverkuil@xs4all.nl>
10706 L:      linux-media@vger.kernel.org
10707 T:      git git://linuxtv.org/media_tree.git
10708 W:      https://linuxtv.org
10709 S:      Maintained
10710 F:      drivers/media/i2c/tda9840*
10711
10712 TEA5761 TUNER DRIVER
10713 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10714 L:      linux-media@vger.kernel.org
10715 W:      https://linuxtv.org
10716 T:      git git://linuxtv.org/media_tree.git
10717 S:      Odd fixes
10718 F:      drivers/media/tuners/tea5761.*
10719
10720 TEA5767 TUNER DRIVER
10721 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10722 L:      linux-media@vger.kernel.org
10723 W:      https://linuxtv.org
10724 T:      git git://linuxtv.org/media_tree.git
10725 S:      Maintained
10726 F:      drivers/media/tuners/tea5767.*
10727
10728 TEA6415C MEDIA DRIVER
10729 M:      Hans Verkuil <hverkuil@xs4all.nl>
10730 L:      linux-media@vger.kernel.org
10731 T:      git git://linuxtv.org/media_tree.git
10732 W:      https://linuxtv.org
10733 S:      Maintained
10734 F:      drivers/media/i2c/tea6415c*
10735
10736 TEA6420 MEDIA DRIVER
10737 M:      Hans Verkuil <hverkuil@xs4all.nl>
10738 L:      linux-media@vger.kernel.org
10739 T:      git git://linuxtv.org/media_tree.git
10740 W:      https://linuxtv.org
10741 S:      Maintained
10742 F:      drivers/media/i2c/tea6420*
10743
10744 TEAM DRIVER
10745 M:      Jiri Pirko <jiri@resnulli.us>
10746 L:      netdev@vger.kernel.org
10747 S:      Supported
10748 F:      drivers/net/team/
10749 F:      include/linux/if_team.h
10750 F:      include/uapi/linux/if_team.h
10751
10752 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
10753 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
10754 S:      Maintained
10755 F:      arch/x86/platform/ts5500/
10756
10757 TECHNOTREND USB IR RECEIVER
10758 M:      Sean Young <sean@mess.org>
10759 L:      linux-media@vger.kernel.org
10760 S:      Maintained
10761 F:      drivers/media/rc/ttusbir.c
10762
10763 TEGRA ARCHITECTURE SUPPORT
10764 M:      Stephen Warren <swarren@wwwdotorg.org>
10765 M:      Thierry Reding <thierry.reding@gmail.com>
10766 M:      Alexandre Courbot <gnurou@gmail.com>
10767 L:      linux-tegra@vger.kernel.org
10768 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
10769 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
10770 S:      Supported
10771 N:      [^a-z]tegra
10772
10773 TEGRA CLOCK DRIVER
10774 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
10775 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
10776 S:      Supported
10777 F:      drivers/clk/tegra/
10778
10779 TEGRA DMA DRIVER
10780 M:      Laxman Dewangan <ldewangan@nvidia.com>
10781 S:      Supported
10782 F:      drivers/dma/tegra20-apb-dma.c
10783
10784 TEGRA I2C DRIVER
10785 M:      Laxman Dewangan <ldewangan@nvidia.com>
10786 S:      Supported
10787 F:      drivers/i2c/busses/i2c-tegra.c
10788
10789 TEGRA IOMMU DRIVERS
10790 M:      Hiroshi Doyu <hdoyu@nvidia.com>
10791 S:      Supported
10792 F:      drivers/iommu/tegra*
10793
10794 TEGRA KBC DRIVER
10795 M:      Rakesh Iyer <riyer@nvidia.com>
10796 M:      Laxman Dewangan <ldewangan@nvidia.com>
10797 S:      Supported
10798 F:      drivers/input/keyboard/tegra-kbc.c
10799
10800 TEGRA PWM DRIVER
10801 M:      Thierry Reding <thierry.reding@gmail.com>
10802 S:      Supported
10803 F:      drivers/pwm/pwm-tegra.c
10804
10805 TEGRA SERIAL DRIVER
10806 M:      Laxman Dewangan <ldewangan@nvidia.com>
10807 S:      Supported
10808 F:      drivers/tty/serial/serial-tegra.c
10809
10810 TEGRA SPI DRIVER
10811 M:      Laxman Dewangan <ldewangan@nvidia.com>
10812 S:      Supported
10813 F:      drivers/spi/spi-tegra*
10814
10815 TEHUTI ETHERNET DRIVER
10816 M:      Andy Gospodarek <andy@greyhouse.net>
10817 L:      netdev@vger.kernel.org
10818 S:      Supported
10819 F:      drivers/net/ethernet/tehuti/*
10820
10821 Telecom Clock Driver for MCPL0010
10822 M:      Mark Gross <mark.gross@intel.com>
10823 S:      Supported
10824 F:      drivers/char/tlclk.c
10825
10826 TENSILICA XTENSA PORT (xtensa)
10827 M:      Chris Zankel <chris@zankel.net>
10828 M:      Max Filippov <jcmvbkbc@gmail.com>
10829 L:      linux-xtensa@linux-xtensa.org
10830 T:      git git://github.com/czankel/xtensa-linux.git
10831 S:      Maintained
10832 F:      arch/xtensa/
10833 F:      drivers/irqchip/irq-xtensa-*
10834
10835 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
10836 M:      Hans Verkuil <hverkuil@xs4all.nl>
10837 L:      linux-media@vger.kernel.org
10838 T:      git git://linuxtv.org/media_tree.git
10839 W:      https://linuxtv.org
10840 S:      Maintained
10841 F:      drivers/media/radio/radio-raremono.c
10842
10843 THERMAL
10844 M:      Zhang Rui <rui.zhang@intel.com>
10845 M:      Eduardo Valentin <edubezval@gmail.com>
10846 L:      linux-pm@vger.kernel.org
10847 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
10848 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
10849 Q:      https://patchwork.kernel.org/project/linux-pm/list/
10850 S:      Supported
10851 F:      drivers/thermal/
10852 F:      include/linux/thermal.h
10853 F:      include/uapi/linux/thermal.h
10854 F:      include/linux/cpu_cooling.h
10855 F:      Documentation/devicetree/bindings/thermal/
10856
10857 THERMAL/CPU_COOLING
10858 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
10859 M:      Viresh Kumar <viresh.kumar@linaro.org>
10860 M:      Javi Merino <javi.merino@arm.com>
10861 L:      linux-pm@vger.kernel.org
10862 S:      Supported
10863 F:      Documentation/thermal/cpu-cooling-api.txt
10864 F:      drivers/thermal/cpu_cooling.c
10865 F:      include/linux/cpu_cooling.h
10866
10867 THINGM BLINK(1) USB RGB LED DRIVER
10868 M:      Vivien Didelot <vivien.didelot@savoirfairelinux.com>
10869 S:      Maintained
10870 F:      drivers/hid/hid-thingm.c
10871
10872 THINKPAD ACPI EXTRAS DRIVER
10873 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
10874 L:      ibm-acpi-devel@lists.sourceforge.net
10875 L:      platform-driver-x86@vger.kernel.org
10876 W:      http://ibm-acpi.sourceforge.net
10877 W:      http://thinkwiki.org/wiki/Ibm-acpi
10878 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
10879 S:      Maintained
10880 F:      drivers/platform/x86/thinkpad_acpi.c
10881
10882 TI BANDGAP AND THERMAL DRIVER
10883 M:      Eduardo Valentin <edubezval@gmail.com>
10884 L:      linux-pm@vger.kernel.org
10885 L:      linux-omap@vger.kernel.org
10886 S:      Maintained
10887 F:      drivers/thermal/ti-soc-thermal/
10888
10889 TI CDCE706 CLOCK DRIVER
10890 M:      Max Filippov <jcmvbkbc@gmail.com>
10891 S:      Maintained
10892 F:      drivers/clk/clk-cdce706.c
10893
10894 TI CLOCK DRIVER
10895 M:      Tero Kristo <t-kristo@ti.com>
10896 L:      linux-omap@vger.kernel.org
10897 S:      Maintained
10898 F:      drivers/clk/ti/
10899 F:      include/linux/clk/ti.h
10900
10901 TI FLASH MEDIA INTERFACE DRIVER
10902 M:      Alex Dubov <oakad@yahoo.com>
10903 S:      Maintained
10904 F:      drivers/misc/tifm*
10905 F:      drivers/mmc/host/tifm_sd.c
10906 F:      include/linux/tifm.h
10907
10908 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
10909 M:      Santosh Shilimkar <ssantosh@kernel.org>
10910 L:      linux-kernel@vger.kernel.org
10911 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10912 S:      Maintained
10913 F:      drivers/soc/ti/*
10914 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
10915
10916
10917 TI LM49xxx FAMILY ASoC CODEC DRIVERS
10918 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
10919 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
10920 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10921 S:      Maintained
10922 F:      sound/soc/codecs/lm49453*
10923 F:      sound/soc/codecs/isabelle*
10924
10925 TI LP855x BACKLIGHT DRIVER
10926 M:      Milo Kim <milo.kim@ti.com>
10927 S:      Maintained
10928 F:      Documentation/backlight/lp855x-driver.txt
10929 F:      drivers/video/backlight/lp855x_bl.c
10930 F:      include/linux/platform_data/lp855x.h
10931
10932 TI LP8727 CHARGER DRIVER
10933 M:      Milo Kim <milo.kim@ti.com>
10934 S:      Maintained
10935 F:      drivers/power/lp8727_charger.c
10936 F:      include/linux/platform_data/lp8727.h
10937
10938 TI LP8788 MFD DRIVER
10939 M:      Milo Kim <milo.kim@ti.com>
10940 S:      Maintained
10941 F:      drivers/iio/adc/lp8788_adc.c
10942 F:      drivers/leds/leds-lp8788.c
10943 F:      drivers/mfd/lp8788*.c
10944 F:      drivers/power/lp8788-charger.c
10945 F:      drivers/regulator/lp8788-*.c
10946 F:      include/linux/mfd/lp8788*.h
10947
10948 TI NETCP ETHERNET DRIVER
10949 M:      Wingman Kwok <w-kwok2@ti.com>
10950 M:      Murali Karicheri <m-karicheri2@ti.com>
10951 L:      netdev@vger.kernel.org
10952 S:      Maintained
10953 F:      drivers/net/ethernet/ti/netcp*
10954
10955 TI TAS571X FAMILY ASoC CODEC DRIVER
10956 M:      Kevin Cernekee <cernekee@chromium.org>
10957 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10958 S:      Odd Fixes
10959 F:      sound/soc/codecs/tas571x*
10960
10961 TI TWL4030 SERIES SOC CODEC DRIVER
10962 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
10963 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10964 S:      Maintained
10965 F:      sound/soc/codecs/twl4030*
10966
10967 TI WILINK WIRELESS DRIVERS
10968 L:      linux-wireless@vger.kernel.org
10969 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
10970 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
10971 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
10972 S:      Orphan
10973 F:      drivers/net/wireless/ti/
10974 F:      include/linux/wl12xx.h
10975
10976 TIPC NETWORK LAYER
10977 M:      Jon Maloy <jon.maloy@ericsson.com>
10978 M:      Ying Xue <ying.xue@windriver.com>
10979 L:      netdev@vger.kernel.org (core kernel code)
10980 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
10981 W:      http://tipc.sourceforge.net/
10982 S:      Maintained
10983 F:      include/uapi/linux/tipc*.h
10984 F:      net/tipc/
10985
10986 TILE ARCHITECTURE
10987 M:      Chris Metcalf <cmetcalf@ezchip.com>
10988 W:      http://www.ezchip.com/scm/
10989 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cmetcalf/linux-tile.git
10990 S:      Supported
10991 F:      arch/tile/
10992 F:      drivers/char/tile-srom.c
10993 F:      drivers/edac/tile_edac.c
10994 F:      drivers/net/ethernet/tile/
10995 F:      drivers/rtc/rtc-tile.c
10996 F:      drivers/tty/hvc/hvc_tile.c
10997 F:      drivers/tty/serial/tilegx.c
10998 F:      drivers/usb/host/*-tilegx.c
10999 F:      include/linux/usb/tilegx.h
11000
11001 TLAN NETWORK DRIVER
11002 M:      Samuel Chessman <chessman@tux.org>
11003 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
11004 W:      http://sourceforge.net/projects/tlan/
11005 S:      Maintained
11006 F:      Documentation/networking/tlan.txt
11007 F:      drivers/net/ethernet/ti/tlan.*
11008
11009 TOMOYO SECURITY MODULE
11010 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
11011 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
11012 L:      tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
11013 L:      tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
11014 L:      tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
11015 L:      tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
11016 W:      http://tomoyo.sourceforge.jp/
11017 T:      quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
11018 S:      Maintained
11019 F:      security/tomoyo/
11020
11021 TOPSTAR LAPTOP EXTRAS DRIVER
11022 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
11023 L:      platform-driver-x86@vger.kernel.org
11024 S:      Maintained
11025 F:      drivers/platform/x86/topstar-laptop.c
11026
11027 TOSHIBA ACPI EXTRAS DRIVER
11028 M:      Azael Avalos <coproscefalo@gmail.com>
11029 L:      platform-driver-x86@vger.kernel.org
11030 S:      Maintained
11031 F:      drivers/platform/x86/toshiba_acpi.c
11032
11033 TOSHIBA BLUETOOTH DRIVER
11034 M:      Azael Avalos <coproscefalo@gmail.com>
11035 L:      platform-driver-x86@vger.kernel.org
11036 S:      Maintained
11037 F:      drivers/platform/x86/toshiba_bluetooth.c
11038
11039 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
11040 M:      Azael Avalos <coproscefalo@gmail.com>
11041 L:      platform-driver-x86@vger.kernel.org
11042 S:      Maintained
11043 F:      drivers/platform/x86/toshiba_haps.c
11044
11045 TOSHIBA WMI HOTKEYS DRIVER
11046 M:      Azael Avalos <coproscefalo@gmail.com>
11047 L:      platform-driver-x86@vger.kernel.org
11048 S:      Maintained
11049 F:      drivers/platform/x86/toshiba-wmi.c
11050
11051 TOSHIBA SMM DRIVER
11052 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
11053 W:      http://www.buzzard.org.uk/toshiba/
11054 S:      Maintained
11055 F:      drivers/char/toshiba.c
11056 F:      include/linux/toshiba.h
11057 F:      include/uapi/linux/toshiba.h
11058
11059 TOSHIBA TC358743 DRIVER
11060 M:      Mats Randgaard <matrandg@cisco.com>
11061 L:      linux-media@vger.kernel.org
11062 S:      Maintained
11063 F:      drivers/media/i2c/tc358743*
11064 F:      include/media/i2c/tc358743.h
11065
11066 TMIO MMC DRIVER
11067 M:      Ian Molton <ian@mnementh.co.uk>
11068 L:      linux-mmc@vger.kernel.org
11069 S:      Maintained
11070 F:      drivers/mmc/host/tmio_mmc*
11071 F:      drivers/mmc/host/sh_mobile_sdhi.c
11072 F:      include/linux/mmc/tmio.h
11073 F:      include/linux/mmc/sh_mobile_sdhi.h
11074
11075 TMP401 HARDWARE MONITOR DRIVER
11076 M:      Guenter Roeck <linux@roeck-us.net>
11077 L:      lm-sensors@lm-sensors.org
11078 S:      Maintained
11079 F:      Documentation/hwmon/tmp401
11080 F:      drivers/hwmon/tmp401.c
11081
11082 TMPFS (SHMEM FILESYSTEM)
11083 M:      Hugh Dickins <hughd@google.com>
11084 L:      linux-mm@kvack.org
11085 S:      Maintained
11086 F:      include/linux/shmem_fs.h
11087 F:      mm/shmem.c
11088
11089 TM6000 VIDEO4LINUX DRIVER
11090 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
11091 L:      linux-media@vger.kernel.org
11092 W:      https://linuxtv.org
11093 T:      git git://linuxtv.org/media_tree.git
11094 S:      Odd fixes
11095 F:      drivers/media/usb/tm6000/
11096
11097 TW68 VIDEO4LINUX DRIVER
11098 M:      Hans Verkuil <hverkuil@xs4all.nl>
11099 L:      linux-media@vger.kernel.org
11100 T:      git git://linuxtv.org/media_tree.git
11101 W:      https://linuxtv.org
11102 S:      Odd Fixes
11103 F:      drivers/media/pci/tw68/
11104
11105 TPM DEVICE DRIVER
11106 M:      Peter Huewe <peterhuewe@gmx.de>
11107 M:      Marcel Selhorst <tpmdd@selhorst.net>
11108 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
11109 R:      Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
11110 W:      http://tpmdd.sourceforge.net
11111 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
11112 Q:      git git://github.com/PeterHuewe/linux-tpmdd.git
11113 T:      git https://github.com/PeterHuewe/linux-tpmdd
11114 S:      Maintained
11115 F:      drivers/char/tpm/
11116
11117 TPM IBM_VTPM DEVICE DRIVER
11118 M:      Ashley Lai <ashleydlai@gmail.com>
11119 W:      http://tpmdd.sourceforge.net
11120 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
11121 S:      Maintained
11122 F:      drivers/char/tpm/tpm_ibmvtpm*
11123
11124 TRACING
11125 M:      Steven Rostedt <rostedt@goodmis.org>
11126 M:      Ingo Molnar <mingo@redhat.com>
11127 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
11128 S:      Maintained
11129 F:      Documentation/trace/ftrace.txt
11130 F:      arch/*/*/*/ftrace.h
11131 F:      arch/*/kernel/ftrace.c
11132 F:      include/*/ftrace.h
11133 F:      include/linux/trace*.h
11134 F:      include/trace/
11135 F:      kernel/trace/
11136 F:      tools/testing/selftests/ftrace/
11137
11138 TRIVIAL PATCHES
11139 M:      Jiri Kosina <trivial@kernel.org>
11140 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
11141 S:      Maintained
11142 K:      ^Subject:.*(?i)trivial
11143
11144 TTY LAYER
11145 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11146 M:      Jiri Slaby <jslaby@suse.com>
11147 S:      Supported
11148 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
11149 F:      Documentation/serial/
11150 F:      drivers/tty/
11151 F:      drivers/tty/serial/serial_core.c
11152 F:      include/linux/serial_core.h
11153 F:      include/linux/serial.h
11154 F:      include/linux/tty.h
11155 F:      include/uapi/linux/serial_core.h
11156 F:      include/uapi/linux/serial.h
11157 F:      include/uapi/linux/tty.h
11158
11159 TUA9001 MEDIA DRIVER
11160 M:      Antti Palosaari <crope@iki.fi>
11161 L:      linux-media@vger.kernel.org
11162 W:      https://linuxtv.org
11163 W:      http://palosaari.fi/linux/
11164 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11165 T:      git git://linuxtv.org/anttip/media_tree.git
11166 S:      Maintained
11167 F:      drivers/media/tuners/tua9001*
11168
11169 TULIP NETWORK DRIVERS
11170 L:      netdev@vger.kernel.org
11171 L:      linux-parisc@vger.kernel.org
11172 S:      Orphan
11173 F:      drivers/net/ethernet/dec/tulip/
11174
11175 TUN/TAP driver
11176 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
11177 W:      http://vtun.sourceforge.net/tun
11178 S:      Maintained
11179 F:      Documentation/networking/tuntap.txt
11180 F:      arch/um/os-Linux/drivers/
11181
11182 TURBOCHANNEL SUBSYSTEM
11183 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
11184 M:      Ralf Baechle <ralf@linux-mips.org>
11185 L:      linux-mips@linux-mips.org
11186 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
11187 S:      Maintained
11188 F:      drivers/tc/
11189 F:      include/linux/tc.h
11190
11191 U14-34F SCSI DRIVER
11192 M:      Dario Ballabio <ballabio_dario@emc.com>
11193 L:      linux-scsi@vger.kernel.org
11194 S:      Maintained
11195 F:      drivers/scsi/u14-34f.c
11196
11197 UBI FILE SYSTEM (UBIFS)
11198 M:      Artem Bityutskiy <dedekind1@gmail.com>
11199 M:      Adrian Hunter <adrian.hunter@intel.com>
11200 L:      linux-mtd@lists.infradead.org
11201 T:      git git://git.infradead.org/ubifs-2.6.git
11202 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
11203 S:      Maintained
11204 F:      Documentation/filesystems/ubifs.txt
11205 F:      fs/ubifs/
11206
11207 UCLINUX (M68KNOMMU AND COLDFIRE)
11208 M:      Greg Ungerer <gerg@uclinux.org>
11209 W:      http://www.uclinux.org/
11210 L:      linux-m68k@lists.linux-m68k.org
11211 L:      uclinux-dev@uclinux.org  (subscribers-only)
11212 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
11213 S:      Maintained
11214 F:      arch/m68k/coldfire/
11215 F:      arch/m68k/68*/
11216 F:      arch/m68k/*/*_no.*
11217 F:      arch/m68k/include/asm/*_no.*
11218
11219 UDF FILESYSTEM
11220 M:      Jan Kara <jack@suse.com>
11221 S:      Maintained
11222 F:      Documentation/filesystems/udf.txt
11223 F:      fs/udf/
11224
11225 UFS FILESYSTEM
11226 M:      Evgeniy Dushistov <dushistov@mail.ru>
11227 S:      Maintained
11228 F:      Documentation/filesystems/ufs.txt
11229 F:      fs/ufs/
11230
11231 UHID USERSPACE HID IO DRIVER:
11232 M:      David Herrmann <dh.herrmann@googlemail.com>
11233 L:      linux-input@vger.kernel.org
11234 S:      Maintained
11235 F:      drivers/hid/uhid.c
11236 F:      include/uapi/linux/uhid.h
11237
11238 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
11239 L:      linux-usb@vger.kernel.org
11240 S:      Orphan
11241 F:      drivers/uwb/
11242 F:      include/linux/uwb.h
11243 F:      include/linux/uwb/
11244
11245 UNICORE32 ARCHITECTURE:
11246 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
11247 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
11248 S:      Maintained
11249 T:      git git://github.com/gxt/linux.git
11250 F:      arch/unicore32/
11251
11252 UNIFDEF
11253 M:      Tony Finch <dot@dotat.at>
11254 W:      http://dotat.at/prog/unifdef
11255 S:      Maintained
11256 F:      scripts/unifdef.c
11257
11258 UNIFORM CDROM DRIVER
11259 M:      Jens Axboe <axboe@kernel.dk>
11260 W:      http://www.kernel.dk
11261 S:      Maintained
11262 F:      Documentation/cdrom/
11263 F:      drivers/cdrom/cdrom.c
11264 F:      include/linux/cdrom.h
11265 F:      include/uapi/linux/cdrom.h
11266
11267 UNISYS S-PAR DRIVERS
11268 M:      Benjamin Romer <benjamin.romer@unisys.com>
11269 M:      David Kershner <david.kershner@unisys.com>
11270 L:      sparmaintainer@unisys.com (Unisys internal)
11271 S:      Supported
11272 F:      drivers/staging/unisys/
11273
11274 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
11275 M:      Vinayak Holikatti <vinholikatti@gmail.com>
11276 L:      linux-scsi@vger.kernel.org
11277 S:      Supported
11278 F:      Documentation/scsi/ufs.txt
11279 F:      drivers/scsi/ufs/
11280
11281 UNSORTED BLOCK IMAGES (UBI)
11282 M:      Artem Bityutskiy <dedekind1@gmail.com>
11283 M:      Richard Weinberger <richard@nod.at>
11284 W:      http://www.linux-mtd.infradead.org/
11285 L:      linux-mtd@lists.infradead.org
11286 T:      git git://git.infradead.org/ubifs-2.6.git
11287 S:      Supported
11288 F:      drivers/mtd/ubi/
11289 F:      include/linux/mtd/ubi.h
11290 F:      include/uapi/mtd/ubi-user.h
11291
11292 USB ACM DRIVER
11293 M:      Oliver Neukum <oliver@neukum.org>
11294 L:      linux-usb@vger.kernel.org
11295 S:      Maintained
11296 F:      Documentation/usb/acm.txt
11297 F:      drivers/usb/class/cdc-acm.*
11298
11299 USB AR5523 WIRELESS DRIVER
11300 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
11301 L:      linux-wireless@vger.kernel.org
11302 S:      Maintained
11303 F:      drivers/net/wireless/ath/ar5523/
11304
11305 USB ATTACHED SCSI
11306 M:      Hans de Goede <hdegoede@redhat.com>
11307 M:      Gerd Hoffmann <kraxel@redhat.com>
11308 L:      linux-usb@vger.kernel.org
11309 L:      linux-scsi@vger.kernel.org
11310 S:      Maintained
11311 F:      drivers/usb/storage/uas.c
11312
11313 USB CDC ETHERNET DRIVER
11314 M:      Oliver Neukum <oliver@neukum.org>
11315 L:      linux-usb@vger.kernel.org
11316 S:      Maintained
11317 F:      drivers/net/usb/cdc_*.c
11318 F:      include/uapi/linux/usb/cdc.h
11319
11320 USB CHAOSKEY DRIVER
11321 M:      Keith Packard <keithp@keithp.com>
11322 L:      linux-usb@vger.kernel.org
11323 S:      Maintained
11324 F:      drivers/usb/misc/chaoskey.c
11325
11326 USB CYPRESS C67X00 DRIVER
11327 M:      Peter Korsgaard <jacmet@sunsite.dk>
11328 L:      linux-usb@vger.kernel.org
11329 S:      Maintained
11330 F:      drivers/usb/c67x00/
11331
11332 USB DAVICOM DM9601 DRIVER
11333 M:      Peter Korsgaard <jacmet@sunsite.dk>
11334 L:      netdev@vger.kernel.org
11335 W:      http://www.linux-usb.org/usbnet
11336 S:      Maintained
11337 F:      drivers/net/usb/dm9601.c
11338
11339 USB DIAMOND RIO500 DRIVER
11340 M:      Cesar Miquel <miquel@df.uba.ar>
11341 L:      rio500-users@lists.sourceforge.net
11342 W:      http://rio500.sourceforge.net
11343 S:      Maintained
11344 F:      drivers/usb/misc/rio500*
11345
11346 USB EHCI DRIVER
11347 M:      Alan Stern <stern@rowland.harvard.edu>
11348 L:      linux-usb@vger.kernel.org
11349 S:      Maintained
11350 F:      Documentation/usb/ehci.txt
11351 F:      drivers/usb/host/ehci*
11352
11353 USB GADGET/PERIPHERAL SUBSYSTEM
11354 M:      Felipe Balbi <balbi@kernel.org>
11355 L:      linux-usb@vger.kernel.org
11356 W:      http://www.linux-usb.org/gadget
11357 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
11358 S:      Maintained
11359 F:      drivers/usb/gadget/
11360 F:      include/linux/usb/gadget*
11361
11362 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
11363 M:      Jiri Kosina <jikos@kernel.org>
11364 R:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
11365 L:      linux-usb@vger.kernel.org
11366 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
11367 S:      Maintained
11368 F:      Documentation/hid/hiddev.txt
11369 F:      drivers/hid/usbhid/
11370
11371 USB ISP116X DRIVER
11372 M:      Olav Kongas <ok@artecdesign.ee>
11373 L:      linux-usb@vger.kernel.org
11374 S:      Maintained
11375 F:      drivers/usb/host/isp116x*
11376 F:      include/linux/usb/isp116x.h
11377
11378 USB MASS STORAGE DRIVER
11379 M:      Matthew Dharm <mdharm-usb@one-eyed-alien.net>
11380 L:      linux-usb@vger.kernel.org
11381 L:      usb-storage@lists.one-eyed-alien.net
11382 S:      Maintained
11383 W:      http://www.one-eyed-alien.net/~mdharm/linux-usb/
11384 F:      drivers/usb/storage/
11385
11386 USB MIDI DRIVER
11387 M:      Clemens Ladisch <clemens@ladisch.de>
11388 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11389 T:      git git://git.alsa-project.org/alsa-kernel.git
11390 S:      Maintained
11391 F:      sound/usb/midi.*
11392
11393 USB NETWORKING DRIVERS
11394 L:      linux-usb@vger.kernel.org
11395 S:      Odd Fixes
11396 F:      drivers/net/usb/
11397
11398 USB OHCI DRIVER
11399 M:      Alan Stern <stern@rowland.harvard.edu>
11400 L:      linux-usb@vger.kernel.org
11401 S:      Maintained
11402 F:      Documentation/usb/ohci.txt
11403 F:      drivers/usb/host/ohci*
11404
11405 USB OTG FSM (Finite State Machine)
11406 M:      Peter Chen <Peter.Chen@nxp.com>
11407 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
11408 L:      linux-usb@vger.kernel.org
11409 S:      Maintained
11410 F:      drivers/usb/common/usb-otg-fsm.c
11411
11412 USB OVER IP DRIVER
11413 M:      Valentina Manea <valentina.manea.m@gmail.com>
11414 M:      Shuah Khan <shuah.kh@samsung.com>
11415 L:      linux-usb@vger.kernel.org
11416 S:      Maintained
11417 F:      drivers/usb/usbip/
11418 F:      tools/usb/usbip/
11419
11420 USB PEGASUS DRIVER
11421 M:      Petko Manolov <petkan@nucleusys.com>
11422 L:      linux-usb@vger.kernel.org
11423 L:      netdev@vger.kernel.org
11424 T:      git git://github.com/petkan/pegasus.git
11425 W:      https://github.com/petkan/pegasus
11426 S:      Maintained
11427 F:      drivers/net/usb/pegasus.*
11428
11429 USB PHY LAYER
11430 M:      Felipe Balbi <balbi@kernel.org>
11431 L:      linux-usb@vger.kernel.org
11432 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
11433 S:      Maintained
11434 F:      drivers/usb/phy/
11435
11436 USB PRINTER DRIVER (usblp)
11437 M:      Pete Zaitcev <zaitcev@redhat.com>
11438 L:      linux-usb@vger.kernel.org
11439 S:      Supported
11440 F:      drivers/usb/class/usblp.c
11441
11442 USB QMI WWAN NETWORK DRIVER
11443 M:      Bjørn Mork <bjorn@mork.no>
11444 L:      netdev@vger.kernel.org
11445 S:      Maintained
11446 F:      Documentation/ABI/testing/sysfs-class-net-qmi
11447 F:      drivers/net/usb/qmi_wwan.c
11448
11449 USB RTL8150 DRIVER
11450 M:      Petko Manolov <petkan@nucleusys.com>
11451 L:      linux-usb@vger.kernel.org
11452 L:      netdev@vger.kernel.org
11453 T:      git git://github.com/petkan/rtl8150.git
11454 W:      https://github.com/petkan/rtl8150
11455 S:      Maintained
11456 F:      drivers/net/usb/rtl8150.c
11457
11458 USB SERIAL SUBSYSTEM
11459 M:      Johan Hovold <johan@kernel.org>
11460 L:      linux-usb@vger.kernel.org
11461 S:      Maintained
11462 F:      Documentation/usb/usb-serial.txt
11463 F:      drivers/usb/serial/
11464 F:      include/linux/usb/serial.h
11465
11466 USB SMSC75XX ETHERNET DRIVER
11467 M:      Steve Glendinning <steve.glendinning@shawell.net>
11468 L:      netdev@vger.kernel.org
11469 S:      Maintained
11470 F:      drivers/net/usb/smsc75xx.*
11471
11472 USB SMSC95XX ETHERNET DRIVER
11473 M:      Steve Glendinning <steve.glendinning@shawell.net>
11474 L:      netdev@vger.kernel.org
11475 S:      Maintained
11476 F:      drivers/net/usb/smsc95xx.*
11477
11478 USB SUBSYSTEM
11479 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11480 L:      linux-usb@vger.kernel.org
11481 W:      http://www.linux-usb.org
11482 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
11483 S:      Supported
11484 F:      Documentation/usb/
11485 F:      drivers/usb/
11486 F:      include/linux/usb.h
11487 F:      include/linux/usb/
11488
11489 USB UHCI DRIVER
11490 M:      Alan Stern <stern@rowland.harvard.edu>
11491 L:      linux-usb@vger.kernel.org
11492 S:      Maintained
11493 F:      drivers/usb/host/uhci*
11494
11495 USB "USBNET" DRIVER FRAMEWORK
11496 M:      Oliver Neukum <oneukum@suse.com>
11497 L:      netdev@vger.kernel.org
11498 W:      http://www.linux-usb.org/usbnet
11499 S:      Maintained
11500 F:      drivers/net/usb/usbnet.c
11501 F:      include/linux/usb/usbnet.h
11502
11503 USB VIDEO CLASS
11504 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11505 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
11506 L:      linux-media@vger.kernel.org
11507 T:      git git://linuxtv.org/media_tree.git
11508 W:      http://www.ideasonboard.org/uvc/
11509 S:      Maintained
11510 F:      drivers/media/usb/uvc/
11511 F:      include/uapi/linux/uvcvideo.h
11512
11513 USB VISION DRIVER
11514 M:      Hans Verkuil <hverkuil@xs4all.nl>
11515 L:      linux-media@vger.kernel.org
11516 T:      git git://linuxtv.org/media_tree.git
11517 W:      https://linuxtv.org
11518 S:      Odd Fixes
11519 F:      drivers/media/usb/usbvision/
11520
11521 USB WEBCAM GADGET
11522 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11523 L:      linux-usb@vger.kernel.org
11524 S:      Maintained
11525 F:      drivers/usb/gadget/function/*uvc*
11526 F:      drivers/usb/gadget/legacy/webcam.c
11527
11528 USB WIRELESS RNDIS DRIVER (rndis_wlan)
11529 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
11530 L:      linux-wireless@vger.kernel.org
11531 S:      Maintained
11532 F:      drivers/net/wireless/rndis_wlan.c
11533
11534 USB XHCI DRIVER
11535 M:      Mathias Nyman <mathias.nyman@intel.com>
11536 L:      linux-usb@vger.kernel.org
11537 S:      Supported
11538 F:      drivers/usb/host/xhci*
11539 F:      drivers/usb/host/pci-quirks*
11540
11541 USB ZD1201 DRIVER
11542 L:      linux-wireless@vger.kernel.org
11543 W:      http://linux-lc100020.sourceforge.net
11544 S:      Orphan
11545 F:      drivers/net/wireless/zydas/zd1201.*
11546
11547 USB ZR364XX DRIVER
11548 M:      Antoine Jacquet <royale@zerezo.com>
11549 L:      linux-usb@vger.kernel.org
11550 L:      linux-media@vger.kernel.org
11551 T:      git git://linuxtv.org/media_tree.git
11552 W:      http://royale.zerezo.com/zr364xx/
11553 S:      Maintained
11554 F:      Documentation/video4linux/zr364xx.txt
11555 F:      drivers/media/usb/zr364xx/
11556
11557 ULPI BUS
11558 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
11559 L:      linux-usb@vger.kernel.org
11560 S:      Maintained
11561 F:      drivers/usb/common/ulpi.c
11562 F:      include/linux/ulpi/
11563
11564 USER-MODE LINUX (UML)
11565 M:      Jeff Dike <jdike@addtoit.com>
11566 M:      Richard Weinberger <richard@nod.at>
11567 L:      user-mode-linux-devel@lists.sourceforge.net
11568 L:      user-mode-linux-user@lists.sourceforge.net
11569 W:      http://user-mode-linux.sourceforge.net
11570 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
11571 S:      Maintained
11572 F:      Documentation/virtual/uml/
11573 F:      arch/um/
11574 F:      arch/x86/um/
11575 F:      fs/hostfs/
11576 F:      fs/hppfs/
11577
11578 USERSPACE I/O (UIO)
11579 M:      "Hans J. Koch" <hjk@hansjkoch.de>
11580 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11581 S:      Maintained
11582 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
11583 F:      Documentation/DocBook/uio-howto.tmpl
11584 F:      drivers/uio/
11585 F:      include/linux/uio*.h
11586
11587 UTIL-LINUX PACKAGE
11588 M:      Karel Zak <kzak@redhat.com>
11589 L:      util-linux@vger.kernel.org
11590 W:      http://en.wikipedia.org/wiki/Util-linux
11591 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
11592 S:      Maintained
11593
11594 UVESAFB DRIVER
11595 M:      Michal Januszewski <spock@gentoo.org>
11596 L:      linux-fbdev@vger.kernel.org
11597 W:      http://dev.gentoo.org/~spock/projects/uvesafb/
11598 S:      Maintained
11599 F:      Documentation/fb/uvesafb.txt
11600 F:      drivers/video/fbdev/uvesafb.*
11601
11602 VF610 NAND DRIVER
11603 M:      Stefan Agner <stefan@agner.ch>
11604 L:      linux-mtd@lists.infradead.org
11605 S:      Supported
11606 F:      drivers/mtd/nand/vf610_nfc.c
11607
11608 VFAT/FAT/MSDOS FILESYSTEM
11609 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
11610 S:      Maintained
11611 F:      Documentation/filesystems/vfat.txt
11612 F:      fs/fat/
11613
11614 VFIO DRIVER
11615 M:      Alex Williamson <alex.williamson@redhat.com>
11616 L:      kvm@vger.kernel.org
11617 T:      git git://github.com/awilliam/linux-vfio.git
11618 S:      Maintained
11619 F:      Documentation/vfio.txt
11620 F:      drivers/vfio/
11621 F:      include/linux/vfio.h
11622 F:      include/uapi/linux/vfio.h
11623
11624 VFIO PLATFORM DRIVER
11625 M:      Baptiste Reynal <b.reynal@virtualopensystems.com>
11626 L:      kvm@vger.kernel.org
11627 S:      Maintained
11628 F:      drivers/vfio/platform/
11629
11630 VIDEOBUF2 FRAMEWORK
11631 M:      Pawel Osciak <pawel@osciak.com>
11632 M:      Marek Szyprowski <m.szyprowski@samsung.com>
11633 M:      Kyungmin Park <kyungmin.park@samsung.com>
11634 L:      linux-media@vger.kernel.org
11635 S:      Maintained
11636 F:      drivers/media/v4l2-core/videobuf2-*
11637 F:      include/media/videobuf2-*
11638
11639 VIRTUAL SERIO DEVICE DRIVER
11640 M:      Stephen Chandler Paul <thatslyude@gmail.com>
11641 S:      Maintained
11642 F:      drivers/input/serio/userio.c
11643 F:      include/uapi/linux/userio.h
11644
11645 VIRTIO CONSOLE DRIVER
11646 M:      Amit Shah <amit.shah@redhat.com>
11647 L:      virtualization@lists.linux-foundation.org
11648 S:      Maintained
11649 F:      drivers/char/virtio_console.c
11650 F:      include/linux/virtio_console.h
11651 F:      include/uapi/linux/virtio_console.h
11652
11653 VIRTIO CORE, NET AND BLOCK DRIVERS
11654 M:      "Michael S. Tsirkin" <mst@redhat.com>
11655 L:      virtualization@lists.linux-foundation.org
11656 S:      Maintained
11657 F:      drivers/virtio/
11658 F:      tools/virtio/
11659 F:      drivers/net/virtio_net.c
11660 F:      drivers/block/virtio_blk.c
11661 F:      include/linux/virtio_*.h
11662 F:      include/uapi/linux/virtio_*.h
11663
11664 VIRTIO DRIVERS FOR S390
11665 M:      Christian Borntraeger <borntraeger@de.ibm.com>
11666 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
11667 L:      linux-s390@vger.kernel.org
11668 L:      virtualization@lists.linux-foundation.org
11669 L:      kvm@vger.kernel.org
11670 S:      Supported
11671 F:      drivers/s390/virtio/
11672
11673 VIRTIO GPU DRIVER
11674 M:      David Airlie <airlied@linux.ie>
11675 M:      Gerd Hoffmann <kraxel@redhat.com>
11676 L:      dri-devel@lists.freedesktop.org
11677 L:      virtualization@lists.linux-foundation.org
11678 S:      Maintained
11679 F:      drivers/gpu/drm/virtio/
11680 F:      include/uapi/linux/virtio_gpu.h
11681
11682 VIRTIO HOST (VHOST)
11683 M:      "Michael S. Tsirkin" <mst@redhat.com>
11684 L:      kvm@vger.kernel.org
11685 L:      virtualization@lists.linux-foundation.org
11686 L:      netdev@vger.kernel.org
11687 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
11688 S:      Maintained
11689 F:      drivers/vhost/
11690 F:      include/uapi/linux/vhost.h
11691
11692 VIRTIO INPUT DRIVER
11693 M:      Gerd Hoffmann <kraxel@redhat.com>
11694 S:      Maintained
11695 F:      drivers/virtio/virtio_input.c
11696 F:      include/uapi/linux/virtio_input.h
11697
11698 VIA RHINE NETWORK DRIVER
11699 S:      Orphan
11700 F:      drivers/net/ethernet/via/via-rhine.c
11701
11702 VIA SD/MMC CARD CONTROLLER DRIVER
11703 M:      Bruce Chang <brucechang@via.com.tw>
11704 M:      Harald Welte <HaraldWelte@viatech.com>
11705 S:      Maintained
11706 F:      drivers/mmc/host/via-sdmmc.c
11707
11708 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
11709 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
11710 L:      linux-fbdev@vger.kernel.org
11711 S:      Maintained
11712 F:      include/linux/via-core.h
11713 F:      include/linux/via-gpio.h
11714 F:      include/linux/via_i2c.h
11715 F:      drivers/video/fbdev/via/
11716
11717 VIA VELOCITY NETWORK DRIVER
11718 M:      Francois Romieu <romieu@fr.zoreil.com>
11719 L:      netdev@vger.kernel.org
11720 S:      Maintained
11721 F:      drivers/net/ethernet/via/via-velocity.*
11722
11723 VIRT LIB
11724 M:      Alex Williamson <alex.williamson@redhat.com>
11725 M:      Paolo Bonzini <pbonzini@redhat.com>
11726 L:      kvm@vger.kernel.org
11727 S:      Supported
11728 F:      virt/lib/
11729
11730 VIVID VIRTUAL VIDEO DRIVER
11731 M:      Hans Verkuil <hverkuil@xs4all.nl>
11732 L:      linux-media@vger.kernel.org
11733 T:      git git://linuxtv.org/media_tree.git
11734 W:      https://linuxtv.org
11735 S:      Maintained
11736 F:      drivers/media/platform/vivid/*
11737
11738 VLAN (802.1Q)
11739 M:      Patrick McHardy <kaber@trash.net>
11740 L:      netdev@vger.kernel.org
11741 S:      Maintained
11742 F:      drivers/net/macvlan.c
11743 F:      include/linux/if_*vlan.h
11744 F:      net/8021q/
11745
11746 VLYNQ BUS
11747 M:      Florian Fainelli <florian@openwrt.org>
11748 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
11749 S:      Maintained
11750 F:      drivers/vlynq/vlynq.c
11751 F:      include/linux/vlynq.h
11752
11753 VME SUBSYSTEM
11754 M:      Martyn Welch <martyn@welchs.me.uk>
11755 M:      Manohar Vanga <manohar.vanga@gmail.com>
11756 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11757 L:      devel@driverdev.osuosl.org
11758 S:      Maintained
11759 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
11760 F:      Documentation/vme_api.txt
11761 F:      drivers/staging/vme/
11762 F:      drivers/vme/
11763 F:      include/linux/vme*
11764
11765 VMWARE HYPERVISOR INTERFACE
11766 M:      Alok Kataria <akataria@vmware.com>
11767 L:      virtualization@lists.linux-foundation.org
11768 S:      Supported
11769 F:      arch/x86/kernel/cpu/vmware.c
11770
11771 VMWARE BALLOON DRIVER
11772 M:      Xavier Deguillard <xdeguillard@vmware.com>
11773 M:      Philip Moltmann <moltmann@vmware.com>
11774 M:      "VMware, Inc." <pv-drivers@vmware.com>
11775 L:      linux-kernel@vger.kernel.org
11776 S:      Maintained
11777 F:      drivers/misc/vmw_balloon.c
11778
11779 VMWARE VMMOUSE SUBDRIVER
11780 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
11781 M:      "VMware, Inc." <pv-drivers@vmware.com>
11782 L:      linux-input@vger.kernel.org
11783 S:      Maintained
11784 F:      drivers/input/mouse/vmmouse.c
11785 F:      drivers/input/mouse/vmmouse.h
11786
11787 VMWARE VMXNET3 ETHERNET DRIVER
11788 M:      Shrikrishna Khare <skhare@vmware.com>
11789 M:      "VMware, Inc." <pv-drivers@vmware.com>
11790 L:      netdev@vger.kernel.org
11791 S:      Maintained
11792 F:      drivers/net/vmxnet3/
11793
11794 VMware PVSCSI driver
11795 M:      Arvind Kumar <arvindkumar@vmware.com>
11796 M:      VMware PV-Drivers <pv-drivers@vmware.com>
11797 L:      linux-scsi@vger.kernel.org
11798 S:      Maintained
11799 F:      drivers/scsi/vmw_pvscsi.c
11800 F:      drivers/scsi/vmw_pvscsi.h
11801
11802 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
11803 M:      Liam Girdwood <lgirdwood@gmail.com>
11804 M:      Mark Brown <broonie@kernel.org>
11805 L:      linux-kernel@vger.kernel.org
11806 W:      http://www.slimlogic.co.uk/?p=48
11807 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
11808 S:      Supported
11809 F:      drivers/regulator/
11810 F:      include/linux/regulator/
11811
11812 VRF
11813 M:      David Ahern <dsa@cumulusnetworks.com>
11814 M:      Shrijeet Mukherjee <shm@cumulusnetworks.com>
11815 L:      netdev@vger.kernel.org
11816 S:      Maintained
11817 F:      drivers/net/vrf.c
11818 F:      Documentation/networking/vrf.txt
11819
11820 VT1211 HARDWARE MONITOR DRIVER
11821 M:      Juerg Haefliger <juergh@gmail.com>
11822 L:      lm-sensors@lm-sensors.org
11823 S:      Maintained
11824 F:      Documentation/hwmon/vt1211
11825 F:      drivers/hwmon/vt1211.c
11826
11827 VT8231 HARDWARE MONITOR DRIVER
11828 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
11829 L:      lm-sensors@lm-sensors.org
11830 S:      Maintained
11831 F:      drivers/hwmon/vt8231.c
11832
11833 VUB300 USB to SDIO/SD/MMC bridge chip
11834 M:      Tony Olech <tony.olech@elandigitalsystems.com>
11835 L:      linux-mmc@vger.kernel.org
11836 L:      linux-usb@vger.kernel.org
11837 S:      Supported
11838 F:      drivers/mmc/host/vub300.c
11839
11840 W1 DALLAS'S 1-WIRE BUS
11841 M:      Evgeniy Polyakov <zbr@ioremap.net>
11842 S:      Maintained
11843 F:      Documentation/w1/
11844 F:      drivers/w1/
11845
11846 W83791D HARDWARE MONITORING DRIVER
11847 M:      Marc Hulsman <m.hulsman@tudelft.nl>
11848 L:      lm-sensors@lm-sensors.org
11849 S:      Maintained
11850 F:      Documentation/hwmon/w83791d
11851 F:      drivers/hwmon/w83791d.c
11852
11853 W83793 HARDWARE MONITORING DRIVER
11854 M:      Rudolf Marek <r.marek@assembler.cz>
11855 L:      lm-sensors@lm-sensors.org
11856 S:      Maintained
11857 F:      Documentation/hwmon/w83793
11858 F:      drivers/hwmon/w83793.c
11859
11860 W83795 HARDWARE MONITORING DRIVER
11861 M:      Jean Delvare <jdelvare@suse.com>
11862 L:      lm-sensors@lm-sensors.org
11863 S:      Maintained
11864 F:      drivers/hwmon/w83795.c
11865
11866 W83L51xD SD/MMC CARD INTERFACE DRIVER
11867 M:      Pierre Ossman <pierre@ossman.eu>
11868 S:      Maintained
11869 F:      drivers/mmc/host/wbsd.*
11870
11871 WACOM PROTOCOL 4 SERIAL TABLETS
11872 M:      Julian Squires <julian@cipht.net>
11873 M:      Hans de Goede <hdegoede@redhat.com>
11874 L:      linux-input@vger.kernel.org
11875 S:      Maintained
11876 F:      drivers/input/tablet/wacom_serial4.c
11877
11878 WATCHDOG DEVICE DRIVERS
11879 M:      Wim Van Sebroeck <wim@iguana.be>
11880 R:      Guenter Roeck <linux@roeck-us.net>
11881 L:      linux-watchdog@vger.kernel.org
11882 W:      http://www.linux-watchdog.org/
11883 T:      git git://www.linux-watchdog.org/linux-watchdog.git
11884 S:      Maintained
11885 F:      Documentation/watchdog/
11886 F:      drivers/watchdog/
11887 F:      include/linux/watchdog.h
11888 F:      include/uapi/linux/watchdog.h
11889
11890 WD7000 SCSI DRIVER
11891 M:      Miroslav Zagorac <zaga@fly.cc.fer.hr>
11892 L:      linux-scsi@vger.kernel.org
11893 S:      Maintained
11894 F:      drivers/scsi/wd7000.c
11895
11896 WIIMOTE HID DRIVER
11897 M:      David Herrmann <dh.herrmann@googlemail.com>
11898 L:      linux-input@vger.kernel.org
11899 S:      Maintained
11900 F:      drivers/hid/hid-wiimote*
11901
11902 WINBOND CIR DRIVER
11903 M:      David Härdeman <david@hardeman.nu>
11904 S:      Maintained
11905 F:      drivers/media/rc/winbond-cir.c
11906
11907 WIMAX STACK
11908 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
11909 M:      linux-wimax@intel.com
11910 L:      wimax@linuxwimax.org (subscribers-only)
11911 S:      Supported
11912 W:      http://linuxwimax.org
11913 F:      Documentation/wimax/README.wimax
11914 F:      include/linux/wimax/debug.h
11915 F:      include/net/wimax.h
11916 F:      include/uapi/linux/wimax.h
11917 F:      net/wimax/
11918
11919 WISTRON LAPTOP BUTTON DRIVER
11920 M:      Miloslav Trmac <mitr@volny.cz>
11921 S:      Maintained
11922 F:      drivers/input/misc/wistron_btns.c
11923
11924 WL3501 WIRELESS PCMCIA CARD DRIVER
11925 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
11926 L:      linux-wireless@vger.kernel.org
11927 W:      http://oops.ghostprotocols.net:81/blog
11928 S:      Maintained
11929 F:      drivers/net/wireless/wl3501*
11930
11931 WOLFSON MICROELECTRONICS DRIVERS
11932 L:      patches@opensource.wolfsonmicro.com
11933 T:      git https://github.com/CirrusLogic/linux-drivers.git
11934 W:      https://github.com/CirrusLogic/linux-drivers/wiki
11935 S:      Supported
11936 F:      Documentation/hwmon/wm83??
11937 F:      Documentation/devicetree/bindings/extcon/extcon-arizona.txt
11938 F:      Documentation/devicetree/bindings/regulator/arizona-regulator.txt
11939 F:      Documentation/devicetree/bindings/mfd/arizona.txt
11940 F:      arch/arm/mach-s3c64xx/mach-crag6410*
11941 F:      drivers/clk/clk-wm83*.c
11942 F:      drivers/extcon/extcon-arizona.c
11943 F:      drivers/leds/leds-wm83*.c
11944 F:      drivers/gpio/gpio-*wm*.c
11945 F:      drivers/gpio/gpio-arizona.c
11946 F:      drivers/hwmon/wm83??-hwmon.c
11947 F:      drivers/input/misc/wm831x-on.c
11948 F:      drivers/input/touchscreen/wm831x-ts.c
11949 F:      drivers/input/touchscreen/wm97*.c
11950 F:      drivers/mfd/arizona*
11951 F:      drivers/mfd/wm*.c
11952 F:      drivers/mfd/cs47l24*
11953 F:      drivers/power/wm83*.c
11954 F:      drivers/rtc/rtc-wm83*.c
11955 F:      drivers/regulator/wm8*.c
11956 F:      drivers/video/backlight/wm83*_bl.c
11957 F:      drivers/watchdog/wm83*_wdt.c
11958 F:      include/linux/mfd/arizona/
11959 F:      include/linux/mfd/wm831x/
11960 F:      include/linux/mfd/wm8350/
11961 F:      include/linux/mfd/wm8400*
11962 F:      include/linux/wm97xx.h
11963 F:      include/sound/wm????.h
11964 F:      sound/soc/codecs/arizona.?
11965 F:      sound/soc/codecs/wm*
11966 F:      sound/soc/codecs/cs47l24*
11967
11968 WORKQUEUE
11969 M:      Tejun Heo <tj@kernel.org>
11970 R:      Lai Jiangshan <jiangshanlai@gmail.com>
11971 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
11972 S:      Maintained
11973 F:      include/linux/workqueue.h
11974 F:      kernel/workqueue.c
11975 F:      Documentation/workqueue.txt
11976
11977 X.25 NETWORK LAYER
11978 M:      Andrew Hendry <andrew.hendry@gmail.com>
11979 L:      linux-x25@vger.kernel.org
11980 S:      Odd Fixes
11981 F:      Documentation/networking/x25*
11982 F:      include/net/x25*
11983 F:      net/x25/
11984
11985 X86 ARCHITECTURE (32-BIT AND 64-BIT)
11986 M:      Thomas Gleixner <tglx@linutronix.de>
11987 M:      Ingo Molnar <mingo@redhat.com>
11988 M:      "H. Peter Anvin" <hpa@zytor.com>
11989 M:      x86@kernel.org
11990 L:      linux-kernel@vger.kernel.org
11991 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
11992 S:      Maintained
11993 F:      Documentation/x86/
11994 F:      arch/x86/
11995
11996 X86 PLATFORM DRIVERS
11997 M:      Darren Hart <dvhart@infradead.org>
11998 L:      platform-driver-x86@vger.kernel.org
11999 T:      git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git
12000 S:      Maintained
12001 F:      drivers/platform/x86/
12002 F:      drivers/platform/olpc/
12003
12004 X86 MCE INFRASTRUCTURE
12005 M:      Tony Luck <tony.luck@intel.com>
12006 M:      Borislav Petkov <bp@alien8.de>
12007 L:      linux-edac@vger.kernel.org
12008 S:      Maintained
12009 F:      arch/x86/kernel/cpu/mcheck/*
12010
12011 X86 MICROCODE UPDATE SUPPORT
12012 M:      Borislav Petkov <bp@alien8.de>
12013 S:      Maintained
12014 F:      arch/x86/kernel/cpu/microcode/*
12015
12016 X86 VDSO
12017 M:      Andy Lutomirski <luto@amacapital.net>
12018 L:      linux-kernel@vger.kernel.org
12019 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
12020 S:      Maintained
12021 F:      arch/x86/entry/vdso/
12022
12023 XC2028/3028 TUNER DRIVER
12024 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
12025 L:      linux-media@vger.kernel.org
12026 W:      https://linuxtv.org
12027 T:      git git://linuxtv.org/media_tree.git
12028 S:      Maintained
12029 F:      drivers/media/tuners/tuner-xc2028.*
12030
12031 XEN HYPERVISOR INTERFACE
12032 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
12033 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
12034 M:      David Vrabel <david.vrabel@citrix.com>
12035 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12036 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
12037 S:      Supported
12038 F:      arch/x86/xen/
12039 F:      drivers/*/xen-*front.c
12040 F:      drivers/xen/
12041 F:      arch/x86/include/asm/xen/
12042 F:      include/xen/
12043 F:      include/uapi/xen/
12044
12045 XEN HYPERVISOR ARM
12046 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
12047 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12048 S:      Supported
12049 F:      arch/arm/xen/
12050 F:      arch/arm/include/asm/xen/
12051
12052 XEN HYPERVISOR ARM64
12053 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
12054 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12055 S:      Supported
12056 F:      arch/arm64/xen/
12057 F:      arch/arm64/include/asm/xen/
12058
12059 XEN NETWORK BACKEND DRIVER
12060 M:      Wei Liu <wei.liu2@citrix.com>
12061 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12062 L:      netdev@vger.kernel.org
12063 S:      Supported
12064 F:      drivers/net/xen-netback/*
12065
12066 XEN PCI SUBSYSTEM
12067 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
12068 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12069 S:      Supported
12070 F:      arch/x86/pci/*xen*
12071 F:      drivers/pci/*xen*
12072
12073 XEN BLOCK SUBSYSTEM
12074 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
12075 M:      Roger Pau MonnĂ© <roger.pau@citrix.com>
12076 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12077 S:      Supported
12078 F:      drivers/block/xen-blkback/*
12079 F:      drivers/block/xen*
12080
12081 XEN PVSCSI DRIVERS
12082 M:      Juergen Gross <jgross@suse.com>
12083 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12084 L:      linux-scsi@vger.kernel.org
12085 S:      Supported
12086 F:      drivers/scsi/xen-scsifront.c
12087 F:      drivers/xen/xen-scsiback.c
12088 F:      include/xen/interface/io/vscsiif.h
12089
12090 XEN SWIOTLB SUBSYSTEM
12091 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
12092 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12093 S:      Supported
12094 F:      arch/x86/xen/*swiotlb*
12095 F:      drivers/xen/*swiotlb*
12096
12097 XFS FILESYSTEM
12098 P:      Silicon Graphics Inc
12099 M:      Dave Chinner <david@fromorbit.com>
12100 M:      xfs@oss.sgi.com
12101 L:      xfs@oss.sgi.com
12102 W:      http://oss.sgi.com/projects/xfs
12103 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dgc/linux-xfs.git
12104 S:      Supported
12105 F:      Documentation/filesystems/xfs.txt
12106 F:      fs/xfs/
12107
12108 XILINX AXI ETHERNET DRIVER
12109 M:      Anirudha Sarangi <anirudh@xilinx.com>
12110 M:      John Linn <John.Linn@xilinx.com>
12111 S:      Maintained
12112 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
12113
12114 XILINX UARTLITE SERIAL DRIVER
12115 M:      Peter Korsgaard <jacmet@sunsite.dk>
12116 L:      linux-serial@vger.kernel.org
12117 S:      Maintained
12118 F:      drivers/tty/serial/uartlite.c
12119
12120 XILINX VIDEO IP CORES
12121 M:      Hyun Kwon <hyun.kwon@xilinx.com>
12122 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12123 L:      linux-media@vger.kernel.org
12124 T:      git git://linuxtv.org/media_tree.git
12125 S:      Supported
12126 F:      Documentation/devicetree/bindings/media/xilinx/
12127 F:      drivers/media/platform/xilinx/
12128 F:      include/uapi/linux/xilinx-v4l2-controls.h
12129
12130 XILLYBUS DRIVER
12131 M:      Eli Billauer <eli.billauer@gmail.com>
12132 L:      linux-kernel@vger.kernel.org
12133 S:      Supported
12134 F:      drivers/char/xillybus/
12135
12136 XTENSA XTFPGA PLATFORM SUPPORT
12137 M:      Max Filippov <jcmvbkbc@gmail.com>
12138 L:      linux-xtensa@linux-xtensa.org
12139 S:      Maintained
12140 F:      drivers/spi/spi-xtensa-xtfpga.c
12141 F:      sound/soc/xtensa/xtfpga-i2s.c
12142
12143 YAM DRIVER FOR AX.25
12144 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
12145 L:      linux-hams@vger.kernel.org
12146 S:      Maintained
12147 F:      drivers/net/hamradio/yam*
12148 F:      include/linux/yam.h
12149
12150 YEALINK PHONE DRIVER
12151 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
12152 L:      usbb2k-api-dev@nongnu.org
12153 S:      Maintained
12154 F:      Documentation/input/yealink.txt
12155 F:      drivers/input/misc/yealink.*
12156
12157 Z8530 DRIVER FOR AX.25
12158 M:      Joerg Reuter <jreuter@yaina.de>
12159 W:      http://yaina.de/jreuter/
12160 W:      http://www.qsl.net/dl1bke/
12161 L:      linux-hams@vger.kernel.org
12162 S:      Maintained
12163 F:      Documentation/networking/z8530drv.txt
12164 F:      drivers/net/hamradio/*scc.c
12165 F:      drivers/net/hamradio/z8530.h
12166
12167 ZBUD COMPRESSED PAGE ALLOCATOR
12168 M:      Seth Jennings <sjenning@redhat.com>
12169 L:      linux-mm@kvack.org
12170 S:      Maintained
12171 F:      mm/zbud.c
12172 F:      include/linux/zbud.h
12173
12174 ZD1211RW WIRELESS DRIVER
12175 M:      Daniel Drake <dsd@gentoo.org>
12176 M:      Ulrich Kunitz <kune@deine-taler.de>
12177 W:      http://zd1211.ath.cx/wiki/DriverRewrite
12178 L:      linux-wireless@vger.kernel.org
12179 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
12180 S:      Maintained
12181 F:      drivers/net/wireless/zydas/zd1211rw/
12182
12183 ZPOOL COMPRESSED PAGE STORAGE API
12184 M:      Dan Streetman <ddstreet@ieee.org>
12185 L:      linux-mm@kvack.org
12186 S:      Maintained
12187 F:      mm/zpool.c
12188 F:      include/linux/zpool.h
12189
12190 ZR36067 VIDEO FOR LINUX DRIVER
12191 L:      mjpeg-users@lists.sourceforge.net
12192 L:      linux-media@vger.kernel.org
12193 W:      http://mjpeg.sourceforge.net/driver-zoran/
12194 T:      hg https://linuxtv.org/hg/v4l-dvb
12195 S:      Odd Fixes
12196 F:      drivers/media/pci/zoran/
12197
12198 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
12199 M:      Minchan Kim <minchan@kernel.org>
12200 M:      Nitin Gupta <ngupta@vflare.org>
12201 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
12202 L:      linux-kernel@vger.kernel.org
12203 S:      Maintained
12204 F:      drivers/block/zram/
12205 F:      Documentation/blockdev/zram.txt
12206
12207 ZS DECSTATION Z85C30 SERIAL DRIVER
12208 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
12209 S:      Maintained
12210 F:      drivers/tty/serial/zs.*
12211
12212 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
12213 M:      Minchan Kim <minchan@kernel.org>
12214 M:      Nitin Gupta <ngupta@vflare.org>
12215 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
12216 L:      linux-mm@kvack.org
12217 S:      Maintained
12218 F:      mm/zsmalloc.c
12219 F:      include/linux/zsmalloc.h
12220 F:      Documentation/vm/zsmalloc.txt
12221
12222 ZSWAP COMPRESSED SWAP CACHING
12223 M:      Seth Jennings <sjenning@redhat.com>
12224 L:      linux-mm@kvack.org
12225 S:      Maintained
12226 F:      mm/zswap.c
12227
12228 THE REST
12229 M:      Linus Torvalds <torvalds@linux-foundation.org>
12230 L:      linux-kernel@vger.kernel.org
12231 Q:      http://patchwork.kernel.org/project/LKML/list/
12232 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
12233 S:      Buried alive in reporters
12234 F:      *
12235 F:      */