OSDN Git Service

42cc0d76296d2db615309e4e083ba83611ea7ef9
[uclinux-h8/linux.git] / MAINTAINERS
1
2
3         List of maintainers and how to submit kernel changes
4
5 Please try to follow the guidelines below.  This will make things
6 easier on the maintainers.  Not all of these guidelines matter for every
7 trivial patch so apply some common sense.
8
9 1.      Always _test_ your changes, however small, on at least 4 or
10         5 people, preferably many more.
11
12 2.      Try to release a few ALPHA test versions to the net. Announce
13         them onto the kernel channel and await results. This is especially
14         important for device drivers, because often that's the only way
15         you will find things like the fact version 3 firmware needs
16         a magic fix you didn't know about, or some clown changed the
17         chips on a board and not its name.  (Don't laugh!  Look at the
18         SMC etherpower for that.)
19
20 3.      Make sure your changes compile correctly in multiple
21         configurations. In particular check that changes work both as a
22         module and built into the kernel.
23
24 4.      When you are happy with a change make it generally available for
25         testing and await feedback.
26
27 5.      Make a patch available to the relevant maintainer in the list. Use
28         'diff -u' to make the patch easy to merge. Be prepared to get your
29         changes sent back with seemingly silly requests about formatting
30         and variable names.  These aren't as silly as they seem. One
31         job the maintainers (and especially Linus) do is to keep things
32         looking the same. Sometimes this means that the clever hack in
33         your driver to get around a problem actually needs to become a
34         generalized kernel feature ready for next time.
35
36         PLEASE check your patch with the automated style checker
37         (scripts/checkpatch.pl) to catch trivial style violations.
38         See Documentation/CodingStyle for guidance here.
39
40         PLEASE CC: the maintainers and mailing lists that are generated
41         by scripts/get_maintainer.pl.  The results returned by the
42         script will be best if you have git installed and are making
43         your changes in a branch derived from Linus' latest git tree.
44         See Documentation/SubmittingPatches for details.
45
46         PLEASE try to include any credit lines you want added with the
47         patch. It avoids people being missed off by mistake and makes
48         it easier to know who wants adding and who doesn't.
49
50         PLEASE document known bugs. If it doesn't work for everything
51         or does something very odd once a month document it.
52
53         PLEASE remember that submissions must be made under the terms
54         of the Linux Foundation certificate of contribution and should
55         include a Signed-off-by: line.  The current version of this
56         "Developer's Certificate of Origin" (DCO) is listed in the file
57         Documentation/SubmittingPatches.
58
59 6.      Make sure you have the right to send any changes you make. If you
60         do changes at work you may find your employer owns the patch
61         not you.
62
63 7.      When sending security related changes or reports to a maintainer
64         please Cc: security@kernel.org, especially if the maintainer
65         does not respond.
66
67 8.      Happy hacking.
68
69 Descriptions of section entries:
70
71         P: Person (obsolete)
72         M: Mail patches to: FullName <address@domain>
73         R: Designated reviewer: FullName <address@domain>
74            These reviewers should be CCed on patches.
75         L: Mailing list that is relevant to this area
76         W: Web-page with status/info
77         Q: Patchwork web based patch tracking system site
78         T: SCM tree type and location.
79            Type is one of: git, hg, quilt, stgit, topgit
80         S: Status, one of the following:
81            Supported:   Someone is actually paid to look after this.
82            Maintained:  Someone actually looks after it.
83            Odd Fixes:   It has a maintainer but they don't have time to do
84                         much other than throw the odd patch in. See below..
85            Orphan:      No current maintainer [but maybe you could take the
86                         role as you write your new code].
87            Obsolete:    Old code. Something tagged obsolete generally means
88                         it has been replaced by a better system and you
89                         should be using that.
90         F: Files and directories with wildcard patterns.
91            A trailing slash includes all files and subdirectory files.
92            F:   drivers/net/    all files in and below drivers/net
93            F:   drivers/net/*   all files in drivers/net, but not below
94            F:   */net/*         all files in "any top level directory"/net
95            One pattern per line.  Multiple F: lines acceptable.
96         N: Files and directories with regex patterns.
97            N:   [^a-z]tegra     all files whose path contains the word tegra
98            One pattern per line.  Multiple N: lines acceptable.
99            scripts/get_maintainer.pl has different behavior for files that
100            match F: pattern and matches of N: patterns.  By default,
101            get_maintainer will not look at git log history when an F: pattern
102            match occurs.  When an N: match occurs, git log history is used
103            to also notify the people that have git commit signatures.
104         X: Files and directories that are NOT maintained, same rules as F:
105            Files exclusions are tested before file matches.
106            Can be useful for excluding a specific subdirectory, for instance:
107            F:   net/
108            X:   net/ipv6/
109            matches all files in and below net excluding net/ipv6/
110         K: Keyword perl extended regex pattern to match content in a
111            patch or file.  For instance:
112            K: of_get_profile
113               matches patches or files that contain "of_get_profile"
114            K: \b(printk|pr_(info|err))\b
115               matches patches or files that contain one or more of the words
116               printk, pr_info or pr_err
117            One regex pattern per line.  Multiple K: lines acceptable.
118
119 Note: For the hard of thinking, this list is meant to remain in alphabetical
120 order. If you could add yourselves to it in alphabetical order that would be
121 so much easier [Ed]
122
123 Maintainers List (try to look for most precise areas first)
124
125                 -----------------------------------
126
127 3C59X NETWORK DRIVER
128 M:      Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
129 L:      netdev@vger.kernel.org
130 S:      Maintained
131 F:      Documentation/networking/vortex.txt
132 F:      drivers/net/ethernet/3com/3c59x.c
133
134 3CR990 NETWORK DRIVER
135 M:      David Dillow <dave@thedillows.org>
136 L:      netdev@vger.kernel.org
137 S:      Maintained
138 F:      drivers/net/ethernet/3com/typhoon*
139
140 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
141 M:      Adam Radford <linuxraid@lsi.com>
142 L:      linux-scsi@vger.kernel.org
143 W:      http://www.lsi.com
144 S:      Supported
145 F:      drivers/scsi/3w-*
146
147 53C700 AND 53C700-66 SCSI DRIVER
148 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
149 L:      linux-scsi@vger.kernel.org
150 S:      Maintained
151 F:      drivers/scsi/53c700*
152
153 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
154 M:      Alexander Aring <alex.aring@gmail.com>
155 M:      Jukka Rissanen <jukka.rissanen@linux.intel.com>
156 L:      linux-bluetooth@vger.kernel.org
157 L:      linux-wpan@vger.kernel.org
158 S:      Maintained
159 F:      net/6lowpan/
160 F:      include/net/6lowpan.h
161 F:      Documentation/networking/6lowpan.txt
162
163 6PACK NETWORK DRIVER FOR AX.25
164 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
165 L:      linux-hams@vger.kernel.org
166 S:      Maintained
167 F:      drivers/net/hamradio/6pack.c
168
169 8169 10/100/1000 GIGABIT ETHERNET DRIVER
170 M:      Realtek linux nic maintainers <nic_swsd@realtek.com>
171 L:      netdev@vger.kernel.org
172 S:      Maintained
173 F:      drivers/net/ethernet/realtek/r8169.c
174
175 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
176 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
177 L:      linux-serial@vger.kernel.org
178 W:      http://serial.sourceforge.net
179 S:      Maintained
180 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
181 F:      drivers/tty/serial/8250*
182 F:      include/linux/serial_8250.h
183
184 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
185 L:      netdev@vger.kernel.org
186 S:      Orphan / Obsolete
187 F:      drivers/net/ethernet/8390/
188
189 9P FILE SYSTEM
190 M:      Eric Van Hensbergen <ericvh@gmail.com>
191 M:      Ron Minnich <rminnich@sandia.gov>
192 M:      Latchesar Ionkov <lucho@ionkov.net>
193 L:      v9fs-developer@lists.sourceforge.net
194 W:      http://swik.net/v9fs
195 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
196 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
197 S:      Maintained
198 F:      Documentation/filesystems/9p.txt
199 F:      fs/9p/
200 F:      net/9p/
201 F:      include/net/9p/
202 F:      include/uapi/linux/virtio_9p.h
203 F:      include/trace/events/9p.h
204
205
206 A8293 MEDIA DRIVER
207 M:      Antti Palosaari <crope@iki.fi>
208 L:      linux-media@vger.kernel.org
209 W:      https://linuxtv.org
210 W:      http://palosaari.fi/linux/
211 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
212 T:      git git://linuxtv.org/anttip/media_tree.git
213 S:      Maintained
214 F:      drivers/media/dvb-frontends/a8293*
215
216 AACRAID SCSI RAID DRIVER
217 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
218 L:      linux-scsi@vger.kernel.org
219 W:      http://www.adaptec.com/
220 S:      Supported
221 F:      Documentation/scsi/aacraid.txt
222 F:      drivers/scsi/aacraid/
223
224 ABI/API
225 L:      linux-api@vger.kernel.org
226 F:      include/linux/syscalls.h
227 F:      kernel/sys_ni.c
228
229 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
230 M:      Hans de Goede <hdegoede@redhat.com>
231 L:      lm-sensors@lm-sensors.org
232 S:      Maintained
233 F:      drivers/hwmon/abituguru.c
234
235 ABIT UGURU 3 HARDWARE MONITOR DRIVER
236 M:      Alistair John Strachan <alistair@devzero.co.uk>
237 L:      lm-sensors@lm-sensors.org
238 S:      Maintained
239 F:      drivers/hwmon/abituguru3.c
240
241 ACCES 104-IDI-48 GPIO DRIVER
242 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
243 L:      linux-gpio@vger.kernel.org
244 S:      Maintained
245 F:      drivers/gpio/gpio-104-idi-48.c
246
247 ACCES 104-IDIO-16 GPIO DRIVER
248 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
249 L:      linux-gpio@vger.kernel.org
250 S:      Maintained
251 F:      drivers/gpio/gpio-104-idio-16.c
252
253 ACENIC DRIVER
254 M:      Jes Sorensen <jes@trained-monkey.org>
255 L:      linux-acenic@sunsite.dk
256 S:      Maintained
257 F:      drivers/net/ethernet/alteon/acenic*
258
259 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
260 M:      Peter Feuerer <peter@piie.net>
261 L:      platform-driver-x86@vger.kernel.org
262 W:      http://piie.net/?section=acerhdf
263 S:      Maintained
264 F:      drivers/platform/x86/acerhdf.c
265
266 ACER WMI LAPTOP EXTRAS
267 M:      "Lee, Chun-Yi" <jlee@suse.com>
268 L:      platform-driver-x86@vger.kernel.org
269 S:      Maintained
270 F:      drivers/platform/x86/acer-wmi.c
271
272 ACPI
273 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
274 M:      Len Brown <lenb@kernel.org>
275 L:      linux-acpi@vger.kernel.org
276 W:      https://01.org/linux-acpi
277 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
278 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
279 S:      Supported
280 F:      drivers/acpi/
281 F:      drivers/pnp/pnpacpi/
282 F:      include/linux/acpi.h
283 F:      include/acpi/
284 F:      Documentation/acpi/
285 F:      Documentation/ABI/testing/sysfs-bus-acpi
286 F:      drivers/pci/*acpi*
287 F:      drivers/pci/*/*acpi*
288 F:      drivers/pci/*/*/*acpi*
289 F:      tools/power/acpi/
290
291 ACPI COMPONENT ARCHITECTURE (ACPICA)
292 M:      Robert Moore <robert.moore@intel.com>
293 M:      Lv Zheng <lv.zheng@intel.com>
294 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
295 L:      linux-acpi@vger.kernel.org
296 L:      devel@acpica.org
297 W:      https://acpica.org/
298 W:      https://github.com/acpica/acpica/
299 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
300 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
301 S:      Supported
302 F:      drivers/acpi/acpica/
303 F:      include/acpi/
304 F:      tools/power/acpi/
305
306 ACPI FAN DRIVER
307 M:      Zhang Rui <rui.zhang@intel.com>
308 L:      linux-acpi@vger.kernel.org
309 W:      https://01.org/linux-acpi
310 S:      Supported
311 F:      drivers/acpi/fan.c
312
313 ACPI THERMAL DRIVER
314 M:      Zhang Rui <rui.zhang@intel.com>
315 L:      linux-acpi@vger.kernel.org
316 W:      https://01.org/linux-acpi
317 S:      Supported
318 F:      drivers/acpi/*thermal*
319
320 ACPI VIDEO DRIVER
321 M:      Zhang Rui <rui.zhang@intel.com>
322 L:      linux-acpi@vger.kernel.org
323 W:      https://01.org/linux-acpi
324 S:      Supported
325 F:      drivers/acpi/acpi_video.c
326
327 ACPI WMI DRIVER
328 L:      platform-driver-x86@vger.kernel.org
329 S:      Orphan
330 F:      drivers/platform/x86/wmi.c
331
332 AD1889 ALSA SOUND DRIVER
333 M:      Thibaut Varene <T-Bone@parisc-linux.org>
334 W:      http://wiki.parisc-linux.org/AD1889
335 L:      linux-parisc@vger.kernel.org
336 S:      Maintained
337 F:      sound/pci/ad1889.*
338
339 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
340 M:      Michael Hennerich <michael.hennerich@analog.com>
341 W:      http://wiki.analog.com/AD5254
342 W:      http://ez.analog.com/community/linux-device-drivers
343 S:      Supported
344 F:      drivers/misc/ad525x_dpot.c
345
346 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
347 M:      Michael Hennerich <michael.hennerich@analog.com>
348 W:      http://wiki.analog.com/AD5398
349 W:      http://ez.analog.com/community/linux-device-drivers
350 S:      Supported
351 F:      drivers/regulator/ad5398.c
352
353 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
354 M:      Michael Hennerich <michael.hennerich@analog.com>
355 W:      http://wiki.analog.com/AD7142
356 W:      http://ez.analog.com/community/linux-device-drivers
357 S:      Supported
358 F:      drivers/input/misc/ad714x.c
359
360 AD7877 TOUCHSCREEN DRIVER
361 M:      Michael Hennerich <michael.hennerich@analog.com>
362 W:      http://wiki.analog.com/AD7877
363 W:      http://ez.analog.com/community/linux-device-drivers
364 S:      Supported
365 F:      drivers/input/touchscreen/ad7877.c
366
367 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
368 M:      Michael Hennerich <michael.hennerich@analog.com>
369 W:      http://wiki.analog.com/AD7879
370 W:      http://ez.analog.com/community/linux-device-drivers
371 S:      Supported
372 F:      drivers/input/touchscreen/ad7879.c
373
374 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
375 M:      Jiri Kosina <jikos@kernel.org>
376 S:      Maintained
377
378 ADF7242 IEEE 802.15.4 RADIO DRIVER
379 M:      Michael Hennerich <michael.hennerich@analog.com>
380 W:      https://wiki.analog.com/ADF7242
381 W:      http://ez.analog.com/community/linux-device-drivers
382 L:      linux-wpan@vger.kernel.org
383 S:      Supported
384 F:      drivers/net/ieee802154/adf7242.c
385 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
386
387 ADM1025 HARDWARE MONITOR DRIVER
388 M:      Jean Delvare <jdelvare@suse.com>
389 L:      lm-sensors@lm-sensors.org
390 S:      Maintained
391 F:      Documentation/hwmon/adm1025
392 F:      drivers/hwmon/adm1025.c
393
394 ADM1029 HARDWARE MONITOR DRIVER
395 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
396 L:      lm-sensors@lm-sensors.org
397 S:      Maintained
398 F:      drivers/hwmon/adm1029.c
399
400 ADM8211 WIRELESS DRIVER
401 L:      linux-wireless@vger.kernel.org
402 W:      http://wireless.kernel.org/
403 S:      Orphan
404 F:      drivers/net/wireless/admtek/adm8211.*
405
406 ADP1653 FLASH CONTROLLER DRIVER
407 M:      Sakari Ailus <sakari.ailus@iki.fi>
408 L:      linux-media@vger.kernel.org
409 S:      Maintained
410 F:      drivers/media/i2c/adp1653.c
411 F:      include/media/i2c/adp1653.h
412
413 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
414 M:      Michael Hennerich <michael.hennerich@analog.com>
415 W:      http://wiki.analog.com/ADP5520
416 W:      http://ez.analog.com/community/linux-device-drivers
417 S:      Supported
418 F:      drivers/mfd/adp5520.c
419 F:      drivers/video/backlight/adp5520_bl.c
420 F:      drivers/leds/leds-adp5520.c
421 F:      drivers/gpio/gpio-adp5520.c
422 F:      drivers/input/keyboard/adp5520-keys.c
423
424 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
425 M:      Michael Hennerich <michael.hennerich@analog.com>
426 W:      http://wiki.analog.com/ADP5588
427 W:      http://ez.analog.com/community/linux-device-drivers
428 S:      Supported
429 F:      drivers/input/keyboard/adp5588-keys.c
430 F:      drivers/gpio/gpio-adp5588.c
431
432 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
433 M:      Michael Hennerich <michael.hennerich@analog.com>
434 W:      http://wiki.analog.com/ADP8860
435 W:      http://ez.analog.com/community/linux-device-drivers
436 S:      Supported
437 F:      drivers/video/backlight/adp8860_bl.c
438
439 ADS1015 HARDWARE MONITOR DRIVER
440 M:      Dirk Eibach <eibach@gdsys.de>
441 L:      lm-sensors@lm-sensors.org
442 S:      Maintained
443 F:      Documentation/hwmon/ads1015
444 F:      drivers/hwmon/ads1015.c
445 F:      include/linux/i2c/ads1015.h
446
447 ADT746X FAN DRIVER
448 M:      Colin Leroy <colin@colino.net>
449 S:      Maintained
450 F:      drivers/macintosh/therm_adt746x.c
451
452 ADT7475 HARDWARE MONITOR DRIVER
453 M:      Jean Delvare <jdelvare@suse.com>
454 L:      lm-sensors@lm-sensors.org
455 S:      Maintained
456 F:      Documentation/hwmon/adt7475
457 F:      drivers/hwmon/adt7475.c
458
459 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
460 M:      Michael Hennerich <michael.hennerich@analog.com>
461 W:      http://wiki.analog.com/ADXL345
462 W:      http://ez.analog.com/community/linux-device-drivers
463 S:      Supported
464 F:      drivers/input/misc/adxl34x.c
465
466 ADVANSYS SCSI DRIVER
467 M:      Matthew Wilcox <matthew@wil.cx>
468 M:      Hannes Reinecke <hare@suse.com>
469 L:      linux-scsi@vger.kernel.org
470 S:      Maintained
471 F:      Documentation/scsi/advansys.txt
472 F:      drivers/scsi/advansys.c
473
474 AEDSP16 DRIVER
475 M:      Riccardo Facchetti <fizban@tin.it>
476 S:      Maintained
477 F:      sound/oss/aedsp16.c
478
479 AF9013 MEDIA DRIVER
480 M:      Antti Palosaari <crope@iki.fi>
481 L:      linux-media@vger.kernel.org
482 W:      https://linuxtv.org
483 W:      http://palosaari.fi/linux/
484 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
485 T:      git git://linuxtv.org/anttip/media_tree.git
486 S:      Maintained
487 F:      drivers/media/dvb-frontends/af9013*
488
489 AF9033 MEDIA DRIVER
490 M:      Antti Palosaari <crope@iki.fi>
491 L:      linux-media@vger.kernel.org
492 W:      https://linuxtv.org
493 W:      http://palosaari.fi/linux/
494 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
495 T:      git git://linuxtv.org/anttip/media_tree.git
496 S:      Maintained
497 F:      drivers/media/dvb-frontends/af9033*
498
499 AFFS FILE SYSTEM
500 L:      linux-fsdevel@vger.kernel.org
501 S:      Orphan
502 F:      Documentation/filesystems/affs.txt
503 F:      fs/affs/
504
505 AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
506 M:      David Howells <dhowells@redhat.com>
507 L:      linux-afs@lists.infradead.org
508 S:      Supported
509 F:      fs/afs/
510 F:      include/net/af_rxrpc.h
511 F:      net/rxrpc/af_rxrpc.c
512
513 AGPGART DRIVER
514 M:      David Airlie <airlied@linux.ie>
515 T:      git git://people.freedesktop.org/~airlied/linux (part of drm maint)
516 S:      Maintained
517 F:      drivers/char/agp/
518 F:      include/linux/agp*
519 F:      include/uapi/linux/agp*
520
521 AHA152X SCSI DRIVER
522 M:      "Juergen E. Fischer" <fischer@norbit.de>
523 L:      linux-scsi@vger.kernel.org
524 S:      Maintained
525 F:      drivers/scsi/aha152x*
526 F:      drivers/scsi/pcmcia/aha152x*
527
528 AIC7XXX / AIC79XX SCSI DRIVER
529 M:      Hannes Reinecke <hare@suse.com>
530 L:      linux-scsi@vger.kernel.org
531 S:      Maintained
532 F:      drivers/scsi/aic7xxx/
533
534 AIMSLAB FM RADIO RECEIVER DRIVER
535 M:      Hans Verkuil <hverkuil@xs4all.nl>
536 L:      linux-media@vger.kernel.org
537 T:      git git://linuxtv.org/media_tree.git
538 W:      https://linuxtv.org
539 S:      Maintained
540 F:      drivers/media/radio/radio-aimslab*
541
542 AIO
543 M:      Benjamin LaHaise <bcrl@kvack.org>
544 L:      linux-aio@kvack.org
545 S:      Supported
546 F:      fs/aio.c
547 F:      include/linux/*aio*.h
548
549 AIRSPY MEDIA DRIVER
550 M:      Antti Palosaari <crope@iki.fi>
551 L:      linux-media@vger.kernel.org
552 W:      https://linuxtv.org
553 W:      http://palosaari.fi/linux/
554 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
555 T:      git git://linuxtv.org/anttip/media_tree.git
556 S:      Maintained
557 F:      drivers/media/usb/airspy/
558
559 ALCATEL SPEEDTOUCH USB DRIVER
560 M:      Duncan Sands <duncan.sands@free.fr>
561 L:      linux-usb@vger.kernel.org
562 W:      http://www.linux-usb.org/SpeedTouch/
563 S:      Maintained
564 F:      drivers/usb/atm/speedtch.c
565 F:      drivers/usb/atm/usbatm.c
566
567 ALCHEMY AU1XX0 MMC DRIVER
568 M:      Manuel Lauss <manuel.lauss@gmail.com>
569 S:      Maintained
570 F:      drivers/mmc/host/au1xmmc.c
571
572 ALI1563 I2C DRIVER
573 M:      Rudolf Marek <r.marek@assembler.cz>
574 L:      linux-i2c@vger.kernel.org
575 S:      Maintained
576 F:      Documentation/i2c/busses/i2c-ali1563
577 F:      drivers/i2c/busses/i2c-ali1563.c
578
579 ALLWINNER SECURITY SYSTEM
580 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
581 L:      linux-crypto@vger.kernel.org
582 S:      Maintained
583 F:      drivers/crypto/sunxi-ss/
584
585 ALPHA PORT
586 M:      Richard Henderson <rth@twiddle.net>
587 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
588 M:      Matt Turner <mattst88@gmail.com>
589 S:      Odd Fixes
590 L:      linux-alpha@vger.kernel.org
591 F:      arch/alpha/
592
593 ALTERA MAILBOX DRIVER
594 M:      Ley Foon Tan <lftan@altera.com>
595 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
596 S:      Maintained
597 F:      drivers/mailbox/mailbox-altera.c
598
599 ALTERA PIO DRIVER
600 M:      Tien Hock Loh <thloh@altera.com>
601 L:      linux-gpio@vger.kernel.org
602 S:      Maintained
603 F:      drivers/gpio/gpio-altera.c
604
605 ALTERA TRIPLE SPEED ETHERNET DRIVER
606 M:      Vince Bridgers <vbridger@opensource.altera.com>
607 L:      netdev@vger.kernel.org
608 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
609 S:      Maintained
610 F:      drivers/net/ethernet/altera/
611
612 ALTERA UART/JTAG UART SERIAL DRIVERS
613 M:      Tobias Klauser <tklauser@distanz.ch>
614 L:      linux-serial@vger.kernel.org
615 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
616 S:      Maintained
617 F:      drivers/tty/serial/altera_uart.c
618 F:      drivers/tty/serial/altera_jtaguart.c
619 F:      include/linux/altera_uart.h
620 F:      include/linux/altera_jtaguart.h
621
622 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
623 M:      Tom Lendacky <thomas.lendacky@amd.com>
624 L:      linux-crypto@vger.kernel.org
625 S:      Supported
626 F:      drivers/crypto/ccp/
627 F:      include/linux/ccp.h
628
629 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
630 M:      Huang Rui <ray.huang@amd.com>
631 L:      lm-sensors@lm-sensors.org
632 S:      Supported
633 F:      Documentation/hwmon/fam15h_power
634 F:      drivers/hwmon/fam15h_power.c
635
636 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
637 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
638 S:      Orphan
639 F:      drivers/usb/gadget/udc/amd5536udc.*
640
641 AMD GEODE PROCESSOR/CHIPSET SUPPORT
642 P:      Andres Salomon <dilinger@queued.net>
643 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
644 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
645 S:      Supported
646 F:      drivers/char/hw_random/geode-rng.c
647 F:      drivers/crypto/geode*
648 F:      drivers/video/fbdev/geode/
649 F:      arch/x86/include/asm/geode.h
650
651 AMD IOMMU (AMD-VI)
652 M:      Joerg Roedel <joro@8bytes.org>
653 L:      iommu@lists.linux-foundation.org
654 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
655 S:      Maintained
656 F:      drivers/iommu/amd_iommu*.[ch]
657 F:      include/linux/amd-iommu.h
658
659 AMD KFD
660 M:      Oded Gabbay <oded.gabbay@gmail.com>
661 L:      dri-devel@lists.freedesktop.org
662 T:      git git://people.freedesktop.org/~gabbayo/linux.git
663 S:      Supported
664 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c
665 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
666 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
667 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
668 F:      drivers/gpu/drm/amd/amdkfd/
669 F:      drivers/gpu/drm/amd/include/cik_structs.h
670 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
671 F:      drivers/gpu/drm/amd/include/vi_structs.h
672 F:      drivers/gpu/drm/radeon/radeon_kfd.c
673 F:      drivers/gpu/drm/radeon/radeon_kfd.h
674 F:      include/uapi/linux/kfd_ioctl.h
675
676 AMD XGBE DRIVER
677 M:      Tom Lendacky <thomas.lendacky@amd.com>
678 L:      netdev@vger.kernel.org
679 S:      Supported
680 F:      drivers/net/ethernet/amd/xgbe/
681
682 AMS (Apple Motion Sensor) DRIVER
683 M:      Michael Hanselmann <linux-kernel@hansmi.ch>
684 S:      Supported
685 F:      drivers/macintosh/ams/
686
687 ANALOG DEVICES INC AD9389B DRIVER
688 M:      Hans Verkuil <hans.verkuil@cisco.com>
689 L:      linux-media@vger.kernel.org
690 S:      Maintained
691 F:      drivers/media/i2c/ad9389b*
692
693 ANALOG DEVICES INC ADV7180 DRIVER
694 M:      Lars-Peter Clausen <lars@metafoo.de>
695 L:      linux-media@vger.kernel.org
696 W:      http://ez.analog.com/community/linux-device-drivers
697 S:      Supported
698 F:      drivers/media/i2c/adv7180.c
699
700 ANALOG DEVICES INC ADV7511 DRIVER
701 M:      Hans Verkuil <hans.verkuil@cisco.com>
702 L:      linux-media@vger.kernel.org
703 S:      Maintained
704 F:      drivers/media/i2c/adv7511*
705
706 ANALOG DEVICES INC ADV7604 DRIVER
707 M:      Hans Verkuil <hans.verkuil@cisco.com>
708 L:      linux-media@vger.kernel.org
709 S:      Maintained
710 F:      drivers/media/i2c/adv7604*
711
712 ANALOG DEVICES INC ADV7842 DRIVER
713 M:      Hans Verkuil <hans.verkuil@cisco.com>
714 L:      linux-media@vger.kernel.org
715 S:      Maintained
716 F:      drivers/media/i2c/adv7842*
717
718 ANALOG DEVICES INC ASOC CODEC DRIVERS
719 M:      Lars-Peter Clausen <lars@metafoo.de>
720 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
721 W:      http://wiki.analog.com/
722 W:      http://ez.analog.com/community/linux-device-drivers
723 S:      Supported
724 F:      sound/soc/codecs/adau*
725 F:      sound/soc/codecs/adav*
726 F:      sound/soc/codecs/ad1*
727 F:      sound/soc/codecs/ad7*
728 F:      sound/soc/codecs/ssm*
729 F:      sound/soc/codecs/sigmadsp.*
730
731 ANALOG DEVICES INC ASOC DRIVERS
732 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
733 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
734 W:      http://blackfin.uclinux.org/
735 S:      Supported
736 F:      sound/soc/blackfin/*
737
738 ANALOG DEVICES INC IIO DRIVERS
739 M:      Lars-Peter Clausen <lars@metafoo.de>
740 M:      Michael Hennerich <Michael.Hennerich@analog.com>
741 W:      http://wiki.analog.com/
742 W:      http://ez.analog.com/community/linux-device-drivers
743 S:      Supported
744 F:      drivers/iio/*/ad*
745 X:      drivers/iio/*/adjd*
746 F:      drivers/staging/iio/*/ad*
747 F:      staging/iio/trigger/iio-trig-bfin-timer.c
748
749 ANALOG DEVICES INC DMA DRIVERS
750 M:      Lars-Peter Clausen <lars@metafoo.de>
751 W:      http://ez.analog.com/community/linux-device-drivers
752 S:      Supported
753 F:      drivers/dma/dma-axi-dmac.c
754
755 ANDROID DRIVERS
756 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
757 M:      Arve HjønnevĂ¥g <arve@android.com>
758 M:      Riley Andrews <riandrews@android.com>
759 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
760 L:      devel@driverdev.osuosl.org
761 S:      Supported
762 F:      drivers/android/
763 F:      drivers/staging/android/
764
765 AOA (Apple Onboard Audio) ALSA DRIVER
766 M:      Johannes Berg <johannes@sipsolutions.net>
767 L:      linuxppc-dev@lists.ozlabs.org
768 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
769 S:      Maintained
770 F:      sound/aoa/
771
772 APM DRIVER
773 M:      Jiri Kosina <jikos@kernel.org>
774 S:      Odd fixes
775 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
776 F:      arch/x86/kernel/apm_32.c
777 F:      include/linux/apm_bios.h
778 F:      include/uapi/linux/apm_bios.h
779 F:      drivers/char/apm-emulation.c
780
781 APPLE BCM5974 MULTITOUCH DRIVER
782 M:      Henrik Rydberg <rydberg@bitmath.org>
783 L:      linux-input@vger.kernel.org
784 S:      Odd fixes
785 F:      drivers/input/mouse/bcm5974.c
786
787 APPLE SMC DRIVER
788 M:      Henrik Rydberg <rydberg@bitmath.org>
789 L:      lm-sensors@lm-sensors.org
790 S:      Odd fixes
791 F:      drivers/hwmon/applesmc.c
792
793 APPLETALK NETWORK LAYER
794 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
795 S:      Maintained
796 F:      drivers/net/appletalk/
797 F:      net/appletalk/
798
799 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
800 M:      Duc Dang <dhdang@apm.com>
801 S:      Supported
802 F:      arch/arm64/boot/dts/apm/
803
804 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
805 M:      Iyappan Subramanian <isubramanian@apm.com>
806 M:      Keyur Chudgar <kchudgar@apm.com>
807 S:      Supported
808 F:      drivers/net/ethernet/apm/xgene/
809 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
810
811 APTINA CAMERA SENSOR PLL
812 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
813 L:      linux-media@vger.kernel.org
814 S:      Maintained
815 F:      drivers/media/i2c/aptina-pll.*
816
817 ARC FRAMEBUFFER DRIVER
818 M:      Jaya Kumar <jayalk@intworks.biz>
819 S:      Maintained
820 F:      drivers/video/fbdev/arcfb.c
821 F:      drivers/video/fbdev/core/fb_defio.c
822
823 ARCNET NETWORK LAYER
824 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
825 L:      netdev@vger.kernel.org
826 S:      Maintained
827 F:      drivers/net/arcnet/
828 F:      include/uapi/linux/if_arcnet.h
829
830 ARM MFM AND FLOPPY DRIVERS
831 M:      Ian Molton <spyro@f2s.com>
832 S:      Maintained
833 F:      arch/arm/lib/floppydma.S
834 F:      arch/arm/include/asm/floppy.h
835
836 ARM PMU PROFILING AND DEBUGGING
837 M:      Will Deacon <will.deacon@arm.com>
838 R:      Mark Rutland <mark.rutland@arm.com>
839 S:      Maintained
840 F:      arch/arm*/kernel/perf_*
841 F:      arch/arm/oprofile/common.c
842 F:      arch/arm*/kernel/hw_breakpoint.c
843 F:      arch/arm*/include/asm/hw_breakpoint.h
844 F:      arch/arm*/include/asm/perf_event.h
845 F:      drivers/perf/arm_pmu.c
846 F:      include/linux/perf/arm_pmu.h
847
848 ARM PORT
849 M:      Russell King <linux@arm.linux.org.uk>
850 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
851 W:      http://www.arm.linux.org.uk/
852 S:      Maintained
853 F:      arch/arm/
854
855 ARM SUB-ARCHITECTURES
856 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
857 S:      Maintained
858 F:      arch/arm/mach-*/
859 F:      arch/arm/plat-*/
860 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
861
862 ARM PRIMECELL AACI PL041 DRIVER
863 M:      Russell King <linux@arm.linux.org.uk>
864 S:      Maintained
865 F:      sound/arm/aaci.*
866
867 ARM PRIMECELL CLCD PL110 DRIVER
868 M:      Russell King <linux@arm.linux.org.uk>
869 S:      Maintained
870 F:      drivers/video/fbdev/amba-clcd.*
871
872 ARM PRIMECELL KMI PL050 DRIVER
873 M:      Russell King <linux@arm.linux.org.uk>
874 S:      Maintained
875 F:      drivers/input/serio/ambakmi.*
876 F:      include/linux/amba/kmi.h
877
878 ARM PRIMECELL MMCI PL180/1 DRIVER
879 M:      Russell King <linux@arm.linux.org.uk>
880 S:      Maintained
881 F:      drivers/mmc/host/mmci.*
882 F:      include/linux/amba/mmci.h
883
884 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
885 M:      Russell King <linux@arm.linux.org.uk>
886 S:      Maintained
887 F:      drivers/tty/serial/amba-pl01*.c
888 F:      include/linux/amba/serial.h
889
890 ARM PRIMECELL BUS SUPPORT
891 M:      Russell King <linux@arm.linux.org.uk>
892 S:      Maintained
893 F:      drivers/amba/
894 F:      include/linux/amba/bus.h
895
896 ARM/ADS SPHERE MACHINE SUPPORT
897 M:      Lennert Buytenhek <kernel@wantstofly.org>
898 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
899 S:      Maintained
900
901 ARM/AFEB9260 MACHINE SUPPORT
902 M:      Sergey Lapin <slapin@ossfans.org>
903 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
904 S:      Maintained
905
906 ARM/AJECO 1ARM MACHINE SUPPORT
907 M:      Lennert Buytenhek <kernel@wantstofly.org>
908 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
909 S:      Maintained
910
911 ARM/Allwinner sunXi SoC support
912 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
913 M:      Chen-Yu Tsai <wens@csie.org>
914 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
915 S:      Maintained
916 N:      sun[x456789]i
917
918 ARM/Allwinner SoC Clock Support
919 M:      Emilio LĂ³pez <emilio@elopez.com.ar>
920 S:      Maintained
921 F:      drivers/clk/sunxi/
922
923 ARM/Amlogic MesonX SoC support
924 M:      Carlo Caione <carlo@caione.org>
925 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
926 S:      Maintained
927 F:      drivers/media/rc/meson-ir.c
928 N:      meson[x68]
929
930 ARM/Annapurna Labs ALPINE ARCHITECTURE
931 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
932 M:      Antoine Tenart <antoine.tenart@free-electrons.com>
933 S:      Maintained
934 F:      arch/arm/mach-alpine/
935 F:      arch/arm/boot/dts/alpine*
936 F:      arch/arm64/boot/dts/al/
937 F:      drivers/*/*alpine*
938
939 ARM/ATMEL AT91RM9200, AT91SAM9 AND SAMA5 SOC SUPPORT
940 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
941 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
942 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
943 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
944 W:      http://www.linux4sam.org
945 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nferre/linux-at91.git
946 S:      Supported
947 F:      arch/arm/mach-at91/
948 F:      include/soc/at91/
949 F:      arch/arm/boot/dts/at91*.dts
950 F:      arch/arm/boot/dts/at91*.dtsi
951 F:      arch/arm/boot/dts/sama*.dts
952 F:      arch/arm/boot/dts/sama*.dtsi
953 F:      arch/arm/include/debug/at91.S
954
955 ARM/ATMEL AT91 Clock Support
956 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
957 S:      Maintained
958 F:      drivers/clk/at91
959
960 ARM/CALXEDA HIGHBANK ARCHITECTURE
961 M:      Rob Herring <robh@kernel.org>
962 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
963 S:      Maintained
964 F:      arch/arm/mach-highbank/
965 F:      arch/arm/boot/dts/highbank.dts
966 F:      arch/arm/boot/dts/ecx-*.dts*
967
968 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
969 M:      Krzysztof Halasa <khalasa@piap.pl>
970 S:      Maintained
971 F:      arch/arm/mach-cns3xxx/
972
973 ARM/CAVIUM THUNDER NETWORK DRIVER
974 M:      Sunil Goutham <sgoutham@cavium.com>
975 M:      Robert Richter <rric@kernel.org>
976 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
977 S:      Supported
978 F:      drivers/net/ethernet/cavium/thunder/
979
980 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
981 M:      Alexander Shiyan <shc_work@mail.ru>
982 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
983 S:      Odd Fixes
984 N:      clps711x
985
986 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
987 M:      Hartley Sweeten <hsweeten@visionengravers.com>
988 M:      Ryan Mallon <rmallon@gmail.com>
989 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
990 S:      Maintained
991 F:      arch/arm/mach-ep93xx/
992 F:      arch/arm/mach-ep93xx/include/mach/
993
994 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
995 M:      Lennert Buytenhek <kernel@wantstofly.org>
996 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
997 S:      Maintained
998
999 ARM/CLKDEV SUPPORT
1000 M:      Russell King <linux@arm.linux.org.uk>
1001 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1002 S:      Maintained
1003 F:      arch/arm/include/asm/clkdev.h
1004 F:      drivers/clk/clkdev.c
1005
1006 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
1007 M:      Mike Rapoport <mike@compulab.co.il>
1008 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1009 S:      Maintained
1010
1011 ARM/CONTEC MICRO9 MACHINE SUPPORT
1012 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1013 S:      Maintained
1014 F:      arch/arm/mach-ep93xx/micro9.c
1015
1016 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1017 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1018 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1019 S:      Maintained
1020 F:      drivers/hwtracing/coresight/*
1021 F:      Documentation/trace/coresight.txt
1022 F:      Documentation/devicetree/bindings/arm/coresight.txt
1023 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1024
1025 ARM/CORGI MACHINE SUPPORT
1026 M:      Richard Purdie <rpurdie@rpsys.net>
1027 S:      Maintained
1028
1029 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1030 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1031 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1032 T:      git git://github.com/ulli-kroll/linux.git
1033 S:      Maintained
1034 F:      arch/arm/mach-gemini/
1035 F:      drivers/rtc/rtc-gemini.c
1036
1037 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1038 M:      Barry Song <baohua@kernel.org>
1039 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1040 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1041 S:      Maintained
1042 F:      arch/arm/boot/dts/prima2*
1043 F:      arch/arm/mach-prima2/
1044 F:      drivers/clk/sirf/
1045 F:      drivers/clocksource/timer-prima2.c
1046 F:      drivers/clocksource/timer-atlas7.c
1047 N:      [^a-z]sirf
1048
1049 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1050 M:      Baruch Siach <baruch@tkos.co.il>
1051 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1052 S:      Maintained
1053 F:      arch/arm/boot/dts/cx92755*
1054 N:      digicolor
1055
1056 ARM/EBSA110 MACHINE SUPPORT
1057 M:      Russell King <linux@arm.linux.org.uk>
1058 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1059 W:      http://www.arm.linux.org.uk/
1060 S:      Maintained
1061 F:      arch/arm/mach-ebsa110/
1062 F:      drivers/net/ethernet/amd/am79c961a.*
1063
1064 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1065 M:      Uwe Kleine-König <kernel@pengutronix.de>
1066 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1067 S:      Maintained
1068 N:      efm32
1069
1070 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1071 M:      Daniel Ribeiro <drwyrm@gmail.com>
1072 M:      Stefan Schmidt <stefan@openezx.org>
1073 M:      Harald Welte <laforge@openezx.org>
1074 L:      openezx-devel@lists.openezx.org (moderated for non-subscribers)
1075 W:      http://www.openezx.org/
1076 S:      Maintained
1077 T:      topgit git://git.openezx.org/openezx.git
1078 F:      arch/arm/mach-pxa/ezx.c
1079
1080 ARM/FARADAY FA526 PORT
1081 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1082 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1083 S:      Maintained
1084 T:      git git://git.berlios.de/gemini-board
1085 F:      arch/arm/mm/*-fa*
1086
1087 ARM/FOOTBRIDGE ARCHITECTURE
1088 M:      Russell King <linux@arm.linux.org.uk>
1089 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1090 W:      http://www.arm.linux.org.uk/
1091 S:      Maintained
1092 F:      arch/arm/include/asm/hardware/dec21285.h
1093 F:      arch/arm/mach-footbridge/
1094
1095 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1096 M:      Shawn Guo <shawnguo@kernel.org>
1097 M:      Sascha Hauer <kernel@pengutronix.de>
1098 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1099 S:      Maintained
1100 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1101 F:      arch/arm/mach-imx/
1102 F:      arch/arm/mach-mxs/
1103 F:      arch/arm/boot/dts/imx*
1104 F:      arch/arm/configs/imx*_defconfig
1105 F:      drivers/clk/imx/
1106 F:      include/soc/imx/
1107
1108 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1109 M:      Shawn Guo <shawnguo@kernel.org>
1110 M:      Sascha Hauer <kernel@pengutronix.de>
1111 R:      Stefan Agner <stefan@agner.ch>
1112 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1113 S:      Maintained
1114 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1115 F:      arch/arm/mach-imx/*vf610*
1116 F:      arch/arm/boot/dts/vf*
1117
1118 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1119 M:      Lennert Buytenhek <kernel@wantstofly.org>
1120 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1121 S:      Maintained
1122
1123 ARM/GUMSTIX MACHINE SUPPORT
1124 M:      Steve Sakoman <sakoman@gmail.com>
1125 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1126 S:      Maintained
1127
1128 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1129 M:      Philipp Zabel <philipp.zabel@gmail.com>
1130 M:      Paul Parsons <lost.distance@yahoo.com>
1131 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1132 S:      Maintained
1133 F:      arch/arm/mach-pxa/hx4700.c
1134 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1135 F:      sound/soc/pxa/hx4700.c
1136
1137 ARM/HISILICON SOC SUPPORT
1138 M:      Wei Xu <xuwei5@hisilicon.com>
1139 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1140 W:      http://www.hisilicon.com
1141 S:      Supported
1142 T:      git git://github.com/hisilicon/linux-hisi.git
1143 F:      arch/arm/mach-hisi/
1144 F:      arch/arm/boot/dts/hi3*
1145 F:      arch/arm/boot/dts/hip*
1146 F:      arch/arm/boot/dts/hisi*
1147 F:      arch/arm64/boot/dts/hisilicon/
1148
1149 ARM/HP JORNADA 7XX MACHINE SUPPORT
1150 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1151 W:      www.jlime.com
1152 S:      Maintained
1153 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1154 F:      arch/arm/mach-sa1100/jornada720.c
1155 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1156
1157 ARM/IGEP MACHINE SUPPORT
1158 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1159 M:      Javier Martinez Canillas <javier@dowhile0.org>
1160 L:      linux-omap@vger.kernel.org
1161 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1162 S:      Maintained
1163 F:      arch/arm/boot/dts/omap3-igep*
1164
1165 ARM/INCOME PXA270 SUPPORT
1166 M:      Marek Vasut <marek.vasut@gmail.com>
1167 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1168 S:      Maintained
1169 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1170
1171 ARM/INTEL IOP32X ARM ARCHITECTURE
1172 M:      Lennert Buytenhek <kernel@wantstofly.org>
1173 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1174 S:      Maintained
1175
1176 ARM/INTEL IOP33X ARM ARCHITECTURE
1177 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1178 S:      Orphan
1179
1180 ARM/INTEL IOP13XX ARM ARCHITECTURE
1181 M:      Lennert Buytenhek <kernel@wantstofly.org>
1182 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1183 S:      Maintained
1184
1185 ARM/INTEL IQ81342EX MACHINE SUPPORT
1186 M:      Lennert Buytenhek <kernel@wantstofly.org>
1187 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1188 S:      Maintained
1189
1190 ARM/INTEL IXDP2850 MACHINE SUPPORT
1191 M:      Lennert Buytenhek <kernel@wantstofly.org>
1192 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1193 S:      Maintained
1194
1195 ARM/INTEL IXP4XX ARM ARCHITECTURE
1196 M:      Imre Kaloz <kaloz@openwrt.org>
1197 M:      Krzysztof Halasa <khalasa@piap.pl>
1198 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1199 S:      Maintained
1200 F:      arch/arm/mach-ixp4xx/
1201
1202 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1203 M:      Jonathan Cameron <jic23@cam.ac.uk>
1204 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1205 S:      Maintained
1206 F:      arch/arm/mach-pxa/stargate2.c
1207 F:      drivers/pcmcia/pxa2xx_stargate2.c
1208
1209 ARM/INTEL XSC3 (MANZANO) ARM CORE
1210 M:      Lennert Buytenhek <kernel@wantstofly.org>
1211 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1212 S:      Maintained
1213
1214 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1215 M:      Lennert Buytenhek <kernel@wantstofly.org>
1216 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1217 S:      Maintained
1218
1219 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
1220 M:      Santosh Shilimkar <ssantosh@kernel.org>
1221 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1222 S:      Maintained
1223 F:      arch/arm/mach-keystone/
1224 F:      arch/arm/boot/dts/k2*
1225 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
1226
1227 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
1228 M:      Santosh Shilimkar <ssantosh@kernel.org>
1229 L:      linux-kernel@vger.kernel.org
1230 S:      Maintained
1231 F:      drivers/clk/keystone/
1232
1233 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
1234 M:      Santosh Shilimkar <ssantosh@kernel.org>
1235 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1236 L:      linux-kernel@vger.kernel.org
1237 S:      Maintained
1238 F:      drivers/clocksource/timer-keystone.c
1239
1240 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
1241 M:      Santosh Shilimkar <ssantosh@kernel.org>
1242 L:      linux-kernel@vger.kernel.org
1243 S:      Maintained
1244 F:      drivers/power/reset/keystone-reset.c
1245
1246 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
1247 M:      Santosh Shilimkar <ssantosh@kernel.org>
1248 L:      linux-kernel@vger.kernel.org
1249 S:      Maintained
1250 F:      drivers/memory/*emif*
1251
1252 ARM/LOGICPD PXA270 MACHINE SUPPORT
1253 M:      Lennert Buytenhek <kernel@wantstofly.org>
1254 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1255 S:      Maintained
1256
1257 ARM/LPC18XX ARCHITECTURE
1258 M:      Joachim Eastwood <manabian@gmail.com>
1259 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1260 S:      Maintained
1261 F:      arch/arm/boot/dts/lpc43*
1262 F:      drivers/clk/nxp/clk-lpc18xx*
1263 F:      drivers/clocksource/time-lpc32xx.c
1264 F:      drivers/i2c/busses/i2c-lpc2k.c
1265 F:      drivers/memory/pl172.c
1266 F:      drivers/mtd/spi-nor/nxp-spifi.c
1267 F:      drivers/rtc/rtc-lpc24xx.c
1268 N:      lpc18xx
1269
1270 ARM/MAGICIAN MACHINE SUPPORT
1271 M:      Philipp Zabel <philipp.zabel@gmail.com>
1272 S:      Maintained
1273
1274 ARM/Marvell Kirkwood and Armada 370, 375, 38x, XP SOC support
1275 M:      Jason Cooper <jason@lakedaemon.net>
1276 M:      Andrew Lunn <andrew@lunn.ch>
1277 M:      Gregory Clement <gregory.clement@free-electrons.com>
1278 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1279 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1280 S:      Maintained
1281 F:      arch/arm/mach-mvebu/
1282 F:      drivers/rtc/rtc-armada38x.c
1283 F:      arch/arm/boot/dts/armada*
1284 F:      arch/arm/boot/dts/kirkwood*
1285
1286
1287 ARM/Marvell Berlin SoC support
1288 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1289 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1290 S:      Maintained
1291 F:      arch/arm/mach-berlin/
1292 F:      arch/arm/boot/dts/berlin*
1293 F:      arch/arm64/boot/dts/marvell/berlin*
1294
1295
1296 ARM/Marvell Dove/MV78xx0/Orion SOC support
1297 M:      Jason Cooper <jason@lakedaemon.net>
1298 M:      Andrew Lunn <andrew@lunn.ch>
1299 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1300 M:      Gregory Clement <gregory.clement@free-electrons.com>
1301 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1302 S:      Maintained
1303 F:      arch/arm/mach-dove/
1304 F:      arch/arm/mach-mv78xx0/
1305 F:      arch/arm/mach-orion5x/
1306 F:      arch/arm/plat-orion/
1307 F:      arch/arm/boot/dts/dove*
1308 F:      arch/arm/boot/dts/orion5x*
1309
1310
1311 ARM/Orion SoC/Technologic Systems TS-78xx platform support
1312 M:      Alexander Clouter <alex@digriz.org.uk>
1313 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1314 W:      http://www.digriz.org.uk/ts78xx/kernel
1315 S:      Maintained
1316 F:      arch/arm/mach-orion5x/ts78xx-*
1317
1318 ARM/Mediatek RTC DRIVER
1319 M:      Eddie Huang <eddie.huang@mediatek.com>
1320 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1321 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1322 S:      Maintained
1323 F:      drivers/rtc/rtc-mt6397.c
1324
1325 ARM/Mediatek SoC support
1326 M:      Matthias Brugger <matthias.bgg@gmail.com>
1327 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1328 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1329 S:      Maintained
1330 F:      arch/arm/boot/dts/mt6*
1331 F:      arch/arm/boot/dts/mt8*
1332 F:      arch/arm/mach-mediatek/
1333 N:      mtk
1334 K:      mediatek
1335
1336 ARM/Mediatek USB3 PHY DRIVER
1337 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
1338 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1339 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1340 S:      Maintained
1341 F:      drivers/phy/phy-mt65xx-usb3.c
1342
1343 ARM/MICREL KS8695 ARCHITECTURE
1344 M:      Greg Ungerer <gerg@uclinux.org>
1345 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1346 F:      arch/arm/mach-ks8695/
1347 S:      Odd Fixes
1348
1349 ARM/MIOA701 MACHINE SUPPORT
1350 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1351 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1352 F:      arch/arm/mach-pxa/mioa701.c
1353 S:      Maintained
1354
1355 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1356 M:      Michael Petchkovsky <mkpetch@internode.on.net>
1357 S:      Maintained
1358
1359 ARM/NOMADIK ARCHITECTURE
1360 M:      Alessandro Rubini <rubini@unipv.it>
1361 M:      Linus Walleij <linus.walleij@linaro.org>
1362 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1363 S:      Maintained
1364 F:      arch/arm/mach-nomadik/
1365 F:      drivers/pinctrl/nomadik/
1366 F:      drivers/i2c/busses/i2c-nomadik.c
1367 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
1368
1369 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
1370 M:      Nelson Castillo <arhuaco@freaks-unidos.net>
1371 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
1372 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
1373 S:      Supported
1374
1375 ARM/TOSA MACHINE SUPPORT
1376 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1377 M:      Dirk Opfer <dirk@opfer-online.de>
1378 S:      Maintained
1379
1380 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
1381 M:      Marek Vasut <marek.vasut@gmail.com>
1382 L:      linux-arm-kernel@lists.infradead.org
1383 W:      http://hackndev.com
1384 S:      Maintained
1385 F:      arch/arm/mach-pxa/include/mach/palmtx.h
1386 F:      arch/arm/mach-pxa/palmtx.c
1387 F:      arch/arm/mach-pxa/include/mach/palmt5.h
1388 F:      arch/arm/mach-pxa/palmt5.c
1389 F:      arch/arm/mach-pxa/include/mach/palmld.h
1390 F:      arch/arm/mach-pxa/palmld.c
1391 F:      arch/arm/mach-pxa/include/mach/palmte2.h
1392 F:      arch/arm/mach-pxa/palmte2.c
1393 F:      arch/arm/mach-pxa/include/mach/palmtc.h
1394 F:      arch/arm/mach-pxa/palmtc.c
1395
1396 ARM/PALM TREO SUPPORT
1397 M:      Tomas Cech <sleep_walker@suse.com>
1398 L:      linux-arm-kernel@lists.infradead.org
1399 W:      http://hackndev.com
1400 S:      Maintained
1401 F:      arch/arm/mach-pxa/include/mach/palmtreo.h
1402 F:      arch/arm/mach-pxa/palmtreo.c
1403
1404 ARM/PALMZ72 SUPPORT
1405 M:      Sergey Lapin <slapin@ossfans.org>
1406 L:      linux-arm-kernel@lists.infradead.org
1407 W:      http://hackndev.com
1408 S:      Maintained
1409 F:      arch/arm/mach-pxa/include/mach/palmz72.h
1410 F:      arch/arm/mach-pxa/palmz72.c
1411
1412 ARM/PLEB SUPPORT
1413 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
1414 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1415 S:      Maintained
1416
1417 ARM/PT DIGITAL BOARD PORT
1418 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
1419 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1420 W:      http://www.arm.linux.org.uk/
1421 S:      Maintained
1422
1423 ARM/QUALCOMM SUPPORT
1424 M:      Andy Gross <andy.gross@linaro.org>
1425 M:      David Brown <david.brown@linaro.org>
1426 L:      linux-arm-msm@vger.kernel.org
1427 L:      linux-soc@vger.kernel.org
1428 S:      Maintained
1429 F:      arch/arm/boot/dts/qcom-*.dts
1430 F:      arch/arm/boot/dts/qcom-*.dtsi
1431 F:      arch/arm/mach-qcom/
1432 F:      arch/arm64/boot/dts/qcom/*
1433 F:      drivers/soc/qcom/
1434 F:      drivers/tty/serial/msm_serial.h
1435 F:      drivers/tty/serial/msm_serial.c
1436 F:      drivers/*/pm8???-*
1437 F:      drivers/mfd/ssbi.c
1438 F:      drivers/firmware/qcom_scm.c
1439 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/agross/linux.git
1440
1441 ARM/RADISYS ENP2611 MACHINE SUPPORT
1442 M:      Lennert Buytenhek <kernel@wantstofly.org>
1443 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1444 S:      Maintained
1445
1446 ARM/RENESAS ARM64 ARCHITECTURE
1447 M:      Simon Horman <horms@verge.net.au>
1448 M:      Magnus Damm <magnus.damm@gmail.com>
1449 L:      linux-renesas-soc@vger.kernel.org
1450 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
1451 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1452 S:      Supported
1453 F:      arch/arm64/boot/dts/renesas/
1454
1455 ARM/RISCPC ARCHITECTURE
1456 M:      Russell King <linux@arm.linux.org.uk>
1457 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1458 W:      http://www.arm.linux.org.uk/
1459 S:      Maintained
1460 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
1461 F:      arch/arm/include/asm/hardware/ioc.h
1462 F:      arch/arm/include/asm/hardware/iomd.h
1463 F:      arch/arm/include/asm/hardware/memc.h
1464 F:      arch/arm/mach-rpc/
1465 F:      drivers/net/ethernet/8390/etherh.c
1466 F:      drivers/net/ethernet/i825xx/ether1*
1467 F:      drivers/net/ethernet/seeq/ether3*
1468 F:      drivers/scsi/arm/
1469
1470 ARM/Rockchip SoC support
1471 M:      Heiko Stuebner <heiko@sntech.de>
1472 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1473 L:      linux-rockchip@lists.infradead.org
1474 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
1475 S:      Maintained
1476 F:      arch/arm/boot/dts/rk3*
1477 F:      arch/arm/mach-rockchip/
1478 F:      drivers/clk/rockchip/
1479 F:      drivers/i2c/busses/i2c-rk3x.c
1480 F:      drivers/*/*rockchip*
1481 F:      drivers/*/*/*rockchip*
1482 F:      sound/soc/rockchip/
1483 N:      rockchip
1484
1485 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
1486 M:      Kukjin Kim <kgene@kernel.org>
1487 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
1488 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1489 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1490 S:      Maintained
1491 F:      arch/arm/boot/dts/s3c*
1492 F:      arch/arm/boot/dts/s5p*
1493 F:      arch/arm/boot/dts/samsung*
1494 F:      arch/arm/boot/dts/exynos*
1495 F:      arch/arm64/boot/dts/exynos/
1496 F:      arch/arm/plat-samsung/
1497 F:      arch/arm/mach-s3c24*/
1498 F:      arch/arm/mach-s3c64xx/
1499 F:      arch/arm/mach-s5p*/
1500 F:      arch/arm/mach-exynos*/
1501 F:      drivers/*/*s3c2410*
1502 F:      drivers/*/*/*s3c2410*
1503 F:      drivers/spi/spi-s3c*
1504 F:      sound/soc/samsung/*
1505 F:      Documentation/arm/Samsung/
1506 F:      Documentation/devicetree/bindings/arm/samsung/
1507 F:      Documentation/devicetree/bindings/sram/samsung-sram.txt
1508 F:      Documentation/devicetree/bindings/power/pd-samsung.txt
1509 N:      exynos
1510
1511 ARM/SAMSUNG MOBILE MACHINE SUPPORT
1512 M:      Kyungmin Park <kyungmin.park@samsung.com>
1513 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1514 S:      Maintained
1515 F:      arch/arm/mach-s5pv210/
1516
1517 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1518 M:      Kyungmin Park <kyungmin.park@samsung.com>
1519 M:      Kamil Debski <k.debski@samsung.com>
1520 L:      linux-arm-kernel@lists.infradead.org
1521 L:      linux-media@vger.kernel.org
1522 S:      Maintained
1523 F:      drivers/media/platform/s5p-g2d/
1524
1525 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1526 M:      Kyungmin Park <kyungmin.park@samsung.com>
1527 M:      Kamil Debski <k.debski@samsung.com>
1528 M:      Jeongtae Park <jtp.park@samsung.com>
1529 L:      linux-arm-kernel@lists.infradead.org
1530 L:      linux-media@vger.kernel.org
1531 S:      Maintained
1532 F:      arch/arm/plat-samsung/s5p-dev-mfc.c
1533 F:      drivers/media/platform/s5p-mfc/
1534
1535 ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1536 M:      Kyungmin Park <kyungmin.park@samsung.com>
1537 M:      Tomasz Stanislawski <t.stanislaws@samsung.com>
1538 L:      linux-arm-kernel@lists.infradead.org
1539 L:      linux-media@vger.kernel.org
1540 S:      Maintained
1541 F:      drivers/media/platform/s5p-tv/
1542
1543 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
1544 M:      Andrzej Pietrasiewicz <andrzej.p@samsung.com>
1545 M:      Jacek Anaszewski <j.anaszewski@samsung.com>
1546 L:      linux-arm-kernel@lists.infradead.org
1547 L:      linux-media@vger.kernel.org
1548 S:      Maintained
1549 F:      drivers/media/platform/s5p-jpeg/
1550
1551 ARM/SHMOBILE ARM ARCHITECTURE
1552 M:      Simon Horman <horms@verge.net.au>
1553 M:      Magnus Damm <magnus.damm@gmail.com>
1554 L:      linux-renesas-soc@vger.kernel.org
1555 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
1556 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1557 S:      Supported
1558 F:      arch/arm/boot/dts/emev2*
1559 F:      arch/arm/boot/dts/r7s*
1560 F:      arch/arm/boot/dts/r8a*
1561 F:      arch/arm/boot/dts/sh*
1562 F:      arch/arm/configs/shmobile_defconfig
1563 F:      arch/arm/include/debug/renesas-scif.S
1564 F:      arch/arm/mach-shmobile/
1565 F:      drivers/sh/
1566
1567 ARM/SOCFPGA ARCHITECTURE
1568 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1569 S:      Maintained
1570 F:      arch/arm/mach-socfpga/
1571 F:      arch/arm/boot/dts/socfpga*
1572 F:      arch/arm/configs/socfpga_defconfig
1573 F:      arch/arm64/boot/dts/altera/
1574 W:      http://www.rocketboards.org
1575 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
1576
1577 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1578 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1579 S:      Maintained
1580 F:      drivers/clk/socfpga/
1581
1582 ARM/SOCFPGA EDAC SUPPORT
1583 M:      Thor Thayer <tthayer@opensource.altera.com>
1584 S:      Maintained
1585 F:      drivers/edac/altera_edac.
1586
1587 ARM/STI ARCHITECTURE
1588 M:      Srinivas Kandagatla <srinivas.kandagatla@gmail.com>
1589 M:      Maxime Coquelin <maxime.coquelin@st.com>
1590 M:      Patrice Chotard <patrice.chotard@st.com>
1591 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1592 L:      kernel@stlinux.com
1593 W:      http://www.stlinux.com
1594 S:      Maintained
1595 F:      arch/arm/mach-sti/
1596 F:      arch/arm/boot/dts/sti*
1597 F:      drivers/char/hw_random/st-rng.c
1598 F:      drivers/clocksource/arm_global_timer.c
1599 F:      drivers/clocksource/clksrc_st_lpc.c
1600 F:      drivers/i2c/busses/i2c-st.c
1601 F:      drivers/media/rc/st_rc.c
1602 F:      drivers/media/platform/sti/c8sectpfe/
1603 F:      drivers/mmc/host/sdhci-st.c
1604 F:      drivers/phy/phy-miphy28lp.c
1605 F:      drivers/phy/phy-miphy365x.c
1606 F:      drivers/phy/phy-stih407-usb.c
1607 F:      drivers/phy/phy-stih41x-usb.c
1608 F:      drivers/pinctrl/pinctrl-st.c
1609 F:      drivers/reset/sti/
1610 F:      drivers/rtc/rtc-st-lpc.c
1611 F:      drivers/tty/serial/st-asc.c
1612 F:      drivers/usb/dwc3/dwc3-st.c
1613 F:      drivers/usb/host/ehci-st.c
1614 F:      drivers/usb/host/ohci-st.c
1615 F:      drivers/watchdog/st_lpc_wdt.c
1616 F:      drivers/ata/ahci_st.c
1617
1618 ARM/STM32 ARCHITECTURE
1619 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
1620 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1621 S:      Maintained
1622 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git
1623 N:      stm32
1624 F:      drivers/clocksource/armv7m_systick.c
1625
1626 ARM/TANGO ARCHITECTURE
1627 M:      Marc Gonzalez <marc_gonzalez@sigmadesigns.com>
1628 L:      linux-arm-kernel@lists.infradead.org
1629 S:      Maintained
1630 F:      arch/arm/mach-tango/
1631 F:      arch/arm/boot/dts/tango*
1632
1633 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
1634 M:      Lennert Buytenhek <kernel@wantstofly.org>
1635 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1636 S:      Maintained
1637
1638 ARM/TETON BGA MACHINE SUPPORT
1639 M:      "Mark F. Brown" <mark.brown314@gmail.com>
1640 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1641 S:      Maintained
1642
1643 ARM/THECUS N2100 MACHINE SUPPORT
1644 M:      Lennert Buytenhek <kernel@wantstofly.org>
1645 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1646 S:      Maintained
1647
1648 ARM/NUVOTON W90X900 ARM ARCHITECTURE
1649 M:      Wan ZongShun <mcuos.com@gmail.com>
1650 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1651 W:      http://www.mcuos.com
1652 S:      Maintained
1653 F:      arch/arm/mach-w90x900/
1654 F:      drivers/input/keyboard/w90p910_keypad.c
1655 F:      drivers/input/touchscreen/w90p910_ts.c
1656 F:      drivers/watchdog/nuc900_wdt.c
1657 F:      drivers/net/ethernet/nuvoton/w90p910_ether.c
1658 F:      drivers/mtd/nand/nuc900_nand.c
1659 F:      drivers/rtc/rtc-nuc900.c
1660 F:      drivers/spi/spi-nuc900.c
1661 F:      drivers/usb/host/ehci-w90x900.c
1662 F:      drivers/video/fbdev/nuc900fb.c
1663
1664 ARM/U300 MACHINE SUPPORT
1665 M:      Linus Walleij <linus.walleij@linaro.org>
1666 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1667 S:      Supported
1668 F:      arch/arm/mach-u300/
1669 F:      drivers/clocksource/timer-u300.c
1670 F:      drivers/i2c/busses/i2c-stu300.c
1671 F:      drivers/rtc/rtc-coh901331.c
1672 F:      drivers/watchdog/coh901327_wdt.c
1673 F:      drivers/dma/coh901318*
1674 F:      drivers/mfd/ab3100*
1675 F:      drivers/rtc/rtc-ab3100.c
1676 F:      drivers/rtc/rtc-coh901331.c
1677 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1678
1679 ARM/UNIPHIER ARCHITECTURE
1680 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
1681 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1682 S:      Maintained
1683 F:      arch/arm/boot/dts/uniphier*
1684 F:      arch/arm/include/asm/hardware/cache-uniphier.h
1685 F:      arch/arm/mach-uniphier/
1686 F:      arch/arm/mm/cache-uniphier.c
1687 F:      arch/arm64/boot/dts/socionext/
1688 F:      drivers/bus/uniphier-system-bus.c
1689 F:      drivers/i2c/busses/i2c-uniphier*
1690 F:      drivers/pinctrl/uniphier/
1691 F:      drivers/tty/serial/8250/8250_uniphier.c
1692 N:      uniphier
1693
1694 ARM/Ux500 ARM ARCHITECTURE
1695 M:      Linus Walleij <linus.walleij@linaro.org>
1696 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1697 S:      Maintained
1698 F:      arch/arm/mach-ux500/
1699 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
1700 F:      drivers/dma/ste_dma40*
1701 F:      drivers/hwspinlock/u8500_hsem.c
1702 F:      drivers/mfd/abx500*
1703 F:      drivers/mfd/ab8500*
1704 F:      drivers/mfd/dbx500*
1705 F:      drivers/mfd/db8500*
1706 F:      drivers/pinctrl/nomadik/pinctrl-ab*
1707 F:      drivers/pinctrl/nomadik/pinctrl-nomadik*
1708 F:      drivers/rtc/rtc-ab8500.c
1709 F:      drivers/rtc/rtc-pl031.c
1710 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1711
1712 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
1713 M:      Ulf Hansson <ulf.hansson@linaro.org>
1714 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1715 T:      git git://git.linaro.org/people/ulfh/clk.git
1716 S:      Maintained
1717 F:      drivers/clk/ux500/
1718 F:      include/linux/platform_data/clk-ux500.h
1719
1720 ARM/VERSATILE EXPRESS PLATFORM
1721 M:      Liviu Dudau <liviu.dudau@arm.com>
1722 M:      Sudeep Holla <sudeep.holla@arm.com>
1723 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
1724 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1725 S:      Maintained
1726 F:      arch/arm/boot/dts/vexpress*
1727 F:      arch/arm64/boot/dts/arm/
1728 F:      arch/arm/mach-vexpress/
1729 F:      */*/vexpress*
1730 F:      */*/*/vexpress*
1731 F:      drivers/clk/versatile/clk-vexpress-osc.c
1732 F:      drivers/clocksource/versatile.c
1733
1734 ARM/VFP SUPPORT
1735 M:      Russell King <linux@arm.linux.org.uk>
1736 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1737 W:      http://www.arm.linux.org.uk/
1738 S:      Maintained
1739 F:      arch/arm/vfp/
1740
1741 ARM/VOIPAC PXA270 SUPPORT
1742 M:      Marek Vasut <marek.vasut@gmail.com>
1743 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1744 S:      Maintained
1745 F:      arch/arm/mach-pxa/vpac270.c
1746 F:      arch/arm/mach-pxa/include/mach/vpac270.h
1747
1748 ARM/VT8500 ARM ARCHITECTURE
1749 M:      Tony Prisk <linux@prisktech.co.nz>
1750 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1751 S:      Maintained
1752 F:      arch/arm/mach-vt8500/
1753 F:      drivers/clocksource/vt8500_timer.c
1754 F:      drivers/i2c/busses/i2c-wmt.c
1755 F:      drivers/mmc/host/wmt-sdmmc.c
1756 F:      drivers/pwm/pwm-vt8500.c
1757 F:      drivers/rtc/rtc-vt8500.c
1758 F:      drivers/tty/serial/vt8500_serial.c
1759 F:      drivers/usb/host/ehci-platform.c
1760 F:      drivers/usb/host/uhci-platform.c
1761 F:      drivers/video/fbdev/vt8500lcdfb.*
1762 F:      drivers/video/fbdev/wm8505fb*
1763 F:      drivers/video/fbdev/wmt_ge_rops.*
1764
1765 ARM/ZIPIT Z2 SUPPORT
1766 M:      Marek Vasut <marek.vasut@gmail.com>
1767 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1768 S:      Maintained
1769 F:      arch/arm/mach-pxa/z2.c
1770 F:      arch/arm/mach-pxa/include/mach/z2.h
1771
1772 ARM/ZTE ARCHITECTURE
1773 M:      Jun Nie <jun.nie@linaro.org>
1774 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1775 S:      Maintained
1776 F:      arch/arm/mach-zx/
1777 F:      drivers/clk/zte/
1778 F:      Documentation/devicetree/bindings/arm/zte.txt
1779 F:      Documentation/devicetree/bindings/clock/zx296702-clk.txt
1780
1781 ARM/ZYNQ ARCHITECTURE
1782 M:      Michal Simek <michal.simek@xilinx.com>
1783 R:      Sören Brinkmann <soren.brinkmann@xilinx.com>
1784 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1785 W:      http://wiki.xilinx.com
1786 T:      git https://github.com/Xilinx/linux-xlnx.git
1787 S:      Supported
1788 F:      arch/arm/mach-zynq/
1789 F:      drivers/cpuidle/cpuidle-zynq.c
1790 F:      drivers/block/xsysace.c
1791 N:      zynq
1792 N:      xilinx
1793 F:      drivers/clocksource/cadence_ttc_timer.c
1794 F:      drivers/i2c/busses/i2c-cadence.c
1795 F:      drivers/mmc/host/sdhci-of-arasan.c
1796 F:      drivers/edac/synopsys_edac.c
1797
1798 ARM SMMU DRIVERS
1799 M:      Will Deacon <will.deacon@arm.com>
1800 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1801 S:      Maintained
1802 F:      drivers/iommu/arm-smmu.c
1803 F:      drivers/iommu/arm-smmu-v3.c
1804 F:      drivers/iommu/io-pgtable-arm.c
1805
1806 ARM64 PORT (AARCH64 ARCHITECTURE)
1807 M:      Catalin Marinas <catalin.marinas@arm.com>
1808 M:      Will Deacon <will.deacon@arm.com>
1809 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1810 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
1811 S:      Maintained
1812 F:      arch/arm64/
1813 F:      Documentation/arm64/
1814
1815 AS3645A LED FLASH CONTROLLER DRIVER
1816 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1817 L:      linux-media@vger.kernel.org
1818 T:      git git://linuxtv.org/media_tree.git
1819 S:      Maintained
1820 F:      drivers/media/i2c/as3645a.c
1821 F:      include/media/i2c/as3645a.h
1822
1823 ASC7621 HARDWARE MONITOR DRIVER
1824 M:      George Joseph <george.joseph@fairview5.com>
1825 L:      lm-sensors@lm-sensors.org
1826 S:      Maintained
1827 F:      Documentation/hwmon/asc7621
1828 F:      drivers/hwmon/asc7621.c
1829
1830 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
1831 M:      Corentin Chary <corentin.chary@gmail.com>
1832 L:      acpi4asus-user@lists.sourceforge.net
1833 L:      platform-driver-x86@vger.kernel.org
1834 W:      http://acpi4asus.sf.net
1835 S:      Maintained
1836 F:      drivers/platform/x86/asus*.c
1837 F:      drivers/platform/x86/eeepc*.c
1838
1839 ASUS WIRELESS RADIO CONTROL DRIVER
1840 M:      JoĂ£o Paulo Rechi Vita <jprvita@gmail.com>
1841 L:      platform-driver-x86@vger.kernel.org
1842 S:      Maintained
1843 F:      drivers/platform/x86/asus-wireless.c
1844
1845 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
1846 R:      Dan Williams <dan.j.williams@intel.com>
1847 W:      http://sourceforge.net/projects/xscaleiop
1848 S:      Odd fixes
1849 F:      Documentation/crypto/async-tx-api.txt
1850 F:      crypto/async_tx/
1851 F:      drivers/dma/
1852 F:      include/linux/dmaengine.h
1853 F:      include/linux/async_tx.h
1854
1855 AT24 EEPROM DRIVER
1856 M:      Wolfram Sang <wsa@the-dreams.de>
1857 L:      linux-i2c@vger.kernel.org
1858 S:      Maintained
1859 F:      drivers/misc/eeprom/at24.c
1860 F:      include/linux/platform_data/at24.h
1861
1862 ATA OVER ETHERNET (AOE) DRIVER
1863 M:      "Ed L. Cashin" <ed.cashin@acm.org>
1864 W:      http://www.openaoe.org/
1865 S:      Supported
1866 F:      Documentation/aoe/
1867 F:      drivers/block/aoe/
1868
1869 ATHEROS 71XX/9XXX GPIO DRIVER
1870 M:      Alban Bedel <albeu@free.fr>
1871 W:      https://github.com/AlbanBedel/linux
1872 T:      git git://github.com/AlbanBedel/linux
1873 S:      Maintained
1874 F:      drivers/gpio/gpio-ath79.c
1875 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
1876
1877 ATHEROS ATH GENERIC UTILITIES
1878 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1879 L:      linux-wireless@vger.kernel.org
1880 S:      Supported
1881 F:      drivers/net/wireless/ath/*
1882
1883 ATHEROS ATH5K WIRELESS DRIVER
1884 M:      Jiri Slaby <jirislaby@gmail.com>
1885 M:      Nick Kossifidis <mickflemm@gmail.com>
1886 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1887 L:      linux-wireless@vger.kernel.org
1888 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
1889 S:      Maintained
1890 F:      drivers/net/wireless/ath/ath5k/
1891
1892 ATHEROS ATH6KL WIRELESS DRIVER
1893 M:      Kalle Valo <kvalo@qca.qualcomm.com>
1894 L:      linux-wireless@vger.kernel.org
1895 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
1896 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
1897 S:      Supported
1898 F:      drivers/net/wireless/ath/ath6kl/
1899
1900 WILOCITY WIL6210 WIRELESS DRIVER
1901 M:      Maya Erez <qca_merez@qca.qualcomm.com>
1902 L:      linux-wireless@vger.kernel.org
1903 L:      wil6210@qca.qualcomm.com
1904 S:      Supported
1905 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
1906 F:      drivers/net/wireless/ath/wil6210/
1907 F:      include/uapi/linux/wil6210_uapi.h
1908
1909 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1910 M:      Christian Lamparter <chunkeey@googlemail.com>
1911 L:      linux-wireless@vger.kernel.org
1912 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
1913 S:      Maintained
1914 F:      drivers/net/wireless/ath/carl9170/
1915
1916 ATK0110 HWMON DRIVER
1917 M:      Luca Tettamanti <kronos.it@gmail.com>
1918 L:      lm-sensors@lm-sensors.org
1919 S:      Maintained
1920 F:      drivers/hwmon/asus_atk0110.c
1921
1922 ATI_REMOTE2 DRIVER
1923 M:      Ville Syrjala <syrjala@sci.fi>
1924 S:      Maintained
1925 F:      drivers/input/misc/ati_remote2.c
1926
1927 ATLX ETHERNET DRIVERS
1928 M:      Jay Cliburn <jcliburn@gmail.com>
1929 M:      Chris Snook <chris.snook@gmail.com>
1930 L:      netdev@vger.kernel.org
1931 W:      http://sourceforge.net/projects/atl1
1932 W:      http://atl1.sourceforge.net
1933 S:      Maintained
1934 F:      drivers/net/ethernet/atheros/
1935
1936 ATM
1937 M:      Chas Williams <3chas3@gmail.com>
1938 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
1939 L:      netdev@vger.kernel.org
1940 W:      http://linux-atm.sourceforge.net
1941 S:      Maintained
1942 F:      drivers/atm/
1943 F:      include/linux/atm*
1944 F:      include/uapi/linux/atm*
1945
1946 ATMEL AT91 / AT32 MCI DRIVER
1947 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1948 S:      Maintained
1949 F:      drivers/mmc/host/atmel-mci.c
1950
1951 ATMEL AT91 / AT32 SERIAL DRIVER
1952 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1953 S:      Supported
1954 F:      drivers/tty/serial/atmel_serial.c
1955
1956 ATMEL Audio ALSA driver
1957 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1958 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1959 S:      Supported
1960 F:      sound/soc/atmel
1961
1962 ATMEL DMA DRIVER
1963 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1964 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1965 S:      Supported
1966 F:      drivers/dma/at_hdmac.c
1967 F:      drivers/dma/at_hdmac_regs.h
1968 F:      include/linux/platform_data/dma-atmel.h
1969
1970 ATMEL XDMA DRIVER
1971 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1972 L:      linux-arm-kernel@lists.infradead.org
1973 L:      dmaengine@vger.kernel.org
1974 S:      Supported
1975 F:      drivers/dma/at_xdmac.c
1976
1977 ATMEL I2C DRIVER
1978 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1979 L:      linux-i2c@vger.kernel.org
1980 S:      Supported
1981 F:      drivers/i2c/busses/i2c-at91.c
1982
1983 ATMEL ISI DRIVER
1984 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1985 L:      linux-media@vger.kernel.org
1986 S:      Supported
1987 F:      drivers/media/platform/soc_camera/atmel-isi.c
1988 F:      include/media/atmel-isi.h
1989
1990 ATMEL LCDFB DRIVER
1991 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1992 L:      linux-fbdev@vger.kernel.org
1993 S:      Maintained
1994 F:      drivers/video/fbdev/atmel_lcdfb.c
1995 F:      include/video/atmel_lcdc.h
1996
1997 ATMEL MACB ETHERNET DRIVER
1998 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1999 S:      Supported
2000 F:      drivers/net/ethernet/cadence/
2001
2002 ATMEL NAND DRIVER
2003 M:      Wenyou Yang <wenyou.yang@atmel.com>
2004 M:      Josh Wu <rainyfeeling@outlook.com>
2005 L:      linux-mtd@lists.infradead.org
2006 S:      Supported
2007 F:      drivers/mtd/nand/atmel_nand*
2008
2009 ATMEL SDMMC DRIVER
2010 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
2011 L:      linux-mmc@vger.kernel.org
2012 S:      Supported
2013 F:      drivers/mmc/host/sdhci-of-at91.c
2014
2015 ATMEL SPI DRIVER
2016 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2017 S:      Supported
2018 F:      drivers/spi/spi-atmel.*
2019
2020 ATMEL SSC DRIVER
2021 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2022 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2023 S:      Supported
2024 F:      drivers/misc/atmel-ssc.c
2025 F:      include/linux/atmel-ssc.h
2026
2027 ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
2028 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2029 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2030 S:      Supported
2031 F:      drivers/misc/atmel_tclib.c
2032 F:      drivers/clocksource/tcb_clksrc.c
2033
2034 ATMEL USBA UDC DRIVER
2035 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2036 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2037 S:      Supported
2038 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
2039
2040 ATMEL WIRELESS DRIVER
2041 M:      Simon Kelley <simon@thekelleys.org.uk>
2042 L:      linux-wireless@vger.kernel.org
2043 W:      http://www.thekelleys.org.uk/atmel
2044 W:      http://atmelwlandriver.sourceforge.net/
2045 S:      Maintained
2046 F:      drivers/net/wireless/atmel/atmel*
2047
2048 ATMEL MAXTOUCH DRIVER
2049 M:      Nick Dyer <nick.dyer@itdev.co.uk>
2050 T:      git git://github.com/atmel-maxtouch/linux.git
2051 S:      Supported
2052 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2053 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2054 F:      include/linux/platform_data/atmel_mxt_ts.h
2055
2056 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2057 M:      Bradley Grove <linuxdrivers@attotech.com>
2058 L:      linux-scsi@vger.kernel.org
2059 W:      http://www.attotech.com
2060 S:      Supported
2061 F:      drivers/scsi/esas2r
2062
2063 ATUSB IEEE 802.15.4 RADIO DRIVER
2064 M:      Stefan Schmidt <stefan@osg.samsung.com>
2065 L:      linux-wpan@vger.kernel.org
2066 S:      Maintained
2067 F:      drivers/net/ieee802154/atusb.c
2068 F:      drivers/net/ieee802154/atusb.h
2069 F:      drivers/net/ieee802154/at86rf230.h
2070
2071 AUDIT SUBSYSTEM
2072 M:      Paul Moore <paul@paul-moore.com>
2073 M:      Eric Paris <eparis@redhat.com>
2074 L:      linux-audit@redhat.com (moderated for non-subscribers)
2075 W:      http://people.redhat.com/sgrubb/audit/
2076 T:      git git://git.infradead.org/users/pcmoore/audit
2077 S:      Maintained
2078 F:      include/linux/audit.h
2079 F:      include/uapi/linux/audit.h
2080 F:      kernel/audit*
2081
2082 AUXILIARY DISPLAY DRIVERS
2083 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2084 W:      http://miguelojeda.es/auxdisplay.htm
2085 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2086 S:      Maintained
2087 F:      drivers/auxdisplay/
2088 F:      include/linux/cfag12864b.h
2089
2090 AVR32 ARCHITECTURE
2091 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
2092 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
2093 W:      http://www.atmel.com/products/AVR32/
2094 W:      http://mirror.egtvedt.no/avr32linux.org/
2095 W:      http://avrfreaks.net/
2096 S:      Maintained
2097 F:      arch/avr32/
2098
2099 AVR32/AT32AP MACHINE SUPPORT
2100 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
2101 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
2102 S:      Maintained
2103 F:      arch/avr32/mach-at32ap/
2104
2105 AX.25 NETWORK LAYER
2106 M:      Ralf Baechle <ralf@linux-mips.org>
2107 L:      linux-hams@vger.kernel.org
2108 W:      http://www.linux-ax25.org/
2109 S:      Maintained
2110 F:      include/uapi/linux/ax25.h
2111 F:      include/net/ax25.h
2112 F:      net/ax25/
2113
2114 AZ6007 DVB DRIVER
2115 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2116 L:      linux-media@vger.kernel.org
2117 W:      https://linuxtv.org
2118 T:      git git://linuxtv.org/media_tree.git
2119 S:      Maintained
2120 F:      drivers/media/usb/dvb-usb-v2/az6007.c
2121
2122 AZTECH FM RADIO RECEIVER DRIVER
2123 M:      Hans Verkuil <hverkuil@xs4all.nl>
2124 L:      linux-media@vger.kernel.org
2125 T:      git git://linuxtv.org/media_tree.git
2126 W:      https://linuxtv.org
2127 S:      Maintained
2128 F:      drivers/media/radio/radio-aztech*
2129
2130 B43 WIRELESS DRIVER
2131 L:      linux-wireless@vger.kernel.org
2132 L:      b43-dev@lists.infradead.org
2133 W:      http://wireless.kernel.org/en/users/Drivers/b43
2134 S:      Odd Fixes
2135 F:      drivers/net/wireless/broadcom/b43/
2136
2137 B43LEGACY WIRELESS DRIVER
2138 M:      Larry Finger <Larry.Finger@lwfinger.net>
2139 L:      linux-wireless@vger.kernel.org
2140 L:      b43-dev@lists.infradead.org
2141 W:      http://wireless.kernel.org/en/users/Drivers/b43
2142 S:      Maintained
2143 F:      drivers/net/wireless/broadcom/b43legacy/
2144
2145 BACKLIGHT CLASS/SUBSYSTEM
2146 M:      Jingoo Han <jingoohan1@gmail.com>
2147 M:      Lee Jones <lee.jones@linaro.org>
2148 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
2149 S:      Maintained
2150 F:      drivers/video/backlight/
2151 F:      include/linux/backlight.h
2152
2153 BATMAN ADVANCED
2154 M:      Marek Lindner <mareklindner@neomailbox.ch>
2155 M:      Simon Wunderlich <sw@simonwunderlich.de>
2156 M:      Antonio Quartulli <a@unstable.cc>
2157 L:      b.a.t.m.a.n@lists.open-mesh.org
2158 W:      http://www.open-mesh.org/
2159 S:      Maintained
2160 F:      net/batman-adv/
2161
2162 BAYCOM/HDLCDRV DRIVERS FOR AX.25
2163 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
2164 L:      linux-hams@vger.kernel.org
2165 W:      http://www.baycom.org/~tom/ham/ham.html
2166 S:      Maintained
2167 F:      drivers/net/hamradio/baycom*
2168
2169 BCACHE (BLOCK LAYER CACHE)
2170 M:      Kent Overstreet <kent.overstreet@gmail.com>
2171 L:      linux-bcache@vger.kernel.org
2172 W:      http://bcache.evilpiepirate.org
2173 S:      Maintained
2174 F:      drivers/md/bcache/
2175
2176 BDISP ST MEDIA DRIVER
2177 M:      Fabien Dessenne <fabien.dessenne@st.com>
2178 L:      linux-media@vger.kernel.org
2179 T:      git git://linuxtv.org/media_tree.git
2180 W:      https://linuxtv.org
2181 S:      Supported
2182 F:      drivers/media/platform/sti/bdisp
2183
2184 BEFS FILE SYSTEM
2185 S:      Orphan
2186 F:      Documentation/filesystems/befs.txt
2187 F:      fs/befs/
2188
2189 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
2190 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
2191 L:      netdev@vger.kernel.org
2192 S:      Maintained
2193 F:      drivers/net/ethernet/ec_bhf.c
2194
2195 BFS FILE SYSTEM
2196 M:      "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
2197 S:      Maintained
2198 F:      Documentation/filesystems/bfs.txt
2199 F:      fs/bfs/
2200 F:      include/uapi/linux/bfs_fs.h
2201
2202 BLACKFIN ARCHITECTURE
2203 M:      Steven Miao <realmz6@gmail.com>
2204 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2205 T:      git git://git.code.sf.net/p/adi-linux/code
2206 W:      http://blackfin.uclinux.org
2207 S:      Supported
2208 F:      arch/blackfin/
2209
2210 BLACKFIN EMAC DRIVER
2211 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2212 W:      http://blackfin.uclinux.org
2213 S:      Supported
2214 F:      drivers/net/ethernet/adi/
2215
2216 BLACKFIN RTC DRIVER
2217 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2218 W:      http://blackfin.uclinux.org
2219 S:      Supported
2220 F:      drivers/rtc/rtc-bfin.c
2221
2222 BLACKFIN SDH DRIVER
2223 M:      Sonic Zhang <sonic.zhang@analog.com>
2224 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2225 W:      http://blackfin.uclinux.org
2226 S:      Supported
2227 F:      drivers/mmc/host/bfin_sdh.c
2228
2229 BLACKFIN SERIAL DRIVER
2230 M:      Sonic Zhang <sonic.zhang@analog.com>
2231 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2232 W:      http://blackfin.uclinux.org
2233 S:      Supported
2234 F:      drivers/tty/serial/bfin_uart.c
2235
2236 BLACKFIN WATCHDOG DRIVER
2237 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2238 W:      http://blackfin.uclinux.org
2239 S:      Supported
2240 F:      drivers/watchdog/bfin_wdt.c
2241
2242 BLACKFIN I2C TWI DRIVER
2243 M:      Sonic Zhang <sonic.zhang@analog.com>
2244 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2245 W:      http://blackfin.uclinux.org/
2246 S:      Supported
2247 F:      drivers/i2c/busses/i2c-bfin-twi.c
2248
2249 BLACKFIN MEDIA DRIVER
2250 M:      Scott Jiang <scott.jiang.linux@gmail.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/media/platform/blackfin/
2255 F:      drivers/media/i2c/adv7183*
2256 F:      drivers/media/i2c/vs6624*
2257
2258 BLINKM RGB LED DRIVER
2259 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
2260 S:      Maintained
2261 F:      drivers/leds/leds-blinkm.c
2262
2263 BLOCK LAYER
2264 M:      Jens Axboe <axboe@kernel.dk>
2265 L:      linux-block@vger.kernel.org
2266 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
2267 S:      Maintained
2268 F:      block/
2269 F:      kernel/trace/blktrace.c
2270
2271 BLOCK2MTD DRIVER
2272 M:      Joern Engel <joern@lazybastard.org>
2273 L:      linux-mtd@lists.infradead.org
2274 S:      Maintained
2275 F:      drivers/mtd/devices/block2mtd.c
2276
2277 BLUETOOTH DRIVERS
2278 M:      Marcel Holtmann <marcel@holtmann.org>
2279 M:      Gustavo Padovan <gustavo@padovan.org>
2280 M:      Johan Hedberg <johan.hedberg@gmail.com>
2281 L:      linux-bluetooth@vger.kernel.org
2282 W:      http://www.bluez.org/
2283 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2284 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2285 S:      Maintained
2286 F:      drivers/bluetooth/
2287
2288 BLUETOOTH SUBSYSTEM
2289 M:      Marcel Holtmann <marcel@holtmann.org>
2290 M:      Gustavo Padovan <gustavo@padovan.org>
2291 M:      Johan Hedberg <johan.hedberg@gmail.com>
2292 L:      linux-bluetooth@vger.kernel.org
2293 W:      http://www.bluez.org/
2294 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2295 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2296 S:      Maintained
2297 F:      net/bluetooth/
2298 F:      include/net/bluetooth/
2299
2300 BONDING DRIVER
2301 M:      Jay Vosburgh <j.vosburgh@gmail.com>
2302 M:      Veaceslav Falico <vfalico@gmail.com>
2303 M:      Andy Gospodarek <gospo@cumulusnetworks.com>
2304 L:      netdev@vger.kernel.org
2305 W:      http://sourceforge.net/projects/bonding/
2306 S:      Supported
2307 F:      drivers/net/bonding/
2308 F:      include/uapi/linux/if_bonding.h
2309
2310 BPF (Safe dynamic programs and tools)
2311 M:      Alexei Starovoitov <ast@kernel.org>
2312 L:      netdev@vger.kernel.org
2313 L:      linux-kernel@vger.kernel.org
2314 S:      Supported
2315 F:      kernel/bpf/
2316
2317 BROADCOM B44 10/100 ETHERNET DRIVER
2318 M:      Gary Zambrano <zambrano@broadcom.com>
2319 L:      netdev@vger.kernel.org
2320 S:      Supported
2321 F:      drivers/net/ethernet/broadcom/b44.*
2322
2323 BROADCOM GENET ETHERNET DRIVER
2324 M:      Florian Fainelli <f.fainelli@gmail.com>
2325 L:      netdev@vger.kernel.org
2326 S:      Supported
2327 F:      drivers/net/ethernet/broadcom/genet/
2328
2329 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
2330 M:      Sony Chacko <sony.chacko@qlogic.com>
2331 M:      Dept-HSGLinuxNICDev@qlogic.com
2332 L:      netdev@vger.kernel.org
2333 S:      Supported
2334 F:      drivers/net/ethernet/broadcom/bnx2.*
2335 F:      drivers/net/ethernet/broadcom/bnx2_*
2336
2337 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
2338 M:      Ariel Elior <ariel.elior@qlogic.com>
2339 L:      netdev@vger.kernel.org
2340 S:      Supported
2341 F:      drivers/net/ethernet/broadcom/bnx2x/
2342
2343 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
2344 M:      Florian Fainelli <f.fainelli@gmail.com>
2345 M:      Ray Jui <rjui@broadcom.com>
2346 M:      Scott Branden <sbranden@broadcom.com>
2347 L:      bcm-kernel-feedback-list@broadcom.com
2348 T:      git git://github.com/broadcom/mach-bcm
2349 S:      Maintained
2350 F:      arch/arm/mach-bcm/
2351 F:      arch/arm/boot/dts/bcm113*
2352 F:      arch/arm/boot/dts/bcm216*
2353 F:      arch/arm/boot/dts/bcm281*
2354 F:      arch/arm64/boot/dts/broadcom/
2355 F:      arch/arm/configs/bcm_defconfig
2356 F:      drivers/mmc/host/sdhci-bcm-kona.c
2357 F:      drivers/clocksource/bcm_kona_timer.c
2358
2359 BROADCOM BCM2835 ARM ARCHITECTURE
2360 M:      Stephen Warren <swarren@wwwdotorg.org>
2361 M:      Lee Jones <lee@kernel.org>
2362 M:      Eric Anholt <eric@anholt.net>
2363 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
2364 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2365 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rpi/linux-rpi.git
2366 S:      Maintained
2367 N:      bcm2835
2368
2369 BROADCOM BCM47XX MIPS ARCHITECTURE
2370 M:      Hauke Mehrtens <hauke@hauke-m.de>
2371 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2372 L:      linux-mips@linux-mips.org
2373 S:      Maintained
2374 F:      arch/mips/bcm47xx/*
2375 F:      arch/mips/include/asm/mach-bcm47xx/*
2376
2377 BROADCOM BCM5301X ARM ARCHITECTURE
2378 M:      Hauke Mehrtens <hauke@hauke-m.de>
2379 L:      linux-arm-kernel@lists.infradead.org
2380 S:      Maintained
2381 F:      arch/arm/mach-bcm/bcm_5301x.c
2382 F:      arch/arm/boot/dts/bcm5301x.dtsi
2383 F:      arch/arm/boot/dts/bcm470*
2384
2385 BROADCOM BCM63XX ARM ARCHITECTURE
2386 M:      Florian Fainelli <f.fainelli@gmail.com>
2387 L:      linux-arm-kernel@lists.infradead.org
2388 T:      git git://github.com/broadcom/arm-bcm63xx.git
2389 S:      Maintained
2390 F:      arch/arm/mach-bcm/bcm63xx.c
2391 F:      arch/arm/include/debug/bcm63xx.S
2392
2393 BROADCOM BCM63XX/BCM33XX UDC DRIVER
2394 M:      Kevin Cernekee <cernekee@gmail.com>
2395 L:      linux-usb@vger.kernel.org
2396 S:      Maintained
2397 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
2398
2399 BROADCOM BCM7XXX ARM ARCHITECTURE
2400 M:      Brian Norris <computersforpeace@gmail.com>
2401 M:      Gregory Fong <gregory.0xf0@gmail.com>
2402 M:      Florian Fainelli <f.fainelli@gmail.com>
2403 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2404 L:      bcm-kernel-feedback-list@broadcom.com
2405 T:      git git://github.com/broadcom/stblinux.git
2406 S:      Maintained
2407 F:      arch/arm/mach-bcm/*brcmstb*
2408 F:      arch/arm/boot/dts/bcm7*.dts*
2409 F:      drivers/bus/brcmstb_gisb.c
2410 N:      brcmstb
2411
2412 BROADCOM BMIPS MIPS ARCHITECTURE
2413 M:      Kevin Cernekee <cernekee@gmail.com>
2414 M:      Florian Fainelli <f.fainelli@gmail.com>
2415 L:      linux-mips@linux-mips.org
2416 T:      git git://github.com/broadcom/stblinux.git
2417 S:      Maintained
2418 F:      arch/mips/bmips/*
2419 F:      arch/mips/include/asm/mach-bmips/*
2420 F:      arch/mips/kernel/*bmips*
2421 F:      arch/mips/boot/dts/brcm/bcm*.dts*
2422 F:      drivers/irqchip/irq-bcm7*
2423 F:      drivers/irqchip/irq-brcmstb*
2424 F:      include/linux/bcm963xx_nvram.h
2425 F:      include/linux/bcm963xx_tag.h
2426
2427 BROADCOM TG3 GIGABIT ETHERNET DRIVER
2428 M:      Prashant Sreedharan <prashant@broadcom.com>
2429 M:      Michael Chan <mchan@broadcom.com>
2430 L:      netdev@vger.kernel.org
2431 S:      Supported
2432 F:      drivers/net/ethernet/broadcom/tg3.*
2433
2434 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2435 M:      Brett Rudley <brudley@broadcom.com>
2436 M:      Arend van Spriel <arend@broadcom.com>
2437 M:      Franky (Zhenhui) Lin <frankyl@broadcom.com>
2438 M:      Hante Meuleman <meuleman@broadcom.com>
2439 L:      linux-wireless@vger.kernel.org
2440 L:      brcm80211-dev-list@broadcom.com
2441 S:      Supported
2442 F:      drivers/net/wireless/broadcom/brcm80211/
2443
2444 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
2445 M:      QLogic-Storage-Upstream@qlogic.com
2446 L:      linux-scsi@vger.kernel.org
2447 S:      Supported
2448 F:      drivers/scsi/bnx2fc/
2449
2450 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
2451 M:      QLogic-Storage-Upstream@qlogic.com
2452 L:      linux-scsi@vger.kernel.org
2453 S:      Supported
2454 F:      drivers/scsi/bnx2i/
2455
2456 BROADCOM IPROC ARM ARCHITECTURE
2457 M:      Ray Jui <rjui@broadcom.com>
2458 M:      Scott Branden <sbranden@broadcom.com>
2459 M:      Jon Mason <jonmason@broadcom.com>
2460 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2461 L:      bcm-kernel-feedback-list@broadcom.com
2462 T:      git git://github.com/broadcom/cygnus-linux.git
2463 S:      Maintained
2464 N:      iproc
2465 N:      cygnus
2466 N:      nsp
2467 N:      bcm9113*
2468 N:      bcm9583*
2469 N:      bcm9585*
2470 N:      bcm9586*
2471 N:      bcm988312
2472 N:      bcm113*
2473 N:      bcm583*
2474 N:      bcm585*
2475 N:      bcm586*
2476 N:      bcm88312
2477
2478 BROADCOM BRCMSTB GPIO DRIVER
2479 M:      Gregory Fong <gregory.0xf0@gmail.com>
2480 L:      bcm-kernel-feedback-list@broadcom.com
2481 S:      Supported
2482 F:      drivers/gpio/gpio-brcmstb.c
2483 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
2484
2485 BROADCOM KONA GPIO DRIVER
2486 M:      Ray Jui <rjui@broadcom.com>
2487 L:      bcm-kernel-feedback-list@broadcom.com
2488 S:      Supported
2489 F:      drivers/gpio/gpio-bcm-kona.c
2490 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
2491
2492 BROADCOM NVRAM DRIVER
2493 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2494 L:      linux-mips@linux-mips.org
2495 S:      Maintained
2496 F:      drivers/firmware/broadcom/*
2497
2498 BROADCOM STB NAND FLASH DRIVER
2499 M:      Brian Norris <computersforpeace@gmail.com>
2500 M:      Kamal Dasu <kdasu.kdev@gmail.com>
2501 L:      linux-mtd@lists.infradead.org
2502 L:      bcm-kernel-feedback-list@broadcom.com
2503 S:      Maintained
2504 F:      drivers/mtd/nand/brcmnand/
2505
2506 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2507 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2508 L:      linux-wireless@vger.kernel.org
2509 S:      Maintained
2510 F:      drivers/bcma/
2511 F:      include/linux/bcma/
2512
2513 BROADCOM SYSTEMPORT ETHERNET DRIVER
2514 M:      Florian Fainelli <f.fainelli@gmail.com>
2515 L:      netdev@vger.kernel.org
2516 S:      Supported
2517 F:      drivers/net/ethernet/broadcom/bcmsysport.*
2518
2519 BROCADE BFA FC SCSI DRIVER
2520 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
2521 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
2522 L:      linux-scsi@vger.kernel.org
2523 S:      Supported
2524 F:      drivers/scsi/bfa/
2525
2526 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
2527 M:      Rasesh Mody <rasesh.mody@qlogic.com>
2528 L:      netdev@vger.kernel.org
2529 S:      Supported
2530 F:      drivers/net/ethernet/brocade/bna/
2531
2532 BSG (block layer generic sg v4 driver)
2533 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
2534 L:      linux-scsi@vger.kernel.org
2535 S:      Supported
2536 F:      block/bsg.c
2537 F:      include/linux/bsg.h
2538 F:      include/uapi/linux/bsg.h
2539
2540 BT87X AUDIO DRIVER
2541 M:      Clemens Ladisch <clemens@ladisch.de>
2542 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2543 T:      git git://git.alsa-project.org/alsa-kernel.git
2544 S:      Maintained
2545 F:      Documentation/sound/alsa/Bt87x.txt
2546 F:      sound/pci/bt87x.c
2547
2548 BT8XXGPIO DRIVER
2549 M:      Michael Buesch <m@bues.ch>
2550 W:      http://bu3sch.de/btgpio.php
2551 S:      Maintained
2552 F:      drivers/gpio/gpio-bt8xx.c
2553
2554 BTRFS FILE SYSTEM
2555 M:      Chris Mason <clm@fb.com>
2556 M:      Josef Bacik <jbacik@fb.com>
2557 M:      David Sterba <dsterba@suse.com>
2558 L:      linux-btrfs@vger.kernel.org
2559 W:      http://btrfs.wiki.kernel.org/
2560 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
2561 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
2562 S:      Maintained
2563 F:      Documentation/filesystems/btrfs.txt
2564 F:      fs/btrfs/
2565
2566 BTTV VIDEO4LINUX DRIVER
2567 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2568 L:      linux-media@vger.kernel.org
2569 W:      https://linuxtv.org
2570 T:      git git://linuxtv.org/media_tree.git
2571 S:      Odd fixes
2572 F:      Documentation/video4linux/bttv/
2573 F:      drivers/media/pci/bt8xx/bttv*
2574
2575 BUSLOGIC SCSI DRIVER
2576 M:      Khalid Aziz <khalid@gonehiking.org>
2577 L:      linux-scsi@vger.kernel.org
2578 S:      Maintained
2579 F:      drivers/scsi/BusLogic.*
2580 F:      drivers/scsi/FlashPoint.*
2581
2582 C-MEDIA CMI8788 DRIVER
2583 M:      Clemens Ladisch <clemens@ladisch.de>
2584 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2585 T:      git git://git.alsa-project.org/alsa-kernel.git
2586 S:      Maintained
2587 F:      sound/pci/oxygen/
2588
2589 C6X ARCHITECTURE
2590 M:      Mark Salter <msalter@redhat.com>
2591 M:      Aurelien Jacquiot <a-jacquiot@ti.com>
2592 L:      linux-c6x-dev@linux-c6x.org
2593 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
2594 S:      Maintained
2595 F:      arch/c6x/
2596
2597 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
2598 M:      David Howells <dhowells@redhat.com>
2599 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
2600 S:      Supported
2601 F:      Documentation/filesystems/caching/cachefiles.txt
2602 F:      fs/cachefiles/
2603
2604 CADET FM/AM RADIO RECEIVER DRIVER
2605 M:      Hans Verkuil <hverkuil@xs4all.nl>
2606 L:      linux-media@vger.kernel.org
2607 T:      git git://linuxtv.org/media_tree.git
2608 W:      https://linuxtv.org
2609 S:      Maintained
2610 F:      drivers/media/radio/radio-cadet*
2611
2612 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
2613 M:      Jonathan Corbet <corbet@lwn.net>
2614 L:      linux-media@vger.kernel.org
2615 T:      git git://linuxtv.org/media_tree.git
2616 S:      Maintained
2617 F:      Documentation/video4linux/cafe_ccic
2618 F:      drivers/media/platform/marvell-ccic/
2619
2620 CAIF NETWORK LAYER
2621 M:      Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
2622 L:      netdev@vger.kernel.org
2623 S:      Supported
2624 F:      Documentation/networking/caif/
2625 F:      drivers/net/caif/
2626 F:      include/uapi/linux/caif/
2627 F:      include/net/caif/
2628 F:      net/caif/
2629
2630 CALGARY x86-64 IOMMU
2631 M:      Muli Ben-Yehuda <muli@il.ibm.com>
2632 M:      "Jon D. Mason" <jdmason@kudzu.us>
2633 L:      discuss@x86-64.org
2634 S:      Maintained
2635 F:      arch/x86/kernel/pci-calgary_64.c
2636 F:      arch/x86/kernel/tce_64.c
2637 F:      arch/x86/include/asm/calgary.h
2638 F:      arch/x86/include/asm/tce.h
2639
2640 CAN NETWORK LAYER
2641 M:      Oliver Hartkopp <socketcan@hartkopp.net>
2642 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2643 L:      linux-can@vger.kernel.org
2644 W:      https://github.com/linux-can
2645 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2646 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2647 S:      Maintained
2648 F:      Documentation/networking/can.txt
2649 F:      net/can/
2650 F:      include/linux/can/core.h
2651 F:      include/uapi/linux/can.h
2652 F:      include/uapi/linux/can/bcm.h
2653 F:      include/uapi/linux/can/raw.h
2654 F:      include/uapi/linux/can/gw.h
2655
2656 CAN NETWORK DRIVERS
2657 M:      Wolfgang Grandegger <wg@grandegger.com>
2658 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2659 L:      linux-can@vger.kernel.org
2660 W:      https://github.com/linux-can
2661 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2662 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2663 S:      Maintained
2664 F:      drivers/net/can/
2665 F:      include/linux/can/dev.h
2666 F:      include/linux/can/platform/
2667 F:      include/uapi/linux/can/error.h
2668 F:      include/uapi/linux/can/netlink.h
2669
2670 CAPABILITIES
2671 M:      Serge Hallyn <serge.hallyn@canonical.com>
2672 L:      linux-security-module@vger.kernel.org
2673 S:      Supported
2674 F:      include/linux/capability.h
2675 F:      include/uapi/linux/capability.h
2676 F:      security/commoncap.c
2677 F:      kernel/capability.c
2678
2679 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
2680 M:      Kevin Tsai <ktsai@capellamicro.com>
2681 S:      Maintained
2682 F:      drivers/iio/light/cm*
2683 F:      Documentation/devicetree/bindings/i2c/trivial-devices.txt
2684
2685 CAVIUM LIQUIDIO NETWORK DRIVER
2686 M:     Derek Chickles <derek.chickles@caviumnetworks.com>
2687 M:     Satanand Burla <satananda.burla@caviumnetworks.com>
2688 M:     Felix Manlunas <felix.manlunas@caviumnetworks.com>
2689 M:     Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com>
2690 L:     netdev@vger.kernel.org
2691 W:     http://www.cavium.com
2692 S:     Supported
2693 F:     drivers/net/ethernet/cavium/liquidio/
2694
2695 CC2520 IEEE-802.15.4 RADIO DRIVER
2696 M:      Varka Bhadram <varkabhadram@gmail.com>
2697 L:      linux-wpan@vger.kernel.org
2698 S:      Maintained
2699 F:      drivers/net/ieee802154/cc2520.c
2700 F:      include/linux/spi/cc2520.h
2701 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
2702
2703 CELL BROADBAND ENGINE ARCHITECTURE
2704 M:      Arnd Bergmann <arnd@arndb.de>
2705 L:      linuxppc-dev@lists.ozlabs.org
2706 W:      http://www.ibm.com/developerworks/power/cell/
2707 S:      Supported
2708 F:      arch/powerpc/include/asm/cell*.h
2709 F:      arch/powerpc/include/asm/spu*.h
2710 F:      arch/powerpc/include/uapi/asm/spu*.h
2711 F:      arch/powerpc/oprofile/*cell*
2712 F:      arch/powerpc/platforms/cell/
2713
2714 CEPH COMMON CODE (LIBCEPH)
2715 M:      Ilya Dryomov <idryomov@gmail.com>
2716 M:      "Yan, Zheng" <zyan@redhat.com>
2717 M:      Sage Weil <sage@redhat.com>
2718 L:      ceph-devel@vger.kernel.org
2719 W:      http://ceph.com/
2720 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2721 T:      git git://github.com/ceph/ceph-client.git
2722 S:      Supported
2723 F:      net/ceph/
2724 F:      include/linux/ceph/
2725 F:      include/linux/crush/
2726
2727 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
2728 M:      "Yan, Zheng" <zyan@redhat.com>
2729 M:      Sage Weil <sage@redhat.com>
2730 M:      Ilya Dryomov <idryomov@gmail.com>
2731 L:      ceph-devel@vger.kernel.org
2732 W:      http://ceph.com/
2733 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2734 T:      git git://github.com/ceph/ceph-client.git
2735 S:      Supported
2736 F:      Documentation/filesystems/ceph.txt
2737 F:      fs/ceph/
2738
2739 CERTIFICATE HANDLING:
2740 M:      David Howells <dhowells@redhat.com>
2741 M:      David Woodhouse <dwmw2@infradead.org>
2742 L:      keyrings@vger.kernel.org
2743 S:      Maintained
2744 F:      Documentation/module-signing.txt
2745 F:      certs/
2746 F:      scripts/sign-file.c
2747 F:      scripts/extract-cert.c
2748
2749 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
2750 L:      linux-usb@vger.kernel.org
2751 S:      Orphan
2752 F:      Documentation/usb/WUSB-Design-overview.txt
2753 F:      Documentation/usb/wusb-cbaf
2754 F:      drivers/usb/host/hwa-hc.c
2755 F:      drivers/usb/host/whci/
2756 F:      drivers/usb/wusbcore/
2757 F:      include/linux/usb/wusb*
2758
2759 CFAG12864B LCD DRIVER
2760 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2761 W:      http://miguelojeda.es/auxdisplay.htm
2762 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2763 S:      Maintained
2764 F:      drivers/auxdisplay/cfag12864b.c
2765 F:      include/linux/cfag12864b.h
2766
2767 CFAG12864BFB LCD FRAMEBUFFER DRIVER
2768 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2769 W:      http://miguelojeda.es/auxdisplay.htm
2770 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2771 S:      Maintained
2772 F:      drivers/auxdisplay/cfag12864bfb.c
2773 F:      include/linux/cfag12864b.h
2774
2775 CFG80211 and NL80211
2776 M:      Johannes Berg <johannes@sipsolutions.net>
2777 L:      linux-wireless@vger.kernel.org
2778 W:      http://wireless.kernel.org/
2779 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2780 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
2781 S:      Maintained
2782 F:      include/uapi/linux/nl80211.h
2783 F:      include/net/cfg80211.h
2784 F:      net/wireless/*
2785 X:      net/wireless/wext*
2786
2787 CHAR and MISC DRIVERS
2788 M:      Arnd Bergmann <arnd@arndb.de>
2789 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2790 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
2791 S:      Supported
2792 F:      drivers/char/*
2793 F:      drivers/misc/*
2794 F:      include/linux/miscdevice.h
2795
2796 CHECKPATCH
2797 M:      Andy Whitcroft <apw@canonical.com>
2798 M:      Joe Perches <joe@perches.com>
2799 S:      Maintained
2800 F:      scripts/checkpatch.pl
2801
2802 CHINESE DOCUMENTATION
2803 M:      Harry Wei <harryxiyou@gmail.com>
2804 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
2805 L:      linux-kernel@zh-kernel.org (moderated for non-subscribers)
2806 S:      Maintained
2807 F:      Documentation/zh_CN/
2808
2809 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
2810 M:      Peter Chen <Peter.Chen@nxp.com>
2811 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
2812 L:      linux-usb@vger.kernel.org
2813 S:      Maintained
2814 F:      drivers/usb/chipidea/
2815
2816 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
2817 M:      Hans de Goede <hdegoede@redhat.com>
2818 L:      linux-input@vger.kernel.org
2819 S:      Maintained
2820 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
2821 F:      drivers/input/touchscreen/chipone_icn8318.c
2822
2823 CHROME HARDWARE PLATFORM SUPPORT
2824 M:      Olof Johansson <olof@lixom.net>
2825 S:      Maintained
2826 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/olof/chrome-platform.git
2827 F:      drivers/platform/chrome/
2828
2829 CISCO VIC ETHERNET NIC DRIVER
2830 M:      Christian Benvenuti <benve@cisco.com>
2831 M:      Sujith Sankar <ssujith@cisco.com>
2832 M:      Govindarajulu Varadarajan <_govind@gmx.com>
2833 M:      Neel Patel <neepatel@cisco.com>
2834 S:      Supported
2835 F:      drivers/net/ethernet/cisco/enic/
2836
2837 CISCO VIC LOW LATENCY NIC DRIVER
2838 M:      Christian Benvenuti <benve@cisco.com>
2839 M:      Dave Goodell <dgoodell@cisco.com>
2840 S:      Supported
2841 F:      drivers/infiniband/hw/usnic/
2842
2843 CIRRUS LOGIC EP93XX ETHERNET DRIVER
2844 M:      Hartley Sweeten <hsweeten@visionengravers.com>
2845 L:      netdev@vger.kernel.org
2846 S:      Maintained
2847 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
2848
2849 CIRRUS LOGIC AUDIO CODEC DRIVERS
2850 M:      Brian Austin <brian.austin@cirrus.com>
2851 M:      Paul Handrigan <Paul.Handrigan@cirrus.com>
2852 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2853 S:      Maintained
2854 F:      sound/soc/codecs/cs*
2855
2856 CLEANCACHE API
2857 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2858 L:      linux-kernel@vger.kernel.org
2859 S:      Maintained
2860 F:      mm/cleancache.c
2861 F:      include/linux/cleancache.h
2862
2863 CLK API
2864 M:      Russell King <linux@arm.linux.org.uk>
2865 L:      linux-clk@vger.kernel.org
2866 S:      Maintained
2867 F:      include/linux/clk.h
2868
2869 CLOCKSOURCE, CLOCKEVENT DRIVERS
2870 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2871 M:      Thomas Gleixner <tglx@linutronix.de>
2872 L:      linux-kernel@vger.kernel.org
2873 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
2874 S:      Supported
2875 F:      drivers/clocksource
2876
2877 CISCO FCOE HBA DRIVER
2878 M:      Hiral Patel <hiralpat@cisco.com>
2879 M:      Suma Ramars <sramars@cisco.com>
2880 M:      Brian Uchino <buchino@cisco.com>
2881 L:      linux-scsi@vger.kernel.org
2882 S:      Supported
2883 F:      drivers/scsi/fnic/
2884
2885 CISCO SCSI HBA DRIVER
2886 M:      Narsimhulu Musini <nmusini@cisco.com>
2887 M:      Sesidhar Baddela <sebaddel@cisco.com>
2888 L:      linux-scsi@vger.kernel.org
2889 S:      Supported
2890 F:      drivers/scsi/snic/
2891
2892 CMPC ACPI DRIVER
2893 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2894 M:      Daniel Oliveira Nascimento <don@syst.com.br>
2895 L:      platform-driver-x86@vger.kernel.org
2896 S:      Supported
2897 F:      drivers/platform/x86/classmate-laptop.c
2898
2899 COBALT MEDIA DRIVER
2900 M:      Hans Verkuil <hans.verkuil@cisco.com>
2901 L:      linux-media@vger.kernel.org
2902 T:      git git://linuxtv.org/media_tree.git
2903 W:      https://linuxtv.org
2904 S:      Supported
2905 F:      drivers/media/pci/cobalt/
2906
2907 COCCINELLE/Semantic Patches (SmPL)
2908 M:      Julia Lawall <Julia.Lawall@lip6.fr>
2909 M:      Gilles Muller <Gilles.Muller@lip6.fr>
2910 M:      Nicolas Palix <nicolas.palix@imag.fr>
2911 M:      Michal Marek <mmarek@suse.com>
2912 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
2913 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
2914 W:      http://coccinelle.lip6.fr/
2915 S:      Supported
2916 F:      Documentation/coccinelle.txt
2917 F:      scripts/coccinelle/
2918 F:      scripts/coccicheck
2919
2920 CODA FILE SYSTEM
2921 M:      Jan Harkes <jaharkes@cs.cmu.edu>
2922 M:      coda@cs.cmu.edu
2923 L:      codalist@coda.cs.cmu.edu
2924 W:      http://www.coda.cs.cmu.edu/
2925 S:      Maintained
2926 F:      Documentation/filesystems/coda.txt
2927 F:      fs/coda/
2928 F:      include/linux/coda*.h
2929 F:      include/uapi/linux/coda*.h
2930
2931 CODA V4L2 MEM2MEM DRIVER
2932 M:      Philipp Zabel <p.zabel@pengutronix.de>
2933 L:      linux-media@vger.kernel.org
2934 S:      Maintained
2935 F:      Documentation/devicetree/bindings/media/coda.txt
2936 F:      drivers/media/platform/coda/
2937
2938 COMMON CLK FRAMEWORK
2939 M:      Michael Turquette <mturquette@baylibre.com>
2940 M:      Stephen Boyd <sboyd@codeaurora.org>
2941 L:      linux-clk@vger.kernel.org
2942 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
2943 S:      Maintained
2944 F:      drivers/clk/
2945 X:      drivers/clk/clkdev.c
2946 F:      include/linux/clk-pr*
2947 F:      include/linux/clk/
2948
2949 COMMON INTERNET FILE SYSTEM (CIFS)
2950 M:      Steve French <sfrench@samba.org>
2951 L:      linux-cifs@vger.kernel.org
2952 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
2953 W:      http://linux-cifs.samba.org/
2954 T:      git git://git.samba.org/sfrench/cifs-2.6.git
2955 S:      Supported
2956 F:      Documentation/filesystems/cifs/
2957 F:      fs/cifs/
2958
2959 COMPACTPCI HOTPLUG CORE
2960 M:      Scott Murray <scott@spiteful.org>
2961 L:      linux-pci@vger.kernel.org
2962 S:      Maintained
2963 F:      drivers/pci/hotplug/cpci_hotplug*
2964
2965 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
2966 M:      Scott Murray <scott@spiteful.org>
2967 L:      linux-pci@vger.kernel.org
2968 S:      Maintained
2969 F:      drivers/pci/hotplug/cpcihp_zt5550.*
2970
2971 COMPACTPCI HOTPLUG GENERIC DRIVER
2972 M:      Scott Murray <scott@spiteful.org>
2973 L:      linux-pci@vger.kernel.org
2974 S:      Maintained
2975 F:      drivers/pci/hotplug/cpcihp_generic.c
2976
2977 COMPAL LAPTOP SUPPORT
2978 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
2979 L:      platform-driver-x86@vger.kernel.org
2980 S:      Maintained
2981 F:      drivers/platform/x86/compal-laptop.c
2982
2983 CONEXANT ACCESSRUNNER USB DRIVER
2984 L:      accessrunner-general@lists.sourceforge.net
2985 W:      http://accessrunner.sourceforge.net/
2986 S:      Orphan
2987 F:      drivers/usb/atm/cxacru.c
2988
2989 CONFIGFS
2990 M:      Joel Becker <jlbec@evilplan.org>
2991 M:      Christoph Hellwig <hch@lst.de>
2992 T:      git git://git.infradead.org/users/hch/configfs.git
2993 S:      Supported
2994 F:      fs/configfs/
2995 F:      include/linux/configfs.h
2996
2997 CONNECTOR
2998 M:      Evgeniy Polyakov <zbr@ioremap.net>
2999 L:      netdev@vger.kernel.org
3000 S:      Maintained
3001 F:      drivers/connector/
3002
3003 CONTROL GROUP (CGROUP)
3004 M:      Tejun Heo <tj@kernel.org>
3005 M:      Li Zefan <lizefan@huawei.com>
3006 M:      Johannes Weiner <hannes@cmpxchg.org>
3007 L:      cgroups@vger.kernel.org
3008 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3009 S:      Maintained
3010 F:      Documentation/cgroups/
3011 F:      include/linux/cgroup*
3012 F:      kernel/cgroup*
3013
3014 CONTROL GROUP - CPUSET
3015 M:      Li Zefan <lizefan@huawei.com>
3016 L:      cgroups@vger.kernel.org
3017 W:      http://www.bullopensource.org/cpuset/
3018 W:      http://oss.sgi.com/projects/cpusets/
3019 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3020 S:      Maintained
3021 F:      Documentation/cgroups/cpusets.txt
3022 F:      include/linux/cpuset.h
3023 F:      kernel/cpuset.c
3024
3025 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
3026 M:      Johannes Weiner <hannes@cmpxchg.org>
3027 M:      Michal Hocko <mhocko@kernel.org>
3028 M:      Vladimir Davydov <vdavydov@virtuozzo.com>
3029 L:      cgroups@vger.kernel.org
3030 L:      linux-mm@kvack.org
3031 S:      Maintained
3032 F:      mm/memcontrol.c
3033 F:      mm/swap_cgroup.c
3034
3035 CORETEMP HARDWARE MONITORING DRIVER
3036 M:      Fenghua Yu <fenghua.yu@intel.com>
3037 L:      lm-sensors@lm-sensors.org
3038 S:      Maintained
3039 F:      Documentation/hwmon/coretemp
3040 F:      drivers/hwmon/coretemp.c
3041
3042 COSA/SRP SYNC SERIAL DRIVER
3043 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
3044 W:      http://www.fi.muni.cz/~kas/cosa/
3045 S:      Maintained
3046 F:      drivers/net/wan/cosa*
3047
3048 CPMAC ETHERNET DRIVER
3049 M:      Florian Fainelli <florian@openwrt.org>
3050 L:      netdev@vger.kernel.org
3051 S:      Maintained
3052 F:      drivers/net/ethernet/ti/cpmac.c
3053
3054 CPU FREQUENCY DRIVERS
3055 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
3056 M:      Viresh Kumar <viresh.kumar@linaro.org>
3057 L:      linux-pm@vger.kernel.org
3058 S:      Maintained
3059 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3060 T:      git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
3061 F:      drivers/cpufreq/
3062 F:      include/linux/cpufreq.h
3063
3064 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
3065 M:      Viresh Kumar <viresh.kumar@linaro.org>
3066 M:      Sudeep Holla <sudeep.holla@arm.com>
3067 L:      linux-pm@vger.kernel.org
3068 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
3069 S:      Maintained
3070 F:      drivers/cpufreq/arm_big_little.h
3071 F:      drivers/cpufreq/arm_big_little.c
3072 F:      drivers/cpufreq/arm_big_little_dt.c
3073
3074 CPUIDLE DRIVER - ARM BIG LITTLE
3075 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
3076 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3077 L:      linux-pm@vger.kernel.org
3078 L:      linux-arm-kernel@lists.infradead.org
3079 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3080 S:      Maintained
3081 F:      drivers/cpuidle/cpuidle-big_little.c
3082
3083 CPUIDLE DRIVER - ARM EXYNOS
3084 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
3085 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3086 M:      Kukjin Kim <kgene@kernel.org>
3087 L:      linux-pm@vger.kernel.org
3088 L:      linux-samsung-soc@vger.kernel.org
3089 S:      Supported
3090 F:      drivers/cpuidle/cpuidle-exynos.c
3091 F:      arch/arm/mach-exynos/pm.c
3092
3093 CPUIDLE DRIVERS
3094 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
3095 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3096 L:      linux-pm@vger.kernel.org
3097 S:      Maintained
3098 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3099 F:      drivers/cpuidle/*
3100 F:      include/linux/cpuidle.h
3101
3102 CPUID/MSR DRIVER
3103 M:      "H. Peter Anvin" <hpa@zytor.com>
3104 S:      Maintained
3105 F:      arch/x86/kernel/cpuid.c
3106 F:      arch/x86/kernel/msr.c
3107
3108 CPU POWER MONITORING SUBSYSTEM
3109 M:      Thomas Renninger <trenn@suse.com>
3110 L:      linux-pm@vger.kernel.org
3111 S:      Maintained
3112 F:      tools/power/cpupower/
3113
3114 CRAMFS FILESYSTEM
3115 W:      http://sourceforge.net/projects/cramfs/
3116 S:      Orphan / Obsolete
3117 F:      Documentation/filesystems/cramfs.txt
3118 F:      fs/cramfs/
3119
3120 CRIS PORT
3121 M:      Mikael Starvik <starvik@axis.com>
3122 M:      Jesper Nilsson <jesper.nilsson@axis.com>
3123 L:      linux-cris-kernel@axis.com
3124 W:      http://developer.axis.com
3125 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jesper/cris.git
3126 S:      Maintained
3127 F:      arch/cris/
3128 F:      drivers/tty/serial/crisv10.*
3129
3130 CRYPTO API
3131 M:      Herbert Xu <herbert@gondor.apana.org.au>
3132 M:      "David S. Miller" <davem@davemloft.net>
3133 L:      linux-crypto@vger.kernel.org
3134 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
3135 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
3136 S:      Maintained
3137 F:      Documentation/crypto/
3138 F:      Documentation/DocBook/crypto-API.tmpl
3139 F:      arch/*/crypto/
3140 F:      crypto/
3141 F:      drivers/crypto/
3142 F:      include/crypto/
3143
3144 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
3145 M:      Neil Horman <nhorman@tuxdriver.com>
3146 L:      linux-crypto@vger.kernel.org
3147 S:      Maintained
3148 F:      crypto/ansi_cprng.c
3149 F:      crypto/rng.c
3150
3151 CS3308 MEDIA DRIVER
3152 M:      Hans Verkuil <hverkuil@xs4all.nl>
3153 L:      linux-media@vger.kernel.org
3154 T:      git git://linuxtv.org/media_tree.git
3155 W:      http://linuxtv.org
3156 S:      Odd Fixes
3157 F:      drivers/media/i2c/cs3308.c
3158 F:      drivers/media/i2c/cs3308.h
3159
3160 CS5535 Audio ALSA driver
3161 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
3162 S:      Maintained
3163 F:      sound/pci/cs5535audio/
3164
3165 CW1200 WLAN driver
3166 M:      Solomon Peachy <pizza@shaftnet.org>
3167 S:      Maintained
3168 F:      drivers/net/wireless/st/cw1200/
3169
3170 CX18 VIDEO4LINUX DRIVER
3171 M:      Andy Walls <awalls@md.metrocast.net>
3172 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
3173 L:      linux-media@vger.kernel.org
3174 T:      git git://linuxtv.org/media_tree.git
3175 W:      https://linuxtv.org
3176 W:      http://www.ivtvdriver.org/index.php/Cx18
3177 S:      Maintained
3178 F:      Documentation/video4linux/cx18.txt
3179 F:      drivers/media/pci/cx18/
3180 F:      include/uapi/linux/ivtv*
3181
3182 CX2341X MPEG ENCODER HELPER MODULE
3183 M:      Hans Verkuil <hverkuil@xs4all.nl>
3184 L:      linux-media@vger.kernel.org
3185 T:      git git://linuxtv.org/media_tree.git
3186 W:      https://linuxtv.org
3187 S:      Maintained
3188 F:      drivers/media/common/cx2341x*
3189 F:      include/media/cx2341x*
3190
3191 CX24120 MEDIA DRIVER
3192 M:      Jemma Denson <jdenson@gmail.com>
3193 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
3194 L:      linux-media@vger.kernel.org
3195 W:      https://linuxtv.org
3196 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3197 S:      Maintained
3198 F:      drivers/media/dvb-frontends/cx24120*
3199
3200 CX88 VIDEO4LINUX DRIVER
3201 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3202 L:      linux-media@vger.kernel.org
3203 W:      https://linuxtv.org
3204 T:      git git://linuxtv.org/media_tree.git
3205 S:      Odd fixes
3206 F:      Documentation/video4linux/cx88/
3207 F:      drivers/media/pci/cx88/
3208
3209 CXD2820R MEDIA DRIVER
3210 M:      Antti Palosaari <crope@iki.fi>
3211 L:      linux-media@vger.kernel.org
3212 W:      https://linuxtv.org
3213 W:      http://palosaari.fi/linux/
3214 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3215 T:      git git://linuxtv.org/anttip/media_tree.git
3216 S:      Maintained
3217 F:      drivers/media/dvb-frontends/cxd2820r*
3218
3219 CXGB3 ETHERNET DRIVER (CXGB3)
3220 M:      Santosh Raspatur <santosh@chelsio.com>
3221 L:      netdev@vger.kernel.org
3222 W:      http://www.chelsio.com
3223 S:      Supported
3224 F:      drivers/net/ethernet/chelsio/cxgb3/
3225
3226 CXGB3 ISCSI DRIVER (CXGB3I)
3227 M:      Karen Xie <kxie@chelsio.com>
3228 L:      linux-scsi@vger.kernel.org
3229 W:      http://www.chelsio.com
3230 S:      Supported
3231 F:      drivers/scsi/cxgbi/cxgb3i
3232
3233 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
3234 M:      Steve Wise <swise@chelsio.com>
3235 L:      linux-rdma@vger.kernel.org
3236 W:      http://www.openfabrics.org
3237 S:      Supported
3238 F:      drivers/infiniband/hw/cxgb3/
3239
3240 CXGB4 ETHERNET DRIVER (CXGB4)
3241 M:      Hariprasad S <hariprasad@chelsio.com>
3242 L:      netdev@vger.kernel.org
3243 W:      http://www.chelsio.com
3244 S:      Supported
3245 F:      drivers/net/ethernet/chelsio/cxgb4/
3246
3247 CXGB4 ISCSI DRIVER (CXGB4I)
3248 M:      Karen Xie <kxie@chelsio.com>
3249 L:      linux-scsi@vger.kernel.org
3250 W:      http://www.chelsio.com
3251 S:      Supported
3252 F:      drivers/scsi/cxgbi/cxgb4i
3253
3254 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
3255 M:      Steve Wise <swise@chelsio.com>
3256 L:      linux-rdma@vger.kernel.org
3257 W:      http://www.openfabrics.org
3258 S:      Supported
3259 F:      drivers/infiniband/hw/cxgb4/
3260
3261 CXGB4VF ETHERNET DRIVER (CXGB4VF)
3262 M:      Casey Leedom <leedom@chelsio.com>
3263 L:      netdev@vger.kernel.org
3264 W:      http://www.chelsio.com
3265 S:      Supported
3266 F:      drivers/net/ethernet/chelsio/cxgb4vf/
3267
3268 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
3269 M:      Ian Munsie <imunsie@au1.ibm.com>
3270 M:      Michael Neuling <mikey@neuling.org>
3271 L:      linuxppc-dev@lists.ozlabs.org
3272 S:      Supported
3273 F:      drivers/misc/cxl/
3274 F:      include/misc/cxl*
3275 F:      include/uapi/misc/cxl.h
3276 F:      Documentation/powerpc/cxl.txt
3277 F:      Documentation/powerpc/cxl.txt
3278 F:      Documentation/ABI/testing/sysfs-class-cxl
3279
3280 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
3281 M:      Manoj N. Kumar <manoj@linux.vnet.ibm.com>
3282 M:      Matthew R. Ochs <mrochs@linux.vnet.ibm.com>
3283 L:      linux-scsi@vger.kernel.org
3284 S:      Supported
3285 F:      drivers/scsi/cxlflash/
3286 F:      include/uapi/scsi/cxlflash_ioctls.h
3287 F:      Documentation/powerpc/cxlflash.txt
3288
3289 STMMAC ETHERNET DRIVER
3290 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
3291 L:      netdev@vger.kernel.org
3292 W:      http://www.stlinux.com
3293 S:      Supported
3294 F:      drivers/net/ethernet/stmicro/stmmac/
3295
3296 CYBERPRO FB DRIVER
3297 M:      Russell King <linux@arm.linux.org.uk>
3298 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3299 W:      http://www.arm.linux.org.uk/
3300 S:      Maintained
3301 F:      drivers/video/fbdev/cyber2000fb.*
3302
3303 CYCLADES ASYNC MUX DRIVER
3304 W:      http://www.cyclades.com/
3305 S:      Orphan
3306 F:      drivers/tty/cyclades.c
3307 F:      include/linux/cyclades.h
3308 F:      include/uapi/linux/cyclades.h
3309
3310 CYCLADES PC300 DRIVER
3311 W:      http://www.cyclades.com/
3312 S:      Orphan
3313 F:      drivers/net/wan/pc300*
3314
3315 CYPRESS_FIRMWARE MEDIA DRIVER
3316 M:      Antti Palosaari <crope@iki.fi>
3317 L:      linux-media@vger.kernel.org
3318 W:      https://linuxtv.org
3319 W:      http://palosaari.fi/linux/
3320 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3321 T:      git git://linuxtv.org/anttip/media_tree.git
3322 S:      Maintained
3323 F:      drivers/media/common/cypress_firmware*
3324
3325 CYTTSP TOUCHSCREEN DRIVER
3326 M:      Ferruh Yigit <fery@cypress.com>
3327 L:      linux-input@vger.kernel.org
3328 S:      Supported
3329 F:      drivers/input/touchscreen/cyttsp*
3330 F:      include/linux/input/cyttsp.h
3331
3332 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
3333 M:      Joshua Kinard <kumba@gentoo.org>
3334 S:      Maintained
3335 F:      drivers/rtc/rtc-ds1685.c
3336 F:      include/linux/rtc/ds1685.h
3337
3338 DAMA SLAVE for AX.25
3339 M:      Joerg Reuter <jreuter@yaina.de>
3340 W:      http://yaina.de/jreuter/
3341 W:      http://www.qsl.net/dl1bke/
3342 L:      linux-hams@vger.kernel.org
3343 S:      Maintained
3344 F:      net/ax25/af_ax25.c
3345 F:      net/ax25/ax25_dev.c
3346 F:      net/ax25/ax25_ds_*
3347 F:      net/ax25/ax25_in.c
3348 F:      net/ax25/ax25_out.c
3349 F:      net/ax25/ax25_timer.c
3350 F:      net/ax25/sysctl_net_ax25.c
3351
3352 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
3353 L:      netdev@vger.kernel.org
3354 S:      Orphan
3355 F:      Documentation/networking/dmfe.txt
3356 F:      drivers/net/ethernet/dec/tulip/dmfe.c
3357
3358 DC390/AM53C974 SCSI driver
3359 M:      Hannes Reinecke <hare@suse.com>
3360 L:      linux-scsi@vger.kernel.org
3361 S:      Maintained
3362 F:      drivers/scsi/am53c974.c
3363
3364 DC395x SCSI driver
3365 M:      Oliver Neukum <oliver@neukum.org>
3366 M:      Ali Akcaagac <aliakc@web.de>
3367 M:      Jamie Lenehan <lenehan@twibble.org>
3368 L:      dc395x@twibble.org
3369 W:      http://twibble.org/dist/dc395x/
3370 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
3371 S:      Maintained
3372 F:      Documentation/scsi/dc395x.txt
3373 F:      drivers/scsi/dc395x.*
3374
3375 DCCP PROTOCOL
3376 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
3377 L:      dccp@vger.kernel.org
3378 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
3379 S:      Maintained
3380 F:      include/linux/dccp.h
3381 F:      include/uapi/linux/dccp.h
3382 F:      include/linux/tfrc.h
3383 F:      net/dccp/
3384
3385 DECnet NETWORK LAYER
3386 W:      http://linux-decnet.sourceforge.net
3387 L:      linux-decnet-user@lists.sourceforge.net
3388 S:      Orphan
3389 F:      Documentation/networking/decnet.txt
3390 F:      net/decnet/
3391
3392 DECSTATION PLATFORM SUPPORT
3393 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3394 L:      linux-mips@linux-mips.org
3395 W:      http://www.linux-mips.org/wiki/DECstation
3396 S:      Maintained
3397 F:      arch/mips/dec/
3398 F:      arch/mips/include/asm/dec/
3399 F:      arch/mips/include/asm/mach-dec/
3400
3401 DEFXX FDDI NETWORK DRIVER
3402 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3403 S:      Maintained
3404 F:      drivers/net/fddi/defxx.*
3405
3406 DELL LAPTOP DRIVER
3407 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3408 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3409 L:      platform-driver-x86@vger.kernel.org
3410 S:      Maintained
3411 F:      drivers/platform/x86/dell-laptop.c
3412
3413 DELL LAPTOP RBTN DRIVER
3414 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3415 S:      Maintained
3416 F:      drivers/platform/x86/dell-rbtn.*
3417
3418 DELL LAPTOP FREEFALL DRIVER
3419 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3420 S:      Maintained
3421 F:      drivers/platform/x86/dell-smo8800.c
3422
3423 DELL LAPTOP SMM DRIVER
3424 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3425 S:      Maintained
3426 F:      drivers/hwmon/dell-smm-hwmon.c
3427 F:      include/uapi/linux/i8k.h
3428
3429 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
3430 M:      Doug Warzecha <Douglas_Warzecha@dell.com>
3431 S:      Maintained
3432 F:      Documentation/dcdbas.txt
3433 F:      drivers/firmware/dcdbas.*
3434
3435 DELL WMI EXTRAS DRIVER
3436 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3437 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3438 S:      Maintained
3439 F:      drivers/platform/x86/dell-wmi.c
3440
3441 DESIGNWARE USB2 DRD IP DRIVER
3442 M:      John Youn <johnyoun@synopsys.com>
3443 L:      linux-usb@vger.kernel.org
3444 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3445 S:      Maintained
3446 F:      drivers/usb/dwc2/
3447
3448 DESIGNWARE USB3 DRD IP DRIVER
3449 M:      Felipe Balbi <balbi@kernel.org>
3450 L:      linux-usb@vger.kernel.org
3451 L:      linux-omap@vger.kernel.org
3452 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3453 S:      Maintained
3454 F:      drivers/usb/dwc3/
3455
3456 DEVICE COREDUMP (DEV_COREDUMP)
3457 M:      Johannes Berg <johannes@sipsolutions.net>
3458 L:      linux-kernel@vger.kernel.org
3459 S:      Maintained
3460 F:      drivers/base/devcoredump.c
3461 F:      include/linux/devcoredump.h
3462
3463 DEVICE FREQUENCY (DEVFREQ)
3464 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
3465 M:      Kyungmin Park <kyungmin.park@samsung.com>
3466 L:      linux-pm@vger.kernel.org
3467 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3468 S:      Maintained
3469 F:      drivers/devfreq/
3470 F:      include/linux/devfreq.h
3471 F:      Documentation/devicetree/bindings/devfreq/
3472
3473 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
3474 M:      Chanwoo Choi <cw00.choi@samsung.com>
3475 L:      linux-pm@vger.kernel.org
3476 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3477 S:      Supported
3478 F:      drivers/devfreq/event/
3479 F:      drivers/devfreq/devfreq-event.c
3480 F:      include/linux/devfreq-event.h
3481 F:      Documentation/devicetree/bindings/devfreq/event/
3482
3483 DEVICE NUMBER REGISTRY
3484 M:      Torben Mathiasen <device@lanana.org>
3485 W:      http://lanana.org/docs/device-list/index.html
3486 S:      Maintained
3487
3488 DEVICE-MAPPER  (LVM)
3489 M:      Alasdair Kergon <agk@redhat.com>
3490 M:      Mike Snitzer <snitzer@redhat.com>
3491 M:      dm-devel@redhat.com
3492 L:      dm-devel@redhat.com
3493 W:      http://sources.redhat.com/dm
3494 Q:      http://patchwork.kernel.org/project/dm-devel/list/
3495 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
3496 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
3497 S:      Maintained
3498 F:      Documentation/device-mapper/
3499 F:      drivers/md/dm*
3500 F:      drivers/md/persistent-data/
3501 F:      include/linux/device-mapper.h
3502 F:      include/linux/dm-*.h
3503 F:      include/uapi/linux/dm-*.h
3504
3505 DIALOG SEMICONDUCTOR DRIVERS
3506 M:      Support Opensource <support.opensource@diasemi.com>
3507 W:      http://www.dialog-semiconductor.com/products
3508 S:      Supported
3509 F:      Documentation/hwmon/da90??
3510 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
3511 F:      drivers/gpio/gpio-da90??.c
3512 F:      drivers/hwmon/da90??-hwmon.c
3513 F:      drivers/iio/adc/da91??-*.c
3514 F:      drivers/input/misc/da90??_onkey.c
3515 F:      drivers/input/touchscreen/da9052_tsi.c
3516 F:      drivers/leds/leds-da90??.c
3517 F:      drivers/mfd/da903x.c
3518 F:      drivers/mfd/da90??-*.c
3519 F:      drivers/mfd/da91??-*.c
3520 F:      drivers/power/da9052-battery.c
3521 F:      drivers/power/da91??-*.c
3522 F:      drivers/regulator/da903x.c
3523 F:      drivers/regulator/da9???-regulator.[ch]
3524 F:      drivers/rtc/rtc-da90??.c
3525 F:      drivers/video/backlight/da90??_bl.c
3526 F:      drivers/watchdog/da90??_wdt.c
3527 F:      include/linux/mfd/da903x.h
3528 F:      include/linux/mfd/da9052/
3529 F:      include/linux/mfd/da9055/
3530 F:      include/linux/mfd/da9063/
3531 F:      include/linux/mfd/da9150/
3532 F:      include/sound/da[79]*.h
3533 F:      sound/soc/codecs/da[79]*.[ch]
3534
3535 DIGI NEO AND CLASSIC PCI PRODUCTS
3536 M:      Lidza Louina <lidza.louina@gmail.com>
3537 M:      Mark Hounschell <markh@compro.net>
3538 L:      driverdev-devel@linuxdriverproject.org
3539 S:      Maintained
3540 F:      drivers/staging/dgnc/
3541
3542 DIGI EPCA PCI PRODUCTS
3543 M:      Lidza Louina <lidza.louina@gmail.com>
3544 M:      Daeseok Youn <daeseok.youn@gmail.com>
3545 L:      driverdev-devel@linuxdriverproject.org
3546 S:      Maintained
3547 F:      drivers/staging/dgap/
3548
3549 DIOLAN U2C-12 I2C DRIVER
3550 M:      Guenter Roeck <linux@roeck-us.net>
3551 L:      linux-i2c@vger.kernel.org
3552 S:      Maintained
3553 F:      drivers/i2c/busses/i2c-diolan-u2c.c
3554
3555 DIRECT ACCESS (DAX)
3556 M:      Matthew Wilcox <willy@linux.intel.com>
3557 L:      linux-fsdevel@vger.kernel.org
3558 S:      Supported
3559 F:      fs/dax.c
3560
3561 DIRECTORY NOTIFICATION (DNOTIFY)
3562 M:      Eric Paris <eparis@parisplace.org>
3563 S:      Maintained
3564 F:      Documentation/filesystems/dnotify.txt
3565 F:      fs/notify/dnotify/
3566 F:      include/linux/dnotify.h
3567
3568 DISK GEOMETRY AND PARTITION HANDLING
3569 M:      Andries Brouwer <aeb@cwi.nl>
3570 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
3571 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
3572 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
3573 S:      Maintained
3574
3575 DISKQUOTA
3576 M:      Jan Kara <jack@suse.com>
3577 S:      Maintained
3578 F:      Documentation/filesystems/quota.txt
3579 F:      fs/quota/
3580 F:      include/linux/quota*.h
3581 F:      include/uapi/linux/quota*.h
3582
3583 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
3584 M:      Bernie Thompson <bernie@plugable.com>
3585 L:      linux-fbdev@vger.kernel.org
3586 S:      Maintained
3587 W:      http://plugable.com/category/projects/udlfb/
3588 F:      drivers/video/fbdev/udlfb.c
3589 F:      include/video/udlfb.h
3590 F:      Documentation/fb/udlfb.txt
3591
3592 DISTRIBUTED LOCK MANAGER (DLM)
3593 M:      Christine Caulfield <ccaulfie@redhat.com>
3594 M:      David Teigland <teigland@redhat.com>
3595 L:      cluster-devel@redhat.com
3596 W:      http://sources.redhat.com/cluster/
3597 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
3598 S:      Supported
3599 F:      fs/dlm/
3600
3601 DMA BUFFER SHARING FRAMEWORK
3602 M:      Sumit Semwal <sumit.semwal@linaro.org>
3603 S:      Maintained
3604 L:      linux-media@vger.kernel.org
3605 L:      dri-devel@lists.freedesktop.org
3606 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
3607 F:      drivers/dma-buf/
3608 F:      include/linux/dma-buf*
3609 F:      include/linux/reservation.h
3610 F:      include/linux/*fence.h
3611 F:      Documentation/dma-buf-sharing.txt
3612 T:      git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
3613
3614 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
3615 M:      Vinod Koul <vinod.koul@intel.com>
3616 L:      dmaengine@vger.kernel.org
3617 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
3618 S:      Maintained
3619 F:      drivers/dma/
3620 F:      include/linux/dmaengine.h
3621 F:      Documentation/dmaengine/
3622 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
3623
3624 DME1737 HARDWARE MONITOR DRIVER
3625 M:      Juerg Haefliger <juergh@gmail.com>
3626 L:      lm-sensors@lm-sensors.org
3627 S:      Maintained
3628 F:      Documentation/hwmon/dme1737
3629 F:      drivers/hwmon/dme1737.c
3630
3631 DMI/SMBIOS SUPPORT
3632 M:      Jean Delvare <jdelvare@suse.com>
3633 S:      Maintained
3634 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
3635 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
3636 F:      drivers/firmware/dmi-id.c
3637 F:      drivers/firmware/dmi_scan.c
3638 F:      include/linux/dmi.h
3639
3640 DOCUMENTATION
3641 M:      Jonathan Corbet <corbet@lwn.net>
3642 L:      linux-doc@vger.kernel.org
3643 S:      Maintained
3644 F:      Documentation/
3645 F:      scripts/docproc.c
3646 F:      scripts/kernel-doc*
3647 X:      Documentation/ABI/
3648 X:      Documentation/devicetree/
3649 X:      Documentation/acpi
3650 X:      Documentation/power
3651 X:      Documentation/spi
3652 X:      Documentation/DocBook/media
3653 T:      git git://git.lwn.net/linux.git docs-next
3654
3655 DOUBLETALK DRIVER
3656 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
3657 L:      blinux-list@redhat.com
3658 S:      Maintained
3659 F:      drivers/char/dtlk.c
3660 F:      include/linux/dtlk.h
3661
3662 DPT_I2O SCSI RAID DRIVER
3663 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
3664 L:      linux-scsi@vger.kernel.org
3665 W:      http://www.adaptec.com/
3666 S:      Maintained
3667 F:      drivers/scsi/dpt*
3668 F:      drivers/scsi/dpt/
3669
3670 DRBD DRIVER
3671 M:      Philipp Reisner <philipp.reisner@linbit.com>
3672 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
3673 L:      drbd-dev@lists.linbit.com
3674 W:      http://www.drbd.org
3675 T:      git git://git.linbit.com/linux-drbd.git
3676 T:      git git://git.linbit.com/drbd-8.4.git
3677 S:      Supported
3678 F:      drivers/block/drbd/
3679 F:      lib/lru_cache.c
3680 F:      Documentation/blockdev/drbd/
3681
3682 DRIVER CORE, KOBJECTS, DEBUGFS, KERNFS AND SYSFS
3683 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3684 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
3685 S:      Supported
3686 F:      Documentation/kobject.txt
3687 F:      drivers/base/
3688 F:      fs/debugfs/
3689 F:      fs/kernfs/
3690 F:      fs/sysfs/
3691 F:      include/linux/debugfs.h
3692 F:      include/linux/kobj*
3693 F:      lib/kobj*
3694
3695 DRM DRIVERS
3696 M:      David Airlie <airlied@linux.ie>
3697 L:      dri-devel@lists.freedesktop.org
3698 T:      git git://people.freedesktop.org/~airlied/linux
3699 S:      Maintained
3700 F:      drivers/gpu/drm/
3701 F:      drivers/gpu/vga/
3702 F:      include/drm/
3703 F:      include/uapi/drm/
3704
3705 RADEON DRM DRIVERS
3706 M:      Alex Deucher <alexander.deucher@amd.com>
3707 M:      Christian König <christian.koenig@amd.com>
3708 L:      dri-devel@lists.freedesktop.org
3709 T:      git git://people.freedesktop.org/~agd5f/linux
3710 S:      Supported
3711 F:      drivers/gpu/drm/radeon/
3712 F:      include/uapi/drm/radeon*
3713
3714 DRM PANEL DRIVERS
3715 M:      Thierry Reding <thierry.reding@gmail.com>
3716 L:      dri-devel@lists.freedesktop.org
3717 T:      git git://anongit.freedesktop.org/tegra/linux.git
3718 S:      Maintained
3719 F:      drivers/gpu/drm/drm_panel.c
3720 F:      drivers/gpu/drm/panel/
3721 F:      include/drm/drm_panel.h
3722 F:      Documentation/devicetree/bindings/display/panel/
3723
3724 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
3725 M:      Daniel Vetter <daniel.vetter@intel.com>
3726 M:      Jani Nikula <jani.nikula@linux.intel.com>
3727 L:      intel-gfx@lists.freedesktop.org
3728 L:      dri-devel@lists.freedesktop.org
3729 W:      https://01.org/linuxgraphics/
3730 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
3731 T:      git git://anongit.freedesktop.org/drm-intel
3732 S:      Supported
3733 F:      drivers/gpu/drm/i915/
3734 F:      include/drm/i915*
3735 F:      include/uapi/drm/i915*
3736
3737 DRM DRIVERS FOR ATMEL HLCDC
3738 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
3739 L:      dri-devel@lists.freedesktop.org
3740 S:      Supported
3741 F:      drivers/gpu/drm/atmel-hlcdc/
3742 F:      Documentation/devicetree/bindings/drm/atmel/
3743
3744 DRM DRIVERS FOR EXYNOS
3745 M:      Inki Dae <inki.dae@samsung.com>
3746 M:      Joonyoung Shim <jy0922.shim@samsung.com>
3747 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
3748 M:      Kyungmin Park <kyungmin.park@samsung.com>
3749 L:      dri-devel@lists.freedesktop.org
3750 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
3751 S:      Supported
3752 F:      drivers/gpu/drm/exynos/
3753 F:      include/drm/exynos*
3754 F:      include/uapi/drm/exynos*
3755
3756 DRM DRIVERS FOR FREESCALE DCU
3757 M:      Jianwei Wang <jianwei.wang.chn@gmail.com>
3758 M:      Alison Wang <alison.wang@freescale.com>
3759 L:      dri-devel@lists.freedesktop.org
3760 S:      Supported
3761 F:      drivers/gpu/drm/fsl-dcu/
3762 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
3763 F:      Documentation/devicetree/bindings/display/panel/nec,nl4827hc19_05b.txt
3764
3765 DRM DRIVERS FOR FREESCALE IMX
3766 M:      Philipp Zabel <p.zabel@pengutronix.de>
3767 L:      dri-devel@lists.freedesktop.org
3768 S:      Maintained
3769 F:      drivers/gpu/drm/imx/
3770 F:      drivers/gpu/ipu-v3/
3771 F:      Documentation/devicetree/bindings/display/imx/
3772
3773 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
3774 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
3775 L:      dri-devel@lists.freedesktop.org
3776 T:      git git://github.com/patjak/drm-gma500
3777 S:      Maintained
3778 F:      drivers/gpu/drm/gma500
3779 F:      include/drm/gma500*
3780
3781 DRM DRIVERS FOR NVIDIA TEGRA
3782 M:      Thierry Reding <thierry.reding@gmail.com>
3783 M:      Terje Bergström <tbergstrom@nvidia.com>
3784 L:      dri-devel@lists.freedesktop.org
3785 L:      linux-tegra@vger.kernel.org
3786 T:      git git://anongit.freedesktop.org/tegra/linux.git
3787 S:      Supported
3788 F:      drivers/gpu/drm/tegra/
3789 F:      drivers/gpu/host1x/
3790 F:      include/linux/host1x.h
3791 F:      include/uapi/drm/tegra_drm.h
3792 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
3793
3794 DRM DRIVERS FOR RENESAS
3795 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
3796 L:      dri-devel@lists.freedesktop.org
3797 L:      linux-renesas-soc@vger.kernel.org
3798 T:      git git://people.freedesktop.org/~airlied/linux
3799 S:      Supported
3800 F:      drivers/gpu/drm/rcar-du/
3801 F:      drivers/gpu/drm/shmobile/
3802 F:      include/linux/platform_data/shmob_drm.h
3803
3804 DRM DRIVERS FOR ROCKCHIP
3805 M:      Mark Yao <mark.yao@rock-chips.com>
3806 L:      dri-devel@lists.freedesktop.org
3807 S:      Maintained
3808 F:      drivers/gpu/drm/rockchip/
3809 F:      Documentation/devicetree/bindings/display/rockchip*
3810
3811 DRM DRIVERS FOR STI
3812 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
3813 M:      Vincent Abriou <vincent.abriou@st.com>
3814 L:      dri-devel@lists.freedesktop.org
3815 T:      git http://git.linaro.org/people/benjamin.gaignard/kernel.git
3816 S:      Maintained
3817 F:      drivers/gpu/drm/sti
3818 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
3819
3820 DRM DRIVERS FOR VIVANTE GPU IP
3821 M:      Lucas Stach <l.stach@pengutronix.de>
3822 R:      Russell King <linux+etnaviv@arm.linux.org.uk>
3823 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
3824 L:      dri-devel@lists.freedesktop.org
3825 S:      Maintained
3826 F:      drivers/gpu/drm/etnaviv
3827 F:      Documentation/devicetree/bindings/display/etnaviv
3828
3829 DSBR100 USB FM RADIO DRIVER
3830 M:      Alexey Klimov <klimov.linux@gmail.com>
3831 L:      linux-media@vger.kernel.org
3832 T:      git git://linuxtv.org/media_tree.git
3833 S:      Maintained
3834 F:      drivers/media/radio/dsbr100.c
3835
3836 DSCC4 DRIVER
3837 M:      Francois Romieu <romieu@fr.zoreil.com>
3838 L:      netdev@vger.kernel.org
3839 S:      Maintained
3840 F:      drivers/net/wan/dscc4.c
3841
3842 DT3155 MEDIA DRIVER
3843 M:      Hans Verkuil <hverkuil@xs4all.nl>
3844 L:      linux-media@vger.kernel.org
3845 T:      git git://linuxtv.org/media_tree.git
3846 W:      https://linuxtv.org
3847 S:      Odd Fixes
3848 F:      drivers/media/pci/dt3155/
3849
3850 DVB_USB_AF9015 MEDIA DRIVER
3851 M:      Antti Palosaari <crope@iki.fi>
3852 L:      linux-media@vger.kernel.org
3853 W:      https://linuxtv.org
3854 W:      http://palosaari.fi/linux/
3855 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3856 T:      git git://linuxtv.org/anttip/media_tree.git
3857 S:      Maintained
3858 F:      drivers/media/usb/dvb-usb-v2/af9015*
3859
3860 DVB_USB_AF9035 MEDIA DRIVER
3861 M:      Antti Palosaari <crope@iki.fi>
3862 L:      linux-media@vger.kernel.org
3863 W:      https://linuxtv.org
3864 W:      http://palosaari.fi/linux/
3865 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3866 T:      git git://linuxtv.org/anttip/media_tree.git
3867 S:      Maintained
3868 F:      drivers/media/usb/dvb-usb-v2/af9035*
3869
3870 DVB_USB_ANYSEE MEDIA DRIVER
3871 M:      Antti Palosaari <crope@iki.fi>
3872 L:      linux-media@vger.kernel.org
3873 W:      https://linuxtv.org
3874 W:      http://palosaari.fi/linux/
3875 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3876 T:      git git://linuxtv.org/anttip/media_tree.git
3877 S:      Maintained
3878 F:      drivers/media/usb/dvb-usb-v2/anysee*
3879
3880 DVB_USB_AU6610 MEDIA DRIVER
3881 M:      Antti Palosaari <crope@iki.fi>
3882 L:      linux-media@vger.kernel.org
3883 W:      https://linuxtv.org
3884 W:      http://palosaari.fi/linux/
3885 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3886 T:      git git://linuxtv.org/anttip/media_tree.git
3887 S:      Maintained
3888 F:      drivers/media/usb/dvb-usb-v2/au6610*
3889
3890 DVB_USB_CE6230 MEDIA DRIVER
3891 M:      Antti Palosaari <crope@iki.fi>
3892 L:      linux-media@vger.kernel.org
3893 W:      https://linuxtv.org
3894 W:      http://palosaari.fi/linux/
3895 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3896 T:      git git://linuxtv.org/anttip/media_tree.git
3897 S:      Maintained
3898 F:      drivers/media/usb/dvb-usb-v2/ce6230*
3899
3900 DVB_USB_CXUSB MEDIA DRIVER
3901 M:      Michael Krufky <mkrufky@linuxtv.org>
3902 L:      linux-media@vger.kernel.org
3903 W:      https://linuxtv.org
3904 W:      http://github.com/mkrufky
3905 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3906 T:      git git://linuxtv.org/media_tree.git
3907 S:      Maintained
3908 F:      drivers/media/usb/dvb-usb/cxusb*
3909
3910 DVB_USB_EC168 MEDIA DRIVER
3911 M:      Antti Palosaari <crope@iki.fi>
3912 L:      linux-media@vger.kernel.org
3913 W:      https://linuxtv.org
3914 W:      http://palosaari.fi/linux/
3915 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3916 T:      git git://linuxtv.org/anttip/media_tree.git
3917 S:      Maintained
3918 F:      drivers/media/usb/dvb-usb-v2/ec168*
3919
3920 DVB_USB_GL861 MEDIA DRIVER
3921 M:      Antti Palosaari <crope@iki.fi>
3922 L:      linux-media@vger.kernel.org
3923 W:      https://linuxtv.org
3924 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3925 T:      git git://linuxtv.org/anttip/media_tree.git
3926 S:      Maintained
3927 F:      drivers/media/usb/dvb-usb-v2/gl861*
3928
3929 DVB_USB_MXL111SF MEDIA DRIVER
3930 M:      Michael Krufky <mkrufky@linuxtv.org>
3931 L:      linux-media@vger.kernel.org
3932 W:      https://linuxtv.org
3933 W:      http://github.com/mkrufky
3934 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3935 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
3936 S:      Maintained
3937 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
3938
3939 DVB_USB_RTL28XXU MEDIA DRIVER
3940 M:      Antti Palosaari <crope@iki.fi>
3941 L:      linux-media@vger.kernel.org
3942 W:      https://linuxtv.org
3943 W:      http://palosaari.fi/linux/
3944 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3945 T:      git git://linuxtv.org/anttip/media_tree.git
3946 S:      Maintained
3947 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
3948
3949 DVB_USB_V2 MEDIA DRIVER
3950 M:      Antti Palosaari <crope@iki.fi>
3951 L:      linux-media@vger.kernel.org
3952 W:      https://linuxtv.org
3953 W:      http://palosaari.fi/linux/
3954 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3955 T:      git git://linuxtv.org/anttip/media_tree.git
3956 S:      Maintained
3957 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
3958 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
3959
3960 DYNAMIC DEBUG
3961 M:      Jason Baron <jbaron@akamai.com>
3962 S:      Maintained
3963 F:      lib/dynamic_debug.c
3964 F:      include/linux/dynamic_debug.h
3965
3966 DZ DECSTATION DZ11 SERIAL DRIVER
3967 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3968 S:      Maintained
3969 F:      drivers/tty/serial/dz.*
3970
3971 E3X0 POWER BUTTON DRIVER
3972 M:      Moritz Fischer <moritz.fischer@ettus.com>
3973 L:      usrp-users@lists.ettus.com
3974 W:      http://www.ettus.com
3975 S:      Supported
3976 F:      drivers/input/misc/e3x0-button.c
3977 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
3978
3979 E4000 MEDIA DRIVER
3980 M:      Antti Palosaari <crope@iki.fi>
3981 L:      linux-media@vger.kernel.org
3982 W:      https://linuxtv.org
3983 W:      http://palosaari.fi/linux/
3984 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3985 T:      git git://linuxtv.org/anttip/media_tree.git
3986 S:      Maintained
3987 F:      drivers/media/tuners/e4000*
3988
3989 EATA ISA/EISA/PCI SCSI DRIVER
3990 M:      Dario Ballabio <ballabio_dario@emc.com>
3991 L:      linux-scsi@vger.kernel.org
3992 S:      Maintained
3993 F:      drivers/scsi/eata.c
3994
3995 EC100 MEDIA DRIVER
3996 M:      Antti Palosaari <crope@iki.fi>
3997 L:      linux-media@vger.kernel.org
3998 W:      https://linuxtv.org
3999 W:      http://palosaari.fi/linux/
4000 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4001 T:      git git://linuxtv.org/anttip/media_tree.git
4002 S:      Maintained
4003 F:      drivers/media/dvb-frontends/ec100*
4004
4005 ECRYPT FILE SYSTEM
4006 M:      Tyler Hicks <tyhicks@canonical.com>
4007 L:      ecryptfs@vger.kernel.org
4008 W:      http://ecryptfs.org
4009 W:      https://launchpad.net/ecryptfs
4010 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
4011 S:      Supported
4012 F:      Documentation/filesystems/ecryptfs.txt
4013 F:      fs/ecryptfs/
4014
4015 EDAC-CORE
4016 M:      Doug Thompson <dougthompson@xmission.com>
4017 M:      Borislav Petkov <bp@alien8.de>
4018 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4019 L:      linux-edac@vger.kernel.org
4020 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git for-next
4021 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-edac.git linux_next
4022 S:      Supported
4023 F:      Documentation/edac.txt
4024 F:      drivers/edac/
4025 F:      include/linux/edac.h
4026
4027 EDAC-AMD64
4028 M:      Doug Thompson <dougthompson@xmission.com>
4029 M:      Borislav Petkov <bp@alien8.de>
4030 L:      linux-edac@vger.kernel.org
4031 S:      Maintained
4032 F:      drivers/edac/amd64_edac*
4033
4034 EDAC-CALXEDA
4035 M:      Doug Thompson <dougthompson@xmission.com>
4036 M:      Robert Richter <rric@kernel.org>
4037 L:      linux-edac@vger.kernel.org
4038 S:      Maintained
4039 F:      drivers/edac/highbank*
4040
4041 EDAC-CAVIUM
4042 M:      Ralf Baechle <ralf@linux-mips.org>
4043 M:      David Daney <david.daney@cavium.com>
4044 L:      linux-edac@vger.kernel.org
4045 L:      linux-mips@linux-mips.org
4046 S:      Supported
4047 F:      drivers/edac/octeon_edac*
4048
4049 EDAC-E752X
4050 M:      Mark Gross <mark.gross@intel.com>
4051 M:      Doug Thompson <dougthompson@xmission.com>
4052 L:      linux-edac@vger.kernel.org
4053 S:      Maintained
4054 F:      drivers/edac/e752x_edac.c
4055
4056 EDAC-E7XXX
4057 M:      Doug Thompson <dougthompson@xmission.com>
4058 L:      linux-edac@vger.kernel.org
4059 S:      Maintained
4060 F:      drivers/edac/e7xxx_edac.c
4061
4062 EDAC-GHES
4063 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4064 L:      linux-edac@vger.kernel.org
4065 S:      Maintained
4066 F:      drivers/edac/ghes_edac.c
4067
4068 EDAC-I82443BXGX
4069 M:      Tim Small <tim@buttersideup.com>
4070 L:      linux-edac@vger.kernel.org
4071 S:      Maintained
4072 F:      drivers/edac/i82443bxgx_edac.c
4073
4074 EDAC-I3000
4075 M:      Jason Uhlenkott <juhlenko@akamai.com>
4076 L:      linux-edac@vger.kernel.org
4077 S:      Maintained
4078 F:      drivers/edac/i3000_edac.c
4079
4080 EDAC-I5000
4081 M:      Doug Thompson <dougthompson@xmission.com>
4082 L:      linux-edac@vger.kernel.org
4083 S:      Maintained
4084 F:      drivers/edac/i5000_edac.c
4085
4086 EDAC-I5400
4087 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4088 L:      linux-edac@vger.kernel.org
4089 S:      Maintained
4090 F:      drivers/edac/i5400_edac.c
4091
4092 EDAC-I7300
4093 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4094 L:      linux-edac@vger.kernel.org
4095 S:      Maintained
4096 F:      drivers/edac/i7300_edac.c
4097
4098 EDAC-I7CORE
4099 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4100 L:      linux-edac@vger.kernel.org
4101 S:      Maintained
4102 F:      drivers/edac/i7core_edac.c
4103
4104 EDAC-I82975X
4105 M:      Ranganathan Desikan <ravi@jetztechnologies.com>
4106 M:      "Arvind R." <arvino55@gmail.com>
4107 L:      linux-edac@vger.kernel.org
4108 S:      Maintained
4109 F:      drivers/edac/i82975x_edac.c
4110
4111 EDAC-IE31200
4112 M:      Jason Baron <jbaron@akamai.com>
4113 L:      linux-edac@vger.kernel.org
4114 S:      Maintained
4115 F:      drivers/edac/ie31200_edac.c
4116
4117 EDAC-MPC85XX
4118 M:      Johannes Thumshirn <morbidrsa@gmail.com>
4119 L:      linux-edac@vger.kernel.org
4120 S:      Maintained
4121 F:      drivers/edac/mpc85xx_edac.[ch]
4122
4123 EDAC-PASEMI
4124 M:      Egor Martovetsky <egor@pasemi.com>
4125 L:      linux-edac@vger.kernel.org
4126 S:      Maintained
4127 F:      drivers/edac/pasemi_edac.c
4128
4129 EDAC-R82600
4130 M:      Tim Small <tim@buttersideup.com>
4131 L:      linux-edac@vger.kernel.org
4132 S:      Maintained
4133 F:      drivers/edac/r82600_edac.c
4134
4135 EDAC-SBRIDGE
4136 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4137 L:      linux-edac@vger.kernel.org
4138 S:      Maintained
4139 F:      drivers/edac/sb_edac.c
4140
4141 EDAC-XGENE
4142 APPLIED MICRO (APM) X-GENE SOC EDAC
4143 M:     Loc Ho <lho@apm.com>
4144 S:     Supported
4145 F:     drivers/edac/xgene_edac.c
4146 F:     Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
4147
4148 EDIROL UA-101/UA-1000 DRIVER
4149 M:      Clemens Ladisch <clemens@ladisch.de>
4150 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4151 T:      git git://git.alsa-project.org/alsa-kernel.git
4152 S:      Maintained
4153 F:      sound/usb/misc/ua101.c
4154
4155 EXTENSIBLE FIRMWARE INTERFACE (EFI)
4156 M:      Matt Fleming <matt@codeblueprint.co.uk>
4157 L:      linux-efi@vger.kernel.org
4158 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4159 S:      Maintained
4160 F:      Documentation/efi-stub.txt
4161 F:      arch/ia64/kernel/efi.c
4162 F:      arch/x86/boot/compressed/eboot.[ch]
4163 F:      arch/x86/include/asm/efi.h
4164 F:      arch/x86/platform/efi/*
4165 F:      drivers/firmware/efi/*
4166 F:      include/linux/efi*.h
4167
4168 EFI VARIABLE FILESYSTEM
4169 M:      Matthew Garrett <matthew.garrett@nebula.com>
4170 M:      Jeremy Kerr <jk@ozlabs.org>
4171 M:      Matt Fleming <matt@codeblueprint.co.uk>
4172 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4173 L:      linux-efi@vger.kernel.org
4174 S:      Maintained
4175 F:      fs/efivarfs/
4176
4177 EFIFB FRAMEBUFFER DRIVER
4178 L:      linux-fbdev@vger.kernel.org
4179 M:      Peter Jones <pjones@redhat.com>
4180 S:      Maintained
4181 F:      drivers/video/fbdev/efifb.c
4182
4183 EFS FILESYSTEM
4184 W:      http://aeschi.ch.eu.org/efs/
4185 S:      Orphan
4186 F:      fs/efs/
4187
4188 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
4189 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
4190 L:      netdev@vger.kernel.org
4191 S:      Maintained
4192 F:      drivers/net/ethernet/ibm/ehea/
4193
4194 EM28XX VIDEO4LINUX DRIVER
4195 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4196 L:      linux-media@vger.kernel.org
4197 W:      https://linuxtv.org
4198 T:      git git://linuxtv.org/media_tree.git
4199 S:      Maintained
4200 F:      drivers/media/usb/em28xx/
4201
4202 EMBEDDED LINUX
4203 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
4204 M:      Matt Mackall <mpm@selenic.com>
4205 M:      David Woodhouse <dwmw2@infradead.org>
4206 L:      linux-embedded@vger.kernel.org
4207 S:      Maintained
4208
4209 EMULEX/AVAGO LPFC FC/FCOE SCSI DRIVER
4210 M:      James Smart <james.smart@avagotech.com>
4211 M:      Dick Kennedy <dick.kennedy@avagotech.com>
4212 L:      linux-scsi@vger.kernel.org
4213 W:      http://www.avagotech.com
4214 S:      Supported
4215 F:      drivers/scsi/lpfc/
4216
4217 ENE CB710 FLASH CARD READER DRIVER
4218 M:      MichaÅ‚ MirosÅ‚aw <mirq-linux@rere.qmqm.pl>
4219 S:      Maintained
4220 F:      drivers/misc/cb710/
4221 F:      drivers/mmc/host/cb710-mmc.*
4222 F:      include/linux/cb710.h
4223
4224 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
4225 M:      Maxim Levitsky <maximlevitsky@gmail.com>
4226 S:      Maintained
4227 F:      drivers/media/rc/ene_ir.*
4228
4229 ENHANCED ERROR HANDLING (EEH)
4230 M:      Gavin Shan <shangw@linux.vnet.ibm.com>
4231 L:      linuxppc-dev@lists.ozlabs.org
4232 S:      Supported
4233 F:      Documentation/powerpc/eeh-pci-error-recovery.txt
4234 F:      arch/powerpc/kernel/eeh*.c
4235
4236 EPSON S1D13XXX FRAMEBUFFER DRIVER
4237 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
4238 S:      Maintained
4239 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
4240 F:      drivers/video/fbdev/s1d13xxxfb.c
4241 F:      include/video/s1d13xxxfb.h
4242
4243 ET131X NETWORK DRIVER
4244 M:      Mark Einon <mark.einon@gmail.com>
4245 S:      Odd Fixes
4246 F:      drivers/net/ethernet/agere/
4247
4248 ETHERNET BRIDGE
4249 M:      Stephen Hemminger <stephen@networkplumber.org>
4250 L:      bridge@lists.linux-foundation.org
4251 L:      netdev@vger.kernel.org
4252 W:      http://www.linuxfoundation.org/en/Net:Bridge
4253 S:      Maintained
4254 F:      include/linux/netfilter_bridge/
4255 F:      net/bridge/
4256
4257 ETHERNET PHY LIBRARY
4258 M:      Florian Fainelli <f.fainelli@gmail.com>
4259 L:      netdev@vger.kernel.org
4260 S:      Maintained
4261 F:      include/linux/phy.h
4262 F:      include/linux/phy_fixed.h
4263 F:      drivers/net/phy/
4264 F:      Documentation/networking/phy.txt
4265 F:      drivers/of/of_mdio.c
4266 F:      drivers/of/of_net.c
4267
4268 EXT2 FILE SYSTEM
4269 M:      Jan Kara <jack@suse.com>
4270 L:      linux-ext4@vger.kernel.org
4271 S:      Maintained
4272 F:      Documentation/filesystems/ext2.txt
4273 F:      fs/ext2/
4274 F:      include/linux/ext2*
4275
4276 EXT4 FILE SYSTEM
4277 M:      "Theodore Ts'o" <tytso@mit.edu>
4278 M:      Andreas Dilger <adilger.kernel@dilger.ca>
4279 L:      linux-ext4@vger.kernel.org
4280 W:      http://ext4.wiki.kernel.org
4281 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
4282 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
4283 S:      Maintained
4284 F:      Documentation/filesystems/ext4.txt
4285 F:      fs/ext4/
4286
4287 Extended Verification Module (EVM)
4288 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
4289 L:      linux-ima-devel@lists.sourceforge.net
4290 L:      linux-security-module@vger.kernel.org
4291 S:      Supported
4292 F:      security/integrity/evm/
4293
4294 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
4295 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
4296 M:      Chanwoo Choi <cw00.choi@samsung.com>
4297 L:      linux-kernel@vger.kernel.org
4298 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
4299 S:      Maintained
4300 F:      drivers/extcon/
4301 F:      include/linux/extcon/
4302 F:      include/linux/extcon.h
4303 F:      Documentation/extcon/
4304 F:      Documentation/devicetree/bindings/extcon/
4305
4306 EXYNOS DP DRIVER
4307 M:      Jingoo Han <jingoohan1@gmail.com>
4308 L:      dri-devel@lists.freedesktop.org
4309 S:      Maintained
4310 F:      drivers/gpu/drm/exynos/exynos_dp*
4311
4312 EXYNOS MIPI DISPLAY DRIVERS
4313 M:      Inki Dae <inki.dae@samsung.com>
4314 M:      Donghwa Lee <dh09.lee@samsung.com>
4315 M:      Kyungmin Park <kyungmin.park@samsung.com>
4316 L:      linux-fbdev@vger.kernel.org
4317 S:      Maintained
4318 F:      drivers/video/fbdev/exynos/exynos_mipi*
4319 F:      include/video/exynos_mipi*
4320
4321 F71805F HARDWARE MONITORING DRIVER
4322 M:      Jean Delvare <jdelvare@suse.com>
4323 L:      lm-sensors@lm-sensors.org
4324 S:      Maintained
4325 F:      Documentation/hwmon/f71805f
4326 F:      drivers/hwmon/f71805f.c
4327
4328 FC0011 TUNER DRIVER
4329 M:      Michael Buesch <m@bues.ch>
4330 L:      linux-media@vger.kernel.org
4331 S:      Maintained
4332 F:      drivers/media/tuners/fc0011.h
4333 F:      drivers/media/tuners/fc0011.c
4334
4335 FC2580 MEDIA DRIVER
4336 M:      Antti Palosaari <crope@iki.fi>
4337 L:      linux-media@vger.kernel.org
4338 W:      https://linuxtv.org
4339 W:      http://palosaari.fi/linux/
4340 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4341 T:      git git://linuxtv.org/anttip/media_tree.git
4342 S:      Maintained
4343 F:      drivers/media/tuners/fc2580*
4344
4345 FANOTIFY
4346 M:      Eric Paris <eparis@redhat.com>
4347 S:      Maintained
4348 F:      fs/notify/fanotify/
4349 F:      include/linux/fanotify.h
4350 F:      include/uapi/linux/fanotify.h
4351
4352 FARSYNC SYNCHRONOUS DRIVER
4353 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
4354 W:      http://www.farsite.co.uk/
4355 S:      Supported
4356 F:      drivers/net/wan/farsync.*
4357
4358 FAULT INJECTION SUPPORT
4359 M:      Akinobu Mita <akinobu.mita@gmail.com>
4360 S:      Supported
4361 F:      Documentation/fault-injection/
4362 F:      lib/fault-inject.c
4363
4364 FBTFT Framebuffer drivers
4365 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
4366 M:      Noralf Trønnes <noralf@tronnes.org>
4367 S:      Maintained
4368 F:      drivers/staging/fbtft/
4369
4370 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
4371 M:      Vasu Dev <vasu.dev@intel.com>
4372 L:      fcoe-devel@open-fcoe.org
4373 W:      www.Open-FCoE.org
4374 S:      Supported
4375 F:      drivers/scsi/libfc/
4376 F:      drivers/scsi/fcoe/
4377 F:      include/scsi/fc/
4378 F:      include/scsi/libfc.h
4379 F:      include/scsi/libfcoe.h
4380 F:      include/uapi/scsi/fc/
4381
4382 FILE LOCKING (flock() and fcntl()/lockf())
4383 M:      Jeff Layton <jlayton@poochiereds.net>
4384 M:      "J. Bruce Fields" <bfields@fieldses.org>
4385 L:      linux-fsdevel@vger.kernel.org
4386 S:      Maintained
4387 F:      include/linux/fcntl.h
4388 F:      include/linux/fs.h
4389 F:      include/uapi/linux/fcntl.h
4390 F:      include/uapi/linux/fs.h
4391 F:      fs/fcntl.c
4392 F:      fs/locks.c
4393
4394 FILESYSTEMS (VFS and infrastructure)
4395 M:      Alexander Viro <viro@zeniv.linux.org.uk>
4396 L:      linux-fsdevel@vger.kernel.org
4397 S:      Maintained
4398 F:      fs/*
4399
4400 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
4401 M:      Riku Voipio <riku.voipio@iki.fi>
4402 L:      lm-sensors@lm-sensors.org
4403 S:      Maintained
4404 F:      drivers/hwmon/f75375s.c
4405 F:      include/linux/f75375s.h
4406
4407 FIREWIRE AUDIO DRIVERS
4408 M:      Clemens Ladisch <clemens@ladisch.de>
4409 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4410 T:      git git://git.alsa-project.org/alsa-kernel.git
4411 S:      Maintained
4412 F:      sound/firewire/
4413
4414 FIREWIRE MEDIA DRIVERS (firedtv)
4415 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4416 L:      linux-media@vger.kernel.org
4417 L:      linux1394-devel@lists.sourceforge.net
4418 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
4419 S:      Maintained
4420 F:      drivers/media/firewire/
4421
4422 FIREWIRE SBP-2 TARGET
4423 M:      Chris Boot <bootc@bootc.net>
4424 L:      linux-scsi@vger.kernel.org
4425 L:      target-devel@vger.kernel.org
4426 L:      linux1394-devel@lists.sourceforge.net
4427 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
4428 S:      Maintained
4429 F:      drivers/target/sbp/
4430
4431 FIREWIRE SUBSYSTEM
4432 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4433 L:      linux1394-devel@lists.sourceforge.net
4434 W:      http://ieee1394.wiki.kernel.org/
4435 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
4436 S:      Maintained
4437 F:      drivers/firewire/
4438 F:      include/linux/firewire.h
4439 F:      include/uapi/linux/firewire*.h
4440 F:      tools/firewire/
4441
4442 FIRMWARE LOADER (request_firmware)
4443 M:      Ming Lei <ming.lei@canonical.com>
4444 L:      linux-kernel@vger.kernel.org
4445 S:      Maintained
4446 F:      Documentation/firmware_class/
4447 F:      drivers/base/firmware*.c
4448 F:      include/linux/firmware.h
4449
4450 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
4451 M:      Joshua Morris <josh.h.morris@us.ibm.com>
4452 M:      Philip Kelleher <pjk1939@linux.vnet.ibm.com>
4453 S:      Maintained
4454 F:      drivers/block/rsxx/
4455
4456 FLOPPY DRIVER
4457 M:      Jiri Kosina <jikos@kernel.org>
4458 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
4459 S:      Odd fixes
4460 F:      drivers/block/floppy.c
4461
4462 FMC SUBSYSTEM
4463 M:      Alessandro Rubini <rubini@gnudd.com>
4464 W:      http://www.ohwr.org/projects/fmc-bus
4465 S:      Supported
4466 F:      drivers/fmc/
4467 F:      include/linux/fmc*.h
4468 F:      include/linux/ipmi-fru.h
4469 K:      fmc_d.*register
4470
4471 FPGA MANAGER FRAMEWORK
4472 M:      Alan Tull <atull@opensource.altera.com>
4473 R:      Moritz Fischer <moritz.fischer@ettus.com>
4474 S:      Maintained
4475 F:      drivers/fpga/
4476 F:      include/linux/fpga/fpga-mgr.h
4477 W:      http://www.rocketboards.org
4478
4479 FPU EMULATOR
4480 M:      Bill Metzenthen <billm@melbpc.org.au>
4481 W:      http://floatingpoint.sourceforge.net/emulator/index.html
4482 S:      Maintained
4483 F:      arch/x86/math-emu/
4484
4485 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
4486 L:      netdev@vger.kernel.org
4487 S:      Orphan
4488 F:      drivers/net/wan/dlci.c
4489 F:      drivers/net/wan/sdla.c
4490
4491 FRAMEBUFFER LAYER
4492 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
4493 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
4494 L:      linux-fbdev@vger.kernel.org
4495 W:      http://linux-fbdev.sourceforge.net/
4496 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
4497 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git
4498 S:      Maintained
4499 F:      Documentation/fb/
4500 F:      drivers/video/
4501 F:      include/video/
4502 F:      include/linux/fb.h
4503 F:      include/uapi/video/
4504 F:      include/uapi/linux/fb.h
4505
4506 FREESCALE DIU FRAMEBUFFER DRIVER
4507 M:      Timur Tabi <timur@tabi.org>
4508 L:      linux-fbdev@vger.kernel.org
4509 S:      Maintained
4510 F:      drivers/video/fbdev/fsl-diu-fb.*
4511
4512 FREESCALE DMA DRIVER
4513 M:      Li Yang <leoli@freescale.com>
4514 M:      Zhang Wei <zw@zh-kernel.org>
4515 L:      linuxppc-dev@lists.ozlabs.org
4516 S:      Maintained
4517 F:      drivers/dma/fsldma.*
4518
4519 FREESCALE I2C CPM DRIVER
4520 M:      Jochen Friedrich <jochen@scram.de>
4521 L:      linuxppc-dev@lists.ozlabs.org
4522 L:      linux-i2c@vger.kernel.org
4523 S:      Maintained
4524 F:      drivers/i2c/busses/i2c-cpm.c
4525
4526 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
4527 M:      Sascha Hauer <kernel@pengutronix.de>
4528 L:      linux-fbdev@vger.kernel.org
4529 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4530 S:      Maintained
4531 F:      include/linux/platform_data/video-imxfb.h
4532 F:      drivers/video/fbdev/imxfb.c
4533
4534 FREESCALE QUAD SPI DRIVER
4535 M:      Han Xu <han.xu@freescale.com>
4536 L:      linux-mtd@lists.infradead.org
4537 S:      Maintained
4538 F:      drivers/mtd/spi-nor/fsl-quadspi.c
4539
4540 FREESCALE SOC FS_ENET DRIVER
4541 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
4542 M:      Vitaly Bordug <vbordug@ru.mvista.com>
4543 L:      linuxppc-dev@lists.ozlabs.org
4544 L:      netdev@vger.kernel.org
4545 S:      Maintained
4546 F:      drivers/net/ethernet/freescale/fs_enet/
4547 F:      include/linux/fs_enet_pd.h
4548
4549 FREESCALE QUICC ENGINE LIBRARY
4550 L:      linuxppc-dev@lists.ozlabs.org
4551 S:      Orphan
4552 F:      drivers/soc/fsl/qe/
4553 F:      include/soc/fsl/*qe*.h
4554 F:      include/soc/fsl/*ucc*.h
4555
4556 FREESCALE USB PERIPHERAL DRIVERS
4557 M:      Li Yang <leoli@freescale.com>
4558 L:      linux-usb@vger.kernel.org
4559 L:      linuxppc-dev@lists.ozlabs.org
4560 S:      Maintained
4561 F:      drivers/usb/gadget/udc/fsl*
4562
4563 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
4564 M:      Li Yang <leoli@freescale.com>
4565 L:      netdev@vger.kernel.org
4566 L:      linuxppc-dev@lists.ozlabs.org
4567 S:      Maintained
4568 F:      drivers/net/ethernet/freescale/ucc_geth*
4569
4570 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
4571 M:      Claudiu Manoil <claudiu.manoil@freescale.com>
4572 L:      netdev@vger.kernel.org
4573 S:      Maintained
4574 F:      drivers/net/ethernet/freescale/gianfar*
4575 X:      drivers/net/ethernet/freescale/gianfar_ptp.c
4576 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
4577
4578 FREESCALE QUICC ENGINE UCC UART DRIVER
4579 M:      Timur Tabi <timur@tabi.org>
4580 L:      linuxppc-dev@lists.ozlabs.org
4581 S:      Maintained
4582 F:      drivers/tty/serial/ucc_uart.c
4583
4584 FREESCALE SOC SOUND DRIVERS
4585 M:      Timur Tabi <timur@tabi.org>
4586 M:      Nicolin Chen <nicoleotsuka@gmail.com>
4587 M:      Xiubo Li <Xiubo.Lee@gmail.com>
4588 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4589 L:      linuxppc-dev@lists.ozlabs.org
4590 S:      Maintained
4591 F:      sound/soc/fsl/fsl*
4592 F:      sound/soc/fsl/imx*
4593 F:      sound/soc/fsl/mpc8610_hpcd.c
4594
4595 FREESCALE QORIQ MANAGEMENT COMPLEX DRIVER
4596 M:      "J. German Rivera" <German.Rivera@freescale.com>
4597 L:      linux-kernel@vger.kernel.org
4598 S:      Maintained
4599 F:      drivers/staging/fsl-mc/
4600
4601 FREEVXFS FILESYSTEM
4602 M:      Christoph Hellwig <hch@infradead.org>
4603 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
4604 S:      Maintained
4605 F:      fs/freevxfs/
4606
4607 FREEZER
4608 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4609 M:      Pavel Machek <pavel@ucw.cz>
4610 L:      linux-pm@vger.kernel.org
4611 S:      Supported
4612 F:      Documentation/power/freezing-of-tasks.txt
4613 F:      include/linux/freezer.h
4614 F:      kernel/freezer.c
4615
4616 FRONTSWAP API
4617 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4618 L:      linux-kernel@vger.kernel.org
4619 S:      Maintained
4620 F:      mm/frontswap.c
4621 F:      include/linux/frontswap.h
4622
4623 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
4624 M:      David Howells <dhowells@redhat.com>
4625 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
4626 S:      Supported
4627 F:      Documentation/filesystems/caching/
4628 F:      fs/fscache/
4629 F:      include/linux/fscache*.h
4630
4631 F2FS FILE SYSTEM
4632 M:      Jaegeuk Kim <jaegeuk@kernel.org>
4633 M:      Changman Lee <cm224.lee@samsung.com>
4634 R:      Chao Yu <chao2.yu@samsung.com>
4635 L:      linux-f2fs-devel@lists.sourceforge.net
4636 W:      http://en.wikipedia.org/wiki/F2FS
4637 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
4638 S:      Maintained
4639 F:      Documentation/filesystems/f2fs.txt
4640 F:      Documentation/ABI/testing/sysfs-fs-f2fs
4641 F:      fs/f2fs/
4642 F:      include/linux/f2fs_fs.h
4643 F:      include/trace/events/f2fs.h
4644
4645 FUJITSU FR-V (FRV) PORT
4646 S:      Orphan
4647 F:      arch/frv/
4648
4649 FUJITSU LAPTOP EXTRAS
4650 M:      Jonathan Woithe <jwoithe@just42.net>
4651 L:      platform-driver-x86@vger.kernel.org
4652 S:      Maintained
4653 F:      drivers/platform/x86/fujitsu-laptop.c
4654
4655 FUJITSU M-5MO LS CAMERA ISP DRIVER
4656 M:      Kyungmin Park <kyungmin.park@samsung.com>
4657 M:      Heungjun Kim <riverful.kim@samsung.com>
4658 L:      linux-media@vger.kernel.org
4659 S:      Maintained
4660 F:      drivers/media/i2c/m5mols/
4661 F:      include/media/i2c/m5mols.h
4662
4663 FUJITSU TABLET EXTRAS
4664 M:      Robert Gerlach <khnz@gmx.de>
4665 L:      platform-driver-x86@vger.kernel.org
4666 S:      Maintained
4667 F:      drivers/platform/x86/fujitsu-tablet.c
4668
4669 FUSE: FILESYSTEM IN USERSPACE
4670 M:      Miklos Szeredi <miklos@szeredi.hu>
4671 L:      fuse-devel@lists.sourceforge.net
4672 W:      http://fuse.sourceforge.net/
4673 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
4674 S:      Maintained
4675 F:      fs/fuse/
4676 F:      include/uapi/linux/fuse.h
4677 F:      Documentation/filesystems/fuse.txt
4678
4679 FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
4680 M:      Rik Faith <faith@cs.unc.edu>
4681 L:      linux-scsi@vger.kernel.org
4682 S:      Odd Fixes (e.g., new signatures)
4683 F:      drivers/scsi/fdomain.*
4684
4685 GCOV BASED KERNEL PROFILING
4686 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
4687 S:      Maintained
4688 F:      kernel/gcov/
4689 F:      Documentation/gcov.txt
4690
4691 GDT SCSI DISK ARRAY CONTROLLER DRIVER
4692 M:      Achim Leubner <achim_leubner@adaptec.com>
4693 L:      linux-scsi@vger.kernel.org
4694 W:      http://www.icp-vortex.com/
4695 S:      Supported
4696 F:      drivers/scsi/gdt*
4697
4698 GDB KERNEL DEBUGGING HELPER SCRIPTS
4699 M:      Jan Kiszka <jan.kiszka@siemens.com>
4700 S:      Supported
4701 F:      scripts/gdb/
4702
4703 GEMTEK FM RADIO RECEIVER DRIVER
4704 M:      Hans Verkuil <hverkuil@xs4all.nl>
4705 L:      linux-media@vger.kernel.org
4706 T:      git git://linuxtv.org/media_tree.git
4707 W:      https://linuxtv.org
4708 S:      Maintained
4709 F:      drivers/media/radio/radio-gemtek*
4710
4711 GENERIC GPIO I2C DRIVER
4712 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
4713 S:      Supported
4714 F:      drivers/i2c/busses/i2c-gpio.c
4715 F:      include/linux/i2c-gpio.h
4716
4717 GENERIC GPIO I2C MULTIPLEXER DRIVER
4718 M:      Peter Korsgaard <peter.korsgaard@barco.com>
4719 L:      linux-i2c@vger.kernel.org
4720 S:      Supported
4721 F:      drivers/i2c/muxes/i2c-mux-gpio.c
4722 F:      include/linux/i2c-mux-gpio.h
4723 F:      Documentation/i2c/muxes/i2c-mux-gpio
4724
4725 GENERIC HDLC (WAN) DRIVERS
4726 M:      Krzysztof Halasa <khc@pm.waw.pl>
4727 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
4728 S:      Maintained
4729 F:      drivers/net/wan/c101.c
4730 F:      drivers/net/wan/hd6457*
4731 F:      drivers/net/wan/hdlc*
4732 F:      drivers/net/wan/n2.c
4733 F:      drivers/net/wan/pc300too.c
4734 F:      drivers/net/wan/pci200syn.c
4735 F:      drivers/net/wan/wanxl*
4736
4737 GENERIC INCLUDE/ASM HEADER FILES
4738 M:      Arnd Bergmann <arnd@arndb.de>
4739 L:      linux-arch@vger.kernel.org
4740 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
4741 S:      Maintained
4742 F:      include/asm-generic/
4743 F:      include/uapi/asm-generic/
4744
4745 GENERIC PHY FRAMEWORK
4746 M:      Kishon Vijay Abraham I <kishon@ti.com>
4747 L:      linux-kernel@vger.kernel.org
4748 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
4749 S:      Supported
4750 F:      drivers/phy/
4751 F:      include/linux/phy/
4752
4753 GENERIC PM DOMAINS
4754 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4755 M:      Kevin Hilman <khilman@kernel.org>
4756 M:      Ulf Hansson <ulf.hansson@linaro.org>
4757 L:      linux-pm@vger.kernel.org
4758 S:      Supported
4759 F:      drivers/base/power/domain*.c
4760 F:      include/linux/pm_domain.h
4761
4762 GENERIC UIO DRIVER FOR PCI DEVICES
4763 M:      "Michael S. Tsirkin" <mst@redhat.com>
4764 L:      kvm@vger.kernel.org
4765 S:      Supported
4766 F:      drivers/uio/uio_pci_generic.c
4767
4768 GET_MAINTAINER SCRIPT
4769 M:      Joe Perches <joe@perches.com>
4770 S:      Maintained
4771 F:      scripts/get_maintainer.pl
4772
4773 GFS2 FILE SYSTEM
4774 M:      Steven Whitehouse <swhiteho@redhat.com>
4775 M:      Bob Peterson <rpeterso@redhat.com>
4776 L:      cluster-devel@redhat.com
4777 W:      http://sources.redhat.com/cluster/
4778 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
4779 S:      Supported
4780 F:      Documentation/filesystems/gfs2*.txt
4781 F:      fs/gfs2/
4782 F:      include/uapi/linux/gfs2_ondisk.h
4783
4784 GIGASET ISDN DRIVERS
4785 M:      Paul Bolle <pebolle@tiscali.nl>
4786 L:      gigaset307x-common@lists.sourceforge.net
4787 W:      http://gigaset307x.sourceforge.net/
4788 S:      Odd Fixes
4789 F:      Documentation/isdn/README.gigaset
4790 F:      drivers/isdn/gigaset/
4791 F:      include/uapi/linux/gigaset_dev.h
4792
4793 GO7007 MPEG CODEC
4794 M:      Hans Verkuil <hans.verkuil@cisco.com>
4795 L:      linux-media@vger.kernel.org
4796 S:      Maintained
4797 F:      drivers/media/usb/go7007/
4798
4799 GOODIX TOUCHSCREEN
4800 M:      Bastien Nocera <hadess@hadess.net>
4801 L:      linux-input@vger.kernel.org
4802 S:      Maintained
4803 F:      drivers/input/touchscreen/goodix.c
4804
4805 GPIO SUBSYSTEM
4806 M:      Linus Walleij <linus.walleij@linaro.org>
4807 M:      Alexandre Courbot <gnurou@gmail.com>
4808 L:      linux-gpio@vger.kernel.org
4809 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
4810 S:      Maintained
4811 F:      Documentation/gpio/
4812 F:      drivers/gpio/
4813 F:      include/linux/gpio/
4814 F:      include/linux/gpio.h
4815 F:      include/asm-generic/gpio.h
4816
4817 GRE DEMULTIPLEXER DRIVER
4818 M:      Dmitry Kozlov <xeb@mail.ru>
4819 L:      netdev@vger.kernel.org
4820 S:      Maintained
4821 F:      net/ipv4/gre_demux.c
4822 F:      net/ipv4/gre_offload.c
4823 F:      include/net/gre.h
4824
4825 GRETH 10/100/1G Ethernet MAC device driver
4826 M:      Kristoffer Glembo <kristoffer@gaisler.com>
4827 L:      netdev@vger.kernel.org
4828 S:      Maintained
4829 F:      drivers/net/ethernet/aeroflex/
4830
4831 GSPCA FINEPIX SUBDRIVER
4832 M:      Frank Zago <frank@zago.net>
4833 L:      linux-media@vger.kernel.org
4834 T:      git git://linuxtv.org/media_tree.git
4835 S:      Maintained
4836 F:      drivers/media/usb/gspca/finepix.c
4837
4838 GSPCA GL860 SUBDRIVER
4839 M:      Olivier Lorin <o.lorin@laposte.net>
4840 L:      linux-media@vger.kernel.org
4841 T:      git git://linuxtv.org/media_tree.git
4842 S:      Maintained
4843 F:      drivers/media/usb/gspca/gl860/
4844
4845 GSPCA M5602 SUBDRIVER
4846 M:      Erik Andren <erik.andren@gmail.com>
4847 L:      linux-media@vger.kernel.org
4848 T:      git git://linuxtv.org/media_tree.git
4849 S:      Maintained
4850 F:      drivers/media/usb/gspca/m5602/
4851
4852 GSPCA PAC207 SONIXB SUBDRIVER
4853 M:      Hans de Goede <hdegoede@redhat.com>
4854 L:      linux-media@vger.kernel.org
4855 T:      git git://linuxtv.org/media_tree.git
4856 S:      Maintained
4857 F:      drivers/media/usb/gspca/pac207.c
4858
4859 GSPCA SN9C20X SUBDRIVER
4860 M:      Brian Johnson <brijohn@gmail.com>
4861 L:      linux-media@vger.kernel.org
4862 T:      git git://linuxtv.org/media_tree.git
4863 S:      Maintained
4864 F:      drivers/media/usb/gspca/sn9c20x.c
4865
4866 GSPCA T613 SUBDRIVER
4867 M:      Leandro Costantino <lcostantino@gmail.com>
4868 L:      linux-media@vger.kernel.org
4869 T:      git git://linuxtv.org/media_tree.git
4870 S:      Maintained
4871 F:      drivers/media/usb/gspca/t613.c
4872
4873 GSPCA USB WEBCAM DRIVER
4874 M:      Hans de Goede <hdegoede@redhat.com>
4875 L:      linux-media@vger.kernel.org
4876 T:      git git://linuxtv.org/media_tree.git
4877 S:      Maintained
4878 F:      drivers/media/usb/gspca/
4879
4880 GUID PARTITION TABLE (GPT)
4881 M:      Davidlohr Bueso <dave@stgolabs.net>
4882 L:      linux-efi@vger.kernel.org
4883 S:      Maintained
4884 F:      block/partitions/efi.*
4885
4886 STK1160 USB VIDEO CAPTURE DRIVER
4887 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
4888 L:      linux-media@vger.kernel.org
4889 T:      git git://linuxtv.org/media_tree.git
4890 S:      Maintained
4891 F:      drivers/media/usb/stk1160/
4892
4893 H8/300 ARCHITECTURE
4894 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
4895 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
4896 W:      http://uclinux-h8.sourceforge.jp
4897 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
4898 S:      Maintained
4899 F:      arch/h8300/
4900 F:      drivers/clocksource/h8300_*.c
4901 F:      drivers/clk/h8300/
4902 F:      drivers/irqchip/irq-renesas-h8*.c
4903
4904 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
4905 M:      Frank Seidel <frank@f-seidel.de>
4906 L:      platform-driver-x86@vger.kernel.org
4907 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
4908 S:      Maintained
4909 F:      drivers/platform/x86/hdaps.c
4910
4911 HDPVR USB VIDEO ENCODER DRIVER
4912 M:      Hans Verkuil <hverkuil@xs4all.nl>
4913 L:      linux-media@vger.kernel.org
4914 T:      git git://linuxtv.org/media_tree.git
4915 W:      https://linuxtv.org
4916 S:      Odd Fixes
4917 F:      drivers/media/usb/hdpvr/
4918
4919 HWPOISON MEMORY FAILURE HANDLING
4920 M:      Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
4921 L:      linux-mm@kvack.org
4922 S:      Maintained
4923 F:      mm/memory-failure.c
4924 F:      mm/hwpoison-inject.c
4925
4926 HYPERVISOR VIRTUAL CONSOLE DRIVER
4927 L:      linuxppc-dev@lists.ozlabs.org
4928 S:      Odd Fixes
4929 F:      drivers/tty/hvc/
4930
4931 HACKRF MEDIA DRIVER
4932 M:      Antti Palosaari <crope@iki.fi>
4933 L:      linux-media@vger.kernel.org
4934 W:      https://linuxtv.org
4935 W:      http://palosaari.fi/linux/
4936 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4937 T:      git git://linuxtv.org/anttip/media_tree.git
4938 S:      Maintained
4939 F:      drivers/media/usb/hackrf/
4940
4941 HARDWARE MONITORING
4942 M:      Jean Delvare <jdelvare@suse.com>
4943 M:      Guenter Roeck <linux@roeck-us.net>
4944 L:      lm-sensors@lm-sensors.org
4945 W:      http://www.lm-sensors.org/
4946 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/
4947 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
4948 S:      Maintained
4949 F:      Documentation/hwmon/
4950 F:      drivers/hwmon/
4951 F:      include/linux/hwmon*.h
4952
4953 HARDWARE RANDOM NUMBER GENERATOR CORE
4954 M:      Matt Mackall <mpm@selenic.com>
4955 M:      Herbert Xu <herbert@gondor.apana.org.au>
4956 L:      linux-crypto@vger.kernel.org
4957 S:      Odd fixes
4958 F:      Documentation/hw_random.txt
4959 F:      drivers/char/hw_random/
4960 F:      include/linux/hw_random.h
4961
4962 HARDWARE SPINLOCK CORE
4963 M:      Ohad Ben-Cohen <ohad@wizery.com>
4964 S:      Maintained
4965 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/hwspinlock.git
4966 F:      Documentation/hwspinlock.txt
4967 F:      drivers/hwspinlock/hwspinlock_*
4968 F:      include/linux/hwspinlock.h
4969
4970 HARMONY SOUND DRIVER
4971 L:      linux-parisc@vger.kernel.org
4972 S:      Maintained
4973 F:      sound/parisc/harmony.*
4974
4975 HD29L2 MEDIA DRIVER
4976 M:      Antti Palosaari <crope@iki.fi>
4977 L:      linux-media@vger.kernel.org
4978 W:      https://linuxtv.org
4979 W:      http://palosaari.fi/linux/
4980 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4981 T:      git git://linuxtv.org/anttip/media_tree.git
4982 S:      Maintained
4983 F:      drivers/media/dvb-frontends/hd29l2*
4984
4985 HEWLETT-PACKARD SMART2 RAID DRIVER
4986 L:      iss_storagedev@hp.com
4987 S:      Orphan
4988 F:      Documentation/blockdev/cpqarray.txt
4989 F:      drivers/block/cpqarray.*
4990
4991 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
4992 M:      Don Brace <don.brace@pmcs.com>
4993 L:      iss_storagedev@hp.com
4994 L:      storagedev@pmcs.com
4995 L:      linux-scsi@vger.kernel.org
4996 S:      Supported
4997 F:      Documentation/scsi/hpsa.txt
4998 F:      drivers/scsi/hpsa*.[ch]
4999 F:      include/linux/cciss*.h
5000 F:      include/uapi/linux/cciss*.h
5001
5002 HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
5003 M:      Don Brace <don.brace@pmcs.com>
5004 L:      iss_storagedev@hp.com
5005 L:      storagedev@pmcs.com
5006 L:      linux-scsi@vger.kernel.org
5007 S:      Supported
5008 F:      Documentation/blockdev/cciss.txt
5009 F:      drivers/block/cciss*
5010 F:      include/linux/cciss_ioctl.h
5011 F:      include/uapi/linux/cciss_ioctl.h
5012
5013 HFS FILESYSTEM
5014 L:      linux-fsdevel@vger.kernel.org
5015 S:      Orphan
5016 F:      Documentation/filesystems/hfs.txt
5017 F:      fs/hfs/
5018
5019 HFSPLUS FILESYSTEM
5020 L:      linux-fsdevel@vger.kernel.org
5021 S:      Orphan
5022 F:      Documentation/filesystems/hfsplus.txt
5023 F:      fs/hfsplus/
5024
5025 HGA FRAMEBUFFER DRIVER
5026 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
5027 L:      linux-nvidia@lists.surfsouth.com
5028 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
5029 S:      Maintained
5030 F:      drivers/video/fbdev/hgafb.c
5031
5032 HIBERNATION (aka Software Suspend, aka swsusp)
5033 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
5034 M:      Pavel Machek <pavel@ucw.cz>
5035 L:      linux-pm@vger.kernel.org
5036 S:      Supported
5037 F:      arch/x86/power/
5038 F:      drivers/base/power/
5039 F:      kernel/power/
5040 F:      include/linux/suspend.h
5041 F:      include/linux/freezer.h
5042 F:      include/linux/pm.h
5043 F:      arch/*/include/asm/suspend*.h
5044
5045 HID CORE LAYER
5046 M:      Jiri Kosina <jikos@kernel.org>
5047 R:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
5048 L:      linux-input@vger.kernel.org
5049 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
5050 S:      Maintained
5051 F:      drivers/hid/
5052 F:      include/linux/hid*
5053 F:      include/uapi/linux/hid*
5054
5055 HID SENSOR HUB DRIVERS
5056 M:      Jiri Kosina <jikos@kernel.org>
5057 M:      Jonathan Cameron <jic23@kernel.org>
5058 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
5059 L:      linux-input@vger.kernel.org
5060 L:      linux-iio@vger.kernel.org
5061 S:      Maintained
5062 F:      Documentation/hid/hid-sensor*
5063 F:      drivers/hid/hid-sensor-*
5064 F:      drivers/iio/*/hid-*
5065 F:      include/linux/hid-sensor-*
5066
5067 HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
5068 M:      Thomas Gleixner <tglx@linutronix.de>
5069 L:      linux-kernel@vger.kernel.org
5070 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
5071 S:      Maintained
5072 F:      Documentation/timers/
5073 F:      kernel/time/hrtimer.c
5074 F:      kernel/time/clockevents.c
5075 F:      kernel/time/tick*.*
5076 F:      kernel/time/timer_*.c
5077 F:      include/linux/clockchips.h
5078 F:      include/linux/hrtimer.h
5079
5080 HIGH-SPEED SCC DRIVER FOR AX.25
5081 L:      linux-hams@vger.kernel.org
5082 S:      Orphan
5083 F:      drivers/net/hamradio/dmascc.c
5084 F:      drivers/net/hamradio/scc.c
5085
5086 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
5087 M:      HighPoint Linux Team <linux@highpoint-tech.com>
5088 W:      http://www.highpoint-tech.com
5089 S:      Supported
5090 F:      Documentation/scsi/hptiop.txt
5091 F:      drivers/scsi/hptiop.c
5092
5093 HIPPI
5094 M:      Jes Sorensen <jes@trained-monkey.org>
5095 L:      linux-hippi@sunsite.dk
5096 S:      Maintained
5097 F:      include/linux/hippidevice.h
5098 F:      include/uapi/linux/if_hippi.h
5099 F:      net/802/hippi.c
5100 F:      drivers/net/hippi/
5101
5102 HISILICON SAS Controller
5103 M:      John Garry <john.garry@huawei.com>
5104 W:      http://www.hisilicon.com
5105 S:      Supported
5106 F:      drivers/scsi/hisi_sas/
5107 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
5108
5109 HOST AP DRIVER
5110 M:      Jouni Malinen <j@w1.fi>
5111 L:      hostap@shmoo.com (subscribers-only)
5112 L:      linux-wireless@vger.kernel.org
5113 W:      http://hostap.epitest.fi/
5114 S:      Maintained
5115 F:      drivers/net/wireless/intersil/hostap/
5116
5117 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
5118 L:      platform-driver-x86@vger.kernel.org
5119 S:      Orphan
5120 F:      drivers/platform/x86/tc1100-wmi.c
5121
5122 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
5123 M:      Jaroslav Kysela <perex@perex.cz>
5124 S:      Maintained
5125 F:      drivers/net/ethernet/hp/hp100.*
5126
5127 HPET:   High Precision Event Timers driver
5128 M:      Clemens Ladisch <clemens@ladisch.de>
5129 S:      Maintained
5130 F:      Documentation/timers/hpet.txt
5131 F:      drivers/char/hpet.c
5132 F:      include/linux/hpet.h
5133 F:      include/uapi/linux/hpet.h
5134
5135 HPET:   x86
5136 S:      Orphan
5137 F:      arch/x86/kernel/hpet.c
5138 F:      arch/x86/include/asm/hpet.h
5139
5140 HPFS FILESYSTEM
5141 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
5142 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
5143 S:      Maintained
5144 F:      fs/hpfs/
5145
5146 HSI SUBSYSTEM
5147 M:      Sebastian Reichel <sre@kernel.org>
5148 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
5149 S:      Maintained
5150 F:      Documentation/ABI/testing/sysfs-bus-hsi
5151 F:      Documentation/hsi.txt
5152 F:      drivers/hsi/
5153 F:      include/linux/hsi/
5154 F:      include/uapi/linux/hsi/
5155
5156 HSO 3G MODEM DRIVER
5157 M:      Jan Dumon <j.dumon@option.com>
5158 W:      http://www.pharscape.org
5159 S:      Maintained
5160 F:      drivers/net/usb/hso.c
5161
5162 HSR NETWORK PROTOCOL
5163 M:      Arvid Brodin <arvid.brodin@alten.se>
5164 L:      netdev@vger.kernel.org
5165 S:      Maintained
5166 F:      net/hsr/
5167
5168 HTCPEN TOUCHSCREEN DRIVER
5169 M:      Pau Oliva Fora <pof@eslack.org>
5170 L:      linux-input@vger.kernel.org
5171 S:      Maintained
5172 F:      drivers/input/touchscreen/htcpen.c
5173
5174 HUGETLB FILESYSTEM
5175 M:      Nadia Yvette Chambers <nyc@holomorphy.com>
5176 S:      Maintained
5177 F:      fs/hugetlbfs/
5178
5179 Hyper-V CORE AND DRIVERS
5180 M:      "K. Y. Srinivasan" <kys@microsoft.com>
5181 M:      Haiyang Zhang <haiyangz@microsoft.com>
5182 L:      devel@linuxdriverproject.org
5183 S:      Maintained
5184 F:      arch/x86/include/asm/mshyperv.h
5185 F:      arch/x86/include/uapi/asm/hyperv.h
5186 F:      arch/x86/kernel/cpu/mshyperv.c
5187 F:      drivers/hid/hid-hyperv.c
5188 F:      drivers/hv/
5189 F:      drivers/input/serio/hyperv-keyboard.c
5190 F:      drivers/net/hyperv/
5191 F:      drivers/scsi/storvsc_drv.c
5192 F:      drivers/video/fbdev/hyperv_fb.c
5193 F:      include/linux/hyperv.h
5194 F:      tools/hv/
5195 F:      Documentation/ABI/stable/sysfs-bus-vmbus
5196
5197 I2C OVER PARALLEL PORT
5198 M:      Jean Delvare <jdelvare@suse.com>
5199 L:      linux-i2c@vger.kernel.org
5200 S:      Maintained
5201 F:      Documentation/i2c/busses/i2c-parport
5202 F:      Documentation/i2c/busses/i2c-parport-light
5203 F:      drivers/i2c/busses/i2c-parport.c
5204 F:      drivers/i2c/busses/i2c-parport-light.c
5205
5206 I2C/SMBUS CONTROLLER DRIVERS FOR PC
5207 M:      Jean Delvare <jdelvare@suse.com>
5208 L:      linux-i2c@vger.kernel.org
5209 S:      Maintained
5210 F:      Documentation/i2c/busses/i2c-ali1535
5211 F:      Documentation/i2c/busses/i2c-ali1563
5212 F:      Documentation/i2c/busses/i2c-ali15x3
5213 F:      Documentation/i2c/busses/i2c-amd756
5214 F:      Documentation/i2c/busses/i2c-amd8111
5215 F:      Documentation/i2c/busses/i2c-i801
5216 F:      Documentation/i2c/busses/i2c-nforce2
5217 F:      Documentation/i2c/busses/i2c-piix4
5218 F:      Documentation/i2c/busses/i2c-sis5595
5219 F:      Documentation/i2c/busses/i2c-sis630
5220 F:      Documentation/i2c/busses/i2c-sis96x
5221 F:      Documentation/i2c/busses/i2c-via
5222 F:      Documentation/i2c/busses/i2c-viapro
5223 F:      drivers/i2c/busses/i2c-ali1535.c
5224 F:      drivers/i2c/busses/i2c-ali1563.c
5225 F:      drivers/i2c/busses/i2c-ali15x3.c
5226 F:      drivers/i2c/busses/i2c-amd756.c
5227 F:      drivers/i2c/busses/i2c-amd756-s4882.c
5228 F:      drivers/i2c/busses/i2c-amd8111.c
5229 F:      drivers/i2c/busses/i2c-i801.c
5230 F:      drivers/i2c/busses/i2c-isch.c
5231 F:      drivers/i2c/busses/i2c-nforce2.c
5232 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
5233 F:      drivers/i2c/busses/i2c-piix4.c
5234 F:      drivers/i2c/busses/i2c-sis5595.c
5235 F:      drivers/i2c/busses/i2c-sis630.c
5236 F:      drivers/i2c/busses/i2c-sis96x.c
5237 F:      drivers/i2c/busses/i2c-via.c
5238 F:      drivers/i2c/busses/i2c-viapro.c
5239
5240 I2C/SMBUS ISMT DRIVER
5241 M:      Seth Heasley <seth.heasley@intel.com>
5242 M:      Neil Horman <nhorman@tuxdriver.com>
5243 L:      linux-i2c@vger.kernel.org
5244 F:      drivers/i2c/busses/i2c-ismt.c
5245 F:      Documentation/i2c/busses/i2c-ismt
5246
5247 I2C/SMBUS STUB DRIVER
5248 M:      Jean Delvare <jdelvare@suse.com>
5249 L:      linux-i2c@vger.kernel.org
5250 S:      Maintained
5251 F:      drivers/i2c/i2c-stub.c
5252
5253 I2C SUBSYSTEM
5254 M:      Wolfram Sang <wsa@the-dreams.de>
5255 L:      linux-i2c@vger.kernel.org
5256 W:      https://i2c.wiki.kernel.org/
5257 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
5258 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
5259 S:      Maintained
5260 F:      Documentation/devicetree/bindings/i2c/
5261 F:      Documentation/i2c/
5262 F:      drivers/i2c/
5263 F:      drivers/i2c/*/
5264 F:      include/linux/i2c.h
5265 F:      include/linux/i2c-*.h
5266 F:      include/uapi/linux/i2c.h
5267 F:      include/uapi/linux/i2c-*.h
5268
5269 I2C ACPI SUPPORT
5270 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
5271 L:      linux-i2c@vger.kernel.org
5272 L:      linux-acpi@vger.kernel.org
5273 S:      Maintained
5274
5275 I2C-TAOS-EVM DRIVER
5276 M:      Jean Delvare <jdelvare@suse.com>
5277 L:      linux-i2c@vger.kernel.org
5278 S:      Maintained
5279 F:      Documentation/i2c/busses/i2c-taos-evm
5280 F:      drivers/i2c/busses/i2c-taos-evm.c
5281
5282 I2C-TINY-USB DRIVER
5283 M:      Till Harbaum <till@harbaum.org>
5284 L:      linux-i2c@vger.kernel.org
5285 W:      http://www.harbaum.org/till/i2c_tiny_usb
5286 S:      Maintained
5287 F:      drivers/i2c/busses/i2c-tiny-usb.c
5288
5289 i386 BOOT CODE
5290 M:      "H. Peter Anvin" <hpa@zytor.com>
5291 S:      Maintained
5292 F:      arch/x86/boot/
5293
5294 i386 SETUP CODE / CPU ERRATA WORKAROUNDS
5295 M:      "H. Peter Anvin" <hpa@zytor.com>
5296 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
5297 S:      Maintained
5298
5299 IA64 (Itanium) PLATFORM
5300 M:      Tony Luck <tony.luck@intel.com>
5301 M:      Fenghua Yu <fenghua.yu@intel.com>
5302 L:      linux-ia64@vger.kernel.org
5303 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
5304 S:      Maintained
5305 F:      arch/ia64/
5306
5307 IBM Power VMX Cryptographic instructions
5308 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5309 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5310 L:      linux-crypto@vger.kernel.org
5311 S:      Supported
5312 F:      drivers/crypto/vmx/Makefile
5313 F:      drivers/crypto/vmx/Kconfig
5314 F:      drivers/crypto/vmx/vmx.c
5315 F:      drivers/crypto/vmx/aes*
5316 F:      drivers/crypto/vmx/ghash*
5317 F:      drivers/crypto/vmx/ppc-xlate.pl
5318
5319 IBM Power in-Nest Crypto Acceleration
5320 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5321 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5322 L:      linux-crypto@vger.kernel.org
5323 S:      Supported
5324 F:      drivers/crypto/nx/Makefile
5325 F:      drivers/crypto/nx/Kconfig
5326 F:      drivers/crypto/nx/nx-aes*
5327 F:      drivers/crypto/nx/nx-sha*
5328 F:      drivers/crypto/nx/nx.*
5329 F:      drivers/crypto/nx/nx_csbcpb.h
5330 F:      drivers/crypto/nx/nx_debugfs.h
5331
5332 IBM Power 842 compression accelerator
5333 M:      Dan Streetman <ddstreet@ieee.org>
5334 S:      Supported
5335 F:      drivers/crypto/nx/Makefile
5336 F:      drivers/crypto/nx/Kconfig
5337 F:      drivers/crypto/nx/nx-842*
5338 F:      include/linux/sw842.h
5339 F:      crypto/842.c
5340 F:      lib/842/
5341
5342 IBM Power Linux RAID adapter
5343 M:      Brian King <brking@us.ibm.com>
5344 S:      Supported
5345 F:      drivers/scsi/ipr.*
5346
5347 IBM Power Virtual Ethernet Device Driver
5348 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
5349 L:      netdev@vger.kernel.org
5350 S:      Supported
5351 F:      drivers/net/ethernet/ibm/ibmveth.*
5352
5353 IBM Power SRIOV Virtual NIC Device Driver
5354 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
5355 M:      John Allen <jallen@linux.vnet.ibm.com>
5356 L:      netdev@vger.kernel.org
5357 S:      Supported
5358 F:      drivers/net/ethernet/ibm/ibmvnic.*
5359
5360 IBM Power Virtual SCSI Device Drivers
5361 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5362 L:      linux-scsi@vger.kernel.org
5363 S:      Supported
5364 F:      drivers/scsi/ibmvscsi/ibmvscsi*
5365 F:      drivers/scsi/ibmvscsi/viosrp.h
5366
5367 IBM Power Virtual FC Device Drivers
5368 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5369 L:      linux-scsi@vger.kernel.org
5370 S:      Supported
5371 F:      drivers/scsi/ibmvscsi/ibmvfc*
5372
5373 IBM ServeRAID RAID DRIVER
5374 S:      Orphan
5375 F:      drivers/scsi/ips.*
5376
5377 ICH LPC AND GPIO DRIVER
5378 M:      Peter Tyser <ptyser@xes-inc.com>
5379 S:      Maintained
5380 F:      drivers/mfd/lpc_ich.c
5381 F:      drivers/gpio/gpio-ich.c
5382
5383 IDE SUBSYSTEM
5384 M:      "David S. Miller" <davem@davemloft.net>
5385 L:      linux-ide@vger.kernel.org
5386 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
5387 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
5388 S:      Maintained
5389 F:      Documentation/ide/
5390 F:      drivers/ide/
5391 F:      include/linux/ide.h
5392
5393 IDEAPAD LAPTOP EXTRAS DRIVER
5394 M:      Ike Panhc <ike.pan@canonical.com>
5395 L:      platform-driver-x86@vger.kernel.org
5396 W:      http://launchpad.net/ideapad-laptop
5397 S:      Maintained
5398 F:      drivers/platform/x86/ideapad-laptop.c
5399
5400 IDEAPAD LAPTOP SLIDEBAR DRIVER
5401 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
5402 L:      linux-input@vger.kernel.org
5403 W:      https://github.com/o2genum/ideapad-slidebar
5404 S:      Maintained
5405 F:      drivers/input/misc/ideapad_slidebar.c
5406
5407 IDE/ATAPI DRIVERS
5408 M:      Borislav Petkov <bp@alien8.de>
5409 L:      linux-ide@vger.kernel.org
5410 S:      Maintained
5411 F:      Documentation/cdrom/ide-cd
5412 F:      drivers/ide/ide-cd*
5413
5414 IDLE-I7300
5415 M:      Andy Henroid <andrew.d.henroid@intel.com>
5416 L:      linux-pm@vger.kernel.org
5417 S:      Supported
5418 F:      drivers/idle/i7300_idle.c
5419
5420 IEEE 802.15.4 SUBSYSTEM
5421 M:      Alexander Aring <alex.aring@gmail.com>
5422 L:      linux-wpan@vger.kernel.org
5423 W:      https://github.com/linux-wpan
5424 T:      git git://github.com/linux-wpan/linux-wpan-next.git
5425 S:      Maintained
5426 F:      net/ieee802154/
5427 F:      net/mac802154/
5428 F:      drivers/net/ieee802154/
5429 F:      include/linux/nl802154.h
5430 F:      include/linux/ieee802154.h
5431 F:      include/net/nl802154.h
5432 F:      include/net/mac802154.h
5433 F:      include/net/af_ieee802154.h
5434 F:      include/net/cfg802154.h
5435 F:      include/net/ieee802154_netdev.h
5436 F:      Documentation/networking/ieee802154.txt
5437
5438 IGORPLUG-USB IR RECEIVER
5439 M:      Sean Young <sean@mess.org>
5440 L:      linux-media@vger.kernel.org
5441 S:      Maintained
5442 F:      drivers/media/rc/igorplugusb.c
5443
5444 IGUANAWORKS USB IR TRANSCEIVER
5445 M:      Sean Young <sean@mess.org>
5446 L:      linux-media@vger.kernel.org
5447 S:      Maintained
5448 F:      drivers/media/rc/iguanair.c
5449
5450 IIO SUBSYSTEM AND DRIVERS
5451 M:      Jonathan Cameron <jic23@kernel.org>
5452 R:      Hartmut Knaack <knaack.h@gmx.de>
5453 R:      Lars-Peter Clausen <lars@metafoo.de>
5454 R:      Peter Meerwald <pmeerw@pmeerw.net>
5455 L:      linux-iio@vger.kernel.org
5456 S:      Maintained
5457 F:      drivers/iio/
5458 F:      drivers/staging/iio/
5459 F:      include/linux/iio/
5460 F:      tools/iio/
5461
5462 IKANOS/ADI EAGLE ADSL USB DRIVER
5463 M:      Matthieu Castet <castet.matthieu@free.fr>
5464 M:      Stanislaw Gruszka <stf_xl@wp.pl>
5465 S:      Maintained
5466 F:      drivers/usb/atm/ueagle-atm.c
5467
5468 INA209 HARDWARE MONITOR DRIVER
5469 M:      Guenter Roeck <linux@roeck-us.net>
5470 L:      lm-sensors@lm-sensors.org
5471 S:      Maintained
5472 F:      Documentation/hwmon/ina209
5473 F:      Documentation/devicetree/bindings/i2c/ina209.txt
5474 F:      drivers/hwmon/ina209.c
5475
5476 INA2XX HARDWARE MONITOR DRIVER
5477 M:      Guenter Roeck <linux@roeck-us.net>
5478 L:      lm-sensors@lm-sensors.org
5479 S:      Maintained
5480 F:      Documentation/hwmon/ina2xx
5481 F:      drivers/hwmon/ina2xx.c
5482 F:      include/linux/platform_data/ina2xx.h
5483
5484 INDUSTRY PACK SUBSYSTEM (IPACK)
5485 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
5486 M:      Jens Taprogge <jens.taprogge@taprogge.org>
5487 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5488 L:      industrypack-devel@lists.sourceforge.net
5489 W:      http://industrypack.sourceforge.net
5490 S:      Maintained
5491 F:      drivers/ipack/
5492
5493 INGENIC JZ4780 DMA Driver
5494 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
5495 S:      Maintained
5496 F:      drivers/dma/dma-jz4780.c
5497
5498 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
5499 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
5500 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
5501 L:      linux-ima-devel@lists.sourceforge.net
5502 L:      linux-ima-user@lists.sourceforge.net
5503 L:      linux-security-module@vger.kernel.org
5504 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
5505 S:      Supported
5506 F:      security/integrity/ima/
5507
5508 IMGTEC IR DECODER DRIVER
5509 M:      James Hogan <james.hogan@imgtec.com>
5510 S:      Maintained
5511 F:      drivers/media/rc/img-ir/
5512
5513 IMS TWINTURBO FRAMEBUFFER DRIVER
5514 L:      linux-fbdev@vger.kernel.org
5515 S:      Orphan
5516 F:      drivers/video/fbdev/imsttfb.c
5517
5518 INFINIBAND SUBSYSTEM
5519 M:      Doug Ledford <dledford@redhat.com>
5520 M:      Sean Hefty <sean.hefty@intel.com>
5521 M:      Hal Rosenstock <hal.rosenstock@gmail.com>
5522 L:      linux-rdma@vger.kernel.org
5523 W:      http://www.openfabrics.org/
5524 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5525 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git
5526 S:      Supported
5527 F:      Documentation/infiniband/
5528 F:      drivers/infiniband/
5529 F:      drivers/staging/rdma/
5530 F:      include/uapi/linux/if_infiniband.h
5531 F:      include/uapi/rdma/
5532 F:      include/rdma/
5533
5534 INOTIFY
5535 M:      John McCutchan <john@johnmccutchan.com>
5536 M:      Robert Love <rlove@rlove.org>
5537 M:      Eric Paris <eparis@parisplace.org>
5538 S:      Maintained
5539 F:      Documentation/filesystems/inotify.txt
5540 F:      fs/notify/inotify/
5541 F:      include/linux/inotify.h
5542 F:      include/uapi/linux/inotify.h
5543
5544 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
5545 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
5546 L:      linux-input@vger.kernel.org
5547 Q:      http://patchwork.kernel.org/project/linux-input/list/
5548 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
5549 S:      Maintained
5550 F:      drivers/input/
5551 F:      include/linux/input.h
5552 F:      include/uapi/linux/input.h
5553 F:      include/linux/input/
5554
5555 INPUT MULTITOUCH (MT) PROTOCOL
5556 M:      Henrik Rydberg <rydberg@bitmath.org>
5557 L:      linux-input@vger.kernel.org
5558 S:      Odd fixes
5559 F:      Documentation/input/multi-touch-protocol.txt
5560 F:      drivers/input/input-mt.c
5561 K:      \b(ABS|SYN)_MT_
5562
5563 INTEL ASoC BDW/HSW DRIVERS
5564 M:      Jie Yang <yang.jie@linux.intel.com>
5565 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5566 S:      Supported
5567 F:      sound/soc/intel/common/sst-dsp*
5568 F:      sound/soc/intel/common/sst-firmware.c
5569 F:      sound/soc/intel/boards/broadwell.c
5570 F:      sound/soc/intel/haswell/
5571
5572 INTEL C600 SERIES SAS CONTROLLER DRIVER
5573 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
5574 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
5575 L:      linux-scsi@vger.kernel.org
5576 T:      git git://git.code.sf.net/p/intel-sas/isci
5577 S:      Supported
5578 F:      drivers/scsi/isci/
5579
5580 INTEL HID EVENT DRIVER
5581 M:      Alex Hung <alex.hung@canonical.com>
5582 L:      platform-driver-x86@vger.kernel.org
5583 S:      Maintained
5584 F:      drivers/platform/x86/intel-hid.c
5585
5586 INTEL IDLE DRIVER
5587 M:      Len Brown <lenb@kernel.org>
5588 L:      linux-pm@vger.kernel.org
5589 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
5590 S:      Supported
5591 F:      drivers/idle/intel_idle.c
5592
5593 INTEL PSTATE DRIVER
5594 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
5595 M:      Len Brown <lenb@kernel.org>
5596 L:      linux-pm@vger.kernel.org
5597 S:      Supported
5598 F:      drivers/cpufreq/intel_pstate.c
5599
5600 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
5601 M:      Maik Broemme <mbroemme@plusserver.de>
5602 L:      linux-fbdev@vger.kernel.org
5603 S:      Maintained
5604 F:      Documentation/fb/intelfb.txt
5605 F:      drivers/video/fbdev/intelfb/
5606
5607 INTEL 810/815 FRAMEBUFFER DRIVER
5608 M:      Antonino Daplas <adaplas@gmail.com>
5609 L:      linux-fbdev@vger.kernel.org
5610 S:      Maintained
5611 F:      drivers/video/fbdev/i810/
5612
5613 INTEL MENLOW THERMAL DRIVER
5614 M:      Sujith Thomas <sujith.thomas@intel.com>
5615 L:      platform-driver-x86@vger.kernel.org
5616 W:      https://01.org/linux-acpi
5617 S:      Supported
5618 F:      drivers/platform/x86/intel_menlow.c
5619
5620 INTEL I/OAT DMA DRIVER
5621 M:      Dave Jiang <dave.jiang@intel.com>
5622 R:      Dan Williams <dan.j.williams@intel.com>
5623 L:      dmaengine@vger.kernel.org
5624 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5625 S:      Supported
5626 F:      drivers/dma/ioat*
5627
5628 INTEL IOMMU (VT-d)
5629 M:      David Woodhouse <dwmw2@infradead.org>
5630 L:      iommu@lists.linux-foundation.org
5631 T:      git git://git.infradead.org/iommu-2.6.git
5632 S:      Supported
5633 F:      drivers/iommu/intel-iommu.c
5634 F:      include/linux/intel-iommu.h
5635
5636 INTEL IOP-ADMA DMA DRIVER
5637 R:      Dan Williams <dan.j.williams@intel.com>
5638 S:      Odd fixes
5639 F:      drivers/dma/iop-adma.c
5640
5641 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
5642 M:      Krzysztof Halasa <khalasa@piap.pl>
5643 S:      Maintained
5644 F:      arch/arm/mach-ixp4xx/include/mach/qmgr.h
5645 F:      arch/arm/mach-ixp4xx/include/mach/npe.h
5646 F:      arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
5647 F:      arch/arm/mach-ixp4xx/ixp4xx_npe.c
5648 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
5649 F:      drivers/net/wan/ixp4xx_hss.c
5650
5651 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
5652 M:      Deepak Saxena <dsaxena@plexity.net>
5653 S:      Maintained
5654 F:      drivers/char/hw_random/ixp4xx-rng.c
5655
5656 INTEL ETHERNET DRIVERS
5657 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
5658 R:      Jesse Brandeburg <jesse.brandeburg@intel.com>
5659 R:      Shannon Nelson <shannon.nelson@intel.com>
5660 R:      Carolyn Wyborny <carolyn.wyborny@intel.com>
5661 R:      Don Skidmore <donald.c.skidmore@intel.com>
5662 R:      Bruce Allan <bruce.w.allan@intel.com>
5663 R:      John Ronciak <john.ronciak@intel.com>
5664 R:      Mitch Williams <mitch.a.williams@intel.com>
5665 L:      intel-wired-lan@lists.osuosl.org
5666 W:      http://www.intel.com/support/feedback.htm
5667 W:      http://e1000.sourceforge.net/
5668 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
5669 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
5670 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
5671 S:      Supported
5672 F:      Documentation/networking/e100.txt
5673 F:      Documentation/networking/e1000.txt
5674 F:      Documentation/networking/e1000e.txt
5675 F:      Documentation/networking/igb.txt
5676 F:      Documentation/networking/igbvf.txt
5677 F:      Documentation/networking/ixgb.txt
5678 F:      Documentation/networking/ixgbe.txt
5679 F:      Documentation/networking/ixgbevf.txt
5680 F:      Documentation/networking/i40e.txt
5681 F:      Documentation/networking/i40evf.txt
5682 F:      drivers/net/ethernet/intel/
5683 F:      drivers/net/ethernet/intel/*/
5684
5685 INTEL-MID GPIO DRIVER
5686 M:      David Cohen <david.a.cohen@linux.intel.com>
5687 L:      linux-gpio@vger.kernel.org
5688 S:      Maintained
5689 F:      drivers/gpio/gpio-intel-mid.c
5690
5691 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
5692 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
5693 L:      linux-wireless@vger.kernel.org
5694 S:      Maintained
5695 F:      Documentation/networking/README.ipw2100
5696 F:      Documentation/networking/README.ipw2200
5697 F:      drivers/net/wireless/intel/ipw2x00/
5698
5699 INTEL(R) TRACE HUB
5700 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
5701 S:      Supported
5702 F:      Documentation/trace/intel_th.txt
5703 F:      drivers/hwtracing/intel_th/
5704
5705 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
5706 M:      Ning Sun <ning.sun@intel.com>
5707 L:      tboot-devel@lists.sourceforge.net
5708 W:      http://tboot.sourceforge.net
5709 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
5710 S:      Supported
5711 F:      Documentation/intel_txt.txt
5712 F:      include/linux/tboot.h
5713 F:      arch/x86/kernel/tboot.c
5714
5715 INTEL WIRELESS WIMAX CONNECTION 2400
5716 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
5717 M:      linux-wimax@intel.com
5718 L:      wimax@linuxwimax.org (subscribers-only)
5719 S:      Supported
5720 W:      http://linuxwimax.org
5721 F:      Documentation/wimax/README.i2400m
5722 F:      drivers/net/wimax/i2400m/
5723 F:      include/uapi/linux/wimax/i2400m.h
5724
5725 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
5726 M:      Stanislaw Gruszka <sgruszka@redhat.com>
5727 L:      linux-wireless@vger.kernel.org
5728 S:      Supported
5729 F:      drivers/net/wireless/intel/iwlegacy/
5730
5731 INTEL WIRELESS WIFI LINK (iwlwifi)
5732 M:      Johannes Berg <johannes.berg@intel.com>
5733 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
5734 M:      Intel Linux Wireless <linuxwifi@intel.com>
5735 L:      linux-wireless@vger.kernel.org
5736 W:      http://intellinuxwireless.org
5737 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
5738 S:      Supported
5739 F:      drivers/net/wireless/intel/iwlwifi/
5740
5741 INTEL MANAGEMENT ENGINE (mei)
5742 M:      Tomas Winkler <tomas.winkler@intel.com>
5743 L:      linux-kernel@vger.kernel.org
5744 S:      Supported
5745 F:      include/uapi/linux/mei.h
5746 F:      include/linux/mei_cl_bus.h
5747 F:      drivers/misc/mei/*
5748 F:      Documentation/misc-devices/mei/*
5749
5750 INTEL MIC DRIVERS (mic)
5751 M:      Sudeep Dutt <sudeep.dutt@intel.com>
5752 M:      Ashutosh Dixit <ashutosh.dixit@intel.com>
5753 S:      Supported
5754 W:      https://github.com/sudeepdutt/mic
5755 W:      http://software.intel.com/en-us/mic-developer
5756 F:      include/linux/mic_bus.h
5757 F:      include/linux/scif.h
5758 F:      include/uapi/linux/mic_common.h
5759 F:      include/uapi/linux/mic_ioctl.h
5760 F:      include/uapi/linux/scif_ioctl.h
5761 F:      drivers/misc/mic/
5762 F:      drivers/dma/mic_x100_dma.c
5763 F:      drivers/dma/mic_x100_dma.h
5764 F:      Documentation/mic/
5765
5766 INTEL PMC/P-Unit IPC DRIVER
5767 M:      Zha Qipeng<qipeng.zha@intel.com>
5768 L:      platform-driver-x86@vger.kernel.org
5769 S:      Maintained
5770 F:      drivers/platform/x86/intel_pmc_ipc.c
5771 F:      drivers/platform/x86/intel_punit_ipc.c
5772 F:      arch/x86/include/asm/intel_pmc_ipc.h
5773 F:      arch/x86/include/asm/intel_punit_ipc.h
5774
5775 INTEL TELEMETRY DRIVER
5776 M:      Souvik Kumar Chakravarty <souvik.k.chakravarty@intel.com>
5777 L:      platform-driver-x86@vger.kernel.org
5778 S:      Maintained
5779 F:      arch/x86/include/asm/intel_telemetry.h
5780 F:      drivers/platform/x86/intel_telemetry*
5781
5782 IOC3 ETHERNET DRIVER
5783 M:      Ralf Baechle <ralf@linux-mips.org>
5784 L:      linux-mips@linux-mips.org
5785 S:      Maintained
5786 F:      drivers/net/ethernet/sgi/ioc3-eth.c
5787
5788 IOC3 SERIAL DRIVER
5789 M:      Pat Gefre <pfg@sgi.com>
5790 L:      linux-serial@vger.kernel.org
5791 S:      Maintained
5792 F:      drivers/tty/serial/ioc3_serial.c
5793
5794 IOMMU DRIVERS
5795 M:      Joerg Roedel <joro@8bytes.org>
5796 L:      iommu@lists.linux-foundation.org
5797 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
5798 S:      Maintained
5799 F:      drivers/iommu/
5800
5801 IP MASQUERADING
5802 M:      Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
5803 S:      Maintained
5804 F:      net/ipv4/netfilter/ipt_MASQUERADE.c
5805
5806 IPMI SUBSYSTEM
5807 M:      Corey Minyard <minyard@acm.org>
5808 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
5809 W:      http://openipmi.sourceforge.net/
5810 S:      Supported
5811 F:      Documentation/IPMI.txt
5812 F:      drivers/char/ipmi/
5813 F:      include/linux/ipmi*
5814 F:      include/uapi/linux/ipmi*
5815
5816 QCOM AUDIO (ASoC) DRIVERS
5817 M:      Patrick Lai <plai@codeaurora.org>
5818 M:      Banajit Goswami <bgoswami@codeaurora.org>
5819 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5820 S:      Supported
5821 F:      sound/soc/qcom/
5822
5823 IPS SCSI RAID DRIVER
5824 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
5825 L:      linux-scsi@vger.kernel.org
5826 W:      http://www.adaptec.com/
5827 S:      Maintained
5828 F:      drivers/scsi/ips*
5829
5830 IPVS
5831 M:      Wensong Zhang <wensong@linux-vs.org>
5832 M:      Simon Horman <horms@verge.net.au>
5833 M:      Julian Anastasov <ja@ssi.bg>
5834 L:      netdev@vger.kernel.org
5835 L:      lvs-devel@vger.kernel.org
5836 S:      Maintained
5837 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
5838 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
5839 F:      Documentation/networking/ipvs-sysctl.txt
5840 F:      include/net/ip_vs.h
5841 F:      include/uapi/linux/ip_vs.h
5842 F:      net/netfilter/ipvs/
5843
5844 IPWIRELESS DRIVER
5845 M:      Jiri Kosina <jikos@kernel.org>
5846 M:      David Sterba <dsterba@suse.com>
5847 S:      Odd Fixes
5848 F:      drivers/tty/ipwireless/
5849
5850 IPX NETWORK LAYER
5851 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
5852 L:      netdev@vger.kernel.org
5853 S:      Maintained
5854 F:      include/net/ipx.h
5855 F:      include/uapi/linux/ipx.h
5856 F:      net/ipx/
5857
5858 IRDA SUBSYSTEM
5859 M:      Samuel Ortiz <samuel@sortiz.org>
5860 L:      irda-users@lists.sourceforge.net (subscribers-only)
5861 L:      netdev@vger.kernel.org
5862 W:      http://irda.sourceforge.net/
5863 S:      Maintained
5864 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
5865 F:      Documentation/networking/irda.txt
5866 F:      drivers/net/irda/
5867 F:      include/net/irda/
5868 F:      net/irda/
5869
5870 IRQ SUBSYSTEM
5871 M:      Thomas Gleixner <tglx@linutronix.de>
5872 L:      linux-kernel@vger.kernel.org
5873 S:      Maintained
5874 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5875 F:      kernel/irq/
5876
5877 IRQCHIP DRIVERS
5878 M:      Thomas Gleixner <tglx@linutronix.de>
5879 M:      Jason Cooper <jason@lakedaemon.net>
5880 M:      Marc Zyngier <marc.zyngier@arm.com>
5881 L:      linux-kernel@vger.kernel.org
5882 S:      Maintained
5883 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5884 T:      git git://git.infradead.org/users/jcooper/linux.git irqchip/core
5885 F:      Documentation/devicetree/bindings/interrupt-controller/
5886 F:      drivers/irqchip/
5887
5888 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
5889 M:      Jiang Liu <jiang.liu@linux.intel.com>
5890 M:      Marc Zyngier <marc.zyngier@arm.com>
5891 S:      Maintained
5892 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5893 F:      Documentation/IRQ-domain.txt
5894 F:      include/linux/irqdomain.h
5895 F:      kernel/irq/irqdomain.c
5896 F:      kernel/irq/msi.c
5897
5898 ISAPNP
5899 M:      Jaroslav Kysela <perex@perex.cz>
5900 S:      Maintained
5901 F:      Documentation/isapnp.txt
5902 F:      drivers/pnp/isapnp/
5903 F:      include/linux/isapnp.h
5904
5905 ISA RADIO MODULE
5906 M:      Hans Verkuil <hverkuil@xs4all.nl>
5907 L:      linux-media@vger.kernel.org
5908 T:      git git://linuxtv.org/media_tree.git
5909 W:      https://linuxtv.org
5910 S:      Maintained
5911 F:      drivers/media/radio/radio-isa*
5912
5913 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
5914 M:      Peter Jones <pjones@redhat.com>
5915 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
5916 S:      Maintained
5917 F:      drivers/firmware/iscsi_ibft*
5918
5919 ISCSI
5920 M:      Mike Christie <michaelc@cs.wisc.edu>
5921 L:      open-iscsi@googlegroups.com
5922 W:      www.open-iscsi.org
5923 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
5924 S:      Maintained
5925 F:      drivers/scsi/*iscsi*
5926 F:      include/scsi/*iscsi*
5927
5928 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
5929 M:      Or Gerlitz <ogerlitz@mellanox.com>
5930 M:      Sagi Grimberg <sagig@mellanox.com>
5931 M:      Roi Dayan <roid@mellanox.com>
5932 L:      linux-rdma@vger.kernel.org
5933 S:      Supported
5934 W:      http://www.openfabrics.org
5935 W:      www.open-iscsi.org
5936 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5937 F:      drivers/infiniband/ulp/iser/
5938
5939 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
5940 M:      Sagi Grimberg <sagig@mellanox.com>
5941 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
5942 L:      linux-rdma@vger.kernel.org
5943 L:      target-devel@vger.kernel.org
5944 S:      Supported
5945 W:      http://www.linux-iscsi.org
5946 F:      drivers/infiniband/ulp/isert
5947
5948 ISDN SUBSYSTEM
5949 M:      Karsten Keil <isdn@linux-pingi.de>
5950 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5951 L:      netdev@vger.kernel.org
5952 W:      http://www.isdn4linux.de
5953 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
5954 S:      Maintained
5955 F:      Documentation/isdn/
5956 F:      drivers/isdn/
5957 F:      include/linux/isdn.h
5958 F:      include/linux/isdn/
5959 F:      include/uapi/linux/isdn.h
5960 F:      include/uapi/linux/isdn/
5961
5962 ISDN SUBSYSTEM (Eicon active card driver)
5963 M:      Armin Schindler <mac@melware.de>
5964 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5965 W:      http://www.melware.de
5966 S:      Maintained
5967 F:      drivers/isdn/hardware/eicon/
5968
5969 IT87 HARDWARE MONITORING DRIVER
5970 M:      Jean Delvare <jdelvare@suse.com>
5971 L:      lm-sensors@lm-sensors.org
5972 S:      Maintained
5973 F:      Documentation/hwmon/it87
5974 F:      drivers/hwmon/it87.c
5975
5976 IT913X MEDIA DRIVER
5977 M:      Antti Palosaari <crope@iki.fi>
5978 L:      linux-media@vger.kernel.org
5979 W:      https://linuxtv.org
5980 W:      http://palosaari.fi/linux/
5981 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5982 T:      git git://linuxtv.org/anttip/media_tree.git
5983 S:      Maintained
5984 F:      drivers/media/tuners/it913x*
5985
5986 IVTV VIDEO4LINUX DRIVER
5987 M:      Andy Walls <awalls@md.metrocast.net>
5988 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
5989 L:      linux-media@vger.kernel.org
5990 T:      git git://linuxtv.org/media_tree.git
5991 W:      http://www.ivtvdriver.org
5992 S:      Maintained
5993 F:      Documentation/video4linux/*.ivtv
5994 F:      drivers/media/pci/ivtv/
5995 F:      include/uapi/linux/ivtv*
5996
5997 IX2505V MEDIA DRIVER
5998 M:      Malcolm Priestley <tvboxspy@gmail.com>
5999 L:      linux-media@vger.kernel.org
6000 W:      https://linuxtv.org
6001 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6002 S:      Maintained
6003 F:      drivers/media/dvb-frontends/ix2505v*
6004
6005 JC42.4 TEMPERATURE SENSOR DRIVER
6006 M:      Guenter Roeck <linux@roeck-us.net>
6007 L:      lm-sensors@lm-sensors.org
6008 S:      Maintained
6009 F:      drivers/hwmon/jc42.c
6010 F:      Documentation/hwmon/jc42
6011
6012 JFS FILESYSTEM
6013 M:      Dave Kleikamp <shaggy@kernel.org>
6014 L:      jfs-discussion@lists.sourceforge.net
6015 W:      http://jfs.sourceforge.net/
6016 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
6017 S:      Maintained
6018 F:      Documentation/filesystems/jfs.txt
6019 F:      fs/jfs/
6020
6021 JME NETWORK DRIVER
6022 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
6023 L:      netdev@vger.kernel.org
6024 S:      Maintained
6025 F:      drivers/net/ethernet/jme.*
6026
6027 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
6028 M:      David Woodhouse <dwmw2@infradead.org>
6029 L:      linux-mtd@lists.infradead.org
6030 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
6031 S:      Maintained
6032 F:      fs/jffs2/
6033 F:      include/uapi/linux/jffs2.h
6034
6035 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
6036 M:      "Theodore Ts'o" <tytso@mit.edu>
6037 M:      Jan Kara <jack@suse.com>
6038 L:      linux-ext4@vger.kernel.org
6039 S:      Maintained
6040 F:      fs/jbd2/
6041 F:      include/linux/jbd2.h
6042
6043 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
6044 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
6045 L:      linux-media@vger.kernel.org
6046 S:      Maintained
6047 F:      drivers/media/platform/rcar_jpu.c
6048
6049 JSM Neo PCI based serial card
6050 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
6051 L:      linux-serial@vger.kernel.org
6052 S:      Maintained
6053 F:      drivers/tty/serial/jsm/
6054
6055 K10TEMP HARDWARE MONITORING DRIVER
6056 M:      Clemens Ladisch <clemens@ladisch.de>
6057 L:      lm-sensors@lm-sensors.org
6058 S:      Maintained
6059 F:      Documentation/hwmon/k10temp
6060 F:      drivers/hwmon/k10temp.c
6061
6062 K8TEMP HARDWARE MONITORING DRIVER
6063 M:      Rudolf Marek <r.marek@assembler.cz>
6064 L:      lm-sensors@lm-sensors.org
6065 S:      Maintained
6066 F:      Documentation/hwmon/k8temp
6067 F:      drivers/hwmon/k8temp.c
6068
6069 KCONFIG
6070 M:      "Yann E. MORIN" <yann.morin.1998@free.fr>
6071 L:      linux-kbuild@vger.kernel.org
6072 T:      git git://gitorious.org/linux-kconfig/linux-kconfig
6073 S:      Maintained
6074 F:      Documentation/kbuild/kconfig-language.txt
6075 F:      scripts/kconfig/
6076
6077 KDUMP
6078 M:      Vivek Goyal <vgoyal@redhat.com>
6079 M:      Haren Myneni <hbabu@us.ibm.com>
6080 L:      kexec@lists.infradead.org
6081 W:      http://lse.sourceforge.net/kdump/
6082 S:      Maintained
6083 F:      Documentation/kdump/
6084
6085 KEENE FM RADIO TRANSMITTER DRIVER
6086 M:      Hans Verkuil <hverkuil@xs4all.nl>
6087 L:      linux-media@vger.kernel.org
6088 T:      git git://linuxtv.org/media_tree.git
6089 W:      https://linuxtv.org
6090 S:      Maintained
6091 F:      drivers/media/radio/radio-keene*
6092
6093 KERNEL AUTOMOUNTER v4 (AUTOFS4)
6094 M:      Ian Kent <raven@themaw.net>
6095 L:      autofs@vger.kernel.org
6096 S:      Maintained
6097 F:      fs/autofs4/
6098
6099 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
6100 M:      Michal Marek <mmarek@suse.com>
6101 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
6102 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
6103 L:      linux-kbuild@vger.kernel.org
6104 S:      Maintained
6105 F:      Documentation/kbuild/
6106 F:      Makefile
6107 F:      scripts/Makefile.*
6108 F:      scripts/basic/
6109 F:      scripts/mk*
6110 F:      scripts/package/
6111
6112 KERNEL JANITORS
6113 L:      kernel-janitors@vger.kernel.org
6114 W:      http://kernelnewbies.org/KernelJanitors
6115 S:      Odd Fixes
6116
6117 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
6118 M:      "J. Bruce Fields" <bfields@fieldses.org>
6119 M:      Jeff Layton <jlayton@poochiereds.net>
6120 L:      linux-nfs@vger.kernel.org
6121 W:      http://nfs.sourceforge.net/
6122 T:      git git://linux-nfs.org/~bfields/linux.git
6123 S:      Supported
6124 F:      fs/nfsd/
6125 F:      include/uapi/linux/nfsd/
6126 F:      fs/lockd/
6127 F:      fs/nfs_common/
6128 F:      net/sunrpc/
6129 F:      include/linux/lockd/
6130 F:      include/linux/sunrpc/
6131 F:      include/uapi/linux/sunrpc/
6132
6133 KERNEL SELFTEST FRAMEWORK
6134 M:      Shuah Khan <shuahkh@osg.samsung.com>
6135 L:      linux-kselftest@vger.kernel.org
6136 T:      git git://git.kernel.org/pub/scm/shuah/linux-kselftest
6137 S:      Maintained
6138 F:      tools/testing/selftests
6139
6140 KERNEL VIRTUAL MACHINE (KVM)
6141 M:      Gleb Natapov <gleb@kernel.org>
6142 M:      Paolo Bonzini <pbonzini@redhat.com>
6143 L:      kvm@vger.kernel.org
6144 W:      http://www.linux-kvm.org
6145 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
6146 S:      Supported
6147 F:      Documentation/*/kvm*.txt
6148 F:      Documentation/virtual/kvm/
6149 F:      arch/*/kvm/
6150 F:      arch/x86/kernel/kvm.c
6151 F:      arch/x86/kernel/kvmclock.c
6152 F:      arch/*/include/asm/kvm*
6153 F:      include/linux/kvm*
6154 F:      include/uapi/linux/kvm*
6155 F:      virt/kvm/
6156
6157 KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
6158 M:      Joerg Roedel <joro@8bytes.org>
6159 L:      kvm@vger.kernel.org
6160 W:      http://www.linux-kvm.org/
6161 S:      Maintained
6162 F:      arch/x86/include/asm/svm.h
6163 F:      arch/x86/kvm/svm.c
6164
6165 KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
6166 M:      Alexander Graf <agraf@suse.com>
6167 L:      kvm-ppc@vger.kernel.org
6168 W:      http://www.linux-kvm.org/
6169 T:      git git://github.com/agraf/linux-2.6.git
6170 S:      Supported
6171 F:      arch/powerpc/include/asm/kvm*
6172 F:      arch/powerpc/kvm/
6173
6174 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
6175 M:      Christian Borntraeger <borntraeger@de.ibm.com>
6176 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
6177 L:      linux-s390@vger.kernel.org
6178 W:      http://www.ibm.com/developerworks/linux/linux390/
6179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
6180 S:      Supported
6181 F:      Documentation/s390/kvm.txt
6182 F:      arch/s390/include/asm/kvm*
6183 F:      arch/s390/kvm/
6184
6185 KERNEL VIRTUAL MACHINE (KVM) FOR ARM
6186 M:      Christoffer Dall <christoffer.dall@linaro.org>
6187 M:      Marc Zyngier <marc.zyngier@arm.com>
6188 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6189 L:      kvmarm@lists.cs.columbia.edu
6190 W:      http://systems.cs.columbia.edu/projects/kvm-arm
6191 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
6192 S:      Supported
6193 F:      arch/arm/include/uapi/asm/kvm*
6194 F:      arch/arm/include/asm/kvm*
6195 F:      arch/arm/kvm/
6196 F:      virt/kvm/arm/
6197 F:      include/kvm/arm_*
6198
6199 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
6200 M:      Christoffer Dall <christoffer.dall@linaro.org>
6201 M:      Marc Zyngier <marc.zyngier@arm.com>
6202 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6203 L:      kvmarm@lists.cs.columbia.edu
6204 S:      Maintained
6205 F:      arch/arm64/include/uapi/asm/kvm*
6206 F:      arch/arm64/include/asm/kvm*
6207 F:      arch/arm64/kvm/
6208
6209 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
6210 M:      James Hogan <james.hogan@imgtec.com>
6211 L:      linux-mips@linux-mips.org
6212 S:      Supported
6213 F:      arch/mips/include/uapi/asm/kvm*
6214 F:      arch/mips/include/asm/kvm*
6215 F:      arch/mips/kvm/
6216
6217 KEXEC
6218 M:      Eric Biederman <ebiederm@xmission.com>
6219 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
6220 L:      kexec@lists.infradead.org
6221 S:      Maintained
6222 F:      include/linux/kexec.h
6223 F:      include/uapi/linux/kexec.h
6224 F:      kernel/kexec.c
6225
6226 KEYS/KEYRINGS:
6227 M:      David Howells <dhowells@redhat.com>
6228 L:      keyrings@vger.kernel.org
6229 S:      Maintained
6230 F:      Documentation/security/keys.txt
6231 F:      include/linux/key.h
6232 F:      include/linux/key-type.h
6233 F:      include/keys/
6234 F:      security/keys/
6235
6236 KEYS-TRUSTED
6237 M:      David Safford <safford@us.ibm.com>
6238 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6239 L:      linux-security-module@vger.kernel.org
6240 L:      keyrings@vger.kernel.org
6241 S:      Supported
6242 F:      Documentation/security/keys-trusted-encrypted.txt
6243 F:      include/keys/trusted-type.h
6244 F:      security/keys/trusted.c
6245 F:      security/keys/trusted.h
6246
6247 KEYS-ENCRYPTED
6248 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6249 M:      David Safford <safford@us.ibm.com>
6250 L:      linux-security-module@vger.kernel.org
6251 L:      keyrings@vger.kernel.org
6252 S:      Supported
6253 F:      Documentation/security/keys-trusted-encrypted.txt
6254 F:      include/keys/encrypted-type.h
6255 F:      security/keys/encrypted-keys/
6256
6257 KGDB / KDB /debug_core
6258 M:      Jason Wessel <jason.wessel@windriver.com>
6259 W:      http://kgdb.wiki.kernel.org/
6260 L:      kgdb-bugreport@lists.sourceforge.net
6261 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
6262 S:      Maintained
6263 F:      Documentation/DocBook/kgdb.tmpl
6264 F:      drivers/misc/kgdbts.c
6265 F:      drivers/tty/serial/kgdboc.c
6266 F:      include/linux/kdb.h
6267 F:      include/linux/kgdb.h
6268 F:      kernel/debug/
6269
6270 KMEMCHECK
6271 M:      Vegard Nossum <vegardno@ifi.uio.no>
6272 M:      Pekka Enberg <penberg@kernel.org>
6273 S:      Maintained
6274 F:      Documentation/kmemcheck.txt
6275 F:      arch/x86/include/asm/kmemcheck.h
6276 F:      arch/x86/mm/kmemcheck/
6277 F:      include/linux/kmemcheck.h
6278 F:      mm/kmemcheck.c
6279
6280 KMEMLEAK
6281 M:      Catalin Marinas <catalin.marinas@arm.com>
6282 S:      Maintained
6283 F:      Documentation/kmemleak.txt
6284 F:      include/linux/kmemleak.h
6285 F:      mm/kmemleak.c
6286 F:      mm/kmemleak-test.c
6287
6288 KPROBES
6289 M:      Ananth N Mavinakayanahalli <ananth@in.ibm.com>
6290 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
6291 M:      "David S. Miller" <davem@davemloft.net>
6292 M:      Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
6293 S:      Maintained
6294 F:      Documentation/kprobes.txt
6295 F:      include/linux/kprobes.h
6296 F:      kernel/kprobes.c
6297
6298 KS0108 LCD CONTROLLER DRIVER
6299 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
6300 W:      http://miguelojeda.es/auxdisplay.htm
6301 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
6302 S:      Maintained
6303 F:      Documentation/auxdisplay/ks0108
6304 F:      drivers/auxdisplay/ks0108.c
6305 F:      include/linux/ks0108.h
6306
6307 L3MDEV
6308 M:      David Ahern <dsa@cumulusnetworks.com>
6309 L:      netdev@vger.kernel.org
6310 S:      Maintained
6311 F:      net/l3mdev
6312 F:      include/net/l3mdev.h
6313
6314 LANTIQ MIPS ARCHITECTURE
6315 M:      John Crispin <blogic@openwrt.org>
6316 L:      linux-mips@linux-mips.org
6317 S:      Maintained
6318 F:      arch/mips/lantiq
6319
6320 LAPB module
6321 L:      linux-x25@vger.kernel.org
6322 S:      Orphan
6323 F:      Documentation/networking/lapb-module.txt
6324 F:      include/*/lapb.h
6325 F:      net/lapb/
6326
6327 LASI 53c700 driver for PARISC
6328 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
6329 L:      linux-scsi@vger.kernel.org
6330 S:      Maintained
6331 F:      Documentation/scsi/53c700.txt
6332 F:      drivers/scsi/53c700*
6333
6334 LED SUBSYSTEM
6335 M:      Richard Purdie <rpurdie@rpsys.net>
6336 M:      Jacek Anaszewski <j.anaszewski@samsung.com>
6337 L:      linux-leds@vger.kernel.org
6338 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
6339 S:      Maintained
6340 F:      drivers/leds/
6341 F:      include/linux/leds.h
6342
6343 LEGACY EEPROM DRIVER
6344 M:      Jean Delvare <jdelvare@suse.com>
6345 S:      Maintained
6346 F:      Documentation/misc-devices/eeprom
6347 F:      drivers/misc/eeprom/eeprom.c
6348
6349 LEGO USB Tower driver
6350 M:      Juergen Stuber <starblue@users.sourceforge.net>
6351 L:      legousb-devel@lists.sourceforge.net
6352 W:      http://legousb.sourceforge.net/
6353 S:      Maintained
6354 F:      drivers/usb/misc/legousbtower.c
6355
6356 LG2160 MEDIA DRIVER
6357 M:      Michael Krufky <mkrufky@linuxtv.org>
6358 L:      linux-media@vger.kernel.org
6359 W:      https://linuxtv.org
6360 W:      http://github.com/mkrufky
6361 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6362 T:      git git://linuxtv.org/mkrufky/tuners.git
6363 S:      Maintained
6364 F:      drivers/media/dvb-frontends/lg2160.*
6365
6366 LGDT3305 MEDIA DRIVER
6367 M:      Michael Krufky <mkrufky@linuxtv.org>
6368 L:      linux-media@vger.kernel.org
6369 W:      https://linuxtv.org
6370 W:      http://github.com/mkrufky
6371 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6372 T:      git git://linuxtv.org/mkrufky/tuners.git
6373 S:      Maintained
6374 F:      drivers/media/dvb-frontends/lgdt3305.*
6375
6376 LGUEST
6377 M:      Rusty Russell <rusty@rustcorp.com.au>
6378 L:      lguest@lists.ozlabs.org
6379 W:      http://lguest.ozlabs.org/
6380 S:      Odd Fixes
6381 F:      arch/x86/include/asm/lguest*.h
6382 F:      arch/x86/lguest/
6383 F:      drivers/lguest/
6384 F:      include/linux/lguest*.h
6385 F:      tools/lguest/
6386
6387 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
6388 M:      Tejun Heo <tj@kernel.org>
6389 L:      linux-ide@vger.kernel.org
6390 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6391 S:      Maintained
6392 F:      drivers/ata/
6393 F:      include/linux/ata.h
6394 F:      include/linux/libata.h
6395
6396 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
6397 M:      Viresh Kumar <vireshk@kernel.org>
6398 L:      linux-ide@vger.kernel.org
6399 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6400 S:      Maintained
6401 F:      include/linux/pata_arasan_cf_data.h
6402 F:      drivers/ata/pata_arasan_cf.c
6403
6404 LIBATA PATA DRIVERS
6405 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6406 M:      Tejun Heo <tj@kernel.org>
6407 L:      linux-ide@vger.kernel.org
6408 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6409 S:      Maintained
6410 F:      drivers/ata/pata_*.c
6411 F:      drivers/ata/ata_generic.c
6412
6413 LIBATA SATA AHCI PLATFORM devices support
6414 M:      Hans de Goede <hdegoede@redhat.com>
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/ahci_platform.c
6420 F:      drivers/ata/libahci_platform.c
6421 F:      include/linux/ahci_platform.h
6422
6423 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
6424 M:      Mikael Pettersson <mikpelinux@gmail.com>
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:      drivers/ata/sata_promise.*
6429
6430 LIBLOCKDEP
6431 M:      Sasha Levin <sasha.levin@oracle.com>
6432 S:      Maintained
6433 F:      tools/lib/lockdep/
6434
6435 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
6436 M:      Dan Williams <dan.j.williams@intel.com>
6437 L:      linux-nvdimm@lists.01.org
6438 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6439 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
6440 S:      Supported
6441 F:      drivers/nvdimm/*
6442 F:      include/linux/nd.h
6443 F:      include/linux/libnvdimm.h
6444 F:      include/uapi/linux/ndctl.h
6445
6446 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
6447 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6448 L:      linux-nvdimm@lists.01.org
6449 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6450 S:      Supported
6451 F:      drivers/nvdimm/blk.c
6452 F:      drivers/nvdimm/region_devs.c
6453 F:      drivers/acpi/nfit*
6454
6455 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
6456 M:      Vishal Verma <vishal.l.verma@intel.com>
6457 L:      linux-nvdimm@lists.01.org
6458 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6459 S:      Supported
6460 F:      drivers/nvdimm/btt*
6461
6462 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
6463 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6464 L:      linux-nvdimm@lists.01.org
6465 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6466 S:      Supported
6467 F:      drivers/nvdimm/pmem.c
6468 F:      include/linux/pmem.h
6469 F:      arch/*/include/asm/pmem.h
6470
6471 LIGHTNVM PLATFORM SUPPORT
6472 M:      Matias Bjorling <mb@lightnvm.io>
6473 W:      http://github/OpenChannelSSD
6474 L:      linux-block@vger.kernel.org
6475 S:      Maintained
6476 F:      drivers/lightnvm/
6477 F:      include/linux/lightnvm.h
6478 F:      include/uapi/linux/lightnvm.h
6479
6480 LINUX FOR IBM pSERIES (RS/6000)
6481 M:      Paul Mackerras <paulus@au.ibm.com>
6482 W:      http://www.ibm.com/linux/ltc/projects/ppc
6483 S:      Supported
6484 F:      arch/powerpc/boot/rs6000.h
6485
6486 LINUX FOR POWERPC (32-BIT AND 64-BIT)
6487 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6488 M:      Paul Mackerras <paulus@samba.org>
6489 M:      Michael Ellerman <mpe@ellerman.id.au>
6490 W:      http://www.penguinppc.org/
6491 L:      linuxppc-dev@lists.ozlabs.org
6492 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
6493 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
6494 S:      Supported
6495 F:      Documentation/powerpc/
6496 F:      arch/powerpc/
6497
6498 LINUX FOR POWER MACINTOSH
6499 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6500 W:      http://www.penguinppc.org/
6501 L:      linuxppc-dev@lists.ozlabs.org
6502 S:      Maintained
6503 F:      arch/powerpc/platforms/powermac/
6504 F:      drivers/macintosh/
6505
6506 LINUX FOR POWERPC EMBEDDED MPC5XXX
6507 M:      Anatolij Gustschin <agust@denx.de>
6508 L:      linuxppc-dev@lists.ozlabs.org
6509 T:      git git://git.denx.de/linux-denx-agust.git
6510 S:      Maintained
6511 F:      arch/powerpc/platforms/512x/
6512 F:      arch/powerpc/platforms/52xx/
6513
6514 LINUX FOR POWERPC EMBEDDED PPC4XX
6515 M:      Alistair Popple <alistair@popple.id.au>
6516 M:      Matt Porter <mporter@kernel.crashing.org>
6517 W:      http://www.penguinppc.org/
6518 L:      linuxppc-dev@lists.ozlabs.org
6519 S:      Maintained
6520 F:      arch/powerpc/platforms/40x/
6521 F:      arch/powerpc/platforms/44x/
6522
6523 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
6524 L:      linuxppc-dev@lists.ozlabs.org
6525 S:      Orphan
6526 F:      arch/powerpc/*/*virtex*
6527 F:      arch/powerpc/*/*/*virtex*
6528
6529 LINUX FOR POWERPC EMBEDDED PPC8XX
6530 M:      Vitaly Bordug <vitb@kernel.crashing.org>
6531 W:      http://www.penguinppc.org/
6532 L:      linuxppc-dev@lists.ozlabs.org
6533 S:      Maintained
6534 F:      arch/powerpc/platforms/8xx/
6535
6536 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
6537 M:      Scott Wood <oss@buserror.net>
6538 M:      Kumar Gala <galak@kernel.crashing.org>
6539 W:      http://www.penguinppc.org/
6540 L:      linuxppc-dev@lists.ozlabs.org
6541 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
6542 S:      Maintained
6543 F:      arch/powerpc/platforms/83xx/
6544 F:      arch/powerpc/platforms/85xx/
6545
6546 LINUX FOR POWERPC PA SEMI PWRFICIENT
6547 M:      Olof Johansson <olof@lixom.net>
6548 L:      linuxppc-dev@lists.ozlabs.org
6549 S:      Maintained
6550 F:      arch/powerpc/platforms/pasemi/
6551 F:      drivers/*/*pasemi*
6552 F:      drivers/*/*/*pasemi*
6553
6554 LINUX SECURITY MODULE (LSM) FRAMEWORK
6555 M:      Chris Wright <chrisw@sous-sol.org>
6556 L:      linux-security-module@vger.kernel.org
6557 S:      Supported
6558
6559 LIS3LV02D ACCELEROMETER DRIVER
6560 M:      Eric Piel <eric.piel@tremplin-utc.net>
6561 S:      Maintained
6562 F:      Documentation/misc-devices/lis3lv02d
6563 F:      drivers/misc/lis3lv02d/
6564 F:      drivers/platform/x86/hp_accel.c
6565
6566 LIVE PATCHING
6567 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6568 M:      Seth Jennings <sjenning@redhat.com>
6569 M:      Jiri Kosina <jikos@kernel.org>
6570 M:      Vojtech Pavlik <vojtech@suse.com>
6571 S:      Maintained
6572 F:      kernel/livepatch/
6573 F:      include/linux/livepatch.h
6574 F:      arch/x86/include/asm/livepatch.h
6575 F:      arch/x86/kernel/livepatch.c
6576 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
6577 F:      samples/livepatch/
6578 L:      live-patching@vger.kernel.org
6579 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
6580
6581 LLC (802.2)
6582 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
6583 S:      Maintained
6584 F:      include/linux/llc.h
6585 F:      include/uapi/linux/llc.h
6586 F:      include/net/llc*
6587 F:      net/llc/
6588
6589 LM73 HARDWARE MONITOR DRIVER
6590 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
6591 L:      lm-sensors@lm-sensors.org
6592 S:      Maintained
6593 F:      drivers/hwmon/lm73.c
6594
6595 LM78 HARDWARE MONITOR DRIVER
6596 M:      Jean Delvare <jdelvare@suse.com>
6597 L:      lm-sensors@lm-sensors.org
6598 S:      Maintained
6599 F:      Documentation/hwmon/lm78
6600 F:      drivers/hwmon/lm78.c
6601
6602 LM83 HARDWARE MONITOR DRIVER
6603 M:      Jean Delvare <jdelvare@suse.com>
6604 L:      lm-sensors@lm-sensors.org
6605 S:      Maintained
6606 F:      Documentation/hwmon/lm83
6607 F:      drivers/hwmon/lm83.c
6608
6609 LM90 HARDWARE MONITOR DRIVER
6610 M:      Jean Delvare <jdelvare@suse.com>
6611 L:      lm-sensors@lm-sensors.org
6612 S:      Maintained
6613 F:      Documentation/hwmon/lm90
6614 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
6615 F:      drivers/hwmon/lm90.c
6616
6617 LM95234 HARDWARE MONITOR DRIVER
6618 M:      Guenter Roeck <linux@roeck-us.net>
6619 L:      lm-sensors@lm-sensors.org
6620 S:      Maintained
6621 F:      Documentation/hwmon/lm95234
6622 F:      drivers/hwmon/lm95234.c
6623
6624 LME2510 MEDIA DRIVER
6625 M:      Malcolm Priestley <tvboxspy@gmail.com>
6626 L:      linux-media@vger.kernel.org
6627 W:      https://linuxtv.org
6628 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6629 S:      Maintained
6630 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
6631
6632 LOCKDEP AND LOCKSTAT
6633 M:      Peter Zijlstra <peterz@infradead.org>
6634 M:      Ingo Molnar <mingo@redhat.com>
6635 L:      linux-kernel@vger.kernel.org
6636 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
6637 S:      Maintained
6638 F:      Documentation/locking/lockdep*.txt
6639 F:      Documentation/locking/lockstat.txt
6640 F:      include/linux/lockdep.h
6641 F:      kernel/locking/
6642
6643 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
6644 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
6645 L:      linux-ntfs-dev@lists.sourceforge.net
6646 W:      http://www.linux-ntfs.org/content/view/19/37/
6647 S:      Maintained
6648 F:      Documentation/ldm.txt
6649 F:      block/partitions/ldm.*
6650
6651 LogFS
6652 M:      Joern Engel <joern@logfs.org>
6653 M:      Prasad Joshi <prasadjoshi.linux@gmail.com>
6654 L:      logfs@logfs.org
6655 W:      logfs.org
6656 S:      Maintained
6657 F:      fs/logfs/
6658
6659 LPC32XX MACHINE SUPPORT
6660 M:      Roland Stigge <stigge@antcom.de>
6661 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6662 S:      Maintained
6663 F:      arch/arm/mach-lpc32xx/
6664
6665 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
6666 M:      Nagalakshmi Nandigama <nagalakshmi.nandigama@avagotech.com>
6667 M:      Praveen Krishnamoorthy <praveen.krishnamoorthy@avagotech.com>
6668 M:      Sreekanth Reddy <sreekanth.reddy@avagotech.com>
6669 M:      Abhijit Mahajan <abhijit.mahajan@avagotech.com>
6670 L:      MPT-FusionLinux.pdl@avagotech.com
6671 L:      linux-scsi@vger.kernel.org
6672 W:      http://www.lsilogic.com/support
6673 S:      Supported
6674 F:      drivers/message/fusion/
6675 F:      drivers/scsi/mpt2sas/
6676 F:      drivers/scsi/mpt3sas/
6677
6678 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
6679 M:      Matthew Wilcox <matthew@wil.cx>
6680 L:      linux-scsi@vger.kernel.org
6681 S:      Maintained
6682 F:      drivers/scsi/sym53c8xx_2/
6683
6684 LTC4261 HARDWARE MONITOR DRIVER
6685 M:      Guenter Roeck <linux@roeck-us.net>
6686 L:      lm-sensors@lm-sensors.org
6687 S:      Maintained
6688 F:      Documentation/hwmon/ltc4261
6689 F:      drivers/hwmon/ltc4261.c
6690
6691 LTP (Linux Test Project)
6692 M:      Mike Frysinger <vapier@gentoo.org>
6693 M:      Cyril Hrubis <chrubis@suse.cz>
6694 M:      Wanlong Gao <wanlong.gao@gmail.com>
6695 M:      Jan Stancek <jstancek@redhat.com>
6696 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
6697 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
6698 L:      ltp@lists.linux.it (subscribers-only)
6699 W:      http://linux-test-project.github.io/
6700 T:      git git://github.com/linux-test-project/ltp.git
6701 S:      Maintained
6702
6703 M32R ARCHITECTURE
6704 W:      http://www.linux-m32r.org/
6705 S:      Orphan
6706 F:      arch/m32r/
6707
6708 M68K ARCHITECTURE
6709 M:      Geert Uytterhoeven <geert@linux-m68k.org>
6710 L:      linux-m68k@lists.linux-m68k.org
6711 W:      http://www.linux-m68k.org/
6712 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
6713 S:      Maintained
6714 F:      arch/m68k/
6715 F:      drivers/zorro/
6716
6717 M68K ON APPLE MACINTOSH
6718 M:      Joshua Thompson <funaho@jurai.org>
6719 W:      http://www.mac.linux-m68k.org/
6720 L:      linux-m68k@lists.linux-m68k.org
6721 S:      Maintained
6722 F:      arch/m68k/mac/
6723
6724 M68K ON HP9000/300
6725 M:      Philip Blundell <philb@gnu.org>
6726 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
6727 S:      Maintained
6728 F:      arch/m68k/hp300/
6729
6730 M88DS3103 MEDIA DRIVER
6731 M:      Antti Palosaari <crope@iki.fi>
6732 L:      linux-media@vger.kernel.org
6733 W:      https://linuxtv.org
6734 W:      http://palosaari.fi/linux/
6735 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6736 T:      git git://linuxtv.org/anttip/media_tree.git
6737 S:      Maintained
6738 F:      drivers/media/dvb-frontends/m88ds3103*
6739
6740 M88RS2000 MEDIA DRIVER
6741 M:      Malcolm Priestley <tvboxspy@gmail.com>
6742 L:      linux-media@vger.kernel.org
6743 W:      https://linuxtv.org
6744 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6745 S:      Maintained
6746 F:      drivers/media/dvb-frontends/m88rs2000*
6747
6748 MA901 MASTERKIT USB FM RADIO DRIVER
6749 M:      Alexey Klimov <klimov.linux@gmail.com>
6750 L:      linux-media@vger.kernel.org
6751 T:      git git://linuxtv.org/media_tree.git
6752 S:      Maintained
6753 F:      drivers/media/radio/radio-ma901.c
6754
6755 MAC80211
6756 M:      Johannes Berg <johannes@sipsolutions.net>
6757 L:      linux-wireless@vger.kernel.org
6758 W:      http://wireless.kernel.org/
6759 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6760 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
6761 S:      Maintained
6762 F:      Documentation/networking/mac80211-injection.txt
6763 F:      include/net/mac80211.h
6764 F:      net/mac80211/
6765
6766 MACVLAN DRIVER
6767 M:      Patrick McHardy <kaber@trash.net>
6768 L:      netdev@vger.kernel.org
6769 S:      Maintained
6770 F:      drivers/net/macvlan.c
6771 F:      include/linux/if_macvlan.h
6772
6773 MAILBOX API
6774 M:      Jassi Brar <jassisinghbrar@gmail.com>
6775 L:      linux-kernel@vger.kernel.org
6776 S:      Maintained
6777 F:      drivers/mailbox/
6778 F:      include/linux/mailbox_client.h
6779 F:      include/linux/mailbox_controller.h
6780
6781 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
6782 M:      Michael Kerrisk <mtk.manpages@gmail.com>
6783 W:      http://www.kernel.org/doc/man-pages
6784 L:      linux-man@vger.kernel.org
6785 S:      Maintained
6786
6787 MARVELL ARMADA DRM SUPPORT
6788 M:      Russell King <rmk+kernel@arm.linux.org.uk>
6789 S:      Maintained
6790 F:      drivers/gpu/drm/armada/
6791
6792 MARVELL 88E6352 DSA support
6793 M:      Guenter Roeck <linux@roeck-us.net>
6794 S:      Maintained
6795 F:      drivers/net/dsa/mv88e6352.c
6796
6797 MARVELL CRYPTO DRIVER
6798 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
6799 M:      Arnaud Ebalard <arno@natisbad.org>
6800 F:      drivers/crypto/marvell/
6801 S:      Maintained
6802 L:      linux-crypto@vger.kernel.org
6803
6804 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
6805 M:      Mirko Lindner <mlindner@marvell.com>
6806 M:      Stephen Hemminger <stephen@networkplumber.org>
6807 L:      netdev@vger.kernel.org
6808 S:      Maintained
6809 F:      drivers/net/ethernet/marvell/sk*
6810
6811 MARVELL LIBERTAS WIRELESS DRIVER
6812 L:      libertas-dev@lists.infradead.org
6813 S:      Orphan
6814 F:      drivers/net/wireless/marvell/libertas/
6815
6816 MARVELL MV643XX ETHERNET DRIVER
6817 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
6818 L:      netdev@vger.kernel.org
6819 S:      Maintained
6820 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
6821 F:      include/linux/mv643xx.h
6822
6823 MARVELL MVNETA ETHERNET DRIVER
6824 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
6825 L:      netdev@vger.kernel.org
6826 S:      Maintained
6827 F:      drivers/net/ethernet/marvell/mvneta.*
6828
6829 MARVELL MWIFIEX WIRELESS DRIVER
6830 M:      Amitkumar Karwar <akarwar@marvell.com>
6831 M:      Nishant Sarmukadam <nishants@marvell.com>
6832 L:      linux-wireless@vger.kernel.org
6833 S:      Maintained
6834 F:      drivers/net/wireless/marvell/mwifiex/
6835
6836 MARVELL MWL8K WIRELESS DRIVER
6837 M:      Lennert Buytenhek <buytenh@wantstofly.org>
6838 L:      linux-wireless@vger.kernel.org
6839 S:      Odd Fixes
6840 F:      drivers/net/wireless/marvell/mwl8k.c
6841
6842 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
6843 M:      Nicolas Pitre <nico@fluxnic.net>
6844 S:      Odd Fixes
6845 F:      drivers/mmc/host/mvsdio.*
6846
6847 MATROX FRAMEBUFFER DRIVER
6848 L:      linux-fbdev@vger.kernel.org
6849 S:      Orphan
6850 F:      drivers/video/fbdev/matrox/matroxfb_*
6851 F:      include/uapi/linux/matroxfb.h
6852
6853 MAX16065 HARDWARE MONITOR DRIVER
6854 M:      Guenter Roeck <linux@roeck-us.net>
6855 L:      lm-sensors@lm-sensors.org
6856 S:      Maintained
6857 F:      Documentation/hwmon/max16065
6858 F:      drivers/hwmon/max16065.c
6859
6860 MAX20751 HARDWARE MONITOR DRIVER
6861 M:      Guenter Roeck <linux@roeck-us.net>
6862 L:      lm-sensors@lm-sensors.org
6863 S:      Maintained
6864 F:      Documentation/hwmon/max20751
6865 F:      drivers/hwmon/max20751.c
6866
6867 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6868 M:      "Hans J. Koch" <hjk@hansjkoch.de>
6869 L:      lm-sensors@lm-sensors.org
6870 S:      Maintained
6871 F:      Documentation/hwmon/max6650
6872 F:      drivers/hwmon/max6650.c
6873
6874 MAX6697 HARDWARE MONITOR DRIVER
6875 M:      Guenter Roeck <linux@roeck-us.net>
6876 L:      lm-sensors@lm-sensors.org
6877 S:      Maintained
6878 F:      Documentation/hwmon/max6697
6879 F:      Documentation/devicetree/bindings/i2c/max6697.txt
6880 F:      drivers/hwmon/max6697.c
6881 F:      include/linux/platform_data/max6697.h
6882
6883 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
6884 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6885 L:      linux-pm@vger.kernel.org
6886 S:      Supported
6887 F:      drivers/power/max14577_charger.c
6888 F:      drivers/power/max77693_charger.c
6889
6890 MAXIM MAX77802 MULTIFUNCTION PMIC DEVICE DRIVERS
6891 M:      Javier Martinez Canillas <javier@osg.samsung.com>
6892 L:      linux-kernel@vger.kernel.org
6893 S:      Supported
6894 F:      drivers/*/*max77802.c
6895 F:      Documentation/devicetree/bindings/*/*max77802.txt
6896 F:      include/dt-bindings/*/*max77802.h
6897
6898 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
6899 M:      Chanwoo Choi <cw00.choi@samsung.com>
6900 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6901 L:      linux-kernel@vger.kernel.org
6902 S:      Supported
6903 F:      drivers/*/max14577.c
6904 F:      drivers/*/max77686.c
6905 F:      drivers/*/max77693.c
6906 F:      drivers/extcon/extcon-max14577.c
6907 F:      drivers/extcon/extcon-max77693.c
6908 F:      drivers/rtc/rtc-max77686.c
6909 F:      drivers/clk/clk-max77686.c
6910 F:      Documentation/devicetree/bindings/mfd/max14577.txt
6911 F:      Documentation/devicetree/bindings/*/max77686.txt
6912 F:      Documentation/devicetree/bindings/mfd/max77693.txt
6913 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
6914 F:      include/linux/mfd/max14577*.h
6915 F:      include/linux/mfd/max77686*.h
6916 F:      include/linux/mfd/max77693*.h
6917
6918 MAXIRADIO FM RADIO RECEIVER DRIVER
6919 M:      Hans Verkuil <hverkuil@xs4all.nl>
6920 L:      linux-media@vger.kernel.org
6921 T:      git git://linuxtv.org/media_tree.git
6922 W:      https://linuxtv.org
6923 S:      Maintained
6924 F:      drivers/media/radio/radio-maxiradio*
6925
6926 MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVER
6927 M:      Peter Rosin <peda@axentia.se>
6928 L:      linux-iio@vger.kernel.org
6929 S:      Maintained
6930 F:      drivers/iio/potentiometer/mcp4531.c
6931
6932 MEDIA DRIVERS FOR RENESAS - VSP1
6933 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6934 L:      linux-media@vger.kernel.org
6935 L:      linux-renesas-soc@vger.kernel.org
6936 T:      git git://linuxtv.org/media_tree.git
6937 S:      Supported
6938 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
6939 F:      drivers/media/platform/vsp1/
6940
6941 MEDIA DRIVERS FOR ASCOT2E
6942 M:      Sergey Kozlov <serjk@netup.ru>
6943 L:      linux-media@vger.kernel.org
6944 W:      https://linuxtv.org
6945 W:      http://netup.tv/
6946 T:      git git://linuxtv.org/media_tree.git
6947 S:      Supported
6948 F:      drivers/media/dvb-frontends/ascot2e*
6949
6950 MEDIA DRIVERS FOR CXD2841ER
6951 M:      Sergey Kozlov <serjk@netup.ru>
6952 L:      linux-media@vger.kernel.org
6953 W:      https://linuxtv.org
6954 W:      http://netup.tv/
6955 T:      git git://linuxtv.org/media_tree.git
6956 S:      Supported
6957 F:      drivers/media/dvb-frontends/cxd2841er*
6958
6959 MEDIA DRIVERS FOR HORUS3A
6960 M:      Sergey Kozlov <serjk@netup.ru>
6961 L:      linux-media@vger.kernel.org
6962 W:      https://linuxtv.org
6963 W:      http://netup.tv/
6964 T:      git git://linuxtv.org/media_tree.git
6965 S:      Supported
6966 F:      drivers/media/dvb-frontends/horus3a*
6967
6968 MEDIA DRIVERS FOR LNBH25
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/lnbh25*
6976
6977 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
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/pci/netup_unidvb/*
6985
6986 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
6987 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
6988 P:      LinuxTV.org Project
6989 L:      linux-media@vger.kernel.org
6990 W:      https://linuxtv.org
6991 Q:      http://patchwork.kernel.org/project/linux-media/list/
6992 T:      git git://linuxtv.org/media_tree.git
6993 S:      Maintained
6994 F:      Documentation/dvb/
6995 F:      Documentation/video4linux/
6996 F:      Documentation/DocBook/media/
6997 F:      drivers/media/
6998 F:      drivers/staging/media/
6999 F:      include/linux/platform_data/media/
7000 F:      include/media/
7001 F:      include/uapi/linux/dvb/
7002 F:      include/uapi/linux/videodev2.h
7003 F:      include/uapi/linux/media.h
7004 F:      include/uapi/linux/v4l2-*
7005 F:      include/uapi/linux/meye.h
7006 F:      include/uapi/linux/ivtv*
7007 F:      include/uapi/linux/uvcvideo.h
7008
7009 MEDIATEK MT7601U WIRELESS LAN DRIVER
7010 M:      Jakub Kicinski <kubakici@wp.pl>
7011 L:      linux-wireless@vger.kernel.org
7012 S:      Maintained
7013 F:      drivers/net/wireless/mediatek/mt7601u/
7014
7015 MEGARAID SCSI/SAS DRIVERS
7016 M:      Kashyap Desai <kashyap.desai@avagotech.com>
7017 M:      Sumit Saxena <sumit.saxena@avagotech.com>
7018 M:      Uday Lingala <uday.lingala@avagotech.com>
7019 L:      megaraidlinux.pdl@avagotech.com
7020 L:      linux-scsi@vger.kernel.org
7021 W:      http://www.lsi.com
7022 S:      Maintained
7023 F:      Documentation/scsi/megaraid.txt
7024 F:      drivers/scsi/megaraid.*
7025 F:      drivers/scsi/megaraid/
7026
7027 MELLANOX ETHERNET DRIVER (mlx4_en)
7028 M:      Eugenia Emantayev <eugenia@mellanox.com>
7029 L:      netdev@vger.kernel.org
7030 S:      Supported
7031 W:      http://www.mellanox.com
7032 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7033 F:      drivers/net/ethernet/mellanox/mlx4/en_*
7034
7035 MELLANOX ETHERNET DRIVER (mlx5e)
7036 M:      Saeed Mahameed <saeedm@mellanox.com>
7037 L:      netdev@vger.kernel.org
7038 S:      Supported
7039 W:      http://www.mellanox.com
7040 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7041 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
7042
7043 MELLANOX ETHERNET SWITCH DRIVERS
7044 M:      Jiri Pirko <jiri@mellanox.com>
7045 M:      Ido Schimmel <idosch@mellanox.com>
7046 L:      netdev@vger.kernel.org
7047 S:      Supported
7048 W:      http://www.mellanox.com
7049 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7050 F:      drivers/net/ethernet/mellanox/mlxsw/
7051
7052 MEMBARRIER SUPPORT
7053 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7054 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
7055 L:      linux-kernel@vger.kernel.org
7056 S:      Supported
7057 F:      kernel/membarrier.c
7058 F:      include/uapi/linux/membarrier.h
7059
7060 MEMORY MANAGEMENT
7061 L:      linux-mm@kvack.org
7062 W:      http://www.linux-mm.org
7063 S:      Maintained
7064 F:      include/linux/mm.h
7065 F:      include/linux/gfp.h
7066 F:      include/linux/mmzone.h
7067 F:      include/linux/memory_hotplug.h
7068 F:      include/linux/vmalloc.h
7069 F:      mm/
7070
7071 MEMORY TECHNOLOGY DEVICES (MTD)
7072 M:      David Woodhouse <dwmw2@infradead.org>
7073 M:      Brian Norris <computersforpeace@gmail.com>
7074 L:      linux-mtd@lists.infradead.org
7075 W:      http://www.linux-mtd.infradead.org/
7076 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
7077 T:      git git://git.infradead.org/linux-mtd.git
7078 T:      git git://git.infradead.org/l2-mtd.git
7079 S:      Maintained
7080 F:      drivers/mtd/
7081 F:      include/linux/mtd/
7082 F:      include/uapi/mtd/
7083
7084 MEN A21 WATCHDOG DRIVER
7085 M:      Johannes Thumshirn <morbidrsa@gmail.com>
7086 L:      linux-watchdog@vger.kernel.org
7087 S:      Maintained
7088 F:      drivers/watchdog/mena21_wdt.c
7089
7090 MEN CHAMELEON BUS (mcb)
7091 M:      Johannes Thumshirn <morbidrsa@gmail.com>
7092 S:      Maintained
7093 F:      drivers/mcb/
7094 F:      include/linux/mcb.h
7095 F:      Documentation/men-chameleon-bus.txt
7096
7097 MEN F21BMC (Board Management Controller)
7098 M:      Andreas Werner <andreas.werner@men.de>
7099 S:      Supported
7100 F:      drivers/mfd/menf21bmc.c
7101 F:      drivers/watchdog/menf21bmc_wdt.c
7102 F:      drivers/leds/leds-menf21bmc.c
7103 F:      drivers/hwmon/menf21bmc_hwmon.c
7104 F:      Documentation/hwmon/menf21bmc
7105
7106 METAG ARCHITECTURE
7107 M:      James Hogan <james.hogan@imgtec.com>
7108 L:      linux-metag@vger.kernel.org
7109 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jhogan/metag.git
7110 S:      Odd Fixes
7111 F:      arch/metag/
7112 F:      Documentation/metag/
7113 F:      Documentation/devicetree/bindings/metag/
7114 F:      Documentation/devicetree/bindings/interrupt-controller/img,*
7115 F:      drivers/clocksource/metag_generic.c
7116 F:      drivers/irqchip/irq-metag.c
7117 F:      drivers/irqchip/irq-metag-ext.c
7118 F:      drivers/tty/metag_da.c
7119
7120 MICROBLAZE ARCHITECTURE
7121 M:      Michal Simek <monstr@monstr.eu>
7122 W:      http://www.monstr.eu/fdt/
7123 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
7124 S:      Supported
7125 F:      arch/microblaze/
7126
7127 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
7128 M:      Chen Yu <yu.c.chen@intel.com>
7129 L:      platform-driver-x86@vger.kernel.org
7130 S:      Supported
7131 F:      drivers/platform/x86/surfacepro3_button.c
7132
7133 MICROTEK X6 SCANNER
7134 M:      Oliver Neukum <oliver@neukum.org>
7135 S:      Maintained
7136 F:      drivers/usb/image/microtek.*
7137
7138 MIPS
7139 M:      Ralf Baechle <ralf@linux-mips.org>
7140 L:      linux-mips@linux-mips.org
7141 W:      http://www.linux-mips.org/
7142 T:      git git://git.linux-mips.org/pub/scm/ralf/linux.git
7143 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
7144 S:      Supported
7145 F:      Documentation/mips/
7146 F:      arch/mips/
7147
7148 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
7149 M:      Hans Verkuil <hverkuil@xs4all.nl>
7150 L:      linux-media@vger.kernel.org
7151 T:      git git://linuxtv.org/media_tree.git
7152 W:      https://linuxtv.org
7153 S:      Odd Fixes
7154 F:      drivers/media/radio/radio-miropcm20*
7155
7156 MELLANOX MLX4 core VPI driver
7157 M:      Yishai Hadas <yishaih@mellanox.com>
7158 L:      netdev@vger.kernel.org
7159 L:      linux-rdma@vger.kernel.org
7160 W:      http://www.mellanox.com
7161 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7162 S:      Supported
7163 F:      drivers/net/ethernet/mellanox/mlx4/
7164 F:      include/linux/mlx4/
7165
7166 MELLANOX MLX4 IB driver
7167 M:      Yishai Hadas <yishaih@mellanox.com>
7168 L:      linux-rdma@vger.kernel.org
7169 W:      http://www.mellanox.com
7170 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
7171 S:      Supported
7172 F:      drivers/infiniband/hw/mlx4/
7173 F:      include/linux/mlx4/
7174
7175 MELLANOX MLX5 core VPI driver
7176 M:      Matan Barak <matanb@mellanox.com>
7177 M:      Leon Romanovsky <leonro@mellanox.com>
7178 L:      netdev@vger.kernel.org
7179 L:      linux-rdma@vger.kernel.org
7180 W:      http://www.mellanox.com
7181 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7182 S:      Supported
7183 F:      drivers/net/ethernet/mellanox/mlx5/core/
7184 F:      include/linux/mlx5/
7185
7186 MELLANOX MLX5 IB driver
7187 M:      Matan Barak <matanb@mellanox.com>
7188 M:      Leon Romanovsky <leonro@mellanox.com>
7189 L:      linux-rdma@vger.kernel.org
7190 W:      http://www.mellanox.com
7191 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
7192 S:      Supported
7193 F:      drivers/infiniband/hw/mlx5/
7194 F:      include/linux/mlx5/
7195
7196 MELEXIS MLX90614 DRIVER
7197 M:      Crt Mori <cmo@melexis.com>
7198 L:      linux-iio@vger.kernel.org
7199 W:      http://www.melexis.com
7200 S:      Supported
7201 F:      drivers/iio/temperature/mlx90614.c
7202
7203 MN88472 MEDIA DRIVER
7204 M:      Antti Palosaari <crope@iki.fi>
7205 L:      linux-media@vger.kernel.org
7206 W:      https://linuxtv.org
7207 W:      http://palosaari.fi/linux/
7208 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7209 T:      git git://linuxtv.org/anttip/media_tree.git
7210 S:      Maintained
7211 F:      drivers/staging/media/mn88472/
7212 F:      drivers/media/dvb-frontends/mn88472.h
7213
7214 MN88473 MEDIA DRIVER
7215 M:      Antti Palosaari <crope@iki.fi>
7216 L:      linux-media@vger.kernel.org
7217 W:      https://linuxtv.org
7218 W:      http://palosaari.fi/linux/
7219 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7220 T:      git git://linuxtv.org/anttip/media_tree.git
7221 S:      Maintained
7222 F:      drivers/staging/media/mn88473/
7223 F:      drivers/media/dvb-frontends/mn88473.h
7224
7225 MODULE SUPPORT
7226 M:      Rusty Russell <rusty@rustcorp.com.au>
7227 S:      Maintained
7228 F:      include/linux/module.h
7229 F:      kernel/module.c
7230
7231 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
7232 W:      http://popies.net/meye/
7233 S:      Orphan
7234 F:      Documentation/video4linux/meye.txt
7235 F:      drivers/media/pci/meye/
7236 F:      include/uapi/linux/meye.h
7237
7238 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
7239 M:      Jiri Slaby <jirislaby@gmail.com>
7240 S:      Maintained
7241 F:      Documentation/serial/moxa-smartio
7242 F:      drivers/tty/mxser.*
7243
7244 MR800 AVERMEDIA USB FM RADIO DRIVER
7245 M:      Alexey Klimov <klimov.linux@gmail.com>
7246 L:      linux-media@vger.kernel.org
7247 T:      git git://linuxtv.org/media_tree.git
7248 S:      Maintained
7249 F:      drivers/media/radio/radio-mr800.c
7250
7251 MRF24J40 IEEE 802.15.4 RADIO DRIVER
7252 M:      Alan Ott <alan@signal11.us>
7253 L:      linux-wpan@vger.kernel.org
7254 S:      Maintained
7255 F:      drivers/net/ieee802154/mrf24j40.c
7256 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
7257
7258 MSI LAPTOP SUPPORT
7259 M:      "Lee, Chun-Yi" <jlee@suse.com>
7260 L:      platform-driver-x86@vger.kernel.org
7261 S:      Maintained
7262 F:      drivers/platform/x86/msi-laptop.c
7263
7264 MSI WMI SUPPORT
7265 L:      platform-driver-x86@vger.kernel.org
7266 S:      Orphan
7267 F:      drivers/platform/x86/msi-wmi.c
7268
7269 MSI001 MEDIA DRIVER
7270 M:      Antti Palosaari <crope@iki.fi>
7271 L:      linux-media@vger.kernel.org
7272 W:      https://linuxtv.org
7273 W:      http://palosaari.fi/linux/
7274 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7275 T:      git git://linuxtv.org/anttip/media_tree.git
7276 S:      Maintained
7277 F:      drivers/media/tuners/msi001*
7278
7279 MSI2500 MEDIA DRIVER
7280 M:      Antti Palosaari <crope@iki.fi>
7281 L:      linux-media@vger.kernel.org
7282 W:      https://linuxtv.org
7283 W:      http://palosaari.fi/linux/
7284 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7285 T:      git git://linuxtv.org/anttip/media_tree.git
7286 S:      Maintained
7287 F:      drivers/media/usb/msi2500/
7288
7289 MSYSTEMS DISKONCHIP G3 MTD DRIVER
7290 M:      Robert Jarzmik <robert.jarzmik@free.fr>
7291 L:      linux-mtd@lists.infradead.org
7292 S:      Maintained
7293 F:      drivers/mtd/devices/docg3*
7294
7295 MT9M032 APTINA SENSOR DRIVER
7296 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7297 L:      linux-media@vger.kernel.org
7298 T:      git git://linuxtv.org/media_tree.git
7299 S:      Maintained
7300 F:      drivers/media/i2c/mt9m032.c
7301 F:      include/media/i2c/mt9m032.h
7302
7303 MT9P031 APTINA CAMERA SENSOR
7304 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7305 L:      linux-media@vger.kernel.org
7306 T:      git git://linuxtv.org/media_tree.git
7307 S:      Maintained
7308 F:      drivers/media/i2c/mt9p031.c
7309 F:      include/media/i2c/mt9p031.h
7310
7311 MT9T001 APTINA CAMERA SENSOR
7312 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7313 L:      linux-media@vger.kernel.org
7314 T:      git git://linuxtv.org/media_tree.git
7315 S:      Maintained
7316 F:      drivers/media/i2c/mt9t001.c
7317 F:      include/media/i2c/mt9t001.h
7318
7319 MT9V032 APTINA CAMERA SENSOR
7320 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7321 L:      linux-media@vger.kernel.org
7322 T:      git git://linuxtv.org/media_tree.git
7323 S:      Maintained
7324 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
7325 F:      drivers/media/i2c/mt9v032.c
7326 F:      include/media/i2c/mt9v032.h
7327
7328 MULTIFUNCTION DEVICES (MFD)
7329 M:      Lee Jones <lee.jones@linaro.org>
7330 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
7331 S:      Supported
7332 F:      drivers/mfd/
7333 F:      include/linux/mfd/
7334
7335 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
7336 M:      Ulf Hansson <ulf.hansson@linaro.org>
7337 L:      linux-mmc@vger.kernel.org
7338 T:      git git://git.linaro.org/people/ulf.hansson/mmc.git
7339 S:      Maintained
7340 F:      drivers/mmc/
7341 F:      include/linux/mmc/
7342 F:      include/uapi/linux/mmc/
7343
7344 MULTIMEDIA CARD (MMC) ETC. OVER SPI
7345 S:      Orphan
7346 F:      drivers/mmc/host/mmc_spi.c
7347 F:      include/linux/spi/mmc_spi.h
7348
7349 MULTISOUND SOUND DRIVER
7350 M:      Andrew Veliath <andrewtv@usa.net>
7351 S:      Maintained
7352 F:      Documentation/sound/oss/MultiSound
7353 F:      sound/oss/msnd*
7354
7355 MULTITECH MULTIPORT CARD (ISICOM)
7356 S:      Orphan
7357 F:      drivers/tty/isicom.c
7358 F:      include/linux/isicom.h
7359
7360 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
7361 M:      Felipe Balbi <balbi@kernel.org>
7362 L:      linux-usb@vger.kernel.org
7363 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7364 S:      Maintained
7365 F:      drivers/usb/musb/
7366
7367 MXL5007T MEDIA DRIVER
7368 M:      Michael Krufky <mkrufky@linuxtv.org>
7369 L:      linux-media@vger.kernel.org
7370 W:      https://linuxtv.org
7371 W:      http://github.com/mkrufky
7372 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7373 T:      git git://linuxtv.org/mkrufky/tuners.git
7374 S:      Maintained
7375 F:      drivers/media/tuners/mxl5007t.*
7376
7377 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
7378 M:      Hyong-Youb Kim <hykim@myri.com>
7379 L:      netdev@vger.kernel.org
7380 W:      https://www.myricom.com/support/downloads/myri10ge.html
7381 S:      Supported
7382 F:      drivers/net/ethernet/myricom/myri10ge/
7383
7384 NATSEMI ETHERNET DRIVER (DP8381x)
7385 S:      Orphan
7386 F:      drivers/net/ethernet/natsemi/natsemi.c
7387
7388 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
7389 M:      Daniel Mack <zonque@gmail.com>
7390 S:      Maintained
7391 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7392 W:      http://www.native-instruments.com
7393 F:      sound/usb/caiaq/
7394
7395 NCP FILESYSTEM
7396 M:      Petr Vandrovec <petr@vandrovec.name>
7397 S:      Odd Fixes
7398 F:      fs/ncpfs/
7399
7400 NCR 5380 SCSI DRIVERS
7401 M:      Finn Thain <fthain@telegraphics.com.au>
7402 M:      Michael Schmitz <schmitzmic@gmail.com>
7403 L:      linux-scsi@vger.kernel.org
7404 S:      Maintained
7405 F:      Documentation/scsi/g_NCR5380.txt
7406 F:      drivers/scsi/NCR5380.*
7407 F:      drivers/scsi/arm/cumana_1.c
7408 F:      drivers/scsi/arm/oak.c
7409 F:      drivers/scsi/atari_NCR5380.c
7410 F:      drivers/scsi/atari_scsi.*
7411 F:      drivers/scsi/dmx3191d.c
7412 F:      drivers/scsi/dtc.*
7413 F:      drivers/scsi/g_NCR5380.*
7414 F:      drivers/scsi/g_NCR5380_mmio.c
7415 F:      drivers/scsi/mac_scsi.*
7416 F:      drivers/scsi/pas16.*
7417 F:      drivers/scsi/sun3_scsi.*
7418 F:      drivers/scsi/sun3_scsi_vme.c
7419 F:      drivers/scsi/t128.*
7420
7421 NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
7422 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
7423 L:      linux-scsi@vger.kernel.org
7424 S:      Maintained
7425 F:      drivers/scsi/NCR_D700.*
7426
7427 NCT6775 HARDWARE MONITOR DRIVER
7428 M:      Guenter Roeck <linux@roeck-us.net>
7429 L:      lm-sensors@lm-sensors.org
7430 S:      Maintained
7431 F:      Documentation/hwmon/nct6775
7432 F:      drivers/hwmon/nct6775.c
7433
7434 NETEFFECT IWARP RNIC DRIVER (IW_NES)
7435 M:      Faisal Latif <faisal.latif@intel.com>
7436 L:      linux-rdma@vger.kernel.org
7437 W:      http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
7438 S:      Supported
7439 F:      drivers/infiniband/hw/nes/
7440
7441 NETEM NETWORK EMULATOR
7442 M:      Stephen Hemminger <stephen@networkplumber.org>
7443 L:      netem@lists.linux-foundation.org
7444 S:      Maintained
7445 F:      net/sched/sch_netem.c
7446
7447 NETERION 10GbE DRIVERS (s2io/vxge)
7448 M:      Jon Mason <jdmason@kudzu.us>
7449 L:      netdev@vger.kernel.org
7450 S:      Supported
7451 F:      Documentation/networking/s2io.txt
7452 F:      Documentation/networking/vxge.txt
7453 F:      drivers/net/ethernet/neterion/
7454
7455 NETFILTER ({IP,IP6,ARP,EB,NF}TABLES)
7456 M:      Pablo Neira Ayuso <pablo@netfilter.org>
7457 M:      Patrick McHardy <kaber@trash.net>
7458 M:      Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
7459 L:      netfilter-devel@vger.kernel.org
7460 L:      coreteam@netfilter.org
7461 W:      http://www.netfilter.org/
7462 W:      http://www.iptables.org/
7463 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
7464 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
7465 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
7466 S:      Supported
7467 F:      include/linux/netfilter*
7468 F:      include/linux/netfilter/
7469 F:      include/net/netfilter/
7470 F:      include/uapi/linux/netfilter*
7471 F:      include/uapi/linux/netfilter/
7472 F:      net/*/netfilter.c
7473 F:      net/*/netfilter/
7474 F:      net/netfilter/
7475 F:      net/bridge/br_netfilter*.c
7476
7477 NETLABEL
7478 M:      Paul Moore <paul@paul-moore.com>
7479 W:      http://netlabel.sf.net
7480 L:      netdev@vger.kernel.org
7481 S:      Maintained
7482 F:      Documentation/netlabel/
7483 F:      include/net/netlabel.h
7484 F:      net/netlabel/
7485
7486 NETROM NETWORK LAYER
7487 M:      Ralf Baechle <ralf@linux-mips.org>
7488 L:      linux-hams@vger.kernel.org
7489 W:      http://www.linux-ax25.org/
7490 S:      Maintained
7491 F:      include/net/netrom.h
7492 F:      include/uapi/linux/netrom.h
7493 F:      net/netrom/
7494
7495 NETRONOME ETHERNET DRIVERS
7496 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
7497 M:      Rolf Neugebauer <rolf.neugebauer@netronome.com>
7498 L:      oss-drivers@netronome.com
7499 S:      Maintained
7500 F:      drivers/net/ethernet/netronome/
7501
7502 NETWORK BLOCK DEVICE (NBD)
7503 M:      Markus Pargmann <mpa@pengutronix.de>
7504 S:      Maintained
7505 L:      nbd-general@lists.sourceforge.net
7506 T:      git git://git.pengutronix.de/git/mpa/linux-nbd.git
7507 F:      Documentation/blockdev/nbd.txt
7508 F:      drivers/block/nbd.c
7509 F:      include/uapi/linux/nbd.h
7510
7511 NETWORK DROP MONITOR
7512 M:      Neil Horman <nhorman@tuxdriver.com>
7513 L:      netdev@vger.kernel.org
7514 S:      Maintained
7515 W:      https://fedorahosted.org/dropwatch/
7516 F:      net/core/drop_monitor.c
7517
7518 NETWORKING [GENERAL]
7519 M:      "David S. Miller" <davem@davemloft.net>
7520 L:      netdev@vger.kernel.org
7521 W:      http://www.linuxfoundation.org/en/Net
7522 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7523 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7524 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7525 S:      Maintained
7526 F:      net/
7527 F:      include/net/
7528 F:      include/linux/in.h
7529 F:      include/linux/net.h
7530 F:      include/linux/netdevice.h
7531 F:      include/uapi/linux/in.h
7532 F:      include/uapi/linux/net.h
7533 F:      include/uapi/linux/netdevice.h
7534 F:      include/uapi/linux/net_namespace.h
7535 F:      tools/net/
7536 F:      tools/testing/selftests/net/
7537 F:      lib/random32.c
7538 F:      lib/test_bpf.c
7539
7540 NETWORKING [IPv4/IPv6]
7541 M:      "David S. Miller" <davem@davemloft.net>
7542 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
7543 M:      James Morris <jmorris@namei.org>
7544 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
7545 M:      Patrick McHardy <kaber@trash.net>
7546 L:      netdev@vger.kernel.org
7547 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7548 S:      Maintained
7549 F:      net/ipv4/
7550 F:      net/ipv6/
7551 F:      include/net/ip*
7552 F:      arch/x86/net/*
7553
7554 NETWORKING [IPSEC]
7555 M:      Steffen Klassert <steffen.klassert@secunet.com>
7556 M:      Herbert Xu <herbert@gondor.apana.org.au>
7557 M:      "David S. Miller" <davem@davemloft.net>
7558 L:      netdev@vger.kernel.org
7559 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
7560 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
7561 S:      Maintained
7562 F:      net/core/flow.c
7563 F:      net/xfrm/
7564 F:      net/key/
7565 F:      net/ipv4/xfrm*
7566 F:      net/ipv4/esp4.c
7567 F:      net/ipv4/ah4.c
7568 F:      net/ipv4/ipcomp.c
7569 F:      net/ipv4/ip_vti.c
7570 F:      net/ipv6/xfrm*
7571 F:      net/ipv6/esp6.c
7572 F:      net/ipv6/ah6.c
7573 F:      net/ipv6/ipcomp6.c
7574 F:      net/ipv6/ip6_vti.c
7575 F:      include/uapi/linux/xfrm.h
7576 F:      include/net/xfrm.h
7577
7578 NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
7579 M:      Paul Moore <paul@paul-moore.com>
7580 L:      netdev@vger.kernel.org
7581 S:      Maintained
7582
7583 NETWORKING [WIRELESS]
7584 L:      linux-wireless@vger.kernel.org
7585 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7586
7587 NETWORKING DRIVERS
7588 L:      netdev@vger.kernel.org
7589 W:      http://www.linuxfoundation.org/en/Net
7590 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7591 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7592 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7593 S:      Odd Fixes
7594 F:      drivers/net/
7595 F:      include/linux/if_*
7596 F:      include/linux/netdevice.h
7597 F:      include/linux/etherdevice.h
7598 F:      include/linux/fcdevice.h
7599 F:      include/linux/fddidevice.h
7600 F:      include/linux/hippidevice.h
7601 F:      include/linux/inetdevice.h
7602 F:      include/uapi/linux/if_*
7603 F:      include/uapi/linux/netdevice.h
7604
7605 NETWORKING DRIVERS (WIRELESS)
7606 M:      Kalle Valo <kvalo@codeaurora.org>
7607 L:      linux-wireless@vger.kernel.org
7608 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7609 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
7610 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
7611 S:      Maintained
7612 F:      drivers/net/wireless/
7613
7614 NETXEN (1/10) GbE SUPPORT
7615 M:      Manish Chopra <manish.chopra@qlogic.com>
7616 M:      Sony Chacko <sony.chacko@qlogic.com>
7617 M:      Rajesh Borundia <rajesh.borundia@qlogic.com>
7618 L:      netdev@vger.kernel.org
7619 W:      http://www.qlogic.com
7620 S:      Supported
7621 F:      drivers/net/ethernet/qlogic/netxen/
7622
7623 NFC SUBSYSTEM
7624 M:      Lauro Ramos Venancio <lauro.venancio@openbossa.org>
7625 M:      Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
7626 M:      Samuel Ortiz <sameo@linux.intel.com>
7627 L:      linux-wireless@vger.kernel.org
7628 L:      linux-nfc@lists.01.org (subscribers-only)
7629 S:      Supported
7630 F:      net/nfc/
7631 F:      include/net/nfc/
7632 F:      include/uapi/linux/nfc.h
7633 F:      drivers/nfc/
7634 F:      include/linux/platform_data/microread.h
7635 F:      include/linux/platform_data/nfcmrvl.h
7636 F:      include/linux/platform_data/nxp-nci.h
7637 F:      include/linux/platform_data/pn544.h
7638 F:      include/linux/platform_data/st21nfca.h
7639 F:      include/linux/platform_data/st-nci.h
7640 F:      Documentation/devicetree/bindings/net/nfc/
7641
7642 NFS, SUNRPC, AND LOCKD CLIENTS
7643 M:      Trond Myklebust <trond.myklebust@primarydata.com>
7644 M:      Anna Schumaker <anna.schumaker@netapp.com>
7645 L:      linux-nfs@vger.kernel.org
7646 W:      http://client.linux-nfs.org
7647 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
7648 S:      Maintained
7649 F:      fs/lockd/
7650 F:      fs/nfs/
7651 F:      fs/nfs_common/
7652 F:      net/sunrpc/
7653 F:      include/linux/lockd/
7654 F:      include/linux/nfs*
7655 F:      include/linux/sunrpc/
7656 F:      include/uapi/linux/nfs*
7657 F:      include/uapi/linux/sunrpc/
7658
7659 NILFS2 FILESYSTEM
7660 M:      Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
7661 L:      linux-nilfs@vger.kernel.org
7662 W:      http://nilfs.sourceforge.net/
7663 T:      git git://github.com/konis/nilfs2.git
7664 S:      Supported
7665 F:      Documentation/filesystems/nilfs2.txt
7666 F:      fs/nilfs2/
7667 F:      include/linux/nilfs2_fs.h
7668 F:      include/trace/events/nilfs2.h
7669
7670 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
7671 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7672 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7673 S:      Maintained
7674 F:      Documentation/scsi/NinjaSCSI.txt
7675 F:      drivers/scsi/pcmcia/nsp_*
7676
7677 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
7678 M:      GOTO Masanori <gotom@debian.or.jp>
7679 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7680 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7681 S:      Maintained
7682 F:      Documentation/scsi/NinjaSCSI.txt
7683 F:      drivers/scsi/nsp32*
7684
7685 NIOS2 ARCHITECTURE
7686 M:      Ley Foon Tan <lftan@altera.com>
7687 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
7688 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
7689 S:      Maintained
7690 F:      arch/nios2/
7691
7692 NOKIA N900 POWER SUPPLY DRIVERS
7693 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
7694 S:      Maintained
7695 F:      include/linux/power/bq2415x_charger.h
7696 F:      include/linux/power/bq27xxx_battery.h
7697 F:      include/linux/power/isp1704_charger.h
7698 F:      drivers/power/bq2415x_charger.c
7699 F:      drivers/power/bq27xxx_battery.c
7700 F:      drivers/power/isp1704_charger.c
7701 F:      drivers/power/rx51_battery.c
7702
7703 NTB DRIVER CORE
7704 M:      Jon Mason <jdmason@kudzu.us>
7705 M:      Dave Jiang <dave.jiang@intel.com>
7706 M:      Allen Hubbe <Allen.Hubbe@emc.com>
7707 L:      linux-ntb@googlegroups.com
7708 S:      Supported
7709 W:      https://github.com/jonmason/ntb/wiki
7710 T:      git git://github.com/jonmason/ntb.git
7711 F:      drivers/ntb/
7712 F:      drivers/net/ntb_netdev.c
7713 F:      include/linux/ntb.h
7714 F:      include/linux/ntb_transport.h
7715
7716 NTB INTEL DRIVER
7717 M:      Jon Mason <jdmason@kudzu.us>
7718 M:      Dave Jiang <dave.jiang@intel.com>
7719 L:      linux-ntb@googlegroups.com
7720 S:      Supported
7721 W:      https://github.com/jonmason/ntb/wiki
7722 T:      git git://github.com/jonmason/ntb.git
7723 F:      drivers/ntb/hw/intel/
7724
7725 NTB AMD DRIVER
7726 M:      Xiangliang Yu <Xiangliang.Yu@amd.com>
7727 L:      linux-ntb@googlegroups.com
7728 S:      Supported
7729 F:      drivers/ntb/hw/amd/
7730
7731 NTFS FILESYSTEM
7732 M:      Anton Altaparmakov <anton@tuxera.com>
7733 L:      linux-ntfs-dev@lists.sourceforge.net
7734 W:      http://www.tuxera.com/
7735 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
7736 S:      Supported
7737 F:      Documentation/filesystems/ntfs.txt
7738 F:      fs/ntfs/
7739
7740 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
7741 M:      Antonino Daplas <adaplas@gmail.com>
7742 L:      linux-fbdev@vger.kernel.org
7743 S:      Maintained
7744 F:      drivers/video/fbdev/riva/
7745 F:      drivers/video/fbdev/nvidia/
7746
7747 NVM EXPRESS DRIVER
7748 M:      Keith Busch <keith.busch@intel.com>
7749 M:      Jens Axboe <axboe@fb.com>
7750 L:      linux-nvme@lists.infradead.org
7751 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
7752 W:      https://kernel.googlesource.com/pub/scm/linux/kernel/git/axboe/linux-block/
7753 S:      Supported
7754 F:      drivers/nvme/host/
7755 F:      include/linux/nvme.h
7756
7757 NVMEM FRAMEWORK
7758 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
7759 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
7760 S:      Maintained
7761 F:      drivers/nvmem/
7762 F:      Documentation/devicetree/bindings/nvmem/
7763 F:      include/linux/nvmem-consumer.h
7764 F:      include/linux/nvmem-provider.h
7765
7766 NXP-NCI NFC DRIVER
7767 M:      ClĂ©ment Perrochaud <clement.perrochaud@effinnov.com>
7768 R:      Charles Gorand <charles.gorand@effinnov.com>
7769 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
7770 S:      Supported
7771 F:      drivers/nfc/nxp-nci
7772
7773 NXP TDA998X DRM DRIVER
7774 M:      Russell King <rmk+kernel@arm.linux.org.uk>
7775 S:      Supported
7776 F:      drivers/gpu/drm/i2c/tda998x_drv.c
7777 F:      include/drm/i2c/tda998x.h
7778
7779 NXP TFA9879 DRIVER
7780 M:      Peter Rosin <peda@axentia.se>
7781 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7782 S:      Maintained
7783 F:      sound/soc/codecs/tfa9879*
7784
7785 OMAP SUPPORT
7786 M:      Tony Lindgren <tony@atomide.com>
7787 L:      linux-omap@vger.kernel.org
7788 W:      http://www.muru.com/linux/omap/
7789 W:      http://linux.omap.com/
7790 Q:      http://patchwork.kernel.org/project/linux-omap/list/
7791 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
7792 S:      Maintained
7793 F:      arch/arm/*omap*/
7794 F:      arch/arm/configs/omap1_defconfig
7795 F:      arch/arm/configs/omap2plus_defconfig
7796 F:      drivers/i2c/busses/i2c-omap.c
7797 F:      drivers/irqchip/irq-omap-intc.c
7798 F:      drivers/mfd/*omap*.c
7799 F:      drivers/mfd/menelaus.c
7800 F:      drivers/mfd/palmas.c
7801 F:      drivers/mfd/tps65217.c
7802 F:      drivers/mfd/tps65218.c
7803 F:      drivers/mfd/tps65910.c
7804 F:      drivers/mfd/twl-core.[ch]
7805 F:      drivers/mfd/twl4030*.c
7806 F:      drivers/mfd/twl6030*.c
7807 F:      drivers/mfd/twl6040*.c
7808 F:      drivers/regulator/palmas-regulator*.c
7809 F:      drivers/regulator/pbias-regulator.c
7810 F:      drivers/regulator/tps65217-regulator.c
7811 F:      drivers/regulator/tps65218-regulator.c
7812 F:      drivers/regulator/tps65910-regulator.c
7813 F:      drivers/regulator/twl-regulator.c
7814 F:      include/linux/i2c-omap.h
7815
7816 OMAP DEVICE TREE SUPPORT
7817 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7818 M:      Tony Lindgren <tony@atomide.com>
7819 L:      linux-omap@vger.kernel.org
7820 L:      devicetree@vger.kernel.org
7821 S:      Maintained
7822 F:      arch/arm/boot/dts/*omap*
7823 F:      arch/arm/boot/dts/*am3*
7824 F:      arch/arm/boot/dts/*am4*
7825 F:      arch/arm/boot/dts/*am5*
7826 F:      arch/arm/boot/dts/*dra7*
7827
7828 OMAP CLOCK FRAMEWORK SUPPORT
7829 M:      Paul Walmsley <paul@pwsan.com>
7830 L:      linux-omap@vger.kernel.org
7831 S:      Maintained
7832 F:      arch/arm/*omap*/*clock*
7833
7834 OMAP POWER MANAGEMENT SUPPORT
7835 M:      Kevin Hilman <khilman@deeprootsystems.com>
7836 L:      linux-omap@vger.kernel.org
7837 S:      Maintained
7838 F:      arch/arm/*omap*/*pm*
7839 F:      drivers/cpufreq/omap-cpufreq.c
7840
7841 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
7842 M:      Rajendra Nayak <rnayak@ti.com>
7843 M:      Paul Walmsley <paul@pwsan.com>
7844 L:      linux-omap@vger.kernel.org
7845 S:      Maintained
7846 F:      arch/arm/mach-omap2/prm*
7847
7848 OMAP AUDIO SUPPORT
7849 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
7850 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
7851 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7852 L:      linux-omap@vger.kernel.org
7853 S:      Maintained
7854 F:      sound/soc/omap/
7855
7856 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
7857 M:      Roger Quadros <rogerq@ti.com>
7858 M:      Tony Lindgren <tony@atomide.com>
7859 L:      linux-omap@vger.kernel.org
7860 S:      Maintained
7861 F:      drivers/memory/omap-gpmc.c
7862 F:      arch/arm/mach-omap2/*gpmc*
7863
7864 OMAP FRAMEBUFFER SUPPORT
7865 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
7866 L:      linux-fbdev@vger.kernel.org
7867 L:      linux-omap@vger.kernel.org
7868 S:      Maintained
7869 F:      drivers/video/fbdev/omap/
7870
7871 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
7872 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
7873 L:      linux-omap@vger.kernel.org
7874 L:      linux-fbdev@vger.kernel.org
7875 S:      Maintained
7876 F:      drivers/video/fbdev/omap2/
7877 F:      Documentation/arm/OMAP/DSS
7878
7879 OMAP HARDWARE SPINLOCK SUPPORT
7880 M:      Ohad Ben-Cohen <ohad@wizery.com>
7881 L:      linux-omap@vger.kernel.org
7882 S:      Maintained
7883 F:      drivers/hwspinlock/omap_hwspinlock.c
7884
7885 OMAP MMC SUPPORT
7886 M:      Jarkko Lavinen <jarkko.lavinen@nokia.com>
7887 L:      linux-omap@vger.kernel.org
7888 S:      Maintained
7889 F:      drivers/mmc/host/omap.c
7890
7891 OMAP HS MMC SUPPORT
7892 L:      linux-mmc@vger.kernel.org
7893 L:      linux-omap@vger.kernel.org
7894 S:      Orphan
7895 F:      drivers/mmc/host/omap_hsmmc.c
7896
7897 OMAP RANDOM NUMBER GENERATOR SUPPORT
7898 M:      Deepak Saxena <dsaxena@plexity.net>
7899 S:      Maintained
7900 F:      drivers/char/hw_random/omap-rng.c
7901
7902 OMAP HWMOD SUPPORT
7903 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7904 M:      Paul Walmsley <paul@pwsan.com>
7905 L:      linux-omap@vger.kernel.org
7906 S:      Maintained
7907 F:      arch/arm/mach-omap2/omap_hwmod.*
7908
7909 OMAP HWMOD DATA
7910 M:      Paul Walmsley <paul@pwsan.com>
7911 L:      linux-omap@vger.kernel.org
7912 S:      Maintained
7913 F:      arch/arm/mach-omap2/omap_hwmod*data*
7914
7915 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
7916 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7917 L:      linux-omap@vger.kernel.org
7918 S:      Maintained
7919 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
7920
7921 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
7922 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7923 L:      linux-media@vger.kernel.org
7924 S:      Maintained
7925 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
7926 F:      drivers/media/platform/omap3isp/
7927 F:      drivers/staging/media/omap4iss/
7928
7929 OMAP USB SUPPORT
7930 M:      Felipe Balbi <balbi@kernel.org>
7931 L:      linux-usb@vger.kernel.org
7932 L:      linux-omap@vger.kernel.org
7933 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7934 S:      Maintained
7935 F:      drivers/usb/*/*omap*
7936 F:      arch/arm/*omap*/usb*
7937
7938 OMAP GPIO DRIVER
7939 M:      Grygorii Strashko <grygorii.strashko@ti.com>
7940 M:      Santosh Shilimkar <ssantosh@kernel.org>
7941 M:      Kevin Hilman <khilman@deeprootsystems.com>
7942 L:      linux-omap@vger.kernel.org
7943 S:      Maintained
7944 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
7945 F:      drivers/gpio/gpio-omap.c
7946
7947 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
7948 M:      Mark Jackson <mpfj@newflow.co.uk>
7949 L:      linux-omap@vger.kernel.org
7950 S:      Maintained
7951 F:      arch/arm/boot/dts/am335x-nano.dts
7952
7953 OMFS FILESYSTEM
7954 M:      Bob Copeland <me@bobcopeland.com>
7955 L:      linux-karma-devel@lists.sourceforge.net
7956 S:      Maintained
7957 F:      Documentation/filesystems/omfs.txt
7958 F:      fs/omfs/
7959
7960 OMNIKEY CARDMAN 4000 DRIVER
7961 M:      Harald Welte <laforge@gnumonks.org>
7962 S:      Maintained
7963 F:      drivers/char/pcmcia/cm4000_cs.c
7964 F:      include/linux/cm4000_cs.h
7965 F:      include/uapi/linux/cm4000_cs.h
7966
7967 OMNIKEY CARDMAN 4040 DRIVER
7968 M:      Harald Welte <laforge@gnumonks.org>
7969 S:      Maintained
7970 F:      drivers/char/pcmcia/cm4040_cs.*
7971
7972 OMNIVISION OV7670 SENSOR DRIVER
7973 M:      Jonathan Corbet <corbet@lwn.net>
7974 L:      linux-media@vger.kernel.org
7975 T:      git git://linuxtv.org/media_tree.git
7976 S:      Maintained
7977 F:      drivers/media/i2c/ov7670.c
7978
7979 ONENAND FLASH DRIVER
7980 M:      Kyungmin Park <kyungmin.park@samsung.com>
7981 L:      linux-mtd@lists.infradead.org
7982 S:      Maintained
7983 F:      drivers/mtd/onenand/
7984 F:      include/linux/mtd/onenand*.h
7985
7986 ONSTREAM SCSI TAPE DRIVER
7987 M:      Willem Riede <osst@riede.org>
7988 L:      osst-users@lists.sourceforge.net
7989 L:      linux-scsi@vger.kernel.org
7990 S:      Maintained
7991 F:      Documentation/scsi/osst.txt
7992 F:      drivers/scsi/osst.*
7993 F:      drivers/scsi/osst_*.h
7994 F:      drivers/scsi/st.h
7995
7996 OPENCORES I2C BUS DRIVER
7997 M:      Peter Korsgaard <jacmet@sunsite.dk>
7998 L:      linux-i2c@vger.kernel.org
7999 S:      Maintained
8000 F:      Documentation/i2c/busses/i2c-ocores
8001 F:      drivers/i2c/busses/i2c-ocores.c
8002
8003 OPEN FIRMWARE AND FLATTENED DEVICE TREE
8004 M:      Rob Herring <robh+dt@kernel.org>
8005 M:      Frank Rowand <frowand.list@gmail.com>
8006 M:      Grant Likely <grant.likely@linaro.org>
8007 L:      devicetree@vger.kernel.org
8008 W:      http://www.devicetree.org/
8009 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/glikely/linux.git
8010 S:      Maintained
8011 F:      drivers/of/
8012 F:      include/linux/of*.h
8013 F:      scripts/dtc/
8014
8015 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
8016 M:      Rob Herring <robh+dt@kernel.org>
8017 M:      Pawel Moll <pawel.moll@arm.com>
8018 M:      Mark Rutland <mark.rutland@arm.com>
8019 M:      Ian Campbell <ijc+devicetree@hellion.org.uk>
8020 M:      Kumar Gala <galak@codeaurora.org>
8021 L:      devicetree@vger.kernel.org
8022 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
8023 S:      Maintained
8024 F:      Documentation/devicetree/
8025 F:      arch/*/boot/dts/
8026 F:      include/dt-bindings/
8027
8028 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
8029 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
8030 L:      devicetree@vger.kernel.org
8031 S:      Maintained
8032 F:      Documentation/devicetree/dynamic-resolution-notes.txt
8033 F:      Documentation/devicetree/overlay-notes.txt
8034 F:      drivers/of/overlay.c
8035 F:      drivers/of/resolver.c
8036
8037 OPENRISC ARCHITECTURE
8038 M:      Jonas Bonn <jonas@southpole.se>
8039 W:      http://openrisc.net
8040 L:      linux@lists.openrisc.net (moderated for non-subscribers)
8041 S:      Maintained
8042 T:      git git://openrisc.net/~jonas/linux
8043 F:      arch/openrisc/
8044
8045 OPENVSWITCH
8046 M:      Pravin Shelar <pshelar@nicira.com>
8047 L:      netdev@vger.kernel.org
8048 L:      dev@openvswitch.org
8049 W:      http://openvswitch.org
8050 S:      Maintained
8051 F:      net/openvswitch/
8052 F:      include/uapi/linux/openvswitch.h
8053
8054 OPERATING PERFORMANCE POINTS (OPP)
8055 M:      Viresh Kumar <vireshk@kernel.org>
8056 M:      Nishanth Menon <nm@ti.com>
8057 M:      Stephen Boyd <sboyd@codeaurora.org>
8058 L:      linux-pm@vger.kernel.org
8059 S:      Maintained
8060 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
8061 F:      drivers/base/power/opp/
8062 F:      include/linux/pm_opp.h
8063 F:      Documentation/power/opp.txt
8064 F:      Documentation/devicetree/bindings/opp/
8065
8066 OPL4 DRIVER
8067 M:      Clemens Ladisch <clemens@ladisch.de>
8068 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8069 T:      git git://git.alsa-project.org/alsa-kernel.git
8070 S:      Maintained
8071 F:      sound/drivers/opl4/
8072
8073 OPROFILE
8074 M:      Robert Richter <rric@kernel.org>
8075 L:      oprofile-list@lists.sf.net
8076 S:      Maintained
8077 F:      arch/*/include/asm/oprofile*.h
8078 F:      arch/*/oprofile/
8079 F:      drivers/oprofile/
8080 F:      include/linux/oprofile.h
8081
8082 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
8083 M:      Mark Fasheh <mfasheh@suse.com>
8084 M:      Joel Becker <jlbec@evilplan.org>
8085 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
8086 W:      http://ocfs2.wiki.kernel.org
8087 S:      Supported
8088 F:      Documentation/filesystems/ocfs2.txt
8089 F:      Documentation/filesystems/dlmfs.txt
8090 F:      fs/ocfs2/
8091
8092 ORINOCO DRIVER
8093 L:      linux-wireless@vger.kernel.org
8094 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
8095 W:      http://www.nongnu.org/orinoco/
8096 S:      Orphan
8097 F:      drivers/net/wireless/intersil/orinoco/
8098
8099 OSD LIBRARY and FILESYSTEM
8100 M:      Boaz Harrosh <ooo@electrozaur.com>
8101 M:      Benny Halevy <bhalevy@primarydata.com>
8102 L:      osd-dev@open-osd.org
8103 W:      http://open-osd.org
8104 T:      git git://git.open-osd.org/open-osd.git
8105 S:      Maintained
8106 F:      drivers/scsi/osd/
8107 F:      include/scsi/osd_*
8108 F:      fs/exofs/
8109
8110 OVERLAY FILESYSTEM
8111 M:      Miklos Szeredi <miklos@szeredi.hu>
8112 L:      linux-unionfs@vger.kernel.org
8113 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
8114 S:      Supported
8115 F:      fs/overlayfs/
8116 F:      Documentation/filesystems/overlayfs.txt
8117
8118 P54 WIRELESS DRIVER
8119 M:      Christian Lamparter <chunkeey@googlemail.com>
8120 L:      linux-wireless@vger.kernel.org
8121 W:      http://wireless.kernel.org/en/users/Drivers/p54
8122 S:      Maintained
8123 F:      drivers/net/wireless/intersil/p54/
8124
8125 PA SEMI ETHERNET DRIVER
8126 M:      Olof Johansson <olof@lixom.net>
8127 L:      netdev@vger.kernel.org
8128 S:      Maintained
8129 F:      drivers/net/ethernet/pasemi/*
8130
8131 PA SEMI SMBUS DRIVER
8132 M:      Olof Johansson <olof@lixom.net>
8133 L:      linux-i2c@vger.kernel.org
8134 S:      Maintained
8135 F:      drivers/i2c/busses/i2c-pasemi.c
8136
8137 PADATA PARALLEL EXECUTION MECHANISM
8138 M:      Steffen Klassert <steffen.klassert@secunet.com>
8139 L:      linux-crypto@vger.kernel.org
8140 S:      Maintained
8141 F:      kernel/padata.c
8142 F:      include/linux/padata.h
8143 F:      Documentation/padata.txt
8144
8145 PANASONIC LAPTOP ACPI EXTRAS DRIVER
8146 M:      Harald Welte <laforge@gnumonks.org>
8147 L:      platform-driver-x86@vger.kernel.org
8148 S:      Maintained
8149 F:      drivers/platform/x86/panasonic-laptop.c
8150
8151 PANASONIC MN10300/AM33/AM34 PORT
8152 M:      David Howells <dhowells@redhat.com>
8153 M:      Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
8154 L:      linux-am33-list@redhat.com (moderated for non-subscribers)
8155 W:      ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
8156 S:      Maintained
8157 F:      Documentation/mn10300/
8158 F:      arch/mn10300/
8159
8160 PARALLEL PORT SUBSYSTEM
8161 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
8162 M:      Sudip Mukherjee <sudip@vectorindia.org>
8163 L:      linux-parport@lists.infradead.org (subscribers-only)
8164 S:      Maintained
8165 F:      drivers/parport/
8166 F:      include/linux/parport*.h
8167 F:      drivers/char/ppdev.c
8168 F:      include/uapi/linux/ppdev.h
8169 F:      Documentation/parport*.txt
8170
8171 PARAVIRT_OPS INTERFACE
8172 M:      Jeremy Fitzhardinge <jeremy@goop.org>
8173 M:      Chris Wright <chrisw@sous-sol.org>
8174 M:      Alok Kataria <akataria@vmware.com>
8175 M:      Rusty Russell <rusty@rustcorp.com.au>
8176 L:      virtualization@lists.linux-foundation.org
8177 S:      Supported
8178 F:      Documentation/virtual/paravirt_ops.txt
8179 F:      arch/*/kernel/paravirt*
8180 F:      arch/*/include/asm/paravirt.h
8181
8182 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
8183 M:      Tim Waugh <tim@cyberelk.net>
8184 L:      linux-parport@lists.infradead.org (subscribers-only)
8185 S:      Maintained
8186 F:      Documentation/blockdev/paride.txt
8187 F:      drivers/block/paride/
8188
8189 PARISC ARCHITECTURE
8190 M:      "James E.J. Bottomley" <jejb@parisc-linux.org>
8191 M:      Helge Deller <deller@gmx.de>
8192 L:      linux-parisc@vger.kernel.org
8193 W:      http://www.parisc-linux.org/
8194 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
8195 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
8196 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
8197 S:      Maintained
8198 F:      arch/parisc/
8199 F:      Documentation/parisc/
8200 F:      drivers/parisc/
8201 F:      drivers/char/agp/parisc-agp.c
8202 F:      drivers/input/serio/gscps2.c
8203 F:      drivers/parport/parport_gsc.*
8204 F:      drivers/tty/serial/8250/8250_gsc.c
8205 F:      drivers/video/fbdev/sti*
8206 F:      drivers/video/console/sti*
8207 F:      drivers/video/logo/logo_parisc*
8208
8209 PC87360 HARDWARE MONITORING DRIVER
8210 M:      Jim Cromie <jim.cromie@gmail.com>
8211 L:      lm-sensors@lm-sensors.org
8212 S:      Maintained
8213 F:      Documentation/hwmon/pc87360
8214 F:      drivers/hwmon/pc87360.c
8215
8216 PC8736x GPIO DRIVER
8217 M:      Jim Cromie <jim.cromie@gmail.com>
8218 S:      Maintained
8219 F:      drivers/char/pc8736x_gpio.c
8220
8221 PC87427 HARDWARE MONITORING DRIVER
8222 M:      Jean Delvare <jdelvare@suse.com>
8223 L:      lm-sensors@lm-sensors.org
8224 S:      Maintained
8225 F:      Documentation/hwmon/pc87427
8226 F:      drivers/hwmon/pc87427.c
8227
8228 PCA9532 LED DRIVER
8229 M:      Riku Voipio <riku.voipio@iki.fi>
8230 S:      Maintained
8231 F:      drivers/leds/leds-pca9532.c
8232 F:      include/linux/leds-pca9532.h
8233
8234 PCA9541 I2C BUS MASTER SELECTOR DRIVER
8235 M:      Guenter Roeck <linux@roeck-us.net>
8236 L:      linux-i2c@vger.kernel.org
8237 S:      Maintained
8238 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
8239
8240 PCDP - PRIMARY CONSOLE AND DEBUG PORT
8241 M:      Khalid Aziz <khalid@gonehiking.org>
8242 S:      Maintained
8243 F:      drivers/firmware/pcdp.*
8244
8245 PCI ERROR RECOVERY
8246 M:      Linas Vepstas <linasvepstas@gmail.com>
8247 L:      linux-pci@vger.kernel.org
8248 S:      Supported
8249 F:      Documentation/PCI/pci-error-recovery.txt
8250
8251 PCI SUBSYSTEM
8252 M:      Bjorn Helgaas <bhelgaas@google.com>
8253 L:      linux-pci@vger.kernel.org
8254 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
8255 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
8256 S:      Supported
8257 F:      Documentation/PCI/
8258 F:      drivers/pci/
8259 F:      include/linux/pci*
8260 F:      arch/x86/pci/
8261 F:      arch/x86/kernel/quirks.c
8262
8263 PCI DRIVER FOR ALTERA PCIE IP
8264 M:      Ley Foon Tan <lftan@altera.com>
8265 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
8266 L:      linux-pci@vger.kernel.org
8267 S:      Supported
8268 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
8269 F:      drivers/pci/host/pcie-altera.c
8270
8271 PCI DRIVER FOR ARM VERSATILE PLATFORM
8272 M:      Rob Herring <robh@kernel.org>
8273 L:      linux-pci@vger.kernel.org
8274 L:      linux-arm-kernel@lists.infradead.org
8275 S:      Maintained
8276 F:      Documentation/devicetree/bindings/pci/versatile.txt
8277 F:      drivers/pci/host/pci-versatile.c
8278
8279 PCI DRIVER FOR APPLIEDMICRO XGENE
8280 M:      Tanmay Inamdar <tinamdar@apm.com>
8281 L:      linux-pci@vger.kernel.org
8282 L:      linux-arm-kernel@lists.infradead.org
8283 S:      Maintained
8284 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
8285 F:      drivers/pci/host/pci-xgene.c
8286
8287 PCI DRIVER FOR FREESCALE LAYERSCAPE
8288 M:      Minghuan Lian <minghuan.Lian@freescale.com>
8289 M:      Mingkai Hu <mingkai.hu@freescale.com>
8290 M:      Roy Zang <tie-fei.zang@freescale.com>
8291 L:      linuxppc-dev@lists.ozlabs.org
8292 L:      linux-pci@vger.kernel.org
8293 L:      linux-arm-kernel@lists.infradead.org
8294 S:      Maintained
8295 F:      drivers/pci/host/*layerscape*
8296
8297 PCI DRIVER FOR IMX6
8298 M:      Richard Zhu <Richard.Zhu@freescale.com>
8299 M:      Lucas Stach <l.stach@pengutronix.de>
8300 L:      linux-pci@vger.kernel.org
8301 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8302 S:      Maintained
8303 F:      drivers/pci/host/*imx6*
8304
8305 PCI DRIVER FOR TI KEYSTONE
8306 M:      Murali Karicheri <m-karicheri2@ti.com>
8307 L:      linux-pci@vger.kernel.org
8308 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8309 S:      Maintained
8310 F:      drivers/pci/host/*keystone*
8311
8312 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
8313 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8314 M:      Jason Cooper <jason@lakedaemon.net>
8315 L:      linux-pci@vger.kernel.org
8316 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8317 S:      Maintained
8318 F:      drivers/pci/host/*mvebu*
8319
8320 PCI DRIVER FOR NVIDIA TEGRA
8321 M:      Thierry Reding <thierry.reding@gmail.com>
8322 L:      linux-tegra@vger.kernel.org
8323 L:      linux-pci@vger.kernel.org
8324 S:      Supported
8325 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
8326 F:      drivers/pci/host/pci-tegra.c
8327
8328 PCI DRIVER FOR TI DRA7XX
8329 M:      Kishon Vijay Abraham I <kishon@ti.com>
8330 L:      linux-omap@vger.kernel.org
8331 L:      linux-pci@vger.kernel.org
8332 S:      Supported
8333 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
8334 F:      drivers/pci/host/pci-dra7xx.c
8335
8336 PCI DRIVER FOR RENESAS R-CAR
8337 M:      Simon Horman <horms@verge.net.au>
8338 L:      linux-pci@vger.kernel.org
8339 L:      linux-renesas-soc@vger.kernel.org
8340 S:      Maintained
8341 F:      drivers/pci/host/*rcar*
8342
8343 PCI DRIVER FOR SAMSUNG EXYNOS
8344 M:      Jingoo Han <jingoohan1@gmail.com>
8345 L:      linux-pci@vger.kernel.org
8346 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8347 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8348 S:      Maintained
8349 F:      drivers/pci/host/pci-exynos.c
8350
8351 PCI DRIVER FOR SYNOPSIS DESIGNWARE
8352 M:      Jingoo Han <jingoohan1@gmail.com>
8353 M:      Pratyush Anand <pratyush.anand@gmail.com>
8354 L:      linux-pci@vger.kernel.org
8355 S:      Maintained
8356 F:      drivers/pci/host/*designware*
8357
8358 PCI DRIVER FOR GENERIC OF HOSTS
8359 M:      Will Deacon <will.deacon@arm.com>
8360 L:      linux-pci@vger.kernel.org
8361 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8362 S:      Maintained
8363 F:      Documentation/devicetree/bindings/pci/host-generic-pci.txt
8364 F:      drivers/pci/host/pci-host-generic.c
8365
8366 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
8367 M:      Keith Busch <keith.busch@intel.com>
8368 L:      linux-pci@vger.kernel.org
8369 S:      Supported
8370 F:      arch/x86/pci/vmd.c
8371
8372 PCIE DRIVER FOR ST SPEAR13XX
8373 M:      Pratyush Anand <pratyush.anand@gmail.com>
8374 L:      linux-pci@vger.kernel.org
8375 S:      Maintained
8376 F:      drivers/pci/host/*spear*
8377
8378 PCI MSI DRIVER FOR ALTERA MSI IP
8379 M:      Ley Foon Tan <lftan@altera.com>
8380 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
8381 L:      linux-pci@vger.kernel.org
8382 S:      Supported
8383 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
8384 F:      drivers/pci/host/pcie-altera-msi.c
8385
8386 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
8387 M:      Duc Dang <dhdang@apm.com>
8388 L:      linux-pci@vger.kernel.org
8389 L:      linux-arm-kernel@lists.infradead.org
8390 S:      Maintained
8391 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
8392 F:      drivers/pci/host/pci-xgene-msi.c
8393
8394 PCIE DRIVER FOR HISILICON
8395 M:      Zhou Wang <wangzhou1@hisilicon.com>
8396 M:      Gabriele Paoloni <gabriele.paoloni@huawei.com>
8397 L:      linux-pci@vger.kernel.org
8398 S:      Maintained
8399 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
8400 F:      drivers/pci/host/pcie-hisi.c
8401
8402 PCIE DRIVER FOR QUALCOMM MSM
8403 M:     Stanimir Varbanov <svarbanov@mm-sol.com>
8404 L:     linux-pci@vger.kernel.org
8405 L:     linux-arm-msm@vger.kernel.org
8406 S:     Maintained
8407 F:     drivers/pci/host/*qcom*
8408
8409 PCMCIA SUBSYSTEM
8410 P:      Linux PCMCIA Team
8411 L:      linux-pcmcia@lists.infradead.org
8412 W:      http://lists.infradead.org/mailman/listinfo/linux-pcmcia
8413 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
8414 S:      Maintained
8415 F:      Documentation/pcmcia/
8416 F:      drivers/pcmcia/
8417 F:      include/pcmcia/
8418
8419 PCNET32 NETWORK DRIVER
8420 M:      Don Fry <pcnet32@frontier.com>
8421 L:      netdev@vger.kernel.org
8422 S:      Maintained
8423 F:      drivers/net/ethernet/amd/pcnet32.c
8424
8425 PCRYPT PARALLEL CRYPTO ENGINE
8426 M:      Steffen Klassert <steffen.klassert@secunet.com>
8427 L:      linux-crypto@vger.kernel.org
8428 S:      Maintained
8429 F:      crypto/pcrypt.c
8430 F:      include/crypto/pcrypt.h
8431
8432 PER-CPU MEMORY ALLOCATOR
8433 M:      Tejun Heo <tj@kernel.org>
8434 M:      Christoph Lameter <cl@linux-foundation.org>
8435 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
8436 S:      Maintained
8437 F:      include/linux/percpu*.h
8438 F:      mm/percpu*.c
8439 F:      arch/*/include/asm/percpu.h
8440
8441 PER-TASK DELAY ACCOUNTING
8442 M:      Balbir Singh <bsingharora@gmail.com>
8443 S:      Maintained
8444 F:      include/linux/delayacct.h
8445 F:      kernel/delayacct.c
8446
8447 PERFORMANCE EVENTS SUBSYSTEM
8448 M:      Peter Zijlstra <peterz@infradead.org>
8449 M:      Ingo Molnar <mingo@redhat.com>
8450 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
8451 L:      linux-kernel@vger.kernel.org
8452 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
8453 S:      Supported
8454 F:      kernel/events/*
8455 F:      include/linux/perf_event.h
8456 F:      include/uapi/linux/perf_event.h
8457 F:      arch/*/kernel/perf_event*.c
8458 F:      arch/*/kernel/*/perf_event*.c
8459 F:      arch/*/kernel/*/*/perf_event*.c
8460 F:      arch/*/include/asm/perf_event.h
8461 F:      arch/*/kernel/perf_callchain.c
8462 F:      tools/perf/
8463
8464 PERSONALITY HANDLING
8465 M:      Christoph Hellwig <hch@infradead.org>
8466 L:      linux-abi-devel@lists.sourceforge.net
8467 S:      Maintained
8468 F:      include/linux/personality.h
8469 F:      include/uapi/linux/personality.h
8470
8471 PHONET PROTOCOL
8472 M:      Remi Denis-Courmont <courmisch@gmail.com>
8473 S:      Supported
8474 F:      Documentation/networking/phonet.txt
8475 F:      include/linux/phonet.h
8476 F:      include/net/phonet/
8477 F:      include/uapi/linux/phonet.h
8478 F:      net/phonet/
8479
8480 PHRAM MTD DRIVER
8481 M:      Joern Engel <joern@lazybastard.org>
8482 L:      linux-mtd@lists.infradead.org
8483 S:      Maintained
8484 F:      drivers/mtd/devices/phram.c
8485
8486 PICOLCD HID DRIVER
8487 M:      Bruno PrĂ©mont <bonbons@linux-vserver.org>
8488 L:      linux-input@vger.kernel.org
8489 S:      Maintained
8490 F:      drivers/hid/hid-picolcd*
8491
8492 PICOXCELL SUPPORT
8493 M:      Jamie Iles <jamie@jamieiles.com>
8494 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8495 T:      git git://github.com/jamieiles/linux-2.6-ji.git
8496 S:      Supported
8497 F:      arch/arm/boot/dts/picoxcell*
8498 F:      arch/arm/mach-picoxcell/
8499 F:      drivers/crypto/picoxcell*
8500
8501 PIN CONTROL SUBSYSTEM
8502 M:      Linus Walleij <linus.walleij@linaro.org>
8503 L:      linux-gpio@vger.kernel.org
8504 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
8505 S:      Maintained
8506 F:      drivers/pinctrl/
8507 F:      include/linux/pinctrl/
8508
8509 PIN CONTROLLER - ATMEL AT91
8510 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
8511 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8512 S:      Maintained
8513 F:      drivers/pinctrl/pinctrl-at91.*
8514
8515 PIN CONTROLLER - ATMEL AT91 PIO4
8516 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
8517 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8518 L:      linux-gpio@vger.kernel.org
8519 S:      Supported
8520 F:      drivers/pinctrl/pinctrl-at91-pio4.*
8521
8522 PIN CONTROLLER - INTEL
8523 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8524 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
8525 S:      Maintained
8526 F:      drivers/pinctrl/intel/
8527
8528 PIN CONTROLLER - RENESAS
8529 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8530 M:      Geert Uytterhoeven <geert+renesas@glider.be>
8531 L:      linux-renesas-soc@vger.kernel.org
8532 S:      Maintained
8533 F:      drivers/pinctrl/sh-pfc/
8534
8535 PIN CONTROLLER - SAMSUNG
8536 M:      Tomasz Figa <tomasz.figa@gmail.com>
8537 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8538 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8539 S:      Maintained
8540 F:      drivers/pinctrl/samsung/
8541
8542 PIN CONTROLLER - SINGLE
8543 M:      Tony Lindgren <tony@atomide.com>
8544 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
8545 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8546 L:      linux-omap@vger.kernel.org
8547 S:      Maintained
8548 F:      drivers/pinctrl/pinctrl-single.c
8549
8550 PIN CONTROLLER - ST SPEAR
8551 M:      Viresh Kumar <vireshk@kernel.org>
8552 L:      spear-devel@list.st.com
8553 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8554 W:      http://www.st.com/spear
8555 S:      Maintained
8556 F:      drivers/pinctrl/spear/
8557
8558 PKTCDVD DRIVER
8559 M:      Jiri Kosina <jikos@kernel.org>
8560 S:      Maintained
8561 F:      drivers/block/pktcdvd.c
8562 F:      include/linux/pktcdvd.h
8563 F:      include/uapi/linux/pktcdvd.h
8564
8565 PKUNITY SOC DRIVERS
8566 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
8567 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
8568 S:      Maintained
8569 T:      git git://github.com/gxt/linux.git
8570 F:      drivers/input/serio/i8042-unicore32io.h
8571 F:      drivers/i2c/busses/i2c-puv3.c
8572 F:      drivers/video/fbdev/fb-puv3.c
8573 F:      drivers/rtc/rtc-puv3.c
8574
8575 PMBUS HARDWARE MONITORING DRIVERS
8576 M:      Guenter Roeck <linux@roeck-us.net>
8577 L:      lm-sensors@lm-sensors.org
8578 W:      http://www.lm-sensors.org/
8579 W:      http://www.roeck-us.net/linux/drivers/
8580 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8581 S:      Maintained
8582 F:      Documentation/hwmon/pmbus
8583 F:      drivers/hwmon/pmbus/
8584 F:      include/linux/i2c/pmbus.h
8585
8586 PMC SIERRA MaxRAID DRIVER
8587 L:      linux-scsi@vger.kernel.org
8588 W:      http://www.pmc-sierra.com/
8589 S:      Orphan
8590 F:      drivers/scsi/pmcraid.*
8591
8592 PMC SIERRA PM8001 DRIVER
8593 M:      Jack Wang <jinpu.wang@profitbricks.com>
8594 M:      lindar_liu@usish.com
8595 L:      pmchba@pmcs.com
8596 L:      linux-scsi@vger.kernel.org
8597 S:      Supported
8598 F:      drivers/scsi/pm8001/
8599
8600 POSIX CLOCKS and TIMERS
8601 M:      Thomas Gleixner <tglx@linutronix.de>
8602 L:      linux-kernel@vger.kernel.org
8603 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8604 S:      Maintained
8605 F:      fs/timerfd.c
8606 F:      include/linux/timer*
8607 F:      kernel/time/*timer*
8608
8609 POWER MANAGEMENT CORE
8610 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
8611 L:      linux-pm@vger.kernel.org
8612 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
8613 S:      Supported
8614 F:      drivers/base/power/
8615 F:      include/linux/pm.h
8616 F:      include/linux/pm_*
8617 F:      include/linux/powercap.h
8618 F:      drivers/powercap/
8619
8620 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
8621 M:      Sebastian Reichel <sre@kernel.org>
8622 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
8623 M:      David Woodhouse <dwmw2@infradead.org>
8624 L:      linux-pm@vger.kernel.org
8625 T:      git git://git.infradead.org/battery-2.6.git
8626 S:      Maintained
8627 F:      include/linux/power_supply.h
8628 F:      drivers/power/
8629 X:      drivers/power/avs/
8630
8631 POWER STATE COORDINATION INTERFACE (PSCI)
8632 M:      Mark Rutland <mark.rutland@arm.com>
8633 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
8634 L:      linux-arm-kernel@lists.infradead.org
8635 S:      Maintained
8636 F:      drivers/firmware/psci.c
8637 F:      include/linux/psci.h
8638 F:      include/uapi/linux/psci.h
8639
8640 PNP SUPPORT
8641 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
8642 S:      Maintained
8643 F:      drivers/pnp/
8644
8645 PPP PROTOCOL DRIVERS AND COMPRESSORS
8646 M:      Paul Mackerras <paulus@samba.org>
8647 L:      linux-ppp@vger.kernel.org
8648 S:      Maintained
8649 F:      drivers/net/ppp/ppp_*
8650
8651 PPP OVER ATM (RFC 2364)
8652 M:      Mitchell Blank Jr <mitch@sfgoth.com>
8653 S:      Maintained
8654 F:      net/atm/pppoatm.c
8655 F:      include/uapi/linux/atmppp.h
8656
8657 PPP OVER ETHERNET
8658 M:      Michal Ostrowski <mostrows@earthlink.net>
8659 S:      Maintained
8660 F:      drivers/net/ppp/pppoe.c
8661 F:      drivers/net/ppp/pppox.c
8662
8663 PPP OVER L2TP
8664 M:      James Chapman <jchapman@katalix.com>
8665 S:      Maintained
8666 F:      net/l2tp/l2tp_ppp.c
8667 F:      include/linux/if_pppol2tp.h
8668 F:      include/uapi/linux/if_pppol2tp.h
8669
8670 PPS SUPPORT
8671 M:      Rodolfo Giometti <giometti@enneenne.com>
8672 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
8673 L:      linuxpps@ml.enneenne.com (subscribers-only)
8674 S:      Maintained
8675 F:      Documentation/pps/
8676 F:      drivers/pps/
8677 F:      include/linux/pps*.h
8678
8679 PPTP DRIVER
8680 M:      Dmitry Kozlov <xeb@mail.ru>
8681 L:      netdev@vger.kernel.org
8682 S:      Maintained
8683 F:      drivers/net/ppp/pptp.c
8684 W:      http://sourceforge.net/projects/accel-pptp
8685
8686 PREEMPTIBLE KERNEL
8687 M:      Robert Love <rml@tech9.net>
8688 L:      kpreempt-tech@lists.sourceforge.net
8689 W:      ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
8690 S:      Supported
8691 F:      Documentation/preempt-locking.txt
8692 F:      include/linux/preempt.h
8693
8694 PRISM54 WIRELESS DRIVER
8695 M:      "Luis R. Rodriguez" <mcgrof@gmail.com>
8696 L:      linux-wireless@vger.kernel.org
8697 W:      http://wireless.kernel.org/en/users/Drivers/p54
8698 S:      Obsolete
8699 F:      drivers/net/wireless/intersil/prism54/
8700
8701 PS3 NETWORK SUPPORT
8702 M:      Geoff Levand <geoff@infradead.org>
8703 L:      netdev@vger.kernel.org
8704 L:      linuxppc-dev@lists.ozlabs.org
8705 S:      Maintained
8706 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
8707
8708 PS3 PLATFORM SUPPORT
8709 M:      Geoff Levand <geoff@infradead.org>
8710 L:      linuxppc-dev@lists.ozlabs.org
8711 S:      Maintained
8712 F:      arch/powerpc/boot/ps3*
8713 F:      arch/powerpc/include/asm/lv1call.h
8714 F:      arch/powerpc/include/asm/ps3*.h
8715 F:      arch/powerpc/platforms/ps3/
8716 F:      drivers/*/ps3*
8717 F:      drivers/ps3/
8718 F:      drivers/rtc/rtc-ps3.c
8719 F:      drivers/usb/host/*ps3.c
8720 F:      sound/ppc/snd_ps3*
8721
8722 PS3VRAM DRIVER
8723 M:      Jim Paris <jim@jtan.com>
8724 M:      Geoff Levand <geoff@infradead.org>
8725 L:      linuxppc-dev@lists.ozlabs.org
8726 S:      Maintained
8727 F:      drivers/block/ps3vram.c
8728
8729 PSTORE FILESYSTEM
8730 M:      Anton Vorontsov <anton@enomsg.org>
8731 M:      Colin Cross <ccross@android.com>
8732 M:      Kees Cook <keescook@chromium.org>
8733 M:      Tony Luck <tony.luck@intel.com>
8734 S:      Maintained
8735 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
8736 F:      fs/pstore/
8737 F:      include/linux/pstore*
8738 F:      drivers/firmware/efi/efi-pstore.c
8739 F:      drivers/acpi/apei/erst.c
8740
8741 PTP HARDWARE CLOCK SUPPORT
8742 M:      Richard Cochran <richardcochran@gmail.com>
8743 L:      netdev@vger.kernel.org
8744 S:      Maintained
8745 W:      http://linuxptp.sourceforge.net/
8746 F:      Documentation/ABI/testing/sysfs-ptp
8747 F:      Documentation/ptp/*
8748 F:      drivers/net/ethernet/freescale/gianfar_ptp.c
8749 F:      drivers/net/phy/dp83640*
8750 F:      drivers/ptp/*
8751 F:      include/linux/ptp_cl*
8752
8753 PTRACE SUPPORT
8754 M:      Roland McGrath <roland@hack.frob.com>
8755 M:      Oleg Nesterov <oleg@redhat.com>
8756 S:      Maintained
8757 F:      include/asm-generic/syscall.h
8758 F:      include/linux/ptrace.h
8759 F:      include/linux/regset.h
8760 F:      include/linux/tracehook.h
8761 F:      include/uapi/linux/ptrace.h
8762 F:      kernel/ptrace.c
8763
8764 PVRUSB2 VIDEO4LINUX DRIVER
8765 M:      Mike Isely <isely@pobox.com>
8766 L:      pvrusb2@isely.net       (subscribers-only)
8767 L:      linux-media@vger.kernel.org
8768 W:      http://www.isely.net/pvrusb2/
8769 T:      git git://linuxtv.org/media_tree.git
8770 S:      Maintained
8771 F:      Documentation/video4linux/README.pvrusb2
8772 F:      drivers/media/usb/pvrusb2/
8773
8774 PWC WEBCAM DRIVER
8775 M:      Hans de Goede <hdegoede@redhat.com>
8776 L:      linux-media@vger.kernel.org
8777 T:      git git://linuxtv.org/media_tree.git
8778 S:      Maintained
8779 F:      drivers/media/usb/pwc/*
8780
8781 PWM FAN DRIVER
8782 M:      Kamil Debski <k.debski@samsung.com>
8783 L:      lm-sensors@lm-sensors.org
8784 S:      Supported
8785 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
8786 F:      Documentation/hwmon/pwm-fan
8787 F:      drivers/hwmon/pwm-fan.c
8788
8789 PWM SUBSYSTEM
8790 M:      Thierry Reding <thierry.reding@gmail.com>
8791 L:      linux-pwm@vger.kernel.org
8792 S:      Maintained
8793 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
8794 F:      Documentation/pwm.txt
8795 F:      Documentation/devicetree/bindings/pwm/
8796 F:      include/linux/pwm.h
8797 F:      drivers/pwm/
8798 F:      drivers/video/backlight/pwm_bl.c
8799 F:      include/linux/pwm_backlight.h
8800
8801 PXA2xx/PXA3xx SUPPORT
8802 M:      Daniel Mack <daniel@zonque.org>
8803 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
8804 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8805 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8806 T:      git git://github.com/hzhuang1/linux.git
8807 T:      git git://github.com/rjarzmik/linux.git
8808 S:      Maintained
8809 F:      arch/arm/boot/dts/pxa*
8810 F:      arch/arm/mach-pxa/
8811 F:      drivers/dma/pxa*
8812 F:      drivers/pcmcia/pxa2xx*
8813 F:      drivers/pinctrl/pxa/
8814 F:      drivers/spi/spi-pxa2xx*
8815 F:      drivers/usb/gadget/udc/pxa2*
8816 F:      include/sound/pxa2xx-lib.h
8817 F:      sound/arm/pxa*
8818 F:      sound/soc/pxa/
8819
8820 PXA GPIO DRIVER
8821 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8822 L:      linux-gpio@vger.kernel.org
8823 S:      Maintained
8824 F:      drivers/gpio/gpio-pxa.c
8825
8826 PXA3xx NAND FLASH DRIVER
8827 M:      Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
8828 L:      linux-mtd@lists.infradead.org
8829 S:      Maintained
8830 F:      drivers/mtd/nand/pxa3xx_nand.c
8831
8832 MMP SUPPORT
8833 M:      Eric Miao <eric.y.miao@gmail.com>
8834 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
8835 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8836 T:      git git://github.com/hzhuang1/linux.git
8837 T:      git git://git.linaro.org/people/ycmiao/pxa-linux.git
8838 S:      Maintained
8839 F:      arch/arm/boot/dts/mmp*
8840 F:      arch/arm/mach-mmp/
8841
8842 PXA MMCI DRIVER
8843 S:      Orphan
8844
8845 PXA RTC DRIVER
8846 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8847 L:      rtc-linux@googlegroups.com
8848 S:      Maintained
8849
8850 QAT DRIVER
8851 M:      Tadeusz Struk <tadeusz.struk@intel.com>
8852 L:      qat-linux@intel.com
8853 S:      Supported
8854 F:      drivers/crypto/qat/
8855
8856 QIB DRIVER
8857 M:      Mike Marciniszyn <infinipath@intel.com>
8858 L:      linux-rdma@vger.kernel.org
8859 S:      Supported
8860 F:      drivers/infiniband/hw/qib/
8861
8862 QLOGIC QLA1280 SCSI DRIVER
8863 M:      Michael Reed <mdr@sgi.com>
8864 L:      linux-scsi@vger.kernel.org
8865 S:      Maintained
8866 F:      drivers/scsi/qla1280.[ch]
8867
8868 QLOGIC QLA2XXX FC-SCSI DRIVER
8869 M:      qla2xxx-upstream@qlogic.com
8870 L:      linux-scsi@vger.kernel.org
8871 S:      Supported
8872 F:      Documentation/scsi/LICENSE.qla2xxx
8873 F:      drivers/scsi/qla2xxx/
8874
8875 QLOGIC QLA4XXX iSCSI DRIVER
8876 M:      QLogic-Storage-Upstream@qlogic.com
8877 L:      linux-scsi@vger.kernel.org
8878 S:      Supported
8879 F:      Documentation/scsi/LICENSE.qla4xxx
8880 F:      drivers/scsi/qla4xxx/
8881
8882 QLOGIC QLA3XXX NETWORK DRIVER
8883 M:      Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
8884 M:      Ron Mercer <ron.mercer@qlogic.com>
8885 M:      linux-driver@qlogic.com
8886 L:      netdev@vger.kernel.org
8887 S:      Supported
8888 F:      Documentation/networking/LICENSE.qla3xxx
8889 F:      drivers/net/ethernet/qlogic/qla3xxx.*
8890
8891 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
8892 M:      Dept-GELinuxNICDev@qlogic.com
8893 L:      netdev@vger.kernel.org
8894 S:      Supported
8895 F:      drivers/net/ethernet/qlogic/qlcnic/
8896
8897 QLOGIC QLGE 10Gb ETHERNET DRIVER
8898 M:      Harish Patil <harish.patil@qlogic.com>
8899 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
8900 M:      Dept-GELinuxNICDev@qlogic.com
8901 M:      linux-driver@qlogic.com
8902 L:      netdev@vger.kernel.org
8903 S:      Supported
8904 F:      drivers/net/ethernet/qlogic/qlge/
8905
8906 QLOGIC QL4xxx ETHERNET DRIVER
8907 M:      Yuval Mintz <Yuval.Mintz@qlogic.com>
8908 M:      Ariel Elior <Ariel.Elior@qlogic.com>
8909 M:      everest-linux-l2@qlogic.com
8910 L:      netdev@vger.kernel.org
8911 S:      Supported
8912 F:      drivers/net/ethernet/qlogic/qed/
8913 F:      include/linux/qed/
8914 F:      drivers/net/ethernet/qlogic/qede/
8915
8916 QNX4 FILESYSTEM
8917 M:      Anders Larsen <al@alarsen.net>
8918 W:      http://www.alarsen.net/linux/qnx4fs/
8919 S:      Maintained
8920 F:      fs/qnx4/
8921 F:      include/uapi/linux/qnx4_fs.h
8922 F:      include/uapi/linux/qnxtypes.h
8923
8924 QT1010 MEDIA DRIVER
8925 M:      Antti Palosaari <crope@iki.fi>
8926 L:      linux-media@vger.kernel.org
8927 W:      https://linuxtv.org
8928 W:      http://palosaari.fi/linux/
8929 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8930 T:      git git://linuxtv.org/anttip/media_tree.git
8931 S:      Maintained
8932 F:      drivers/media/tuners/qt1010*
8933
8934 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
8935 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
8936 L:      linux-wireless@vger.kernel.org
8937 L:      ath9k-devel@lists.ath9k.org
8938 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
8939 S:      Supported
8940 F:      drivers/net/wireless/ath/ath9k/
8941
8942 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
8943 M:      Kalle Valo <kvalo@qca.qualcomm.com>
8944 L:      ath10k@lists.infradead.org
8945 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
8946 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
8947 S:      Supported
8948 F:      drivers/net/wireless/ath/ath10k/
8949
8950 QUALCOMM HEXAGON ARCHITECTURE
8951 M:      Richard Kuo <rkuo@codeaurora.org>
8952 L:      linux-hexagon@vger.kernel.org
8953 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rkuo/linux-hexagon-kernel.git
8954 S:      Supported
8955 F:      arch/hexagon/
8956
8957 QUALCOMM WCN36XX WIRELESS DRIVER
8958 M:      Eugene Krasnikov <k.eugene.e@gmail.com>
8959 L:      wcn36xx@lists.infradead.org
8960 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
8961 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
8962 S:      Supported
8963 F:      drivers/net/wireless/ath/wcn36xx/
8964
8965 RADOS BLOCK DEVICE (RBD)
8966 M:      Ilya Dryomov <idryomov@gmail.com>
8967 M:      Sage Weil <sage@redhat.com>
8968 M:      Alex Elder <elder@kernel.org>
8969 L:      ceph-devel@vger.kernel.org
8970 W:      http://ceph.com/
8971 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
8972 T:      git git://github.com/ceph/ceph-client.git
8973 S:      Supported
8974 F:      Documentation/ABI/testing/sysfs-bus-rbd
8975 F:      drivers/block/rbd.c
8976 F:      drivers/block/rbd_types.h
8977
8978 RADEON FRAMEBUFFER DISPLAY DRIVER
8979 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
8980 L:      linux-fbdev@vger.kernel.org
8981 S:      Maintained
8982 F:      drivers/video/fbdev/aty/radeon*
8983 F:      include/uapi/linux/radeonfb.h
8984
8985 RADIOSHARK RADIO DRIVER
8986 M:      Hans de Goede <hdegoede@redhat.com>
8987 L:      linux-media@vger.kernel.org
8988 T:      git git://linuxtv.org/media_tree.git
8989 S:      Maintained
8990 F:      drivers/media/radio/radio-shark.c
8991
8992 RADIOSHARK2 RADIO DRIVER
8993 M:      Hans de Goede <hdegoede@redhat.com>
8994 L:      linux-media@vger.kernel.org
8995 T:      git git://linuxtv.org/media_tree.git
8996 S:      Maintained
8997 F:      drivers/media/radio/radio-shark2.c
8998 F:      drivers/media/radio/radio-tea5777.c
8999
9000 RAGE128 FRAMEBUFFER DISPLAY DRIVER
9001 M:      Paul Mackerras <paulus@samba.org>
9002 L:      linux-fbdev@vger.kernel.org
9003 S:      Maintained
9004 F:      drivers/video/fbdev/aty/aty128fb.c
9005
9006 RALINK MIPS ARCHITECTURE
9007 M:      John Crispin <blogic@openwrt.org>
9008 L:      linux-mips@linux-mips.org
9009 S:      Maintained
9010 F:      arch/mips/ralink
9011
9012 RALINK RT2X00 WIRELESS LAN DRIVER
9013 P:      rt2x00 project
9014 M:      Stanislaw Gruszka <sgruszka@redhat.com>
9015 M:      Helmut Schaa <helmut.schaa@googlemail.com>
9016 L:      linux-wireless@vger.kernel.org
9017 S:      Maintained
9018 F:      drivers/net/wireless/ralink/rt2x00/
9019
9020 RAMDISK RAM BLOCK DEVICE DRIVER
9021 M:      Jens Axboe <axboe@kernel.dk>
9022 S:      Maintained
9023 F:      Documentation/blockdev/ramdisk.txt
9024 F:      drivers/block/brd.c
9025
9026 RANDOM NUMBER DRIVER
9027 M:      "Theodore Ts'o" <tytso@mit.edu>
9028 S:      Maintained
9029 F:      drivers/char/random.c
9030
9031 RAPIDIO SUBSYSTEM
9032 M:      Matt Porter <mporter@kernel.crashing.org>
9033 M:      Alexandre Bounine <alexandre.bounine@idt.com>
9034 S:      Maintained
9035 F:      drivers/rapidio/
9036
9037 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
9038 L:      linux-wireless@vger.kernel.org
9039 S:      Orphan
9040 F:      drivers/net/wireless/ray*
9041
9042 RCUTORTURE MODULE
9043 M:      Josh Triplett <josh@joshtriplett.org>
9044 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9045 L:      linux-kernel@vger.kernel.org
9046 S:      Supported
9047 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9048 F:      Documentation/RCU/torture.txt
9049 F:      kernel/rcu/rcutorture.c
9050
9051 RCUTORTURE TEST FRAMEWORK
9052 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9053 M:      Josh Triplett <josh@joshtriplett.org>
9054 R:      Steven Rostedt <rostedt@goodmis.org>
9055 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9056 R:      Lai Jiangshan <jiangshanlai@gmail.com>
9057 L:      linux-kernel@vger.kernel.org
9058 S:      Supported
9059 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9060 F:      tools/testing/selftests/rcutorture
9061
9062 RDC R-321X SoC
9063 M:      Florian Fainelli <florian@openwrt.org>
9064 S:      Maintained
9065
9066 RDC R6040 FAST ETHERNET DRIVER
9067 M:      Florian Fainelli <florian@openwrt.org>
9068 L:      netdev@vger.kernel.org
9069 S:      Maintained
9070 F:      drivers/net/ethernet/rdc/r6040.c
9071
9072 RDS - RELIABLE DATAGRAM SOCKETS
9073 M:      Chien Yen <chien.yen@oracle.com>
9074 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
9075 S:      Supported
9076 F:      net/rds/
9077
9078 READ-COPY UPDATE (RCU)
9079 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9080 M:      Josh Triplett <josh@joshtriplett.org>
9081 R:      Steven Rostedt <rostedt@goodmis.org>
9082 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9083 R:      Lai Jiangshan <jiangshanlai@gmail.com>
9084 L:      linux-kernel@vger.kernel.org
9085 W:      http://www.rdrop.com/users/paulmck/RCU/
9086 S:      Supported
9087 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9088 F:      Documentation/RCU/
9089 X:      Documentation/RCU/torture.txt
9090 F:      include/linux/rcu*
9091 X:      include/linux/srcu.h
9092 F:      kernel/rcu/
9093 X:      kernel/torture.c
9094
9095 REAL TIME CLOCK (RTC) SUBSYSTEM
9096 M:      Alessandro Zummo <a.zummo@towertech.it>
9097 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
9098 L:      rtc-linux@googlegroups.com
9099 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
9100 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
9101 S:      Maintained
9102 F:      Documentation/rtc.txt
9103 F:      drivers/rtc/
9104 F:      include/linux/rtc.h
9105 F:      include/uapi/linux/rtc.h
9106
9107 REALTEK AUDIO CODECS
9108 M:      Bard Liao <bardliao@realtek.com>
9109 M:      Oder Chiou <oder_chiou@realtek.com>
9110 S:      Maintained
9111 F:      sound/soc/codecs/rt*
9112 F:      include/sound/rt*.h
9113
9114 REISERFS FILE SYSTEM
9115 L:      reiserfs-devel@vger.kernel.org
9116 S:      Supported
9117 F:      fs/reiserfs/
9118
9119 REGISTER MAP ABSTRACTION
9120 M:      Mark Brown <broonie@kernel.org>
9121 L:      linux-kernel@vger.kernel.org
9122 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
9123 S:      Supported
9124 F:      drivers/base/regmap/
9125 F:      include/linux/regmap.h
9126
9127 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
9128 M:      Ohad Ben-Cohen <ohad@wizery.com>
9129 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
9130 S:      Maintained
9131 F:      drivers/remoteproc/
9132 F:      Documentation/remoteproc.txt
9133 F:      include/linux/remoteproc.h
9134
9135 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
9136 M:      Ohad Ben-Cohen <ohad@wizery.com>
9137 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
9138 S:      Maintained
9139 F:      drivers/rpmsg/
9140 F:      Documentation/rpmsg.txt
9141 F:      include/linux/rpmsg.h
9142
9143 RENESAS ETHERNET DRIVERS
9144 R:      Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
9145 L:      netdev@vger.kernel.org
9146 L:      linux-renesas-soc@vger.kernel.org
9147 F:      drivers/net/ethernet/renesas/
9148 F:      include/linux/sh_eth.h
9149
9150 RENESAS USB2 PHY DRIVER
9151 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
9152 L:      linux-renesas-soc@vger.kernel.org
9153 S:      Maintained
9154 F:      drivers/phy/phy-rcar-gen3-usb2.c
9155
9156 RESET CONTROLLER FRAMEWORK
9157 M:      Philipp Zabel <p.zabel@pengutronix.de>
9158 T:      git git://git.pengutronix.de/git/pza/linux
9159 S:      Maintained
9160 F:      drivers/reset/
9161 F:      Documentation/devicetree/bindings/reset/
9162 F:      include/dt-bindings/reset/
9163 F:      include/linux/reset.h
9164 F:      include/linux/reset-controller.h
9165
9166 RFKILL
9167 M:      Johannes Berg <johannes@sipsolutions.net>
9168 L:      linux-wireless@vger.kernel.org
9169 W:      http://wireless.kernel.org/
9170 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
9171 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
9172 S:      Maintained
9173 F:      Documentation/rfkill.txt
9174 F:      net/rfkill/
9175
9176 RHASHTABLE
9177 M:      Thomas Graf <tgraf@suug.ch>
9178 L:      netdev@vger.kernel.org
9179 S:      Maintained
9180 F:      lib/rhashtable.c
9181 F:      include/linux/rhashtable.h
9182
9183 RICOH SMARTMEDIA/XD DRIVER
9184 M:      Maxim Levitsky <maximlevitsky@gmail.com>
9185 S:      Maintained
9186 F:      drivers/mtd/nand/r852.c
9187 F:      drivers/mtd/nand/r852.h
9188
9189 RICOH R5C592 MEMORYSTICK DRIVER
9190 M:      Maxim Levitsky <maximlevitsky@gmail.com>
9191 S:      Maintained
9192 F:      drivers/memstick/host/r592.*
9193
9194 ROCCAT DRIVERS
9195 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
9196 W:      http://sourceforge.net/projects/roccat/
9197 S:      Maintained
9198 F:      drivers/hid/hid-roccat*
9199 F:      include/linux/hid-roccat*
9200 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
9201
9202 ROCKER DRIVER
9203 M:      Jiri Pirko <jiri@resnulli.us>
9204 M:      Scott Feldman <sfeldma@gmail.com>
9205 L:      netdev@vger.kernel.org
9206 S:      Supported
9207 F:      drivers/net/ethernet/rocker/
9208
9209 ROCKETPORT DRIVER
9210 P:      Comtrol Corp.
9211 W:      http://www.comtrol.com
9212 S:      Maintained
9213 F:      Documentation/serial/rocket.txt
9214 F:      drivers/tty/rocket*
9215
9216 ROCKETPORT EXPRESS/INFINITY DRIVER
9217 M:      Kevin Cernekee <cernekee@gmail.com>
9218 L:      linux-serial@vger.kernel.org
9219 S:      Odd Fixes
9220 F:      drivers/tty/serial/rp2.*
9221
9222 ROSE NETWORK LAYER
9223 M:      Ralf Baechle <ralf@linux-mips.org>
9224 L:      linux-hams@vger.kernel.org
9225 W:      http://www.linux-ax25.org/
9226 S:      Maintained
9227 F:      include/net/rose.h
9228 F:      include/uapi/linux/rose.h
9229 F:      net/rose/
9230
9231 RTL2830 MEDIA DRIVER
9232 M:      Antti Palosaari <crope@iki.fi>
9233 L:      linux-media@vger.kernel.org
9234 W:      https://linuxtv.org
9235 W:      http://palosaari.fi/linux/
9236 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9237 T:      git git://linuxtv.org/anttip/media_tree.git
9238 S:      Maintained
9239 F:      drivers/media/dvb-frontends/rtl2830*
9240
9241 RTL2832 MEDIA DRIVER
9242 M:      Antti Palosaari <crope@iki.fi>
9243 L:      linux-media@vger.kernel.org
9244 W:      https://linuxtv.org
9245 W:      http://palosaari.fi/linux/
9246 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9247 T:      git git://linuxtv.org/anttip/media_tree.git
9248 S:      Maintained
9249 F:      drivers/media/dvb-frontends/rtl2832*
9250
9251 RTL2832_SDR MEDIA DRIVER
9252 M:      Antti Palosaari <crope@iki.fi>
9253 L:      linux-media@vger.kernel.org
9254 W:      https://linuxtv.org
9255 W:      http://palosaari.fi/linux/
9256 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9257 T:      git git://linuxtv.org/anttip/media_tree.git
9258 S:      Maintained
9259 F:      drivers/media/dvb-frontends/rtl2832_sdr*
9260
9261 RTL8180 WIRELESS DRIVER
9262 L:      linux-wireless@vger.kernel.org
9263 W:      http://wireless.kernel.org/
9264 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9265 S:      Orphan
9266 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
9267
9268 RTL8187 WIRELESS DRIVER
9269 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
9270 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
9271 M:      Larry Finger <Larry.Finger@lwfinger.net>
9272 L:      linux-wireless@vger.kernel.org
9273 W:      http://wireless.kernel.org/
9274 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9275 S:      Maintained
9276 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
9277
9278 RTL8192CE WIRELESS DRIVER
9279 M:      Larry Finger <Larry.Finger@lwfinger.net>
9280 M:      Chaoming Li <chaoming_li@realsil.com.cn>
9281 L:      linux-wireless@vger.kernel.org
9282 W:      http://wireless.kernel.org/
9283 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9284 S:      Maintained
9285 F:      drivers/net/wireless/realtek/rtlwifi/
9286 F:      drivers/net/wireless/realtek/rtlwifi/rtl8192ce/
9287
9288 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
9289 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
9290 L:      linux-wireless@vger.kernel.org
9291 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8723au-mac80211
9292 S:      Maintained
9293 F:      drivers/net/wireless/realtek/rtl8xxxu/
9294
9295 S3 SAVAGE FRAMEBUFFER DRIVER
9296 M:      Antonino Daplas <adaplas@gmail.com>
9297 L:      linux-fbdev@vger.kernel.org
9298 S:      Maintained
9299 F:      drivers/video/fbdev/savage/
9300
9301 S390
9302 M:      Martin Schwidefsky <schwidefsky@de.ibm.com>
9303 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
9304 L:      linux-s390@vger.kernel.org
9305 W:      http://www.ibm.com/developerworks/linux/linux390/
9306 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
9307 S:      Supported
9308 F:      arch/s390/
9309 F:      drivers/s390/
9310 F:      Documentation/s390/
9311 F:      Documentation/DocBook/s390*
9312
9313 S390 COMMON I/O LAYER
9314 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
9315 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
9316 L:      linux-s390@vger.kernel.org
9317 W:      http://www.ibm.com/developerworks/linux/linux390/
9318 S:      Supported
9319 F:      drivers/s390/cio/
9320
9321 S390 DASD DRIVER
9322 M:      Stefan Weinhuber <wein@de.ibm.com>
9323 M:      Stefan Haberland <stefan.haberland@de.ibm.com>
9324 L:      linux-s390@vger.kernel.org
9325 W:      http://www.ibm.com/developerworks/linux/linux390/
9326 S:      Supported
9327 F:      drivers/s390/block/dasd*
9328 F:      block/partitions/ibm.c
9329
9330 S390 NETWORK DRIVERS
9331 M:      Ursula Braun <ubraun@linux.vnet.ibm.com>
9332 L:      linux-s390@vger.kernel.org
9333 W:      http://www.ibm.com/developerworks/linux/linux390/
9334 S:      Supported
9335 F:      drivers/s390/net/
9336
9337 S390 PCI SUBSYSTEM
9338 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
9339 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
9340 L:      linux-s390@vger.kernel.org
9341 W:      http://www.ibm.com/developerworks/linux/linux390/
9342 S:      Supported
9343 F:      arch/s390/pci/
9344 F:      drivers/pci/hotplug/s390_pci_hpc.c
9345
9346 S390 ZCRYPT DRIVER
9347 M:      Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
9348 L:      linux-s390@vger.kernel.org
9349 W:      http://www.ibm.com/developerworks/linux/linux390/
9350 S:      Supported
9351 F:      drivers/s390/crypto/
9352
9353 S390 ZFCP DRIVER
9354 M:      Steffen Maier <maier@linux.vnet.ibm.com>
9355 L:      linux-s390@vger.kernel.org
9356 W:      http://www.ibm.com/developerworks/linux/linux390/
9357 S:      Supported
9358 F:      drivers/s390/scsi/zfcp_*
9359
9360 S390 IUCV NETWORK LAYER
9361 M:      Ursula Braun <ubraun@linux.vnet.ibm.com>
9362 L:      linux-s390@vger.kernel.org
9363 W:      http://www.ibm.com/developerworks/linux/linux390/
9364 S:      Supported
9365 F:      drivers/s390/net/*iucv*
9366 F:      include/net/iucv/
9367 F:      net/iucv/
9368
9369 S390 IOMMU (PCI)
9370 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
9371 L:      linux-s390@vger.kernel.org
9372 W:      http://www.ibm.com/developerworks/linux/linux390/
9373 S:      Supported
9374 F:      drivers/iommu/s390-iommu.c
9375
9376 S3C24XX SD/MMC Driver
9377 M:      Ben Dooks <ben-linux@fluff.org>
9378 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9379 S:      Supported
9380 F:      drivers/mmc/host/s3cmci.*
9381
9382 SAA6588 RDS RECEIVER DRIVER
9383 M:      Hans Verkuil <hverkuil@xs4all.nl>
9384 L:      linux-media@vger.kernel.org
9385 T:      git git://linuxtv.org/media_tree.git
9386 W:      https://linuxtv.org
9387 S:      Odd Fixes
9388 F:      drivers/media/i2c/saa6588*
9389
9390 SAA7134 VIDEO4LINUX DRIVER
9391 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9392 L:      linux-media@vger.kernel.org
9393 W:      https://linuxtv.org
9394 T:      git git://linuxtv.org/media_tree.git
9395 S:      Odd fixes
9396 F:      Documentation/video4linux/*.saa7134
9397 F:      drivers/media/pci/saa7134/
9398
9399 SAA7146 VIDEO4LINUX-2 DRIVER
9400 M:      Hans Verkuil <hverkuil@xs4all.nl>
9401 L:      linux-media@vger.kernel.org
9402 T:      git git://linuxtv.org/media_tree.git
9403 S:      Maintained
9404 F:      drivers/media/common/saa7146/
9405 F:      drivers/media/pci/saa7146/
9406 F:      include/media/saa7146*
9407
9408 SAMSUNG LAPTOP DRIVER
9409 M:      Corentin Chary <corentin.chary@gmail.com>
9410 L:      platform-driver-x86@vger.kernel.org
9411 S:      Maintained
9412 F:      drivers/platform/x86/samsung-laptop.c
9413
9414 SAMSUNG AUDIO (ASoC) DRIVERS
9415 M:      Sangbeom Kim <sbkim73@samsung.com>
9416 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9417 S:      Supported
9418 F:      sound/soc/samsung/
9419
9420 SAMSUNG FRAMEBUFFER DRIVER
9421 M:      Jingoo Han <jingoohan1@gmail.com>
9422 L:      linux-fbdev@vger.kernel.org
9423 S:      Maintained
9424 F:      drivers/video/fbdev/s3c-fb.c
9425
9426 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
9427 M:      Sangbeom Kim <sbkim73@samsung.com>
9428 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
9429 L:      linux-kernel@vger.kernel.org
9430 L:      linux-samsung-soc@vger.kernel.org
9431 S:      Supported
9432 F:      drivers/mfd/sec*.c
9433 F:      drivers/regulator/s2m*.c
9434 F:      drivers/regulator/s5m*.c
9435 F:      drivers/clk/clk-s2mps11.c
9436 F:      drivers/rtc/rtc-s5m.c
9437 F:      include/linux/mfd/samsung/
9438 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
9439 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
9440 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
9441 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
9442
9443 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
9444 M:      Kyungmin Park <kyungmin.park@samsung.com>
9445 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
9446 L:      linux-media@vger.kernel.org
9447 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
9448 S:      Supported
9449 F:      drivers/media/platform/exynos4-is/
9450
9451 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
9452 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
9453 L:      linux-media@vger.kernel.org
9454 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9455 S:      Maintained
9456 F:      drivers/media/platform/s3c-camif/
9457 F:      include/media/drv-intf/s3c_camif.h
9458
9459 SAMSUNG S5C73M3 CAMERA DRIVER
9460 M:      Kyungmin Park <kyungmin.park@samsung.com>
9461 M:      Andrzej Hajda <a.hajda@samsung.com>
9462 L:      linux-media@vger.kernel.org
9463 S:      Supported
9464 F:      drivers/media/i2c/s5c73m3/*
9465
9466 SAMSUNG S5K5BAF CAMERA DRIVER
9467 M:      Kyungmin Park <kyungmin.park@samsung.com>
9468 M:      Andrzej Hajda <a.hajda@samsung.com>
9469 L:      linux-media@vger.kernel.org
9470 S:      Supported
9471 F:      drivers/media/i2c/s5k5baf.c
9472
9473 SAMSUNG S3FWRN5 NFC DRIVER
9474 M:      Robert Baldyga <r.baldyga@samsung.com>
9475 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
9476 S:      Supported
9477 F:      drivers/nfc/s3fwrn5
9478
9479 SAMSUNG SOC CLOCK DRIVERS
9480 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
9481 M:      Tomasz Figa <tomasz.figa@gmail.com>
9482 S:      Supported
9483 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9484 F:      drivers/clk/samsung/
9485
9486 SAMSUNG SXGBE DRIVERS
9487 M:      Byungho An <bh74.an@samsung.com>
9488 M:      Girish K S <ks.giri@samsung.com>
9489 M:      Vipul Pandya <vipul.pandya@samsung.com>
9490 S:      Supported
9491 L:      netdev@vger.kernel.org
9492 F:      drivers/net/ethernet/samsung/sxgbe/
9493
9494 SAMSUNG THERMAL DRIVER
9495 M:      Lukasz Majewski <l.majewski@samsung.com>
9496 L:      linux-pm@vger.kernel.org
9497 L:      linux-samsung-soc@vger.kernel.org
9498 S:      Supported
9499 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
9500 F:      drivers/thermal/samsung/
9501
9502 SAMSUNG USB2 PHY DRIVER
9503 M:      Kamil Debski <k.debski@samsung.com>
9504 L:      linux-kernel@vger.kernel.org
9505 S:      Supported
9506 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
9507 F:      Documentation/phy/samsung-usb2.txt
9508 F:      drivers/phy/phy-exynos4210-usb2.c
9509 F:      drivers/phy/phy-exynos4x12-usb2.c
9510 F:      drivers/phy/phy-exynos5250-usb2.c
9511 F:      drivers/phy/phy-s5pv210-usb2.c
9512 F:      drivers/phy/phy-samsung-usb2.c
9513 F:      drivers/phy/phy-samsung-usb2.h
9514
9515 SERIAL DRIVERS
9516 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9517 L:      linux-serial@vger.kernel.org
9518 S:      Maintained
9519 F:      drivers/tty/serial/
9520
9521 SYNOPSYS DESIGNWARE DMAC DRIVER
9522 M:      Viresh Kumar <vireshk@kernel.org>
9523 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9524 S:      Maintained
9525 F:      include/linux/dma/dw.h
9526 F:      include/linux/platform_data/dma-dw.h
9527 F:      drivers/dma/dw/
9528
9529 SYNOPSYS DESIGNWARE ETHERNET QOS 4.10a driver
9530 M: Lars Persson <lars.persson@axis.com>
9531 L: netdev@vger.kernel.org
9532 S: Supported
9533 F: Documentation/devicetree/bindings/net/snps,dwc-qos-ethernet.txt
9534 F: drivers/net/ethernet/synopsys/dwc_eth_qos.c
9535
9536 SYNOPSYS DESIGNWARE I2C DRIVER
9537 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9538 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
9539 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9540 L:      linux-i2c@vger.kernel.org
9541 S:      Maintained
9542 F:      drivers/i2c/busses/i2c-designware-*
9543 F:      include/linux/platform_data/i2c-designware.h
9544
9545 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
9546 M:      Jaehoon Chung <jh80.chung@samsung.com>
9547 L:      linux-mmc@vger.kernel.org
9548 S:      Maintained
9549 F:      include/linux/mmc/dw_mmc.h
9550 F:      drivers/mmc/host/dw_mmc*
9551
9552 SYSTEM TRACE MODULE CLASS
9553 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
9554 S:      Maintained
9555 F:      Documentation/trace/stm.txt
9556 F:      drivers/hwtracing/stm/
9557 F:      include/linux/stm.h
9558 F:      include/uapi/linux/stm.h
9559
9560 THUNDERBOLT DRIVER
9561 M:      Andreas Noever <andreas.noever@gmail.com>
9562 S:      Maintained
9563 F:      drivers/thunderbolt/
9564
9565 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
9566 M:      John Stultz <john.stultz@linaro.org>
9567 M:      Thomas Gleixner <tglx@linutronix.de>
9568 L:      linux-kernel@vger.kernel.org
9569 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
9570 S:      Supported
9571 F:      include/linux/clocksource.h
9572 F:      include/linux/time.h
9573 F:      include/linux/timex.h
9574 F:      include/uapi/linux/time.h
9575 F:      include/uapi/linux/timex.h
9576 F:      kernel/time/clocksource.c
9577 F:      kernel/time/time*.c
9578 F:      kernel/time/alarmtimer.c
9579 F:      kernel/time/ntp.c
9580 F:      tools/testing/selftests/timers/
9581
9582 SC1200 WDT DRIVER
9583 M:      Zwane Mwaikambo <zwanem@gmail.com>
9584 S:      Maintained
9585 F:      drivers/watchdog/sc1200wdt.c
9586
9587 SCHEDULER
9588 M:      Ingo Molnar <mingo@redhat.com>
9589 M:      Peter Zijlstra <peterz@infradead.org>
9590 L:      linux-kernel@vger.kernel.org
9591 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
9592 S:      Maintained
9593 F:      kernel/sched/
9594 F:      include/linux/sched.h
9595 F:      include/uapi/linux/sched.h
9596 F:      include/linux/wait.h
9597
9598 SCORE ARCHITECTURE
9599 M:      Chen Liqin <liqin.linux@gmail.com>
9600 M:      Lennox Wu <lennox.wu@gmail.com>
9601 W:      http://www.sunplus.com
9602 S:      Supported
9603 F:      arch/score/
9604
9605 SYSTEM CONTROL & POWER INTERFACE (SCPI) Message Protocol drivers
9606 M:      Sudeep Holla <sudeep.holla@arm.com>
9607 L:      linux-arm-kernel@lists.infradead.org
9608 S:      Maintained
9609 F:      Documentation/devicetree/bindings/arm/arm,scpi.txt
9610 F:      drivers/clk/clk-scpi.c
9611 F:      drivers/cpufreq/scpi-cpufreq.c
9612 F:      drivers/firmware/arm_scpi.c
9613 F:      include/linux/scpi_protocol.h
9614
9615 SCSI CDROM DRIVER
9616 M:      Jens Axboe <axboe@kernel.dk>
9617 L:      linux-scsi@vger.kernel.org
9618 W:      http://www.kernel.dk
9619 S:      Maintained
9620 F:      drivers/scsi/sr*
9621
9622 SCSI RDMA PROTOCOL (SRP) INITIATOR
9623 M:      Bart Van Assche <bart.vanassche@sandisk.com>
9624 L:      linux-rdma@vger.kernel.org
9625 S:      Supported
9626 W:      http://www.openfabrics.org
9627 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9628 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
9629 F:      drivers/infiniband/ulp/srp/
9630 F:      include/scsi/srp.h
9631
9632 SCSI SG DRIVER
9633 M:      Doug Gilbert <dgilbert@interlog.com>
9634 L:      linux-scsi@vger.kernel.org
9635 W:      http://sg.danny.cz/sg
9636 S:      Maintained
9637 F:      Documentation/scsi/scsi-generic.txt
9638 F:      drivers/scsi/sg.c
9639 F:      include/scsi/sg.h
9640
9641 SCSI SUBSYSTEM
9642 M:      "James E.J. Bottomley" <JBottomley@odin.com>
9643 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
9644 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
9645 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
9646 L:      linux-scsi@vger.kernel.org
9647 S:      Maintained
9648 F:      drivers/scsi/
9649 F:      include/scsi/
9650
9651 SCSI TAPE DRIVER
9652 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
9653 L:      linux-scsi@vger.kernel.org
9654 S:      Maintained
9655 F:      Documentation/scsi/st.txt
9656 F:      drivers/scsi/st.*
9657 F:      drivers/scsi/st_*.h
9658
9659 SCTP PROTOCOL
9660 M:      Vlad Yasevich <vyasevich@gmail.com>
9661 M:      Neil Horman <nhorman@tuxdriver.com>
9662 L:      linux-sctp@vger.kernel.org
9663 W:      http://lksctp.sourceforge.net
9664 S:      Maintained
9665 F:      Documentation/networking/sctp.txt
9666 F:      include/linux/sctp.h
9667 F:      include/uapi/linux/sctp.h
9668 F:      include/net/sctp/
9669 F:      net/sctp/
9670
9671 SCx200 CPU SUPPORT
9672 M:      Jim Cromie <jim.cromie@gmail.com>
9673 S:      Odd Fixes
9674 F:      Documentation/i2c/busses/scx200_acb
9675 F:      arch/x86/platform/scx200/
9676 F:      drivers/watchdog/scx200_wdt.c
9677 F:      drivers/i2c/busses/scx200*
9678 F:      drivers/mtd/maps/scx200_docflash.c
9679 F:      include/linux/scx200.h
9680
9681 SCx200 GPIO DRIVER
9682 M:      Jim Cromie <jim.cromie@gmail.com>
9683 S:      Maintained
9684 F:      drivers/char/scx200_gpio.c
9685 F:      include/linux/scx200_gpio.h
9686
9687 SCx200 HRT CLOCKSOURCE DRIVER
9688 M:      Jim Cromie <jim.cromie@gmail.com>
9689 S:      Maintained
9690 F:      drivers/clocksource/scx200_hrt.c
9691
9692 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
9693 M:      Sascha Sommer <saschasommer@freenet.de>
9694 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
9695 S:      Maintained
9696 F:      drivers/mmc/host/sdricoh_cs.c
9697
9698 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
9699 L:      linux-mmc@vger.kernel.org
9700 S:      Orphan
9701 F:      drivers/mmc/host/sdhci.*
9702 F:      drivers/mmc/host/sdhci-pltfm.[ch]
9703
9704 SECURE COMPUTING
9705 M:      Kees Cook <keescook@chromium.org>
9706 R:      Andy Lutomirski <luto@amacapital.net>
9707 R:      Will Drewry <wad@chromium.org>
9708 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
9709 S:      Supported
9710 F:      kernel/seccomp.c
9711 F:      include/uapi/linux/seccomp.h
9712 F:      include/linux/seccomp.h
9713 F:      tools/testing/selftests/seccomp/*
9714 K:      \bsecure_computing
9715 K:      \bTIF_SECCOMP\b
9716
9717 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
9718 M:      Ben Dooks <ben-linux@fluff.org>
9719 M:      Jaehoon Chung <jh80.chung@samsung.com>
9720 L:      linux-mmc@vger.kernel.org
9721 S:      Maintained
9722 F:      drivers/mmc/host/sdhci-s3c*
9723
9724 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
9725 M:      Viresh Kumar <vireshk@kernel.org>
9726 L:      spear-devel@list.st.com
9727 L:      linux-mmc@vger.kernel.org
9728 S:      Maintained
9729 F:      drivers/mmc/host/sdhci-spear.c
9730
9731 SECURITY SUBSYSTEM
9732 M:      James Morris <james.l.morris@oracle.com>
9733 M:      "Serge E. Hallyn" <serge@hallyn.com>
9734 L:      linux-security-module@vger.kernel.org (suggested Cc:)
9735 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
9736 W:      http://kernsec.org/
9737 S:      Supported
9738 F:      security/
9739
9740 SECURITY CONTACT
9741 M:      Security Officers <security@kernel.org>
9742 S:      Supported
9743
9744 SELINUX SECURITY MODULE
9745 M:      Paul Moore <paul@paul-moore.com>
9746 M:      Stephen Smalley <sds@tycho.nsa.gov>
9747 M:      Eric Paris <eparis@parisplace.org>
9748 L:      selinux@tycho.nsa.gov (moderated for non-subscribers)
9749 W:      http://selinuxproject.org
9750 T:      git git://git.infradead.org/users/pcmoore/selinux
9751 S:      Supported
9752 F:      include/linux/selinux*
9753 F:      security/selinux/
9754 F:      scripts/selinux/
9755
9756 APPARMOR SECURITY MODULE
9757 M:      John Johansen <john.johansen@canonical.com>
9758 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
9759 W:      apparmor.wiki.kernel.org
9760 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
9761 S:      Supported
9762 F:      security/apparmor/
9763
9764 YAMA SECURITY MODULE
9765 M:      Kees Cook <keescook@chromium.org>
9766 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
9767 S:      Supported
9768 F:      security/yama/
9769
9770 SENSABLE PHANTOM
9771 M:      Jiri Slaby <jirislaby@gmail.com>
9772 S:      Maintained
9773 F:      drivers/misc/phantom.c
9774 F:      include/uapi/linux/phantom.h
9775
9776 SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
9777 M:      Jayamohan Kallickal <jayamohan.kallickal@avagotech.com>
9778 M:      Ketan Mukadam <ketan.mukadam@avagotech.com>
9779 M:      John Soni Jose <sony.john@avagotech.com>
9780 L:      linux-scsi@vger.kernel.org
9781 W:      http://www.avagotech.com
9782 S:      Supported
9783 F:      drivers/scsi/be2iscsi/
9784
9785 Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER
9786 M:      Sathya Perla <sathya.perla@broadcom.com>
9787 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
9788 M:      Padmanabh Ratnakar <padmanabh.ratnakar@broadcom.com>
9789 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
9790 M:      Somnath Kotur <somnath.kotur@broadcom.com>
9791 L:      netdev@vger.kernel.org
9792 W:      http://www.emulex.com
9793 S:      Supported
9794 F:      drivers/net/ethernet/emulex/benet/
9795
9796 EMULEX ONECONNECT ROCE DRIVER
9797 M:      Selvin Xavier <selvin.xavier@avagotech.com>
9798 M:      Devesh Sharma <devesh.sharma@avagotech.com>
9799 M:      Mitesh Ahuja <mitesh.ahuja@avagotech.com>
9800 L:      linux-rdma@vger.kernel.org
9801 W:      http://www.emulex.com
9802 S:      Supported
9803 F:      drivers/infiniband/hw/ocrdma/
9804
9805 SFC NETWORK DRIVER
9806 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
9807 M:      Shradha Shah <sshah@solarflare.com>
9808 L:      netdev@vger.kernel.org
9809 S:      Supported
9810 F:      drivers/net/ethernet/sfc/
9811
9812 SGI GRU DRIVER
9813 M:      Dimitri Sivanich <sivanich@sgi.com>
9814 S:      Maintained
9815 F:      drivers/misc/sgi-gru/
9816
9817 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
9818 M:      Pat Gefre <pfg@sgi.com>
9819 L:      linux-ia64@vger.kernel.org
9820 S:      Supported
9821 F:      Documentation/ia64/serial.txt
9822 F:      drivers/tty/serial/ioc?_serial.c
9823 F:      include/linux/ioc?.h
9824
9825 SGI XP/XPC/XPNET DRIVER
9826 M:      Cliff Whickman <cpw@sgi.com>
9827 M:      Robin Holt <robinmholt@gmail.com>
9828 S:      Maintained
9829 F:      drivers/misc/sgi-xp/
9830
9831 SI2157 MEDIA DRIVER
9832 M:      Antti Palosaari <crope@iki.fi>
9833 L:      linux-media@vger.kernel.org
9834 W:      https://linuxtv.org
9835 W:      http://palosaari.fi/linux/
9836 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9837 T:      git git://linuxtv.org/anttip/media_tree.git
9838 S:      Maintained
9839 F:      drivers/media/tuners/si2157*
9840
9841 SI2168 MEDIA DRIVER
9842 M:      Antti Palosaari <crope@iki.fi>
9843 L:      linux-media@vger.kernel.org
9844 W:      https://linuxtv.org
9845 W:      http://palosaari.fi/linux/
9846 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9847 T:      git git://linuxtv.org/anttip/media_tree.git
9848 S:      Maintained
9849 F:      drivers/media/dvb-frontends/si2168*
9850
9851 SI470X FM RADIO RECEIVER I2C DRIVER
9852 M:      Hans Verkuil <hverkuil@xs4all.nl>
9853 L:      linux-media@vger.kernel.org
9854 T:      git git://linuxtv.org/media_tree.git
9855 W:      https://linuxtv.org
9856 S:      Odd Fixes
9857 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
9858
9859 SI470X FM RADIO RECEIVER USB DRIVER
9860 M:      Hans Verkuil <hverkuil@xs4all.nl>
9861 L:      linux-media@vger.kernel.org
9862 T:      git git://linuxtv.org/media_tree.git
9863 W:      https://linuxtv.org
9864 S:      Maintained
9865 F:      drivers/media/radio/si470x/radio-si470x-common.c
9866 F:      drivers/media/radio/si470x/radio-si470x.h
9867 F:      drivers/media/radio/si470x/radio-si470x-usb.c
9868
9869 SI4713 FM RADIO TRANSMITTER I2C DRIVER
9870 M:      Eduardo Valentin <edubezval@gmail.com>
9871 L:      linux-media@vger.kernel.org
9872 T:      git git://linuxtv.org/media_tree.git
9873 W:      https://linuxtv.org
9874 S:      Odd Fixes
9875 F:      drivers/media/radio/si4713/si4713.?
9876
9877 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
9878 M:      Eduardo Valentin <edubezval@gmail.com>
9879 L:      linux-media@vger.kernel.org
9880 T:      git git://linuxtv.org/media_tree.git
9881 W:      https://linuxtv.org
9882 S:      Odd Fixes
9883 F:      drivers/media/radio/si4713/radio-platform-si4713.c
9884
9885 SI4713 FM RADIO TRANSMITTER USB DRIVER
9886 M:      Hans Verkuil <hverkuil@xs4all.nl>
9887 L:      linux-media@vger.kernel.org
9888 T:      git git://linuxtv.org/media_tree.git
9889 W:      https://linuxtv.org
9890 S:      Maintained
9891 F:      drivers/media/radio/si4713/radio-usb-si4713.c
9892
9893 SIANO DVB DRIVER
9894 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9895 L:      linux-media@vger.kernel.org
9896 W:      https://linuxtv.org
9897 T:      git git://linuxtv.org/media_tree.git
9898 S:      Odd fixes
9899 F:      drivers/media/common/siano/
9900 F:      drivers/media/usb/siano/
9901 F:      drivers/media/usb/siano/
9902 F:      drivers/media/mmc/siano/
9903
9904 SIMPLEFB FB DRIVER
9905 M:      Hans de Goede <hdegoede@redhat.com>
9906 L:      linux-fbdev@vger.kernel.org
9907 S:      Maintained
9908 F:      Documentation/devicetree/bindings/display/simple-framebuffer.txt
9909 F:      drivers/video/fbdev/simplefb.c
9910 F:      include/linux/platform_data/simplefb.h
9911
9912 SH_VEU V4L2 MEM2MEM DRIVER
9913 L:      linux-media@vger.kernel.org
9914 S:      Orphan
9915 F:      drivers/media/platform/sh_veu.c
9916
9917 SH_VOU V4L2 OUTPUT DRIVER
9918 L:      linux-media@vger.kernel.org
9919 S:      Orphan
9920 F:      drivers/media/platform/sh_vou.c
9921 F:      include/media/drv-intf/sh_vou.h
9922
9923 SIMPLE FIRMWARE INTERFACE (SFI)
9924 M:      Len Brown <lenb@kernel.org>
9925 L:      sfi-devel@simplefirmware.org
9926 W:      http://simplefirmware.org/
9927 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
9928 S:      Supported
9929 F:      arch/x86/platform/sfi/
9930 F:      drivers/sfi/
9931 F:      include/linux/sfi*.h
9932
9933 SIMTEC EB110ATX (Chalice CATS)
9934 P:      Ben Dooks
9935 P:      Vincent Sanders <vince@simtec.co.uk>
9936 M:      Simtec Linux Team <linux@simtec.co.uk>
9937 W:      http://www.simtec.co.uk/products/EB110ATX/
9938 S:      Supported
9939
9940 SIMTEC EB2410ITX (BAST)
9941 P:      Ben Dooks
9942 P:      Vincent Sanders <vince@simtec.co.uk>
9943 M:      Simtec Linux Team <linux@simtec.co.uk>
9944 W:      http://www.simtec.co.uk/products/EB2410ITX/
9945 S:      Supported
9946 F:      arch/arm/mach-s3c24xx/mach-bast.c
9947 F:      arch/arm/mach-s3c24xx/bast-ide.c
9948 F:      arch/arm/mach-s3c24xx/bast-irq.c
9949
9950 TI DAVINCI MACHINE SUPPORT
9951 M:      Sekhar Nori <nsekhar@ti.com>
9952 M:      Kevin Hilman <khilman@deeprootsystems.com>
9953 T:      git git://gitorious.org/linux-davinci/linux-davinci.git
9954 Q:      http://patchwork.kernel.org/project/linux-davinci/list/
9955 S:      Supported
9956 F:      arch/arm/mach-davinci/
9957 F:      drivers/i2c/busses/i2c-davinci.c
9958
9959 TI DAVINCI SERIES MEDIA DRIVER
9960 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9961 L:      linux-media@vger.kernel.org
9962 W:      https://linuxtv.org
9963 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9964 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9965 S:      Maintained
9966 F:      drivers/media/platform/davinci/
9967 F:      include/media/davinci/
9968
9969 TI AM437X VPFE DRIVER
9970 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9971 L:      linux-media@vger.kernel.org
9972 W:      https://linuxtv.org
9973 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9974 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9975 S:      Maintained
9976 F:      drivers/media/platform/am437x/
9977
9978 OV2659 OMNIVISION SENSOR DRIVER
9979 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9980 L:      linux-media@vger.kernel.org
9981 W:      https://linuxtv.org
9982 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9983 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9984 S:      Maintained
9985 F:      drivers/media/i2c/ov2659.c
9986 F:      include/media/i2c/ov2659.h
9987
9988 SILICON MOTION SM712 FRAME BUFFER DRIVER
9989 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
9990 M:      Teddy Wang <teddy.wang@siliconmotion.com>
9991 M:      Sudip Mukherjee <sudip@vectorindia.org>
9992 L:      linux-fbdev@vger.kernel.org
9993 S:      Maintained
9994 F:      drivers/video/fbdev/sm712*
9995 F:      Documentation/fb/sm712fb.txt
9996
9997 SIS 190 ETHERNET DRIVER
9998 M:      Francois Romieu <romieu@fr.zoreil.com>
9999 L:      netdev@vger.kernel.org
10000 S:      Maintained
10001 F:      drivers/net/ethernet/sis/sis190.c
10002
10003 SIS 900/7016 FAST ETHERNET DRIVER
10004 M:      Daniele Venzano <venza@brownhat.org>
10005 W:      http://www.brownhat.org/sis900.html
10006 L:      netdev@vger.kernel.org
10007 S:      Maintained
10008 F:      drivers/net/ethernet/sis/sis900.*
10009
10010 SIS FRAMEBUFFER DRIVER
10011 M:      Thomas Winischhofer <thomas@winischhofer.net>
10012 W:      http://www.winischhofer.net/linuxsisvga.shtml
10013 S:      Maintained
10014 F:      Documentation/fb/sisfb.txt
10015 F:      drivers/video/fbdev/sis/
10016 F:      include/video/sisfb.h
10017
10018 SIS USB2VGA DRIVER
10019 M:      Thomas Winischhofer <thomas@winischhofer.net>
10020 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
10021 S:      Maintained
10022 F:      drivers/usb/misc/sisusbvga/
10023
10024 SLAB ALLOCATOR
10025 M:      Christoph Lameter <cl@linux.com>
10026 M:      Pekka Enberg <penberg@kernel.org>
10027 M:      David Rientjes <rientjes@google.com>
10028 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
10029 M:      Andrew Morton <akpm@linux-foundation.org>
10030 L:      linux-mm@kvack.org
10031 S:      Maintained
10032 F:      include/linux/sl?b*.h
10033 F:      mm/sl?b*
10034
10035 SLEEPABLE READ-COPY UPDATE (SRCU)
10036 M:      Lai Jiangshan <jiangshanlai@gmail.com>
10037 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
10038 M:      Josh Triplett <josh@joshtriplett.org>
10039 R:      Steven Rostedt <rostedt@goodmis.org>
10040 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
10041 L:      linux-kernel@vger.kernel.org
10042 W:      http://www.rdrop.com/users/paulmck/RCU/
10043 S:      Supported
10044 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
10045 F:      include/linux/srcu.h
10046 F:      kernel/rcu/srcu.c
10047
10048 SMACK SECURITY MODULE
10049 M:      Casey Schaufler <casey@schaufler-ca.com>
10050 L:      linux-security-module@vger.kernel.org
10051 W:      http://schaufler-ca.com
10052 T:      git git://git.gitorious.org/smack-next/kernel.git
10053 S:      Maintained
10054 F:      Documentation/security/Smack.txt
10055 F:      security/smack/
10056
10057 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
10058 M:      Kevin Hilman <khilman@kernel.org>
10059 M:      Nishanth Menon <nm@ti.com>
10060 S:      Maintained
10061 F:      drivers/power/avs/
10062 F:      include/linux/power/smartreflex.h
10063 L:      linux-pm@vger.kernel.org
10064
10065 SMC91x ETHERNET DRIVER
10066 M:      Nicolas Pitre <nico@fluxnic.net>
10067 S:      Odd Fixes
10068 F:      drivers/net/ethernet/smsc/smc91x.*
10069
10070 SMIA AND SMIA++ IMAGE SENSOR DRIVER
10071 M:      Sakari Ailus <sakari.ailus@iki.fi>
10072 L:      linux-media@vger.kernel.org
10073 S:      Maintained
10074 F:      drivers/media/i2c/smiapp/
10075 F:      include/media/i2c/smiapp.h
10076 F:      drivers/media/i2c/smiapp-pll.c
10077 F:      drivers/media/i2c/smiapp-pll.h
10078 F:      include/uapi/linux/smiapp.h
10079 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
10080
10081 SMM665 HARDWARE MONITOR DRIVER
10082 M:      Guenter Roeck <linux@roeck-us.net>
10083 L:      lm-sensors@lm-sensors.org
10084 S:      Maintained
10085 F:      Documentation/hwmon/smm665
10086 F:      drivers/hwmon/smm665.c
10087
10088 SMSC EMC2103 HARDWARE MONITOR DRIVER
10089 M:      Steve Glendinning <steve.glendinning@shawell.net>
10090 L:      lm-sensors@lm-sensors.org
10091 S:      Maintained
10092 F:      Documentation/hwmon/emc2103
10093 F:      drivers/hwmon/emc2103.c
10094
10095 SMSC SCH5627 HARDWARE MONITOR DRIVER
10096 M:      Hans de Goede <hdegoede@redhat.com>
10097 L:      lm-sensors@lm-sensors.org
10098 S:      Supported
10099 F:      Documentation/hwmon/sch5627
10100 F:      drivers/hwmon/sch5627.c
10101
10102 SMSC47B397 HARDWARE MONITOR DRIVER
10103 M:      Jean Delvare <jdelvare@suse.com>
10104 L:      lm-sensors@lm-sensors.org
10105 S:      Maintained
10106 F:      Documentation/hwmon/smsc47b397
10107 F:      drivers/hwmon/smsc47b397.c
10108
10109 SMSC911x ETHERNET DRIVER
10110 M:      Steve Glendinning <steve.glendinning@shawell.net>
10111 L:      netdev@vger.kernel.org
10112 S:      Maintained
10113 F:      include/linux/smsc911x.h
10114 F:      drivers/net/ethernet/smsc/smsc911x.*
10115
10116 SMSC9420 PCI ETHERNET DRIVER
10117 M:      Steve Glendinning <steve.glendinning@shawell.net>
10118 L:      netdev@vger.kernel.org
10119 S:      Maintained
10120 F:      drivers/net/ethernet/smsc/smsc9420.*
10121
10122 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
10123 M:      Steve Glendinning <steve.glendinning@shawell.net>
10124 L:      linux-fbdev@vger.kernel.org
10125 S:      Maintained
10126 F:      drivers/video/fbdev/smscufx.c
10127
10128 SOC-CAMERA V4L2 SUBSYSTEM
10129 M:      Guennadi Liakhovetski <g.liakhovetski@gmx.de>
10130 L:      linux-media@vger.kernel.org
10131 T:      git git://linuxtv.org/media_tree.git
10132 S:      Maintained
10133 F:      include/media/soc*
10134 F:      drivers/media/i2c/soc_camera/
10135 F:      drivers/media/platform/soc_camera/
10136
10137 SOEKRIS NET48XX LED SUPPORT
10138 M:      Chris Boot <bootc@bootc.net>
10139 S:      Maintained
10140 F:      drivers/leds/leds-net48xx.c
10141
10142 SOFTLOGIC 6x10 MPEG CODEC
10143 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
10144 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
10145 M:      Andrey Utkin <andrey.krieger.utkin@gmail.com>
10146 M:      Ismael Luceno <ismael@iodev.co.uk>
10147 L:      linux-media@vger.kernel.org
10148 S:      Supported
10149 F:      drivers/media/pci/solo6x10/
10150
10151 SOFTWARE RAID (Multiple Disks) SUPPORT
10152 M:      Shaohua Li <shli@kernel.org>
10153 L:      linux-raid@vger.kernel.org
10154 T:      git git://neil.brown.name/md
10155 S:      Supported
10156 F:      drivers/md/
10157 F:      include/linux/raid/
10158 F:      include/uapi/linux/raid/
10159
10160 SONIC NETWORK DRIVER
10161 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
10162 L:      netdev@vger.kernel.org
10163 S:      Maintained
10164 F:      drivers/net/ethernet/natsemi/sonic.*
10165
10166 SONICS SILICON BACKPLANE DRIVER (SSB)
10167 M:      Michael Buesch <m@bues.ch>
10168 L:      linux-wireless@vger.kernel.org
10169 S:      Maintained
10170 F:      drivers/ssb/
10171 F:      include/linux/ssb/
10172
10173 SONY VAIO CONTROL DEVICE DRIVER
10174 M:      Mattia Dongili <malattia@linux.it>
10175 L:      platform-driver-x86@vger.kernel.org
10176 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
10177 S:      Maintained
10178 F:      Documentation/laptops/sony-laptop.txt
10179 F:      drivers/char/sonypi.c
10180 F:      drivers/platform/x86/sony-laptop.c
10181 F:      include/linux/sony-laptop.h
10182
10183 SONY MEMORYSTICK CARD SUPPORT
10184 M:      Alex Dubov <oakad@yahoo.com>
10185 W:      http://tifmxx.berlios.de/
10186 S:      Maintained
10187 F:      drivers/memstick/host/tifm_ms.c
10188
10189 SONY MEMORYSTICK STANDARD SUPPORT
10190 M:      Maxim Levitsky <maximlevitsky@gmail.com>
10191 S:      Maintained
10192 F:      drivers/memstick/core/ms_block.*
10193
10194 SOUND
10195 M:      Jaroslav Kysela <perex@perex.cz>
10196 M:      Takashi Iwai <tiwai@suse.com>
10197 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10198 W:      http://www.alsa-project.org/
10199 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
10200 T:      git git://git.alsa-project.org/alsa-kernel.git
10201 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
10202 S:      Maintained
10203 F:      Documentation/sound/
10204 F:      include/sound/
10205 F:      include/uapi/sound/
10206 F:      sound/
10207
10208 SOUND - COMPRESSED AUDIO
10209 M:      Vinod Koul <vinod.koul@intel.com>
10210 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10211 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
10212 S:      Supported
10213 F:      Documentation/sound/alsa/compress_offload.txt
10214 F:      include/sound/compress_driver.h
10215 F:      include/uapi/sound/compress_*
10216 F:      sound/core/compress_offload.c
10217 F:      sound/soc/soc-compress.c
10218
10219 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
10220 M:      Liam Girdwood <lgirdwood@gmail.com>
10221 M:      Mark Brown <broonie@kernel.org>
10222 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
10223 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10224 W:      http://alsa-project.org/main/index.php/ASoC
10225 S:      Supported
10226 F:      Documentation/sound/alsa/soc/
10227 F:      sound/soc/
10228 F:      include/sound/soc*
10229
10230 SOUND - DMAENGINE HELPERS
10231 M:      Lars-Peter Clausen <lars@metafoo.de>
10232 S:      Supported
10233 F:      include/sound/dmaengine_pcm.h
10234 F:      sound/core/pcm_dmaengine.c
10235 F:      sound/soc/soc-generic-dmaengine-pcm.c
10236
10237 SP2 MEDIA DRIVER
10238 M:      Olli Salonen <olli.salonen@iki.fi>
10239 L:      linux-media@vger.kernel.org
10240 W:      https://linuxtv.org
10241 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10242 S:      Maintained
10243 F:      drivers/media/dvb-frontends/sp2*
10244
10245 SPARC + UltraSPARC (sparc/sparc64)
10246 M:      "David S. Miller" <davem@davemloft.net>
10247 L:      sparclinux@vger.kernel.org
10248 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
10249 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
10250 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
10251 S:      Maintained
10252 F:      arch/sparc/
10253 F:      drivers/sbus/
10254
10255 SPARC SERIAL DRIVERS
10256 M:      "David S. Miller" <davem@davemloft.net>
10257 L:      sparclinux@vger.kernel.org
10258 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
10259 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
10260 S:      Maintained
10261 F:      include/linux/sunserialcore.h
10262 F:      drivers/tty/serial/suncore.c
10263 F:      drivers/tty/serial/sunhv.c
10264 F:      drivers/tty/serial/sunsab.c
10265 F:      drivers/tty/serial/sunsab.h
10266 F:      drivers/tty/serial/sunsu.c
10267 F:      drivers/tty/serial/sunzilog.c
10268 F:      drivers/tty/serial/sunzilog.h
10269
10270 SPARSE CHECKER
10271 M:      "Christopher Li" <sparse@chrisli.org>
10272 L:      linux-sparse@vger.kernel.org
10273 W:      https://sparse.wiki.kernel.org/
10274 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
10275 T:      git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
10276 S:      Maintained
10277 F:      include/linux/compiler.h
10278
10279 SPEAR PLATFORM SUPPORT
10280 M:      Viresh Kumar <vireshk@kernel.org>
10281 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
10282 L:      spear-devel@list.st.com
10283 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10284 W:      http://www.st.com/spear
10285 S:      Maintained
10286 F:      arch/arm/boot/dts/spear*
10287 F:      arch/arm/mach-spear/
10288
10289 SPEAR CLOCK FRAMEWORK SUPPORT
10290 M:      Viresh Kumar <vireshk@kernel.org>
10291 L:      spear-devel@list.st.com
10292 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10293 W:      http://www.st.com/spear
10294 S:      Maintained
10295 F:      drivers/clk/spear/
10296
10297 SPI SUBSYSTEM
10298 M:      Mark Brown <broonie@kernel.org>
10299 L:      linux-spi@vger.kernel.org
10300 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
10301 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
10302 S:      Maintained
10303 F:      Documentation/spi/
10304 F:      drivers/spi/
10305 F:      include/linux/spi/
10306 F:      include/uapi/linux/spi/
10307
10308 SPIDERNET NETWORK DRIVER for CELL
10309 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
10310 L:      netdev@vger.kernel.org
10311 S:      Supported
10312 F:      Documentation/networking/spider_net.txt
10313 F:      drivers/net/ethernet/toshiba/spider_net*
10314
10315 SPU FILE SYSTEM
10316 M:      Jeremy Kerr <jk@ozlabs.org>
10317 L:      linuxppc-dev@lists.ozlabs.org
10318 W:      http://www.ibm.com/developerworks/power/cell/
10319 S:      Supported
10320 F:      Documentation/filesystems/spufs.txt
10321 F:      arch/powerpc/platforms/cell/spufs/
10322
10323 SQUASHFS FILE SYSTEM
10324 M:      Phillip Lougher <phillip@squashfs.org.uk>
10325 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
10326 W:      http://squashfs.org.uk
10327 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
10328 S:      Maintained
10329 F:      Documentation/filesystems/squashfs.txt
10330 F:      fs/squashfs/
10331
10332 SRM (Alpha) environment access
10333 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
10334 S:      Maintained
10335 F:      arch/alpha/kernel/srm_env.c
10336
10337 STABLE BRANCH
10338 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10339 L:      stable@vger.kernel.org
10340 S:      Supported
10341 F:      Documentation/stable_kernel_rules.txt
10342
10343 STAGING SUBSYSTEM
10344 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10345 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
10346 L:      devel@driverdev.osuosl.org
10347 S:      Supported
10348 F:      drivers/staging/
10349
10350 STAGING - COMEDI
10351 M:      Ian Abbott <abbotti@mev.co.uk>
10352 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
10353 S:      Odd Fixes
10354 F:      drivers/staging/comedi/
10355
10356 STAGING - FLARION FT1000 DRIVERS
10357 M:      Marek Belisko <marek.belisko@gmail.com>
10358 S:      Odd Fixes
10359 F:      drivers/staging/ft1000/
10360
10361 STAGING - INDUSTRIAL IO
10362 M:      Jonathan Cameron <jic23@kernel.org>
10363 L:      linux-iio@vger.kernel.org
10364 S:      Odd Fixes
10365 F:      drivers/staging/iio/
10366
10367 STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
10368 M:      Jarod Wilson <jarod@wilsonet.com>
10369 W:      http://www.lirc.org/
10370 S:      Odd Fixes
10371 F:      drivers/staging/media/lirc/
10372
10373 STAGING - LUSTRE PARALLEL FILESYSTEM
10374 M:      Oleg Drokin <oleg.drokin@intel.com>
10375 M:      Andreas Dilger <andreas.dilger@intel.com>
10376 L:      lustre-devel@lists.lustre.org (moderated for non-subscribers)
10377 W:      http://wiki.lustre.org/
10378 S:      Maintained
10379 F:      drivers/staging/lustre
10380
10381 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
10382 M:      Marc Dietrich <marvin24@gmx.de>
10383 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
10384 L:      linux-tegra@vger.kernel.org
10385 S:      Maintained
10386 F:      drivers/staging/nvec/
10387
10388 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
10389 M:      Jens Frederich <jfrederich@gmail.com>
10390 M:      Daniel Drake <dsd@laptop.org>
10391 M:      Jon Nettleton <jon.nettleton@gmail.com>
10392 W:      http://wiki.laptop.org/go/DCON
10393 S:      Maintained
10394 F:      drivers/staging/olpc_dcon/
10395
10396 STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
10397 M:      Willy Tarreau <willy@meta-x.org>
10398 S:      Odd Fixes
10399 F:      drivers/staging/panel/
10400
10401 STAGING - REALTEK RTL8712U DRIVERS
10402 M:      Larry Finger <Larry.Finger@lwfinger.net>
10403 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
10404 S:      Odd Fixes
10405 F:      drivers/staging/rtl8712/
10406
10407 STAGING - REALTEK RTL8723U WIRELESS DRIVER
10408 M:      Larry Finger <Larry.Finger@lwfinger.net>
10409 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
10410 L:      linux-wireless@vger.kernel.org
10411 S:      Maintained
10412 F:      drivers/staging/rtl8723au/
10413
10414 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
10415 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
10416 M:      Teddy Wang <teddy.wang@siliconmotion.com>
10417 M:      Sudip Mukherjee <sudip@vectorindia.org>
10418 L:      linux-fbdev@vger.kernel.org
10419 S:      Maintained
10420 F:      drivers/staging/sm750fb/
10421
10422 STAGING - SLICOSS
10423 M:      Lior Dotan <liodot@gmail.com>
10424 M:      Christopher Harrer <charrer@alacritech.com>
10425 S:      Odd Fixes
10426 F:      drivers/staging/slicoss/
10427
10428 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
10429 M:      William Hubbs <w.d.hubbs@gmail.com>
10430 M:      Chris Brannon <chris@the-brannons.com>
10431 M:      Kirk Reiser <kirk@reisers.ca>
10432 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
10433 L:      speakup@linux-speakup.org
10434 W:      http://www.linux-speakup.org/
10435 S:      Odd Fixes
10436 F:      drivers/staging/speakup/
10437
10438 STAGING - VIA VT665X DRIVERS
10439 M:      Forest Bond <forest@alittletooquiet.net>
10440 S:      Odd Fixes
10441 F:      drivers/staging/vt665?/
10442
10443 STAGING - WILC1000 WIFI DRIVER
10444 M:      Johnny Kim <johnny.kim@atmel.com>
10445 M:      Austin Shin <austin.shin@atmel.com>
10446 M:      Chris Park <chris.park@atmel.com>
10447 M:      Tony Cho <tony.cho@atmel.com>
10448 M:      Glen Lee <glen.lee@atmel.com>
10449 M:      Leo Kim <leo.kim@atmel.com>
10450 L:      linux-wireless@vger.kernel.org
10451 S:      Supported
10452 F:      drivers/staging/wilc1000/
10453
10454 STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
10455 M:      Arnaud Patard <arnaud.patard@rtp-net.org>
10456 S:      Odd Fixes
10457 F:      drivers/staging/xgifb/
10458
10459 HFI1 DRIVER
10460 M:      Mike Marciniszyn <infinipath@intel.com>
10461 L:      linux-rdma@vger.kernel.org
10462 S:      Supported
10463 F:      drivers/staging/rdma/hfi1
10464
10465 STARFIRE/DURALAN NETWORK DRIVER
10466 M:      Ion Badulescu <ionut@badula.org>
10467 S:      Odd Fixes
10468 F:      drivers/net/ethernet/adaptec/starfire*
10469
10470 SUN3/3X
10471 M:      Sam Creasey <sammy@sammy.net>
10472 W:      http://sammy.net/sun3/
10473 S:      Maintained
10474 F:      arch/m68k/kernel/*sun3*
10475 F:      arch/m68k/sun3*/
10476 F:      arch/m68k/include/asm/sun3*
10477 F:      drivers/net/ethernet/i825xx/sun3*
10478
10479 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
10480 M:      Hans de Goede <hdegoede@redhat.com>
10481 L:      linux-input@vger.kernel.org
10482 S:      Maintained
10483 F:      Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
10484 F:      drivers/input/keyboard/sun4i-lradc-keys.c
10485
10486 SUNDANCE NETWORK DRIVER
10487 M:      Denis Kirjanov <kda@linux-powerpc.org>
10488 L:      netdev@vger.kernel.org
10489 S:      Maintained
10490 F:      drivers/net/ethernet/dlink/sundance.c
10491
10492 SUPERH
10493 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
10494 M:      Rich Felker <dalias@libc.org>
10495 L:      linux-sh@vger.kernel.org
10496 Q:      http://patchwork.kernel.org/project/linux-sh/list/
10497 S:      Maintained
10498 F:      Documentation/sh/
10499 F:      arch/sh/
10500 F:      drivers/sh/
10501
10502 SUSPEND TO RAM
10503 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
10504 M:      Len Brown <len.brown@intel.com>
10505 M:      Pavel Machek <pavel@ucw.cz>
10506 L:      linux-pm@vger.kernel.org
10507 S:      Supported
10508 F:      Documentation/power/
10509 F:      arch/x86/kernel/acpi/
10510 F:      drivers/base/power/
10511 F:      kernel/power/
10512 F:      include/linux/suspend.h
10513 F:      include/linux/freezer.h
10514 F:      include/linux/pm.h
10515
10516 SVGA HANDLING
10517 M:      Martin Mares <mj@ucw.cz>
10518 L:      linux-video@atrey.karlin.mff.cuni.cz
10519 S:      Maintained
10520 F:      Documentation/svga.txt
10521 F:      arch/x86/boot/video*
10522
10523 SWIOTLB SUBSYSTEM
10524 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10525 L:      linux-kernel@vger.kernel.org
10526 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
10527 S:      Supported
10528 F:      lib/swiotlb.c
10529 F:      arch/*/kernel/pci-swiotlb.c
10530 F:      include/linux/swiotlb.h
10531
10532 SWITCHDEV
10533 M:      Jiri Pirko <jiri@resnulli.us>
10534 L:      netdev@vger.kernel.org
10535 S:      Supported
10536 F:      net/switchdev/
10537 F:      include/net/switchdev.h
10538
10539 SYNOPSYS ARC ARCHITECTURE
10540 M:      Vineet Gupta <vgupta@synopsys.com>
10541 L:      linux-snps-arc@lists.infradead.org
10542 S:      Supported
10543 F:      arch/arc/
10544 F:      Documentation/devicetree/bindings/arc/*
10545 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
10546 F:      drivers/tty/serial/arc_uart.c
10547 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
10548
10549 SYNOPSYS ARC SDP platform support
10550 M:      Alexey Brodkin <abrodkin@synopsys.com>
10551 S:      Supported
10552 F:      arch/arc/plat-axs10x
10553 F:      arch/arc/boot/dts/ax*
10554 F:      Documentation/devicetree/bindings/arc/axs10*
10555
10556 SYSTEM CONFIGURATION (SYSCON)
10557 M:      Lee Jones <lee.jones@linaro.org>
10558 M:      Arnd Bergmann <arnd@arndb.de>
10559 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
10560 S:      Supported
10561 F:      drivers/mfd/syscon.c
10562
10563 SYSV FILESYSTEM
10564 M:      Christoph Hellwig <hch@infradead.org>
10565 S:      Maintained
10566 F:      Documentation/filesystems/sysv-fs.txt
10567 F:      fs/sysv/
10568 F:      include/linux/sysv_fs.h
10569
10570 TARGET SUBSYSTEM
10571 M:      "Nicholas A. Bellinger" <nab@linux-iscsi.org>
10572 L:      linux-scsi@vger.kernel.org
10573 L:      target-devel@vger.kernel.org
10574 W:      http://www.linux-iscsi.org
10575 W:      http://groups.google.com/group/linux-iscsi-target-dev
10576 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10577 S:      Supported
10578 F:      drivers/target/
10579 F:      include/target/
10580 F:      Documentation/target/
10581
10582 TASKSTATS STATISTICS INTERFACE
10583 M:      Balbir Singh <bsingharora@gmail.com>
10584 S:      Maintained
10585 F:      Documentation/accounting/taskstats*
10586 F:      include/linux/taskstats*
10587 F:      kernel/taskstats.c
10588
10589 TC CLASSIFIER
10590 M:      Jamal Hadi Salim <jhs@mojatatu.com>
10591 L:      netdev@vger.kernel.org
10592 S:      Maintained
10593 F:      include/net/pkt_cls.h
10594 F:      include/uapi/linux/pkt_cls.h
10595 F:      net/sched/
10596
10597 TCP LOW PRIORITY MODULE
10598 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
10599 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
10600 W:      http://tcp-lp-mod.sourceforge.net/
10601 S:      Maintained
10602 F:      net/ipv4/tcp_lp.c
10603
10604 TDA10071 MEDIA DRIVER
10605 M:      Antti Palosaari <crope@iki.fi>
10606 L:      linux-media@vger.kernel.org
10607 W:      https://linuxtv.org
10608 W:      http://palosaari.fi/linux/
10609 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10610 T:      git git://linuxtv.org/anttip/media_tree.git
10611 S:      Maintained
10612 F:      drivers/media/dvb-frontends/tda10071*
10613
10614 TDA18212 MEDIA DRIVER
10615 M:      Antti Palosaari <crope@iki.fi>
10616 L:      linux-media@vger.kernel.org
10617 W:      https://linuxtv.org
10618 W:      http://palosaari.fi/linux/
10619 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10620 T:      git git://linuxtv.org/anttip/media_tree.git
10621 S:      Maintained
10622 F:      drivers/media/tuners/tda18212*
10623
10624 TDA18218 MEDIA DRIVER
10625 M:      Antti Palosaari <crope@iki.fi>
10626 L:      linux-media@vger.kernel.org
10627 W:      https://linuxtv.org
10628 W:      http://palosaari.fi/linux/
10629 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10630 T:      git git://linuxtv.org/anttip/media_tree.git
10631 S:      Maintained
10632 F:      drivers/media/tuners/tda18218*
10633
10634 TDA18271 MEDIA DRIVER
10635 M:      Michael Krufky <mkrufky@linuxtv.org>
10636 L:      linux-media@vger.kernel.org
10637 W:      https://linuxtv.org
10638 W:      http://github.com/mkrufky
10639 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10640 T:      git git://linuxtv.org/mkrufky/tuners.git
10641 S:      Maintained
10642 F:      drivers/media/tuners/tda18271*
10643
10644 TDA827x MEDIA DRIVER
10645 M:      Michael Krufky <mkrufky@linuxtv.org>
10646 L:      linux-media@vger.kernel.org
10647 W:      https://linuxtv.org
10648 W:      http://github.com/mkrufky
10649 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10650 T:      git git://linuxtv.org/mkrufky/tuners.git
10651 S:      Maintained
10652 F:      drivers/media/tuners/tda8290.*
10653
10654 TDA8290 MEDIA DRIVER
10655 M:      Michael Krufky <mkrufky@linuxtv.org>
10656 L:      linux-media@vger.kernel.org
10657 W:      https://linuxtv.org
10658 W:      http://github.com/mkrufky
10659 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10660 T:      git git://linuxtv.org/mkrufky/tuners.git
10661 S:      Maintained
10662 F:      drivers/media/tuners/tda8290.*
10663
10664 TDA9840 MEDIA DRIVER
10665 M:      Hans Verkuil <hverkuil@xs4all.nl>
10666 L:      linux-media@vger.kernel.org
10667 T:      git git://linuxtv.org/media_tree.git
10668 W:      https://linuxtv.org
10669 S:      Maintained
10670 F:      drivers/media/i2c/tda9840*
10671
10672 TEA5761 TUNER DRIVER
10673 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10674 L:      linux-media@vger.kernel.org
10675 W:      https://linuxtv.org
10676 T:      git git://linuxtv.org/media_tree.git
10677 S:      Odd fixes
10678 F:      drivers/media/tuners/tea5761.*
10679
10680 TEA5767 TUNER DRIVER
10681 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10682 L:      linux-media@vger.kernel.org
10683 W:      https://linuxtv.org
10684 T:      git git://linuxtv.org/media_tree.git
10685 S:      Maintained
10686 F:      drivers/media/tuners/tea5767.*
10687
10688 TEA6415C MEDIA DRIVER
10689 M:      Hans Verkuil <hverkuil@xs4all.nl>
10690 L:      linux-media@vger.kernel.org
10691 T:      git git://linuxtv.org/media_tree.git
10692 W:      https://linuxtv.org
10693 S:      Maintained
10694 F:      drivers/media/i2c/tea6415c*
10695
10696 TEA6420 MEDIA DRIVER
10697 M:      Hans Verkuil <hverkuil@xs4all.nl>
10698 L:      linux-media@vger.kernel.org
10699 T:      git git://linuxtv.org/media_tree.git
10700 W:      https://linuxtv.org
10701 S:      Maintained
10702 F:      drivers/media/i2c/tea6420*
10703
10704 TEAM DRIVER
10705 M:      Jiri Pirko <jiri@resnulli.us>
10706 L:      netdev@vger.kernel.org
10707 S:      Supported
10708 F:      drivers/net/team/
10709 F:      include/linux/if_team.h
10710 F:      include/uapi/linux/if_team.h
10711
10712 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
10713 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
10714 S:      Maintained
10715 F:      arch/x86/platform/ts5500/
10716
10717 TECHNOTREND USB IR RECEIVER
10718 M:      Sean Young <sean@mess.org>
10719 L:      linux-media@vger.kernel.org
10720 S:      Maintained
10721 F:      drivers/media/rc/ttusbir.c
10722
10723 TEGRA ARCHITECTURE SUPPORT
10724 M:      Stephen Warren <swarren@wwwdotorg.org>
10725 M:      Thierry Reding <thierry.reding@gmail.com>
10726 M:      Alexandre Courbot <gnurou@gmail.com>
10727 L:      linux-tegra@vger.kernel.org
10728 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
10729 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
10730 S:      Supported
10731 N:      [^a-z]tegra
10732
10733 TEGRA CLOCK DRIVER
10734 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
10735 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
10736 S:      Supported
10737 F:      drivers/clk/tegra/
10738
10739 TEGRA DMA DRIVER
10740 M:      Laxman Dewangan <ldewangan@nvidia.com>
10741 S:      Supported
10742 F:      drivers/dma/tegra20-apb-dma.c
10743
10744 TEGRA I2C DRIVER
10745 M:      Laxman Dewangan <ldewangan@nvidia.com>
10746 S:      Supported
10747 F:      drivers/i2c/busses/i2c-tegra.c
10748
10749 TEGRA IOMMU DRIVERS
10750 M:      Hiroshi Doyu <hdoyu@nvidia.com>
10751 S:      Supported
10752 F:      drivers/iommu/tegra*
10753
10754 TEGRA KBC DRIVER
10755 M:      Rakesh Iyer <riyer@nvidia.com>
10756 M:      Laxman Dewangan <ldewangan@nvidia.com>
10757 S:      Supported
10758 F:      drivers/input/keyboard/tegra-kbc.c
10759
10760 TEGRA PWM DRIVER
10761 M:      Thierry Reding <thierry.reding@gmail.com>
10762 S:      Supported
10763 F:      drivers/pwm/pwm-tegra.c
10764
10765 TEGRA SERIAL DRIVER
10766 M:      Laxman Dewangan <ldewangan@nvidia.com>
10767 S:      Supported
10768 F:      drivers/tty/serial/serial-tegra.c
10769
10770 TEGRA SPI DRIVER
10771 M:      Laxman Dewangan <ldewangan@nvidia.com>
10772 S:      Supported
10773 F:      drivers/spi/spi-tegra*
10774
10775 TEHUTI ETHERNET DRIVER
10776 M:      Andy Gospodarek <andy@greyhouse.net>
10777 L:      netdev@vger.kernel.org
10778 S:      Supported
10779 F:      drivers/net/ethernet/tehuti/*
10780
10781 Telecom Clock Driver for MCPL0010
10782 M:      Mark Gross <mark.gross@intel.com>
10783 S:      Supported
10784 F:      drivers/char/tlclk.c
10785
10786 TENSILICA XTENSA PORT (xtensa)
10787 M:      Chris Zankel <chris@zankel.net>
10788 M:      Max Filippov <jcmvbkbc@gmail.com>
10789 L:      linux-xtensa@linux-xtensa.org
10790 T:      git git://github.com/czankel/xtensa-linux.git
10791 S:      Maintained
10792 F:      arch/xtensa/
10793 F:      drivers/irqchip/irq-xtensa-*
10794
10795 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
10796 M:      Hans Verkuil <hverkuil@xs4all.nl>
10797 L:      linux-media@vger.kernel.org
10798 T:      git git://linuxtv.org/media_tree.git
10799 W:      https://linuxtv.org
10800 S:      Maintained
10801 F:      drivers/media/radio/radio-raremono.c
10802
10803 THERMAL
10804 M:      Zhang Rui <rui.zhang@intel.com>
10805 M:      Eduardo Valentin <edubezval@gmail.com>
10806 L:      linux-pm@vger.kernel.org
10807 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
10808 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
10809 Q:      https://patchwork.kernel.org/project/linux-pm/list/
10810 S:      Supported
10811 F:      drivers/thermal/
10812 F:      include/linux/thermal.h
10813 F:      include/uapi/linux/thermal.h
10814 F:      include/linux/cpu_cooling.h
10815 F:      Documentation/devicetree/bindings/thermal/
10816
10817 THERMAL/CPU_COOLING
10818 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
10819 M:      Viresh Kumar <viresh.kumar@linaro.org>
10820 M:      Javi Merino <javi.merino@arm.com>
10821 L:      linux-pm@vger.kernel.org
10822 S:      Supported
10823 F:      Documentation/thermal/cpu-cooling-api.txt
10824 F:      drivers/thermal/cpu_cooling.c
10825 F:      include/linux/cpu_cooling.h
10826
10827 THINGM BLINK(1) USB RGB LED DRIVER
10828 M:      Vivien Didelot <vivien.didelot@savoirfairelinux.com>
10829 S:      Maintained
10830 F:      drivers/hid/hid-thingm.c
10831
10832 THINKPAD ACPI EXTRAS DRIVER
10833 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
10834 L:      ibm-acpi-devel@lists.sourceforge.net
10835 L:      platform-driver-x86@vger.kernel.org
10836 W:      http://ibm-acpi.sourceforge.net
10837 W:      http://thinkwiki.org/wiki/Ibm-acpi
10838 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
10839 S:      Maintained
10840 F:      drivers/platform/x86/thinkpad_acpi.c
10841
10842 TI BANDGAP AND THERMAL DRIVER
10843 M:      Eduardo Valentin <edubezval@gmail.com>
10844 L:      linux-pm@vger.kernel.org
10845 L:      linux-omap@vger.kernel.org
10846 S:      Maintained
10847 F:      drivers/thermal/ti-soc-thermal/
10848
10849 TI CDCE706 CLOCK DRIVER
10850 M:      Max Filippov <jcmvbkbc@gmail.com>
10851 S:      Maintained
10852 F:      drivers/clk/clk-cdce706.c
10853
10854 TI CLOCK DRIVER
10855 M:      Tero Kristo <t-kristo@ti.com>
10856 L:      linux-omap@vger.kernel.org
10857 S:      Maintained
10858 F:      drivers/clk/ti/
10859 F:      include/linux/clk/ti.h
10860
10861 TI FLASH MEDIA INTERFACE DRIVER
10862 M:      Alex Dubov <oakad@yahoo.com>
10863 S:      Maintained
10864 F:      drivers/misc/tifm*
10865 F:      drivers/mmc/host/tifm_sd.c
10866 F:      include/linux/tifm.h
10867
10868 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
10869 M:      Santosh Shilimkar <ssantosh@kernel.org>
10870 L:      linux-kernel@vger.kernel.org
10871 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10872 S:      Maintained
10873 F:      drivers/soc/ti/*
10874 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
10875
10876
10877 TI LM49xxx FAMILY ASoC CODEC DRIVERS
10878 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
10879 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
10880 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10881 S:      Maintained
10882 F:      sound/soc/codecs/lm49453*
10883 F:      sound/soc/codecs/isabelle*
10884
10885 TI LP855x BACKLIGHT DRIVER
10886 M:      Milo Kim <milo.kim@ti.com>
10887 S:      Maintained
10888 F:      Documentation/backlight/lp855x-driver.txt
10889 F:      drivers/video/backlight/lp855x_bl.c
10890 F:      include/linux/platform_data/lp855x.h
10891
10892 TI LP8727 CHARGER DRIVER
10893 M:      Milo Kim <milo.kim@ti.com>
10894 S:      Maintained
10895 F:      drivers/power/lp8727_charger.c
10896 F:      include/linux/platform_data/lp8727.h
10897
10898 TI LP8788 MFD DRIVER
10899 M:      Milo Kim <milo.kim@ti.com>
10900 S:      Maintained
10901 F:      drivers/iio/adc/lp8788_adc.c
10902 F:      drivers/leds/leds-lp8788.c
10903 F:      drivers/mfd/lp8788*.c
10904 F:      drivers/power/lp8788-charger.c
10905 F:      drivers/regulator/lp8788-*.c
10906 F:      include/linux/mfd/lp8788*.h
10907
10908 TI NETCP ETHERNET DRIVER
10909 M:      Wingman Kwok <w-kwok2@ti.com>
10910 M:      Murali Karicheri <m-karicheri2@ti.com>
10911 L:      netdev@vger.kernel.org
10912 S:      Maintained
10913 F:      drivers/net/ethernet/ti/netcp*
10914
10915 TI TAS571X FAMILY ASoC CODEC DRIVER
10916 M:      Kevin Cernekee <cernekee@chromium.org>
10917 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10918 S:      Odd Fixes
10919 F:      sound/soc/codecs/tas571x*
10920
10921 TI TWL4030 SERIES SOC CODEC DRIVER
10922 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
10923 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10924 S:      Maintained
10925 F:      sound/soc/codecs/twl4030*
10926
10927 TI WILINK WIRELESS DRIVERS
10928 L:      linux-wireless@vger.kernel.org
10929 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
10930 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
10931 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
10932 S:      Orphan
10933 F:      drivers/net/wireless/ti/
10934 F:      include/linux/wl12xx.h
10935
10936 TIPC NETWORK LAYER
10937 M:      Jon Maloy <jon.maloy@ericsson.com>
10938 M:      Ying Xue <ying.xue@windriver.com>
10939 L:      netdev@vger.kernel.org (core kernel code)
10940 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
10941 W:      http://tipc.sourceforge.net/
10942 S:      Maintained
10943 F:      include/uapi/linux/tipc*.h
10944 F:      net/tipc/
10945
10946 TILE ARCHITECTURE
10947 M:      Chris Metcalf <cmetcalf@ezchip.com>
10948 W:      http://www.ezchip.com/scm/
10949 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cmetcalf/linux-tile.git
10950 S:      Supported
10951 F:      arch/tile/
10952 F:      drivers/char/tile-srom.c
10953 F:      drivers/edac/tile_edac.c
10954 F:      drivers/net/ethernet/tile/
10955 F:      drivers/rtc/rtc-tile.c
10956 F:      drivers/tty/hvc/hvc_tile.c
10957 F:      drivers/tty/serial/tilegx.c
10958 F:      drivers/usb/host/*-tilegx.c
10959 F:      include/linux/usb/tilegx.h
10960
10961 TLAN NETWORK DRIVER
10962 M:      Samuel Chessman <chessman@tux.org>
10963 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
10964 W:      http://sourceforge.net/projects/tlan/
10965 S:      Maintained
10966 F:      Documentation/networking/tlan.txt
10967 F:      drivers/net/ethernet/ti/tlan.*
10968
10969 TOMOYO SECURITY MODULE
10970 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
10971 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
10972 L:      tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
10973 L:      tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
10974 L:      tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
10975 L:      tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
10976 W:      http://tomoyo.sourceforge.jp/
10977 T:      quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
10978 S:      Maintained
10979 F:      security/tomoyo/
10980
10981 TOPSTAR LAPTOP EXTRAS DRIVER
10982 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
10983 L:      platform-driver-x86@vger.kernel.org
10984 S:      Maintained
10985 F:      drivers/platform/x86/topstar-laptop.c
10986
10987 TOSHIBA ACPI EXTRAS DRIVER
10988 M:      Azael Avalos <coproscefalo@gmail.com>
10989 L:      platform-driver-x86@vger.kernel.org
10990 S:      Maintained
10991 F:      drivers/platform/x86/toshiba_acpi.c
10992
10993 TOSHIBA BLUETOOTH DRIVER
10994 M:      Azael Avalos <coproscefalo@gmail.com>
10995 L:      platform-driver-x86@vger.kernel.org
10996 S:      Maintained
10997 F:      drivers/platform/x86/toshiba_bluetooth.c
10998
10999 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
11000 M:      Azael Avalos <coproscefalo@gmail.com>
11001 L:      platform-driver-x86@vger.kernel.org
11002 S:      Maintained
11003 F:      drivers/platform/x86/toshiba_haps.c
11004
11005 TOSHIBA WMI HOTKEYS DRIVER
11006 M:      Azael Avalos <coproscefalo@gmail.com>
11007 L:      platform-driver-x86@vger.kernel.org
11008 S:      Maintained
11009 F:      drivers/platform/x86/toshiba-wmi.c
11010
11011 TOSHIBA SMM DRIVER
11012 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
11013 W:      http://www.buzzard.org.uk/toshiba/
11014 S:      Maintained
11015 F:      drivers/char/toshiba.c
11016 F:      include/linux/toshiba.h
11017 F:      include/uapi/linux/toshiba.h
11018
11019 TOSHIBA TC358743 DRIVER
11020 M:      Mats Randgaard <matrandg@cisco.com>
11021 L:      linux-media@vger.kernel.org
11022 S:      Maintained
11023 F:      drivers/media/i2c/tc358743*
11024 F:      include/media/i2c/tc358743.h
11025
11026 TMIO MMC DRIVER
11027 M:      Ian Molton <ian@mnementh.co.uk>
11028 L:      linux-mmc@vger.kernel.org
11029 S:      Maintained
11030 F:      drivers/mmc/host/tmio_mmc*
11031 F:      drivers/mmc/host/sh_mobile_sdhi.c
11032 F:      include/linux/mmc/tmio.h
11033 F:      include/linux/mmc/sh_mobile_sdhi.h
11034
11035 TMP401 HARDWARE MONITOR DRIVER
11036 M:      Guenter Roeck <linux@roeck-us.net>
11037 L:      lm-sensors@lm-sensors.org
11038 S:      Maintained
11039 F:      Documentation/hwmon/tmp401
11040 F:      drivers/hwmon/tmp401.c
11041
11042 TMPFS (SHMEM FILESYSTEM)
11043 M:      Hugh Dickins <hughd@google.com>
11044 L:      linux-mm@kvack.org
11045 S:      Maintained
11046 F:      include/linux/shmem_fs.h
11047 F:      mm/shmem.c
11048
11049 TM6000 VIDEO4LINUX DRIVER
11050 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
11051 L:      linux-media@vger.kernel.org
11052 W:      https://linuxtv.org
11053 T:      git git://linuxtv.org/media_tree.git
11054 S:      Odd fixes
11055 F:      drivers/media/usb/tm6000/
11056
11057 TW68 VIDEO4LINUX DRIVER
11058 M:      Hans Verkuil <hverkuil@xs4all.nl>
11059 L:      linux-media@vger.kernel.org
11060 T:      git git://linuxtv.org/media_tree.git
11061 W:      https://linuxtv.org
11062 S:      Odd Fixes
11063 F:      drivers/media/pci/tw68/
11064
11065 TPM DEVICE DRIVER
11066 M:      Peter Huewe <peterhuewe@gmx.de>
11067 M:      Marcel Selhorst <tpmdd@selhorst.net>
11068 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
11069 R:      Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
11070 W:      http://tpmdd.sourceforge.net
11071 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
11072 Q:      git git://github.com/PeterHuewe/linux-tpmdd.git
11073 T:      git https://github.com/PeterHuewe/linux-tpmdd
11074 S:      Maintained
11075 F:      drivers/char/tpm/
11076
11077 TPM IBM_VTPM DEVICE DRIVER
11078 M:      Ashley Lai <ashleydlai@gmail.com>
11079 W:      http://tpmdd.sourceforge.net
11080 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
11081 S:      Maintained
11082 F:      drivers/char/tpm/tpm_ibmvtpm*
11083
11084 TRACING
11085 M:      Steven Rostedt <rostedt@goodmis.org>
11086 M:      Ingo Molnar <mingo@redhat.com>
11087 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
11088 S:      Maintained
11089 F:      Documentation/trace/ftrace.txt
11090 F:      arch/*/*/*/ftrace.h
11091 F:      arch/*/kernel/ftrace.c
11092 F:      include/*/ftrace.h
11093 F:      include/linux/trace*.h
11094 F:      include/trace/
11095 F:      kernel/trace/
11096 F:      tools/testing/selftests/ftrace/
11097
11098 TRIVIAL PATCHES
11099 M:      Jiri Kosina <trivial@kernel.org>
11100 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
11101 S:      Maintained
11102 K:      ^Subject:.*(?i)trivial
11103
11104 TTY LAYER
11105 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11106 M:      Jiri Slaby <jslaby@suse.com>
11107 S:      Supported
11108 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
11109 F:      Documentation/serial/
11110 F:      drivers/tty/
11111 F:      drivers/tty/serial/serial_core.c
11112 F:      include/linux/serial_core.h
11113 F:      include/linux/serial.h
11114 F:      include/linux/tty.h
11115 F:      include/uapi/linux/serial_core.h
11116 F:      include/uapi/linux/serial.h
11117 F:      include/uapi/linux/tty.h
11118
11119 TUA9001 MEDIA DRIVER
11120 M:      Antti Palosaari <crope@iki.fi>
11121 L:      linux-media@vger.kernel.org
11122 W:      https://linuxtv.org
11123 W:      http://palosaari.fi/linux/
11124 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11125 T:      git git://linuxtv.org/anttip/media_tree.git
11126 S:      Maintained
11127 F:      drivers/media/tuners/tua9001*
11128
11129 TULIP NETWORK DRIVERS
11130 L:      netdev@vger.kernel.org
11131 L:      linux-parisc@vger.kernel.org
11132 S:      Orphan
11133 F:      drivers/net/ethernet/dec/tulip/
11134
11135 TUN/TAP driver
11136 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
11137 W:      http://vtun.sourceforge.net/tun
11138 S:      Maintained
11139 F:      Documentation/networking/tuntap.txt
11140 F:      arch/um/os-Linux/drivers/
11141
11142 TURBOCHANNEL SUBSYSTEM
11143 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
11144 M:      Ralf Baechle <ralf@linux-mips.org>
11145 L:      linux-mips@linux-mips.org
11146 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
11147 S:      Maintained
11148 F:      drivers/tc/
11149 F:      include/linux/tc.h
11150
11151 U14-34F SCSI DRIVER
11152 M:      Dario Ballabio <ballabio_dario@emc.com>
11153 L:      linux-scsi@vger.kernel.org
11154 S:      Maintained
11155 F:      drivers/scsi/u14-34f.c
11156
11157 UBI FILE SYSTEM (UBIFS)
11158 M:      Artem Bityutskiy <dedekind1@gmail.com>
11159 M:      Adrian Hunter <adrian.hunter@intel.com>
11160 L:      linux-mtd@lists.infradead.org
11161 T:      git git://git.infradead.org/ubifs-2.6.git
11162 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
11163 S:      Maintained
11164 F:      Documentation/filesystems/ubifs.txt
11165 F:      fs/ubifs/
11166
11167 UCLINUX (M68KNOMMU AND COLDFIRE)
11168 M:      Greg Ungerer <gerg@uclinux.org>
11169 W:      http://www.uclinux.org/
11170 L:      linux-m68k@lists.linux-m68k.org
11171 L:      uclinux-dev@uclinux.org  (subscribers-only)
11172 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
11173 S:      Maintained
11174 F:      arch/m68k/coldfire/
11175 F:      arch/m68k/68*/
11176 F:      arch/m68k/*/*_no.*
11177 F:      arch/m68k/include/asm/*_no.*
11178
11179 UDF FILESYSTEM
11180 M:      Jan Kara <jack@suse.com>
11181 S:      Maintained
11182 F:      Documentation/filesystems/udf.txt
11183 F:      fs/udf/
11184
11185 UFS FILESYSTEM
11186 M:      Evgeniy Dushistov <dushistov@mail.ru>
11187 S:      Maintained
11188 F:      Documentation/filesystems/ufs.txt
11189 F:      fs/ufs/
11190
11191 UHID USERSPACE HID IO DRIVER:
11192 M:      David Herrmann <dh.herrmann@googlemail.com>
11193 L:      linux-input@vger.kernel.org
11194 S:      Maintained
11195 F:      drivers/hid/uhid.c
11196 F:      include/uapi/linux/uhid.h
11197
11198 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
11199 L:      linux-usb@vger.kernel.org
11200 S:      Orphan
11201 F:      drivers/uwb/
11202 F:      include/linux/uwb.h
11203 F:      include/linux/uwb/
11204
11205 UNICORE32 ARCHITECTURE:
11206 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
11207 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
11208 S:      Maintained
11209 T:      git git://github.com/gxt/linux.git
11210 F:      arch/unicore32/
11211
11212 UNIFDEF
11213 M:      Tony Finch <dot@dotat.at>
11214 W:      http://dotat.at/prog/unifdef
11215 S:      Maintained
11216 F:      scripts/unifdef.c
11217
11218 UNIFORM CDROM DRIVER
11219 M:      Jens Axboe <axboe@kernel.dk>
11220 W:      http://www.kernel.dk
11221 S:      Maintained
11222 F:      Documentation/cdrom/
11223 F:      drivers/cdrom/cdrom.c
11224 F:      include/linux/cdrom.h
11225 F:      include/uapi/linux/cdrom.h
11226
11227 UNISYS S-PAR DRIVERS
11228 M:      Benjamin Romer <benjamin.romer@unisys.com>
11229 M:      David Kershner <david.kershner@unisys.com>
11230 L:      sparmaintainer@unisys.com (Unisys internal)
11231 S:      Supported
11232 F:      drivers/staging/unisys/
11233
11234 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
11235 M:      Vinayak Holikatti <vinholikatti@gmail.com>
11236 L:      linux-scsi@vger.kernel.org
11237 S:      Supported
11238 F:      Documentation/scsi/ufs.txt
11239 F:      drivers/scsi/ufs/
11240
11241 UNSORTED BLOCK IMAGES (UBI)
11242 M:      Artem Bityutskiy <dedekind1@gmail.com>
11243 M:      Richard Weinberger <richard@nod.at>
11244 W:      http://www.linux-mtd.infradead.org/
11245 L:      linux-mtd@lists.infradead.org
11246 T:      git git://git.infradead.org/ubifs-2.6.git
11247 S:      Supported
11248 F:      drivers/mtd/ubi/
11249 F:      include/linux/mtd/ubi.h
11250 F:      include/uapi/mtd/ubi-user.h
11251
11252 USB ACM DRIVER
11253 M:      Oliver Neukum <oliver@neukum.org>
11254 L:      linux-usb@vger.kernel.org
11255 S:      Maintained
11256 F:      Documentation/usb/acm.txt
11257 F:      drivers/usb/class/cdc-acm.*
11258
11259 USB AR5523 WIRELESS DRIVER
11260 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
11261 L:      linux-wireless@vger.kernel.org
11262 S:      Maintained
11263 F:      drivers/net/wireless/ath/ar5523/
11264
11265 USB ATTACHED SCSI
11266 M:      Hans de Goede <hdegoede@redhat.com>
11267 M:      Gerd Hoffmann <kraxel@redhat.com>
11268 L:      linux-usb@vger.kernel.org
11269 L:      linux-scsi@vger.kernel.org
11270 S:      Maintained
11271 F:      drivers/usb/storage/uas.c
11272
11273 USB CDC ETHERNET DRIVER
11274 M:      Oliver Neukum <oliver@neukum.org>
11275 L:      linux-usb@vger.kernel.org
11276 S:      Maintained
11277 F:      drivers/net/usb/cdc_*.c
11278 F:      include/uapi/linux/usb/cdc.h
11279
11280 USB CHAOSKEY DRIVER
11281 M:      Keith Packard <keithp@keithp.com>
11282 L:      linux-usb@vger.kernel.org
11283 S:      Maintained
11284 F:      drivers/usb/misc/chaoskey.c
11285
11286 USB CYPRESS C67X00 DRIVER
11287 M:      Peter Korsgaard <jacmet@sunsite.dk>
11288 L:      linux-usb@vger.kernel.org
11289 S:      Maintained
11290 F:      drivers/usb/c67x00/
11291
11292 USB DAVICOM DM9601 DRIVER
11293 M:      Peter Korsgaard <jacmet@sunsite.dk>
11294 L:      netdev@vger.kernel.org
11295 W:      http://www.linux-usb.org/usbnet
11296 S:      Maintained
11297 F:      drivers/net/usb/dm9601.c
11298
11299 USB DIAMOND RIO500 DRIVER
11300 M:      Cesar Miquel <miquel@df.uba.ar>
11301 L:      rio500-users@lists.sourceforge.net
11302 W:      http://rio500.sourceforge.net
11303 S:      Maintained
11304 F:      drivers/usb/misc/rio500*
11305
11306 USB EHCI DRIVER
11307 M:      Alan Stern <stern@rowland.harvard.edu>
11308 L:      linux-usb@vger.kernel.org
11309 S:      Maintained
11310 F:      Documentation/usb/ehci.txt
11311 F:      drivers/usb/host/ehci*
11312
11313 USB GADGET/PERIPHERAL SUBSYSTEM
11314 M:      Felipe Balbi <balbi@kernel.org>
11315 L:      linux-usb@vger.kernel.org
11316 W:      http://www.linux-usb.org/gadget
11317 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
11318 S:      Maintained
11319 F:      drivers/usb/gadget/
11320 F:      include/linux/usb/gadget*
11321
11322 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
11323 M:      Jiri Kosina <jikos@kernel.org>
11324 R:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
11325 L:      linux-usb@vger.kernel.org
11326 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
11327 S:      Maintained
11328 F:      Documentation/hid/hiddev.txt
11329 F:      drivers/hid/usbhid/
11330
11331 USB ISP116X DRIVER
11332 M:      Olav Kongas <ok@artecdesign.ee>
11333 L:      linux-usb@vger.kernel.org
11334 S:      Maintained
11335 F:      drivers/usb/host/isp116x*
11336 F:      include/linux/usb/isp116x.h
11337
11338 USB MASS STORAGE DRIVER
11339 M:      Matthew Dharm <mdharm-usb@one-eyed-alien.net>
11340 L:      linux-usb@vger.kernel.org
11341 L:      usb-storage@lists.one-eyed-alien.net
11342 S:      Maintained
11343 W:      http://www.one-eyed-alien.net/~mdharm/linux-usb/
11344 F:      drivers/usb/storage/
11345
11346 USB MIDI DRIVER
11347 M:      Clemens Ladisch <clemens@ladisch.de>
11348 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11349 T:      git git://git.alsa-project.org/alsa-kernel.git
11350 S:      Maintained
11351 F:      sound/usb/midi.*
11352
11353 USB NETWORKING DRIVERS
11354 L:      linux-usb@vger.kernel.org
11355 S:      Odd Fixes
11356 F:      drivers/net/usb/
11357
11358 USB OHCI DRIVER
11359 M:      Alan Stern <stern@rowland.harvard.edu>
11360 L:      linux-usb@vger.kernel.org
11361 S:      Maintained
11362 F:      Documentation/usb/ohci.txt
11363 F:      drivers/usb/host/ohci*
11364
11365 USB OTG FSM (Finite State Machine)
11366 M:      Peter Chen <Peter.Chen@nxp.com>
11367 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
11368 L:      linux-usb@vger.kernel.org
11369 S:      Maintained
11370 F:      drivers/usb/common/usb-otg-fsm.c
11371
11372 USB OVER IP DRIVER
11373 M:      Valentina Manea <valentina.manea.m@gmail.com>
11374 M:      Shuah Khan <shuah.kh@samsung.com>
11375 L:      linux-usb@vger.kernel.org
11376 S:      Maintained
11377 F:      drivers/usb/usbip/
11378 F:      tools/usb/usbip/
11379
11380 USB PEGASUS DRIVER
11381 M:      Petko Manolov <petkan@nucleusys.com>
11382 L:      linux-usb@vger.kernel.org
11383 L:      netdev@vger.kernel.org
11384 T:      git git://github.com/petkan/pegasus.git
11385 W:      https://github.com/petkan/pegasus
11386 S:      Maintained
11387 F:      drivers/net/usb/pegasus.*
11388
11389 USB PHY LAYER
11390 M:      Felipe Balbi <balbi@kernel.org>
11391 L:      linux-usb@vger.kernel.org
11392 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
11393 S:      Maintained
11394 F:      drivers/usb/phy/
11395
11396 USB PRINTER DRIVER (usblp)
11397 M:      Pete Zaitcev <zaitcev@redhat.com>
11398 L:      linux-usb@vger.kernel.org
11399 S:      Supported
11400 F:      drivers/usb/class/usblp.c
11401
11402 USB QMI WWAN NETWORK DRIVER
11403 M:      Bjørn Mork <bjorn@mork.no>
11404 L:      netdev@vger.kernel.org
11405 S:      Maintained
11406 F:      Documentation/ABI/testing/sysfs-class-net-qmi
11407 F:      drivers/net/usb/qmi_wwan.c
11408
11409 USB RTL8150 DRIVER
11410 M:      Petko Manolov <petkan@nucleusys.com>
11411 L:      linux-usb@vger.kernel.org
11412 L:      netdev@vger.kernel.org
11413 T:      git git://github.com/petkan/rtl8150.git
11414 W:      https://github.com/petkan/rtl8150
11415 S:      Maintained
11416 F:      drivers/net/usb/rtl8150.c
11417
11418 USB SERIAL SUBSYSTEM
11419 M:      Johan Hovold <johan@kernel.org>
11420 L:      linux-usb@vger.kernel.org
11421 S:      Maintained
11422 F:      Documentation/usb/usb-serial.txt
11423 F:      drivers/usb/serial/
11424 F:      include/linux/usb/serial.h
11425
11426 USB SMSC75XX ETHERNET DRIVER
11427 M:      Steve Glendinning <steve.glendinning@shawell.net>
11428 L:      netdev@vger.kernel.org
11429 S:      Maintained
11430 F:      drivers/net/usb/smsc75xx.*
11431
11432 USB SMSC95XX ETHERNET DRIVER
11433 M:      Steve Glendinning <steve.glendinning@shawell.net>
11434 L:      netdev@vger.kernel.org
11435 S:      Maintained
11436 F:      drivers/net/usb/smsc95xx.*
11437
11438 USB SUBSYSTEM
11439 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11440 L:      linux-usb@vger.kernel.org
11441 W:      http://www.linux-usb.org
11442 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
11443 S:      Supported
11444 F:      Documentation/usb/
11445 F:      drivers/usb/
11446 F:      include/linux/usb.h
11447 F:      include/linux/usb/
11448
11449 USB UHCI DRIVER
11450 M:      Alan Stern <stern@rowland.harvard.edu>
11451 L:      linux-usb@vger.kernel.org
11452 S:      Maintained
11453 F:      drivers/usb/host/uhci*
11454
11455 USB "USBNET" DRIVER FRAMEWORK
11456 M:      Oliver Neukum <oneukum@suse.com>
11457 L:      netdev@vger.kernel.org
11458 W:      http://www.linux-usb.org/usbnet
11459 S:      Maintained
11460 F:      drivers/net/usb/usbnet.c
11461 F:      include/linux/usb/usbnet.h
11462
11463 USB VIDEO CLASS
11464 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11465 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
11466 L:      linux-media@vger.kernel.org
11467 T:      git git://linuxtv.org/media_tree.git
11468 W:      http://www.ideasonboard.org/uvc/
11469 S:      Maintained
11470 F:      drivers/media/usb/uvc/
11471 F:      include/uapi/linux/uvcvideo.h
11472
11473 USB VISION DRIVER
11474 M:      Hans Verkuil <hverkuil@xs4all.nl>
11475 L:      linux-media@vger.kernel.org
11476 T:      git git://linuxtv.org/media_tree.git
11477 W:      https://linuxtv.org
11478 S:      Odd Fixes
11479 F:      drivers/media/usb/usbvision/
11480
11481 USB WEBCAM GADGET
11482 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11483 L:      linux-usb@vger.kernel.org
11484 S:      Maintained
11485 F:      drivers/usb/gadget/function/*uvc*
11486 F:      drivers/usb/gadget/legacy/webcam.c
11487
11488 USB WIRELESS RNDIS DRIVER (rndis_wlan)
11489 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
11490 L:      linux-wireless@vger.kernel.org
11491 S:      Maintained
11492 F:      drivers/net/wireless/rndis_wlan.c
11493
11494 USB XHCI DRIVER
11495 M:      Mathias Nyman <mathias.nyman@intel.com>
11496 L:      linux-usb@vger.kernel.org
11497 S:      Supported
11498 F:      drivers/usb/host/xhci*
11499 F:      drivers/usb/host/pci-quirks*
11500
11501 USB ZD1201 DRIVER
11502 L:      linux-wireless@vger.kernel.org
11503 W:      http://linux-lc100020.sourceforge.net
11504 S:      Orphan
11505 F:      drivers/net/wireless/zydas/zd1201.*
11506
11507 USB ZR364XX DRIVER
11508 M:      Antoine Jacquet <royale@zerezo.com>
11509 L:      linux-usb@vger.kernel.org
11510 L:      linux-media@vger.kernel.org
11511 T:      git git://linuxtv.org/media_tree.git
11512 W:      http://royale.zerezo.com/zr364xx/
11513 S:      Maintained
11514 F:      Documentation/video4linux/zr364xx.txt
11515 F:      drivers/media/usb/zr364xx/
11516
11517 ULPI BUS
11518 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
11519 L:      linux-usb@vger.kernel.org
11520 S:      Maintained
11521 F:      drivers/usb/common/ulpi.c
11522 F:      include/linux/ulpi/
11523
11524 USER-MODE LINUX (UML)
11525 M:      Jeff Dike <jdike@addtoit.com>
11526 M:      Richard Weinberger <richard@nod.at>
11527 L:      user-mode-linux-devel@lists.sourceforge.net
11528 L:      user-mode-linux-user@lists.sourceforge.net
11529 W:      http://user-mode-linux.sourceforge.net
11530 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
11531 S:      Maintained
11532 F:      Documentation/virtual/uml/
11533 F:      arch/um/
11534 F:      arch/x86/um/
11535 F:      fs/hostfs/
11536 F:      fs/hppfs/
11537
11538 USERSPACE I/O (UIO)
11539 M:      "Hans J. Koch" <hjk@hansjkoch.de>
11540 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11541 S:      Maintained
11542 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
11543 F:      Documentation/DocBook/uio-howto.tmpl
11544 F:      drivers/uio/
11545 F:      include/linux/uio*.h
11546
11547 UTIL-LINUX PACKAGE
11548 M:      Karel Zak <kzak@redhat.com>
11549 L:      util-linux@vger.kernel.org
11550 W:      http://en.wikipedia.org/wiki/Util-linux
11551 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
11552 S:      Maintained
11553
11554 UVESAFB DRIVER
11555 M:      Michal Januszewski <spock@gentoo.org>
11556 L:      linux-fbdev@vger.kernel.org
11557 W:      http://dev.gentoo.org/~spock/projects/uvesafb/
11558 S:      Maintained
11559 F:      Documentation/fb/uvesafb.txt
11560 F:      drivers/video/fbdev/uvesafb.*
11561
11562 VF610 NAND DRIVER
11563 M:      Stefan Agner <stefan@agner.ch>
11564 L:      linux-mtd@lists.infradead.org
11565 S:      Supported
11566 F:      drivers/mtd/nand/vf610_nfc.c
11567
11568 VFAT/FAT/MSDOS FILESYSTEM
11569 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
11570 S:      Maintained
11571 F:      Documentation/filesystems/vfat.txt
11572 F:      fs/fat/
11573
11574 VFIO DRIVER
11575 M:      Alex Williamson <alex.williamson@redhat.com>
11576 L:      kvm@vger.kernel.org
11577 T:      git git://github.com/awilliam/linux-vfio.git
11578 S:      Maintained
11579 F:      Documentation/vfio.txt
11580 F:      drivers/vfio/
11581 F:      include/linux/vfio.h
11582 F:      include/uapi/linux/vfio.h
11583
11584 VFIO PLATFORM DRIVER
11585 M:      Baptiste Reynal <b.reynal@virtualopensystems.com>
11586 L:      kvm@vger.kernel.org
11587 S:      Maintained
11588 F:      drivers/vfio/platform/
11589
11590 VIDEOBUF2 FRAMEWORK
11591 M:      Pawel Osciak <pawel@osciak.com>
11592 M:      Marek Szyprowski <m.szyprowski@samsung.com>
11593 M:      Kyungmin Park <kyungmin.park@samsung.com>
11594 L:      linux-media@vger.kernel.org
11595 S:      Maintained
11596 F:      drivers/media/v4l2-core/videobuf2-*
11597 F:      include/media/videobuf2-*
11598
11599 VIRTUAL SERIO DEVICE DRIVER
11600 M:      Stephen Chandler Paul <thatslyude@gmail.com>
11601 S:      Maintained
11602 F:      drivers/input/serio/userio.c
11603 F:      include/uapi/linux/userio.h
11604
11605 VIRTIO CONSOLE DRIVER
11606 M:      Amit Shah <amit.shah@redhat.com>
11607 L:      virtualization@lists.linux-foundation.org
11608 S:      Maintained
11609 F:      drivers/char/virtio_console.c
11610 F:      include/linux/virtio_console.h
11611 F:      include/uapi/linux/virtio_console.h
11612
11613 VIRTIO CORE, NET AND BLOCK DRIVERS
11614 M:      "Michael S. Tsirkin" <mst@redhat.com>
11615 L:      virtualization@lists.linux-foundation.org
11616 S:      Maintained
11617 F:      drivers/virtio/
11618 F:      tools/virtio/
11619 F:      drivers/net/virtio_net.c
11620 F:      drivers/block/virtio_blk.c
11621 F:      include/linux/virtio_*.h
11622 F:      include/uapi/linux/virtio_*.h
11623
11624 VIRTIO DRIVERS FOR S390
11625 M:      Christian Borntraeger <borntraeger@de.ibm.com>
11626 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
11627 L:      linux-s390@vger.kernel.org
11628 L:      virtualization@lists.linux-foundation.org
11629 L:      kvm@vger.kernel.org
11630 S:      Supported
11631 F:      drivers/s390/virtio/
11632
11633 VIRTIO GPU DRIVER
11634 M:      David Airlie <airlied@linux.ie>
11635 M:      Gerd Hoffmann <kraxel@redhat.com>
11636 L:      dri-devel@lists.freedesktop.org
11637 L:      virtualization@lists.linux-foundation.org
11638 S:      Maintained
11639 F:      drivers/gpu/drm/virtio/
11640 F:      include/uapi/linux/virtio_gpu.h
11641
11642 VIRTIO HOST (VHOST)
11643 M:      "Michael S. Tsirkin" <mst@redhat.com>
11644 L:      kvm@vger.kernel.org
11645 L:      virtualization@lists.linux-foundation.org
11646 L:      netdev@vger.kernel.org
11647 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
11648 S:      Maintained
11649 F:      drivers/vhost/
11650 F:      include/uapi/linux/vhost.h
11651
11652 VIRTIO INPUT DRIVER
11653 M:      Gerd Hoffmann <kraxel@redhat.com>
11654 S:      Maintained
11655 F:      drivers/virtio/virtio_input.c
11656 F:      include/uapi/linux/virtio_input.h
11657
11658 VIA RHINE NETWORK DRIVER
11659 S:      Orphan
11660 F:      drivers/net/ethernet/via/via-rhine.c
11661
11662 VIA SD/MMC CARD CONTROLLER DRIVER
11663 M:      Bruce Chang <brucechang@via.com.tw>
11664 M:      Harald Welte <HaraldWelte@viatech.com>
11665 S:      Maintained
11666 F:      drivers/mmc/host/via-sdmmc.c
11667
11668 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
11669 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
11670 L:      linux-fbdev@vger.kernel.org
11671 S:      Maintained
11672 F:      include/linux/via-core.h
11673 F:      include/linux/via-gpio.h
11674 F:      include/linux/via_i2c.h
11675 F:      drivers/video/fbdev/via/
11676
11677 VIA VELOCITY NETWORK DRIVER
11678 M:      Francois Romieu <romieu@fr.zoreil.com>
11679 L:      netdev@vger.kernel.org
11680 S:      Maintained
11681 F:      drivers/net/ethernet/via/via-velocity.*
11682
11683 VIRT LIB
11684 M:      Alex Williamson <alex.williamson@redhat.com>
11685 M:      Paolo Bonzini <pbonzini@redhat.com>
11686 L:      kvm@vger.kernel.org
11687 S:      Supported
11688 F:      virt/lib/
11689
11690 VIVID VIRTUAL VIDEO DRIVER
11691 M:      Hans Verkuil <hverkuil@xs4all.nl>
11692 L:      linux-media@vger.kernel.org
11693 T:      git git://linuxtv.org/media_tree.git
11694 W:      https://linuxtv.org
11695 S:      Maintained
11696 F:      drivers/media/platform/vivid/*
11697
11698 VLAN (802.1Q)
11699 M:      Patrick McHardy <kaber@trash.net>
11700 L:      netdev@vger.kernel.org
11701 S:      Maintained
11702 F:      drivers/net/macvlan.c
11703 F:      include/linux/if_*vlan.h
11704 F:      net/8021q/
11705
11706 VLYNQ BUS
11707 M:      Florian Fainelli <florian@openwrt.org>
11708 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
11709 S:      Maintained
11710 F:      drivers/vlynq/vlynq.c
11711 F:      include/linux/vlynq.h
11712
11713 VME SUBSYSTEM
11714 M:      Martyn Welch <martyn@welchs.me.uk>
11715 M:      Manohar Vanga <manohar.vanga@gmail.com>
11716 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11717 L:      devel@driverdev.osuosl.org
11718 S:      Maintained
11719 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
11720 F:      Documentation/vme_api.txt
11721 F:      drivers/staging/vme/
11722 F:      drivers/vme/
11723 F:      include/linux/vme*
11724
11725 VMWARE HYPERVISOR INTERFACE
11726 M:      Alok Kataria <akataria@vmware.com>
11727 L:      virtualization@lists.linux-foundation.org
11728 S:      Supported
11729 F:      arch/x86/kernel/cpu/vmware.c
11730
11731 VMWARE BALLOON DRIVER
11732 M:      Xavier Deguillard <xdeguillard@vmware.com>
11733 M:      Philip Moltmann <moltmann@vmware.com>
11734 M:      "VMware, Inc." <pv-drivers@vmware.com>
11735 L:      linux-kernel@vger.kernel.org
11736 S:      Maintained
11737 F:      drivers/misc/vmw_balloon.c
11738
11739 VMWARE VMMOUSE SUBDRIVER
11740 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
11741 M:      "VMware, Inc." <pv-drivers@vmware.com>
11742 L:      linux-input@vger.kernel.org
11743 S:      Maintained
11744 F:      drivers/input/mouse/vmmouse.c
11745 F:      drivers/input/mouse/vmmouse.h
11746
11747 VMWARE VMXNET3 ETHERNET DRIVER
11748 M:      Shrikrishna Khare <skhare@vmware.com>
11749 M:      "VMware, Inc." <pv-drivers@vmware.com>
11750 L:      netdev@vger.kernel.org
11751 S:      Maintained
11752 F:      drivers/net/vmxnet3/
11753
11754 VMware PVSCSI driver
11755 M:      Arvind Kumar <arvindkumar@vmware.com>
11756 M:      VMware PV-Drivers <pv-drivers@vmware.com>
11757 L:      linux-scsi@vger.kernel.org
11758 S:      Maintained
11759 F:      drivers/scsi/vmw_pvscsi.c
11760 F:      drivers/scsi/vmw_pvscsi.h
11761
11762 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
11763 M:      Liam Girdwood <lgirdwood@gmail.com>
11764 M:      Mark Brown <broonie@kernel.org>
11765 L:      linux-kernel@vger.kernel.org
11766 W:      http://www.slimlogic.co.uk/?p=48
11767 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
11768 S:      Supported
11769 F:      drivers/regulator/
11770 F:      include/linux/regulator/
11771
11772 VRF
11773 M:      David Ahern <dsa@cumulusnetworks.com>
11774 M:      Shrijeet Mukherjee <shm@cumulusnetworks.com>
11775 L:      netdev@vger.kernel.org
11776 S:      Maintained
11777 F:      drivers/net/vrf.c
11778 F:      Documentation/networking/vrf.txt
11779
11780 VT1211 HARDWARE MONITOR DRIVER
11781 M:      Juerg Haefliger <juergh@gmail.com>
11782 L:      lm-sensors@lm-sensors.org
11783 S:      Maintained
11784 F:      Documentation/hwmon/vt1211
11785 F:      drivers/hwmon/vt1211.c
11786
11787 VT8231 HARDWARE MONITOR DRIVER
11788 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
11789 L:      lm-sensors@lm-sensors.org
11790 S:      Maintained
11791 F:      drivers/hwmon/vt8231.c
11792
11793 VUB300 USB to SDIO/SD/MMC bridge chip
11794 M:      Tony Olech <tony.olech@elandigitalsystems.com>
11795 L:      linux-mmc@vger.kernel.org
11796 L:      linux-usb@vger.kernel.org
11797 S:      Supported
11798 F:      drivers/mmc/host/vub300.c
11799
11800 W1 DALLAS'S 1-WIRE BUS
11801 M:      Evgeniy Polyakov <zbr@ioremap.net>
11802 S:      Maintained
11803 F:      Documentation/w1/
11804 F:      drivers/w1/
11805
11806 W83791D HARDWARE MONITORING DRIVER
11807 M:      Marc Hulsman <m.hulsman@tudelft.nl>
11808 L:      lm-sensors@lm-sensors.org
11809 S:      Maintained
11810 F:      Documentation/hwmon/w83791d
11811 F:      drivers/hwmon/w83791d.c
11812
11813 W83793 HARDWARE MONITORING DRIVER
11814 M:      Rudolf Marek <r.marek@assembler.cz>
11815 L:      lm-sensors@lm-sensors.org
11816 S:      Maintained
11817 F:      Documentation/hwmon/w83793
11818 F:      drivers/hwmon/w83793.c
11819
11820 W83795 HARDWARE MONITORING DRIVER
11821 M:      Jean Delvare <jdelvare@suse.com>
11822 L:      lm-sensors@lm-sensors.org
11823 S:      Maintained
11824 F:      drivers/hwmon/w83795.c
11825
11826 W83L51xD SD/MMC CARD INTERFACE DRIVER
11827 M:      Pierre Ossman <pierre@ossman.eu>
11828 S:      Maintained
11829 F:      drivers/mmc/host/wbsd.*
11830
11831 WACOM PROTOCOL 4 SERIAL TABLETS
11832 M:      Julian Squires <julian@cipht.net>
11833 M:      Hans de Goede <hdegoede@redhat.com>
11834 L:      linux-input@vger.kernel.org
11835 S:      Maintained
11836 F:      drivers/input/tablet/wacom_serial4.c
11837
11838 WATCHDOG DEVICE DRIVERS
11839 M:      Wim Van Sebroeck <wim@iguana.be>
11840 R:      Guenter Roeck <linux@roeck-us.net>
11841 L:      linux-watchdog@vger.kernel.org
11842 W:      http://www.linux-watchdog.org/
11843 T:      git git://www.linux-watchdog.org/linux-watchdog.git
11844 S:      Maintained
11845 F:      Documentation/watchdog/
11846 F:      drivers/watchdog/
11847 F:      include/linux/watchdog.h
11848 F:      include/uapi/linux/watchdog.h
11849
11850 WD7000 SCSI DRIVER
11851 M:      Miroslav Zagorac <zaga@fly.cc.fer.hr>
11852 L:      linux-scsi@vger.kernel.org
11853 S:      Maintained
11854 F:      drivers/scsi/wd7000.c
11855
11856 WIIMOTE HID DRIVER
11857 M:      David Herrmann <dh.herrmann@googlemail.com>
11858 L:      linux-input@vger.kernel.org
11859 S:      Maintained
11860 F:      drivers/hid/hid-wiimote*
11861
11862 WINBOND CIR DRIVER
11863 M:      David Härdeman <david@hardeman.nu>
11864 S:      Maintained
11865 F:      drivers/media/rc/winbond-cir.c
11866
11867 WIMAX STACK
11868 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
11869 M:      linux-wimax@intel.com
11870 L:      wimax@linuxwimax.org (subscribers-only)
11871 S:      Supported
11872 W:      http://linuxwimax.org
11873 F:      Documentation/wimax/README.wimax
11874 F:      include/linux/wimax/debug.h
11875 F:      include/net/wimax.h
11876 F:      include/uapi/linux/wimax.h
11877 F:      net/wimax/
11878
11879 WISTRON LAPTOP BUTTON DRIVER
11880 M:      Miloslav Trmac <mitr@volny.cz>
11881 S:      Maintained
11882 F:      drivers/input/misc/wistron_btns.c
11883
11884 WL3501 WIRELESS PCMCIA CARD DRIVER
11885 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
11886 L:      linux-wireless@vger.kernel.org
11887 W:      http://oops.ghostprotocols.net:81/blog
11888 S:      Maintained
11889 F:      drivers/net/wireless/wl3501*
11890
11891 WOLFSON MICROELECTRONICS DRIVERS
11892 L:      patches@opensource.wolfsonmicro.com
11893 T:      git https://github.com/CirrusLogic/linux-drivers.git
11894 W:      https://github.com/CirrusLogic/linux-drivers/wiki
11895 S:      Supported
11896 F:      Documentation/hwmon/wm83??
11897 F:      Documentation/devicetree/bindings/extcon/extcon-arizona.txt
11898 F:      Documentation/devicetree/bindings/regulator/arizona-regulator.txt
11899 F:      Documentation/devicetree/bindings/mfd/arizona.txt
11900 F:      arch/arm/mach-s3c64xx/mach-crag6410*
11901 F:      drivers/clk/clk-wm83*.c
11902 F:      drivers/extcon/extcon-arizona.c
11903 F:      drivers/leds/leds-wm83*.c
11904 F:      drivers/gpio/gpio-*wm*.c
11905 F:      drivers/gpio/gpio-arizona.c
11906 F:      drivers/hwmon/wm83??-hwmon.c
11907 F:      drivers/input/misc/wm831x-on.c
11908 F:      drivers/input/touchscreen/wm831x-ts.c
11909 F:      drivers/input/touchscreen/wm97*.c
11910 F:      drivers/mfd/arizona*
11911 F:      drivers/mfd/wm*.c
11912 F:      drivers/mfd/cs47l24*
11913 F:      drivers/power/wm83*.c
11914 F:      drivers/rtc/rtc-wm83*.c
11915 F:      drivers/regulator/wm8*.c
11916 F:      drivers/video/backlight/wm83*_bl.c
11917 F:      drivers/watchdog/wm83*_wdt.c
11918 F:      include/linux/mfd/arizona/
11919 F:      include/linux/mfd/wm831x/
11920 F:      include/linux/mfd/wm8350/
11921 F:      include/linux/mfd/wm8400*
11922 F:      include/linux/wm97xx.h
11923 F:      include/sound/wm????.h
11924 F:      sound/soc/codecs/arizona.?
11925 F:      sound/soc/codecs/wm*
11926 F:      sound/soc/codecs/cs47l24*
11927
11928 WORKQUEUE
11929 M:      Tejun Heo <tj@kernel.org>
11930 R:      Lai Jiangshan <jiangshanlai@gmail.com>
11931 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
11932 S:      Maintained
11933 F:      include/linux/workqueue.h
11934 F:      kernel/workqueue.c
11935 F:      Documentation/workqueue.txt
11936
11937 X.25 NETWORK LAYER
11938 M:      Andrew Hendry <andrew.hendry@gmail.com>
11939 L:      linux-x25@vger.kernel.org
11940 S:      Odd Fixes
11941 F:      Documentation/networking/x25*
11942 F:      include/net/x25*
11943 F:      net/x25/
11944
11945 X86 ARCHITECTURE (32-BIT AND 64-BIT)
11946 M:      Thomas Gleixner <tglx@linutronix.de>
11947 M:      Ingo Molnar <mingo@redhat.com>
11948 M:      "H. Peter Anvin" <hpa@zytor.com>
11949 M:      x86@kernel.org
11950 L:      linux-kernel@vger.kernel.org
11951 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
11952 S:      Maintained
11953 F:      Documentation/x86/
11954 F:      arch/x86/
11955
11956 X86 PLATFORM DRIVERS
11957 M:      Darren Hart <dvhart@infradead.org>
11958 L:      platform-driver-x86@vger.kernel.org
11959 T:      git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git
11960 S:      Maintained
11961 F:      drivers/platform/x86/
11962 F:      drivers/platform/olpc/
11963
11964 X86 MCE INFRASTRUCTURE
11965 M:      Tony Luck <tony.luck@intel.com>
11966 M:      Borislav Petkov <bp@alien8.de>
11967 L:      linux-edac@vger.kernel.org
11968 S:      Maintained
11969 F:      arch/x86/kernel/cpu/mcheck/*
11970
11971 X86 MICROCODE UPDATE SUPPORT
11972 M:      Borislav Petkov <bp@alien8.de>
11973 S:      Maintained
11974 F:      arch/x86/kernel/cpu/microcode/*
11975
11976 X86 VDSO
11977 M:      Andy Lutomirski <luto@amacapital.net>
11978 L:      linux-kernel@vger.kernel.org
11979 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
11980 S:      Maintained
11981 F:      arch/x86/entry/vdso/
11982
11983 XC2028/3028 TUNER DRIVER
11984 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
11985 L:      linux-media@vger.kernel.org
11986 W:      https://linuxtv.org
11987 T:      git git://linuxtv.org/media_tree.git
11988 S:      Maintained
11989 F:      drivers/media/tuners/tuner-xc2028.*
11990
11991 XEN HYPERVISOR INTERFACE
11992 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11993 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
11994 M:      David Vrabel <david.vrabel@citrix.com>
11995 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11996 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
11997 S:      Supported
11998 F:      arch/x86/xen/
11999 F:      drivers/*/xen-*front.c
12000 F:      drivers/xen/
12001 F:      arch/x86/include/asm/xen/
12002 F:      include/xen/
12003 F:      include/uapi/xen/
12004
12005 XEN HYPERVISOR ARM
12006 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
12007 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12008 S:      Supported
12009 F:      arch/arm/xen/
12010 F:      arch/arm/include/asm/xen/
12011
12012 XEN HYPERVISOR ARM64
12013 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
12014 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12015 S:      Supported
12016 F:      arch/arm64/xen/
12017 F:      arch/arm64/include/asm/xen/
12018
12019 XEN NETWORK BACKEND DRIVER
12020 M:      Ian Campbell <ian.campbell@citrix.com>
12021 M:      Wei Liu <wei.liu2@citrix.com>
12022 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12023 L:      netdev@vger.kernel.org
12024 S:      Supported
12025 F:      drivers/net/xen-netback/*
12026
12027 XEN PCI SUBSYSTEM
12028 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
12029 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12030 S:      Supported
12031 F:      arch/x86/pci/*xen*
12032 F:      drivers/pci/*xen*
12033
12034 XEN BLOCK SUBSYSTEM
12035 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
12036 M:      Roger Pau MonnĂ© <roger.pau@citrix.com>
12037 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12038 S:      Supported
12039 F:      drivers/block/xen-blkback/*
12040 F:      drivers/block/xen*
12041
12042 XEN PVSCSI DRIVERS
12043 M:      Juergen Gross <jgross@suse.com>
12044 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12045 L:      linux-scsi@vger.kernel.org
12046 S:      Supported
12047 F:      drivers/scsi/xen-scsifront.c
12048 F:      drivers/xen/xen-scsiback.c
12049 F:      include/xen/interface/io/vscsiif.h
12050
12051 XEN SWIOTLB SUBSYSTEM
12052 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
12053 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12054 S:      Supported
12055 F:      arch/x86/xen/*swiotlb*
12056 F:      drivers/xen/*swiotlb*
12057
12058 XFS FILESYSTEM
12059 P:      Silicon Graphics Inc
12060 M:      Dave Chinner <david@fromorbit.com>
12061 M:      xfs@oss.sgi.com
12062 L:      xfs@oss.sgi.com
12063 W:      http://oss.sgi.com/projects/xfs
12064 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dgc/linux-xfs.git
12065 S:      Supported
12066 F:      Documentation/filesystems/xfs.txt
12067 F:      fs/xfs/
12068
12069 XILINX AXI ETHERNET DRIVER
12070 M:      Anirudha Sarangi <anirudh@xilinx.com>
12071 M:      John Linn <John.Linn@xilinx.com>
12072 S:      Maintained
12073 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
12074
12075 XILINX UARTLITE SERIAL DRIVER
12076 M:      Peter Korsgaard <jacmet@sunsite.dk>
12077 L:      linux-serial@vger.kernel.org
12078 S:      Maintained
12079 F:      drivers/tty/serial/uartlite.c
12080
12081 XILINX VIDEO IP CORES
12082 M:      Hyun Kwon <hyun.kwon@xilinx.com>
12083 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12084 L:      linux-media@vger.kernel.org
12085 T:      git git://linuxtv.org/media_tree.git
12086 S:      Supported
12087 F:      Documentation/devicetree/bindings/media/xilinx/
12088 F:      drivers/media/platform/xilinx/
12089 F:      include/uapi/linux/xilinx-v4l2-controls.h
12090
12091 XILLYBUS DRIVER
12092 M:      Eli Billauer <eli.billauer@gmail.com>
12093 L:      linux-kernel@vger.kernel.org
12094 S:      Supported
12095 F:      drivers/char/xillybus/
12096
12097 XTENSA XTFPGA PLATFORM SUPPORT
12098 M:      Max Filippov <jcmvbkbc@gmail.com>
12099 L:      linux-xtensa@linux-xtensa.org
12100 S:      Maintained
12101 F:      drivers/spi/spi-xtensa-xtfpga.c
12102 F:      sound/soc/xtensa/xtfpga-i2s.c
12103
12104 YAM DRIVER FOR AX.25
12105 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
12106 L:      linux-hams@vger.kernel.org
12107 S:      Maintained
12108 F:      drivers/net/hamradio/yam*
12109 F:      include/linux/yam.h
12110
12111 YEALINK PHONE DRIVER
12112 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
12113 L:      usbb2k-api-dev@nongnu.org
12114 S:      Maintained
12115 F:      Documentation/input/yealink.txt
12116 F:      drivers/input/misc/yealink.*
12117
12118 Z8530 DRIVER FOR AX.25
12119 M:      Joerg Reuter <jreuter@yaina.de>
12120 W:      http://yaina.de/jreuter/
12121 W:      http://www.qsl.net/dl1bke/
12122 L:      linux-hams@vger.kernel.org
12123 S:      Maintained
12124 F:      Documentation/networking/z8530drv.txt
12125 F:      drivers/net/hamradio/*scc.c
12126 F:      drivers/net/hamradio/z8530.h
12127
12128 ZBUD COMPRESSED PAGE ALLOCATOR
12129 M:      Seth Jennings <sjenning@redhat.com>
12130 L:      linux-mm@kvack.org
12131 S:      Maintained
12132 F:      mm/zbud.c
12133 F:      include/linux/zbud.h
12134
12135 ZD1211RW WIRELESS DRIVER
12136 M:      Daniel Drake <dsd@gentoo.org>
12137 M:      Ulrich Kunitz <kune@deine-taler.de>
12138 W:      http://zd1211.ath.cx/wiki/DriverRewrite
12139 L:      linux-wireless@vger.kernel.org
12140 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
12141 S:      Maintained
12142 F:      drivers/net/wireless/zydas/zd1211rw/
12143
12144 ZPOOL COMPRESSED PAGE STORAGE API
12145 M:      Dan Streetman <ddstreet@ieee.org>
12146 L:      linux-mm@kvack.org
12147 S:      Maintained
12148 F:      mm/zpool.c
12149 F:      include/linux/zpool.h
12150
12151 ZR36067 VIDEO FOR LINUX DRIVER
12152 L:      mjpeg-users@lists.sourceforge.net
12153 L:      linux-media@vger.kernel.org
12154 W:      http://mjpeg.sourceforge.net/driver-zoran/
12155 T:      hg https://linuxtv.org/hg/v4l-dvb
12156 S:      Odd Fixes
12157 F:      drivers/media/pci/zoran/
12158
12159 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
12160 M:      Minchan Kim <minchan@kernel.org>
12161 M:      Nitin Gupta <ngupta@vflare.org>
12162 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
12163 L:      linux-kernel@vger.kernel.org
12164 S:      Maintained
12165 F:      drivers/block/zram/
12166 F:      Documentation/blockdev/zram.txt
12167
12168 ZS DECSTATION Z85C30 SERIAL DRIVER
12169 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
12170 S:      Maintained
12171 F:      drivers/tty/serial/zs.*
12172
12173 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
12174 M:      Minchan Kim <minchan@kernel.org>
12175 M:      Nitin Gupta <ngupta@vflare.org>
12176 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
12177 L:      linux-mm@kvack.org
12178 S:      Maintained
12179 F:      mm/zsmalloc.c
12180 F:      include/linux/zsmalloc.h
12181 F:      Documentation/vm/zsmalloc.txt
12182
12183 ZSWAP COMPRESSED SWAP CACHING
12184 M:      Seth Jennings <sjenning@redhat.com>
12185 L:      linux-mm@kvack.org
12186 S:      Maintained
12187 F:      mm/zswap.c
12188
12189 THE REST
12190 M:      Linus Torvalds <torvalds@linux-foundation.org>
12191 L:      linux-kernel@vger.kernel.org
12192 Q:      http://patchwork.kernel.org/project/LKML/list/
12193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
12194 S:      Buried alive in reporters
12195 F:      *
12196 F:      */