staging/android: remove pointless sync_timeline_signal at destroy phase
[cascardo/linux.git] / MAINTAINERS
1
2
3         List of maintainers and how to submit kernel changes
4
5 Please try to follow the guidelines below.  This will make things
6 easier on the maintainers.  Not all of these guidelines matter for every
7 trivial patch so apply some common sense.
8
9 1.      Always _test_ your changes, however small, on at least 4 or
10         5 people, preferably many more.
11
12 2.      Try to release a few ALPHA test versions to the net. Announce
13         them onto the kernel channel and await results. This is especially
14         important for device drivers, because often that's the only way
15         you will find things like the fact version 3 firmware needs
16         a magic fix you didn't know about, or some clown changed the
17         chips on a board and not its name.  (Don't laugh!  Look at the
18         SMC etherpower for that.)
19
20 3.      Make sure your changes compile correctly in multiple
21         configurations. In particular check that changes work both as a
22         module and built into the kernel.
23
24 4.      When you are happy with a change make it generally available for
25         testing and await feedback.
26
27 5.      Make a patch available to the relevant maintainer in the list. Use
28         'diff -u' to make the patch easy to merge. Be prepared to get your
29         changes sent back with seemingly silly requests about formatting
30         and variable names.  These aren't as silly as they seem. One
31         job the maintainers (and especially Linus) do is to keep things
32         looking the same. Sometimes this means that the clever hack in
33         your driver to get around a problem actually needs to become a
34         generalized kernel feature ready for next time.
35
36         PLEASE check your patch with the automated style checker
37         (scripts/checkpatch.pl) to catch trivial style violations.
38         See Documentation/CodingStyle for guidance here.
39
40         PLEASE CC: the maintainers and mailing lists that are generated
41         by scripts/get_maintainer.pl.  The results returned by the
42         script will be best if you have git installed and are making
43         your changes in a branch derived from Linus' latest git tree.
44         See Documentation/SubmittingPatches for details.
45
46         PLEASE try to include any credit lines you want added with the
47         patch. It avoids people being missed off by mistake and makes
48         it easier to know who wants adding and who doesn't.
49
50         PLEASE document known bugs. If it doesn't work for everything
51         or does something very odd once a month document it.
52
53         PLEASE remember that submissions must be made under the terms
54         of the Linux Foundation certificate of contribution and should
55         include a Signed-off-by: line.  The current version of this
56         "Developer's Certificate of Origin" (DCO) is listed in the file
57         Documentation/SubmittingPatches.
58
59 6.      Make sure you have the right to send any changes you make. If you
60         do changes at work you may find your employer owns the patch
61         not you.
62
63 7.      When sending security related changes or reports to a maintainer
64         please Cc: security@kernel.org, especially if the maintainer
65         does not respond.
66
67 8.      Happy hacking.
68
69 Descriptions of section entries:
70
71         P: Person (obsolete)
72         M: Mail patches to: FullName <address@domain>
73         R: Designated reviewer: FullName <address@domain>
74            These reviewers should be CCed on patches.
75         L: Mailing list that is relevant to this area
76         W: Web-page with status/info
77         Q: Patchwork web based patch tracking system site
78         T: SCM tree type and location.
79            Type is one of: git, hg, quilt, stgit, topgit
80         S: Status, one of the following:
81            Supported:   Someone is actually paid to look after this.
82            Maintained:  Someone actually looks after it.
83            Odd Fixes:   It has a maintainer but they don't have time to do
84                         much other than throw the odd patch in. See below..
85            Orphan:      No current maintainer [but maybe you could take the
86                         role as you write your new code].
87            Obsolete:    Old code. Something tagged obsolete generally means
88                         it has been replaced by a better system and you
89                         should be using that.
90         F: Files and directories with wildcard patterns.
91            A trailing slash includes all files and subdirectory files.
92            F:   drivers/net/    all files in and below drivers/net
93            F:   drivers/net/*   all files in drivers/net, but not below
94            F:   */net/*         all files in "any top level directory"/net
95            One pattern per line.  Multiple F: lines acceptable.
96         N: Files and directories with regex patterns.
97            N:   [^a-z]tegra     all files whose path contains the word tegra
98            One pattern per line.  Multiple N: lines acceptable.
99            scripts/get_maintainer.pl has different behavior for files that
100            match F: pattern and matches of N: patterns.  By default,
101            get_maintainer will not look at git log history when an F: pattern
102            match occurs.  When an N: match occurs, git log history is used
103            to also notify the people that have git commit signatures.
104         X: Files and directories that are NOT maintained, same rules as F:
105            Files exclusions are tested before file matches.
106            Can be useful for excluding a specific subdirectory, for instance:
107            F:   net/
108            X:   net/ipv6/
109            matches all files in and below net excluding net/ipv6/
110         K: Keyword perl extended regex pattern to match content in a
111            patch or file.  For instance:
112            K: of_get_profile
113               matches patches or files that contain "of_get_profile"
114            K: \b(printk|pr_(info|err))\b
115               matches patches or files that contain one or more of the words
116               printk, pr_info or pr_err
117            One regex pattern per line.  Multiple K: lines acceptable.
118
119 Note: For the hard of thinking, this list is meant to remain in alphabetical
120 order. If you could add yourselves to it in alphabetical order that would be
121 so much easier [Ed]
122
123 Maintainers List (try to look for most precise areas first)
124
125                 -----------------------------------
126
127 3C59X NETWORK DRIVER
128 M:      Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
129 L:      netdev@vger.kernel.org
130 S:      Maintained
131 F:      Documentation/networking/vortex.txt
132 F:      drivers/net/ethernet/3com/3c59x.c
133
134 3CR990 NETWORK DRIVER
135 M:      David Dillow <dave@thedillows.org>
136 L:      netdev@vger.kernel.org
137 S:      Maintained
138 F:      drivers/net/ethernet/3com/typhoon*
139
140 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
141 M:      Adam Radford <linuxraid@lsi.com>
142 L:      linux-scsi@vger.kernel.org
143 W:      http://www.lsi.com
144 S:      Supported
145 F:      drivers/scsi/3w-*
146
147 53C700 AND 53C700-66 SCSI DRIVER
148 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
149 L:      linux-scsi@vger.kernel.org
150 S:      Maintained
151 F:      drivers/scsi/53c700*
152
153 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
154 M:      Alexander Aring <alex.aring@gmail.com>
155 M:      Jukka Rissanen <jukka.rissanen@linux.intel.com>
156 L:      linux-bluetooth@vger.kernel.org
157 L:      linux-wpan@vger.kernel.org
158 S:      Maintained
159 F:      net/6lowpan/
160 F:      include/net/6lowpan.h
161 F:      Documentation/networking/6lowpan.txt
162
163 6PACK NETWORK DRIVER FOR AX.25
164 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
165 L:      linux-hams@vger.kernel.org
166 S:      Maintained
167 F:      drivers/net/hamradio/6pack.c
168
169 8169 10/100/1000 GIGABIT ETHERNET DRIVER
170 M:      Realtek linux nic maintainers <nic_swsd@realtek.com>
171 L:      netdev@vger.kernel.org
172 S:      Maintained
173 F:      drivers/net/ethernet/realtek/r8169.c
174
175 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
176 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
177 L:      linux-serial@vger.kernel.org
178 W:      http://serial.sourceforge.net
179 S:      Maintained
180 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
181 F:      drivers/tty/serial/8250*
182 F:      include/linux/serial_8250.h
183
184 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
185 L:      netdev@vger.kernel.org
186 S:      Orphan / Obsolete
187 F:      drivers/net/ethernet/8390/
188
189 9P FILE SYSTEM
190 M:      Eric Van Hensbergen <ericvh@gmail.com>
191 M:      Ron Minnich <rminnich@sandia.gov>
192 M:      Latchesar Ionkov <lucho@ionkov.net>
193 L:      v9fs-developer@lists.sourceforge.net
194 W:      http://swik.net/v9fs
195 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
196 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
197 S:      Maintained
198 F:      Documentation/filesystems/9p.txt
199 F:      fs/9p/
200 F:      net/9p/
201 F:      include/net/9p/
202 F:      include/uapi/linux/virtio_9p.h
203 F:      include/trace/events/9p.h
204
205
206 A8293 MEDIA DRIVER
207 M:      Antti Palosaari <crope@iki.fi>
208 L:      linux-media@vger.kernel.org
209 W:      https://linuxtv.org
210 W:      http://palosaari.fi/linux/
211 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
212 T:      git git://linuxtv.org/anttip/media_tree.git
213 S:      Maintained
214 F:      drivers/media/dvb-frontends/a8293*
215
216 AACRAID SCSI RAID DRIVER
217 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
218 L:      linux-scsi@vger.kernel.org
219 W:      http://www.adaptec.com/
220 S:      Supported
221 F:      Documentation/scsi/aacraid.txt
222 F:      drivers/scsi/aacraid/
223
224 ABI/API
225 L:      linux-api@vger.kernel.org
226 F:      include/linux/syscalls.h
227 F:      kernel/sys_ni.c
228
229 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
230 M:      Hans de Goede <hdegoede@redhat.com>
231 L:      lm-sensors@lm-sensors.org
232 S:      Maintained
233 F:      drivers/hwmon/abituguru.c
234
235 ABIT UGURU 3 HARDWARE MONITOR DRIVER
236 M:      Alistair John Strachan <alistair@devzero.co.uk>
237 L:      lm-sensors@lm-sensors.org
238 S:      Maintained
239 F:      drivers/hwmon/abituguru3.c
240
241 ACCES 104-IDI-48 GPIO DRIVER
242 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
243 L:      linux-gpio@vger.kernel.org
244 S:      Maintained
245 F:      drivers/gpio/gpio-104-idi-48.c
246
247 ACCES 104-IDIO-16 GPIO DRIVER
248 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
249 L:      linux-gpio@vger.kernel.org
250 S:      Maintained
251 F:      drivers/gpio/gpio-104-idio-16.c
252
253 ACENIC DRIVER
254 M:      Jes Sorensen <jes@trained-monkey.org>
255 L:      linux-acenic@sunsite.dk
256 S:      Maintained
257 F:      drivers/net/ethernet/alteon/acenic*
258
259 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
260 M:      Peter Feuerer <peter@piie.net>
261 L:      platform-driver-x86@vger.kernel.org
262 W:      http://piie.net/?section=acerhdf
263 S:      Maintained
264 F:      drivers/platform/x86/acerhdf.c
265
266 ACER WMI LAPTOP EXTRAS
267 M:      "Lee, Chun-Yi" <jlee@suse.com>
268 L:      platform-driver-x86@vger.kernel.org
269 S:      Maintained
270 F:      drivers/platform/x86/acer-wmi.c
271
272 ACPI
273 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
274 M:      Len Brown <lenb@kernel.org>
275 L:      linux-acpi@vger.kernel.org
276 W:      https://01.org/linux-acpi
277 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
278 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
279 S:      Supported
280 F:      drivers/acpi/
281 F:      drivers/pnp/pnpacpi/
282 F:      include/linux/acpi.h
283 F:      include/acpi/
284 F:      Documentation/acpi/
285 F:      Documentation/ABI/testing/sysfs-bus-acpi
286 F:      drivers/pci/*acpi*
287 F:      drivers/pci/*/*acpi*
288 F:      drivers/pci/*/*/*acpi*
289 F:      tools/power/acpi/
290
291 ACPI COMPONENT ARCHITECTURE (ACPICA)
292 M:      Robert Moore <robert.moore@intel.com>
293 M:      Lv Zheng <lv.zheng@intel.com>
294 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
295 L:      linux-acpi@vger.kernel.org
296 L:      devel@acpica.org
297 W:      https://acpica.org/
298 W:      https://github.com/acpica/acpica/
299 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
300 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
301 S:      Supported
302 F:      drivers/acpi/acpica/
303 F:      include/acpi/
304 F:      tools/power/acpi/
305
306 ACPI FAN DRIVER
307 M:      Zhang Rui <rui.zhang@intel.com>
308 L:      linux-acpi@vger.kernel.org
309 W:      https://01.org/linux-acpi
310 S:      Supported
311 F:      drivers/acpi/fan.c
312
313 ACPI THERMAL DRIVER
314 M:      Zhang Rui <rui.zhang@intel.com>
315 L:      linux-acpi@vger.kernel.org
316 W:      https://01.org/linux-acpi
317 S:      Supported
318 F:      drivers/acpi/*thermal*
319
320 ACPI VIDEO DRIVER
321 M:      Zhang Rui <rui.zhang@intel.com>
322 L:      linux-acpi@vger.kernel.org
323 W:      https://01.org/linux-acpi
324 S:      Supported
325 F:      drivers/acpi/acpi_video.c
326
327 ACPI WMI DRIVER
328 L:      platform-driver-x86@vger.kernel.org
329 S:      Orphan
330 F:      drivers/platform/x86/wmi.c
331
332 AD1889 ALSA SOUND DRIVER
333 M:      Thibaut Varene <T-Bone@parisc-linux.org>
334 W:      http://wiki.parisc-linux.org/AD1889
335 L:      linux-parisc@vger.kernel.org
336 S:      Maintained
337 F:      sound/pci/ad1889.*
338
339 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
340 M:      Michael Hennerich <michael.hennerich@analog.com>
341 W:      http://wiki.analog.com/AD5254
342 W:      http://ez.analog.com/community/linux-device-drivers
343 S:      Supported
344 F:      drivers/misc/ad525x_dpot.c
345
346 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
347 M:      Michael Hennerich <michael.hennerich@analog.com>
348 W:      http://wiki.analog.com/AD5398
349 W:      http://ez.analog.com/community/linux-device-drivers
350 S:      Supported
351 F:      drivers/regulator/ad5398.c
352
353 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
354 M:      Michael Hennerich <michael.hennerich@analog.com>
355 W:      http://wiki.analog.com/AD7142
356 W:      http://ez.analog.com/community/linux-device-drivers
357 S:      Supported
358 F:      drivers/input/misc/ad714x.c
359
360 AD7877 TOUCHSCREEN DRIVER
361 M:      Michael Hennerich <michael.hennerich@analog.com>
362 W:      http://wiki.analog.com/AD7877
363 W:      http://ez.analog.com/community/linux-device-drivers
364 S:      Supported
365 F:      drivers/input/touchscreen/ad7877.c
366
367 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
368 M:      Michael Hennerich <michael.hennerich@analog.com>
369 W:      http://wiki.analog.com/AD7879
370 W:      http://ez.analog.com/community/linux-device-drivers
371 S:      Supported
372 F:      drivers/input/touchscreen/ad7879.c
373
374 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
375 M:      Jiri Kosina <jikos@kernel.org>
376 S:      Maintained
377
378 ADF7242 IEEE 802.15.4 RADIO DRIVER
379 M:      Michael Hennerich <michael.hennerich@analog.com>
380 W:      https://wiki.analog.com/ADF7242
381 W:      http://ez.analog.com/community/linux-device-drivers
382 L:      linux-wpan@vger.kernel.org
383 S:      Supported
384 F:      drivers/net/ieee802154/adf7242.c
385 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
386
387 ADM1025 HARDWARE MONITOR DRIVER
388 M:      Jean Delvare <jdelvare@suse.com>
389 L:      lm-sensors@lm-sensors.org
390 S:      Maintained
391 F:      Documentation/hwmon/adm1025
392 F:      drivers/hwmon/adm1025.c
393
394 ADM1029 HARDWARE MONITOR DRIVER
395 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
396 L:      lm-sensors@lm-sensors.org
397 S:      Maintained
398 F:      drivers/hwmon/adm1029.c
399
400 ADM8211 WIRELESS DRIVER
401 L:      linux-wireless@vger.kernel.org
402 W:      http://wireless.kernel.org/
403 S:      Orphan
404 F:      drivers/net/wireless/admtek/adm8211.*
405
406 ADP1653 FLASH CONTROLLER DRIVER
407 M:      Sakari Ailus <sakari.ailus@iki.fi>
408 L:      linux-media@vger.kernel.org
409 S:      Maintained
410 F:      drivers/media/i2c/adp1653.c
411 F:      include/media/i2c/adp1653.h
412
413 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
414 M:      Michael Hennerich <michael.hennerich@analog.com>
415 W:      http://wiki.analog.com/ADP5520
416 W:      http://ez.analog.com/community/linux-device-drivers
417 S:      Supported
418 F:      drivers/mfd/adp5520.c
419 F:      drivers/video/backlight/adp5520_bl.c
420 F:      drivers/leds/leds-adp5520.c
421 F:      drivers/gpio/gpio-adp5520.c
422 F:      drivers/input/keyboard/adp5520-keys.c
423
424 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
425 M:      Michael Hennerich <michael.hennerich@analog.com>
426 W:      http://wiki.analog.com/ADP5588
427 W:      http://ez.analog.com/community/linux-device-drivers
428 S:      Supported
429 F:      drivers/input/keyboard/adp5588-keys.c
430 F:      drivers/gpio/gpio-adp5588.c
431
432 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
433 M:      Michael Hennerich <michael.hennerich@analog.com>
434 W:      http://wiki.analog.com/ADP8860
435 W:      http://ez.analog.com/community/linux-device-drivers
436 S:      Supported
437 F:      drivers/video/backlight/adp8860_bl.c
438
439 ADS1015 HARDWARE MONITOR DRIVER
440 M:      Dirk Eibach <eibach@gdsys.de>
441 L:      lm-sensors@lm-sensors.org
442 S:      Maintained
443 F:      Documentation/hwmon/ads1015
444 F:      drivers/hwmon/ads1015.c
445 F:      include/linux/i2c/ads1015.h
446
447 ADT746X FAN DRIVER
448 M:      Colin Leroy <colin@colino.net>
449 S:      Maintained
450 F:      drivers/macintosh/therm_adt746x.c
451
452 ADT7475 HARDWARE MONITOR DRIVER
453 M:      Jean Delvare <jdelvare@suse.com>
454 L:      lm-sensors@lm-sensors.org
455 S:      Maintained
456 F:      Documentation/hwmon/adt7475
457 F:      drivers/hwmon/adt7475.c
458
459 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
460 M:      Michael Hennerich <michael.hennerich@analog.com>
461 W:      http://wiki.analog.com/ADXL345
462 W:      http://ez.analog.com/community/linux-device-drivers
463 S:      Supported
464 F:      drivers/input/misc/adxl34x.c
465
466 ADVANSYS SCSI DRIVER
467 M:      Matthew Wilcox <matthew@wil.cx>
468 M:      Hannes Reinecke <hare@suse.com>
469 L:      linux-scsi@vger.kernel.org
470 S:      Maintained
471 F:      Documentation/scsi/advansys.txt
472 F:      drivers/scsi/advansys.c
473
474 AEDSP16 DRIVER
475 M:      Riccardo Facchetti <fizban@tin.it>
476 S:      Maintained
477 F:      sound/oss/aedsp16.c
478
479 AF9013 MEDIA DRIVER
480 M:      Antti Palosaari <crope@iki.fi>
481 L:      linux-media@vger.kernel.org
482 W:      https://linuxtv.org
483 W:      http://palosaari.fi/linux/
484 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
485 T:      git git://linuxtv.org/anttip/media_tree.git
486 S:      Maintained
487 F:      drivers/media/dvb-frontends/af9013*
488
489 AF9033 MEDIA DRIVER
490 M:      Antti Palosaari <crope@iki.fi>
491 L:      linux-media@vger.kernel.org
492 W:      https://linuxtv.org
493 W:      http://palosaari.fi/linux/
494 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
495 T:      git git://linuxtv.org/anttip/media_tree.git
496 S:      Maintained
497 F:      drivers/media/dvb-frontends/af9033*
498
499 AFFS FILE SYSTEM
500 L:      linux-fsdevel@vger.kernel.org
501 S:      Orphan
502 F:      Documentation/filesystems/affs.txt
503 F:      fs/affs/
504
505 AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
506 M:      David Howells <dhowells@redhat.com>
507 L:      linux-afs@lists.infradead.org
508 S:      Supported
509 F:      fs/afs/
510 F:      include/net/af_rxrpc.h
511 F:      net/rxrpc/af_rxrpc.c
512
513 AGPGART DRIVER
514 M:      David Airlie <airlied@linux.ie>
515 T:      git git://people.freedesktop.org/~airlied/linux (part of drm maint)
516 S:      Maintained
517 F:      drivers/char/agp/
518 F:      include/linux/agp*
519 F:      include/uapi/linux/agp*
520
521 AHA152X SCSI DRIVER
522 M:      "Juergen E. Fischer" <fischer@norbit.de>
523 L:      linux-scsi@vger.kernel.org
524 S:      Maintained
525 F:      drivers/scsi/aha152x*
526 F:      drivers/scsi/pcmcia/aha152x*
527
528 AIC7XXX / AIC79XX SCSI DRIVER
529 M:      Hannes Reinecke <hare@suse.com>
530 L:      linux-scsi@vger.kernel.org
531 S:      Maintained
532 F:      drivers/scsi/aic7xxx/
533
534 AIMSLAB FM RADIO RECEIVER DRIVER
535 M:      Hans Verkuil <hverkuil@xs4all.nl>
536 L:      linux-media@vger.kernel.org
537 T:      git git://linuxtv.org/media_tree.git
538 W:      https://linuxtv.org
539 S:      Maintained
540 F:      drivers/media/radio/radio-aimslab*
541
542 AIO
543 M:      Benjamin LaHaise <bcrl@kvack.org>
544 L:      linux-aio@kvack.org
545 S:      Supported
546 F:      fs/aio.c
547 F:      include/linux/*aio*.h
548
549 AIRSPY MEDIA DRIVER
550 M:      Antti Palosaari <crope@iki.fi>
551 L:      linux-media@vger.kernel.org
552 W:      https://linuxtv.org
553 W:      http://palosaari.fi/linux/
554 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
555 T:      git git://linuxtv.org/anttip/media_tree.git
556 S:      Maintained
557 F:      drivers/media/usb/airspy/
558
559 ALCATEL SPEEDTOUCH USB DRIVER
560 M:      Duncan Sands <duncan.sands@free.fr>
561 L:      linux-usb@vger.kernel.org
562 W:      http://www.linux-usb.org/SpeedTouch/
563 S:      Maintained
564 F:      drivers/usb/atm/speedtch.c
565 F:      drivers/usb/atm/usbatm.c
566
567 ALCHEMY AU1XX0 MMC DRIVER
568 M:      Manuel Lauss <manuel.lauss@gmail.com>
569 S:      Maintained
570 F:      drivers/mmc/host/au1xmmc.c
571
572 ALI1563 I2C DRIVER
573 M:      Rudolf Marek <r.marek@assembler.cz>
574 L:      linux-i2c@vger.kernel.org
575 S:      Maintained
576 F:      Documentation/i2c/busses/i2c-ali1563
577 F:      drivers/i2c/busses/i2c-ali1563.c
578
579 ALLWINNER SECURITY SYSTEM
580 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
581 L:      linux-crypto@vger.kernel.org
582 S:      Maintained
583 F:      drivers/crypto/sunxi-ss/
584
585 ALPHA PORT
586 M:      Richard Henderson <rth@twiddle.net>
587 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
588 M:      Matt Turner <mattst88@gmail.com>
589 S:      Odd Fixes
590 L:      linux-alpha@vger.kernel.org
591 F:      arch/alpha/
592
593 ALTERA MAILBOX DRIVER
594 M:      Ley Foon Tan <lftan@altera.com>
595 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
596 S:      Maintained
597 F:      drivers/mailbox/mailbox-altera.c
598
599 ALTERA PIO DRIVER
600 M:      Tien Hock Loh <thloh@altera.com>
601 L:      linux-gpio@vger.kernel.org
602 S:      Maintained
603 F:      drivers/gpio/gpio-altera.c
604
605 ALTERA TRIPLE SPEED ETHERNET DRIVER
606 M:      Vince Bridgers <vbridger@opensource.altera.com>
607 L:      netdev@vger.kernel.org
608 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
609 S:      Maintained
610 F:      drivers/net/ethernet/altera/
611
612 ALTERA UART/JTAG UART SERIAL DRIVERS
613 M:      Tobias Klauser <tklauser@distanz.ch>
614 L:      linux-serial@vger.kernel.org
615 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
616 S:      Maintained
617 F:      drivers/tty/serial/altera_uart.c
618 F:      drivers/tty/serial/altera_jtaguart.c
619 F:      include/linux/altera_uart.h
620 F:      include/linux/altera_jtaguart.h
621
622 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
623 M:      Tom Lendacky <thomas.lendacky@amd.com>
624 L:      linux-crypto@vger.kernel.org
625 S:      Supported
626 F:      drivers/crypto/ccp/
627 F:      include/linux/ccp.h
628
629 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
630 M:      Huang Rui <ray.huang@amd.com>
631 L:      lm-sensors@lm-sensors.org
632 S:      Supported
633 F:      Documentation/hwmon/fam15h_power
634 F:      drivers/hwmon/fam15h_power.c
635
636 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
637 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
638 S:      Orphan
639 F:      drivers/usb/gadget/udc/amd5536udc.*
640
641 AMD GEODE PROCESSOR/CHIPSET SUPPORT
642 P:      Andres Salomon <dilinger@queued.net>
643 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
644 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
645 S:      Supported
646 F:      drivers/char/hw_random/geode-rng.c
647 F:      drivers/crypto/geode*
648 F:      drivers/video/fbdev/geode/
649 F:      arch/x86/include/asm/geode.h
650
651 AMD IOMMU (AMD-VI)
652 M:      Joerg Roedel <joro@8bytes.org>
653 L:      iommu@lists.linux-foundation.org
654 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
655 S:      Maintained
656 F:      drivers/iommu/amd_iommu*.[ch]
657 F:      include/linux/amd-iommu.h
658
659 AMD KFD
660 M:      Oded Gabbay <oded.gabbay@gmail.com>
661 L:      dri-devel@lists.freedesktop.org
662 T:      git git://people.freedesktop.org/~gabbayo/linux.git
663 S:      Supported
664 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c
665 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
666 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
667 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
668 F:      drivers/gpu/drm/amd/amdkfd/
669 F:      drivers/gpu/drm/amd/include/cik_structs.h
670 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
671 F:      drivers/gpu/drm/amd/include/vi_structs.h
672 F:      drivers/gpu/drm/radeon/radeon_kfd.c
673 F:      drivers/gpu/drm/radeon/radeon_kfd.h
674 F:      include/uapi/linux/kfd_ioctl.h
675
676 AMD XGBE DRIVER
677 M:      Tom Lendacky <thomas.lendacky@amd.com>
678 L:      netdev@vger.kernel.org
679 S:      Supported
680 F:      drivers/net/ethernet/amd/xgbe/
681
682 AMS (Apple Motion Sensor) DRIVER
683 M:      Michael Hanselmann <linux-kernel@hansmi.ch>
684 S:      Supported
685 F:      drivers/macintosh/ams/
686
687 ANALOG DEVICES INC AD9389B DRIVER
688 M:      Hans Verkuil <hans.verkuil@cisco.com>
689 L:      linux-media@vger.kernel.org
690 S:      Maintained
691 F:      drivers/media/i2c/ad9389b*
692
693 ANALOG DEVICES INC ADV7180 DRIVER
694 M:      Lars-Peter Clausen <lars@metafoo.de>
695 L:      linux-media@vger.kernel.org
696 W:      http://ez.analog.com/community/linux-device-drivers
697 S:      Supported
698 F:      drivers/media/i2c/adv7180.c
699
700 ANALOG DEVICES INC ADV7511 DRIVER
701 M:      Hans Verkuil <hans.verkuil@cisco.com>
702 L:      linux-media@vger.kernel.org
703 S:      Maintained
704 F:      drivers/media/i2c/adv7511*
705
706 ANALOG DEVICES INC ADV7604 DRIVER
707 M:      Hans Verkuil <hans.verkuil@cisco.com>
708 L:      linux-media@vger.kernel.org
709 S:      Maintained
710 F:      drivers/media/i2c/adv7604*
711
712 ANALOG DEVICES INC ADV7842 DRIVER
713 M:      Hans Verkuil <hans.verkuil@cisco.com>
714 L:      linux-media@vger.kernel.org
715 S:      Maintained
716 F:      drivers/media/i2c/adv7842*
717
718 ANALOG DEVICES INC ASOC CODEC DRIVERS
719 M:      Lars-Peter Clausen <lars@metafoo.de>
720 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
721 W:      http://wiki.analog.com/
722 W:      http://ez.analog.com/community/linux-device-drivers
723 S:      Supported
724 F:      sound/soc/codecs/adau*
725 F:      sound/soc/codecs/adav*
726 F:      sound/soc/codecs/ad1*
727 F:      sound/soc/codecs/ad7*
728 F:      sound/soc/codecs/ssm*
729 F:      sound/soc/codecs/sigmadsp.*
730
731 ANALOG DEVICES INC ASOC DRIVERS
732 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
733 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
734 W:      http://blackfin.uclinux.org/
735 S:      Supported
736 F:      sound/soc/blackfin/*
737
738 ANALOG DEVICES INC IIO DRIVERS
739 M:      Lars-Peter Clausen <lars@metafoo.de>
740 M:      Michael Hennerich <Michael.Hennerich@analog.com>
741 W:      http://wiki.analog.com/
742 W:      http://ez.analog.com/community/linux-device-drivers
743 S:      Supported
744 F:      drivers/iio/*/ad*
745 X:      drivers/iio/*/adjd*
746 F:      drivers/staging/iio/*/ad*
747 F:      staging/iio/trigger/iio-trig-bfin-timer.c
748
749 ANALOG DEVICES INC DMA DRIVERS
750 M:      Lars-Peter Clausen <lars@metafoo.de>
751 W:      http://ez.analog.com/community/linux-device-drivers
752 S:      Supported
753 F:      drivers/dma/dma-axi-dmac.c
754
755 ANDROID DRIVERS
756 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
757 M:      Arve HjønnevĂ¥g <arve@android.com>
758 M:      Riley Andrews <riandrews@android.com>
759 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
760 L:      devel@driverdev.osuosl.org
761 S:      Supported
762 F:      drivers/android/
763 F:      drivers/staging/android/
764
765 AOA (Apple Onboard Audio) ALSA DRIVER
766 M:      Johannes Berg <johannes@sipsolutions.net>
767 L:      linuxppc-dev@lists.ozlabs.org
768 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
769 S:      Maintained
770 F:      sound/aoa/
771
772 APM DRIVER
773 M:      Jiri Kosina <jikos@kernel.org>
774 S:      Odd fixes
775 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
776 F:      arch/x86/kernel/apm_32.c
777 F:      include/linux/apm_bios.h
778 F:      include/uapi/linux/apm_bios.h
779 F:      drivers/char/apm-emulation.c
780
781 APPLE BCM5974 MULTITOUCH DRIVER
782 M:      Henrik Rydberg <rydberg@bitmath.org>
783 L:      linux-input@vger.kernel.org
784 S:      Odd fixes
785 F:      drivers/input/mouse/bcm5974.c
786
787 APPLE SMC DRIVER
788 M:      Henrik Rydberg <rydberg@bitmath.org>
789 L:      lm-sensors@lm-sensors.org
790 S:      Odd fixes
791 F:      drivers/hwmon/applesmc.c
792
793 APPLETALK NETWORK LAYER
794 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
795 S:      Maintained
796 F:      drivers/net/appletalk/
797 F:      net/appletalk/
798
799 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
800 M:      Duc Dang <dhdang@apm.com>
801 S:      Supported
802 F:      arch/arm64/boot/dts/apm/
803
804 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
805 M:      Iyappan Subramanian <isubramanian@apm.com>
806 M:      Keyur Chudgar <kchudgar@apm.com>
807 S:      Supported
808 F:      drivers/net/ethernet/apm/xgene/
809 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
810
811 APTINA CAMERA SENSOR PLL
812 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
813 L:      linux-media@vger.kernel.org
814 S:      Maintained
815 F:      drivers/media/i2c/aptina-pll.*
816
817 ARC FRAMEBUFFER DRIVER
818 M:      Jaya Kumar <jayalk@intworks.biz>
819 S:      Maintained
820 F:      drivers/video/fbdev/arcfb.c
821 F:      drivers/video/fbdev/core/fb_defio.c
822
823 ARCNET NETWORK LAYER
824 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
825 L:      netdev@vger.kernel.org
826 S:      Maintained
827 F:      drivers/net/arcnet/
828 F:      include/uapi/linux/if_arcnet.h
829
830 ARM 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 S:      Maintained
933 F:      arch/arm/mach-alpine/
934
935 ARM/ATMEL AT91RM9200, AT91SAM9 AND SAMA5 SOC SUPPORT
936 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
937 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
938 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
939 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
940 W:      http://www.linux4sam.org
941 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nferre/linux-at91.git
942 S:      Supported
943 F:      arch/arm/mach-at91/
944 F:      include/soc/at91/
945 F:      arch/arm/boot/dts/at91*.dts
946 F:      arch/arm/boot/dts/at91*.dtsi
947 F:      arch/arm/boot/dts/sama*.dts
948 F:      arch/arm/boot/dts/sama*.dtsi
949 F:      arch/arm/include/debug/at91.S
950
951 ARM/ATMEL AT91 Clock Support
952 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
953 S:      Maintained
954 F:      drivers/clk/at91
955
956 ARM/CALXEDA HIGHBANK ARCHITECTURE
957 M:      Rob Herring <robh@kernel.org>
958 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
959 S:      Maintained
960 F:      arch/arm/mach-highbank/
961 F:      arch/arm/boot/dts/highbank.dts
962 F:      arch/arm/boot/dts/ecx-*.dts*
963
964 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
965 M:      Krzysztof Halasa <khalasa@piap.pl>
966 S:      Maintained
967 F:      arch/arm/mach-cns3xxx/
968
969 ARM/CAVIUM THUNDER NETWORK DRIVER
970 M:      Sunil Goutham <sgoutham@cavium.com>
971 M:      Robert Richter <rric@kernel.org>
972 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
973 S:      Supported
974 F:      drivers/net/ethernet/cavium/thunder/
975
976 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
977 M:      Alexander Shiyan <shc_work@mail.ru>
978 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
979 S:      Odd Fixes
980 N:      clps711x
981
982 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
983 M:      Hartley Sweeten <hsweeten@visionengravers.com>
984 M:      Ryan Mallon <rmallon@gmail.com>
985 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
986 S:      Maintained
987 F:      arch/arm/mach-ep93xx/
988 F:      arch/arm/mach-ep93xx/include/mach/
989
990 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
991 M:      Lennert Buytenhek <kernel@wantstofly.org>
992 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
993 S:      Maintained
994
995 ARM/CLKDEV SUPPORT
996 M:      Russell King <linux@arm.linux.org.uk>
997 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
998 S:      Maintained
999 F:      arch/arm/include/asm/clkdev.h
1000 F:      drivers/clk/clkdev.c
1001
1002 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
1003 M:      Mike Rapoport <mike@compulab.co.il>
1004 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1005 S:      Maintained
1006
1007 ARM/CONTEC MICRO9 MACHINE SUPPORT
1008 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1009 S:      Maintained
1010 F:      arch/arm/mach-ep93xx/micro9.c
1011
1012 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1013 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1014 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1015 S:      Maintained
1016 F:      drivers/hwtracing/coresight/*
1017 F:      Documentation/trace/coresight.txt
1018 F:      Documentation/devicetree/bindings/arm/coresight.txt
1019 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1020
1021 ARM/CORGI MACHINE SUPPORT
1022 M:      Richard Purdie <rpurdie@rpsys.net>
1023 S:      Maintained
1024
1025 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1026 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1027 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1028 T:      git git://github.com/ulli-kroll/linux.git
1029 S:      Maintained
1030 F:      arch/arm/mach-gemini/
1031 F:      drivers/rtc/rtc-gemini.c
1032
1033 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1034 M:      Barry Song <baohua@kernel.org>
1035 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1036 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1037 S:      Maintained
1038 F:      arch/arm/boot/dts/prima2*
1039 F:      arch/arm/mach-prima2/
1040 F:      drivers/clk/sirf/
1041 F:      drivers/clocksource/timer-prima2.c
1042 F:      drivers/clocksource/timer-atlas7.c
1043 N:      [^a-z]sirf
1044
1045 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1046 M:      Baruch Siach <baruch@tkos.co.il>
1047 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1048 S:      Maintained
1049 F:      arch/arm/boot/dts/cx92755*
1050 N:      digicolor
1051
1052 ARM/EBSA110 MACHINE SUPPORT
1053 M:      Russell King <linux@arm.linux.org.uk>
1054 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1055 W:      http://www.arm.linux.org.uk/
1056 S:      Maintained
1057 F:      arch/arm/mach-ebsa110/
1058 F:      drivers/net/ethernet/amd/am79c961a.*
1059
1060 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1061 M:      Uwe Kleine-König <kernel@pengutronix.de>
1062 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1063 S:      Maintained
1064 N:      efm32
1065
1066 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1067 M:      Daniel Ribeiro <drwyrm@gmail.com>
1068 M:      Stefan Schmidt <stefan@openezx.org>
1069 M:      Harald Welte <laforge@openezx.org>
1070 L:      openezx-devel@lists.openezx.org (moderated for non-subscribers)
1071 W:      http://www.openezx.org/
1072 S:      Maintained
1073 T:      topgit git://git.openezx.org/openezx.git
1074 F:      arch/arm/mach-pxa/ezx.c
1075
1076 ARM/FARADAY FA526 PORT
1077 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1078 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1079 S:      Maintained
1080 T:      git git://git.berlios.de/gemini-board
1081 F:      arch/arm/mm/*-fa*
1082
1083 ARM/FOOTBRIDGE ARCHITECTURE
1084 M:      Russell King <linux@arm.linux.org.uk>
1085 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1086 W:      http://www.arm.linux.org.uk/
1087 S:      Maintained
1088 F:      arch/arm/include/asm/hardware/dec21285.h
1089 F:      arch/arm/mach-footbridge/
1090
1091 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1092 M:      Shawn Guo <shawnguo@kernel.org>
1093 M:      Sascha Hauer <kernel@pengutronix.de>
1094 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1095 S:      Maintained
1096 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1097 F:      arch/arm/mach-imx/
1098 F:      arch/arm/mach-mxs/
1099 F:      arch/arm/boot/dts/imx*
1100 F:      arch/arm/configs/imx*_defconfig
1101 F:      drivers/clk/imx/
1102 F:      include/soc/imx/
1103
1104 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1105 M:      Shawn Guo <shawnguo@kernel.org>
1106 M:      Sascha Hauer <kernel@pengutronix.de>
1107 R:      Stefan Agner <stefan@agner.ch>
1108 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1109 S:      Maintained
1110 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1111 F:      arch/arm/mach-imx/*vf610*
1112 F:      arch/arm/boot/dts/vf*
1113
1114 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1115 M:      Lennert Buytenhek <kernel@wantstofly.org>
1116 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1117 S:      Maintained
1118
1119 ARM/GUMSTIX MACHINE SUPPORT
1120 M:      Steve Sakoman <sakoman@gmail.com>
1121 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1122 S:      Maintained
1123
1124 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1125 M:      Philipp Zabel <philipp.zabel@gmail.com>
1126 M:      Paul Parsons <lost.distance@yahoo.com>
1127 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1128 S:      Maintained
1129 F:      arch/arm/mach-pxa/hx4700.c
1130 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1131 F:      sound/soc/pxa/hx4700.c
1132
1133 ARM/HISILICON SOC SUPPORT
1134 M:      Wei Xu <xuwei5@hisilicon.com>
1135 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1136 W:      http://www.hisilicon.com
1137 S:      Supported
1138 T:      git git://github.com/hisilicon/linux-hisi.git
1139 F:      arch/arm/mach-hisi/
1140 F:      arch/arm/boot/dts/hi3*
1141 F:      arch/arm/boot/dts/hip*
1142 F:      arch/arm/boot/dts/hisi*
1143 F:      arch/arm64/boot/dts/hisilicon/
1144
1145 ARM/HP JORNADA 7XX MACHINE SUPPORT
1146 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1147 W:      www.jlime.com
1148 S:      Maintained
1149 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1150 F:      arch/arm/mach-sa1100/jornada720.c
1151 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1152
1153 ARM/IGEP MACHINE SUPPORT
1154 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1155 M:      Javier Martinez Canillas <javier@dowhile0.org>
1156 L:      linux-omap@vger.kernel.org
1157 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1158 S:      Maintained
1159 F:      arch/arm/boot/dts/omap3-igep*
1160
1161 ARM/INCOME PXA270 SUPPORT
1162 M:      Marek Vasut <marek.vasut@gmail.com>
1163 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1164 S:      Maintained
1165 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1166
1167 ARM/INTEL IOP32X ARM ARCHITECTURE
1168 M:      Lennert Buytenhek <kernel@wantstofly.org>
1169 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1170 S:      Maintained
1171
1172 ARM/INTEL IOP33X ARM ARCHITECTURE
1173 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1174 S:      Orphan
1175
1176 ARM/INTEL IOP13XX ARM ARCHITECTURE
1177 M:      Lennert Buytenhek <kernel@wantstofly.org>
1178 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1179 S:      Maintained
1180
1181 ARM/INTEL IQ81342EX MACHINE SUPPORT
1182 M:      Lennert Buytenhek <kernel@wantstofly.org>
1183 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1184 S:      Maintained
1185
1186 ARM/INTEL IXDP2850 MACHINE SUPPORT
1187 M:      Lennert Buytenhek <kernel@wantstofly.org>
1188 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1189 S:      Maintained
1190
1191 ARM/INTEL IXP4XX ARM ARCHITECTURE
1192 M:      Imre Kaloz <kaloz@openwrt.org>
1193 M:      Krzysztof Halasa <khalasa@piap.pl>
1194 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1195 S:      Maintained
1196 F:      arch/arm/mach-ixp4xx/
1197
1198 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1199 M:      Jonathan Cameron <jic23@cam.ac.uk>
1200 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1201 S:      Maintained
1202 F:      arch/arm/mach-pxa/stargate2.c
1203 F:      drivers/pcmcia/pxa2xx_stargate2.c
1204
1205 ARM/INTEL XSC3 (MANZANO) ARM CORE
1206 M:      Lennert Buytenhek <kernel@wantstofly.org>
1207 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1208 S:      Maintained
1209
1210 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1211 M:      Lennert Buytenhek <kernel@wantstofly.org>
1212 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1213 S:      Maintained
1214
1215 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
1216 M:      Santosh Shilimkar <ssantosh@kernel.org>
1217 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1218 S:      Maintained
1219 F:      arch/arm/mach-keystone/
1220 F:      arch/arm/boot/dts/k2*
1221 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
1222
1223 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
1224 M:      Santosh Shilimkar <ssantosh@kernel.org>
1225 L:      linux-kernel@vger.kernel.org
1226 S:      Maintained
1227 F:      drivers/clk/keystone/
1228
1229 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
1230 M:      Santosh Shilimkar <ssantosh@kernel.org>
1231 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1232 L:      linux-kernel@vger.kernel.org
1233 S:      Maintained
1234 F:      drivers/clocksource/timer-keystone.c
1235
1236 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
1237 M:      Santosh Shilimkar <ssantosh@kernel.org>
1238 L:      linux-kernel@vger.kernel.org
1239 S:      Maintained
1240 F:      drivers/power/reset/keystone-reset.c
1241
1242 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
1243 M:      Santosh Shilimkar <ssantosh@kernel.org>
1244 L:      linux-kernel@vger.kernel.org
1245 S:      Maintained
1246 F:      drivers/memory/*emif*
1247
1248 ARM/LOGICPD PXA270 MACHINE SUPPORT
1249 M:      Lennert Buytenhek <kernel@wantstofly.org>
1250 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1251 S:      Maintained
1252
1253 ARM/LPC18XX ARCHITECTURE
1254 M:      Joachim Eastwood <manabian@gmail.com>
1255 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1256 S:      Maintained
1257 F:      arch/arm/boot/dts/lpc43*
1258 F:      drivers/clk/nxp/clk-lpc18xx*
1259 F:      drivers/clocksource/time-lpc32xx.c
1260 F:      drivers/i2c/busses/i2c-lpc2k.c
1261 F:      drivers/memory/pl172.c
1262 F:      drivers/mtd/spi-nor/nxp-spifi.c
1263 F:      drivers/rtc/rtc-lpc24xx.c
1264 N:      lpc18xx
1265
1266 ARM/MAGICIAN MACHINE SUPPORT
1267 M:      Philipp Zabel <philipp.zabel@gmail.com>
1268 S:      Maintained
1269
1270 ARM/Marvell Kirkwood and Armada 370, 375, 38x, XP SOC support
1271 M:      Jason Cooper <jason@lakedaemon.net>
1272 M:      Andrew Lunn <andrew@lunn.ch>
1273 M:      Gregory Clement <gregory.clement@free-electrons.com>
1274 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1275 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1276 S:      Maintained
1277 F:      arch/arm/mach-mvebu/
1278 F:      drivers/rtc/rtc-armada38x.c
1279 F:      arch/arm/boot/dts/armada*
1280 F:      arch/arm/boot/dts/kirkwood*
1281
1282
1283 ARM/Marvell Berlin SoC support
1284 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1285 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1286 S:      Maintained
1287 F:      arch/arm/mach-berlin/
1288 F:      arch/arm/boot/dts/berlin*
1289 F:      arch/arm64/boot/dts/marvell/berlin*
1290
1291
1292 ARM/Marvell Dove/MV78xx0/Orion SOC support
1293 M:      Jason Cooper <jason@lakedaemon.net>
1294 M:      Andrew Lunn <andrew@lunn.ch>
1295 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1296 M:      Gregory Clement <gregory.clement@free-electrons.com>
1297 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1298 S:      Maintained
1299 F:      arch/arm/mach-dove/
1300 F:      arch/arm/mach-mv78xx0/
1301 F:      arch/arm/mach-orion5x/
1302 F:      arch/arm/plat-orion/
1303 F:      arch/arm/boot/dts/dove*
1304 F:      arch/arm/boot/dts/orion5x*
1305
1306
1307 ARM/Orion SoC/Technologic Systems TS-78xx platform support
1308 M:      Alexander Clouter <alex@digriz.org.uk>
1309 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1310 W:      http://www.digriz.org.uk/ts78xx/kernel
1311 S:      Maintained
1312 F:      arch/arm/mach-orion5x/ts78xx-*
1313
1314 ARM/Mediatek RTC DRIVER
1315 M:      Eddie Huang <eddie.huang@mediatek.com>
1316 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1317 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1318 S:      Maintained
1319 F:      drivers/rtc/rtc-mt6397.c
1320
1321 ARM/Mediatek SoC support
1322 M:      Matthias Brugger <matthias.bgg@gmail.com>
1323 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1324 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1325 S:      Maintained
1326 F:      arch/arm/boot/dts/mt6*
1327 F:      arch/arm/boot/dts/mt8*
1328 F:      arch/arm/mach-mediatek/
1329 N:      mtk
1330 K:      mediatek
1331
1332 ARM/Mediatek USB3 PHY DRIVER
1333 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
1334 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1335 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1336 S:      Maintained
1337 F:      drivers/phy/phy-mt65xx-usb3.c
1338
1339 ARM/MICREL KS8695 ARCHITECTURE
1340 M:      Greg Ungerer <gerg@uclinux.org>
1341 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1342 F:      arch/arm/mach-ks8695/
1343 S:      Odd Fixes
1344
1345 ARM/MIOA701 MACHINE SUPPORT
1346 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1347 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1348 F:      arch/arm/mach-pxa/mioa701.c
1349 S:      Maintained
1350
1351 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1352 M:      Michael Petchkovsky <mkpetch@internode.on.net>
1353 S:      Maintained
1354
1355 ARM/NOMADIK ARCHITECTURE
1356 M:      Alessandro Rubini <rubini@unipv.it>
1357 M:      Linus Walleij <linus.walleij@linaro.org>
1358 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1359 S:      Maintained
1360 F:      arch/arm/mach-nomadik/
1361 F:      drivers/pinctrl/nomadik/
1362 F:      drivers/i2c/busses/i2c-nomadik.c
1363 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
1364
1365 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
1366 M:      Nelson Castillo <arhuaco@freaks-unidos.net>
1367 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
1368 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
1369 S:      Supported
1370
1371 ARM/TOSA MACHINE SUPPORT
1372 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1373 M:      Dirk Opfer <dirk@opfer-online.de>
1374 S:      Maintained
1375
1376 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
1377 M:      Marek Vasut <marek.vasut@gmail.com>
1378 L:      linux-arm-kernel@lists.infradead.org
1379 W:      http://hackndev.com
1380 S:      Maintained
1381 F:      arch/arm/mach-pxa/include/mach/palmtx.h
1382 F:      arch/arm/mach-pxa/palmtx.c
1383 F:      arch/arm/mach-pxa/include/mach/palmt5.h
1384 F:      arch/arm/mach-pxa/palmt5.c
1385 F:      arch/arm/mach-pxa/include/mach/palmld.h
1386 F:      arch/arm/mach-pxa/palmld.c
1387 F:      arch/arm/mach-pxa/include/mach/palmte2.h
1388 F:      arch/arm/mach-pxa/palmte2.c
1389 F:      arch/arm/mach-pxa/include/mach/palmtc.h
1390 F:      arch/arm/mach-pxa/palmtc.c
1391
1392 ARM/PALM TREO SUPPORT
1393 M:      Tomas Cech <sleep_walker@suse.com>
1394 L:      linux-arm-kernel@lists.infradead.org
1395 W:      http://hackndev.com
1396 S:      Maintained
1397 F:      arch/arm/mach-pxa/include/mach/palmtreo.h
1398 F:      arch/arm/mach-pxa/palmtreo.c
1399
1400 ARM/PALMZ72 SUPPORT
1401 M:      Sergey Lapin <slapin@ossfans.org>
1402 L:      linux-arm-kernel@lists.infradead.org
1403 W:      http://hackndev.com
1404 S:      Maintained
1405 F:      arch/arm/mach-pxa/include/mach/palmz72.h
1406 F:      arch/arm/mach-pxa/palmz72.c
1407
1408 ARM/PLEB SUPPORT
1409 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
1410 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1411 S:      Maintained
1412
1413 ARM/PT DIGITAL BOARD PORT
1414 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
1415 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1416 W:      http://www.arm.linux.org.uk/
1417 S:      Maintained
1418
1419 ARM/QUALCOMM SUPPORT
1420 M:      Andy Gross <andy.gross@linaro.org>
1421 M:      David Brown <david.brown@linaro.org>
1422 L:      linux-arm-msm@vger.kernel.org
1423 L:      linux-soc@vger.kernel.org
1424 S:      Maintained
1425 F:      arch/arm/boot/dts/qcom-*.dts
1426 F:      arch/arm/boot/dts/qcom-*.dtsi
1427 F:      arch/arm/mach-qcom/
1428 F:      arch/arm64/boot/dts/qcom/*
1429 F:      drivers/soc/qcom/
1430 F:      drivers/tty/serial/msm_serial.h
1431 F:      drivers/tty/serial/msm_serial.c
1432 F:      drivers/*/pm8???-*
1433 F:      drivers/mfd/ssbi.c
1434 F:      drivers/firmware/qcom_scm.c
1435 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/agross/linux.git
1436
1437 ARM/RADISYS ENP2611 MACHINE SUPPORT
1438 M:      Lennert Buytenhek <kernel@wantstofly.org>
1439 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1440 S:      Maintained
1441
1442 ARM/RENESAS ARM64 ARCHITECTURE
1443 M:      Simon Horman <horms@verge.net.au>
1444 M:      Magnus Damm <magnus.damm@gmail.com>
1445 L:      linux-sh@vger.kernel.org
1446 Q:      http://patchwork.kernel.org/project/linux-sh/list/
1447 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1448 S:      Supported
1449 F:      arch/arm64/boot/dts/renesas/
1450
1451 ARM/RISCPC ARCHITECTURE
1452 M:      Russell King <linux@arm.linux.org.uk>
1453 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1454 W:      http://www.arm.linux.org.uk/
1455 S:      Maintained
1456 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
1457 F:      arch/arm/include/asm/hardware/ioc.h
1458 F:      arch/arm/include/asm/hardware/iomd.h
1459 F:      arch/arm/include/asm/hardware/memc.h
1460 F:      arch/arm/mach-rpc/
1461 F:      drivers/net/ethernet/8390/etherh.c
1462 F:      drivers/net/ethernet/i825xx/ether1*
1463 F:      drivers/net/ethernet/seeq/ether3*
1464 F:      drivers/scsi/arm/
1465
1466 ARM/Rockchip SoC support
1467 M:      Heiko Stuebner <heiko@sntech.de>
1468 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1469 L:      linux-rockchip@lists.infradead.org
1470 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
1471 S:      Maintained
1472 F:      arch/arm/boot/dts/rk3*
1473 F:      arch/arm/mach-rockchip/
1474 F:      drivers/clk/rockchip/
1475 F:      drivers/i2c/busses/i2c-rk3x.c
1476 F:      drivers/*/*rockchip*
1477 F:      drivers/*/*/*rockchip*
1478 F:      sound/soc/rockchip/
1479 N:      rockchip
1480
1481 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
1482 M:      Kukjin Kim <kgene@kernel.org>
1483 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
1484 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1485 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1486 S:      Maintained
1487 F:      arch/arm/boot/dts/s3c*
1488 F:      arch/arm/boot/dts/s5p*
1489 F:      arch/arm/boot/dts/samsung*
1490 F:      arch/arm/boot/dts/exynos*
1491 F:      arch/arm64/boot/dts/exynos/
1492 F:      arch/arm/plat-samsung/
1493 F:      arch/arm/mach-s3c24*/
1494 F:      arch/arm/mach-s3c64xx/
1495 F:      arch/arm/mach-s5p*/
1496 F:      arch/arm/mach-exynos*/
1497 F:      drivers/*/*s3c2410*
1498 F:      drivers/*/*/*s3c2410*
1499 F:      drivers/spi/spi-s3c*
1500 F:      sound/soc/samsung/*
1501 F:      Documentation/arm/Samsung/
1502 F:      Documentation/devicetree/bindings/arm/samsung/
1503 F:      Documentation/devicetree/bindings/sram/samsung-sram.txt
1504 F:      Documentation/devicetree/bindings/power/pd-samsung.txt
1505 N:      exynos
1506
1507 ARM/SAMSUNG MOBILE MACHINE SUPPORT
1508 M:      Kyungmin Park <kyungmin.park@samsung.com>
1509 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1510 S:      Maintained
1511 F:      arch/arm/mach-s5pv210/
1512
1513 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1514 M:      Kyungmin Park <kyungmin.park@samsung.com>
1515 M:      Kamil Debski <k.debski@samsung.com>
1516 L:      linux-arm-kernel@lists.infradead.org
1517 L:      linux-media@vger.kernel.org
1518 S:      Maintained
1519 F:      drivers/media/platform/s5p-g2d/
1520
1521 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1522 M:      Kyungmin Park <kyungmin.park@samsung.com>
1523 M:      Kamil Debski <k.debski@samsung.com>
1524 M:      Jeongtae Park <jtp.park@samsung.com>
1525 L:      linux-arm-kernel@lists.infradead.org
1526 L:      linux-media@vger.kernel.org
1527 S:      Maintained
1528 F:      arch/arm/plat-samsung/s5p-dev-mfc.c
1529 F:      drivers/media/platform/s5p-mfc/
1530
1531 ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1532 M:      Kyungmin Park <kyungmin.park@samsung.com>
1533 M:      Tomasz Stanislawski <t.stanislaws@samsung.com>
1534 L:      linux-arm-kernel@lists.infradead.org
1535 L:      linux-media@vger.kernel.org
1536 S:      Maintained
1537 F:      drivers/media/platform/s5p-tv/
1538
1539 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
1540 M:      Andrzej Pietrasiewicz <andrzej.p@samsung.com>
1541 M:      Jacek Anaszewski <j.anaszewski@samsung.com>
1542 L:      linux-arm-kernel@lists.infradead.org
1543 L:      linux-media@vger.kernel.org
1544 S:      Maintained
1545 F:      drivers/media/platform/s5p-jpeg/
1546
1547 ARM/SHMOBILE ARM ARCHITECTURE
1548 M:      Simon Horman <horms@verge.net.au>
1549 M:      Magnus Damm <magnus.damm@gmail.com>
1550 L:      linux-renesas-soc@vger.kernel.org
1551 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
1552 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1553 S:      Supported
1554 F:      arch/arm/boot/dts/emev2*
1555 F:      arch/arm/boot/dts/r7s*
1556 F:      arch/arm/boot/dts/r8a*
1557 F:      arch/arm/boot/dts/sh*
1558 F:      arch/arm/configs/shmobile_defconfig
1559 F:      arch/arm/include/debug/renesas-scif.S
1560 F:      arch/arm/mach-shmobile/
1561 F:      drivers/sh/
1562
1563 ARM/SOCFPGA ARCHITECTURE
1564 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1565 S:      Maintained
1566 F:      arch/arm/mach-socfpga/
1567 F:      arch/arm/boot/dts/socfpga*
1568 F:      arch/arm/configs/socfpga_defconfig
1569 F:      arch/arm64/boot/dts/altera/
1570 W:      http://www.rocketboards.org
1571 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
1572
1573 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1574 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1575 S:      Maintained
1576 F:      drivers/clk/socfpga/
1577
1578 ARM/SOCFPGA EDAC SUPPORT
1579 M:      Thor Thayer <tthayer@opensource.altera.com>
1580 S:      Maintained
1581 F:      drivers/edac/altera_edac.
1582
1583 ARM/STI ARCHITECTURE
1584 M:      Srinivas Kandagatla <srinivas.kandagatla@gmail.com>
1585 M:      Maxime Coquelin <maxime.coquelin@st.com>
1586 M:      Patrice Chotard <patrice.chotard@st.com>
1587 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1588 L:      kernel@stlinux.com
1589 W:      http://www.stlinux.com
1590 S:      Maintained
1591 F:      arch/arm/mach-sti/
1592 F:      arch/arm/boot/dts/sti*
1593 F:      drivers/char/hw_random/st-rng.c
1594 F:      drivers/clocksource/arm_global_timer.c
1595 F:      drivers/clocksource/clksrc_st_lpc.c
1596 F:      drivers/i2c/busses/i2c-st.c
1597 F:      drivers/media/rc/st_rc.c
1598 F:      drivers/media/platform/sti/c8sectpfe/
1599 F:      drivers/mmc/host/sdhci-st.c
1600 F:      drivers/phy/phy-miphy28lp.c
1601 F:      drivers/phy/phy-miphy365x.c
1602 F:      drivers/phy/phy-stih407-usb.c
1603 F:      drivers/phy/phy-stih41x-usb.c
1604 F:      drivers/pinctrl/pinctrl-st.c
1605 F:      drivers/reset/sti/
1606 F:      drivers/rtc/rtc-st-lpc.c
1607 F:      drivers/tty/serial/st-asc.c
1608 F:      drivers/usb/dwc3/dwc3-st.c
1609 F:      drivers/usb/host/ehci-st.c
1610 F:      drivers/usb/host/ohci-st.c
1611 F:      drivers/watchdog/st_lpc_wdt.c
1612 F:      drivers/ata/ahci_st.c
1613
1614 ARM/STM32 ARCHITECTURE
1615 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
1616 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1617 S:      Maintained
1618 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git
1619 N:      stm32
1620 F:      drivers/clocksource/armv7m_systick.c
1621
1622 ARM/TANGO ARCHITECTURE
1623 M:      Marc Gonzalez <marc_gonzalez@sigmadesigns.com>
1624 L:      linux-arm-kernel@lists.infradead.org
1625 S:      Maintained
1626 F:      arch/arm/mach-tango/
1627 F:      arch/arm/boot/dts/tango*
1628
1629 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
1630 M:      Lennert Buytenhek <kernel@wantstofly.org>
1631 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1632 S:      Maintained
1633
1634 ARM/TETON BGA MACHINE SUPPORT
1635 M:      "Mark F. Brown" <mark.brown314@gmail.com>
1636 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1637 S:      Maintained
1638
1639 ARM/THECUS N2100 MACHINE SUPPORT
1640 M:      Lennert Buytenhek <kernel@wantstofly.org>
1641 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1642 S:      Maintained
1643
1644 ARM/NUVOTON W90X900 ARM ARCHITECTURE
1645 M:      Wan ZongShun <mcuos.com@gmail.com>
1646 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1647 W:      http://www.mcuos.com
1648 S:      Maintained
1649 F:      arch/arm/mach-w90x900/
1650 F:      drivers/input/keyboard/w90p910_keypad.c
1651 F:      drivers/input/touchscreen/w90p910_ts.c
1652 F:      drivers/watchdog/nuc900_wdt.c
1653 F:      drivers/net/ethernet/nuvoton/w90p910_ether.c
1654 F:      drivers/mtd/nand/nuc900_nand.c
1655 F:      drivers/rtc/rtc-nuc900.c
1656 F:      drivers/spi/spi-nuc900.c
1657 F:      drivers/usb/host/ehci-w90x900.c
1658 F:      drivers/video/fbdev/nuc900fb.c
1659
1660 ARM/U300 MACHINE SUPPORT
1661 M:      Linus Walleij <linus.walleij@linaro.org>
1662 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1663 S:      Supported
1664 F:      arch/arm/mach-u300/
1665 F:      drivers/clocksource/timer-u300.c
1666 F:      drivers/i2c/busses/i2c-stu300.c
1667 F:      drivers/rtc/rtc-coh901331.c
1668 F:      drivers/watchdog/coh901327_wdt.c
1669 F:      drivers/dma/coh901318*
1670 F:      drivers/mfd/ab3100*
1671 F:      drivers/rtc/rtc-ab3100.c
1672 F:      drivers/rtc/rtc-coh901331.c
1673 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1674
1675 ARM/UNIPHIER ARCHITECTURE
1676 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
1677 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1678 S:      Maintained
1679 F:      arch/arm/boot/dts/uniphier*
1680 F:      arch/arm/include/asm/hardware/cache-uniphier.h
1681 F:      arch/arm/mach-uniphier/
1682 F:      arch/arm/mm/cache-uniphier.c
1683 F:      arch/arm64/boot/dts/socionext/
1684 F:      drivers/bus/uniphier-system-bus.c
1685 F:      drivers/i2c/busses/i2c-uniphier*
1686 F:      drivers/pinctrl/uniphier/
1687 F:      drivers/tty/serial/8250/8250_uniphier.c
1688 N:      uniphier
1689
1690 ARM/Ux500 ARM ARCHITECTURE
1691 M:      Linus Walleij <linus.walleij@linaro.org>
1692 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1693 S:      Maintained
1694 F:      arch/arm/mach-ux500/
1695 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
1696 F:      drivers/dma/ste_dma40*
1697 F:      drivers/hwspinlock/u8500_hsem.c
1698 F:      drivers/mfd/abx500*
1699 F:      drivers/mfd/ab8500*
1700 F:      drivers/mfd/dbx500*
1701 F:      drivers/mfd/db8500*
1702 F:      drivers/pinctrl/nomadik/pinctrl-ab*
1703 F:      drivers/pinctrl/nomadik/pinctrl-nomadik*
1704 F:      drivers/rtc/rtc-ab8500.c
1705 F:      drivers/rtc/rtc-pl031.c
1706 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1707
1708 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
1709 M:      Ulf Hansson <ulf.hansson@linaro.org>
1710 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1711 T:      git git://git.linaro.org/people/ulfh/clk.git
1712 S:      Maintained
1713 F:      drivers/clk/ux500/
1714 F:      include/linux/platform_data/clk-ux500.h
1715
1716 ARM/VERSATILE EXPRESS PLATFORM
1717 M:      Liviu Dudau <liviu.dudau@arm.com>
1718 M:      Sudeep Holla <sudeep.holla@arm.com>
1719 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
1720 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1721 S:      Maintained
1722 F:      arch/arm/boot/dts/vexpress*
1723 F:      arch/arm64/boot/dts/arm/
1724 F:      arch/arm/mach-vexpress/
1725 F:      */*/vexpress*
1726 F:      */*/*/vexpress*
1727 F:      drivers/clk/versatile/clk-vexpress-osc.c
1728 F:      drivers/clocksource/versatile.c
1729
1730 ARM/VFP SUPPORT
1731 M:      Russell King <linux@arm.linux.org.uk>
1732 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1733 W:      http://www.arm.linux.org.uk/
1734 S:      Maintained
1735 F:      arch/arm/vfp/
1736
1737 ARM/VOIPAC PXA270 SUPPORT
1738 M:      Marek Vasut <marek.vasut@gmail.com>
1739 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1740 S:      Maintained
1741 F:      arch/arm/mach-pxa/vpac270.c
1742 F:      arch/arm/mach-pxa/include/mach/vpac270.h
1743
1744 ARM/VT8500 ARM ARCHITECTURE
1745 M:      Tony Prisk <linux@prisktech.co.nz>
1746 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1747 S:      Maintained
1748 F:      arch/arm/mach-vt8500/
1749 F:      drivers/clocksource/vt8500_timer.c
1750 F:      drivers/i2c/busses/i2c-wmt.c
1751 F:      drivers/mmc/host/wmt-sdmmc.c
1752 F:      drivers/pwm/pwm-vt8500.c
1753 F:      drivers/rtc/rtc-vt8500.c
1754 F:      drivers/tty/serial/vt8500_serial.c
1755 F:      drivers/usb/host/ehci-platform.c
1756 F:      drivers/usb/host/uhci-platform.c
1757 F:      drivers/video/fbdev/vt8500lcdfb.*
1758 F:      drivers/video/fbdev/wm8505fb*
1759 F:      drivers/video/fbdev/wmt_ge_rops.*
1760
1761 ARM/ZIPIT Z2 SUPPORT
1762 M:      Marek Vasut <marek.vasut@gmail.com>
1763 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1764 S:      Maintained
1765 F:      arch/arm/mach-pxa/z2.c
1766 F:      arch/arm/mach-pxa/include/mach/z2.h
1767
1768 ARM/ZTE ARCHITECTURE
1769 M:      Jun Nie <jun.nie@linaro.org>
1770 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1771 S:      Maintained
1772 F:      arch/arm/mach-zx/
1773 F:      drivers/clk/zte/
1774 F:      Documentation/devicetree/bindings/arm/zte.txt
1775 F:      Documentation/devicetree/bindings/clock/zx296702-clk.txt
1776
1777 ARM/ZYNQ ARCHITECTURE
1778 M:      Michal Simek <michal.simek@xilinx.com>
1779 R:      Sören Brinkmann <soren.brinkmann@xilinx.com>
1780 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1781 W:      http://wiki.xilinx.com
1782 T:      git https://github.com/Xilinx/linux-xlnx.git
1783 S:      Supported
1784 F:      arch/arm/mach-zynq/
1785 F:      drivers/cpuidle/cpuidle-zynq.c
1786 F:      drivers/block/xsysace.c
1787 N:      zynq
1788 N:      xilinx
1789 F:      drivers/clocksource/cadence_ttc_timer.c
1790 F:      drivers/i2c/busses/i2c-cadence.c
1791 F:      drivers/mmc/host/sdhci-of-arasan.c
1792 F:      drivers/edac/synopsys_edac.c
1793
1794 ARM SMMU DRIVERS
1795 M:      Will Deacon <will.deacon@arm.com>
1796 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1797 S:      Maintained
1798 F:      drivers/iommu/arm-smmu.c
1799 F:      drivers/iommu/arm-smmu-v3.c
1800 F:      drivers/iommu/io-pgtable-arm.c
1801
1802 ARM64 PORT (AARCH64 ARCHITECTURE)
1803 M:      Catalin Marinas <catalin.marinas@arm.com>
1804 M:      Will Deacon <will.deacon@arm.com>
1805 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1806 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
1807 S:      Maintained
1808 F:      arch/arm64/
1809 F:      Documentation/arm64/
1810
1811 AS3645A LED FLASH CONTROLLER DRIVER
1812 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1813 L:      linux-media@vger.kernel.org
1814 T:      git git://linuxtv.org/media_tree.git
1815 S:      Maintained
1816 F:      drivers/media/i2c/as3645a.c
1817 F:      include/media/i2c/as3645a.h
1818
1819 ASC7621 HARDWARE MONITOR DRIVER
1820 M:      George Joseph <george.joseph@fairview5.com>
1821 L:      lm-sensors@lm-sensors.org
1822 S:      Maintained
1823 F:      Documentation/hwmon/asc7621
1824 F:      drivers/hwmon/asc7621.c
1825
1826 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
1827 M:      Corentin Chary <corentin.chary@gmail.com>
1828 L:      acpi4asus-user@lists.sourceforge.net
1829 L:      platform-driver-x86@vger.kernel.org
1830 W:      http://acpi4asus.sf.net
1831 S:      Maintained
1832 F:      drivers/platform/x86/asus*.c
1833 F:      drivers/platform/x86/eeepc*.c
1834
1835 ASUS WIRELESS RADIO CONTROL DRIVER
1836 M:      JoĂ£o Paulo Rechi Vita <jprvita@gmail.com>
1837 L:      platform-driver-x86@vger.kernel.org
1838 S:      Maintained
1839 F:      drivers/platform/x86/asus-wireless.c
1840
1841 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
1842 R:      Dan Williams <dan.j.williams@intel.com>
1843 W:      http://sourceforge.net/projects/xscaleiop
1844 S:      Odd fixes
1845 F:      Documentation/crypto/async-tx-api.txt
1846 F:      crypto/async_tx/
1847 F:      drivers/dma/
1848 F:      include/linux/dmaengine.h
1849 F:      include/linux/async_tx.h
1850
1851 AT24 EEPROM DRIVER
1852 M:      Wolfram Sang <wsa@the-dreams.de>
1853 L:      linux-i2c@vger.kernel.org
1854 S:      Maintained
1855 F:      drivers/misc/eeprom/at24.c
1856 F:      include/linux/platform_data/at24.h
1857
1858 ATA OVER ETHERNET (AOE) DRIVER
1859 M:      "Ed L. Cashin" <ed.cashin@acm.org>
1860 W:      http://www.openaoe.org/
1861 S:      Supported
1862 F:      Documentation/aoe/
1863 F:      drivers/block/aoe/
1864
1865 ATHEROS 71XX/9XXX GPIO DRIVER
1866 M:      Alban Bedel <albeu@free.fr>
1867 W:      https://github.com/AlbanBedel/linux
1868 T:      git git://github.com/AlbanBedel/linux
1869 S:      Maintained
1870 F:      drivers/gpio/gpio-ath79.c
1871 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
1872
1873 ATHEROS ATH GENERIC UTILITIES
1874 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1875 L:      linux-wireless@vger.kernel.org
1876 S:      Supported
1877 F:      drivers/net/wireless/ath/*
1878
1879 ATHEROS ATH5K WIRELESS DRIVER
1880 M:      Jiri Slaby <jirislaby@gmail.com>
1881 M:      Nick Kossifidis <mickflemm@gmail.com>
1882 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1883 L:      linux-wireless@vger.kernel.org
1884 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
1885 S:      Maintained
1886 F:      drivers/net/wireless/ath/ath5k/
1887
1888 ATHEROS ATH6KL WIRELESS DRIVER
1889 M:      Kalle Valo <kvalo@qca.qualcomm.com>
1890 L:      linux-wireless@vger.kernel.org
1891 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
1892 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
1893 S:      Supported
1894 F:      drivers/net/wireless/ath/ath6kl/
1895
1896 WILOCITY WIL6210 WIRELESS DRIVER
1897 M:      Maya Erez <qca_merez@qca.qualcomm.com>
1898 L:      linux-wireless@vger.kernel.org
1899 L:      wil6210@qca.qualcomm.com
1900 S:      Supported
1901 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
1902 F:      drivers/net/wireless/ath/wil6210/
1903 F:      include/uapi/linux/wil6210_uapi.h
1904
1905 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1906 M:      Christian Lamparter <chunkeey@googlemail.com>
1907 L:      linux-wireless@vger.kernel.org
1908 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
1909 S:      Maintained
1910 F:      drivers/net/wireless/ath/carl9170/
1911
1912 ATK0110 HWMON DRIVER
1913 M:      Luca Tettamanti <kronos.it@gmail.com>
1914 L:      lm-sensors@lm-sensors.org
1915 S:      Maintained
1916 F:      drivers/hwmon/asus_atk0110.c
1917
1918 ATI_REMOTE2 DRIVER
1919 M:      Ville Syrjala <syrjala@sci.fi>
1920 S:      Maintained
1921 F:      drivers/input/misc/ati_remote2.c
1922
1923 ATLX ETHERNET DRIVERS
1924 M:      Jay Cliburn <jcliburn@gmail.com>
1925 M:      Chris Snook <chris.snook@gmail.com>
1926 L:      netdev@vger.kernel.org
1927 W:      http://sourceforge.net/projects/atl1
1928 W:      http://atl1.sourceforge.net
1929 S:      Maintained
1930 F:      drivers/net/ethernet/atheros/
1931
1932 ATM
1933 M:      Chas Williams <3chas3@gmail.com>
1934 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
1935 L:      netdev@vger.kernel.org
1936 W:      http://linux-atm.sourceforge.net
1937 S:      Maintained
1938 F:      drivers/atm/
1939 F:      include/linux/atm*
1940 F:      include/uapi/linux/atm*
1941
1942 ATMEL AT91 / AT32 MCI DRIVER
1943 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1944 S:      Maintained
1945 F:      drivers/mmc/host/atmel-mci.c
1946
1947 ATMEL AT91 / AT32 SERIAL DRIVER
1948 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1949 S:      Supported
1950 F:      drivers/tty/serial/atmel_serial.c
1951
1952 ATMEL SAMA5D2 ADC DRIVER
1953 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1954 L:      linux-iio@vger.kernel.org
1955 S:      Supported
1956 F:      drivers/iio/adc/at91-sama5d2_adc.c
1957
1958 ATMEL Audio ALSA driver
1959 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1960 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1961 S:      Supported
1962 F:      sound/soc/atmel
1963
1964 ATMEL DMA DRIVER
1965 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1966 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1967 S:      Supported
1968 F:      drivers/dma/at_hdmac.c
1969 F:      drivers/dma/at_hdmac_regs.h
1970 F:      include/linux/platform_data/dma-atmel.h
1971
1972 ATMEL XDMA DRIVER
1973 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1974 L:      linux-arm-kernel@lists.infradead.org
1975 L:      dmaengine@vger.kernel.org
1976 S:      Supported
1977 F:      drivers/dma/at_xdmac.c
1978
1979 ATMEL I2C DRIVER
1980 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1981 L:      linux-i2c@vger.kernel.org
1982 S:      Supported
1983 F:      drivers/i2c/busses/i2c-at91.c
1984
1985 ATMEL ISI DRIVER
1986 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1987 L:      linux-media@vger.kernel.org
1988 S:      Supported
1989 F:      drivers/media/platform/soc_camera/atmel-isi.c
1990 F:      include/media/atmel-isi.h
1991
1992 ATMEL LCDFB DRIVER
1993 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1994 L:      linux-fbdev@vger.kernel.org
1995 S:      Maintained
1996 F:      drivers/video/fbdev/atmel_lcdfb.c
1997 F:      include/video/atmel_lcdc.h
1998
1999 ATMEL MACB ETHERNET DRIVER
2000 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2001 S:      Supported
2002 F:      drivers/net/ethernet/cadence/
2003
2004 ATMEL NAND DRIVER
2005 M:      Wenyou Yang <wenyou.yang@atmel.com>
2006 M:      Josh Wu <rainyfeeling@outlook.com>
2007 L:      linux-mtd@lists.infradead.org
2008 S:      Supported
2009 F:      drivers/mtd/nand/atmel_nand*
2010
2011 ATMEL SDMMC DRIVER
2012 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
2013 L:      linux-mmc@vger.kernel.org
2014 S:      Supported
2015 F:      drivers/mmc/host/sdhci-of-at91.c
2016
2017 ATMEL SPI DRIVER
2018 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2019 S:      Supported
2020 F:      drivers/spi/spi-atmel.*
2021
2022 ATMEL SSC DRIVER
2023 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2024 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2025 S:      Supported
2026 F:      drivers/misc/atmel-ssc.c
2027 F:      include/linux/atmel-ssc.h
2028
2029 ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
2030 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2031 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2032 S:      Supported
2033 F:      drivers/misc/atmel_tclib.c
2034 F:      drivers/clocksource/tcb_clksrc.c
2035
2036 ATMEL USBA UDC DRIVER
2037 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2038 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2039 S:      Supported
2040 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
2041
2042 ATMEL WIRELESS DRIVER
2043 M:      Simon Kelley <simon@thekelleys.org.uk>
2044 L:      linux-wireless@vger.kernel.org
2045 W:      http://www.thekelleys.org.uk/atmel
2046 W:      http://atmelwlandriver.sourceforge.net/
2047 S:      Maintained
2048 F:      drivers/net/wireless/atmel/atmel*
2049
2050 ATMEL MAXTOUCH DRIVER
2051 M:      Nick Dyer <nick.dyer@itdev.co.uk>
2052 T:      git git://github.com/atmel-maxtouch/linux.git
2053 S:      Supported
2054 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2055 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2056 F:      include/linux/platform_data/atmel_mxt_ts.h
2057
2058 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2059 M:      Bradley Grove <linuxdrivers@attotech.com>
2060 L:      linux-scsi@vger.kernel.org
2061 W:      http://www.attotech.com
2062 S:      Supported
2063 F:      drivers/scsi/esas2r
2064
2065 ATUSB IEEE 802.15.4 RADIO DRIVER
2066 M:      Stefan Schmidt <stefan@osg.samsung.com>
2067 L:      linux-wpan@vger.kernel.org
2068 S:      Maintained
2069 F:      drivers/net/ieee802154/atusb.c
2070 F:      drivers/net/ieee802154/atusb.h
2071 F:      drivers/net/ieee802154/at86rf230.h
2072
2073 AUDIT SUBSYSTEM
2074 M:      Paul Moore <paul@paul-moore.com>
2075 M:      Eric Paris <eparis@redhat.com>
2076 L:      linux-audit@redhat.com (moderated for non-subscribers)
2077 W:      http://people.redhat.com/sgrubb/audit/
2078 T:      git git://git.infradead.org/users/pcmoore/audit
2079 S:      Maintained
2080 F:      include/linux/audit.h
2081 F:      include/uapi/linux/audit.h
2082 F:      kernel/audit*
2083
2084 AUXILIARY DISPLAY DRIVERS
2085 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2086 W:      http://miguelojeda.es/auxdisplay.htm
2087 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2088 S:      Maintained
2089 F:      drivers/auxdisplay/
2090 F:      include/linux/cfag12864b.h
2091
2092 AVR32 ARCHITECTURE
2093 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
2094 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
2095 W:      http://www.atmel.com/products/AVR32/
2096 W:      http://mirror.egtvedt.no/avr32linux.org/
2097 W:      http://avrfreaks.net/
2098 S:      Maintained
2099 F:      arch/avr32/
2100
2101 AVR32/AT32AP MACHINE SUPPORT
2102 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
2103 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
2104 S:      Maintained
2105 F:      arch/avr32/mach-at32ap/
2106
2107 AX.25 NETWORK LAYER
2108 M:      Ralf Baechle <ralf@linux-mips.org>
2109 L:      linux-hams@vger.kernel.org
2110 W:      http://www.linux-ax25.org/
2111 S:      Maintained
2112 F:      include/uapi/linux/ax25.h
2113 F:      include/net/ax25.h
2114 F:      net/ax25/
2115
2116 AZ6007 DVB DRIVER
2117 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2118 L:      linux-media@vger.kernel.org
2119 W:      https://linuxtv.org
2120 T:      git git://linuxtv.org/media_tree.git
2121 S:      Maintained
2122 F:      drivers/media/usb/dvb-usb-v2/az6007.c
2123
2124 AZTECH FM RADIO RECEIVER DRIVER
2125 M:      Hans Verkuil <hverkuil@xs4all.nl>
2126 L:      linux-media@vger.kernel.org
2127 T:      git git://linuxtv.org/media_tree.git
2128 W:      https://linuxtv.org
2129 S:      Maintained
2130 F:      drivers/media/radio/radio-aztech*
2131
2132 B43 WIRELESS DRIVER
2133 L:      linux-wireless@vger.kernel.org
2134 L:      b43-dev@lists.infradead.org
2135 W:      http://wireless.kernel.org/en/users/Drivers/b43
2136 S:      Odd Fixes
2137 F:      drivers/net/wireless/broadcom/b43/
2138
2139 B43LEGACY WIRELESS DRIVER
2140 M:      Larry Finger <Larry.Finger@lwfinger.net>
2141 L:      linux-wireless@vger.kernel.org
2142 L:      b43-dev@lists.infradead.org
2143 W:      http://wireless.kernel.org/en/users/Drivers/b43
2144 S:      Maintained
2145 F:      drivers/net/wireless/broadcom/b43legacy/
2146
2147 BACKLIGHT CLASS/SUBSYSTEM
2148 M:      Jingoo Han <jingoohan1@gmail.com>
2149 M:      Lee Jones <lee.jones@linaro.org>
2150 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
2151 S:      Maintained
2152 F:      drivers/video/backlight/
2153 F:      include/linux/backlight.h
2154
2155 BATMAN ADVANCED
2156 M:      Marek Lindner <mareklindner@neomailbox.ch>
2157 M:      Simon Wunderlich <sw@simonwunderlich.de>
2158 M:      Antonio Quartulli <a@unstable.cc>
2159 L:      b.a.t.m.a.n@lists.open-mesh.org
2160 W:      http://www.open-mesh.org/
2161 S:      Maintained
2162 F:      net/batman-adv/
2163
2164 BAYCOM/HDLCDRV DRIVERS FOR AX.25
2165 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
2166 L:      linux-hams@vger.kernel.org
2167 W:      http://www.baycom.org/~tom/ham/ham.html
2168 S:      Maintained
2169 F:      drivers/net/hamradio/baycom*
2170
2171 BCACHE (BLOCK LAYER CACHE)
2172 M:      Kent Overstreet <kent.overstreet@gmail.com>
2173 L:      linux-bcache@vger.kernel.org
2174 W:      http://bcache.evilpiepirate.org
2175 S:      Maintained
2176 F:      drivers/md/bcache/
2177
2178 BDISP ST MEDIA DRIVER
2179 M:      Fabien Dessenne <fabien.dessenne@st.com>
2180 L:      linux-media@vger.kernel.org
2181 T:      git git://linuxtv.org/media_tree.git
2182 W:      https://linuxtv.org
2183 S:      Supported
2184 F:      drivers/media/platform/sti/bdisp
2185
2186 BEFS FILE SYSTEM
2187 S:      Orphan
2188 F:      Documentation/filesystems/befs.txt
2189 F:      fs/befs/
2190
2191 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
2192 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
2193 L:      netdev@vger.kernel.org
2194 S:      Maintained
2195 F:      drivers/net/ethernet/ec_bhf.c
2196
2197 BFS FILE SYSTEM
2198 M:      "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
2199 S:      Maintained
2200 F:      Documentation/filesystems/bfs.txt
2201 F:      fs/bfs/
2202 F:      include/uapi/linux/bfs_fs.h
2203
2204 BLACKFIN ARCHITECTURE
2205 M:      Steven Miao <realmz6@gmail.com>
2206 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2207 T:      git git://git.code.sf.net/p/adi-linux/code
2208 W:      http://blackfin.uclinux.org
2209 S:      Supported
2210 F:      arch/blackfin/
2211
2212 BLACKFIN EMAC DRIVER
2213 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2214 W:      http://blackfin.uclinux.org
2215 S:      Supported
2216 F:      drivers/net/ethernet/adi/
2217
2218 BLACKFIN RTC DRIVER
2219 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2220 W:      http://blackfin.uclinux.org
2221 S:      Supported
2222 F:      drivers/rtc/rtc-bfin.c
2223
2224 BLACKFIN SDH DRIVER
2225 M:      Sonic Zhang <sonic.zhang@analog.com>
2226 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2227 W:      http://blackfin.uclinux.org
2228 S:      Supported
2229 F:      drivers/mmc/host/bfin_sdh.c
2230
2231 BLACKFIN SERIAL DRIVER
2232 M:      Sonic Zhang <sonic.zhang@analog.com>
2233 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2234 W:      http://blackfin.uclinux.org
2235 S:      Supported
2236 F:      drivers/tty/serial/bfin_uart.c
2237
2238 BLACKFIN WATCHDOG DRIVER
2239 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2240 W:      http://blackfin.uclinux.org
2241 S:      Supported
2242 F:      drivers/watchdog/bfin_wdt.c
2243
2244 BLACKFIN I2C TWI DRIVER
2245 M:      Sonic Zhang <sonic.zhang@analog.com>
2246 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2247 W:      http://blackfin.uclinux.org/
2248 S:      Supported
2249 F:      drivers/i2c/busses/i2c-bfin-twi.c
2250
2251 BLACKFIN MEDIA DRIVER
2252 M:      Scott Jiang <scott.jiang.linux@gmail.com>
2253 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2254 W:      http://blackfin.uclinux.org/
2255 S:      Supported
2256 F:      drivers/media/platform/blackfin/
2257 F:      drivers/media/i2c/adv7183*
2258 F:      drivers/media/i2c/vs6624*
2259
2260 BLINKM RGB LED DRIVER
2261 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
2262 S:      Maintained
2263 F:      drivers/leds/leds-blinkm.c
2264
2265 BLOCK LAYER
2266 M:      Jens Axboe <axboe@kernel.dk>
2267 L:      linux-block@vger.kernel.org
2268 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
2269 S:      Maintained
2270 F:      block/
2271 F:      kernel/trace/blktrace.c
2272
2273 BLOCK2MTD DRIVER
2274 M:      Joern Engel <joern@lazybastard.org>
2275 L:      linux-mtd@lists.infradead.org
2276 S:      Maintained
2277 F:      drivers/mtd/devices/block2mtd.c
2278
2279 BLUETOOTH DRIVERS
2280 M:      Marcel Holtmann <marcel@holtmann.org>
2281 M:      Gustavo Padovan <gustavo@padovan.org>
2282 M:      Johan Hedberg <johan.hedberg@gmail.com>
2283 L:      linux-bluetooth@vger.kernel.org
2284 W:      http://www.bluez.org/
2285 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2286 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2287 S:      Maintained
2288 F:      drivers/bluetooth/
2289
2290 BLUETOOTH SUBSYSTEM
2291 M:      Marcel Holtmann <marcel@holtmann.org>
2292 M:      Gustavo Padovan <gustavo@padovan.org>
2293 M:      Johan Hedberg <johan.hedberg@gmail.com>
2294 L:      linux-bluetooth@vger.kernel.org
2295 W:      http://www.bluez.org/
2296 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2297 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2298 S:      Maintained
2299 F:      net/bluetooth/
2300 F:      include/net/bluetooth/
2301
2302 BONDING DRIVER
2303 M:      Jay Vosburgh <j.vosburgh@gmail.com>
2304 M:      Veaceslav Falico <vfalico@gmail.com>
2305 M:      Andy Gospodarek <gospo@cumulusnetworks.com>
2306 L:      netdev@vger.kernel.org
2307 W:      http://sourceforge.net/projects/bonding/
2308 S:      Supported
2309 F:      drivers/net/bonding/
2310 F:      include/uapi/linux/if_bonding.h
2311
2312 BPF (Safe dynamic programs and tools)
2313 M:      Alexei Starovoitov <ast@kernel.org>
2314 L:      netdev@vger.kernel.org
2315 L:      linux-kernel@vger.kernel.org
2316 S:      Supported
2317 F:      kernel/bpf/
2318
2319 BROADCOM B44 10/100 ETHERNET DRIVER
2320 M:      Gary Zambrano <zambrano@broadcom.com>
2321 L:      netdev@vger.kernel.org
2322 S:      Supported
2323 F:      drivers/net/ethernet/broadcom/b44.*
2324
2325 BROADCOM GENET ETHERNET DRIVER
2326 M:      Florian Fainelli <f.fainelli@gmail.com>
2327 L:      netdev@vger.kernel.org
2328 S:      Supported
2329 F:      drivers/net/ethernet/broadcom/genet/
2330
2331 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
2332 M:      Sony Chacko <sony.chacko@qlogic.com>
2333 M:      Dept-HSGLinuxNICDev@qlogic.com
2334 L:      netdev@vger.kernel.org
2335 S:      Supported
2336 F:      drivers/net/ethernet/broadcom/bnx2.*
2337 F:      drivers/net/ethernet/broadcom/bnx2_*
2338
2339 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
2340 M:      Ariel Elior <ariel.elior@qlogic.com>
2341 L:      netdev@vger.kernel.org
2342 S:      Supported
2343 F:      drivers/net/ethernet/broadcom/bnx2x/
2344
2345 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
2346 M:      Florian Fainelli <f.fainelli@gmail.com>
2347 M:      Ray Jui <rjui@broadcom.com>
2348 M:      Scott Branden <sbranden@broadcom.com>
2349 L:      bcm-kernel-feedback-list@broadcom.com
2350 T:      git git://github.com/broadcom/mach-bcm
2351 S:      Maintained
2352 F:      arch/arm/mach-bcm/
2353 F:      arch/arm/boot/dts/bcm113*
2354 F:      arch/arm/boot/dts/bcm216*
2355 F:      arch/arm/boot/dts/bcm281*
2356 F:      arch/arm64/boot/dts/broadcom/
2357 F:      arch/arm/configs/bcm_defconfig
2358 F:      drivers/mmc/host/sdhci-bcm-kona.c
2359 F:      drivers/clocksource/bcm_kona_timer.c
2360
2361 BROADCOM BCM2835 ARM ARCHITECTURE
2362 M:      Stephen Warren <swarren@wwwdotorg.org>
2363 M:      Lee Jones <lee@kernel.org>
2364 M:      Eric Anholt <eric@anholt.net>
2365 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
2366 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2367 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rpi/linux-rpi.git
2368 S:      Maintained
2369 N:      bcm2835
2370
2371 BROADCOM BCM33XX MIPS ARCHITECTURE
2372 M:      Kevin Cernekee <cernekee@gmail.com>
2373 L:      linux-mips@linux-mips.org
2374 S:      Maintained
2375 F:      arch/mips/bcm3384/*
2376 F:      arch/mips/include/asm/mach-bcm3384/*
2377 F:      arch/mips/kernel/*bmips*
2378
2379 BROADCOM BCM47XX MIPS ARCHITECTURE
2380 M:      Hauke Mehrtens <hauke@hauke-m.de>
2381 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2382 L:      linux-mips@linux-mips.org
2383 S:      Maintained
2384 F:      arch/mips/bcm47xx/*
2385 F:      arch/mips/include/asm/mach-bcm47xx/*
2386
2387 BROADCOM BCM5301X ARM ARCHITECTURE
2388 M:      Hauke Mehrtens <hauke@hauke-m.de>
2389 L:      linux-arm-kernel@lists.infradead.org
2390 S:      Maintained
2391 F:      arch/arm/mach-bcm/bcm_5301x.c
2392 F:      arch/arm/boot/dts/bcm5301x.dtsi
2393 F:      arch/arm/boot/dts/bcm470*
2394
2395 BROADCOM BCM63XX ARM ARCHITECTURE
2396 M:      Florian Fainelli <f.fainelli@gmail.com>
2397 L:      linux-arm-kernel@lists.infradead.org
2398 T:      git git://github.com/broadcom/arm-bcm63xx.git
2399 S:      Maintained
2400 F:      arch/arm/mach-bcm/bcm63xx.c
2401 F:      arch/arm/include/debug/bcm63xx.S
2402
2403 BROADCOM BCM63XX/BCM33XX UDC DRIVER
2404 M:      Kevin Cernekee <cernekee@gmail.com>
2405 L:      linux-usb@vger.kernel.org
2406 S:      Maintained
2407 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
2408
2409 BROADCOM BCM7XXX ARM ARCHITECTURE
2410 M:      Brian Norris <computersforpeace@gmail.com>
2411 M:      Gregory Fong <gregory.0xf0@gmail.com>
2412 M:      Florian Fainelli <f.fainelli@gmail.com>
2413 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2414 L:      bcm-kernel-feedback-list@broadcom.com
2415 T:      git git://github.com/broadcom/stblinux.git
2416 S:      Maintained
2417 F:      arch/arm/mach-bcm/*brcmstb*
2418 F:      arch/arm/boot/dts/bcm7*.dts*
2419 F:      drivers/bus/brcmstb_gisb.c
2420 N:      brcmstb
2421
2422 BROADCOM BMIPS MIPS ARCHITECTURE
2423 M:      Kevin Cernekee <cernekee@gmail.com>
2424 M:      Florian Fainelli <f.fainelli@gmail.com>
2425 L:      linux-mips@linux-mips.org
2426 T:      git git://github.com/broadcom/stblinux.git
2427 S:      Maintained
2428 F:      arch/mips/bmips/*
2429 F:      arch/mips/include/asm/mach-bmips/*
2430 F:      arch/mips/kernel/*bmips*
2431 F:      arch/mips/boot/dts/brcm/bcm*.dts*
2432 F:      drivers/irqchip/irq-bcm7*
2433 F:      drivers/irqchip/irq-brcmstb*
2434 F:      include/linux/bcm963xx_nvram.h
2435 F:      include/linux/bcm963xx_tag.h
2436
2437 BROADCOM TG3 GIGABIT ETHERNET DRIVER
2438 M:      Prashant Sreedharan <prashant@broadcom.com>
2439 M:      Michael Chan <mchan@broadcom.com>
2440 L:      netdev@vger.kernel.org
2441 S:      Supported
2442 F:      drivers/net/ethernet/broadcom/tg3.*
2443
2444 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2445 M:      Brett Rudley <brudley@broadcom.com>
2446 M:      Arend van Spriel <arend@broadcom.com>
2447 M:      Franky (Zhenhui) Lin <frankyl@broadcom.com>
2448 M:      Hante Meuleman <meuleman@broadcom.com>
2449 L:      linux-wireless@vger.kernel.org
2450 L:      brcm80211-dev-list@broadcom.com
2451 S:      Supported
2452 F:      drivers/net/wireless/broadcom/brcm80211/
2453
2454 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
2455 M:      QLogic-Storage-Upstream@qlogic.com
2456 L:      linux-scsi@vger.kernel.org
2457 S:      Supported
2458 F:      drivers/scsi/bnx2fc/
2459
2460 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
2461 M:      QLogic-Storage-Upstream@qlogic.com
2462 L:      linux-scsi@vger.kernel.org
2463 S:      Supported
2464 F:      drivers/scsi/bnx2i/
2465
2466 BROADCOM IPROC ARM ARCHITECTURE
2467 M:      Ray Jui <rjui@broadcom.com>
2468 M:      Scott Branden <sbranden@broadcom.com>
2469 M:      Jon Mason <jonmason@broadcom.com>
2470 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2471 L:      bcm-kernel-feedback-list@broadcom.com
2472 T:      git git://github.com/broadcom/cygnus-linux.git
2473 S:      Maintained
2474 N:      iproc
2475 N:      cygnus
2476 N:      nsp
2477 N:      bcm9113*
2478 N:      bcm9583*
2479 N:      bcm9585*
2480 N:      bcm9586*
2481 N:      bcm988312
2482 N:      bcm113*
2483 N:      bcm583*
2484 N:      bcm585*
2485 N:      bcm586*
2486 N:      bcm88312
2487
2488 BROADCOM BRCMSTB GPIO DRIVER
2489 M:      Gregory Fong <gregory.0xf0@gmail.com>
2490 L:      bcm-kernel-feedback-list@broadcom.com
2491 S:      Supported
2492 F:      drivers/gpio/gpio-brcmstb.c
2493 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
2494
2495 BROADCOM KONA GPIO DRIVER
2496 M:      Ray Jui <rjui@broadcom.com>
2497 L:      bcm-kernel-feedback-list@broadcom.com
2498 S:      Supported
2499 F:      drivers/gpio/gpio-bcm-kona.c
2500 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
2501
2502 BROADCOM NVRAM DRIVER
2503 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2504 L:      linux-mips@linux-mips.org
2505 S:      Maintained
2506 F:      drivers/firmware/broadcom/*
2507
2508 BROADCOM STB NAND FLASH DRIVER
2509 M:      Brian Norris <computersforpeace@gmail.com>
2510 M:      Kamal Dasu <kdasu.kdev@gmail.com>
2511 L:      linux-mtd@lists.infradead.org
2512 L:      bcm-kernel-feedback-list@broadcom.com
2513 S:      Maintained
2514 F:      drivers/mtd/nand/brcmnand/
2515
2516 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2517 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2518 L:      linux-wireless@vger.kernel.org
2519 S:      Maintained
2520 F:      drivers/bcma/
2521 F:      include/linux/bcma/
2522
2523 BROADCOM SYSTEMPORT ETHERNET DRIVER
2524 M:      Florian Fainelli <f.fainelli@gmail.com>
2525 L:      netdev@vger.kernel.org
2526 S:      Supported
2527 F:      drivers/net/ethernet/broadcom/bcmsysport.*
2528
2529 BROCADE BFA FC SCSI DRIVER
2530 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
2531 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
2532 L:      linux-scsi@vger.kernel.org
2533 S:      Supported
2534 F:      drivers/scsi/bfa/
2535
2536 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
2537 M:      Rasesh Mody <rasesh.mody@qlogic.com>
2538 L:      netdev@vger.kernel.org
2539 S:      Supported
2540 F:      drivers/net/ethernet/brocade/bna/
2541
2542 BSG (block layer generic sg v4 driver)
2543 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
2544 L:      linux-scsi@vger.kernel.org
2545 S:      Supported
2546 F:      block/bsg.c
2547 F:      include/linux/bsg.h
2548 F:      include/uapi/linux/bsg.h
2549
2550 BT87X AUDIO DRIVER
2551 M:      Clemens Ladisch <clemens@ladisch.de>
2552 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2553 T:      git git://git.alsa-project.org/alsa-kernel.git
2554 S:      Maintained
2555 F:      Documentation/sound/alsa/Bt87x.txt
2556 F:      sound/pci/bt87x.c
2557
2558 BT8XXGPIO DRIVER
2559 M:      Michael Buesch <m@bues.ch>
2560 W:      http://bu3sch.de/btgpio.php
2561 S:      Maintained
2562 F:      drivers/gpio/gpio-bt8xx.c
2563
2564 BTRFS FILE SYSTEM
2565 M:      Chris Mason <clm@fb.com>
2566 M:      Josef Bacik <jbacik@fb.com>
2567 M:      David Sterba <dsterba@suse.com>
2568 L:      linux-btrfs@vger.kernel.org
2569 W:      http://btrfs.wiki.kernel.org/
2570 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
2571 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
2572 S:      Maintained
2573 F:      Documentation/filesystems/btrfs.txt
2574 F:      fs/btrfs/
2575
2576 BTTV VIDEO4LINUX DRIVER
2577 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2578 L:      linux-media@vger.kernel.org
2579 W:      https://linuxtv.org
2580 T:      git git://linuxtv.org/media_tree.git
2581 S:      Odd fixes
2582 F:      Documentation/video4linux/bttv/
2583 F:      drivers/media/pci/bt8xx/bttv*
2584
2585 BUSLOGIC SCSI DRIVER
2586 M:      Khalid Aziz <khalid@gonehiking.org>
2587 L:      linux-scsi@vger.kernel.org
2588 S:      Maintained
2589 F:      drivers/scsi/BusLogic.*
2590 F:      drivers/scsi/FlashPoint.*
2591
2592 C-MEDIA CMI8788 DRIVER
2593 M:      Clemens Ladisch <clemens@ladisch.de>
2594 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2595 T:      git git://git.alsa-project.org/alsa-kernel.git
2596 S:      Maintained
2597 F:      sound/pci/oxygen/
2598
2599 C6X ARCHITECTURE
2600 M:      Mark Salter <msalter@redhat.com>
2601 M:      Aurelien Jacquiot <a-jacquiot@ti.com>
2602 L:      linux-c6x-dev@linux-c6x.org
2603 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
2604 S:      Maintained
2605 F:      arch/c6x/
2606
2607 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
2608 M:      David Howells <dhowells@redhat.com>
2609 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
2610 S:      Supported
2611 F:      Documentation/filesystems/caching/cachefiles.txt
2612 F:      fs/cachefiles/
2613
2614 CADET FM/AM RADIO RECEIVER DRIVER
2615 M:      Hans Verkuil <hverkuil@xs4all.nl>
2616 L:      linux-media@vger.kernel.org
2617 T:      git git://linuxtv.org/media_tree.git
2618 W:      https://linuxtv.org
2619 S:      Maintained
2620 F:      drivers/media/radio/radio-cadet*
2621
2622 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
2623 M:      Jonathan Corbet <corbet@lwn.net>
2624 L:      linux-media@vger.kernel.org
2625 T:      git git://linuxtv.org/media_tree.git
2626 S:      Maintained
2627 F:      Documentation/video4linux/cafe_ccic
2628 F:      drivers/media/platform/marvell-ccic/
2629
2630 CAIF NETWORK LAYER
2631 M:      Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
2632 L:      netdev@vger.kernel.org
2633 S:      Supported
2634 F:      Documentation/networking/caif/
2635 F:      drivers/net/caif/
2636 F:      include/uapi/linux/caif/
2637 F:      include/net/caif/
2638 F:      net/caif/
2639
2640 CALGARY x86-64 IOMMU
2641 M:      Muli Ben-Yehuda <muli@il.ibm.com>
2642 M:      "Jon D. Mason" <jdmason@kudzu.us>
2643 L:      discuss@x86-64.org
2644 S:      Maintained
2645 F:      arch/x86/kernel/pci-calgary_64.c
2646 F:      arch/x86/kernel/tce_64.c
2647 F:      arch/x86/include/asm/calgary.h
2648 F:      arch/x86/include/asm/tce.h
2649
2650 CAN NETWORK LAYER
2651 M:      Oliver Hartkopp <socketcan@hartkopp.net>
2652 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2653 L:      linux-can@vger.kernel.org
2654 W:      https://github.com/linux-can
2655 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2656 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2657 S:      Maintained
2658 F:      Documentation/networking/can.txt
2659 F:      net/can/
2660 F:      include/linux/can/core.h
2661 F:      include/uapi/linux/can.h
2662 F:      include/uapi/linux/can/bcm.h
2663 F:      include/uapi/linux/can/raw.h
2664 F:      include/uapi/linux/can/gw.h
2665
2666 CAN NETWORK DRIVERS
2667 M:      Wolfgang Grandegger <wg@grandegger.com>
2668 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2669 L:      linux-can@vger.kernel.org
2670 W:      https://github.com/linux-can
2671 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2672 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2673 S:      Maintained
2674 F:      drivers/net/can/
2675 F:      include/linux/can/dev.h
2676 F:      include/linux/can/platform/
2677 F:      include/uapi/linux/can/error.h
2678 F:      include/uapi/linux/can/netlink.h
2679
2680 CAPABILITIES
2681 M:      Serge Hallyn <serge.hallyn@canonical.com>
2682 L:      linux-security-module@vger.kernel.org
2683 S:      Supported
2684 F:      include/linux/capability.h
2685 F:      include/uapi/linux/capability.h
2686 F:      security/commoncap.c
2687 F:      kernel/capability.c
2688
2689 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
2690 M:      Kevin Tsai <ktsai@capellamicro.com>
2691 S:      Maintained
2692 F:      drivers/iio/light/cm*
2693 F:      Documentation/devicetree/bindings/i2c/trivial-devices.txt
2694
2695 CAVIUM LIQUIDIO NETWORK DRIVER
2696 M:     Derek Chickles <derek.chickles@caviumnetworks.com>
2697 M:     Satanand Burla <satananda.burla@caviumnetworks.com>
2698 M:     Felix Manlunas <felix.manlunas@caviumnetworks.com>
2699 M:     Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com>
2700 L:     netdev@vger.kernel.org
2701 W:     http://www.cavium.com
2702 S:     Supported
2703 F:     drivers/net/ethernet/cavium/liquidio/
2704
2705 CC2520 IEEE-802.15.4 RADIO DRIVER
2706 M:      Varka Bhadram <varkabhadram@gmail.com>
2707 L:      linux-wpan@vger.kernel.org
2708 S:      Maintained
2709 F:      drivers/net/ieee802154/cc2520.c
2710 F:      include/linux/spi/cc2520.h
2711 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
2712
2713 CELL BROADBAND ENGINE ARCHITECTURE
2714 M:      Arnd Bergmann <arnd@arndb.de>
2715 L:      linuxppc-dev@lists.ozlabs.org
2716 W:      http://www.ibm.com/developerworks/power/cell/
2717 S:      Supported
2718 F:      arch/powerpc/include/asm/cell*.h
2719 F:      arch/powerpc/include/asm/spu*.h
2720 F:      arch/powerpc/include/uapi/asm/spu*.h
2721 F:      arch/powerpc/oprofile/*cell*
2722 F:      arch/powerpc/platforms/cell/
2723
2724 CEPH COMMON CODE (LIBCEPH)
2725 M:      Ilya Dryomov <idryomov@gmail.com>
2726 M:      "Yan, Zheng" <zyan@redhat.com>
2727 M:      Sage Weil <sage@redhat.com>
2728 L:      ceph-devel@vger.kernel.org
2729 W:      http://ceph.com/
2730 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2731 T:      git git://github.com/ceph/ceph-client.git
2732 S:      Supported
2733 F:      net/ceph/
2734 F:      include/linux/ceph/
2735 F:      include/linux/crush/
2736
2737 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
2738 M:      "Yan, Zheng" <zyan@redhat.com>
2739 M:      Sage Weil <sage@redhat.com>
2740 M:      Ilya Dryomov <idryomov@gmail.com>
2741 L:      ceph-devel@vger.kernel.org
2742 W:      http://ceph.com/
2743 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2744 T:      git git://github.com/ceph/ceph-client.git
2745 S:      Supported
2746 F:      Documentation/filesystems/ceph.txt
2747 F:      fs/ceph/
2748
2749 CERTIFICATE HANDLING:
2750 M:      David Howells <dhowells@redhat.com>
2751 M:      David Woodhouse <dwmw2@infradead.org>
2752 L:      keyrings@vger.kernel.org
2753 S:      Maintained
2754 F:      Documentation/module-signing.txt
2755 F:      certs/
2756 F:      scripts/sign-file.c
2757 F:      scripts/extract-cert.c
2758
2759 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
2760 L:      linux-usb@vger.kernel.org
2761 S:      Orphan
2762 F:      Documentation/usb/WUSB-Design-overview.txt
2763 F:      Documentation/usb/wusb-cbaf
2764 F:      drivers/usb/host/hwa-hc.c
2765 F:      drivers/usb/host/whci/
2766 F:      drivers/usb/wusbcore/
2767 F:      include/linux/usb/wusb*
2768
2769 CFAG12864B LCD DRIVER
2770 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2771 W:      http://miguelojeda.es/auxdisplay.htm
2772 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2773 S:      Maintained
2774 F:      drivers/auxdisplay/cfag12864b.c
2775 F:      include/linux/cfag12864b.h
2776
2777 CFAG12864BFB LCD FRAMEBUFFER DRIVER
2778 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2779 W:      http://miguelojeda.es/auxdisplay.htm
2780 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2781 S:      Maintained
2782 F:      drivers/auxdisplay/cfag12864bfb.c
2783 F:      include/linux/cfag12864b.h
2784
2785 CFG80211 and NL80211
2786 M:      Johannes Berg <johannes@sipsolutions.net>
2787 L:      linux-wireless@vger.kernel.org
2788 W:      http://wireless.kernel.org/
2789 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2790 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
2791 S:      Maintained
2792 F:      include/uapi/linux/nl80211.h
2793 F:      include/net/cfg80211.h
2794 F:      net/wireless/*
2795 X:      net/wireless/wext*
2796
2797 CHAR and MISC DRIVERS
2798 M:      Arnd Bergmann <arnd@arndb.de>
2799 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2800 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
2801 S:      Supported
2802 F:      drivers/char/*
2803 F:      drivers/misc/*
2804 F:      include/linux/miscdevice.h
2805
2806 CHECKPATCH
2807 M:      Andy Whitcroft <apw@canonical.com>
2808 M:      Joe Perches <joe@perches.com>
2809 S:      Maintained
2810 F:      scripts/checkpatch.pl
2811
2812 CHINESE DOCUMENTATION
2813 M:      Harry Wei <harryxiyou@gmail.com>
2814 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
2815 L:      linux-kernel@zh-kernel.org (moderated for non-subscribers)
2816 S:      Maintained
2817 F:      Documentation/zh_CN/
2818
2819 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
2820 M:      Peter Chen <Peter.Chen@nxp.com>
2821 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
2822 L:      linux-usb@vger.kernel.org
2823 S:      Maintained
2824 F:      drivers/usb/chipidea/
2825
2826 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
2827 M:      Hans de Goede <hdegoede@redhat.com>
2828 L:      linux-input@vger.kernel.org
2829 S:      Maintained
2830 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
2831 F:      drivers/input/touchscreen/chipone_icn8318.c
2832
2833 CHROME HARDWARE PLATFORM SUPPORT
2834 M:      Olof Johansson <olof@lixom.net>
2835 S:      Maintained
2836 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/olof/chrome-platform.git
2837 F:      drivers/platform/chrome/
2838
2839 CISCO VIC ETHERNET NIC DRIVER
2840 M:      Christian Benvenuti <benve@cisco.com>
2841 M:      Sujith Sankar <ssujith@cisco.com>
2842 M:      Govindarajulu Varadarajan <_govind@gmx.com>
2843 M:      Neel Patel <neepatel@cisco.com>
2844 S:      Supported
2845 F:      drivers/net/ethernet/cisco/enic/
2846
2847 CISCO VIC LOW LATENCY NIC DRIVER
2848 M:      Christian Benvenuti <benve@cisco.com>
2849 M:      Dave Goodell <dgoodell@cisco.com>
2850 S:      Supported
2851 F:      drivers/infiniband/hw/usnic/
2852
2853 CIRRUS LOGIC EP93XX ETHERNET DRIVER
2854 M:      Hartley Sweeten <hsweeten@visionengravers.com>
2855 L:      netdev@vger.kernel.org
2856 S:      Maintained
2857 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
2858
2859 CIRRUS LOGIC AUDIO CODEC DRIVERS
2860 M:      Brian Austin <brian.austin@cirrus.com>
2861 M:      Paul Handrigan <Paul.Handrigan@cirrus.com>
2862 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2863 S:      Maintained
2864 F:      sound/soc/codecs/cs*
2865
2866 CLEANCACHE API
2867 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2868 L:      linux-kernel@vger.kernel.org
2869 S:      Maintained
2870 F:      mm/cleancache.c
2871 F:      include/linux/cleancache.h
2872
2873 CLK API
2874 M:      Russell King <linux@arm.linux.org.uk>
2875 L:      linux-clk@vger.kernel.org
2876 S:      Maintained
2877 F:      include/linux/clk.h
2878
2879 CLOCKSOURCE, CLOCKEVENT DRIVERS
2880 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2881 M:      Thomas Gleixner <tglx@linutronix.de>
2882 L:      linux-kernel@vger.kernel.org
2883 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
2884 S:      Supported
2885 F:      drivers/clocksource
2886
2887 CISCO FCOE HBA DRIVER
2888 M:      Hiral Patel <hiralpat@cisco.com>
2889 M:      Suma Ramars <sramars@cisco.com>
2890 M:      Brian Uchino <buchino@cisco.com>
2891 L:      linux-scsi@vger.kernel.org
2892 S:      Supported
2893 F:      drivers/scsi/fnic/
2894
2895 CISCO SCSI HBA DRIVER
2896 M:      Narsimhulu Musini <nmusini@cisco.com>
2897 M:      Sesidhar Baddela <sebaddel@cisco.com>
2898 L:      linux-scsi@vger.kernel.org
2899 S:      Supported
2900 F:      drivers/scsi/snic/
2901
2902 CMPC ACPI DRIVER
2903 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2904 M:      Daniel Oliveira Nascimento <don@syst.com.br>
2905 L:      platform-driver-x86@vger.kernel.org
2906 S:      Supported
2907 F:      drivers/platform/x86/classmate-laptop.c
2908
2909 COBALT MEDIA DRIVER
2910 M:      Hans Verkuil <hans.verkuil@cisco.com>
2911 L:      linux-media@vger.kernel.org
2912 T:      git git://linuxtv.org/media_tree.git
2913 W:      https://linuxtv.org
2914 S:      Supported
2915 F:      drivers/media/pci/cobalt/
2916
2917 COCCINELLE/Semantic Patches (SmPL)
2918 M:      Julia Lawall <Julia.Lawall@lip6.fr>
2919 M:      Gilles Muller <Gilles.Muller@lip6.fr>
2920 M:      Nicolas Palix <nicolas.palix@imag.fr>
2921 M:      Michal Marek <mmarek@suse.com>
2922 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
2923 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
2924 W:      http://coccinelle.lip6.fr/
2925 S:      Supported
2926 F:      Documentation/coccinelle.txt
2927 F:      scripts/coccinelle/
2928 F:      scripts/coccicheck
2929
2930 CODA FILE SYSTEM
2931 M:      Jan Harkes <jaharkes@cs.cmu.edu>
2932 M:      coda@cs.cmu.edu
2933 L:      codalist@coda.cs.cmu.edu
2934 W:      http://www.coda.cs.cmu.edu/
2935 S:      Maintained
2936 F:      Documentation/filesystems/coda.txt
2937 F:      fs/coda/
2938 F:      include/linux/coda*.h
2939 F:      include/uapi/linux/coda*.h
2940
2941 CODA V4L2 MEM2MEM DRIVER
2942 M:      Philipp Zabel <p.zabel@pengutronix.de>
2943 L:      linux-media@vger.kernel.org
2944 S:      Maintained
2945 F:      Documentation/devicetree/bindings/media/coda.txt
2946 F:      drivers/media/platform/coda/
2947
2948 COMMON CLK FRAMEWORK
2949 M:      Michael Turquette <mturquette@baylibre.com>
2950 M:      Stephen Boyd <sboyd@codeaurora.org>
2951 L:      linux-clk@vger.kernel.org
2952 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
2953 S:      Maintained
2954 F:      drivers/clk/
2955 X:      drivers/clk/clkdev.c
2956 F:      include/linux/clk-pr*
2957 F:      include/linux/clk/
2958
2959 COMMON INTERNET FILE SYSTEM (CIFS)
2960 M:      Steve French <sfrench@samba.org>
2961 L:      linux-cifs@vger.kernel.org
2962 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
2963 W:      http://linux-cifs.samba.org/
2964 T:      git git://git.samba.org/sfrench/cifs-2.6.git
2965 S:      Supported
2966 F:      Documentation/filesystems/cifs/
2967 F:      fs/cifs/
2968
2969 COMPACTPCI HOTPLUG CORE
2970 M:      Scott Murray <scott@spiteful.org>
2971 L:      linux-pci@vger.kernel.org
2972 S:      Maintained
2973 F:      drivers/pci/hotplug/cpci_hotplug*
2974
2975 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
2976 M:      Scott Murray <scott@spiteful.org>
2977 L:      linux-pci@vger.kernel.org
2978 S:      Maintained
2979 F:      drivers/pci/hotplug/cpcihp_zt5550.*
2980
2981 COMPACTPCI HOTPLUG GENERIC DRIVER
2982 M:      Scott Murray <scott@spiteful.org>
2983 L:      linux-pci@vger.kernel.org
2984 S:      Maintained
2985 F:      drivers/pci/hotplug/cpcihp_generic.c
2986
2987 COMPAL LAPTOP SUPPORT
2988 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
2989 L:      platform-driver-x86@vger.kernel.org
2990 S:      Maintained
2991 F:      drivers/platform/x86/compal-laptop.c
2992
2993 CONEXANT ACCESSRUNNER USB DRIVER
2994 L:      accessrunner-general@lists.sourceforge.net
2995 W:      http://accessrunner.sourceforge.net/
2996 S:      Orphan
2997 F:      drivers/usb/atm/cxacru.c
2998
2999 CONFIGFS
3000 M:      Joel Becker <jlbec@evilplan.org>
3001 M:      Christoph Hellwig <hch@lst.de>
3002 T:      git git://git.infradead.org/users/hch/configfs.git
3003 S:      Supported
3004 F:      fs/configfs/
3005 F:      include/linux/configfs.h
3006
3007 CONNECTOR
3008 M:      Evgeniy Polyakov <zbr@ioremap.net>
3009 L:      netdev@vger.kernel.org
3010 S:      Maintained
3011 F:      drivers/connector/
3012
3013 CONTROL GROUP (CGROUP)
3014 M:      Tejun Heo <tj@kernel.org>
3015 M:      Li Zefan <lizefan@huawei.com>
3016 M:      Johannes Weiner <hannes@cmpxchg.org>
3017 L:      cgroups@vger.kernel.org
3018 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3019 S:      Maintained
3020 F:      Documentation/cgroups/
3021 F:      include/linux/cgroup*
3022 F:      kernel/cgroup*
3023
3024 CONTROL GROUP - CPUSET
3025 M:      Li Zefan <lizefan@huawei.com>
3026 L:      cgroups@vger.kernel.org
3027 W:      http://www.bullopensource.org/cpuset/
3028 W:      http://oss.sgi.com/projects/cpusets/
3029 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3030 S:      Maintained
3031 F:      Documentation/cgroups/cpusets.txt
3032 F:      include/linux/cpuset.h
3033 F:      kernel/cpuset.c
3034
3035 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
3036 M:      Johannes Weiner <hannes@cmpxchg.org>
3037 M:      Michal Hocko <mhocko@kernel.org>
3038 M:      Vladimir Davydov <vdavydov@virtuozzo.com>
3039 L:      cgroups@vger.kernel.org
3040 L:      linux-mm@kvack.org
3041 S:      Maintained
3042 F:      mm/memcontrol.c
3043 F:      mm/swap_cgroup.c
3044
3045 CORETEMP HARDWARE MONITORING DRIVER
3046 M:      Fenghua Yu <fenghua.yu@intel.com>
3047 L:      lm-sensors@lm-sensors.org
3048 S:      Maintained
3049 F:      Documentation/hwmon/coretemp
3050 F:      drivers/hwmon/coretemp.c
3051
3052 COSA/SRP SYNC SERIAL DRIVER
3053 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
3054 W:      http://www.fi.muni.cz/~kas/cosa/
3055 S:      Maintained
3056 F:      drivers/net/wan/cosa*
3057
3058 CPMAC ETHERNET DRIVER
3059 M:      Florian Fainelli <florian@openwrt.org>
3060 L:      netdev@vger.kernel.org
3061 S:      Maintained
3062 F:      drivers/net/ethernet/ti/cpmac.c
3063
3064 CPU FREQUENCY DRIVERS
3065 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
3066 M:      Viresh Kumar <viresh.kumar@linaro.org>
3067 L:      linux-pm@vger.kernel.org
3068 S:      Maintained
3069 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3070 T:      git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
3071 F:      drivers/cpufreq/
3072 F:      include/linux/cpufreq.h
3073
3074 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
3075 M:      Viresh Kumar <viresh.kumar@linaro.org>
3076 M:      Sudeep Holla <sudeep.holla@arm.com>
3077 L:      linux-pm@vger.kernel.org
3078 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
3079 S:      Maintained
3080 F:      drivers/cpufreq/arm_big_little.h
3081 F:      drivers/cpufreq/arm_big_little.c
3082 F:      drivers/cpufreq/arm_big_little_dt.c
3083
3084 CPUIDLE DRIVER - ARM BIG LITTLE
3085 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
3086 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3087 L:      linux-pm@vger.kernel.org
3088 L:      linux-arm-kernel@lists.infradead.org
3089 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3090 S:      Maintained
3091 F:      drivers/cpuidle/cpuidle-big_little.c
3092
3093 CPUIDLE DRIVER - ARM EXYNOS
3094 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
3095 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3096 M:      Kukjin Kim <kgene@kernel.org>
3097 L:      linux-pm@vger.kernel.org
3098 L:      linux-samsung-soc@vger.kernel.org
3099 S:      Supported
3100 F:      drivers/cpuidle/cpuidle-exynos.c
3101 F:      arch/arm/mach-exynos/pm.c
3102
3103 CPUIDLE DRIVERS
3104 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
3105 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3106 L:      linux-pm@vger.kernel.org
3107 S:      Maintained
3108 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3109 F:      drivers/cpuidle/*
3110 F:      include/linux/cpuidle.h
3111
3112 CPUID/MSR DRIVER
3113 M:      "H. Peter Anvin" <hpa@zytor.com>
3114 S:      Maintained
3115 F:      arch/x86/kernel/cpuid.c
3116 F:      arch/x86/kernel/msr.c
3117
3118 CPU POWER MONITORING SUBSYSTEM
3119 M:      Thomas Renninger <trenn@suse.com>
3120 L:      linux-pm@vger.kernel.org
3121 S:      Maintained
3122 F:      tools/power/cpupower/
3123
3124 CRAMFS FILESYSTEM
3125 W:      http://sourceforge.net/projects/cramfs/
3126 S:      Orphan / Obsolete
3127 F:      Documentation/filesystems/cramfs.txt
3128 F:      fs/cramfs/
3129
3130 CRIS PORT
3131 M:      Mikael Starvik <starvik@axis.com>
3132 M:      Jesper Nilsson <jesper.nilsson@axis.com>
3133 L:      linux-cris-kernel@axis.com
3134 W:      http://developer.axis.com
3135 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jesper/cris.git
3136 S:      Maintained
3137 F:      arch/cris/
3138 F:      drivers/tty/serial/crisv10.*
3139
3140 CRYPTO API
3141 M:      Herbert Xu <herbert@gondor.apana.org.au>
3142 M:      "David S. Miller" <davem@davemloft.net>
3143 L:      linux-crypto@vger.kernel.org
3144 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
3145 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
3146 S:      Maintained
3147 F:      Documentation/crypto/
3148 F:      Documentation/DocBook/crypto-API.tmpl
3149 F:      arch/*/crypto/
3150 F:      crypto/
3151 F:      drivers/crypto/
3152 F:      include/crypto/
3153
3154 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
3155 M:      Neil Horman <nhorman@tuxdriver.com>
3156 L:      linux-crypto@vger.kernel.org
3157 S:      Maintained
3158 F:      crypto/ansi_cprng.c
3159 F:      crypto/rng.c
3160
3161 CS3308 MEDIA DRIVER
3162 M:      Hans Verkuil <hverkuil@xs4all.nl>
3163 L:      linux-media@vger.kernel.org
3164 T:      git git://linuxtv.org/media_tree.git
3165 W:      http://linuxtv.org
3166 S:      Odd Fixes
3167 F:      drivers/media/i2c/cs3308.c
3168 F:      drivers/media/i2c/cs3308.h
3169
3170 CS5535 Audio ALSA driver
3171 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
3172 S:      Maintained
3173 F:      sound/pci/cs5535audio/
3174
3175 CW1200 WLAN driver
3176 M:      Solomon Peachy <pizza@shaftnet.org>
3177 S:      Maintained
3178 F:      drivers/net/wireless/st/cw1200/
3179
3180 CX18 VIDEO4LINUX DRIVER
3181 M:      Andy Walls <awalls@md.metrocast.net>
3182 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
3183 L:      linux-media@vger.kernel.org
3184 T:      git git://linuxtv.org/media_tree.git
3185 W:      https://linuxtv.org
3186 W:      http://www.ivtvdriver.org/index.php/Cx18
3187 S:      Maintained
3188 F:      Documentation/video4linux/cx18.txt
3189 F:      drivers/media/pci/cx18/
3190 F:      include/uapi/linux/ivtv*
3191
3192 CX2341X MPEG ENCODER HELPER MODULE
3193 M:      Hans Verkuil <hverkuil@xs4all.nl>
3194 L:      linux-media@vger.kernel.org
3195 T:      git git://linuxtv.org/media_tree.git
3196 W:      https://linuxtv.org
3197 S:      Maintained
3198 F:      drivers/media/common/cx2341x*
3199 F:      include/media/cx2341x*
3200
3201 CX24120 MEDIA DRIVER
3202 M:      Jemma Denson <jdenson@gmail.com>
3203 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
3204 L:      linux-media@vger.kernel.org
3205 W:      https://linuxtv.org
3206 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3207 S:      Maintained
3208 F:      drivers/media/dvb-frontends/cx24120*
3209
3210 CX88 VIDEO4LINUX DRIVER
3211 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3212 L:      linux-media@vger.kernel.org
3213 W:      https://linuxtv.org
3214 T:      git git://linuxtv.org/media_tree.git
3215 S:      Odd fixes
3216 F:      Documentation/video4linux/cx88/
3217 F:      drivers/media/pci/cx88/
3218
3219 CXD2820R MEDIA DRIVER
3220 M:      Antti Palosaari <crope@iki.fi>
3221 L:      linux-media@vger.kernel.org
3222 W:      https://linuxtv.org
3223 W:      http://palosaari.fi/linux/
3224 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3225 T:      git git://linuxtv.org/anttip/media_tree.git
3226 S:      Maintained
3227 F:      drivers/media/dvb-frontends/cxd2820r*
3228
3229 CXGB3 ETHERNET DRIVER (CXGB3)
3230 M:      Santosh Raspatur <santosh@chelsio.com>
3231 L:      netdev@vger.kernel.org
3232 W:      http://www.chelsio.com
3233 S:      Supported
3234 F:      drivers/net/ethernet/chelsio/cxgb3/
3235
3236 CXGB3 ISCSI DRIVER (CXGB3I)
3237 M:      Karen Xie <kxie@chelsio.com>
3238 L:      linux-scsi@vger.kernel.org
3239 W:      http://www.chelsio.com
3240 S:      Supported
3241 F:      drivers/scsi/cxgbi/cxgb3i
3242
3243 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
3244 M:      Steve Wise <swise@chelsio.com>
3245 L:      linux-rdma@vger.kernel.org
3246 W:      http://www.openfabrics.org
3247 S:      Supported
3248 F:      drivers/infiniband/hw/cxgb3/
3249
3250 CXGB4 ETHERNET DRIVER (CXGB4)
3251 M:      Hariprasad S <hariprasad@chelsio.com>
3252 L:      netdev@vger.kernel.org
3253 W:      http://www.chelsio.com
3254 S:      Supported
3255 F:      drivers/net/ethernet/chelsio/cxgb4/
3256
3257 CXGB4 ISCSI DRIVER (CXGB4I)
3258 M:      Karen Xie <kxie@chelsio.com>
3259 L:      linux-scsi@vger.kernel.org
3260 W:      http://www.chelsio.com
3261 S:      Supported
3262 F:      drivers/scsi/cxgbi/cxgb4i
3263
3264 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
3265 M:      Steve Wise <swise@chelsio.com>
3266 L:      linux-rdma@vger.kernel.org
3267 W:      http://www.openfabrics.org
3268 S:      Supported
3269 F:      drivers/infiniband/hw/cxgb4/
3270
3271 CXGB4VF ETHERNET DRIVER (CXGB4VF)
3272 M:      Casey Leedom <leedom@chelsio.com>
3273 L:      netdev@vger.kernel.org
3274 W:      http://www.chelsio.com
3275 S:      Supported
3276 F:      drivers/net/ethernet/chelsio/cxgb4vf/
3277
3278 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
3279 M:      Ian Munsie <imunsie@au1.ibm.com>
3280 M:      Michael Neuling <mikey@neuling.org>
3281 L:      linuxppc-dev@lists.ozlabs.org
3282 S:      Supported
3283 F:      drivers/misc/cxl/
3284 F:      include/misc/cxl*
3285 F:      include/uapi/misc/cxl.h
3286 F:      Documentation/powerpc/cxl.txt
3287 F:      Documentation/powerpc/cxl.txt
3288 F:      Documentation/ABI/testing/sysfs-class-cxl
3289
3290 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
3291 M:      Manoj N. Kumar <manoj@linux.vnet.ibm.com>
3292 M:      Matthew R. Ochs <mrochs@linux.vnet.ibm.com>
3293 L:      linux-scsi@vger.kernel.org
3294 S:      Supported
3295 F:      drivers/scsi/cxlflash/
3296 F:      include/uapi/scsi/cxlflash_ioctls.h
3297 F:      Documentation/powerpc/cxlflash.txt
3298
3299 STMMAC ETHERNET DRIVER
3300 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
3301 L:      netdev@vger.kernel.org
3302 W:      http://www.stlinux.com
3303 S:      Supported
3304 F:      drivers/net/ethernet/stmicro/stmmac/
3305
3306 CYBERPRO FB DRIVER
3307 M:      Russell King <linux@arm.linux.org.uk>
3308 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3309 W:      http://www.arm.linux.org.uk/
3310 S:      Maintained
3311 F:      drivers/video/fbdev/cyber2000fb.*
3312
3313 CYCLADES ASYNC MUX DRIVER
3314 W:      http://www.cyclades.com/
3315 S:      Orphan
3316 F:      drivers/tty/cyclades.c
3317 F:      include/linux/cyclades.h
3318 F:      include/uapi/linux/cyclades.h
3319
3320 CYCLADES PC300 DRIVER
3321 W:      http://www.cyclades.com/
3322 S:      Orphan
3323 F:      drivers/net/wan/pc300*
3324
3325 CYPRESS_FIRMWARE MEDIA DRIVER
3326 M:      Antti Palosaari <crope@iki.fi>
3327 L:      linux-media@vger.kernel.org
3328 W:      https://linuxtv.org
3329 W:      http://palosaari.fi/linux/
3330 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3331 T:      git git://linuxtv.org/anttip/media_tree.git
3332 S:      Maintained
3333 F:      drivers/media/common/cypress_firmware*
3334
3335 CYTTSP TOUCHSCREEN DRIVER
3336 M:      Ferruh Yigit <fery@cypress.com>
3337 L:      linux-input@vger.kernel.org
3338 S:      Supported
3339 F:      drivers/input/touchscreen/cyttsp*
3340 F:      include/linux/input/cyttsp.h
3341
3342 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
3343 M:      Joshua Kinard <kumba@gentoo.org>
3344 S:      Maintained
3345 F:      drivers/rtc/rtc-ds1685.c
3346 F:      include/linux/rtc/ds1685.h
3347
3348 DAMA SLAVE for AX.25
3349 M:      Joerg Reuter <jreuter@yaina.de>
3350 W:      http://yaina.de/jreuter/
3351 W:      http://www.qsl.net/dl1bke/
3352 L:      linux-hams@vger.kernel.org
3353 S:      Maintained
3354 F:      net/ax25/af_ax25.c
3355 F:      net/ax25/ax25_dev.c
3356 F:      net/ax25/ax25_ds_*
3357 F:      net/ax25/ax25_in.c
3358 F:      net/ax25/ax25_out.c
3359 F:      net/ax25/ax25_timer.c
3360 F:      net/ax25/sysctl_net_ax25.c
3361
3362 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
3363 L:      netdev@vger.kernel.org
3364 S:      Orphan
3365 F:      Documentation/networking/dmfe.txt
3366 F:      drivers/net/ethernet/dec/tulip/dmfe.c
3367
3368 DC390/AM53C974 SCSI driver
3369 M:      Hannes Reinecke <hare@suse.com>
3370 L:      linux-scsi@vger.kernel.org
3371 S:      Maintained
3372 F:      drivers/scsi/am53c974.c
3373
3374 DC395x SCSI driver
3375 M:      Oliver Neukum <oliver@neukum.org>
3376 M:      Ali Akcaagac <aliakc@web.de>
3377 M:      Jamie Lenehan <lenehan@twibble.org>
3378 L:      dc395x@twibble.org
3379 W:      http://twibble.org/dist/dc395x/
3380 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
3381 S:      Maintained
3382 F:      Documentation/scsi/dc395x.txt
3383 F:      drivers/scsi/dc395x.*
3384
3385 DCCP PROTOCOL
3386 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
3387 L:      dccp@vger.kernel.org
3388 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
3389 S:      Maintained
3390 F:      include/linux/dccp.h
3391 F:      include/uapi/linux/dccp.h
3392 F:      include/linux/tfrc.h
3393 F:      net/dccp/
3394
3395 DECnet NETWORK LAYER
3396 W:      http://linux-decnet.sourceforge.net
3397 L:      linux-decnet-user@lists.sourceforge.net
3398 S:      Orphan
3399 F:      Documentation/networking/decnet.txt
3400 F:      net/decnet/
3401
3402 DECSTATION PLATFORM SUPPORT
3403 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3404 L:      linux-mips@linux-mips.org
3405 W:      http://www.linux-mips.org/wiki/DECstation
3406 S:      Maintained
3407 F:      arch/mips/dec/
3408 F:      arch/mips/include/asm/dec/
3409 F:      arch/mips/include/asm/mach-dec/
3410
3411 DEFXX FDDI NETWORK DRIVER
3412 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3413 S:      Maintained
3414 F:      drivers/net/fddi/defxx.*
3415
3416 DELL LAPTOP DRIVER
3417 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3418 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3419 L:      platform-driver-x86@vger.kernel.org
3420 S:      Maintained
3421 F:      drivers/platform/x86/dell-laptop.c
3422
3423 DELL LAPTOP RBTN DRIVER
3424 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3425 S:      Maintained
3426 F:      drivers/platform/x86/dell-rbtn.*
3427
3428 DELL LAPTOP FREEFALL DRIVER
3429 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3430 S:      Maintained
3431 F:      drivers/platform/x86/dell-smo8800.c
3432
3433 DELL LAPTOP SMM DRIVER
3434 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3435 S:      Maintained
3436 F:      drivers/hwmon/dell-smm-hwmon.c
3437 F:      include/uapi/linux/i8k.h
3438
3439 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
3440 M:      Doug Warzecha <Douglas_Warzecha@dell.com>
3441 S:      Maintained
3442 F:      Documentation/dcdbas.txt
3443 F:      drivers/firmware/dcdbas.*
3444
3445 DELL WMI EXTRAS DRIVER
3446 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3447 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3448 S:      Maintained
3449 F:      drivers/platform/x86/dell-wmi.c
3450
3451 DESIGNWARE USB2 DRD IP DRIVER
3452 M:      John Youn <johnyoun@synopsys.com>
3453 L:      linux-usb@vger.kernel.org
3454 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3455 S:      Maintained
3456 F:      drivers/usb/dwc2/
3457
3458 DESIGNWARE USB3 DRD IP DRIVER
3459 M:      Felipe Balbi <balbi@kernel.org>
3460 L:      linux-usb@vger.kernel.org
3461 L:      linux-omap@vger.kernel.org
3462 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3463 S:      Maintained
3464 F:      drivers/usb/dwc3/
3465
3466 DEVICE COREDUMP (DEV_COREDUMP)
3467 M:      Johannes Berg <johannes@sipsolutions.net>
3468 L:      linux-kernel@vger.kernel.org
3469 S:      Maintained
3470 F:      drivers/base/devcoredump.c
3471 F:      include/linux/devcoredump.h
3472
3473 DEVICE FREQUENCY (DEVFREQ)
3474 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
3475 M:      Kyungmin Park <kyungmin.park@samsung.com>
3476 L:      linux-pm@vger.kernel.org
3477 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3478 S:      Maintained
3479 F:      drivers/devfreq/
3480 F:      include/linux/devfreq.h
3481 F:      Documentation/devicetree/bindings/devfreq/
3482
3483 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
3484 M:      Chanwoo Choi <cw00.choi@samsung.com>
3485 L:      linux-pm@vger.kernel.org
3486 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3487 S:      Supported
3488 F:      drivers/devfreq/event/
3489 F:      drivers/devfreq/devfreq-event.c
3490 F:      include/linux/devfreq-event.h
3491 F:      Documentation/devicetree/bindings/devfreq/event/
3492
3493 DEVICE NUMBER REGISTRY
3494 M:      Torben Mathiasen <device@lanana.org>
3495 W:      http://lanana.org/docs/device-list/index.html
3496 S:      Maintained
3497
3498 DEVICE-MAPPER  (LVM)
3499 M:      Alasdair Kergon <agk@redhat.com>
3500 M:      Mike Snitzer <snitzer@redhat.com>
3501 M:      dm-devel@redhat.com
3502 L:      dm-devel@redhat.com
3503 W:      http://sources.redhat.com/dm
3504 Q:      http://patchwork.kernel.org/project/dm-devel/list/
3505 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
3506 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
3507 S:      Maintained
3508 F:      Documentation/device-mapper/
3509 F:      drivers/md/dm*
3510 F:      drivers/md/persistent-data/
3511 F:      include/linux/device-mapper.h
3512 F:      include/linux/dm-*.h
3513 F:      include/uapi/linux/dm-*.h
3514
3515 DIALOG SEMICONDUCTOR DRIVERS
3516 M:      Support Opensource <support.opensource@diasemi.com>
3517 W:      http://www.dialog-semiconductor.com/products
3518 S:      Supported
3519 F:      Documentation/hwmon/da90??
3520 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
3521 F:      drivers/gpio/gpio-da90??.c
3522 F:      drivers/hwmon/da90??-hwmon.c
3523 F:      drivers/iio/adc/da91??-*.c
3524 F:      drivers/input/misc/da90??_onkey.c
3525 F:      drivers/input/touchscreen/da9052_tsi.c
3526 F:      drivers/leds/leds-da90??.c
3527 F:      drivers/mfd/da903x.c
3528 F:      drivers/mfd/da90??-*.c
3529 F:      drivers/mfd/da91??-*.c
3530 F:      drivers/power/da9052-battery.c
3531 F:      drivers/power/da91??-*.c
3532 F:      drivers/regulator/da903x.c
3533 F:      drivers/regulator/da9???-regulator.[ch]
3534 F:      drivers/rtc/rtc-da90??.c
3535 F:      drivers/video/backlight/da90??_bl.c
3536 F:      drivers/watchdog/da90??_wdt.c
3537 F:      include/linux/mfd/da903x.h
3538 F:      include/linux/mfd/da9052/
3539 F:      include/linux/mfd/da9055/
3540 F:      include/linux/mfd/da9063/
3541 F:      include/linux/mfd/da9150/
3542 F:      include/sound/da[79]*.h
3543 F:      sound/soc/codecs/da[79]*.[ch]
3544
3545 DIGI NEO AND CLASSIC PCI PRODUCTS
3546 M:      Lidza Louina <lidza.louina@gmail.com>
3547 M:      Mark Hounschell <markh@compro.net>
3548 L:      driverdev-devel@linuxdriverproject.org
3549 S:      Maintained
3550 F:      drivers/staging/dgnc/
3551
3552 DIOLAN U2C-12 I2C DRIVER
3553 M:      Guenter Roeck <linux@roeck-us.net>
3554 L:      linux-i2c@vger.kernel.org
3555 S:      Maintained
3556 F:      drivers/i2c/busses/i2c-diolan-u2c.c
3557
3558 DIRECT ACCESS (DAX)
3559 M:      Matthew Wilcox <willy@linux.intel.com>
3560 L:      linux-fsdevel@vger.kernel.org
3561 S:      Supported
3562 F:      fs/dax.c
3563
3564 DIRECTORY NOTIFICATION (DNOTIFY)
3565 M:      Eric Paris <eparis@parisplace.org>
3566 S:      Maintained
3567 F:      Documentation/filesystems/dnotify.txt
3568 F:      fs/notify/dnotify/
3569 F:      include/linux/dnotify.h
3570
3571 DISK GEOMETRY AND PARTITION HANDLING
3572 M:      Andries Brouwer <aeb@cwi.nl>
3573 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
3574 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
3575 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
3576 S:      Maintained
3577
3578 DISKQUOTA
3579 M:      Jan Kara <jack@suse.com>
3580 S:      Maintained
3581 F:      Documentation/filesystems/quota.txt
3582 F:      fs/quota/
3583 F:      include/linux/quota*.h
3584 F:      include/uapi/linux/quota*.h
3585
3586 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
3587 M:      Bernie Thompson <bernie@plugable.com>
3588 L:      linux-fbdev@vger.kernel.org
3589 S:      Maintained
3590 W:      http://plugable.com/category/projects/udlfb/
3591 F:      drivers/video/fbdev/udlfb.c
3592 F:      include/video/udlfb.h
3593 F:      Documentation/fb/udlfb.txt
3594
3595 DISTRIBUTED LOCK MANAGER (DLM)
3596 M:      Christine Caulfield <ccaulfie@redhat.com>
3597 M:      David Teigland <teigland@redhat.com>
3598 L:      cluster-devel@redhat.com
3599 W:      http://sources.redhat.com/cluster/
3600 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
3601 S:      Supported
3602 F:      fs/dlm/
3603
3604 DMA BUFFER SHARING FRAMEWORK
3605 M:      Sumit Semwal <sumit.semwal@linaro.org>
3606 S:      Maintained
3607 L:      linux-media@vger.kernel.org
3608 L:      dri-devel@lists.freedesktop.org
3609 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
3610 F:      drivers/dma-buf/
3611 F:      include/linux/dma-buf*
3612 F:      include/linux/reservation.h
3613 F:      include/linux/*fence.h
3614 F:      Documentation/dma-buf-sharing.txt
3615 T:      git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
3616
3617 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
3618 M:      Vinod Koul <vinod.koul@intel.com>
3619 L:      dmaengine@vger.kernel.org
3620 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
3621 S:      Maintained
3622 F:      drivers/dma/
3623 F:      include/linux/dmaengine.h
3624 F:      Documentation/dmaengine/
3625 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
3626
3627 DME1737 HARDWARE MONITOR DRIVER
3628 M:      Juerg Haefliger <juergh@gmail.com>
3629 L:      lm-sensors@lm-sensors.org
3630 S:      Maintained
3631 F:      Documentation/hwmon/dme1737
3632 F:      drivers/hwmon/dme1737.c
3633
3634 DMI/SMBIOS SUPPORT
3635 M:      Jean Delvare <jdelvare@suse.com>
3636 S:      Maintained
3637 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
3638 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
3639 F:      drivers/firmware/dmi-id.c
3640 F:      drivers/firmware/dmi_scan.c
3641 F:      include/linux/dmi.h
3642
3643 DOCUMENTATION
3644 M:      Jonathan Corbet <corbet@lwn.net>
3645 L:      linux-doc@vger.kernel.org
3646 S:      Maintained
3647 F:      Documentation/
3648 F:      scripts/docproc.c
3649 F:      scripts/kernel-doc*
3650 X:      Documentation/ABI/
3651 X:      Documentation/devicetree/
3652 X:      Documentation/acpi
3653 X:      Documentation/power
3654 X:      Documentation/spi
3655 X:      Documentation/DocBook/media
3656 T:      git git://git.lwn.net/linux.git docs-next
3657
3658 DOUBLETALK DRIVER
3659 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
3660 L:      blinux-list@redhat.com
3661 S:      Maintained
3662 F:      drivers/char/dtlk.c
3663 F:      include/linux/dtlk.h
3664
3665 DPT_I2O SCSI RAID DRIVER
3666 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
3667 L:      linux-scsi@vger.kernel.org
3668 W:      http://www.adaptec.com/
3669 S:      Maintained
3670 F:      drivers/scsi/dpt*
3671 F:      drivers/scsi/dpt/
3672
3673 DRBD DRIVER
3674 M:      Philipp Reisner <philipp.reisner@linbit.com>
3675 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
3676 L:      drbd-dev@lists.linbit.com
3677 W:      http://www.drbd.org
3678 T:      git git://git.linbit.com/linux-drbd.git
3679 T:      git git://git.linbit.com/drbd-8.4.git
3680 S:      Supported
3681 F:      drivers/block/drbd/
3682 F:      lib/lru_cache.c
3683 F:      Documentation/blockdev/drbd/
3684
3685 DRIVER CORE, KOBJECTS, DEBUGFS, KERNFS AND SYSFS
3686 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3687 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
3688 S:      Supported
3689 F:      Documentation/kobject.txt
3690 F:      drivers/base/
3691 F:      fs/debugfs/
3692 F:      fs/kernfs/
3693 F:      fs/sysfs/
3694 F:      include/linux/debugfs.h
3695 F:      include/linux/kobj*
3696 F:      lib/kobj*
3697
3698 DRM DRIVERS
3699 M:      David Airlie <airlied@linux.ie>
3700 L:      dri-devel@lists.freedesktop.org
3701 T:      git git://people.freedesktop.org/~airlied/linux
3702 S:      Maintained
3703 F:      drivers/gpu/drm/
3704 F:      drivers/gpu/vga/
3705 F:      include/drm/
3706 F:      include/uapi/drm/
3707
3708 RADEON DRM DRIVERS
3709 M:      Alex Deucher <alexander.deucher@amd.com>
3710 M:      Christian König <christian.koenig@amd.com>
3711 L:      dri-devel@lists.freedesktop.org
3712 T:      git git://people.freedesktop.org/~agd5f/linux
3713 S:      Supported
3714 F:      drivers/gpu/drm/radeon/
3715 F:      include/uapi/drm/radeon*
3716
3717 DRM PANEL DRIVERS
3718 M:      Thierry Reding <thierry.reding@gmail.com>
3719 L:      dri-devel@lists.freedesktop.org
3720 T:      git git://anongit.freedesktop.org/tegra/linux.git
3721 S:      Maintained
3722 F:      drivers/gpu/drm/drm_panel.c
3723 F:      drivers/gpu/drm/panel/
3724 F:      include/drm/drm_panel.h
3725 F:      Documentation/devicetree/bindings/display/panel/
3726
3727 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
3728 M:      Daniel Vetter <daniel.vetter@intel.com>
3729 M:      Jani Nikula <jani.nikula@linux.intel.com>
3730 L:      intel-gfx@lists.freedesktop.org
3731 L:      dri-devel@lists.freedesktop.org
3732 W:      https://01.org/linuxgraphics/
3733 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
3734 T:      git git://anongit.freedesktop.org/drm-intel
3735 S:      Supported
3736 F:      drivers/gpu/drm/i915/
3737 F:      include/drm/i915*
3738 F:      include/uapi/drm/i915*
3739
3740 DRM DRIVERS FOR ATMEL HLCDC
3741 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
3742 L:      dri-devel@lists.freedesktop.org
3743 S:      Supported
3744 F:      drivers/gpu/drm/atmel-hlcdc/
3745 F:      Documentation/devicetree/bindings/drm/atmel/
3746
3747 DRM DRIVERS FOR EXYNOS
3748 M:      Inki Dae <inki.dae@samsung.com>
3749 M:      Joonyoung Shim <jy0922.shim@samsung.com>
3750 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
3751 M:      Kyungmin Park <kyungmin.park@samsung.com>
3752 L:      dri-devel@lists.freedesktop.org
3753 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
3754 S:      Supported
3755 F:      drivers/gpu/drm/exynos/
3756 F:      include/drm/exynos*
3757 F:      include/uapi/drm/exynos*
3758
3759 DRM DRIVERS FOR FREESCALE DCU
3760 M:      Jianwei Wang <jianwei.wang.chn@gmail.com>
3761 M:      Alison Wang <alison.wang@freescale.com>
3762 L:      dri-devel@lists.freedesktop.org
3763 S:      Supported
3764 F:      drivers/gpu/drm/fsl-dcu/
3765 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
3766 F:      Documentation/devicetree/bindings/display/panel/nec,nl4827hc19_05b.txt
3767
3768 DRM DRIVERS FOR FREESCALE IMX
3769 M:      Philipp Zabel <p.zabel@pengutronix.de>
3770 L:      dri-devel@lists.freedesktop.org
3771 S:      Maintained
3772 F:      drivers/gpu/drm/imx/
3773 F:      drivers/gpu/ipu-v3/
3774 F:      Documentation/devicetree/bindings/display/imx/
3775
3776 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
3777 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
3778 L:      dri-devel@lists.freedesktop.org
3779 T:      git git://github.com/patjak/drm-gma500
3780 S:      Maintained
3781 F:      drivers/gpu/drm/gma500
3782 F:      include/drm/gma500*
3783
3784 DRM DRIVERS FOR NVIDIA TEGRA
3785 M:      Thierry Reding <thierry.reding@gmail.com>
3786 M:      Terje Bergström <tbergstrom@nvidia.com>
3787 L:      dri-devel@lists.freedesktop.org
3788 L:      linux-tegra@vger.kernel.org
3789 T:      git git://anongit.freedesktop.org/tegra/linux.git
3790 S:      Supported
3791 F:      drivers/gpu/drm/tegra/
3792 F:      drivers/gpu/host1x/
3793 F:      include/linux/host1x.h
3794 F:      include/uapi/drm/tegra_drm.h
3795 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
3796
3797 DRM DRIVERS FOR RENESAS
3798 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
3799 L:      dri-devel@lists.freedesktop.org
3800 L:      linux-renesas-soc@vger.kernel.org
3801 T:      git git://people.freedesktop.org/~airlied/linux
3802 S:      Supported
3803 F:      drivers/gpu/drm/rcar-du/
3804 F:      drivers/gpu/drm/shmobile/
3805 F:      include/linux/platform_data/shmob_drm.h
3806
3807 DRM DRIVERS FOR ROCKCHIP
3808 M:      Mark Yao <mark.yao@rock-chips.com>
3809 L:      dri-devel@lists.freedesktop.org
3810 S:      Maintained
3811 F:      drivers/gpu/drm/rockchip/
3812 F:      Documentation/devicetree/bindings/display/rockchip*
3813
3814 DRM DRIVERS FOR STI
3815 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
3816 M:      Vincent Abriou <vincent.abriou@st.com>
3817 L:      dri-devel@lists.freedesktop.org
3818 T:      git http://git.linaro.org/people/benjamin.gaignard/kernel.git
3819 S:      Maintained
3820 F:      drivers/gpu/drm/sti
3821 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
3822
3823 DRM DRIVERS FOR VIVANTE GPU IP
3824 M:      Lucas Stach <l.stach@pengutronix.de>
3825 R:      Russell King <linux+etnaviv@arm.linux.org.uk>
3826 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
3827 L:      dri-devel@lists.freedesktop.org
3828 S:      Maintained
3829 F:      drivers/gpu/drm/etnaviv
3830 F:      Documentation/devicetree/bindings/display/etnaviv
3831
3832 DSBR100 USB FM RADIO DRIVER
3833 M:      Alexey Klimov <klimov.linux@gmail.com>
3834 L:      linux-media@vger.kernel.org
3835 T:      git git://linuxtv.org/media_tree.git
3836 S:      Maintained
3837 F:      drivers/media/radio/dsbr100.c
3838
3839 DSCC4 DRIVER
3840 M:      Francois Romieu <romieu@fr.zoreil.com>
3841 L:      netdev@vger.kernel.org
3842 S:      Maintained
3843 F:      drivers/net/wan/dscc4.c
3844
3845 DT3155 MEDIA DRIVER
3846 M:      Hans Verkuil <hverkuil@xs4all.nl>
3847 L:      linux-media@vger.kernel.org
3848 T:      git git://linuxtv.org/media_tree.git
3849 W:      https://linuxtv.org
3850 S:      Odd Fixes
3851 F:      drivers/media/pci/dt3155/
3852
3853 DVB_USB_AF9015 MEDIA DRIVER
3854 M:      Antti Palosaari <crope@iki.fi>
3855 L:      linux-media@vger.kernel.org
3856 W:      https://linuxtv.org
3857 W:      http://palosaari.fi/linux/
3858 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3859 T:      git git://linuxtv.org/anttip/media_tree.git
3860 S:      Maintained
3861 F:      drivers/media/usb/dvb-usb-v2/af9015*
3862
3863 DVB_USB_AF9035 MEDIA DRIVER
3864 M:      Antti Palosaari <crope@iki.fi>
3865 L:      linux-media@vger.kernel.org
3866 W:      https://linuxtv.org
3867 W:      http://palosaari.fi/linux/
3868 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3869 T:      git git://linuxtv.org/anttip/media_tree.git
3870 S:      Maintained
3871 F:      drivers/media/usb/dvb-usb-v2/af9035*
3872
3873 DVB_USB_ANYSEE MEDIA DRIVER
3874 M:      Antti Palosaari <crope@iki.fi>
3875 L:      linux-media@vger.kernel.org
3876 W:      https://linuxtv.org
3877 W:      http://palosaari.fi/linux/
3878 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3879 T:      git git://linuxtv.org/anttip/media_tree.git
3880 S:      Maintained
3881 F:      drivers/media/usb/dvb-usb-v2/anysee*
3882
3883 DVB_USB_AU6610 MEDIA DRIVER
3884 M:      Antti Palosaari <crope@iki.fi>
3885 L:      linux-media@vger.kernel.org
3886 W:      https://linuxtv.org
3887 W:      http://palosaari.fi/linux/
3888 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3889 T:      git git://linuxtv.org/anttip/media_tree.git
3890 S:      Maintained
3891 F:      drivers/media/usb/dvb-usb-v2/au6610*
3892
3893 DVB_USB_CE6230 MEDIA DRIVER
3894 M:      Antti Palosaari <crope@iki.fi>
3895 L:      linux-media@vger.kernel.org
3896 W:      https://linuxtv.org
3897 W:      http://palosaari.fi/linux/
3898 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3899 T:      git git://linuxtv.org/anttip/media_tree.git
3900 S:      Maintained
3901 F:      drivers/media/usb/dvb-usb-v2/ce6230*
3902
3903 DVB_USB_CXUSB MEDIA DRIVER
3904 M:      Michael Krufky <mkrufky@linuxtv.org>
3905 L:      linux-media@vger.kernel.org
3906 W:      https://linuxtv.org
3907 W:      http://github.com/mkrufky
3908 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3909 T:      git git://linuxtv.org/media_tree.git
3910 S:      Maintained
3911 F:      drivers/media/usb/dvb-usb/cxusb*
3912
3913 DVB_USB_EC168 MEDIA DRIVER
3914 M:      Antti Palosaari <crope@iki.fi>
3915 L:      linux-media@vger.kernel.org
3916 W:      https://linuxtv.org
3917 W:      http://palosaari.fi/linux/
3918 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3919 T:      git git://linuxtv.org/anttip/media_tree.git
3920 S:      Maintained
3921 F:      drivers/media/usb/dvb-usb-v2/ec168*
3922
3923 DVB_USB_GL861 MEDIA DRIVER
3924 M:      Antti Palosaari <crope@iki.fi>
3925 L:      linux-media@vger.kernel.org
3926 W:      https://linuxtv.org
3927 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3928 T:      git git://linuxtv.org/anttip/media_tree.git
3929 S:      Maintained
3930 F:      drivers/media/usb/dvb-usb-v2/gl861*
3931
3932 DVB_USB_MXL111SF MEDIA DRIVER
3933 M:      Michael Krufky <mkrufky@linuxtv.org>
3934 L:      linux-media@vger.kernel.org
3935 W:      https://linuxtv.org
3936 W:      http://github.com/mkrufky
3937 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3938 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
3939 S:      Maintained
3940 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
3941
3942 DVB_USB_RTL28XXU MEDIA DRIVER
3943 M:      Antti Palosaari <crope@iki.fi>
3944 L:      linux-media@vger.kernel.org
3945 W:      https://linuxtv.org
3946 W:      http://palosaari.fi/linux/
3947 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3948 T:      git git://linuxtv.org/anttip/media_tree.git
3949 S:      Maintained
3950 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
3951
3952 DVB_USB_V2 MEDIA DRIVER
3953 M:      Antti Palosaari <crope@iki.fi>
3954 L:      linux-media@vger.kernel.org
3955 W:      https://linuxtv.org
3956 W:      http://palosaari.fi/linux/
3957 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3958 T:      git git://linuxtv.org/anttip/media_tree.git
3959 S:      Maintained
3960 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
3961 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
3962
3963 DYNAMIC DEBUG
3964 M:      Jason Baron <jbaron@akamai.com>
3965 S:      Maintained
3966 F:      lib/dynamic_debug.c
3967 F:      include/linux/dynamic_debug.h
3968
3969 DZ DECSTATION DZ11 SERIAL DRIVER
3970 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3971 S:      Maintained
3972 F:      drivers/tty/serial/dz.*
3973
3974 E3X0 POWER BUTTON DRIVER
3975 M:      Moritz Fischer <moritz.fischer@ettus.com>
3976 L:      usrp-users@lists.ettus.com
3977 W:      http://www.ettus.com
3978 S:      Supported
3979 F:      drivers/input/misc/e3x0-button.c
3980 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
3981
3982 E4000 MEDIA DRIVER
3983 M:      Antti Palosaari <crope@iki.fi>
3984 L:      linux-media@vger.kernel.org
3985 W:      https://linuxtv.org
3986 W:      http://palosaari.fi/linux/
3987 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3988 T:      git git://linuxtv.org/anttip/media_tree.git
3989 S:      Maintained
3990 F:      drivers/media/tuners/e4000*
3991
3992 EATA ISA/EISA/PCI SCSI DRIVER
3993 M:      Dario Ballabio <ballabio_dario@emc.com>
3994 L:      linux-scsi@vger.kernel.org
3995 S:      Maintained
3996 F:      drivers/scsi/eata.c
3997
3998 EC100 MEDIA DRIVER
3999 M:      Antti Palosaari <crope@iki.fi>
4000 L:      linux-media@vger.kernel.org
4001 W:      https://linuxtv.org
4002 W:      http://palosaari.fi/linux/
4003 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4004 T:      git git://linuxtv.org/anttip/media_tree.git
4005 S:      Maintained
4006 F:      drivers/media/dvb-frontends/ec100*
4007
4008 ECRYPT FILE SYSTEM
4009 M:      Tyler Hicks <tyhicks@canonical.com>
4010 L:      ecryptfs@vger.kernel.org
4011 W:      http://ecryptfs.org
4012 W:      https://launchpad.net/ecryptfs
4013 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
4014 S:      Supported
4015 F:      Documentation/filesystems/ecryptfs.txt
4016 F:      fs/ecryptfs/
4017
4018 EDAC-CORE
4019 M:      Doug Thompson <dougthompson@xmission.com>
4020 M:      Borislav Petkov <bp@alien8.de>
4021 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4022 L:      linux-edac@vger.kernel.org
4023 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git for-next
4024 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-edac.git linux_next
4025 S:      Supported
4026 F:      Documentation/edac.txt
4027 F:      drivers/edac/
4028 F:      include/linux/edac.h
4029
4030 EDAC-AMD64
4031 M:      Doug Thompson <dougthompson@xmission.com>
4032 M:      Borislav Petkov <bp@alien8.de>
4033 L:      linux-edac@vger.kernel.org
4034 S:      Maintained
4035 F:      drivers/edac/amd64_edac*
4036
4037 EDAC-CALXEDA
4038 M:      Doug Thompson <dougthompson@xmission.com>
4039 M:      Robert Richter <rric@kernel.org>
4040 L:      linux-edac@vger.kernel.org
4041 S:      Maintained
4042 F:      drivers/edac/highbank*
4043
4044 EDAC-CAVIUM
4045 M:      Ralf Baechle <ralf@linux-mips.org>
4046 M:      David Daney <david.daney@cavium.com>
4047 L:      linux-edac@vger.kernel.org
4048 L:      linux-mips@linux-mips.org
4049 S:      Supported
4050 F:      drivers/edac/octeon_edac*
4051
4052 EDAC-E752X
4053 M:      Mark Gross <mark.gross@intel.com>
4054 M:      Doug Thompson <dougthompson@xmission.com>
4055 L:      linux-edac@vger.kernel.org
4056 S:      Maintained
4057 F:      drivers/edac/e752x_edac.c
4058
4059 EDAC-E7XXX
4060 M:      Doug Thompson <dougthompson@xmission.com>
4061 L:      linux-edac@vger.kernel.org
4062 S:      Maintained
4063 F:      drivers/edac/e7xxx_edac.c
4064
4065 EDAC-GHES
4066 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4067 L:      linux-edac@vger.kernel.org
4068 S:      Maintained
4069 F:      drivers/edac/ghes_edac.c
4070
4071 EDAC-I82443BXGX
4072 M:      Tim Small <tim@buttersideup.com>
4073 L:      linux-edac@vger.kernel.org
4074 S:      Maintained
4075 F:      drivers/edac/i82443bxgx_edac.c
4076
4077 EDAC-I3000
4078 M:      Jason Uhlenkott <juhlenko@akamai.com>
4079 L:      linux-edac@vger.kernel.org
4080 S:      Maintained
4081 F:      drivers/edac/i3000_edac.c
4082
4083 EDAC-I5000
4084 M:      Doug Thompson <dougthompson@xmission.com>
4085 L:      linux-edac@vger.kernel.org
4086 S:      Maintained
4087 F:      drivers/edac/i5000_edac.c
4088
4089 EDAC-I5400
4090 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4091 L:      linux-edac@vger.kernel.org
4092 S:      Maintained
4093 F:      drivers/edac/i5400_edac.c
4094
4095 EDAC-I7300
4096 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4097 L:      linux-edac@vger.kernel.org
4098 S:      Maintained
4099 F:      drivers/edac/i7300_edac.c
4100
4101 EDAC-I7CORE
4102 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4103 L:      linux-edac@vger.kernel.org
4104 S:      Maintained
4105 F:      drivers/edac/i7core_edac.c
4106
4107 EDAC-I82975X
4108 M:      Ranganathan Desikan <ravi@jetztechnologies.com>
4109 M:      "Arvind R." <arvino55@gmail.com>
4110 L:      linux-edac@vger.kernel.org
4111 S:      Maintained
4112 F:      drivers/edac/i82975x_edac.c
4113
4114 EDAC-IE31200
4115 M:      Jason Baron <jbaron@akamai.com>
4116 L:      linux-edac@vger.kernel.org
4117 S:      Maintained
4118 F:      drivers/edac/ie31200_edac.c
4119
4120 EDAC-MPC85XX
4121 M:      Johannes Thumshirn <morbidrsa@gmail.com>
4122 L:      linux-edac@vger.kernel.org
4123 S:      Maintained
4124 F:      drivers/edac/mpc85xx_edac.[ch]
4125
4126 EDAC-PASEMI
4127 M:      Egor Martovetsky <egor@pasemi.com>
4128 L:      linux-edac@vger.kernel.org
4129 S:      Maintained
4130 F:      drivers/edac/pasemi_edac.c
4131
4132 EDAC-R82600
4133 M:      Tim Small <tim@buttersideup.com>
4134 L:      linux-edac@vger.kernel.org
4135 S:      Maintained
4136 F:      drivers/edac/r82600_edac.c
4137
4138 EDAC-SBRIDGE
4139 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4140 L:      linux-edac@vger.kernel.org
4141 S:      Maintained
4142 F:      drivers/edac/sb_edac.c
4143
4144 EDAC-XGENE
4145 APPLIED MICRO (APM) X-GENE SOC EDAC
4146 M:     Loc Ho <lho@apm.com>
4147 S:     Supported
4148 F:     drivers/edac/xgene_edac.c
4149 F:     Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
4150
4151 EDIROL UA-101/UA-1000 DRIVER
4152 M:      Clemens Ladisch <clemens@ladisch.de>
4153 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4154 T:      git git://git.alsa-project.org/alsa-kernel.git
4155 S:      Maintained
4156 F:      sound/usb/misc/ua101.c
4157
4158 EXTENSIBLE FIRMWARE INTERFACE (EFI)
4159 M:      Matt Fleming <matt@codeblueprint.co.uk>
4160 L:      linux-efi@vger.kernel.org
4161 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4162 S:      Maintained
4163 F:      Documentation/efi-stub.txt
4164 F:      arch/ia64/kernel/efi.c
4165 F:      arch/x86/boot/compressed/eboot.[ch]
4166 F:      arch/x86/include/asm/efi.h
4167 F:      arch/x86/platform/efi/*
4168 F:      drivers/firmware/efi/*
4169 F:      include/linux/efi*.h
4170
4171 EFI VARIABLE FILESYSTEM
4172 M:      Matthew Garrett <matthew.garrett@nebula.com>
4173 M:      Jeremy Kerr <jk@ozlabs.org>
4174 M:      Matt Fleming <matt@codeblueprint.co.uk>
4175 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4176 L:      linux-efi@vger.kernel.org
4177 S:      Maintained
4178 F:      fs/efivarfs/
4179
4180 EFIFB FRAMEBUFFER DRIVER
4181 L:      linux-fbdev@vger.kernel.org
4182 M:      Peter Jones <pjones@redhat.com>
4183 S:      Maintained
4184 F:      drivers/video/fbdev/efifb.c
4185
4186 EFS FILESYSTEM
4187 W:      http://aeschi.ch.eu.org/efs/
4188 S:      Orphan
4189 F:      fs/efs/
4190
4191 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
4192 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
4193 L:      netdev@vger.kernel.org
4194 S:      Maintained
4195 F:      drivers/net/ethernet/ibm/ehea/
4196
4197 EM28XX VIDEO4LINUX DRIVER
4198 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4199 L:      linux-media@vger.kernel.org
4200 W:      https://linuxtv.org
4201 T:      git git://linuxtv.org/media_tree.git
4202 S:      Maintained
4203 F:      drivers/media/usb/em28xx/
4204
4205 EMBEDDED LINUX
4206 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
4207 M:      Matt Mackall <mpm@selenic.com>
4208 M:      David Woodhouse <dwmw2@infradead.org>
4209 L:      linux-embedded@vger.kernel.org
4210 S:      Maintained
4211
4212 EMULEX/AVAGO LPFC FC/FCOE SCSI DRIVER
4213 M:      James Smart <james.smart@avagotech.com>
4214 M:      Dick Kennedy <dick.kennedy@avagotech.com>
4215 L:      linux-scsi@vger.kernel.org
4216 W:      http://www.avagotech.com
4217 S:      Supported
4218 F:      drivers/scsi/lpfc/
4219
4220 ENE CB710 FLASH CARD READER DRIVER
4221 M:      MichaÅ‚ MirosÅ‚aw <mirq-linux@rere.qmqm.pl>
4222 S:      Maintained
4223 F:      drivers/misc/cb710/
4224 F:      drivers/mmc/host/cb710-mmc.*
4225 F:      include/linux/cb710.h
4226
4227 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
4228 M:      Maxim Levitsky <maximlevitsky@gmail.com>
4229 S:      Maintained
4230 F:      drivers/media/rc/ene_ir.*
4231
4232 ENHANCED ERROR HANDLING (EEH)
4233 M:      Gavin Shan <shangw@linux.vnet.ibm.com>
4234 L:      linuxppc-dev@lists.ozlabs.org
4235 S:      Supported
4236 F:      Documentation/powerpc/eeh-pci-error-recovery.txt
4237 F:      arch/powerpc/kernel/eeh*.c
4238
4239 EPSON S1D13XXX FRAMEBUFFER DRIVER
4240 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
4241 S:      Maintained
4242 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
4243 F:      drivers/video/fbdev/s1d13xxxfb.c
4244 F:      include/video/s1d13xxxfb.h
4245
4246 ET131X NETWORK DRIVER
4247 M:      Mark Einon <mark.einon@gmail.com>
4248 S:      Odd Fixes
4249 F:      drivers/net/ethernet/agere/
4250
4251 ETHERNET BRIDGE
4252 M:      Stephen Hemminger <stephen@networkplumber.org>
4253 L:      bridge@lists.linux-foundation.org
4254 L:      netdev@vger.kernel.org
4255 W:      http://www.linuxfoundation.org/en/Net:Bridge
4256 S:      Maintained
4257 F:      include/linux/netfilter_bridge/
4258 F:      net/bridge/
4259
4260 ETHERNET PHY LIBRARY
4261 M:      Florian Fainelli <f.fainelli@gmail.com>
4262 L:      netdev@vger.kernel.org
4263 S:      Maintained
4264 F:      include/linux/phy.h
4265 F:      include/linux/phy_fixed.h
4266 F:      drivers/net/phy/
4267 F:      Documentation/networking/phy.txt
4268 F:      drivers/of/of_mdio.c
4269 F:      drivers/of/of_net.c
4270
4271 EXT2 FILE SYSTEM
4272 M:      Jan Kara <jack@suse.com>
4273 L:      linux-ext4@vger.kernel.org
4274 S:      Maintained
4275 F:      Documentation/filesystems/ext2.txt
4276 F:      fs/ext2/
4277 F:      include/linux/ext2*
4278
4279 EXT4 FILE SYSTEM
4280 M:      "Theodore Ts'o" <tytso@mit.edu>
4281 M:      Andreas Dilger <adilger.kernel@dilger.ca>
4282 L:      linux-ext4@vger.kernel.org
4283 W:      http://ext4.wiki.kernel.org
4284 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
4285 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
4286 S:      Maintained
4287 F:      Documentation/filesystems/ext4.txt
4288 F:      fs/ext4/
4289
4290 Extended Verification Module (EVM)
4291 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
4292 L:      linux-ima-devel@lists.sourceforge.net
4293 L:      linux-security-module@vger.kernel.org
4294 S:      Supported
4295 F:      security/integrity/evm/
4296
4297 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
4298 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
4299 M:      Chanwoo Choi <cw00.choi@samsung.com>
4300 L:      linux-kernel@vger.kernel.org
4301 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
4302 S:      Maintained
4303 F:      drivers/extcon/
4304 F:      include/linux/extcon/
4305 F:      include/linux/extcon.h
4306 F:      Documentation/extcon/
4307 F:      Documentation/devicetree/bindings/extcon/
4308
4309 EXYNOS DP DRIVER
4310 M:      Jingoo Han <jingoohan1@gmail.com>
4311 L:      dri-devel@lists.freedesktop.org
4312 S:      Maintained
4313 F:      drivers/gpu/drm/exynos/exynos_dp*
4314
4315 EXYNOS MIPI DISPLAY DRIVERS
4316 M:      Inki Dae <inki.dae@samsung.com>
4317 M:      Donghwa Lee <dh09.lee@samsung.com>
4318 M:      Kyungmin Park <kyungmin.park@samsung.com>
4319 L:      linux-fbdev@vger.kernel.org
4320 S:      Maintained
4321 F:      drivers/video/fbdev/exynos/exynos_mipi*
4322 F:      include/video/exynos_mipi*
4323
4324 F71805F HARDWARE MONITORING DRIVER
4325 M:      Jean Delvare <jdelvare@suse.com>
4326 L:      lm-sensors@lm-sensors.org
4327 S:      Maintained
4328 F:      Documentation/hwmon/f71805f
4329 F:      drivers/hwmon/f71805f.c
4330
4331 FC0011 TUNER DRIVER
4332 M:      Michael Buesch <m@bues.ch>
4333 L:      linux-media@vger.kernel.org
4334 S:      Maintained
4335 F:      drivers/media/tuners/fc0011.h
4336 F:      drivers/media/tuners/fc0011.c
4337
4338 FC2580 MEDIA DRIVER
4339 M:      Antti Palosaari <crope@iki.fi>
4340 L:      linux-media@vger.kernel.org
4341 W:      https://linuxtv.org
4342 W:      http://palosaari.fi/linux/
4343 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4344 T:      git git://linuxtv.org/anttip/media_tree.git
4345 S:      Maintained
4346 F:      drivers/media/tuners/fc2580*
4347
4348 FANOTIFY
4349 M:      Eric Paris <eparis@redhat.com>
4350 S:      Maintained
4351 F:      fs/notify/fanotify/
4352 F:      include/linux/fanotify.h
4353 F:      include/uapi/linux/fanotify.h
4354
4355 FARSYNC SYNCHRONOUS DRIVER
4356 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
4357 W:      http://www.farsite.co.uk/
4358 S:      Supported
4359 F:      drivers/net/wan/farsync.*
4360
4361 FAULT INJECTION SUPPORT
4362 M:      Akinobu Mita <akinobu.mita@gmail.com>
4363 S:      Supported
4364 F:      Documentation/fault-injection/
4365 F:      lib/fault-inject.c
4366
4367 FBTFT Framebuffer drivers
4368 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
4369 M:      Noralf Trønnes <noralf@tronnes.org>
4370 S:      Maintained
4371 F:      drivers/staging/fbtft/
4372
4373 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
4374 M:      Vasu Dev <vasu.dev@intel.com>
4375 L:      fcoe-devel@open-fcoe.org
4376 W:      www.Open-FCoE.org
4377 S:      Supported
4378 F:      drivers/scsi/libfc/
4379 F:      drivers/scsi/fcoe/
4380 F:      include/scsi/fc/
4381 F:      include/scsi/libfc.h
4382 F:      include/scsi/libfcoe.h
4383 F:      include/uapi/scsi/fc/
4384
4385 FILE LOCKING (flock() and fcntl()/lockf())
4386 M:      Jeff Layton <jlayton@poochiereds.net>
4387 M:      "J. Bruce Fields" <bfields@fieldses.org>
4388 L:      linux-fsdevel@vger.kernel.org
4389 S:      Maintained
4390 F:      include/linux/fcntl.h
4391 F:      include/linux/fs.h
4392 F:      include/uapi/linux/fcntl.h
4393 F:      include/uapi/linux/fs.h
4394 F:      fs/fcntl.c
4395 F:      fs/locks.c
4396
4397 FILESYSTEMS (VFS and infrastructure)
4398 M:      Alexander Viro <viro@zeniv.linux.org.uk>
4399 L:      linux-fsdevel@vger.kernel.org
4400 S:      Maintained
4401 F:      fs/*
4402
4403 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
4404 M:      Riku Voipio <riku.voipio@iki.fi>
4405 L:      lm-sensors@lm-sensors.org
4406 S:      Maintained
4407 F:      drivers/hwmon/f75375s.c
4408 F:      include/linux/f75375s.h
4409
4410 FIREWIRE AUDIO DRIVERS
4411 M:      Clemens Ladisch <clemens@ladisch.de>
4412 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4413 T:      git git://git.alsa-project.org/alsa-kernel.git
4414 S:      Maintained
4415 F:      sound/firewire/
4416
4417 FIREWIRE MEDIA DRIVERS (firedtv)
4418 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4419 L:      linux-media@vger.kernel.org
4420 L:      linux1394-devel@lists.sourceforge.net
4421 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
4422 S:      Maintained
4423 F:      drivers/media/firewire/
4424
4425 FIREWIRE SBP-2 TARGET
4426 M:      Chris Boot <bootc@bootc.net>
4427 L:      linux-scsi@vger.kernel.org
4428 L:      target-devel@vger.kernel.org
4429 L:      linux1394-devel@lists.sourceforge.net
4430 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
4431 S:      Maintained
4432 F:      drivers/target/sbp/
4433
4434 FIREWIRE SUBSYSTEM
4435 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4436 L:      linux1394-devel@lists.sourceforge.net
4437 W:      http://ieee1394.wiki.kernel.org/
4438 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
4439 S:      Maintained
4440 F:      drivers/firewire/
4441 F:      include/linux/firewire.h
4442 F:      include/uapi/linux/firewire*.h
4443 F:      tools/firewire/
4444
4445 FIRMWARE LOADER (request_firmware)
4446 M:      Ming Lei <ming.lei@canonical.com>
4447 L:      linux-kernel@vger.kernel.org
4448 S:      Maintained
4449 F:      Documentation/firmware_class/
4450 F:      drivers/base/firmware*.c
4451 F:      include/linux/firmware.h
4452
4453 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
4454 M:      Joshua Morris <josh.h.morris@us.ibm.com>
4455 M:      Philip Kelleher <pjk1939@linux.vnet.ibm.com>
4456 S:      Maintained
4457 F:      drivers/block/rsxx/
4458
4459 FLOPPY DRIVER
4460 M:      Jiri Kosina <jikos@kernel.org>
4461 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
4462 S:      Odd fixes
4463 F:      drivers/block/floppy.c
4464
4465 FMC SUBSYSTEM
4466 M:      Alessandro Rubini <rubini@gnudd.com>
4467 W:      http://www.ohwr.org/projects/fmc-bus
4468 S:      Supported
4469 F:      drivers/fmc/
4470 F:      include/linux/fmc*.h
4471 F:      include/linux/ipmi-fru.h
4472 K:      fmc_d.*register
4473
4474 FPGA MANAGER FRAMEWORK
4475 M:      Alan Tull <atull@opensource.altera.com>
4476 R:      Moritz Fischer <moritz.fischer@ettus.com>
4477 S:      Maintained
4478 F:      drivers/fpga/
4479 F:      include/linux/fpga/fpga-mgr.h
4480 W:      http://www.rocketboards.org
4481
4482 FPU EMULATOR
4483 M:      Bill Metzenthen <billm@melbpc.org.au>
4484 W:      http://floatingpoint.sourceforge.net/emulator/index.html
4485 S:      Maintained
4486 F:      arch/x86/math-emu/
4487
4488 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
4489 L:      netdev@vger.kernel.org
4490 S:      Orphan
4491 F:      drivers/net/wan/dlci.c
4492 F:      drivers/net/wan/sdla.c
4493
4494 FRAMEBUFFER LAYER
4495 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
4496 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
4497 L:      linux-fbdev@vger.kernel.org
4498 W:      http://linux-fbdev.sourceforge.net/
4499 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
4500 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git
4501 S:      Maintained
4502 F:      Documentation/fb/
4503 F:      drivers/video/
4504 F:      include/video/
4505 F:      include/linux/fb.h
4506 F:      include/uapi/video/
4507 F:      include/uapi/linux/fb.h
4508
4509 FREESCALE DIU FRAMEBUFFER DRIVER
4510 M:      Timur Tabi <timur@tabi.org>
4511 L:      linux-fbdev@vger.kernel.org
4512 S:      Maintained
4513 F:      drivers/video/fbdev/fsl-diu-fb.*
4514
4515 FREESCALE DMA DRIVER
4516 M:      Li Yang <leoli@freescale.com>
4517 M:      Zhang Wei <zw@zh-kernel.org>
4518 L:      linuxppc-dev@lists.ozlabs.org
4519 S:      Maintained
4520 F:      drivers/dma/fsldma.*
4521
4522 FREESCALE I2C CPM DRIVER
4523 M:      Jochen Friedrich <jochen@scram.de>
4524 L:      linuxppc-dev@lists.ozlabs.org
4525 L:      linux-i2c@vger.kernel.org
4526 S:      Maintained
4527 F:      drivers/i2c/busses/i2c-cpm.c
4528
4529 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
4530 M:      Sascha Hauer <kernel@pengutronix.de>
4531 L:      linux-fbdev@vger.kernel.org
4532 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4533 S:      Maintained
4534 F:      include/linux/platform_data/video-imxfb.h
4535 F:      drivers/video/fbdev/imxfb.c
4536
4537 FREESCALE QUAD SPI DRIVER
4538 M:      Han Xu <han.xu@freescale.com>
4539 L:      linux-mtd@lists.infradead.org
4540 S:      Maintained
4541 F:      drivers/mtd/spi-nor/fsl-quadspi.c
4542
4543 FREESCALE SOC FS_ENET DRIVER
4544 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
4545 M:      Vitaly Bordug <vbordug@ru.mvista.com>
4546 L:      linuxppc-dev@lists.ozlabs.org
4547 L:      netdev@vger.kernel.org
4548 S:      Maintained
4549 F:      drivers/net/ethernet/freescale/fs_enet/
4550 F:      include/linux/fs_enet_pd.h
4551
4552 FREESCALE QUICC ENGINE LIBRARY
4553 L:      linuxppc-dev@lists.ozlabs.org
4554 S:      Orphan
4555 F:      drivers/soc/fsl/qe/
4556 F:      include/soc/fsl/*qe*.h
4557 F:      include/soc/fsl/*ucc*.h
4558
4559 FREESCALE USB PERIPHERAL DRIVERS
4560 M:      Li Yang <leoli@freescale.com>
4561 L:      linux-usb@vger.kernel.org
4562 L:      linuxppc-dev@lists.ozlabs.org
4563 S:      Maintained
4564 F:      drivers/usb/gadget/udc/fsl*
4565
4566 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
4567 M:      Li Yang <leoli@freescale.com>
4568 L:      netdev@vger.kernel.org
4569 L:      linuxppc-dev@lists.ozlabs.org
4570 S:      Maintained
4571 F:      drivers/net/ethernet/freescale/ucc_geth*
4572
4573 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
4574 M:      Claudiu Manoil <claudiu.manoil@freescale.com>
4575 L:      netdev@vger.kernel.org
4576 S:      Maintained
4577 F:      drivers/net/ethernet/freescale/gianfar*
4578 X:      drivers/net/ethernet/freescale/gianfar_ptp.c
4579 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
4580
4581 FREESCALE QUICC ENGINE UCC UART DRIVER
4582 M:      Timur Tabi <timur@tabi.org>
4583 L:      linuxppc-dev@lists.ozlabs.org
4584 S:      Maintained
4585 F:      drivers/tty/serial/ucc_uart.c
4586
4587 FREESCALE SOC SOUND DRIVERS
4588 M:      Timur Tabi <timur@tabi.org>
4589 M:      Nicolin Chen <nicoleotsuka@gmail.com>
4590 M:      Xiubo Li <Xiubo.Lee@gmail.com>
4591 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4592 L:      linuxppc-dev@lists.ozlabs.org
4593 S:      Maintained
4594 F:      sound/soc/fsl/fsl*
4595 F:      sound/soc/fsl/imx*
4596 F:      sound/soc/fsl/mpc8610_hpcd.c
4597
4598 FREESCALE QORIQ MANAGEMENT COMPLEX DRIVER
4599 M:      "J. German Rivera" <German.Rivera@freescale.com>
4600 L:      linux-kernel@vger.kernel.org
4601 S:      Maintained
4602 F:      drivers/staging/fsl-mc/
4603
4604 FREEVXFS FILESYSTEM
4605 M:      Christoph Hellwig <hch@infradead.org>
4606 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
4607 S:      Maintained
4608 F:      fs/freevxfs/
4609
4610 FREEZER
4611 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4612 M:      Pavel Machek <pavel@ucw.cz>
4613 L:      linux-pm@vger.kernel.org
4614 S:      Supported
4615 F:      Documentation/power/freezing-of-tasks.txt
4616 F:      include/linux/freezer.h
4617 F:      kernel/freezer.c
4618
4619 FRONTSWAP API
4620 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4621 L:      linux-kernel@vger.kernel.org
4622 S:      Maintained
4623 F:      mm/frontswap.c
4624 F:      include/linux/frontswap.h
4625
4626 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
4627 M:      David Howells <dhowells@redhat.com>
4628 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
4629 S:      Supported
4630 F:      Documentation/filesystems/caching/
4631 F:      fs/fscache/
4632 F:      include/linux/fscache*.h
4633
4634 F2FS FILE SYSTEM
4635 M:      Jaegeuk Kim <jaegeuk@kernel.org>
4636 M:      Changman Lee <cm224.lee@samsung.com>
4637 R:      Chao Yu <chao2.yu@samsung.com>
4638 L:      linux-f2fs-devel@lists.sourceforge.net
4639 W:      http://en.wikipedia.org/wiki/F2FS
4640 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
4641 S:      Maintained
4642 F:      Documentation/filesystems/f2fs.txt
4643 F:      Documentation/ABI/testing/sysfs-fs-f2fs
4644 F:      fs/f2fs/
4645 F:      include/linux/f2fs_fs.h
4646 F:      include/trace/events/f2fs.h
4647
4648 FUJITSU FR-V (FRV) PORT
4649 S:      Orphan
4650 F:      arch/frv/
4651
4652 FUJITSU LAPTOP EXTRAS
4653 M:      Jonathan Woithe <jwoithe@just42.net>
4654 L:      platform-driver-x86@vger.kernel.org
4655 S:      Maintained
4656 F:      drivers/platform/x86/fujitsu-laptop.c
4657
4658 FUJITSU M-5MO LS CAMERA ISP DRIVER
4659 M:      Kyungmin Park <kyungmin.park@samsung.com>
4660 M:      Heungjun Kim <riverful.kim@samsung.com>
4661 L:      linux-media@vger.kernel.org
4662 S:      Maintained
4663 F:      drivers/media/i2c/m5mols/
4664 F:      include/media/i2c/m5mols.h
4665
4666 FUJITSU TABLET EXTRAS
4667 M:      Robert Gerlach <khnz@gmx.de>
4668 L:      platform-driver-x86@vger.kernel.org
4669 S:      Maintained
4670 F:      drivers/platform/x86/fujitsu-tablet.c
4671
4672 FUSE: FILESYSTEM IN USERSPACE
4673 M:      Miklos Szeredi <miklos@szeredi.hu>
4674 L:      fuse-devel@lists.sourceforge.net
4675 W:      http://fuse.sourceforge.net/
4676 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
4677 S:      Maintained
4678 F:      fs/fuse/
4679 F:      include/uapi/linux/fuse.h
4680 F:      Documentation/filesystems/fuse.txt
4681
4682 FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
4683 M:      Rik Faith <faith@cs.unc.edu>
4684 L:      linux-scsi@vger.kernel.org
4685 S:      Odd Fixes (e.g., new signatures)
4686 F:      drivers/scsi/fdomain.*
4687
4688 GCOV BASED KERNEL PROFILING
4689 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
4690 S:      Maintained
4691 F:      kernel/gcov/
4692 F:      Documentation/gcov.txt
4693
4694 GDT SCSI DISK ARRAY CONTROLLER DRIVER
4695 M:      Achim Leubner <achim_leubner@adaptec.com>
4696 L:      linux-scsi@vger.kernel.org
4697 W:      http://www.icp-vortex.com/
4698 S:      Supported
4699 F:      drivers/scsi/gdt*
4700
4701 GDB KERNEL DEBUGGING HELPER SCRIPTS
4702 M:      Jan Kiszka <jan.kiszka@siemens.com>
4703 S:      Supported
4704 F:      scripts/gdb/
4705
4706 GEMTEK FM RADIO RECEIVER DRIVER
4707 M:      Hans Verkuil <hverkuil@xs4all.nl>
4708 L:      linux-media@vger.kernel.org
4709 T:      git git://linuxtv.org/media_tree.git
4710 W:      https://linuxtv.org
4711 S:      Maintained
4712 F:      drivers/media/radio/radio-gemtek*
4713
4714 GENERIC GPIO I2C DRIVER
4715 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
4716 S:      Supported
4717 F:      drivers/i2c/busses/i2c-gpio.c
4718 F:      include/linux/i2c-gpio.h
4719
4720 GENERIC GPIO I2C MULTIPLEXER DRIVER
4721 M:      Peter Korsgaard <peter.korsgaard@barco.com>
4722 L:      linux-i2c@vger.kernel.org
4723 S:      Supported
4724 F:      drivers/i2c/muxes/i2c-mux-gpio.c
4725 F:      include/linux/i2c-mux-gpio.h
4726 F:      Documentation/i2c/muxes/i2c-mux-gpio
4727
4728 GENERIC HDLC (WAN) DRIVERS
4729 M:      Krzysztof Halasa <khc@pm.waw.pl>
4730 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
4731 S:      Maintained
4732 F:      drivers/net/wan/c101.c
4733 F:      drivers/net/wan/hd6457*
4734 F:      drivers/net/wan/hdlc*
4735 F:      drivers/net/wan/n2.c
4736 F:      drivers/net/wan/pc300too.c
4737 F:      drivers/net/wan/pci200syn.c
4738 F:      drivers/net/wan/wanxl*
4739
4740 GENERIC INCLUDE/ASM HEADER FILES
4741 M:      Arnd Bergmann <arnd@arndb.de>
4742 L:      linux-arch@vger.kernel.org
4743 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
4744 S:      Maintained
4745 F:      include/asm-generic/
4746 F:      include/uapi/asm-generic/
4747
4748 GENERIC PHY FRAMEWORK
4749 M:      Kishon Vijay Abraham I <kishon@ti.com>
4750 L:      linux-kernel@vger.kernel.org
4751 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
4752 S:      Supported
4753 F:      drivers/phy/
4754 F:      include/linux/phy/
4755
4756 GENERIC PM DOMAINS
4757 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4758 M:      Kevin Hilman <khilman@kernel.org>
4759 M:      Ulf Hansson <ulf.hansson@linaro.org>
4760 L:      linux-pm@vger.kernel.org
4761 S:      Supported
4762 F:      drivers/base/power/domain*.c
4763 F:      include/linux/pm_domain.h
4764
4765 GENERIC UIO DRIVER FOR PCI DEVICES
4766 M:      "Michael S. Tsirkin" <mst@redhat.com>
4767 L:      kvm@vger.kernel.org
4768 S:      Supported
4769 F:      drivers/uio/uio_pci_generic.c
4770
4771 GET_MAINTAINER SCRIPT
4772 M:      Joe Perches <joe@perches.com>
4773 S:      Maintained
4774 F:      scripts/get_maintainer.pl
4775
4776 GFS2 FILE SYSTEM
4777 M:      Steven Whitehouse <swhiteho@redhat.com>
4778 M:      Bob Peterson <rpeterso@redhat.com>
4779 L:      cluster-devel@redhat.com
4780 W:      http://sources.redhat.com/cluster/
4781 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
4782 S:      Supported
4783 F:      Documentation/filesystems/gfs2*.txt
4784 F:      fs/gfs2/
4785 F:      include/uapi/linux/gfs2_ondisk.h
4786
4787 GIGASET ISDN DRIVERS
4788 M:      Paul Bolle <pebolle@tiscali.nl>
4789 L:      gigaset307x-common@lists.sourceforge.net
4790 W:      http://gigaset307x.sourceforge.net/
4791 S:      Odd Fixes
4792 F:      Documentation/isdn/README.gigaset
4793 F:      drivers/isdn/gigaset/
4794 F:      include/uapi/linux/gigaset_dev.h
4795
4796 GO7007 MPEG CODEC
4797 M:      Hans Verkuil <hans.verkuil@cisco.com>
4798 L:      linux-media@vger.kernel.org
4799 S:      Maintained
4800 F:      drivers/media/usb/go7007/
4801
4802 GOODIX TOUCHSCREEN
4803 M:      Bastien Nocera <hadess@hadess.net>
4804 L:      linux-input@vger.kernel.org
4805 S:      Maintained
4806 F:      drivers/input/touchscreen/goodix.c
4807
4808 GPIO SUBSYSTEM
4809 M:      Linus Walleij <linus.walleij@linaro.org>
4810 M:      Alexandre Courbot <gnurou@gmail.com>
4811 L:      linux-gpio@vger.kernel.org
4812 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
4813 S:      Maintained
4814 F:      Documentation/gpio/
4815 F:      drivers/gpio/
4816 F:      include/linux/gpio/
4817 F:      include/linux/gpio.h
4818 F:      include/asm-generic/gpio.h
4819
4820 GRE DEMULTIPLEXER DRIVER
4821 M:      Dmitry Kozlov <xeb@mail.ru>
4822 L:      netdev@vger.kernel.org
4823 S:      Maintained
4824 F:      net/ipv4/gre_demux.c
4825 F:      net/ipv4/gre_offload.c
4826 F:      include/net/gre.h
4827
4828 GRETH 10/100/1G Ethernet MAC device driver
4829 M:      Kristoffer Glembo <kristoffer@gaisler.com>
4830 L:      netdev@vger.kernel.org
4831 S:      Maintained
4832 F:      drivers/net/ethernet/aeroflex/
4833
4834 GSPCA FINEPIX SUBDRIVER
4835 M:      Frank Zago <frank@zago.net>
4836 L:      linux-media@vger.kernel.org
4837 T:      git git://linuxtv.org/media_tree.git
4838 S:      Maintained
4839 F:      drivers/media/usb/gspca/finepix.c
4840
4841 GSPCA GL860 SUBDRIVER
4842 M:      Olivier Lorin <o.lorin@laposte.net>
4843 L:      linux-media@vger.kernel.org
4844 T:      git git://linuxtv.org/media_tree.git
4845 S:      Maintained
4846 F:      drivers/media/usb/gspca/gl860/
4847
4848 GSPCA M5602 SUBDRIVER
4849 M:      Erik Andren <erik.andren@gmail.com>
4850 L:      linux-media@vger.kernel.org
4851 T:      git git://linuxtv.org/media_tree.git
4852 S:      Maintained
4853 F:      drivers/media/usb/gspca/m5602/
4854
4855 GSPCA PAC207 SONIXB SUBDRIVER
4856 M:      Hans de Goede <hdegoede@redhat.com>
4857 L:      linux-media@vger.kernel.org
4858 T:      git git://linuxtv.org/media_tree.git
4859 S:      Maintained
4860 F:      drivers/media/usb/gspca/pac207.c
4861
4862 GSPCA SN9C20X SUBDRIVER
4863 M:      Brian Johnson <brijohn@gmail.com>
4864 L:      linux-media@vger.kernel.org
4865 T:      git git://linuxtv.org/media_tree.git
4866 S:      Maintained
4867 F:      drivers/media/usb/gspca/sn9c20x.c
4868
4869 GSPCA T613 SUBDRIVER
4870 M:      Leandro Costantino <lcostantino@gmail.com>
4871 L:      linux-media@vger.kernel.org
4872 T:      git git://linuxtv.org/media_tree.git
4873 S:      Maintained
4874 F:      drivers/media/usb/gspca/t613.c
4875
4876 GSPCA USB WEBCAM DRIVER
4877 M:      Hans de Goede <hdegoede@redhat.com>
4878 L:      linux-media@vger.kernel.org
4879 T:      git git://linuxtv.org/media_tree.git
4880 S:      Maintained
4881 F:      drivers/media/usb/gspca/
4882
4883 GUID PARTITION TABLE (GPT)
4884 M:      Davidlohr Bueso <dave@stgolabs.net>
4885 L:      linux-efi@vger.kernel.org
4886 S:      Maintained
4887 F:      block/partitions/efi.*
4888
4889 STK1160 USB VIDEO CAPTURE DRIVER
4890 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
4891 L:      linux-media@vger.kernel.org
4892 T:      git git://linuxtv.org/media_tree.git
4893 S:      Maintained
4894 F:      drivers/media/usb/stk1160/
4895
4896 H8/300 ARCHITECTURE
4897 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
4898 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
4899 W:      http://uclinux-h8.sourceforge.jp
4900 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
4901 S:      Maintained
4902 F:      arch/h8300/
4903 F:      drivers/clocksource/h8300_*.c
4904 F:      drivers/clk/h8300/
4905 F:      drivers/irqchip/irq-renesas-h8*.c
4906
4907 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
4908 M:      Frank Seidel <frank@f-seidel.de>
4909 L:      platform-driver-x86@vger.kernel.org
4910 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
4911 S:      Maintained
4912 F:      drivers/platform/x86/hdaps.c
4913
4914 HDPVR USB VIDEO ENCODER DRIVER
4915 M:      Hans Verkuil <hverkuil@xs4all.nl>
4916 L:      linux-media@vger.kernel.org
4917 T:      git git://linuxtv.org/media_tree.git
4918 W:      https://linuxtv.org
4919 S:      Odd Fixes
4920 F:      drivers/media/usb/hdpvr/
4921
4922 HWPOISON MEMORY FAILURE HANDLING
4923 M:      Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
4924 L:      linux-mm@kvack.org
4925 S:      Maintained
4926 F:      mm/memory-failure.c
4927 F:      mm/hwpoison-inject.c
4928
4929 HYPERVISOR VIRTUAL CONSOLE DRIVER
4930 L:      linuxppc-dev@lists.ozlabs.org
4931 S:      Odd Fixes
4932 F:      drivers/tty/hvc/
4933
4934 HACKRF MEDIA DRIVER
4935 M:      Antti Palosaari <crope@iki.fi>
4936 L:      linux-media@vger.kernel.org
4937 W:      https://linuxtv.org
4938 W:      http://palosaari.fi/linux/
4939 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4940 T:      git git://linuxtv.org/anttip/media_tree.git
4941 S:      Maintained
4942 F:      drivers/media/usb/hackrf/
4943
4944 HARDWARE MONITORING
4945 M:      Jean Delvare <jdelvare@suse.com>
4946 M:      Guenter Roeck <linux@roeck-us.net>
4947 L:      lm-sensors@lm-sensors.org
4948 W:      http://www.lm-sensors.org/
4949 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/
4950 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
4951 S:      Maintained
4952 F:      Documentation/hwmon/
4953 F:      drivers/hwmon/
4954 F:      include/linux/hwmon*.h
4955
4956 HARDWARE RANDOM NUMBER GENERATOR CORE
4957 M:      Matt Mackall <mpm@selenic.com>
4958 M:      Herbert Xu <herbert@gondor.apana.org.au>
4959 L:      linux-crypto@vger.kernel.org
4960 S:      Odd fixes
4961 F:      Documentation/hw_random.txt
4962 F:      drivers/char/hw_random/
4963 F:      include/linux/hw_random.h
4964
4965 HARDWARE SPINLOCK CORE
4966 M:      Ohad Ben-Cohen <ohad@wizery.com>
4967 S:      Maintained
4968 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/hwspinlock.git
4969 F:      Documentation/hwspinlock.txt
4970 F:      drivers/hwspinlock/hwspinlock_*
4971 F:      include/linux/hwspinlock.h
4972
4973 HARMONY SOUND DRIVER
4974 L:      linux-parisc@vger.kernel.org
4975 S:      Maintained
4976 F:      sound/parisc/harmony.*
4977
4978 HD29L2 MEDIA DRIVER
4979 M:      Antti Palosaari <crope@iki.fi>
4980 L:      linux-media@vger.kernel.org
4981 W:      https://linuxtv.org
4982 W:      http://palosaari.fi/linux/
4983 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4984 T:      git git://linuxtv.org/anttip/media_tree.git
4985 S:      Maintained
4986 F:      drivers/media/dvb-frontends/hd29l2*
4987
4988 HEWLETT-PACKARD SMART2 RAID DRIVER
4989 L:      iss_storagedev@hp.com
4990 S:      Orphan
4991 F:      Documentation/blockdev/cpqarray.txt
4992 F:      drivers/block/cpqarray.*
4993
4994 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
4995 M:      Don Brace <don.brace@pmcs.com>
4996 L:      iss_storagedev@hp.com
4997 L:      storagedev@pmcs.com
4998 L:      linux-scsi@vger.kernel.org
4999 S:      Supported
5000 F:      Documentation/scsi/hpsa.txt
5001 F:      drivers/scsi/hpsa*.[ch]
5002 F:      include/linux/cciss*.h
5003 F:      include/uapi/linux/cciss*.h
5004
5005 HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
5006 M:      Don Brace <don.brace@pmcs.com>
5007 L:      iss_storagedev@hp.com
5008 L:      storagedev@pmcs.com
5009 L:      linux-scsi@vger.kernel.org
5010 S:      Supported
5011 F:      Documentation/blockdev/cciss.txt
5012 F:      drivers/block/cciss*
5013 F:      include/linux/cciss_ioctl.h
5014 F:      include/uapi/linux/cciss_ioctl.h
5015
5016 HFS FILESYSTEM
5017 L:      linux-fsdevel@vger.kernel.org
5018 S:      Orphan
5019 F:      Documentation/filesystems/hfs.txt
5020 F:      fs/hfs/
5021
5022 HFSPLUS FILESYSTEM
5023 L:      linux-fsdevel@vger.kernel.org
5024 S:      Orphan
5025 F:      Documentation/filesystems/hfsplus.txt
5026 F:      fs/hfsplus/
5027
5028 HGA FRAMEBUFFER DRIVER
5029 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
5030 L:      linux-nvidia@lists.surfsouth.com
5031 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
5032 S:      Maintained
5033 F:      drivers/video/fbdev/hgafb.c
5034
5035 HIBERNATION (aka Software Suspend, aka swsusp)
5036 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
5037 M:      Pavel Machek <pavel@ucw.cz>
5038 L:      linux-pm@vger.kernel.org
5039 S:      Supported
5040 F:      arch/x86/power/
5041 F:      drivers/base/power/
5042 F:      kernel/power/
5043 F:      include/linux/suspend.h
5044 F:      include/linux/freezer.h
5045 F:      include/linux/pm.h
5046 F:      arch/*/include/asm/suspend*.h
5047
5048 HID CORE LAYER
5049 M:      Jiri Kosina <jikos@kernel.org>
5050 R:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
5051 L:      linux-input@vger.kernel.org
5052 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
5053 S:      Maintained
5054 F:      drivers/hid/
5055 F:      include/linux/hid*
5056 F:      include/uapi/linux/hid*
5057
5058 HID SENSOR HUB DRIVERS
5059 M:      Jiri Kosina <jikos@kernel.org>
5060 M:      Jonathan Cameron <jic23@kernel.org>
5061 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
5062 L:      linux-input@vger.kernel.org
5063 L:      linux-iio@vger.kernel.org
5064 S:      Maintained
5065 F:      Documentation/hid/hid-sensor*
5066 F:      drivers/hid/hid-sensor-*
5067 F:      drivers/iio/*/hid-*
5068 F:      include/linux/hid-sensor-*
5069
5070 HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
5071 M:      Thomas Gleixner <tglx@linutronix.de>
5072 L:      linux-kernel@vger.kernel.org
5073 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
5074 S:      Maintained
5075 F:      Documentation/timers/
5076 F:      kernel/time/hrtimer.c
5077 F:      kernel/time/clockevents.c
5078 F:      kernel/time/tick*.*
5079 F:      kernel/time/timer_*.c
5080 F:      include/linux/clockchips.h
5081 F:      include/linux/hrtimer.h
5082
5083 HIGH-SPEED SCC DRIVER FOR AX.25
5084 L:      linux-hams@vger.kernel.org
5085 S:      Orphan
5086 F:      drivers/net/hamradio/dmascc.c
5087 F:      drivers/net/hamradio/scc.c
5088
5089 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
5090 M:      HighPoint Linux Team <linux@highpoint-tech.com>
5091 W:      http://www.highpoint-tech.com
5092 S:      Supported
5093 F:      Documentation/scsi/hptiop.txt
5094 F:      drivers/scsi/hptiop.c
5095
5096 HIPPI
5097 M:      Jes Sorensen <jes@trained-monkey.org>
5098 L:      linux-hippi@sunsite.dk
5099 S:      Maintained
5100 F:      include/linux/hippidevice.h
5101 F:      include/uapi/linux/if_hippi.h
5102 F:      net/802/hippi.c
5103 F:      drivers/net/hippi/
5104
5105 HISILICON SAS Controller
5106 M:      John Garry <john.garry@huawei.com>
5107 W:      http://www.hisilicon.com
5108 S:      Supported
5109 F:      drivers/scsi/hisi_sas/
5110 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
5111
5112 HOST AP DRIVER
5113 M:      Jouni Malinen <j@w1.fi>
5114 L:      hostap@shmoo.com (subscribers-only)
5115 L:      linux-wireless@vger.kernel.org
5116 W:      http://hostap.epitest.fi/
5117 S:      Maintained
5118 F:      drivers/net/wireless/intersil/hostap/
5119
5120 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
5121 L:      platform-driver-x86@vger.kernel.org
5122 S:      Orphan
5123 F:      drivers/platform/x86/tc1100-wmi.c
5124
5125 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
5126 M:      Jaroslav Kysela <perex@perex.cz>
5127 S:      Maintained
5128 F:      drivers/net/ethernet/hp/hp100.*
5129
5130 HPET:   High Precision Event Timers driver
5131 M:      Clemens Ladisch <clemens@ladisch.de>
5132 S:      Maintained
5133 F:      Documentation/timers/hpet.txt
5134 F:      drivers/char/hpet.c
5135 F:      include/linux/hpet.h
5136 F:      include/uapi/linux/hpet.h
5137
5138 HPET:   x86
5139 S:      Orphan
5140 F:      arch/x86/kernel/hpet.c
5141 F:      arch/x86/include/asm/hpet.h
5142
5143 HPFS FILESYSTEM
5144 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
5145 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
5146 S:      Maintained
5147 F:      fs/hpfs/
5148
5149 HSI SUBSYSTEM
5150 M:      Sebastian Reichel <sre@kernel.org>
5151 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
5152 S:      Maintained
5153 F:      Documentation/ABI/testing/sysfs-bus-hsi
5154 F:      Documentation/hsi.txt
5155 F:      drivers/hsi/
5156 F:      include/linux/hsi/
5157 F:      include/uapi/linux/hsi/
5158
5159 HSO 3G MODEM DRIVER
5160 M:      Jan Dumon <j.dumon@option.com>
5161 W:      http://www.pharscape.org
5162 S:      Maintained
5163 F:      drivers/net/usb/hso.c
5164
5165 HSR NETWORK PROTOCOL
5166 M:      Arvid Brodin <arvid.brodin@alten.se>
5167 L:      netdev@vger.kernel.org
5168 S:      Maintained
5169 F:      net/hsr/
5170
5171 HTCPEN TOUCHSCREEN DRIVER
5172 M:      Pau Oliva Fora <pof@eslack.org>
5173 L:      linux-input@vger.kernel.org
5174 S:      Maintained
5175 F:      drivers/input/touchscreen/htcpen.c
5176
5177 HUGETLB FILESYSTEM
5178 M:      Nadia Yvette Chambers <nyc@holomorphy.com>
5179 S:      Maintained
5180 F:      fs/hugetlbfs/
5181
5182 Hyper-V CORE AND DRIVERS
5183 M:      "K. Y. Srinivasan" <kys@microsoft.com>
5184 M:      Haiyang Zhang <haiyangz@microsoft.com>
5185 L:      devel@linuxdriverproject.org
5186 S:      Maintained
5187 F:      arch/x86/include/asm/mshyperv.h
5188 F:      arch/x86/include/uapi/asm/hyperv.h
5189 F:      arch/x86/kernel/cpu/mshyperv.c
5190 F:      drivers/hid/hid-hyperv.c
5191 F:      drivers/hv/
5192 F:      drivers/input/serio/hyperv-keyboard.c
5193 F:      drivers/net/hyperv/
5194 F:      drivers/scsi/storvsc_drv.c
5195 F:      drivers/video/fbdev/hyperv_fb.c
5196 F:      include/linux/hyperv.h
5197 F:      tools/hv/
5198 F:      Documentation/ABI/stable/sysfs-bus-vmbus
5199
5200 I2C OVER PARALLEL PORT
5201 M:      Jean Delvare <jdelvare@suse.com>
5202 L:      linux-i2c@vger.kernel.org
5203 S:      Maintained
5204 F:      Documentation/i2c/busses/i2c-parport
5205 F:      Documentation/i2c/busses/i2c-parport-light
5206 F:      drivers/i2c/busses/i2c-parport.c
5207 F:      drivers/i2c/busses/i2c-parport-light.c
5208
5209 I2C/SMBUS CONTROLLER DRIVERS FOR PC
5210 M:      Jean Delvare <jdelvare@suse.com>
5211 L:      linux-i2c@vger.kernel.org
5212 S:      Maintained
5213 F:      Documentation/i2c/busses/i2c-ali1535
5214 F:      Documentation/i2c/busses/i2c-ali1563
5215 F:      Documentation/i2c/busses/i2c-ali15x3
5216 F:      Documentation/i2c/busses/i2c-amd756
5217 F:      Documentation/i2c/busses/i2c-amd8111
5218 F:      Documentation/i2c/busses/i2c-i801
5219 F:      Documentation/i2c/busses/i2c-nforce2
5220 F:      Documentation/i2c/busses/i2c-piix4
5221 F:      Documentation/i2c/busses/i2c-sis5595
5222 F:      Documentation/i2c/busses/i2c-sis630
5223 F:      Documentation/i2c/busses/i2c-sis96x
5224 F:      Documentation/i2c/busses/i2c-via
5225 F:      Documentation/i2c/busses/i2c-viapro
5226 F:      drivers/i2c/busses/i2c-ali1535.c
5227 F:      drivers/i2c/busses/i2c-ali1563.c
5228 F:      drivers/i2c/busses/i2c-ali15x3.c
5229 F:      drivers/i2c/busses/i2c-amd756.c
5230 F:      drivers/i2c/busses/i2c-amd756-s4882.c
5231 F:      drivers/i2c/busses/i2c-amd8111.c
5232 F:      drivers/i2c/busses/i2c-i801.c
5233 F:      drivers/i2c/busses/i2c-isch.c
5234 F:      drivers/i2c/busses/i2c-nforce2.c
5235 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
5236 F:      drivers/i2c/busses/i2c-piix4.c
5237 F:      drivers/i2c/busses/i2c-sis5595.c
5238 F:      drivers/i2c/busses/i2c-sis630.c
5239 F:      drivers/i2c/busses/i2c-sis96x.c
5240 F:      drivers/i2c/busses/i2c-via.c
5241 F:      drivers/i2c/busses/i2c-viapro.c
5242
5243 I2C/SMBUS ISMT DRIVER
5244 M:      Seth Heasley <seth.heasley@intel.com>
5245 M:      Neil Horman <nhorman@tuxdriver.com>
5246 L:      linux-i2c@vger.kernel.org
5247 F:      drivers/i2c/busses/i2c-ismt.c
5248 F:      Documentation/i2c/busses/i2c-ismt
5249
5250 I2C/SMBUS STUB DRIVER
5251 M:      Jean Delvare <jdelvare@suse.com>
5252 L:      linux-i2c@vger.kernel.org
5253 S:      Maintained
5254 F:      drivers/i2c/i2c-stub.c
5255
5256 I2C SUBSYSTEM
5257 M:      Wolfram Sang <wsa@the-dreams.de>
5258 L:      linux-i2c@vger.kernel.org
5259 W:      https://i2c.wiki.kernel.org/
5260 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
5261 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
5262 S:      Maintained
5263 F:      Documentation/devicetree/bindings/i2c/
5264 F:      Documentation/i2c/
5265 F:      drivers/i2c/
5266 F:      drivers/i2c/*/
5267 F:      include/linux/i2c.h
5268 F:      include/linux/i2c-*.h
5269 F:      include/uapi/linux/i2c.h
5270 F:      include/uapi/linux/i2c-*.h
5271
5272 I2C ACPI SUPPORT
5273 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
5274 L:      linux-i2c@vger.kernel.org
5275 L:      linux-acpi@vger.kernel.org
5276 S:      Maintained
5277
5278 I2C-TAOS-EVM DRIVER
5279 M:      Jean Delvare <jdelvare@suse.com>
5280 L:      linux-i2c@vger.kernel.org
5281 S:      Maintained
5282 F:      Documentation/i2c/busses/i2c-taos-evm
5283 F:      drivers/i2c/busses/i2c-taos-evm.c
5284
5285 I2C-TINY-USB DRIVER
5286 M:      Till Harbaum <till@harbaum.org>
5287 L:      linux-i2c@vger.kernel.org
5288 W:      http://www.harbaum.org/till/i2c_tiny_usb
5289 S:      Maintained
5290 F:      drivers/i2c/busses/i2c-tiny-usb.c
5291
5292 i386 BOOT CODE
5293 M:      "H. Peter Anvin" <hpa@zytor.com>
5294 S:      Maintained
5295 F:      arch/x86/boot/
5296
5297 i386 SETUP CODE / CPU ERRATA WORKAROUNDS
5298 M:      "H. Peter Anvin" <hpa@zytor.com>
5299 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
5300 S:      Maintained
5301
5302 IA64 (Itanium) PLATFORM
5303 M:      Tony Luck <tony.luck@intel.com>
5304 M:      Fenghua Yu <fenghua.yu@intel.com>
5305 L:      linux-ia64@vger.kernel.org
5306 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
5307 S:      Maintained
5308 F:      arch/ia64/
5309
5310 IBM Power VMX Cryptographic instructions
5311 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5312 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5313 L:      linux-crypto@vger.kernel.org
5314 S:      Supported
5315 F:      drivers/crypto/vmx/Makefile
5316 F:      drivers/crypto/vmx/Kconfig
5317 F:      drivers/crypto/vmx/vmx.c
5318 F:      drivers/crypto/vmx/aes*
5319 F:      drivers/crypto/vmx/ghash*
5320 F:      drivers/crypto/vmx/ppc-xlate.pl
5321
5322 IBM Power in-Nest Crypto Acceleration
5323 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5324 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5325 L:      linux-crypto@vger.kernel.org
5326 S:      Supported
5327 F:      drivers/crypto/nx/Makefile
5328 F:      drivers/crypto/nx/Kconfig
5329 F:      drivers/crypto/nx/nx-aes*
5330 F:      drivers/crypto/nx/nx-sha*
5331 F:      drivers/crypto/nx/nx.*
5332 F:      drivers/crypto/nx/nx_csbcpb.h
5333 F:      drivers/crypto/nx/nx_debugfs.h
5334
5335 IBM Power 842 compression accelerator
5336 M:      Dan Streetman <ddstreet@ieee.org>
5337 S:      Supported
5338 F:      drivers/crypto/nx/Makefile
5339 F:      drivers/crypto/nx/Kconfig
5340 F:      drivers/crypto/nx/nx-842*
5341 F:      include/linux/sw842.h
5342 F:      crypto/842.c
5343 F:      lib/842/
5344
5345 IBM Power Linux RAID adapter
5346 M:      Brian King <brking@us.ibm.com>
5347 S:      Supported
5348 F:      drivers/scsi/ipr.*
5349
5350 IBM Power Virtual Ethernet Device Driver
5351 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
5352 L:      netdev@vger.kernel.org
5353 S:      Supported
5354 F:      drivers/net/ethernet/ibm/ibmveth.*
5355
5356 IBM Power SRIOV Virtual NIC Device Driver
5357 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
5358 M:      John Allen <jallen@linux.vnet.ibm.com>
5359 L:      netdev@vger.kernel.org
5360 S:      Supported
5361 F:      drivers/net/ethernet/ibm/ibmvnic.*
5362
5363 IBM Power Virtual SCSI Device Drivers
5364 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5365 L:      linux-scsi@vger.kernel.org
5366 S:      Supported
5367 F:      drivers/scsi/ibmvscsi/ibmvscsi*
5368 F:      drivers/scsi/ibmvscsi/viosrp.h
5369
5370 IBM Power Virtual FC Device Drivers
5371 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5372 L:      linux-scsi@vger.kernel.org
5373 S:      Supported
5374 F:      drivers/scsi/ibmvscsi/ibmvfc*
5375
5376 IBM ServeRAID RAID DRIVER
5377 S:      Orphan
5378 F:      drivers/scsi/ips.*
5379
5380 ICH LPC AND GPIO DRIVER
5381 M:      Peter Tyser <ptyser@xes-inc.com>
5382 S:      Maintained
5383 F:      drivers/mfd/lpc_ich.c
5384 F:      drivers/gpio/gpio-ich.c
5385
5386 IDE SUBSYSTEM
5387 M:      "David S. Miller" <davem@davemloft.net>
5388 L:      linux-ide@vger.kernel.org
5389 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
5390 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
5391 S:      Maintained
5392 F:      Documentation/ide/
5393 F:      drivers/ide/
5394 F:      include/linux/ide.h
5395
5396 IDEAPAD LAPTOP EXTRAS DRIVER
5397 M:      Ike Panhc <ike.pan@canonical.com>
5398 L:      platform-driver-x86@vger.kernel.org
5399 W:      http://launchpad.net/ideapad-laptop
5400 S:      Maintained
5401 F:      drivers/platform/x86/ideapad-laptop.c
5402
5403 IDEAPAD LAPTOP SLIDEBAR DRIVER
5404 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
5405 L:      linux-input@vger.kernel.org
5406 W:      https://github.com/o2genum/ideapad-slidebar
5407 S:      Maintained
5408 F:      drivers/input/misc/ideapad_slidebar.c
5409
5410 IDE/ATAPI DRIVERS
5411 M:      Borislav Petkov <bp@alien8.de>
5412 L:      linux-ide@vger.kernel.org
5413 S:      Maintained
5414 F:      Documentation/cdrom/ide-cd
5415 F:      drivers/ide/ide-cd*
5416
5417 IDLE-I7300
5418 M:      Andy Henroid <andrew.d.henroid@intel.com>
5419 L:      linux-pm@vger.kernel.org
5420 S:      Supported
5421 F:      drivers/idle/i7300_idle.c
5422
5423 IEEE 802.15.4 SUBSYSTEM
5424 M:      Alexander Aring <alex.aring@gmail.com>
5425 L:      linux-wpan@vger.kernel.org
5426 W:      https://github.com/linux-wpan
5427 T:      git git://github.com/linux-wpan/linux-wpan-next.git
5428 S:      Maintained
5429 F:      net/ieee802154/
5430 F:      net/mac802154/
5431 F:      drivers/net/ieee802154/
5432 F:      include/linux/nl802154.h
5433 F:      include/linux/ieee802154.h
5434 F:      include/net/nl802154.h
5435 F:      include/net/mac802154.h
5436 F:      include/net/af_ieee802154.h
5437 F:      include/net/cfg802154.h
5438 F:      include/net/ieee802154_netdev.h
5439 F:      Documentation/networking/ieee802154.txt
5440
5441 IGORPLUG-USB IR RECEIVER
5442 M:      Sean Young <sean@mess.org>
5443 L:      linux-media@vger.kernel.org
5444 S:      Maintained
5445 F:      drivers/media/rc/igorplugusb.c
5446
5447 IGUANAWORKS USB IR TRANSCEIVER
5448 M:      Sean Young <sean@mess.org>
5449 L:      linux-media@vger.kernel.org
5450 S:      Maintained
5451 F:      drivers/media/rc/iguanair.c
5452
5453 IIO SUBSYSTEM AND DRIVERS
5454 M:      Jonathan Cameron <jic23@kernel.org>
5455 R:      Hartmut Knaack <knaack.h@gmx.de>
5456 R:      Lars-Peter Clausen <lars@metafoo.de>
5457 R:      Peter Meerwald <pmeerw@pmeerw.net>
5458 L:      linux-iio@vger.kernel.org
5459 S:      Maintained
5460 F:      drivers/iio/
5461 F:      drivers/staging/iio/
5462 F:      include/linux/iio/
5463 F:      tools/iio/
5464
5465 IKANOS/ADI EAGLE ADSL USB DRIVER
5466 M:      Matthieu Castet <castet.matthieu@free.fr>
5467 M:      Stanislaw Gruszka <stf_xl@wp.pl>
5468 S:      Maintained
5469 F:      drivers/usb/atm/ueagle-atm.c
5470
5471 INA209 HARDWARE MONITOR DRIVER
5472 M:      Guenter Roeck <linux@roeck-us.net>
5473 L:      lm-sensors@lm-sensors.org
5474 S:      Maintained
5475 F:      Documentation/hwmon/ina209
5476 F:      Documentation/devicetree/bindings/i2c/ina209.txt
5477 F:      drivers/hwmon/ina209.c
5478
5479 INA2XX HARDWARE MONITOR DRIVER
5480 M:      Guenter Roeck <linux@roeck-us.net>
5481 L:      lm-sensors@lm-sensors.org
5482 S:      Maintained
5483 F:      Documentation/hwmon/ina2xx
5484 F:      drivers/hwmon/ina2xx.c
5485 F:      include/linux/platform_data/ina2xx.h
5486
5487 INDUSTRY PACK SUBSYSTEM (IPACK)
5488 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
5489 M:      Jens Taprogge <jens.taprogge@taprogge.org>
5490 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5491 L:      industrypack-devel@lists.sourceforge.net
5492 W:      http://industrypack.sourceforge.net
5493 S:      Maintained
5494 F:      drivers/ipack/
5495
5496 INGENIC JZ4780 DMA Driver
5497 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
5498 S:      Maintained
5499 F:      drivers/dma/dma-jz4780.c
5500
5501 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
5502 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
5503 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
5504 L:      linux-ima-devel@lists.sourceforge.net
5505 L:      linux-ima-user@lists.sourceforge.net
5506 L:      linux-security-module@vger.kernel.org
5507 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
5508 S:      Supported
5509 F:      security/integrity/ima/
5510
5511 IMGTEC IR DECODER DRIVER
5512 M:      James Hogan <james.hogan@imgtec.com>
5513 S:      Maintained
5514 F:      drivers/media/rc/img-ir/
5515
5516 IMS TWINTURBO FRAMEBUFFER DRIVER
5517 L:      linux-fbdev@vger.kernel.org
5518 S:      Orphan
5519 F:      drivers/video/fbdev/imsttfb.c
5520
5521 INFINIBAND SUBSYSTEM
5522 M:      Doug Ledford <dledford@redhat.com>
5523 M:      Sean Hefty <sean.hefty@intel.com>
5524 M:      Hal Rosenstock <hal.rosenstock@gmail.com>
5525 L:      linux-rdma@vger.kernel.org
5526 W:      http://www.openfabrics.org/
5527 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5528 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git
5529 S:      Supported
5530 F:      Documentation/infiniband/
5531 F:      drivers/infiniband/
5532 F:      drivers/staging/rdma/
5533 F:      include/uapi/linux/if_infiniband.h
5534 F:      include/uapi/rdma/
5535 F:      include/rdma/
5536
5537 INOTIFY
5538 M:      John McCutchan <john@johnmccutchan.com>
5539 M:      Robert Love <rlove@rlove.org>
5540 M:      Eric Paris <eparis@parisplace.org>
5541 S:      Maintained
5542 F:      Documentation/filesystems/inotify.txt
5543 F:      fs/notify/inotify/
5544 F:      include/linux/inotify.h
5545 F:      include/uapi/linux/inotify.h
5546
5547 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
5548 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
5549 L:      linux-input@vger.kernel.org
5550 Q:      http://patchwork.kernel.org/project/linux-input/list/
5551 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
5552 S:      Maintained
5553 F:      drivers/input/
5554 F:      include/linux/input.h
5555 F:      include/uapi/linux/input.h
5556 F:      include/linux/input/
5557
5558 INPUT MULTITOUCH (MT) PROTOCOL
5559 M:      Henrik Rydberg <rydberg@bitmath.org>
5560 L:      linux-input@vger.kernel.org
5561 S:      Odd fixes
5562 F:      Documentation/input/multi-touch-protocol.txt
5563 F:      drivers/input/input-mt.c
5564 K:      \b(ABS|SYN)_MT_
5565
5566 INTEL ASoC BDW/HSW DRIVERS
5567 M:      Jie Yang <yang.jie@linux.intel.com>
5568 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5569 S:      Supported
5570 F:      sound/soc/intel/common/sst-dsp*
5571 F:      sound/soc/intel/common/sst-firmware.c
5572 F:      sound/soc/intel/boards/broadwell.c
5573 F:      sound/soc/intel/haswell/
5574
5575 INTEL C600 SERIES SAS CONTROLLER DRIVER
5576 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
5577 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
5578 L:      linux-scsi@vger.kernel.org
5579 T:      git git://git.code.sf.net/p/intel-sas/isci
5580 S:      Supported
5581 F:      drivers/scsi/isci/
5582
5583 INTEL HID EVENT DRIVER
5584 M:      Alex Hung <alex.hung@canonical.com>
5585 L:      platform-driver-x86@vger.kernel.org
5586 S:      Maintained
5587 F:      drivers/platform/x86/intel-hid.c
5588
5589 INTEL IDLE DRIVER
5590 M:      Len Brown <lenb@kernel.org>
5591 L:      linux-pm@vger.kernel.org
5592 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
5593 S:      Supported
5594 F:      drivers/idle/intel_idle.c
5595
5596 INTEL PSTATE DRIVER
5597 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
5598 M:      Len Brown <lenb@kernel.org>
5599 L:      linux-pm@vger.kernel.org
5600 S:      Supported
5601 F:      drivers/cpufreq/intel_pstate.c
5602
5603 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
5604 M:      Maik Broemme <mbroemme@plusserver.de>
5605 L:      linux-fbdev@vger.kernel.org
5606 S:      Maintained
5607 F:      Documentation/fb/intelfb.txt
5608 F:      drivers/video/fbdev/intelfb/
5609
5610 INTEL 810/815 FRAMEBUFFER DRIVER
5611 M:      Antonino Daplas <adaplas@gmail.com>
5612 L:      linux-fbdev@vger.kernel.org
5613 S:      Maintained
5614 F:      drivers/video/fbdev/i810/
5615
5616 INTEL MENLOW THERMAL DRIVER
5617 M:      Sujith Thomas <sujith.thomas@intel.com>
5618 L:      platform-driver-x86@vger.kernel.org
5619 W:      https://01.org/linux-acpi
5620 S:      Supported
5621 F:      drivers/platform/x86/intel_menlow.c
5622
5623 INTEL I/OAT DMA DRIVER
5624 M:      Dave Jiang <dave.jiang@intel.com>
5625 R:      Dan Williams <dan.j.williams@intel.com>
5626 L:      dmaengine@vger.kernel.org
5627 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5628 S:      Supported
5629 F:      drivers/dma/ioat*
5630
5631 INTEL IOMMU (VT-d)
5632 M:      David Woodhouse <dwmw2@infradead.org>
5633 L:      iommu@lists.linux-foundation.org
5634 T:      git git://git.infradead.org/iommu-2.6.git
5635 S:      Supported
5636 F:      drivers/iommu/intel-iommu.c
5637 F:      include/linux/intel-iommu.h
5638
5639 INTEL IOP-ADMA DMA DRIVER
5640 R:      Dan Williams <dan.j.williams@intel.com>
5641 S:      Odd fixes
5642 F:      drivers/dma/iop-adma.c
5643
5644 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
5645 M:      Krzysztof Halasa <khalasa@piap.pl>
5646 S:      Maintained
5647 F:      arch/arm/mach-ixp4xx/include/mach/qmgr.h
5648 F:      arch/arm/mach-ixp4xx/include/mach/npe.h
5649 F:      arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
5650 F:      arch/arm/mach-ixp4xx/ixp4xx_npe.c
5651 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
5652 F:      drivers/net/wan/ixp4xx_hss.c
5653
5654 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
5655 M:      Deepak Saxena <dsaxena@plexity.net>
5656 S:      Maintained
5657 F:      drivers/char/hw_random/ixp4xx-rng.c
5658
5659 INTEL ETHERNET DRIVERS
5660 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
5661 R:      Jesse Brandeburg <jesse.brandeburg@intel.com>
5662 R:      Shannon Nelson <shannon.nelson@intel.com>
5663 R:      Carolyn Wyborny <carolyn.wyborny@intel.com>
5664 R:      Don Skidmore <donald.c.skidmore@intel.com>
5665 R:      Bruce Allan <bruce.w.allan@intel.com>
5666 R:      John Ronciak <john.ronciak@intel.com>
5667 R:      Mitch Williams <mitch.a.williams@intel.com>
5668 L:      intel-wired-lan@lists.osuosl.org
5669 W:      http://www.intel.com/support/feedback.htm
5670 W:      http://e1000.sourceforge.net/
5671 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
5672 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
5673 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
5674 S:      Supported
5675 F:      Documentation/networking/e100.txt
5676 F:      Documentation/networking/e1000.txt
5677 F:      Documentation/networking/e1000e.txt
5678 F:      Documentation/networking/igb.txt
5679 F:      Documentation/networking/igbvf.txt
5680 F:      Documentation/networking/ixgb.txt
5681 F:      Documentation/networking/ixgbe.txt
5682 F:      Documentation/networking/ixgbevf.txt
5683 F:      Documentation/networking/i40e.txt
5684 F:      Documentation/networking/i40evf.txt
5685 F:      drivers/net/ethernet/intel/
5686 F:      drivers/net/ethernet/intel/*/
5687
5688 INTEL-MID GPIO DRIVER
5689 M:      David Cohen <david.a.cohen@linux.intel.com>
5690 L:      linux-gpio@vger.kernel.org
5691 S:      Maintained
5692 F:      drivers/gpio/gpio-intel-mid.c
5693
5694 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
5695 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
5696 L:      linux-wireless@vger.kernel.org
5697 S:      Maintained
5698 F:      Documentation/networking/README.ipw2100
5699 F:      Documentation/networking/README.ipw2200
5700 F:      drivers/net/wireless/intel/ipw2x00/
5701
5702 INTEL(R) TRACE HUB
5703 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
5704 S:      Supported
5705 F:      Documentation/trace/intel_th.txt
5706 F:      drivers/hwtracing/intel_th/
5707
5708 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
5709 M:      Ning Sun <ning.sun@intel.com>
5710 L:      tboot-devel@lists.sourceforge.net
5711 W:      http://tboot.sourceforge.net
5712 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
5713 S:      Supported
5714 F:      Documentation/intel_txt.txt
5715 F:      include/linux/tboot.h
5716 F:      arch/x86/kernel/tboot.c
5717
5718 INTEL WIRELESS WIMAX CONNECTION 2400
5719 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
5720 M:      linux-wimax@intel.com
5721 L:      wimax@linuxwimax.org (subscribers-only)
5722 S:      Supported
5723 W:      http://linuxwimax.org
5724 F:      Documentation/wimax/README.i2400m
5725 F:      drivers/net/wimax/i2400m/
5726 F:      include/uapi/linux/wimax/i2400m.h
5727
5728 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
5729 M:      Stanislaw Gruszka <sgruszka@redhat.com>
5730 L:      linux-wireless@vger.kernel.org
5731 S:      Supported
5732 F:      drivers/net/wireless/intel/iwlegacy/
5733
5734 INTEL WIRELESS WIFI LINK (iwlwifi)
5735 M:      Johannes Berg <johannes.berg@intel.com>
5736 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
5737 M:      Intel Linux Wireless <linuxwifi@intel.com>
5738 L:      linux-wireless@vger.kernel.org
5739 W:      http://intellinuxwireless.org
5740 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
5741 S:      Supported
5742 F:      drivers/net/wireless/intel/iwlwifi/
5743
5744 INTEL MANAGEMENT ENGINE (mei)
5745 M:      Tomas Winkler <tomas.winkler@intel.com>
5746 L:      linux-kernel@vger.kernel.org
5747 S:      Supported
5748 F:      include/uapi/linux/mei.h
5749 F:      include/linux/mei_cl_bus.h
5750 F:      drivers/misc/mei/*
5751 F:      Documentation/misc-devices/mei/*
5752
5753 INTEL MIC DRIVERS (mic)
5754 M:      Sudeep Dutt <sudeep.dutt@intel.com>
5755 M:      Ashutosh Dixit <ashutosh.dixit@intel.com>
5756 S:      Supported
5757 W:      https://github.com/sudeepdutt/mic
5758 W:      http://software.intel.com/en-us/mic-developer
5759 F:      include/linux/mic_bus.h
5760 F:      include/linux/scif.h
5761 F:      include/uapi/linux/mic_common.h
5762 F:      include/uapi/linux/mic_ioctl.h
5763 F:      include/uapi/linux/scif_ioctl.h
5764 F:      drivers/misc/mic/
5765 F:      drivers/dma/mic_x100_dma.c
5766 F:      drivers/dma/mic_x100_dma.h
5767 F:      Documentation/mic/
5768
5769 INTEL PMC/P-Unit IPC DRIVER
5770 M:      Zha Qipeng<qipeng.zha@intel.com>
5771 L:      platform-driver-x86@vger.kernel.org
5772 S:      Maintained
5773 F:      drivers/platform/x86/intel_pmc_ipc.c
5774 F:      drivers/platform/x86/intel_punit_ipc.c
5775 F:      arch/x86/include/asm/intel_pmc_ipc.h
5776 F:      arch/x86/include/asm/intel_punit_ipc.h
5777
5778 INTEL TELEMETRY DRIVER
5779 M:      Souvik Kumar Chakravarty <souvik.k.chakravarty@intel.com>
5780 L:      platform-driver-x86@vger.kernel.org
5781 S:      Maintained
5782 F:      arch/x86/include/asm/intel_telemetry.h
5783 F:      drivers/platform/x86/intel_telemetry*
5784
5785 IOC3 ETHERNET DRIVER
5786 M:      Ralf Baechle <ralf@linux-mips.org>
5787 L:      linux-mips@linux-mips.org
5788 S:      Maintained
5789 F:      drivers/net/ethernet/sgi/ioc3-eth.c
5790
5791 IOC3 SERIAL DRIVER
5792 M:      Pat Gefre <pfg@sgi.com>
5793 L:      linux-serial@vger.kernel.org
5794 S:      Maintained
5795 F:      drivers/tty/serial/ioc3_serial.c
5796
5797 IOMMU DRIVERS
5798 M:      Joerg Roedel <joro@8bytes.org>
5799 L:      iommu@lists.linux-foundation.org
5800 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
5801 S:      Maintained
5802 F:      drivers/iommu/
5803
5804 IP MASQUERADING
5805 M:      Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
5806 S:      Maintained
5807 F:      net/ipv4/netfilter/ipt_MASQUERADE.c
5808
5809 IPMI SUBSYSTEM
5810 M:      Corey Minyard <minyard@acm.org>
5811 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
5812 W:      http://openipmi.sourceforge.net/
5813 S:      Supported
5814 F:      Documentation/IPMI.txt
5815 F:      drivers/char/ipmi/
5816 F:      include/linux/ipmi*
5817 F:      include/uapi/linux/ipmi*
5818
5819 QCOM AUDIO (ASoC) DRIVERS
5820 M:      Patrick Lai <plai@codeaurora.org>
5821 M:      Banajit Goswami <bgoswami@codeaurora.org>
5822 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5823 S:      Supported
5824 F:      sound/soc/qcom/
5825
5826 IPS SCSI RAID DRIVER
5827 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
5828 L:      linux-scsi@vger.kernel.org
5829 W:      http://www.adaptec.com/
5830 S:      Maintained
5831 F:      drivers/scsi/ips*
5832
5833 IPVS
5834 M:      Wensong Zhang <wensong@linux-vs.org>
5835 M:      Simon Horman <horms@verge.net.au>
5836 M:      Julian Anastasov <ja@ssi.bg>
5837 L:      netdev@vger.kernel.org
5838 L:      lvs-devel@vger.kernel.org
5839 S:      Maintained
5840 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
5841 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
5842 F:      Documentation/networking/ipvs-sysctl.txt
5843 F:      include/net/ip_vs.h
5844 F:      include/uapi/linux/ip_vs.h
5845 F:      net/netfilter/ipvs/
5846
5847 IPWIRELESS DRIVER
5848 M:      Jiri Kosina <jikos@kernel.org>
5849 M:      David Sterba <dsterba@suse.com>
5850 S:      Odd Fixes
5851 F:      drivers/tty/ipwireless/
5852
5853 IPX NETWORK LAYER
5854 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
5855 L:      netdev@vger.kernel.org
5856 S:      Maintained
5857 F:      include/net/ipx.h
5858 F:      include/uapi/linux/ipx.h
5859 F:      net/ipx/
5860
5861 IRDA SUBSYSTEM
5862 M:      Samuel Ortiz <samuel@sortiz.org>
5863 L:      irda-users@lists.sourceforge.net (subscribers-only)
5864 L:      netdev@vger.kernel.org
5865 W:      http://irda.sourceforge.net/
5866 S:      Maintained
5867 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
5868 F:      Documentation/networking/irda.txt
5869 F:      drivers/net/irda/
5870 F:      include/net/irda/
5871 F:      net/irda/
5872
5873 IRQ SUBSYSTEM
5874 M:      Thomas Gleixner <tglx@linutronix.de>
5875 L:      linux-kernel@vger.kernel.org
5876 S:      Maintained
5877 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5878 F:      kernel/irq/
5879
5880 IRQCHIP DRIVERS
5881 M:      Thomas Gleixner <tglx@linutronix.de>
5882 M:      Jason Cooper <jason@lakedaemon.net>
5883 M:      Marc Zyngier <marc.zyngier@arm.com>
5884 L:      linux-kernel@vger.kernel.org
5885 S:      Maintained
5886 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5887 T:      git git://git.infradead.org/users/jcooper/linux.git irqchip/core
5888 F:      Documentation/devicetree/bindings/interrupt-controller/
5889 F:      drivers/irqchip/
5890
5891 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
5892 M:      Jiang Liu <jiang.liu@linux.intel.com>
5893 M:      Marc Zyngier <marc.zyngier@arm.com>
5894 S:      Maintained
5895 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5896 F:      Documentation/IRQ-domain.txt
5897 F:      include/linux/irqdomain.h
5898 F:      kernel/irq/irqdomain.c
5899 F:      kernel/irq/msi.c
5900
5901 ISAPNP
5902 M:      Jaroslav Kysela <perex@perex.cz>
5903 S:      Maintained
5904 F:      Documentation/isapnp.txt
5905 F:      drivers/pnp/isapnp/
5906 F:      include/linux/isapnp.h
5907
5908 ISA RADIO MODULE
5909 M:      Hans Verkuil <hverkuil@xs4all.nl>
5910 L:      linux-media@vger.kernel.org
5911 T:      git git://linuxtv.org/media_tree.git
5912 W:      https://linuxtv.org
5913 S:      Maintained
5914 F:      drivers/media/radio/radio-isa*
5915
5916 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
5917 M:      Peter Jones <pjones@redhat.com>
5918 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
5919 S:      Maintained
5920 F:      drivers/firmware/iscsi_ibft*
5921
5922 ISCSI
5923 M:      Mike Christie <michaelc@cs.wisc.edu>
5924 L:      open-iscsi@googlegroups.com
5925 W:      www.open-iscsi.org
5926 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
5927 S:      Maintained
5928 F:      drivers/scsi/*iscsi*
5929 F:      include/scsi/*iscsi*
5930
5931 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
5932 M:      Or Gerlitz <ogerlitz@mellanox.com>
5933 M:      Sagi Grimberg <sagig@mellanox.com>
5934 M:      Roi Dayan <roid@mellanox.com>
5935 L:      linux-rdma@vger.kernel.org
5936 S:      Supported
5937 W:      http://www.openfabrics.org
5938 W:      www.open-iscsi.org
5939 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5940 F:      drivers/infiniband/ulp/iser/
5941
5942 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
5943 M:      Sagi Grimberg <sagig@mellanox.com>
5944 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
5945 L:      linux-rdma@vger.kernel.org
5946 L:      target-devel@vger.kernel.org
5947 S:      Supported
5948 W:      http://www.linux-iscsi.org
5949 F:      drivers/infiniband/ulp/isert
5950
5951 ISDN SUBSYSTEM
5952 M:      Karsten Keil <isdn@linux-pingi.de>
5953 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5954 L:      netdev@vger.kernel.org
5955 W:      http://www.isdn4linux.de
5956 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
5957 S:      Maintained
5958 F:      Documentation/isdn/
5959 F:      drivers/isdn/
5960 F:      include/linux/isdn.h
5961 F:      include/linux/isdn/
5962 F:      include/uapi/linux/isdn.h
5963 F:      include/uapi/linux/isdn/
5964
5965 ISDN SUBSYSTEM (Eicon active card driver)
5966 M:      Armin Schindler <mac@melware.de>
5967 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5968 W:      http://www.melware.de
5969 S:      Maintained
5970 F:      drivers/isdn/hardware/eicon/
5971
5972 IT87 HARDWARE MONITORING DRIVER
5973 M:      Jean Delvare <jdelvare@suse.com>
5974 L:      lm-sensors@lm-sensors.org
5975 S:      Maintained
5976 F:      Documentation/hwmon/it87
5977 F:      drivers/hwmon/it87.c
5978
5979 IT913X MEDIA DRIVER
5980 M:      Antti Palosaari <crope@iki.fi>
5981 L:      linux-media@vger.kernel.org
5982 W:      https://linuxtv.org
5983 W:      http://palosaari.fi/linux/
5984 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5985 T:      git git://linuxtv.org/anttip/media_tree.git
5986 S:      Maintained
5987 F:      drivers/media/tuners/it913x*
5988
5989 IVTV VIDEO4LINUX DRIVER
5990 M:      Andy Walls <awalls@md.metrocast.net>
5991 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
5992 L:      linux-media@vger.kernel.org
5993 T:      git git://linuxtv.org/media_tree.git
5994 W:      http://www.ivtvdriver.org
5995 S:      Maintained
5996 F:      Documentation/video4linux/*.ivtv
5997 F:      drivers/media/pci/ivtv/
5998 F:      include/uapi/linux/ivtv*
5999
6000 IX2505V MEDIA DRIVER
6001 M:      Malcolm Priestley <tvboxspy@gmail.com>
6002 L:      linux-media@vger.kernel.org
6003 W:      https://linuxtv.org
6004 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6005 S:      Maintained
6006 F:      drivers/media/dvb-frontends/ix2505v*
6007
6008 JC42.4 TEMPERATURE SENSOR DRIVER
6009 M:      Guenter Roeck <linux@roeck-us.net>
6010 L:      lm-sensors@lm-sensors.org
6011 S:      Maintained
6012 F:      drivers/hwmon/jc42.c
6013 F:      Documentation/hwmon/jc42
6014
6015 JFS FILESYSTEM
6016 M:      Dave Kleikamp <shaggy@kernel.org>
6017 L:      jfs-discussion@lists.sourceforge.net
6018 W:      http://jfs.sourceforge.net/
6019 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
6020 S:      Maintained
6021 F:      Documentation/filesystems/jfs.txt
6022 F:      fs/jfs/
6023
6024 JME NETWORK DRIVER
6025 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
6026 L:      netdev@vger.kernel.org
6027 S:      Maintained
6028 F:      drivers/net/ethernet/jme.*
6029
6030 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
6031 M:      David Woodhouse <dwmw2@infradead.org>
6032 L:      linux-mtd@lists.infradead.org
6033 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
6034 S:      Maintained
6035 F:      fs/jffs2/
6036 F:      include/uapi/linux/jffs2.h
6037
6038 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
6039 M:      "Theodore Ts'o" <tytso@mit.edu>
6040 M:      Jan Kara <jack@suse.com>
6041 L:      linux-ext4@vger.kernel.org
6042 S:      Maintained
6043 F:      fs/jbd2/
6044 F:      include/linux/jbd2.h
6045
6046 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
6047 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
6048 L:      linux-media@vger.kernel.org
6049 S:      Maintained
6050 F:      drivers/media/platform/rcar_jpu.c
6051
6052 JSM Neo PCI based serial card
6053 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
6054 L:      linux-serial@vger.kernel.org
6055 S:      Maintained
6056 F:      drivers/tty/serial/jsm/
6057
6058 K10TEMP HARDWARE MONITORING DRIVER
6059 M:      Clemens Ladisch <clemens@ladisch.de>
6060 L:      lm-sensors@lm-sensors.org
6061 S:      Maintained
6062 F:      Documentation/hwmon/k10temp
6063 F:      drivers/hwmon/k10temp.c
6064
6065 K8TEMP HARDWARE MONITORING DRIVER
6066 M:      Rudolf Marek <r.marek@assembler.cz>
6067 L:      lm-sensors@lm-sensors.org
6068 S:      Maintained
6069 F:      Documentation/hwmon/k8temp
6070 F:      drivers/hwmon/k8temp.c
6071
6072 KCONFIG
6073 M:      "Yann E. MORIN" <yann.morin.1998@free.fr>
6074 L:      linux-kbuild@vger.kernel.org
6075 T:      git git://gitorious.org/linux-kconfig/linux-kconfig
6076 S:      Maintained
6077 F:      Documentation/kbuild/kconfig-language.txt
6078 F:      scripts/kconfig/
6079
6080 KDUMP
6081 M:      Vivek Goyal <vgoyal@redhat.com>
6082 M:      Haren Myneni <hbabu@us.ibm.com>
6083 L:      kexec@lists.infradead.org
6084 W:      http://lse.sourceforge.net/kdump/
6085 S:      Maintained
6086 F:      Documentation/kdump/
6087
6088 KEENE FM RADIO TRANSMITTER DRIVER
6089 M:      Hans Verkuil <hverkuil@xs4all.nl>
6090 L:      linux-media@vger.kernel.org
6091 T:      git git://linuxtv.org/media_tree.git
6092 W:      https://linuxtv.org
6093 S:      Maintained
6094 F:      drivers/media/radio/radio-keene*
6095
6096 KERNEL AUTOMOUNTER v4 (AUTOFS4)
6097 M:      Ian Kent <raven@themaw.net>
6098 L:      autofs@vger.kernel.org
6099 S:      Maintained
6100 F:      fs/autofs4/
6101
6102 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
6103 M:      Michal Marek <mmarek@suse.com>
6104 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
6105 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
6106 L:      linux-kbuild@vger.kernel.org
6107 S:      Maintained
6108 F:      Documentation/kbuild/
6109 F:      Makefile
6110 F:      scripts/Makefile.*
6111 F:      scripts/basic/
6112 F:      scripts/mk*
6113 F:      scripts/package/
6114
6115 KERNEL JANITORS
6116 L:      kernel-janitors@vger.kernel.org
6117 W:      http://kernelnewbies.org/KernelJanitors
6118 S:      Odd Fixes
6119
6120 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
6121 M:      "J. Bruce Fields" <bfields@fieldses.org>
6122 M:      Jeff Layton <jlayton@poochiereds.net>
6123 L:      linux-nfs@vger.kernel.org
6124 W:      http://nfs.sourceforge.net/
6125 T:      git git://linux-nfs.org/~bfields/linux.git
6126 S:      Supported
6127 F:      fs/nfsd/
6128 F:      include/uapi/linux/nfsd/
6129 F:      fs/lockd/
6130 F:      fs/nfs_common/
6131 F:      net/sunrpc/
6132 F:      include/linux/lockd/
6133 F:      include/linux/sunrpc/
6134 F:      include/uapi/linux/sunrpc/
6135
6136 KERNEL SELFTEST FRAMEWORK
6137 M:      Shuah Khan <shuahkh@osg.samsung.com>
6138 L:      linux-api@vger.kernel.org
6139 T:      git git://git.kernel.org/pub/scm/shuah/linux-kselftest
6140 S:      Maintained
6141 F:      tools/testing/selftests
6142
6143 KERNEL VIRTUAL MACHINE (KVM)
6144 M:      Gleb Natapov <gleb@kernel.org>
6145 M:      Paolo Bonzini <pbonzini@redhat.com>
6146 L:      kvm@vger.kernel.org
6147 W:      http://www.linux-kvm.org
6148 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
6149 S:      Supported
6150 F:      Documentation/*/kvm*.txt
6151 F:      Documentation/virtual/kvm/
6152 F:      arch/*/kvm/
6153 F:      arch/x86/kernel/kvm.c
6154 F:      arch/x86/kernel/kvmclock.c
6155 F:      arch/*/include/asm/kvm*
6156 F:      include/linux/kvm*
6157 F:      include/uapi/linux/kvm*
6158 F:      virt/kvm/
6159
6160 KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
6161 M:      Joerg Roedel <joro@8bytes.org>
6162 L:      kvm@vger.kernel.org
6163 W:      http://www.linux-kvm.org/
6164 S:      Maintained
6165 F:      arch/x86/include/asm/svm.h
6166 F:      arch/x86/kvm/svm.c
6167
6168 KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
6169 M:      Alexander Graf <agraf@suse.com>
6170 L:      kvm-ppc@vger.kernel.org
6171 W:      http://www.linux-kvm.org/
6172 T:      git git://github.com/agraf/linux-2.6.git
6173 S:      Supported
6174 F:      arch/powerpc/include/asm/kvm*
6175 F:      arch/powerpc/kvm/
6176
6177 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
6178 M:      Christian Borntraeger <borntraeger@de.ibm.com>
6179 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
6180 L:      linux-s390@vger.kernel.org
6181 W:      http://www.ibm.com/developerworks/linux/linux390/
6182 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
6183 S:      Supported
6184 F:      Documentation/s390/kvm.txt
6185 F:      arch/s390/include/asm/kvm*
6186 F:      arch/s390/kvm/
6187
6188 KERNEL VIRTUAL MACHINE (KVM) FOR ARM
6189 M:      Christoffer Dall <christoffer.dall@linaro.org>
6190 M:      Marc Zyngier <marc.zyngier@arm.com>
6191 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6192 L:      kvmarm@lists.cs.columbia.edu
6193 W:      http://systems.cs.columbia.edu/projects/kvm-arm
6194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
6195 S:      Supported
6196 F:      arch/arm/include/uapi/asm/kvm*
6197 F:      arch/arm/include/asm/kvm*
6198 F:      arch/arm/kvm/
6199 F:      virt/kvm/arm/
6200 F:      include/kvm/arm_*
6201
6202 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
6203 M:      Christoffer Dall <christoffer.dall@linaro.org>
6204 M:      Marc Zyngier <marc.zyngier@arm.com>
6205 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6206 L:      kvmarm@lists.cs.columbia.edu
6207 S:      Maintained
6208 F:      arch/arm64/include/uapi/asm/kvm*
6209 F:      arch/arm64/include/asm/kvm*
6210 F:      arch/arm64/kvm/
6211
6212 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
6213 M:      James Hogan <james.hogan@imgtec.com>
6214 L:      linux-mips@linux-mips.org
6215 S:      Supported
6216 F:      arch/mips/include/uapi/asm/kvm*
6217 F:      arch/mips/include/asm/kvm*
6218 F:      arch/mips/kvm/
6219
6220 KEXEC
6221 M:      Eric Biederman <ebiederm@xmission.com>
6222 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
6223 L:      kexec@lists.infradead.org
6224 S:      Maintained
6225 F:      include/linux/kexec.h
6226 F:      include/uapi/linux/kexec.h
6227 F:      kernel/kexec.c
6228
6229 KEYS/KEYRINGS:
6230 M:      David Howells <dhowells@redhat.com>
6231 L:      keyrings@vger.kernel.org
6232 S:      Maintained
6233 F:      Documentation/security/keys.txt
6234 F:      include/linux/key.h
6235 F:      include/linux/key-type.h
6236 F:      include/keys/
6237 F:      security/keys/
6238
6239 KEYS-TRUSTED
6240 M:      David Safford <safford@us.ibm.com>
6241 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6242 L:      linux-security-module@vger.kernel.org
6243 L:      keyrings@vger.kernel.org
6244 S:      Supported
6245 F:      Documentation/security/keys-trusted-encrypted.txt
6246 F:      include/keys/trusted-type.h
6247 F:      security/keys/trusted.c
6248 F:      security/keys/trusted.h
6249
6250 KEYS-ENCRYPTED
6251 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6252 M:      David Safford <safford@us.ibm.com>
6253 L:      linux-security-module@vger.kernel.org
6254 L:      keyrings@vger.kernel.org
6255 S:      Supported
6256 F:      Documentation/security/keys-trusted-encrypted.txt
6257 F:      include/keys/encrypted-type.h
6258 F:      security/keys/encrypted-keys/
6259
6260 KGDB / KDB /debug_core
6261 M:      Jason Wessel <jason.wessel@windriver.com>
6262 W:      http://kgdb.wiki.kernel.org/
6263 L:      kgdb-bugreport@lists.sourceforge.net
6264 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
6265 S:      Maintained
6266 F:      Documentation/DocBook/kgdb.tmpl
6267 F:      drivers/misc/kgdbts.c
6268 F:      drivers/tty/serial/kgdboc.c
6269 F:      include/linux/kdb.h
6270 F:      include/linux/kgdb.h
6271 F:      kernel/debug/
6272
6273 KMEMCHECK
6274 M:      Vegard Nossum <vegardno@ifi.uio.no>
6275 M:      Pekka Enberg <penberg@kernel.org>
6276 S:      Maintained
6277 F:      Documentation/kmemcheck.txt
6278 F:      arch/x86/include/asm/kmemcheck.h
6279 F:      arch/x86/mm/kmemcheck/
6280 F:      include/linux/kmemcheck.h
6281 F:      mm/kmemcheck.c
6282
6283 KMEMLEAK
6284 M:      Catalin Marinas <catalin.marinas@arm.com>
6285 S:      Maintained
6286 F:      Documentation/kmemleak.txt
6287 F:      include/linux/kmemleak.h
6288 F:      mm/kmemleak.c
6289 F:      mm/kmemleak-test.c
6290
6291 KPROBES
6292 M:      Ananth N Mavinakayanahalli <ananth@in.ibm.com>
6293 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
6294 M:      "David S. Miller" <davem@davemloft.net>
6295 M:      Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
6296 S:      Maintained
6297 F:      Documentation/kprobes.txt
6298 F:      include/linux/kprobes.h
6299 F:      kernel/kprobes.c
6300
6301 KS0108 LCD CONTROLLER DRIVER
6302 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
6303 W:      http://miguelojeda.es/auxdisplay.htm
6304 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
6305 S:      Maintained
6306 F:      Documentation/auxdisplay/ks0108
6307 F:      drivers/auxdisplay/ks0108.c
6308 F:      include/linux/ks0108.h
6309
6310 L3MDEV
6311 M:      David Ahern <dsa@cumulusnetworks.com>
6312 L:      netdev@vger.kernel.org
6313 S:      Maintained
6314 F:      net/l3mdev
6315 F:      include/net/l3mdev.h
6316
6317 LANTIQ MIPS ARCHITECTURE
6318 M:      John Crispin <blogic@openwrt.org>
6319 L:      linux-mips@linux-mips.org
6320 S:      Maintained
6321 F:      arch/mips/lantiq
6322
6323 LAPB module
6324 L:      linux-x25@vger.kernel.org
6325 S:      Orphan
6326 F:      Documentation/networking/lapb-module.txt
6327 F:      include/*/lapb.h
6328 F:      net/lapb/
6329
6330 LASI 53c700 driver for PARISC
6331 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
6332 L:      linux-scsi@vger.kernel.org
6333 S:      Maintained
6334 F:      Documentation/scsi/53c700.txt
6335 F:      drivers/scsi/53c700*
6336
6337 LED SUBSYSTEM
6338 M:      Richard Purdie <rpurdie@rpsys.net>
6339 M:      Jacek Anaszewski <j.anaszewski@samsung.com>
6340 L:      linux-leds@vger.kernel.org
6341 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
6342 S:      Maintained
6343 F:      drivers/leds/
6344 F:      include/linux/leds.h
6345
6346 LEGACY EEPROM DRIVER
6347 M:      Jean Delvare <jdelvare@suse.com>
6348 S:      Maintained
6349 F:      Documentation/misc-devices/eeprom
6350 F:      drivers/misc/eeprom/eeprom.c
6351
6352 LEGO USB Tower driver
6353 M:      Juergen Stuber <starblue@users.sourceforge.net>
6354 L:      legousb-devel@lists.sourceforge.net
6355 W:      http://legousb.sourceforge.net/
6356 S:      Maintained
6357 F:      drivers/usb/misc/legousbtower.c
6358
6359 LG2160 MEDIA DRIVER
6360 M:      Michael Krufky <mkrufky@linuxtv.org>
6361 L:      linux-media@vger.kernel.org
6362 W:      https://linuxtv.org
6363 W:      http://github.com/mkrufky
6364 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6365 T:      git git://linuxtv.org/mkrufky/tuners.git
6366 S:      Maintained
6367 F:      drivers/media/dvb-frontends/lg2160.*
6368
6369 LGDT3305 MEDIA DRIVER
6370 M:      Michael Krufky <mkrufky@linuxtv.org>
6371 L:      linux-media@vger.kernel.org
6372 W:      https://linuxtv.org
6373 W:      http://github.com/mkrufky
6374 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6375 T:      git git://linuxtv.org/mkrufky/tuners.git
6376 S:      Maintained
6377 F:      drivers/media/dvb-frontends/lgdt3305.*
6378
6379 LGUEST
6380 M:      Rusty Russell <rusty@rustcorp.com.au>
6381 L:      lguest@lists.ozlabs.org
6382 W:      http://lguest.ozlabs.org/
6383 S:      Odd Fixes
6384 F:      arch/x86/include/asm/lguest*.h
6385 F:      arch/x86/lguest/
6386 F:      drivers/lguest/
6387 F:      include/linux/lguest*.h
6388 F:      tools/lguest/
6389
6390 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
6391 M:      Tejun Heo <tj@kernel.org>
6392 L:      linux-ide@vger.kernel.org
6393 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6394 S:      Maintained
6395 F:      drivers/ata/
6396 F:      include/linux/ata.h
6397 F:      include/linux/libata.h
6398
6399 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
6400 M:      Viresh Kumar <vireshk@kernel.org>
6401 L:      linux-ide@vger.kernel.org
6402 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6403 S:      Maintained
6404 F:      include/linux/pata_arasan_cf_data.h
6405 F:      drivers/ata/pata_arasan_cf.c
6406
6407 LIBATA PATA DRIVERS
6408 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6409 M:      Tejun Heo <tj@kernel.org>
6410 L:      linux-ide@vger.kernel.org
6411 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6412 S:      Maintained
6413 F:      drivers/ata/pata_*.c
6414 F:      drivers/ata/ata_generic.c
6415
6416 LIBATA SATA AHCI PLATFORM devices support
6417 M:      Hans de Goede <hdegoede@redhat.com>
6418 M:      Tejun Heo <tj@kernel.org>
6419 L:      linux-ide@vger.kernel.org
6420 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6421 S:      Maintained
6422 F:      drivers/ata/ahci_platform.c
6423 F:      drivers/ata/libahci_platform.c
6424 F:      include/linux/ahci_platform.h
6425
6426 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
6427 M:      Mikael Pettersson <mikpelinux@gmail.com>
6428 L:      linux-ide@vger.kernel.org
6429 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6430 S:      Maintained
6431 F:      drivers/ata/sata_promise.*
6432
6433 LIBLOCKDEP
6434 M:      Sasha Levin <sasha.levin@oracle.com>
6435 S:      Maintained
6436 F:      tools/lib/lockdep/
6437
6438 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
6439 M:      Dan Williams <dan.j.williams@intel.com>
6440 L:      linux-nvdimm@lists.01.org
6441 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6442 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
6443 S:      Supported
6444 F:      drivers/nvdimm/*
6445 F:      include/linux/nd.h
6446 F:      include/linux/libnvdimm.h
6447 F:      include/uapi/linux/ndctl.h
6448
6449 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
6450 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6451 L:      linux-nvdimm@lists.01.org
6452 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6453 S:      Supported
6454 F:      drivers/nvdimm/blk.c
6455 F:      drivers/nvdimm/region_devs.c
6456 F:      drivers/acpi/nfit*
6457
6458 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
6459 M:      Vishal Verma <vishal.l.verma@intel.com>
6460 L:      linux-nvdimm@lists.01.org
6461 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6462 S:      Supported
6463 F:      drivers/nvdimm/btt*
6464
6465 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
6466 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6467 L:      linux-nvdimm@lists.01.org
6468 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6469 S:      Supported
6470 F:      drivers/nvdimm/pmem.c
6471 F:      include/linux/pmem.h
6472 F:      arch/*/include/asm/pmem.h
6473
6474 LIGHTNVM PLATFORM SUPPORT
6475 M:      Matias Bjorling <mb@lightnvm.io>
6476 W:      http://github/OpenChannelSSD
6477 L:      linux-block@vger.kernel.org
6478 S:      Maintained
6479 F:      drivers/lightnvm/
6480 F:      include/linux/lightnvm.h
6481 F:      include/uapi/linux/lightnvm.h
6482
6483 LINUX FOR IBM pSERIES (RS/6000)
6484 M:      Paul Mackerras <paulus@au.ibm.com>
6485 W:      http://www.ibm.com/linux/ltc/projects/ppc
6486 S:      Supported
6487 F:      arch/powerpc/boot/rs6000.h
6488
6489 LINUX FOR POWERPC (32-BIT AND 64-BIT)
6490 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6491 M:      Paul Mackerras <paulus@samba.org>
6492 M:      Michael Ellerman <mpe@ellerman.id.au>
6493 W:      http://www.penguinppc.org/
6494 L:      linuxppc-dev@lists.ozlabs.org
6495 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
6496 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
6497 S:      Supported
6498 F:      Documentation/powerpc/
6499 F:      arch/powerpc/
6500
6501 LINUX FOR POWER MACINTOSH
6502 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6503 W:      http://www.penguinppc.org/
6504 L:      linuxppc-dev@lists.ozlabs.org
6505 S:      Maintained
6506 F:      arch/powerpc/platforms/powermac/
6507 F:      drivers/macintosh/
6508
6509 LINUX FOR POWERPC EMBEDDED MPC5XXX
6510 M:      Anatolij Gustschin <agust@denx.de>
6511 L:      linuxppc-dev@lists.ozlabs.org
6512 T:      git git://git.denx.de/linux-denx-agust.git
6513 S:      Maintained
6514 F:      arch/powerpc/platforms/512x/
6515 F:      arch/powerpc/platforms/52xx/
6516
6517 LINUX FOR POWERPC EMBEDDED PPC4XX
6518 M:      Alistair Popple <alistair@popple.id.au>
6519 M:      Matt Porter <mporter@kernel.crashing.org>
6520 W:      http://www.penguinppc.org/
6521 L:      linuxppc-dev@lists.ozlabs.org
6522 S:      Maintained
6523 F:      arch/powerpc/platforms/40x/
6524 F:      arch/powerpc/platforms/44x/
6525
6526 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
6527 L:      linuxppc-dev@lists.ozlabs.org
6528 S:      Orphan
6529 F:      arch/powerpc/*/*virtex*
6530 F:      arch/powerpc/*/*/*virtex*
6531
6532 LINUX FOR POWERPC EMBEDDED PPC8XX
6533 M:      Vitaly Bordug <vitb@kernel.crashing.org>
6534 W:      http://www.penguinppc.org/
6535 L:      linuxppc-dev@lists.ozlabs.org
6536 S:      Maintained
6537 F:      arch/powerpc/platforms/8xx/
6538
6539 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
6540 M:      Scott Wood <oss@buserror.net>
6541 M:      Kumar Gala <galak@kernel.crashing.org>
6542 W:      http://www.penguinppc.org/
6543 L:      linuxppc-dev@lists.ozlabs.org
6544 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
6545 S:      Maintained
6546 F:      arch/powerpc/platforms/83xx/
6547 F:      arch/powerpc/platforms/85xx/
6548
6549 LINUX FOR POWERPC PA SEMI PWRFICIENT
6550 M:      Olof Johansson <olof@lixom.net>
6551 L:      linuxppc-dev@lists.ozlabs.org
6552 S:      Maintained
6553 F:      arch/powerpc/platforms/pasemi/
6554 F:      drivers/*/*pasemi*
6555 F:      drivers/*/*/*pasemi*
6556
6557 LINUX SECURITY MODULE (LSM) FRAMEWORK
6558 M:      Chris Wright <chrisw@sous-sol.org>
6559 L:      linux-security-module@vger.kernel.org
6560 S:      Supported
6561
6562 LIS3LV02D ACCELEROMETER DRIVER
6563 M:      Eric Piel <eric.piel@tremplin-utc.net>
6564 S:      Maintained
6565 F:      Documentation/misc-devices/lis3lv02d
6566 F:      drivers/misc/lis3lv02d/
6567 F:      drivers/platform/x86/hp_accel.c
6568
6569 LIVE PATCHING
6570 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6571 M:      Seth Jennings <sjenning@redhat.com>
6572 M:      Jiri Kosina <jikos@kernel.org>
6573 M:      Vojtech Pavlik <vojtech@suse.com>
6574 S:      Maintained
6575 F:      kernel/livepatch/
6576 F:      include/linux/livepatch.h
6577 F:      arch/x86/include/asm/livepatch.h
6578 F:      arch/x86/kernel/livepatch.c
6579 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
6580 F:      samples/livepatch/
6581 L:      live-patching@vger.kernel.org
6582 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
6583
6584 LLC (802.2)
6585 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
6586 S:      Maintained
6587 F:      include/linux/llc.h
6588 F:      include/uapi/linux/llc.h
6589 F:      include/net/llc*
6590 F:      net/llc/
6591
6592 LM73 HARDWARE MONITOR DRIVER
6593 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
6594 L:      lm-sensors@lm-sensors.org
6595 S:      Maintained
6596 F:      drivers/hwmon/lm73.c
6597
6598 LM78 HARDWARE MONITOR DRIVER
6599 M:      Jean Delvare <jdelvare@suse.com>
6600 L:      lm-sensors@lm-sensors.org
6601 S:      Maintained
6602 F:      Documentation/hwmon/lm78
6603 F:      drivers/hwmon/lm78.c
6604
6605 LM83 HARDWARE MONITOR DRIVER
6606 M:      Jean Delvare <jdelvare@suse.com>
6607 L:      lm-sensors@lm-sensors.org
6608 S:      Maintained
6609 F:      Documentation/hwmon/lm83
6610 F:      drivers/hwmon/lm83.c
6611
6612 LM90 HARDWARE MONITOR DRIVER
6613 M:      Jean Delvare <jdelvare@suse.com>
6614 L:      lm-sensors@lm-sensors.org
6615 S:      Maintained
6616 F:      Documentation/hwmon/lm90
6617 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
6618 F:      drivers/hwmon/lm90.c
6619
6620 LM95234 HARDWARE MONITOR DRIVER
6621 M:      Guenter Roeck <linux@roeck-us.net>
6622 L:      lm-sensors@lm-sensors.org
6623 S:      Maintained
6624 F:      Documentation/hwmon/lm95234
6625 F:      drivers/hwmon/lm95234.c
6626
6627 LME2510 MEDIA DRIVER
6628 M:      Malcolm Priestley <tvboxspy@gmail.com>
6629 L:      linux-media@vger.kernel.org
6630 W:      https://linuxtv.org
6631 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6632 S:      Maintained
6633 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
6634
6635 LOCKDEP AND LOCKSTAT
6636 M:      Peter Zijlstra <peterz@infradead.org>
6637 M:      Ingo Molnar <mingo@redhat.com>
6638 L:      linux-kernel@vger.kernel.org
6639 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
6640 S:      Maintained
6641 F:      Documentation/locking/lockdep*.txt
6642 F:      Documentation/locking/lockstat.txt
6643 F:      include/linux/lockdep.h
6644 F:      kernel/locking/
6645
6646 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
6647 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
6648 L:      linux-ntfs-dev@lists.sourceforge.net
6649 W:      http://www.linux-ntfs.org/content/view/19/37/
6650 S:      Maintained
6651 F:      Documentation/ldm.txt
6652 F:      block/partitions/ldm.*
6653
6654 LogFS
6655 M:      Joern Engel <joern@logfs.org>
6656 M:      Prasad Joshi <prasadjoshi.linux@gmail.com>
6657 L:      logfs@logfs.org
6658 W:      logfs.org
6659 S:      Maintained
6660 F:      fs/logfs/
6661
6662 LPC32XX MACHINE SUPPORT
6663 M:      Roland Stigge <stigge@antcom.de>
6664 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6665 S:      Maintained
6666 F:      arch/arm/mach-lpc32xx/
6667
6668 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
6669 M:      Nagalakshmi Nandigama <nagalakshmi.nandigama@avagotech.com>
6670 M:      Praveen Krishnamoorthy <praveen.krishnamoorthy@avagotech.com>
6671 M:      Sreekanth Reddy <sreekanth.reddy@avagotech.com>
6672 M:      Abhijit Mahajan <abhijit.mahajan@avagotech.com>
6673 L:      MPT-FusionLinux.pdl@avagotech.com
6674 L:      linux-scsi@vger.kernel.org
6675 W:      http://www.lsilogic.com/support
6676 S:      Supported
6677 F:      drivers/message/fusion/
6678 F:      drivers/scsi/mpt2sas/
6679 F:      drivers/scsi/mpt3sas/
6680
6681 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
6682 M:      Matthew Wilcox <matthew@wil.cx>
6683 L:      linux-scsi@vger.kernel.org
6684 S:      Maintained
6685 F:      drivers/scsi/sym53c8xx_2/
6686
6687 LTC4261 HARDWARE MONITOR DRIVER
6688 M:      Guenter Roeck <linux@roeck-us.net>
6689 L:      lm-sensors@lm-sensors.org
6690 S:      Maintained
6691 F:      Documentation/hwmon/ltc4261
6692 F:      drivers/hwmon/ltc4261.c
6693
6694 LTP (Linux Test Project)
6695 M:      Mike Frysinger <vapier@gentoo.org>
6696 M:      Cyril Hrubis <chrubis@suse.cz>
6697 M:      Wanlong Gao <wanlong.gao@gmail.com>
6698 M:      Jan Stancek <jstancek@redhat.com>
6699 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
6700 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
6701 L:      ltp@lists.linux.it (subscribers-only)
6702 W:      http://linux-test-project.github.io/
6703 T:      git git://github.com/linux-test-project/ltp.git
6704 S:      Maintained
6705
6706 M32R ARCHITECTURE
6707 W:      http://www.linux-m32r.org/
6708 S:      Orphan
6709 F:      arch/m32r/
6710
6711 M68K ARCHITECTURE
6712 M:      Geert Uytterhoeven <geert@linux-m68k.org>
6713 L:      linux-m68k@lists.linux-m68k.org
6714 W:      http://www.linux-m68k.org/
6715 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
6716 S:      Maintained
6717 F:      arch/m68k/
6718 F:      drivers/zorro/
6719
6720 M68K ON APPLE MACINTOSH
6721 M:      Joshua Thompson <funaho@jurai.org>
6722 W:      http://www.mac.linux-m68k.org/
6723 L:      linux-m68k@lists.linux-m68k.org
6724 S:      Maintained
6725 F:      arch/m68k/mac/
6726
6727 M68K ON HP9000/300
6728 M:      Philip Blundell <philb@gnu.org>
6729 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
6730 S:      Maintained
6731 F:      arch/m68k/hp300/
6732
6733 M88DS3103 MEDIA DRIVER
6734 M:      Antti Palosaari <crope@iki.fi>
6735 L:      linux-media@vger.kernel.org
6736 W:      https://linuxtv.org
6737 W:      http://palosaari.fi/linux/
6738 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6739 T:      git git://linuxtv.org/anttip/media_tree.git
6740 S:      Maintained
6741 F:      drivers/media/dvb-frontends/m88ds3103*
6742
6743 M88RS2000 MEDIA DRIVER
6744 M:      Malcolm Priestley <tvboxspy@gmail.com>
6745 L:      linux-media@vger.kernel.org
6746 W:      https://linuxtv.org
6747 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6748 S:      Maintained
6749 F:      drivers/media/dvb-frontends/m88rs2000*
6750
6751 MA901 MASTERKIT USB FM RADIO DRIVER
6752 M:      Alexey Klimov <klimov.linux@gmail.com>
6753 L:      linux-media@vger.kernel.org
6754 T:      git git://linuxtv.org/media_tree.git
6755 S:      Maintained
6756 F:      drivers/media/radio/radio-ma901.c
6757
6758 MAC80211
6759 M:      Johannes Berg <johannes@sipsolutions.net>
6760 L:      linux-wireless@vger.kernel.org
6761 W:      http://wireless.kernel.org/
6762 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6763 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
6764 S:      Maintained
6765 F:      Documentation/networking/mac80211-injection.txt
6766 F:      include/net/mac80211.h
6767 F:      net/mac80211/
6768
6769 MACVLAN DRIVER
6770 M:      Patrick McHardy <kaber@trash.net>
6771 L:      netdev@vger.kernel.org
6772 S:      Maintained
6773 F:      drivers/net/macvlan.c
6774 F:      include/linux/if_macvlan.h
6775
6776 MAILBOX API
6777 M:      Jassi Brar <jassisinghbrar@gmail.com>
6778 L:      linux-kernel@vger.kernel.org
6779 S:      Maintained
6780 F:      drivers/mailbox/
6781 F:      include/linux/mailbox_client.h
6782 F:      include/linux/mailbox_controller.h
6783
6784 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
6785 M:      Michael Kerrisk <mtk.manpages@gmail.com>
6786 W:      http://www.kernel.org/doc/man-pages
6787 L:      linux-man@vger.kernel.org
6788 S:      Maintained
6789
6790 MARVELL ARMADA DRM SUPPORT
6791 M:      Russell King <rmk+kernel@arm.linux.org.uk>
6792 S:      Maintained
6793 F:      drivers/gpu/drm/armada/
6794
6795 MARVELL 88E6352 DSA support
6796 M:      Guenter Roeck <linux@roeck-us.net>
6797 S:      Maintained
6798 F:      drivers/net/dsa/mv88e6352.c
6799
6800 MARVELL CRYPTO DRIVER
6801 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
6802 M:      Arnaud Ebalard <arno@natisbad.org>
6803 F:      drivers/crypto/marvell/
6804 S:      Maintained
6805 L:      linux-crypto@vger.kernel.org
6806
6807 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
6808 M:      Mirko Lindner <mlindner@marvell.com>
6809 M:      Stephen Hemminger <stephen@networkplumber.org>
6810 L:      netdev@vger.kernel.org
6811 S:      Maintained
6812 F:      drivers/net/ethernet/marvell/sk*
6813
6814 MARVELL LIBERTAS WIRELESS DRIVER
6815 L:      libertas-dev@lists.infradead.org
6816 S:      Orphan
6817 F:      drivers/net/wireless/marvell/libertas/
6818
6819 MARVELL MV643XX ETHERNET DRIVER
6820 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
6821 L:      netdev@vger.kernel.org
6822 S:      Maintained
6823 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
6824 F:      include/linux/mv643xx.h
6825
6826 MARVELL MVNETA ETHERNET DRIVER
6827 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
6828 L:      netdev@vger.kernel.org
6829 S:      Maintained
6830 F:      drivers/net/ethernet/marvell/mvneta.*
6831
6832 MARVELL MWIFIEX WIRELESS DRIVER
6833 M:      Amitkumar Karwar <akarwar@marvell.com>
6834 M:      Nishant Sarmukadam <nishants@marvell.com>
6835 L:      linux-wireless@vger.kernel.org
6836 S:      Maintained
6837 F:      drivers/net/wireless/marvell/mwifiex/
6838
6839 MARVELL MWL8K WIRELESS DRIVER
6840 M:      Lennert Buytenhek <buytenh@wantstofly.org>
6841 L:      linux-wireless@vger.kernel.org
6842 S:      Odd Fixes
6843 F:      drivers/net/wireless/marvell/mwl8k.c
6844
6845 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
6846 M:      Nicolas Pitre <nico@fluxnic.net>
6847 S:      Odd Fixes
6848 F:      drivers/mmc/host/mvsdio.*
6849
6850 MATROX FRAMEBUFFER DRIVER
6851 L:      linux-fbdev@vger.kernel.org
6852 S:      Orphan
6853 F:      drivers/video/fbdev/matrox/matroxfb_*
6854 F:      include/uapi/linux/matroxfb.h
6855
6856 MAX16065 HARDWARE MONITOR DRIVER
6857 M:      Guenter Roeck <linux@roeck-us.net>
6858 L:      lm-sensors@lm-sensors.org
6859 S:      Maintained
6860 F:      Documentation/hwmon/max16065
6861 F:      drivers/hwmon/max16065.c
6862
6863 MAX20751 HARDWARE MONITOR DRIVER
6864 M:      Guenter Roeck <linux@roeck-us.net>
6865 L:      lm-sensors@lm-sensors.org
6866 S:      Maintained
6867 F:      Documentation/hwmon/max20751
6868 F:      drivers/hwmon/max20751.c
6869
6870 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6871 M:      "Hans J. Koch" <hjk@hansjkoch.de>
6872 L:      lm-sensors@lm-sensors.org
6873 S:      Maintained
6874 F:      Documentation/hwmon/max6650
6875 F:      drivers/hwmon/max6650.c
6876
6877 MAX6697 HARDWARE MONITOR DRIVER
6878 M:      Guenter Roeck <linux@roeck-us.net>
6879 L:      lm-sensors@lm-sensors.org
6880 S:      Maintained
6881 F:      Documentation/hwmon/max6697
6882 F:      Documentation/devicetree/bindings/i2c/max6697.txt
6883 F:      drivers/hwmon/max6697.c
6884 F:      include/linux/platform_data/max6697.h
6885
6886 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
6887 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6888 L:      linux-pm@vger.kernel.org
6889 S:      Supported
6890 F:      drivers/power/max14577_charger.c
6891 F:      drivers/power/max77693_charger.c
6892
6893 MAXIM MAX77802 MULTIFUNCTION PMIC DEVICE DRIVERS
6894 M:      Javier Martinez Canillas <javier@osg.samsung.com>
6895 L:      linux-kernel@vger.kernel.org
6896 S:      Supported
6897 F:      drivers/*/*max77802.c
6898 F:      Documentation/devicetree/bindings/*/*max77802.txt
6899 F:      include/dt-bindings/*/*max77802.h
6900
6901 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
6902 M:      Chanwoo Choi <cw00.choi@samsung.com>
6903 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6904 L:      linux-kernel@vger.kernel.org
6905 S:      Supported
6906 F:      drivers/*/max14577.c
6907 F:      drivers/*/max77686.c
6908 F:      drivers/*/max77693.c
6909 F:      drivers/extcon/extcon-max14577.c
6910 F:      drivers/extcon/extcon-max77693.c
6911 F:      drivers/rtc/rtc-max77686.c
6912 F:      drivers/clk/clk-max77686.c
6913 F:      Documentation/devicetree/bindings/mfd/max14577.txt
6914 F:      Documentation/devicetree/bindings/*/max77686.txt
6915 F:      Documentation/devicetree/bindings/mfd/max77693.txt
6916 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
6917 F:      include/linux/mfd/max14577*.h
6918 F:      include/linux/mfd/max77686*.h
6919 F:      include/linux/mfd/max77693*.h
6920
6921 MAXIRADIO FM RADIO RECEIVER DRIVER
6922 M:      Hans Verkuil <hverkuil@xs4all.nl>
6923 L:      linux-media@vger.kernel.org
6924 T:      git git://linuxtv.org/media_tree.git
6925 W:      https://linuxtv.org
6926 S:      Maintained
6927 F:      drivers/media/radio/radio-maxiradio*
6928
6929 MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVER
6930 M:      Peter Rosin <peda@axentia.se>
6931 L:      linux-iio@vger.kernel.org
6932 S:      Maintained
6933 F:      drivers/iio/potentiometer/mcp4531.c
6934
6935 MEDIA DRIVERS FOR RENESAS - VSP1
6936 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6937 L:      linux-media@vger.kernel.org
6938 L:      linux-renesas-soc@vger.kernel.org
6939 T:      git git://linuxtv.org/media_tree.git
6940 S:      Supported
6941 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
6942 F:      drivers/media/platform/vsp1/
6943
6944 MEDIA DRIVERS FOR ASCOT2E
6945 M:      Sergey Kozlov <serjk@netup.ru>
6946 L:      linux-media@vger.kernel.org
6947 W:      https://linuxtv.org
6948 W:      http://netup.tv/
6949 T:      git git://linuxtv.org/media_tree.git
6950 S:      Supported
6951 F:      drivers/media/dvb-frontends/ascot2e*
6952
6953 MEDIA DRIVERS FOR CXD2841ER
6954 M:      Sergey Kozlov <serjk@netup.ru>
6955 L:      linux-media@vger.kernel.org
6956 W:      https://linuxtv.org
6957 W:      http://netup.tv/
6958 T:      git git://linuxtv.org/media_tree.git
6959 S:      Supported
6960 F:      drivers/media/dvb-frontends/cxd2841er*
6961
6962 MEDIA DRIVERS FOR HORUS3A
6963 M:      Sergey Kozlov <serjk@netup.ru>
6964 L:      linux-media@vger.kernel.org
6965 W:      https://linuxtv.org
6966 W:      http://netup.tv/
6967 T:      git git://linuxtv.org/media_tree.git
6968 S:      Supported
6969 F:      drivers/media/dvb-frontends/horus3a*
6970
6971 MEDIA DRIVERS FOR LNBH25
6972 M:      Sergey Kozlov <serjk@netup.ru>
6973 L:      linux-media@vger.kernel.org
6974 W:      https://linuxtv.org
6975 W:      http://netup.tv/
6976 T:      git git://linuxtv.org/media_tree.git
6977 S:      Supported
6978 F:      drivers/media/dvb-frontends/lnbh25*
6979
6980 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
6981 M:      Sergey Kozlov <serjk@netup.ru>
6982 L:      linux-media@vger.kernel.org
6983 W:      https://linuxtv.org
6984 W:      http://netup.tv/
6985 T:      git git://linuxtv.org/media_tree.git
6986 S:      Supported
6987 F:      drivers/media/pci/netup_unidvb/*
6988
6989 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
6990 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
6991 P:      LinuxTV.org Project
6992 L:      linux-media@vger.kernel.org
6993 W:      https://linuxtv.org
6994 Q:      http://patchwork.kernel.org/project/linux-media/list/
6995 T:      git git://linuxtv.org/media_tree.git
6996 S:      Maintained
6997 F:      Documentation/dvb/
6998 F:      Documentation/video4linux/
6999 F:      Documentation/DocBook/media/
7000 F:      drivers/media/
7001 F:      drivers/staging/media/
7002 F:      include/linux/platform_data/media/
7003 F:      include/media/
7004 F:      include/uapi/linux/dvb/
7005 F:      include/uapi/linux/videodev2.h
7006 F:      include/uapi/linux/media.h
7007 F:      include/uapi/linux/v4l2-*
7008 F:      include/uapi/linux/meye.h
7009 F:      include/uapi/linux/ivtv*
7010 F:      include/uapi/linux/uvcvideo.h
7011
7012 MEDIATEK MT7601U WIRELESS LAN DRIVER
7013 M:      Jakub Kicinski <kubakici@wp.pl>
7014 L:      linux-wireless@vger.kernel.org
7015 S:      Maintained
7016 F:      drivers/net/wireless/mediatek/mt7601u/
7017
7018 MEGARAID SCSI/SAS DRIVERS
7019 M:      Kashyap Desai <kashyap.desai@avagotech.com>
7020 M:      Sumit Saxena <sumit.saxena@avagotech.com>
7021 M:      Uday Lingala <uday.lingala@avagotech.com>
7022 L:      megaraidlinux.pdl@avagotech.com
7023 L:      linux-scsi@vger.kernel.org
7024 W:      http://www.lsi.com
7025 S:      Maintained
7026 F:      Documentation/scsi/megaraid.txt
7027 F:      drivers/scsi/megaraid.*
7028 F:      drivers/scsi/megaraid/
7029
7030 MELLANOX ETHERNET DRIVER (mlx4_en)
7031 M:      Eugenia Emantayev <eugenia@mellanox.com>
7032 L:      netdev@vger.kernel.org
7033 S:      Supported
7034 W:      http://www.mellanox.com
7035 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7036 F:      drivers/net/ethernet/mellanox/mlx4/en_*
7037
7038 MELLANOX ETHERNET DRIVER (mlx5e)
7039 M:      Saeed Mahameed <saeedm@mellanox.com>
7040 L:      netdev@vger.kernel.org
7041 S:      Supported
7042 W:      http://www.mellanox.com
7043 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7044 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
7045
7046 MELLANOX ETHERNET SWITCH DRIVERS
7047 M:      Jiri Pirko <jiri@mellanox.com>
7048 M:      Ido Schimmel <idosch@mellanox.com>
7049 L:      netdev@vger.kernel.org
7050 S:      Supported
7051 W:      http://www.mellanox.com
7052 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7053 F:      drivers/net/ethernet/mellanox/mlxsw/
7054
7055 MEMBARRIER SUPPORT
7056 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7057 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
7058 L:      linux-kernel@vger.kernel.org
7059 S:      Supported
7060 F:      kernel/membarrier.c
7061 F:      include/uapi/linux/membarrier.h
7062
7063 MEMORY MANAGEMENT
7064 L:      linux-mm@kvack.org
7065 W:      http://www.linux-mm.org
7066 S:      Maintained
7067 F:      include/linux/mm.h
7068 F:      include/linux/gfp.h
7069 F:      include/linux/mmzone.h
7070 F:      include/linux/memory_hotplug.h
7071 F:      include/linux/vmalloc.h
7072 F:      mm/
7073
7074 MEMORY TECHNOLOGY DEVICES (MTD)
7075 M:      David Woodhouse <dwmw2@infradead.org>
7076 M:      Brian Norris <computersforpeace@gmail.com>
7077 L:      linux-mtd@lists.infradead.org
7078 W:      http://www.linux-mtd.infradead.org/
7079 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
7080 T:      git git://git.infradead.org/linux-mtd.git
7081 T:      git git://git.infradead.org/l2-mtd.git
7082 S:      Maintained
7083 F:      drivers/mtd/
7084 F:      include/linux/mtd/
7085 F:      include/uapi/mtd/
7086
7087 MEN A21 WATCHDOG DRIVER
7088 M:      Johannes Thumshirn <morbidrsa@gmail.com>
7089 L:      linux-watchdog@vger.kernel.org
7090 S:      Maintained
7091 F:      drivers/watchdog/mena21_wdt.c
7092
7093 MEN CHAMELEON BUS (mcb)
7094 M:      Johannes Thumshirn <morbidrsa@gmail.com>
7095 S:      Maintained
7096 F:      drivers/mcb/
7097 F:      include/linux/mcb.h
7098 F:      Documentation/men-chameleon-bus.txt
7099
7100 MEN F21BMC (Board Management Controller)
7101 M:      Andreas Werner <andreas.werner@men.de>
7102 S:      Supported
7103 F:      drivers/mfd/menf21bmc.c
7104 F:      drivers/watchdog/menf21bmc_wdt.c
7105 F:      drivers/leds/leds-menf21bmc.c
7106 F:      drivers/hwmon/menf21bmc_hwmon.c
7107 F:      Documentation/hwmon/menf21bmc
7108
7109 METAG ARCHITECTURE
7110 M:      James Hogan <james.hogan@imgtec.com>
7111 L:      linux-metag@vger.kernel.org
7112 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jhogan/metag.git
7113 S:      Odd Fixes
7114 F:      arch/metag/
7115 F:      Documentation/metag/
7116 F:      Documentation/devicetree/bindings/metag/
7117 F:      Documentation/devicetree/bindings/interrupt-controller/img,*
7118 F:      drivers/clocksource/metag_generic.c
7119 F:      drivers/irqchip/irq-metag.c
7120 F:      drivers/irqchip/irq-metag-ext.c
7121 F:      drivers/tty/metag_da.c
7122
7123 MICROBLAZE ARCHITECTURE
7124 M:      Michal Simek <monstr@monstr.eu>
7125 W:      http://www.monstr.eu/fdt/
7126 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
7127 S:      Supported
7128 F:      arch/microblaze/
7129
7130 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
7131 M:      Chen Yu <yu.c.chen@intel.com>
7132 L:      platform-driver-x86@vger.kernel.org
7133 S:      Supported
7134 F:      drivers/platform/x86/surfacepro3_button.c
7135
7136 MICROTEK X6 SCANNER
7137 M:      Oliver Neukum <oliver@neukum.org>
7138 S:      Maintained
7139 F:      drivers/usb/image/microtek.*
7140
7141 MIPS
7142 M:      Ralf Baechle <ralf@linux-mips.org>
7143 L:      linux-mips@linux-mips.org
7144 W:      http://www.linux-mips.org/
7145 T:      git git://git.linux-mips.org/pub/scm/ralf/linux.git
7146 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
7147 S:      Supported
7148 F:      Documentation/mips/
7149 F:      arch/mips/
7150
7151 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
7152 M:      Hans Verkuil <hverkuil@xs4all.nl>
7153 L:      linux-media@vger.kernel.org
7154 T:      git git://linuxtv.org/media_tree.git
7155 W:      https://linuxtv.org
7156 S:      Odd Fixes
7157 F:      drivers/media/radio/radio-miropcm20*
7158
7159 MELLANOX MLX4 core VPI driver
7160 M:      Yishai Hadas <yishaih@mellanox.com>
7161 L:      netdev@vger.kernel.org
7162 L:      linux-rdma@vger.kernel.org
7163 W:      http://www.mellanox.com
7164 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7165 S:      Supported
7166 F:      drivers/net/ethernet/mellanox/mlx4/
7167 F:      include/linux/mlx4/
7168
7169 MELLANOX MLX4 IB driver
7170 M:      Yishai Hadas <yishaih@mellanox.com>
7171 L:      linux-rdma@vger.kernel.org
7172 W:      http://www.mellanox.com
7173 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
7174 S:      Supported
7175 F:      drivers/infiniband/hw/mlx4/
7176 F:      include/linux/mlx4/
7177
7178 MELLANOX MLX5 core VPI driver
7179 M:      Matan Barak <matanb@mellanox.com>
7180 M:      Leon Romanovsky <leonro@mellanox.com>
7181 L:      netdev@vger.kernel.org
7182 L:      linux-rdma@vger.kernel.org
7183 W:      http://www.mellanox.com
7184 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7185 S:      Supported
7186 F:      drivers/net/ethernet/mellanox/mlx5/core/
7187 F:      include/linux/mlx5/
7188
7189 MELLANOX MLX5 IB driver
7190 M:      Matan Barak <matanb@mellanox.com>
7191 M:      Leon Romanovsky <leonro@mellanox.com>
7192 L:      linux-rdma@vger.kernel.org
7193 W:      http://www.mellanox.com
7194 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
7195 S:      Supported
7196 F:      drivers/infiniband/hw/mlx5/
7197 F:      include/linux/mlx5/
7198
7199 MELEXIS MLX90614 DRIVER
7200 M:      Crt Mori <cmo@melexis.com>
7201 L:      linux-iio@vger.kernel.org
7202 W:      http://www.melexis.com
7203 S:      Supported
7204 F:      drivers/iio/temperature/mlx90614.c
7205
7206 MN88472 MEDIA DRIVER
7207 M:      Antti Palosaari <crope@iki.fi>
7208 L:      linux-media@vger.kernel.org
7209 W:      https://linuxtv.org
7210 W:      http://palosaari.fi/linux/
7211 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7212 T:      git git://linuxtv.org/anttip/media_tree.git
7213 S:      Maintained
7214 F:      drivers/staging/media/mn88472/
7215 F:      drivers/media/dvb-frontends/mn88472.h
7216
7217 MN88473 MEDIA DRIVER
7218 M:      Antti Palosaari <crope@iki.fi>
7219 L:      linux-media@vger.kernel.org
7220 W:      https://linuxtv.org
7221 W:      http://palosaari.fi/linux/
7222 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7223 T:      git git://linuxtv.org/anttip/media_tree.git
7224 S:      Maintained
7225 F:      drivers/staging/media/mn88473/
7226 F:      drivers/media/dvb-frontends/mn88473.h
7227
7228 MODULE SUPPORT
7229 M:      Rusty Russell <rusty@rustcorp.com.au>
7230 S:      Maintained
7231 F:      include/linux/module.h
7232 F:      kernel/module.c
7233
7234 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
7235 W:      http://popies.net/meye/
7236 S:      Orphan
7237 F:      Documentation/video4linux/meye.txt
7238 F:      drivers/media/pci/meye/
7239 F:      include/uapi/linux/meye.h
7240
7241 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
7242 M:      Jiri Slaby <jirislaby@gmail.com>
7243 S:      Maintained
7244 F:      Documentation/serial/moxa-smartio
7245 F:      drivers/tty/mxser.*
7246
7247 MR800 AVERMEDIA USB FM RADIO DRIVER
7248 M:      Alexey Klimov <klimov.linux@gmail.com>
7249 L:      linux-media@vger.kernel.org
7250 T:      git git://linuxtv.org/media_tree.git
7251 S:      Maintained
7252 F:      drivers/media/radio/radio-mr800.c
7253
7254 MRF24J40 IEEE 802.15.4 RADIO DRIVER
7255 M:      Alan Ott <alan@signal11.us>
7256 L:      linux-wpan@vger.kernel.org
7257 S:      Maintained
7258 F:      drivers/net/ieee802154/mrf24j40.c
7259 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
7260
7261 MSI LAPTOP SUPPORT
7262 M:      "Lee, Chun-Yi" <jlee@suse.com>
7263 L:      platform-driver-x86@vger.kernel.org
7264 S:      Maintained
7265 F:      drivers/platform/x86/msi-laptop.c
7266
7267 MSI WMI SUPPORT
7268 L:      platform-driver-x86@vger.kernel.org
7269 S:      Orphan
7270 F:      drivers/platform/x86/msi-wmi.c
7271
7272 MSI001 MEDIA DRIVER
7273 M:      Antti Palosaari <crope@iki.fi>
7274 L:      linux-media@vger.kernel.org
7275 W:      https://linuxtv.org
7276 W:      http://palosaari.fi/linux/
7277 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7278 T:      git git://linuxtv.org/anttip/media_tree.git
7279 S:      Maintained
7280 F:      drivers/media/tuners/msi001*
7281
7282 MSI2500 MEDIA DRIVER
7283 M:      Antti Palosaari <crope@iki.fi>
7284 L:      linux-media@vger.kernel.org
7285 W:      https://linuxtv.org
7286 W:      http://palosaari.fi/linux/
7287 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7288 T:      git git://linuxtv.org/anttip/media_tree.git
7289 S:      Maintained
7290 F:      drivers/media/usb/msi2500/
7291
7292 MSYSTEMS DISKONCHIP G3 MTD DRIVER
7293 M:      Robert Jarzmik <robert.jarzmik@free.fr>
7294 L:      linux-mtd@lists.infradead.org
7295 S:      Maintained
7296 F:      drivers/mtd/devices/docg3*
7297
7298 MT9M032 APTINA SENSOR DRIVER
7299 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7300 L:      linux-media@vger.kernel.org
7301 T:      git git://linuxtv.org/media_tree.git
7302 S:      Maintained
7303 F:      drivers/media/i2c/mt9m032.c
7304 F:      include/media/i2c/mt9m032.h
7305
7306 MT9P031 APTINA CAMERA SENSOR
7307 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7308 L:      linux-media@vger.kernel.org
7309 T:      git git://linuxtv.org/media_tree.git
7310 S:      Maintained
7311 F:      drivers/media/i2c/mt9p031.c
7312 F:      include/media/i2c/mt9p031.h
7313
7314 MT9T001 APTINA CAMERA SENSOR
7315 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7316 L:      linux-media@vger.kernel.org
7317 T:      git git://linuxtv.org/media_tree.git
7318 S:      Maintained
7319 F:      drivers/media/i2c/mt9t001.c
7320 F:      include/media/i2c/mt9t001.h
7321
7322 MT9V032 APTINA CAMERA SENSOR
7323 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7324 L:      linux-media@vger.kernel.org
7325 T:      git git://linuxtv.org/media_tree.git
7326 S:      Maintained
7327 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
7328 F:      drivers/media/i2c/mt9v032.c
7329 F:      include/media/i2c/mt9v032.h
7330
7331 MULTIFUNCTION DEVICES (MFD)
7332 M:      Lee Jones <lee.jones@linaro.org>
7333 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
7334 S:      Supported
7335 F:      drivers/mfd/
7336 F:      include/linux/mfd/
7337
7338 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
7339 M:      Ulf Hansson <ulf.hansson@linaro.org>
7340 L:      linux-mmc@vger.kernel.org
7341 T:      git git://git.linaro.org/people/ulf.hansson/mmc.git
7342 S:      Maintained
7343 F:      drivers/mmc/
7344 F:      include/linux/mmc/
7345 F:      include/uapi/linux/mmc/
7346
7347 MULTIMEDIA CARD (MMC) ETC. OVER SPI
7348 S:      Orphan
7349 F:      drivers/mmc/host/mmc_spi.c
7350 F:      include/linux/spi/mmc_spi.h
7351
7352 MULTISOUND SOUND DRIVER
7353 M:      Andrew Veliath <andrewtv@usa.net>
7354 S:      Maintained
7355 F:      Documentation/sound/oss/MultiSound
7356 F:      sound/oss/msnd*
7357
7358 MULTITECH MULTIPORT CARD (ISICOM)
7359 S:      Orphan
7360 F:      drivers/tty/isicom.c
7361 F:      include/linux/isicom.h
7362
7363 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
7364 M:      Felipe Balbi <balbi@kernel.org>
7365 L:      linux-usb@vger.kernel.org
7366 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7367 S:      Maintained
7368 F:      drivers/usb/musb/
7369
7370 MXL5007T MEDIA DRIVER
7371 M:      Michael Krufky <mkrufky@linuxtv.org>
7372 L:      linux-media@vger.kernel.org
7373 W:      https://linuxtv.org
7374 W:      http://github.com/mkrufky
7375 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7376 T:      git git://linuxtv.org/mkrufky/tuners.git
7377 S:      Maintained
7378 F:      drivers/media/tuners/mxl5007t.*
7379
7380 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
7381 M:      Hyong-Youb Kim <hykim@myri.com>
7382 L:      netdev@vger.kernel.org
7383 W:      https://www.myricom.com/support/downloads/myri10ge.html
7384 S:      Supported
7385 F:      drivers/net/ethernet/myricom/myri10ge/
7386
7387 NATSEMI ETHERNET DRIVER (DP8381x)
7388 S:      Orphan
7389 F:      drivers/net/ethernet/natsemi/natsemi.c
7390
7391 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
7392 M:      Daniel Mack <zonque@gmail.com>
7393 S:      Maintained
7394 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7395 W:      http://www.native-instruments.com
7396 F:      sound/usb/caiaq/
7397
7398 NCP FILESYSTEM
7399 M:      Petr Vandrovec <petr@vandrovec.name>
7400 S:      Odd Fixes
7401 F:      fs/ncpfs/
7402
7403 NCR 5380 SCSI DRIVERS
7404 M:      Finn Thain <fthain@telegraphics.com.au>
7405 M:      Michael Schmitz <schmitzmic@gmail.com>
7406 L:      linux-scsi@vger.kernel.org
7407 S:      Maintained
7408 F:      Documentation/scsi/g_NCR5380.txt
7409 F:      drivers/scsi/NCR5380.*
7410 F:      drivers/scsi/arm/cumana_1.c
7411 F:      drivers/scsi/arm/oak.c
7412 F:      drivers/scsi/atari_NCR5380.c
7413 F:      drivers/scsi/atari_scsi.*
7414 F:      drivers/scsi/dmx3191d.c
7415 F:      drivers/scsi/dtc.*
7416 F:      drivers/scsi/g_NCR5380.*
7417 F:      drivers/scsi/g_NCR5380_mmio.c
7418 F:      drivers/scsi/mac_scsi.*
7419 F:      drivers/scsi/pas16.*
7420 F:      drivers/scsi/sun3_scsi.*
7421 F:      drivers/scsi/sun3_scsi_vme.c
7422 F:      drivers/scsi/t128.*
7423
7424 NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
7425 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
7426 L:      linux-scsi@vger.kernel.org
7427 S:      Maintained
7428 F:      drivers/scsi/NCR_D700.*
7429
7430 NCT6775 HARDWARE MONITOR DRIVER
7431 M:      Guenter Roeck <linux@roeck-us.net>
7432 L:      lm-sensors@lm-sensors.org
7433 S:      Maintained
7434 F:      Documentation/hwmon/nct6775
7435 F:      drivers/hwmon/nct6775.c
7436
7437 NETEFFECT IWARP RNIC DRIVER (IW_NES)
7438 M:      Faisal Latif <faisal.latif@intel.com>
7439 L:      linux-rdma@vger.kernel.org
7440 W:      http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
7441 S:      Supported
7442 F:      drivers/infiniband/hw/nes/
7443
7444 NETEM NETWORK EMULATOR
7445 M:      Stephen Hemminger <stephen@networkplumber.org>
7446 L:      netem@lists.linux-foundation.org
7447 S:      Maintained
7448 F:      net/sched/sch_netem.c
7449
7450 NETERION 10GbE DRIVERS (s2io/vxge)
7451 M:      Jon Mason <jdmason@kudzu.us>
7452 L:      netdev@vger.kernel.org
7453 S:      Supported
7454 F:      Documentation/networking/s2io.txt
7455 F:      Documentation/networking/vxge.txt
7456 F:      drivers/net/ethernet/neterion/
7457
7458 NETFILTER ({IP,IP6,ARP,EB,NF}TABLES)
7459 M:      Pablo Neira Ayuso <pablo@netfilter.org>
7460 M:      Patrick McHardy <kaber@trash.net>
7461 M:      Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
7462 L:      netfilter-devel@vger.kernel.org
7463 L:      coreteam@netfilter.org
7464 W:      http://www.netfilter.org/
7465 W:      http://www.iptables.org/
7466 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
7467 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
7468 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
7469 S:      Supported
7470 F:      include/linux/netfilter*
7471 F:      include/linux/netfilter/
7472 F:      include/net/netfilter/
7473 F:      include/uapi/linux/netfilter*
7474 F:      include/uapi/linux/netfilter/
7475 F:      net/*/netfilter.c
7476 F:      net/*/netfilter/
7477 F:      net/netfilter/
7478 F:      net/bridge/br_netfilter*.c
7479
7480 NETLABEL
7481 M:      Paul Moore <paul@paul-moore.com>
7482 W:      http://netlabel.sf.net
7483 L:      netdev@vger.kernel.org
7484 S:      Maintained
7485 F:      Documentation/netlabel/
7486 F:      include/net/netlabel.h
7487 F:      net/netlabel/
7488
7489 NETROM NETWORK LAYER
7490 M:      Ralf Baechle <ralf@linux-mips.org>
7491 L:      linux-hams@vger.kernel.org
7492 W:      http://www.linux-ax25.org/
7493 S:      Maintained
7494 F:      include/net/netrom.h
7495 F:      include/uapi/linux/netrom.h
7496 F:      net/netrom/
7497
7498 NETRONOME ETHERNET DRIVERS
7499 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
7500 M:      Rolf Neugebauer <rolf.neugebauer@netronome.com>
7501 L:      oss-drivers@netronome.com
7502 S:      Maintained
7503 F:      drivers/net/ethernet/netronome/
7504
7505 NETWORK BLOCK DEVICE (NBD)
7506 M:      Markus Pargmann <mpa@pengutronix.de>
7507 S:      Maintained
7508 L:      nbd-general@lists.sourceforge.net
7509 T:      git git://git.pengutronix.de/git/mpa/linux-nbd.git
7510 F:      Documentation/blockdev/nbd.txt
7511 F:      drivers/block/nbd.c
7512 F:      include/uapi/linux/nbd.h
7513
7514 NETWORK DROP MONITOR
7515 M:      Neil Horman <nhorman@tuxdriver.com>
7516 L:      netdev@vger.kernel.org
7517 S:      Maintained
7518 W:      https://fedorahosted.org/dropwatch/
7519 F:      net/core/drop_monitor.c
7520
7521 NETWORKING [GENERAL]
7522 M:      "David S. Miller" <davem@davemloft.net>
7523 L:      netdev@vger.kernel.org
7524 W:      http://www.linuxfoundation.org/en/Net
7525 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7526 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7527 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7528 S:      Maintained
7529 F:      net/
7530 F:      include/net/
7531 F:      include/linux/in.h
7532 F:      include/linux/net.h
7533 F:      include/linux/netdevice.h
7534 F:      include/uapi/linux/in.h
7535 F:      include/uapi/linux/net.h
7536 F:      include/uapi/linux/netdevice.h
7537 F:      include/uapi/linux/net_namespace.h
7538 F:      tools/net/
7539 F:      tools/testing/selftests/net/
7540 F:      lib/random32.c
7541 F:      lib/test_bpf.c
7542
7543 NETWORKING [IPv4/IPv6]
7544 M:      "David S. Miller" <davem@davemloft.net>
7545 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
7546 M:      James Morris <jmorris@namei.org>
7547 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
7548 M:      Patrick McHardy <kaber@trash.net>
7549 L:      netdev@vger.kernel.org
7550 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7551 S:      Maintained
7552 F:      net/ipv4/
7553 F:      net/ipv6/
7554 F:      include/net/ip*
7555 F:      arch/x86/net/*
7556
7557 NETWORKING [IPSEC]
7558 M:      Steffen Klassert <steffen.klassert@secunet.com>
7559 M:      Herbert Xu <herbert@gondor.apana.org.au>
7560 M:      "David S. Miller" <davem@davemloft.net>
7561 L:      netdev@vger.kernel.org
7562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
7563 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
7564 S:      Maintained
7565 F:      net/core/flow.c
7566 F:      net/xfrm/
7567 F:      net/key/
7568 F:      net/ipv4/xfrm*
7569 F:      net/ipv4/esp4.c
7570 F:      net/ipv4/ah4.c
7571 F:      net/ipv4/ipcomp.c
7572 F:      net/ipv4/ip_vti.c
7573 F:      net/ipv6/xfrm*
7574 F:      net/ipv6/esp6.c
7575 F:      net/ipv6/ah6.c
7576 F:      net/ipv6/ipcomp6.c
7577 F:      net/ipv6/ip6_vti.c
7578 F:      include/uapi/linux/xfrm.h
7579 F:      include/net/xfrm.h
7580
7581 NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
7582 M:      Paul Moore <paul@paul-moore.com>
7583 L:      netdev@vger.kernel.org
7584 S:      Maintained
7585
7586 NETWORKING [WIRELESS]
7587 L:      linux-wireless@vger.kernel.org
7588 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7589
7590 NETWORKING DRIVERS
7591 L:      netdev@vger.kernel.org
7592 W:      http://www.linuxfoundation.org/en/Net
7593 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7594 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7595 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7596 S:      Odd Fixes
7597 F:      drivers/net/
7598 F:      include/linux/if_*
7599 F:      include/linux/netdevice.h
7600 F:      include/linux/etherdevice.h
7601 F:      include/linux/fcdevice.h
7602 F:      include/linux/fddidevice.h
7603 F:      include/linux/hippidevice.h
7604 F:      include/linux/inetdevice.h
7605 F:      include/uapi/linux/if_*
7606 F:      include/uapi/linux/netdevice.h
7607
7608 NETWORKING DRIVERS (WIRELESS)
7609 M:      Kalle Valo <kvalo@codeaurora.org>
7610 L:      linux-wireless@vger.kernel.org
7611 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7612 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
7613 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
7614 S:      Maintained
7615 F:      drivers/net/wireless/
7616
7617 NETXEN (1/10) GbE SUPPORT
7618 M:      Manish Chopra <manish.chopra@qlogic.com>
7619 M:      Sony Chacko <sony.chacko@qlogic.com>
7620 M:      Rajesh Borundia <rajesh.borundia@qlogic.com>
7621 L:      netdev@vger.kernel.org
7622 W:      http://www.qlogic.com
7623 S:      Supported
7624 F:      drivers/net/ethernet/qlogic/netxen/
7625
7626 NFC SUBSYSTEM
7627 M:      Lauro Ramos Venancio <lauro.venancio@openbossa.org>
7628 M:      Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
7629 M:      Samuel Ortiz <sameo@linux.intel.com>
7630 L:      linux-wireless@vger.kernel.org
7631 L:      linux-nfc@lists.01.org (subscribers-only)
7632 S:      Supported
7633 F:      net/nfc/
7634 F:      include/net/nfc/
7635 F:      include/uapi/linux/nfc.h
7636 F:      drivers/nfc/
7637 F:      include/linux/platform_data/microread.h
7638 F:      include/linux/platform_data/nfcmrvl.h
7639 F:      include/linux/platform_data/nxp-nci.h
7640 F:      include/linux/platform_data/pn544.h
7641 F:      include/linux/platform_data/st21nfca.h
7642 F:      include/linux/platform_data/st-nci.h
7643 F:      Documentation/devicetree/bindings/net/nfc/
7644
7645 NFS, SUNRPC, AND LOCKD CLIENTS
7646 M:      Trond Myklebust <trond.myklebust@primarydata.com>
7647 M:      Anna Schumaker <anna.schumaker@netapp.com>
7648 L:      linux-nfs@vger.kernel.org
7649 W:      http://client.linux-nfs.org
7650 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
7651 S:      Maintained
7652 F:      fs/lockd/
7653 F:      fs/nfs/
7654 F:      fs/nfs_common/
7655 F:      net/sunrpc/
7656 F:      include/linux/lockd/
7657 F:      include/linux/nfs*
7658 F:      include/linux/sunrpc/
7659 F:      include/uapi/linux/nfs*
7660 F:      include/uapi/linux/sunrpc/
7661
7662 NILFS2 FILESYSTEM
7663 M:      Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
7664 L:      linux-nilfs@vger.kernel.org
7665 W:      http://nilfs.sourceforge.net/
7666 T:      git git://github.com/konis/nilfs2.git
7667 S:      Supported
7668 F:      Documentation/filesystems/nilfs2.txt
7669 F:      fs/nilfs2/
7670 F:      include/linux/nilfs2_fs.h
7671 F:      include/trace/events/nilfs2.h
7672
7673 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
7674 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7675 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7676 S:      Maintained
7677 F:      Documentation/scsi/NinjaSCSI.txt
7678 F:      drivers/scsi/pcmcia/nsp_*
7679
7680 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
7681 M:      GOTO Masanori <gotom@debian.or.jp>
7682 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7683 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7684 S:      Maintained
7685 F:      Documentation/scsi/NinjaSCSI.txt
7686 F:      drivers/scsi/nsp32*
7687
7688 NIOS2 ARCHITECTURE
7689 M:      Ley Foon Tan <lftan@altera.com>
7690 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
7691 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
7692 S:      Maintained
7693 F:      arch/nios2/
7694
7695 NOKIA N900 POWER SUPPLY DRIVERS
7696 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
7697 S:      Maintained
7698 F:      include/linux/power/bq2415x_charger.h
7699 F:      include/linux/power/bq27xxx_battery.h
7700 F:      include/linux/power/isp1704_charger.h
7701 F:      drivers/power/bq2415x_charger.c
7702 F:      drivers/power/bq27xxx_battery.c
7703 F:      drivers/power/isp1704_charger.c
7704 F:      drivers/power/rx51_battery.c
7705
7706 NTB DRIVER CORE
7707 M:      Jon Mason <jdmason@kudzu.us>
7708 M:      Dave Jiang <dave.jiang@intel.com>
7709 M:      Allen Hubbe <Allen.Hubbe@emc.com>
7710 L:      linux-ntb@googlegroups.com
7711 S:      Supported
7712 W:      https://github.com/jonmason/ntb/wiki
7713 T:      git git://github.com/jonmason/ntb.git
7714 F:      drivers/ntb/
7715 F:      drivers/net/ntb_netdev.c
7716 F:      include/linux/ntb.h
7717 F:      include/linux/ntb_transport.h
7718
7719 NTB INTEL DRIVER
7720 M:      Jon Mason <jdmason@kudzu.us>
7721 M:      Dave Jiang <dave.jiang@intel.com>
7722 L:      linux-ntb@googlegroups.com
7723 S:      Supported
7724 W:      https://github.com/jonmason/ntb/wiki
7725 T:      git git://github.com/jonmason/ntb.git
7726 F:      drivers/ntb/hw/intel/
7727
7728 NTB AMD DRIVER
7729 M:      Xiangliang Yu <Xiangliang.Yu@amd.com>
7730 L:      linux-ntb@googlegroups.com
7731 S:      Supported
7732 F:      drivers/ntb/hw/amd/
7733
7734 NTFS FILESYSTEM
7735 M:      Anton Altaparmakov <anton@tuxera.com>
7736 L:      linux-ntfs-dev@lists.sourceforge.net
7737 W:      http://www.tuxera.com/
7738 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
7739 S:      Supported
7740 F:      Documentation/filesystems/ntfs.txt
7741 F:      fs/ntfs/
7742
7743 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
7744 M:      Antonino Daplas <adaplas@gmail.com>
7745 L:      linux-fbdev@vger.kernel.org
7746 S:      Maintained
7747 F:      drivers/video/fbdev/riva/
7748 F:      drivers/video/fbdev/nvidia/
7749
7750 NVM EXPRESS DRIVER
7751 M:      Keith Busch <keith.busch@intel.com>
7752 M:      Jens Axboe <axboe@fb.com>
7753 L:      linux-nvme@lists.infradead.org
7754 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
7755 W:      https://kernel.googlesource.com/pub/scm/linux/kernel/git/axboe/linux-block/
7756 S:      Supported
7757 F:      drivers/nvme/host/
7758 F:      include/linux/nvme.h
7759
7760 NVMEM FRAMEWORK
7761 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
7762 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
7763 S:      Maintained
7764 F:      drivers/nvmem/
7765 F:      Documentation/devicetree/bindings/nvmem/
7766 F:      include/linux/nvmem-consumer.h
7767 F:      include/linux/nvmem-provider.h
7768
7769 NXP-NCI NFC DRIVER
7770 M:      ClĂ©ment Perrochaud <clement.perrochaud@effinnov.com>
7771 R:      Charles Gorand <charles.gorand@effinnov.com>
7772 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
7773 S:      Supported
7774 F:      drivers/nfc/nxp-nci
7775
7776 NXP TDA998X DRM DRIVER
7777 M:      Russell King <rmk+kernel@arm.linux.org.uk>
7778 S:      Supported
7779 F:      drivers/gpu/drm/i2c/tda998x_drv.c
7780 F:      include/drm/i2c/tda998x.h
7781
7782 NXP TFA9879 DRIVER
7783 M:      Peter Rosin <peda@axentia.se>
7784 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7785 S:      Maintained
7786 F:      sound/soc/codecs/tfa9879*
7787
7788 OMAP SUPPORT
7789 M:      Tony Lindgren <tony@atomide.com>
7790 L:      linux-omap@vger.kernel.org
7791 W:      http://www.muru.com/linux/omap/
7792 W:      http://linux.omap.com/
7793 Q:      http://patchwork.kernel.org/project/linux-omap/list/
7794 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
7795 S:      Maintained
7796 F:      arch/arm/*omap*/
7797 F:      arch/arm/configs/omap1_defconfig
7798 F:      arch/arm/configs/omap2plus_defconfig
7799 F:      drivers/i2c/busses/i2c-omap.c
7800 F:      drivers/irqchip/irq-omap-intc.c
7801 F:      drivers/mfd/*omap*.c
7802 F:      drivers/mfd/menelaus.c
7803 F:      drivers/mfd/palmas.c
7804 F:      drivers/mfd/tps65217.c
7805 F:      drivers/mfd/tps65218.c
7806 F:      drivers/mfd/tps65910.c
7807 F:      drivers/mfd/twl-core.[ch]
7808 F:      drivers/mfd/twl4030*.c
7809 F:      drivers/mfd/twl6030*.c
7810 F:      drivers/mfd/twl6040*.c
7811 F:      drivers/regulator/palmas-regulator*.c
7812 F:      drivers/regulator/pbias-regulator.c
7813 F:      drivers/regulator/tps65217-regulator.c
7814 F:      drivers/regulator/tps65218-regulator.c
7815 F:      drivers/regulator/tps65910-regulator.c
7816 F:      drivers/regulator/twl-regulator.c
7817 F:      include/linux/i2c-omap.h
7818
7819 OMAP DEVICE TREE SUPPORT
7820 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7821 M:      Tony Lindgren <tony@atomide.com>
7822 L:      linux-omap@vger.kernel.org
7823 L:      devicetree@vger.kernel.org
7824 S:      Maintained
7825 F:      arch/arm/boot/dts/*omap*
7826 F:      arch/arm/boot/dts/*am3*
7827 F:      arch/arm/boot/dts/*am4*
7828 F:      arch/arm/boot/dts/*am5*
7829 F:      arch/arm/boot/dts/*dra7*
7830
7831 OMAP CLOCK FRAMEWORK SUPPORT
7832 M:      Paul Walmsley <paul@pwsan.com>
7833 L:      linux-omap@vger.kernel.org
7834 S:      Maintained
7835 F:      arch/arm/*omap*/*clock*
7836
7837 OMAP POWER MANAGEMENT SUPPORT
7838 M:      Kevin Hilman <khilman@deeprootsystems.com>
7839 L:      linux-omap@vger.kernel.org
7840 S:      Maintained
7841 F:      arch/arm/*omap*/*pm*
7842 F:      drivers/cpufreq/omap-cpufreq.c
7843
7844 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
7845 M:      Rajendra Nayak <rnayak@ti.com>
7846 M:      Paul Walmsley <paul@pwsan.com>
7847 L:      linux-omap@vger.kernel.org
7848 S:      Maintained
7849 F:      arch/arm/mach-omap2/prm*
7850
7851 OMAP AUDIO SUPPORT
7852 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
7853 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
7854 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7855 L:      linux-omap@vger.kernel.org
7856 S:      Maintained
7857 F:      sound/soc/omap/
7858
7859 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
7860 M:      Roger Quadros <rogerq@ti.com>
7861 M:      Tony Lindgren <tony@atomide.com>
7862 L:      linux-omap@vger.kernel.org
7863 S:      Maintained
7864 F:      drivers/memory/omap-gpmc.c
7865 F:      arch/arm/mach-omap2/*gpmc*
7866
7867 OMAP FRAMEBUFFER SUPPORT
7868 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
7869 L:      linux-fbdev@vger.kernel.org
7870 L:      linux-omap@vger.kernel.org
7871 S:      Maintained
7872 F:      drivers/video/fbdev/omap/
7873
7874 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
7875 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
7876 L:      linux-omap@vger.kernel.org
7877 L:      linux-fbdev@vger.kernel.org
7878 S:      Maintained
7879 F:      drivers/video/fbdev/omap2/
7880 F:      Documentation/arm/OMAP/DSS
7881
7882 OMAP HARDWARE SPINLOCK SUPPORT
7883 M:      Ohad Ben-Cohen <ohad@wizery.com>
7884 L:      linux-omap@vger.kernel.org
7885 S:      Maintained
7886 F:      drivers/hwspinlock/omap_hwspinlock.c
7887
7888 OMAP MMC SUPPORT
7889 M:      Jarkko Lavinen <jarkko.lavinen@nokia.com>
7890 L:      linux-omap@vger.kernel.org
7891 S:      Maintained
7892 F:      drivers/mmc/host/omap.c
7893
7894 OMAP HS MMC SUPPORT
7895 L:      linux-mmc@vger.kernel.org
7896 L:      linux-omap@vger.kernel.org
7897 S:      Orphan
7898 F:      drivers/mmc/host/omap_hsmmc.c
7899
7900 OMAP RANDOM NUMBER GENERATOR SUPPORT
7901 M:      Deepak Saxena <dsaxena@plexity.net>
7902 S:      Maintained
7903 F:      drivers/char/hw_random/omap-rng.c
7904
7905 OMAP HWMOD SUPPORT
7906 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7907 M:      Paul Walmsley <paul@pwsan.com>
7908 L:      linux-omap@vger.kernel.org
7909 S:      Maintained
7910 F:      arch/arm/mach-omap2/omap_hwmod.*
7911
7912 OMAP HWMOD DATA
7913 M:      Paul Walmsley <paul@pwsan.com>
7914 L:      linux-omap@vger.kernel.org
7915 S:      Maintained
7916 F:      arch/arm/mach-omap2/omap_hwmod*data*
7917
7918 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
7919 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7920 L:      linux-omap@vger.kernel.org
7921 S:      Maintained
7922 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
7923
7924 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
7925 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7926 L:      linux-media@vger.kernel.org
7927 S:      Maintained
7928 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
7929 F:      drivers/media/platform/omap3isp/
7930 F:      drivers/staging/media/omap4iss/
7931
7932 OMAP USB SUPPORT
7933 M:      Felipe Balbi <balbi@kernel.org>
7934 L:      linux-usb@vger.kernel.org
7935 L:      linux-omap@vger.kernel.org
7936 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7937 S:      Maintained
7938 F:      drivers/usb/*/*omap*
7939 F:      arch/arm/*omap*/usb*
7940
7941 OMAP GPIO DRIVER
7942 M:      Grygorii Strashko <grygorii.strashko@ti.com>
7943 M:      Santosh Shilimkar <ssantosh@kernel.org>
7944 M:      Kevin Hilman <khilman@deeprootsystems.com>
7945 L:      linux-omap@vger.kernel.org
7946 S:      Maintained
7947 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
7948 F:      drivers/gpio/gpio-omap.c
7949
7950 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
7951 M:      Mark Jackson <mpfj@newflow.co.uk>
7952 L:      linux-omap@vger.kernel.org
7953 S:      Maintained
7954 F:      arch/arm/boot/dts/am335x-nano.dts
7955
7956 OMFS FILESYSTEM
7957 M:      Bob Copeland <me@bobcopeland.com>
7958 L:      linux-karma-devel@lists.sourceforge.net
7959 S:      Maintained
7960 F:      Documentation/filesystems/omfs.txt
7961 F:      fs/omfs/
7962
7963 OMNIKEY CARDMAN 4000 DRIVER
7964 M:      Harald Welte <laforge@gnumonks.org>
7965 S:      Maintained
7966 F:      drivers/char/pcmcia/cm4000_cs.c
7967 F:      include/linux/cm4000_cs.h
7968 F:      include/uapi/linux/cm4000_cs.h
7969
7970 OMNIKEY CARDMAN 4040 DRIVER
7971 M:      Harald Welte <laforge@gnumonks.org>
7972 S:      Maintained
7973 F:      drivers/char/pcmcia/cm4040_cs.*
7974
7975 OMNIVISION OV7670 SENSOR DRIVER
7976 M:      Jonathan Corbet <corbet@lwn.net>
7977 L:      linux-media@vger.kernel.org
7978 T:      git git://linuxtv.org/media_tree.git
7979 S:      Maintained
7980 F:      drivers/media/i2c/ov7670.c
7981
7982 ONENAND FLASH DRIVER
7983 M:      Kyungmin Park <kyungmin.park@samsung.com>
7984 L:      linux-mtd@lists.infradead.org
7985 S:      Maintained
7986 F:      drivers/mtd/onenand/
7987 F:      include/linux/mtd/onenand*.h
7988
7989 ONSTREAM SCSI TAPE DRIVER
7990 M:      Willem Riede <osst@riede.org>
7991 L:      osst-users@lists.sourceforge.net
7992 L:      linux-scsi@vger.kernel.org
7993 S:      Maintained
7994 F:      Documentation/scsi/osst.txt
7995 F:      drivers/scsi/osst.*
7996 F:      drivers/scsi/osst_*.h
7997 F:      drivers/scsi/st.h
7998
7999 OPENCORES I2C BUS DRIVER
8000 M:      Peter Korsgaard <jacmet@sunsite.dk>
8001 L:      linux-i2c@vger.kernel.org
8002 S:      Maintained
8003 F:      Documentation/i2c/busses/i2c-ocores
8004 F:      drivers/i2c/busses/i2c-ocores.c
8005
8006 OPEN FIRMWARE AND FLATTENED DEVICE TREE
8007 M:      Rob Herring <robh+dt@kernel.org>
8008 M:      Frank Rowand <frowand.list@gmail.com>
8009 M:      Grant Likely <grant.likely@linaro.org>
8010 L:      devicetree@vger.kernel.org
8011 W:      http://www.devicetree.org/
8012 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/glikely/linux.git
8013 S:      Maintained
8014 F:      drivers/of/
8015 F:      include/linux/of*.h
8016 F:      scripts/dtc/
8017
8018 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
8019 M:      Rob Herring <robh+dt@kernel.org>
8020 M:      Pawel Moll <pawel.moll@arm.com>
8021 M:      Mark Rutland <mark.rutland@arm.com>
8022 M:      Ian Campbell <ijc+devicetree@hellion.org.uk>
8023 M:      Kumar Gala <galak@codeaurora.org>
8024 L:      devicetree@vger.kernel.org
8025 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
8026 S:      Maintained
8027 F:      Documentation/devicetree/
8028 F:      arch/*/boot/dts/
8029 F:      include/dt-bindings/
8030
8031 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
8032 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
8033 L:      devicetree@vger.kernel.org
8034 S:      Maintained
8035 F:      Documentation/devicetree/dynamic-resolution-notes.txt
8036 F:      Documentation/devicetree/overlay-notes.txt
8037 F:      drivers/of/overlay.c
8038 F:      drivers/of/resolver.c
8039
8040 OPENRISC ARCHITECTURE
8041 M:      Jonas Bonn <jonas@southpole.se>
8042 W:      http://openrisc.net
8043 L:      linux@lists.openrisc.net (moderated for non-subscribers)
8044 S:      Maintained
8045 T:      git git://openrisc.net/~jonas/linux
8046 F:      arch/openrisc/
8047
8048 OPENVSWITCH
8049 M:      Pravin Shelar <pshelar@nicira.com>
8050 L:      netdev@vger.kernel.org
8051 L:      dev@openvswitch.org
8052 W:      http://openvswitch.org
8053 S:      Maintained
8054 F:      net/openvswitch/
8055 F:      include/uapi/linux/openvswitch.h
8056
8057 OPERATING PERFORMANCE POINTS (OPP)
8058 M:      Viresh Kumar <vireshk@kernel.org>
8059 M:      Nishanth Menon <nm@ti.com>
8060 M:      Stephen Boyd <sboyd@codeaurora.org>
8061 L:      linux-pm@vger.kernel.org
8062 S:      Maintained
8063 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
8064 F:      drivers/base/power/opp/
8065 F:      include/linux/pm_opp.h
8066 F:      Documentation/power/opp.txt
8067 F:      Documentation/devicetree/bindings/opp/
8068
8069 OPL4 DRIVER
8070 M:      Clemens Ladisch <clemens@ladisch.de>
8071 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8072 T:      git git://git.alsa-project.org/alsa-kernel.git
8073 S:      Maintained
8074 F:      sound/drivers/opl4/
8075
8076 OPROFILE
8077 M:      Robert Richter <rric@kernel.org>
8078 L:      oprofile-list@lists.sf.net
8079 S:      Maintained
8080 F:      arch/*/include/asm/oprofile*.h
8081 F:      arch/*/oprofile/
8082 F:      drivers/oprofile/
8083 F:      include/linux/oprofile.h
8084
8085 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
8086 M:      Mark Fasheh <mfasheh@suse.com>
8087 M:      Joel Becker <jlbec@evilplan.org>
8088 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
8089 W:      http://ocfs2.wiki.kernel.org
8090 S:      Supported
8091 F:      Documentation/filesystems/ocfs2.txt
8092 F:      Documentation/filesystems/dlmfs.txt
8093 F:      fs/ocfs2/
8094
8095 ORINOCO DRIVER
8096 L:      linux-wireless@vger.kernel.org
8097 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
8098 W:      http://www.nongnu.org/orinoco/
8099 S:      Orphan
8100 F:      drivers/net/wireless/intersil/orinoco/
8101
8102 OSD LIBRARY and FILESYSTEM
8103 M:      Boaz Harrosh <ooo@electrozaur.com>
8104 M:      Benny Halevy <bhalevy@primarydata.com>
8105 L:      osd-dev@open-osd.org
8106 W:      http://open-osd.org
8107 T:      git git://git.open-osd.org/open-osd.git
8108 S:      Maintained
8109 F:      drivers/scsi/osd/
8110 F:      include/scsi/osd_*
8111 F:      fs/exofs/
8112
8113 OVERLAY FILESYSTEM
8114 M:      Miklos Szeredi <miklos@szeredi.hu>
8115 L:      linux-unionfs@vger.kernel.org
8116 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
8117 S:      Supported
8118 F:      fs/overlayfs/
8119 F:      Documentation/filesystems/overlayfs.txt
8120
8121 P54 WIRELESS DRIVER
8122 M:      Christian Lamparter <chunkeey@googlemail.com>
8123 L:      linux-wireless@vger.kernel.org
8124 W:      http://wireless.kernel.org/en/users/Drivers/p54
8125 S:      Maintained
8126 F:      drivers/net/wireless/intersil/p54/
8127
8128 PA SEMI ETHERNET DRIVER
8129 M:      Olof Johansson <olof@lixom.net>
8130 L:      netdev@vger.kernel.org
8131 S:      Maintained
8132 F:      drivers/net/ethernet/pasemi/*
8133
8134 PA SEMI SMBUS DRIVER
8135 M:      Olof Johansson <olof@lixom.net>
8136 L:      linux-i2c@vger.kernel.org
8137 S:      Maintained
8138 F:      drivers/i2c/busses/i2c-pasemi.c
8139
8140 PADATA PARALLEL EXECUTION MECHANISM
8141 M:      Steffen Klassert <steffen.klassert@secunet.com>
8142 L:      linux-crypto@vger.kernel.org
8143 S:      Maintained
8144 F:      kernel/padata.c
8145 F:      include/linux/padata.h
8146 F:      Documentation/padata.txt
8147
8148 PANASONIC LAPTOP ACPI EXTRAS DRIVER
8149 M:      Harald Welte <laforge@gnumonks.org>
8150 L:      platform-driver-x86@vger.kernel.org
8151 S:      Maintained
8152 F:      drivers/platform/x86/panasonic-laptop.c
8153
8154 PANASONIC MN10300/AM33/AM34 PORT
8155 M:      David Howells <dhowells@redhat.com>
8156 M:      Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
8157 L:      linux-am33-list@redhat.com (moderated for non-subscribers)
8158 W:      ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
8159 S:      Maintained
8160 F:      Documentation/mn10300/
8161 F:      arch/mn10300/
8162
8163 PARALLEL LCD/KEYPAD PANEL DRIVER
8164 M:      Willy Tarreau <willy@haproxy.com>
8165 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
8166 S:      Odd Fixes
8167 F:      Documentation/misc-devices/lcd-panel-cgram.txt
8168 F:      drivers/misc/panel.c
8169
8170 PARALLEL PORT SUBSYSTEM
8171 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
8172 M:      Sudip Mukherjee <sudip@vectorindia.org>
8173 L:      linux-parport@lists.infradead.org (subscribers-only)
8174 S:      Maintained
8175 F:      drivers/parport/
8176 F:      include/linux/parport*.h
8177 F:      drivers/char/ppdev.c
8178 F:      include/uapi/linux/ppdev.h
8179 F:      Documentation/parport*.txt
8180
8181 PARAVIRT_OPS INTERFACE
8182 M:      Jeremy Fitzhardinge <jeremy@goop.org>
8183 M:      Chris Wright <chrisw@sous-sol.org>
8184 M:      Alok Kataria <akataria@vmware.com>
8185 M:      Rusty Russell <rusty@rustcorp.com.au>
8186 L:      virtualization@lists.linux-foundation.org
8187 S:      Supported
8188 F:      Documentation/virtual/paravirt_ops.txt
8189 F:      arch/*/kernel/paravirt*
8190 F:      arch/*/include/asm/paravirt.h
8191
8192 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
8193 M:      Tim Waugh <tim@cyberelk.net>
8194 L:      linux-parport@lists.infradead.org (subscribers-only)
8195 S:      Maintained
8196 F:      Documentation/blockdev/paride.txt
8197 F:      drivers/block/paride/
8198
8199 PARISC ARCHITECTURE
8200 M:      "James E.J. Bottomley" <jejb@parisc-linux.org>
8201 M:      Helge Deller <deller@gmx.de>
8202 L:      linux-parisc@vger.kernel.org
8203 W:      http://www.parisc-linux.org/
8204 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
8205 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
8206 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
8207 S:      Maintained
8208 F:      arch/parisc/
8209 F:      Documentation/parisc/
8210 F:      drivers/parisc/
8211 F:      drivers/char/agp/parisc-agp.c
8212 F:      drivers/input/serio/gscps2.c
8213 F:      drivers/parport/parport_gsc.*
8214 F:      drivers/tty/serial/8250/8250_gsc.c
8215 F:      drivers/video/fbdev/sti*
8216 F:      drivers/video/console/sti*
8217 F:      drivers/video/logo/logo_parisc*
8218
8219 PC87360 HARDWARE MONITORING DRIVER
8220 M:      Jim Cromie <jim.cromie@gmail.com>
8221 L:      lm-sensors@lm-sensors.org
8222 S:      Maintained
8223 F:      Documentation/hwmon/pc87360
8224 F:      drivers/hwmon/pc87360.c
8225
8226 PC8736x GPIO DRIVER
8227 M:      Jim Cromie <jim.cromie@gmail.com>
8228 S:      Maintained
8229 F:      drivers/char/pc8736x_gpio.c
8230
8231 PC87427 HARDWARE MONITORING DRIVER
8232 M:      Jean Delvare <jdelvare@suse.com>
8233 L:      lm-sensors@lm-sensors.org
8234 S:      Maintained
8235 F:      Documentation/hwmon/pc87427
8236 F:      drivers/hwmon/pc87427.c
8237
8238 PCA9532 LED DRIVER
8239 M:      Riku Voipio <riku.voipio@iki.fi>
8240 S:      Maintained
8241 F:      drivers/leds/leds-pca9532.c
8242 F:      include/linux/leds-pca9532.h
8243
8244 PCA9541 I2C BUS MASTER SELECTOR DRIVER
8245 M:      Guenter Roeck <linux@roeck-us.net>
8246 L:      linux-i2c@vger.kernel.org
8247 S:      Maintained
8248 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
8249
8250 PCDP - PRIMARY CONSOLE AND DEBUG PORT
8251 M:      Khalid Aziz <khalid@gonehiking.org>
8252 S:      Maintained
8253 F:      drivers/firmware/pcdp.*
8254
8255 PCI ERROR RECOVERY
8256 M:      Linas Vepstas <linasvepstas@gmail.com>
8257 L:      linux-pci@vger.kernel.org
8258 S:      Supported
8259 F:      Documentation/PCI/pci-error-recovery.txt
8260
8261 PCI SUBSYSTEM
8262 M:      Bjorn Helgaas <bhelgaas@google.com>
8263 L:      linux-pci@vger.kernel.org
8264 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
8265 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
8266 S:      Supported
8267 F:      Documentation/PCI/
8268 F:      drivers/pci/
8269 F:      include/linux/pci*
8270 F:      arch/x86/pci/
8271 F:      arch/x86/kernel/quirks.c
8272
8273 PCI DRIVER FOR ALTERA PCIE IP
8274 M:      Ley Foon Tan <lftan@altera.com>
8275 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
8276 L:      linux-pci@vger.kernel.org
8277 S:      Supported
8278 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
8279 F:      drivers/pci/host/pcie-altera.c
8280
8281 PCI DRIVER FOR ARM VERSATILE PLATFORM
8282 M:      Rob Herring <robh@kernel.org>
8283 L:      linux-pci@vger.kernel.org
8284 L:      linux-arm-kernel@lists.infradead.org
8285 S:      Maintained
8286 F:      Documentation/devicetree/bindings/pci/versatile.txt
8287 F:      drivers/pci/host/pci-versatile.c
8288
8289 PCI DRIVER FOR APPLIEDMICRO XGENE
8290 M:      Tanmay Inamdar <tinamdar@apm.com>
8291 L:      linux-pci@vger.kernel.org
8292 L:      linux-arm-kernel@lists.infradead.org
8293 S:      Maintained
8294 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
8295 F:      drivers/pci/host/pci-xgene.c
8296
8297 PCI DRIVER FOR FREESCALE LAYERSCAPE
8298 M:      Minghuan Lian <minghuan.Lian@freescale.com>
8299 M:      Mingkai Hu <mingkai.hu@freescale.com>
8300 M:      Roy Zang <tie-fei.zang@freescale.com>
8301 L:      linuxppc-dev@lists.ozlabs.org
8302 L:      linux-pci@vger.kernel.org
8303 L:      linux-arm-kernel@lists.infradead.org
8304 S:      Maintained
8305 F:      drivers/pci/host/*layerscape*
8306
8307 PCI DRIVER FOR IMX6
8308 M:      Richard Zhu <Richard.Zhu@freescale.com>
8309 M:      Lucas Stach <l.stach@pengutronix.de>
8310 L:      linux-pci@vger.kernel.org
8311 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8312 S:      Maintained
8313 F:      drivers/pci/host/*imx6*
8314
8315 PCI DRIVER FOR TI KEYSTONE
8316 M:      Murali Karicheri <m-karicheri2@ti.com>
8317 L:      linux-pci@vger.kernel.org
8318 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8319 S:      Maintained
8320 F:      drivers/pci/host/*keystone*
8321
8322 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
8323 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8324 M:      Jason Cooper <jason@lakedaemon.net>
8325 L:      linux-pci@vger.kernel.org
8326 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8327 S:      Maintained
8328 F:      drivers/pci/host/*mvebu*
8329
8330 PCI DRIVER FOR NVIDIA TEGRA
8331 M:      Thierry Reding <thierry.reding@gmail.com>
8332 L:      linux-tegra@vger.kernel.org
8333 L:      linux-pci@vger.kernel.org
8334 S:      Supported
8335 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
8336 F:      drivers/pci/host/pci-tegra.c
8337
8338 PCI DRIVER FOR TI DRA7XX
8339 M:      Kishon Vijay Abraham I <kishon@ti.com>
8340 L:      linux-omap@vger.kernel.org
8341 L:      linux-pci@vger.kernel.org
8342 S:      Supported
8343 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
8344 F:      drivers/pci/host/pci-dra7xx.c
8345
8346 PCI DRIVER FOR RENESAS R-CAR
8347 M:      Simon Horman <horms@verge.net.au>
8348 L:      linux-pci@vger.kernel.org
8349 L:      linux-renesas-soc@vger.kernel.org
8350 S:      Maintained
8351 F:      drivers/pci/host/*rcar*
8352
8353 PCI DRIVER FOR SAMSUNG EXYNOS
8354 M:      Jingoo Han <jingoohan1@gmail.com>
8355 L:      linux-pci@vger.kernel.org
8356 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8357 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8358 S:      Maintained
8359 F:      drivers/pci/host/pci-exynos.c
8360
8361 PCI DRIVER FOR SYNOPSIS DESIGNWARE
8362 M:      Jingoo Han <jingoohan1@gmail.com>
8363 M:      Pratyush Anand <pratyush.anand@gmail.com>
8364 L:      linux-pci@vger.kernel.org
8365 S:      Maintained
8366 F:      drivers/pci/host/*designware*
8367
8368 PCI DRIVER FOR GENERIC OF HOSTS
8369 M:      Will Deacon <will.deacon@arm.com>
8370 L:      linux-pci@vger.kernel.org
8371 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8372 S:      Maintained
8373 F:      Documentation/devicetree/bindings/pci/host-generic-pci.txt
8374 F:      drivers/pci/host/pci-host-generic.c
8375
8376 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
8377 M:      Keith Busch <keith.busch@intel.com>
8378 L:      linux-pci@vger.kernel.org
8379 S:      Supported
8380 F:      arch/x86/pci/vmd.c
8381
8382 PCIE DRIVER FOR ST SPEAR13XX
8383 M:      Pratyush Anand <pratyush.anand@gmail.com>
8384 L:      linux-pci@vger.kernel.org
8385 S:      Maintained
8386 F:      drivers/pci/host/*spear*
8387
8388 PCI MSI DRIVER FOR ALTERA MSI IP
8389 M:      Ley Foon Tan <lftan@altera.com>
8390 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
8391 L:      linux-pci@vger.kernel.org
8392 S:      Supported
8393 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
8394 F:      drivers/pci/host/pcie-altera-msi.c
8395
8396 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
8397 M:      Duc Dang <dhdang@apm.com>
8398 L:      linux-pci@vger.kernel.org
8399 L:      linux-arm-kernel@lists.infradead.org
8400 S:      Maintained
8401 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
8402 F:      drivers/pci/host/pci-xgene-msi.c
8403
8404 PCIE DRIVER FOR HISILICON
8405 M:      Zhou Wang <wangzhou1@hisilicon.com>
8406 M:      Gabriele Paoloni <gabriele.paoloni@huawei.com>
8407 L:      linux-pci@vger.kernel.org
8408 S:      Maintained
8409 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
8410 F:      drivers/pci/host/pcie-hisi.c
8411
8412 PCIE DRIVER FOR QUALCOMM MSM
8413 M:     Stanimir Varbanov <svarbanov@mm-sol.com>
8414 L:     linux-pci@vger.kernel.org
8415 L:     linux-arm-msm@vger.kernel.org
8416 S:     Maintained
8417 F:     drivers/pci/host/*qcom*
8418
8419 PCMCIA SUBSYSTEM
8420 P:      Linux PCMCIA Team
8421 L:      linux-pcmcia@lists.infradead.org
8422 W:      http://lists.infradead.org/mailman/listinfo/linux-pcmcia
8423 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
8424 S:      Maintained
8425 F:      Documentation/pcmcia/
8426 F:      drivers/pcmcia/
8427 F:      include/pcmcia/
8428
8429 PCNET32 NETWORK DRIVER
8430 M:      Don Fry <pcnet32@frontier.com>
8431 L:      netdev@vger.kernel.org
8432 S:      Maintained
8433 F:      drivers/net/ethernet/amd/pcnet32.c
8434
8435 PCRYPT PARALLEL CRYPTO ENGINE
8436 M:      Steffen Klassert <steffen.klassert@secunet.com>
8437 L:      linux-crypto@vger.kernel.org
8438 S:      Maintained
8439 F:      crypto/pcrypt.c
8440 F:      include/crypto/pcrypt.h
8441
8442 PER-CPU MEMORY ALLOCATOR
8443 M:      Tejun Heo <tj@kernel.org>
8444 M:      Christoph Lameter <cl@linux-foundation.org>
8445 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
8446 S:      Maintained
8447 F:      include/linux/percpu*.h
8448 F:      mm/percpu*.c
8449 F:      arch/*/include/asm/percpu.h
8450
8451 PER-TASK DELAY ACCOUNTING
8452 M:      Balbir Singh <bsingharora@gmail.com>
8453 S:      Maintained
8454 F:      include/linux/delayacct.h
8455 F:      kernel/delayacct.c
8456
8457 PERFORMANCE EVENTS SUBSYSTEM
8458 M:      Peter Zijlstra <peterz@infradead.org>
8459 M:      Ingo Molnar <mingo@redhat.com>
8460 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
8461 L:      linux-kernel@vger.kernel.org
8462 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
8463 S:      Supported
8464 F:      kernel/events/*
8465 F:      include/linux/perf_event.h
8466 F:      include/uapi/linux/perf_event.h
8467 F:      arch/*/kernel/perf_event*.c
8468 F:      arch/*/kernel/*/perf_event*.c
8469 F:      arch/*/kernel/*/*/perf_event*.c
8470 F:      arch/*/include/asm/perf_event.h
8471 F:      arch/*/kernel/perf_callchain.c
8472 F:      tools/perf/
8473
8474 PERSONALITY HANDLING
8475 M:      Christoph Hellwig <hch@infradead.org>
8476 L:      linux-abi-devel@lists.sourceforge.net
8477 S:      Maintained
8478 F:      include/linux/personality.h
8479 F:      include/uapi/linux/personality.h
8480
8481 PHONET PROTOCOL
8482 M:      Remi Denis-Courmont <courmisch@gmail.com>
8483 S:      Supported
8484 F:      Documentation/networking/phonet.txt
8485 F:      include/linux/phonet.h
8486 F:      include/net/phonet/
8487 F:      include/uapi/linux/phonet.h
8488 F:      net/phonet/
8489
8490 PHRAM MTD DRIVER
8491 M:      Joern Engel <joern@lazybastard.org>
8492 L:      linux-mtd@lists.infradead.org
8493 S:      Maintained
8494 F:      drivers/mtd/devices/phram.c
8495
8496 PICOLCD HID DRIVER
8497 M:      Bruno PrĂ©mont <bonbons@linux-vserver.org>
8498 L:      linux-input@vger.kernel.org
8499 S:      Maintained
8500 F:      drivers/hid/hid-picolcd*
8501
8502 PICOXCELL SUPPORT
8503 M:      Jamie Iles <jamie@jamieiles.com>
8504 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8505 T:      git git://github.com/jamieiles/linux-2.6-ji.git
8506 S:      Supported
8507 F:      arch/arm/boot/dts/picoxcell*
8508 F:      arch/arm/mach-picoxcell/
8509 F:      drivers/crypto/picoxcell*
8510
8511 PIN CONTROL SUBSYSTEM
8512 M:      Linus Walleij <linus.walleij@linaro.org>
8513 L:      linux-gpio@vger.kernel.org
8514 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
8515 S:      Maintained
8516 F:      drivers/pinctrl/
8517 F:      include/linux/pinctrl/
8518
8519 PIN CONTROLLER - ATMEL AT91
8520 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
8521 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8522 S:      Maintained
8523 F:      drivers/pinctrl/pinctrl-at91.*
8524
8525 PIN CONTROLLER - ATMEL AT91 PIO4
8526 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
8527 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8528 L:      linux-gpio@vger.kernel.org
8529 S:      Supported
8530 F:      drivers/pinctrl/pinctrl-at91-pio4.*
8531
8532 PIN CONTROLLER - INTEL
8533 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8534 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
8535 S:      Maintained
8536 F:      drivers/pinctrl/intel/
8537
8538 PIN CONTROLLER - RENESAS
8539 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8540 M:      Geert Uytterhoeven <geert+renesas@glider.be>
8541 L:      linux-renesas-soc@vger.kernel.org
8542 S:      Maintained
8543 F:      drivers/pinctrl/sh-pfc/
8544
8545 PIN CONTROLLER - SAMSUNG
8546 M:      Tomasz Figa <tomasz.figa@gmail.com>
8547 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8548 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8549 S:      Maintained
8550 F:      drivers/pinctrl/samsung/
8551
8552 PIN CONTROLLER - SINGLE
8553 M:      Tony Lindgren <tony@atomide.com>
8554 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
8555 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8556 L:      linux-omap@vger.kernel.org
8557 S:      Maintained
8558 F:      drivers/pinctrl/pinctrl-single.c
8559
8560 PIN CONTROLLER - ST SPEAR
8561 M:      Viresh Kumar <vireshk@kernel.org>
8562 L:      spear-devel@list.st.com
8563 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8564 W:      http://www.st.com/spear
8565 S:      Maintained
8566 F:      drivers/pinctrl/spear/
8567
8568 PKTCDVD DRIVER
8569 M:      Jiri Kosina <jikos@kernel.org>
8570 S:      Maintained
8571 F:      drivers/block/pktcdvd.c
8572 F:      include/linux/pktcdvd.h
8573 F:      include/uapi/linux/pktcdvd.h
8574
8575 PKUNITY SOC DRIVERS
8576 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
8577 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
8578 S:      Maintained
8579 T:      git git://github.com/gxt/linux.git
8580 F:      drivers/input/serio/i8042-unicore32io.h
8581 F:      drivers/i2c/busses/i2c-puv3.c
8582 F:      drivers/video/fbdev/fb-puv3.c
8583 F:      drivers/rtc/rtc-puv3.c
8584
8585 PMBUS HARDWARE MONITORING DRIVERS
8586 M:      Guenter Roeck <linux@roeck-us.net>
8587 L:      lm-sensors@lm-sensors.org
8588 W:      http://www.lm-sensors.org/
8589 W:      http://www.roeck-us.net/linux/drivers/
8590 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8591 S:      Maintained
8592 F:      Documentation/hwmon/pmbus
8593 F:      drivers/hwmon/pmbus/
8594 F:      include/linux/i2c/pmbus.h
8595
8596 PMC SIERRA MaxRAID DRIVER
8597 L:      linux-scsi@vger.kernel.org
8598 W:      http://www.pmc-sierra.com/
8599 S:      Orphan
8600 F:      drivers/scsi/pmcraid.*
8601
8602 PMC SIERRA PM8001 DRIVER
8603 M:      Jack Wang <jinpu.wang@profitbricks.com>
8604 M:      lindar_liu@usish.com
8605 L:      pmchba@pmcs.com
8606 L:      linux-scsi@vger.kernel.org
8607 S:      Supported
8608 F:      drivers/scsi/pm8001/
8609
8610 POSIX CLOCKS and TIMERS
8611 M:      Thomas Gleixner <tglx@linutronix.de>
8612 L:      linux-kernel@vger.kernel.org
8613 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8614 S:      Maintained
8615 F:      fs/timerfd.c
8616 F:      include/linux/timer*
8617 F:      kernel/time/*timer*
8618
8619 POWER MANAGEMENT CORE
8620 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
8621 L:      linux-pm@vger.kernel.org
8622 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
8623 S:      Supported
8624 F:      drivers/base/power/
8625 F:      include/linux/pm.h
8626 F:      include/linux/pm_*
8627 F:      include/linux/powercap.h
8628 F:      drivers/powercap/
8629
8630 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
8631 M:      Sebastian Reichel <sre@kernel.org>
8632 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
8633 M:      David Woodhouse <dwmw2@infradead.org>
8634 L:      linux-pm@vger.kernel.org
8635 T:      git git://git.infradead.org/battery-2.6.git
8636 S:      Maintained
8637 F:      include/linux/power_supply.h
8638 F:      drivers/power/
8639 X:      drivers/power/avs/
8640
8641 POWER STATE COORDINATION INTERFACE (PSCI)
8642 M:      Mark Rutland <mark.rutland@arm.com>
8643 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
8644 L:      linux-arm-kernel@lists.infradead.org
8645 S:      Maintained
8646 F:      drivers/firmware/psci.c
8647 F:      include/linux/psci.h
8648 F:      include/uapi/linux/psci.h
8649
8650 PNP SUPPORT
8651 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
8652 S:      Maintained
8653 F:      drivers/pnp/
8654
8655 PPP PROTOCOL DRIVERS AND COMPRESSORS
8656 M:      Paul Mackerras <paulus@samba.org>
8657 L:      linux-ppp@vger.kernel.org
8658 S:      Maintained
8659 F:      drivers/net/ppp/ppp_*
8660
8661 PPP OVER ATM (RFC 2364)
8662 M:      Mitchell Blank Jr <mitch@sfgoth.com>
8663 S:      Maintained
8664 F:      net/atm/pppoatm.c
8665 F:      include/uapi/linux/atmppp.h
8666
8667 PPP OVER ETHERNET
8668 M:      Michal Ostrowski <mostrows@earthlink.net>
8669 S:      Maintained
8670 F:      drivers/net/ppp/pppoe.c
8671 F:      drivers/net/ppp/pppox.c
8672
8673 PPP OVER L2TP
8674 M:      James Chapman <jchapman@katalix.com>
8675 S:      Maintained
8676 F:      net/l2tp/l2tp_ppp.c
8677 F:      include/linux/if_pppol2tp.h
8678 F:      include/uapi/linux/if_pppol2tp.h
8679
8680 PPS SUPPORT
8681 M:      Rodolfo Giometti <giometti@enneenne.com>
8682 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
8683 L:      linuxpps@ml.enneenne.com (subscribers-only)
8684 S:      Maintained
8685 F:      Documentation/pps/
8686 F:      drivers/pps/
8687 F:      include/linux/pps*.h
8688
8689 PPTP DRIVER
8690 M:      Dmitry Kozlov <xeb@mail.ru>
8691 L:      netdev@vger.kernel.org
8692 S:      Maintained
8693 F:      drivers/net/ppp/pptp.c
8694 W:      http://sourceforge.net/projects/accel-pptp
8695
8696 PREEMPTIBLE KERNEL
8697 M:      Robert Love <rml@tech9.net>
8698 L:      kpreempt-tech@lists.sourceforge.net
8699 W:      ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
8700 S:      Supported
8701 F:      Documentation/preempt-locking.txt
8702 F:      include/linux/preempt.h
8703
8704 PRISM54 WIRELESS DRIVER
8705 M:      "Luis R. Rodriguez" <mcgrof@gmail.com>
8706 L:      linux-wireless@vger.kernel.org
8707 W:      http://wireless.kernel.org/en/users/Drivers/p54
8708 S:      Obsolete
8709 F:      drivers/net/wireless/intersil/prism54/
8710
8711 PS3 NETWORK SUPPORT
8712 M:      Geoff Levand <geoff@infradead.org>
8713 L:      netdev@vger.kernel.org
8714 L:      linuxppc-dev@lists.ozlabs.org
8715 S:      Maintained
8716 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
8717
8718 PS3 PLATFORM SUPPORT
8719 M:      Geoff Levand <geoff@infradead.org>
8720 L:      linuxppc-dev@lists.ozlabs.org
8721 S:      Maintained
8722 F:      arch/powerpc/boot/ps3*
8723 F:      arch/powerpc/include/asm/lv1call.h
8724 F:      arch/powerpc/include/asm/ps3*.h
8725 F:      arch/powerpc/platforms/ps3/
8726 F:      drivers/*/ps3*
8727 F:      drivers/ps3/
8728 F:      drivers/rtc/rtc-ps3.c
8729 F:      drivers/usb/host/*ps3.c
8730 F:      sound/ppc/snd_ps3*
8731
8732 PS3VRAM DRIVER
8733 M:      Jim Paris <jim@jtan.com>
8734 M:      Geoff Levand <geoff@infradead.org>
8735 L:      linuxppc-dev@lists.ozlabs.org
8736 S:      Maintained
8737 F:      drivers/block/ps3vram.c
8738
8739 PSTORE FILESYSTEM
8740 M:      Anton Vorontsov <anton@enomsg.org>
8741 M:      Colin Cross <ccross@android.com>
8742 M:      Kees Cook <keescook@chromium.org>
8743 M:      Tony Luck <tony.luck@intel.com>
8744 S:      Maintained
8745 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
8746 F:      fs/pstore/
8747 F:      include/linux/pstore*
8748 F:      drivers/firmware/efi/efi-pstore.c
8749 F:      drivers/acpi/apei/erst.c
8750
8751 PTP HARDWARE CLOCK SUPPORT
8752 M:      Richard Cochran <richardcochran@gmail.com>
8753 L:      netdev@vger.kernel.org
8754 S:      Maintained
8755 W:      http://linuxptp.sourceforge.net/
8756 F:      Documentation/ABI/testing/sysfs-ptp
8757 F:      Documentation/ptp/*
8758 F:      drivers/net/ethernet/freescale/gianfar_ptp.c
8759 F:      drivers/net/phy/dp83640*
8760 F:      drivers/ptp/*
8761 F:      include/linux/ptp_cl*
8762
8763 PTRACE SUPPORT
8764 M:      Roland McGrath <roland@hack.frob.com>
8765 M:      Oleg Nesterov <oleg@redhat.com>
8766 S:      Maintained
8767 F:      include/asm-generic/syscall.h
8768 F:      include/linux/ptrace.h
8769 F:      include/linux/regset.h
8770 F:      include/linux/tracehook.h
8771 F:      include/uapi/linux/ptrace.h
8772 F:      kernel/ptrace.c
8773
8774 PVRUSB2 VIDEO4LINUX DRIVER
8775 M:      Mike Isely <isely@pobox.com>
8776 L:      pvrusb2@isely.net       (subscribers-only)
8777 L:      linux-media@vger.kernel.org
8778 W:      http://www.isely.net/pvrusb2/
8779 T:      git git://linuxtv.org/media_tree.git
8780 S:      Maintained
8781 F:      Documentation/video4linux/README.pvrusb2
8782 F:      drivers/media/usb/pvrusb2/
8783
8784 PWC WEBCAM DRIVER
8785 M:      Hans de Goede <hdegoede@redhat.com>
8786 L:      linux-media@vger.kernel.org
8787 T:      git git://linuxtv.org/media_tree.git
8788 S:      Maintained
8789 F:      drivers/media/usb/pwc/*
8790
8791 PWM FAN DRIVER
8792 M:      Kamil Debski <k.debski@samsung.com>
8793 L:      lm-sensors@lm-sensors.org
8794 S:      Supported
8795 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
8796 F:      Documentation/hwmon/pwm-fan
8797 F:      drivers/hwmon/pwm-fan.c
8798
8799 PWM SUBSYSTEM
8800 M:      Thierry Reding <thierry.reding@gmail.com>
8801 L:      linux-pwm@vger.kernel.org
8802 S:      Maintained
8803 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
8804 F:      Documentation/pwm.txt
8805 F:      Documentation/devicetree/bindings/pwm/
8806 F:      include/linux/pwm.h
8807 F:      drivers/pwm/
8808 F:      drivers/video/backlight/pwm_bl.c
8809 F:      include/linux/pwm_backlight.h
8810
8811 PXA2xx/PXA3xx SUPPORT
8812 M:      Daniel Mack <daniel@zonque.org>
8813 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
8814 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8815 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8816 T:      git git://github.com/hzhuang1/linux.git
8817 T:      git git://github.com/rjarzmik/linux.git
8818 S:      Maintained
8819 F:      arch/arm/boot/dts/pxa*
8820 F:      arch/arm/mach-pxa/
8821 F:      drivers/dma/pxa*
8822 F:      drivers/pcmcia/pxa2xx*
8823 F:      drivers/pinctrl/pxa/
8824 F:      drivers/spi/spi-pxa2xx*
8825 F:      drivers/usb/gadget/udc/pxa2*
8826 F:      include/sound/pxa2xx-lib.h
8827 F:      sound/arm/pxa*
8828 F:      sound/soc/pxa/
8829
8830 PXA GPIO DRIVER
8831 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8832 L:      linux-gpio@vger.kernel.org
8833 S:      Maintained
8834 F:      drivers/gpio/gpio-pxa.c
8835
8836 PXA3xx NAND FLASH DRIVER
8837 M:      Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
8838 L:      linux-mtd@lists.infradead.org
8839 S:      Maintained
8840 F:      drivers/mtd/nand/pxa3xx_nand.c
8841
8842 MMP SUPPORT
8843 M:      Eric Miao <eric.y.miao@gmail.com>
8844 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
8845 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8846 T:      git git://github.com/hzhuang1/linux.git
8847 T:      git git://git.linaro.org/people/ycmiao/pxa-linux.git
8848 S:      Maintained
8849 F:      arch/arm/boot/dts/mmp*
8850 F:      arch/arm/mach-mmp/
8851
8852 PXA MMCI DRIVER
8853 S:      Orphan
8854
8855 PXA RTC DRIVER
8856 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8857 L:      rtc-linux@googlegroups.com
8858 S:      Maintained
8859
8860 QAT DRIVER
8861 M:      Tadeusz Struk <tadeusz.struk@intel.com>
8862 L:      qat-linux@intel.com
8863 S:      Supported
8864 F:      drivers/crypto/qat/
8865
8866 QIB DRIVER
8867 M:      Mike Marciniszyn <infinipath@intel.com>
8868 L:      linux-rdma@vger.kernel.org
8869 S:      Supported
8870 F:      drivers/infiniband/hw/qib/
8871
8872 QLOGIC QLA1280 SCSI DRIVER
8873 M:      Michael Reed <mdr@sgi.com>
8874 L:      linux-scsi@vger.kernel.org
8875 S:      Maintained
8876 F:      drivers/scsi/qla1280.[ch]
8877
8878 QLOGIC QLA2XXX FC-SCSI DRIVER
8879 M:      qla2xxx-upstream@qlogic.com
8880 L:      linux-scsi@vger.kernel.org
8881 S:      Supported
8882 F:      Documentation/scsi/LICENSE.qla2xxx
8883 F:      drivers/scsi/qla2xxx/
8884
8885 QLOGIC QLA4XXX iSCSI DRIVER
8886 M:      QLogic-Storage-Upstream@qlogic.com
8887 L:      linux-scsi@vger.kernel.org
8888 S:      Supported
8889 F:      Documentation/scsi/LICENSE.qla4xxx
8890 F:      drivers/scsi/qla4xxx/
8891
8892 QLOGIC QLA3XXX NETWORK DRIVER
8893 M:      Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
8894 M:      Ron Mercer <ron.mercer@qlogic.com>
8895 M:      linux-driver@qlogic.com
8896 L:      netdev@vger.kernel.org
8897 S:      Supported
8898 F:      Documentation/networking/LICENSE.qla3xxx
8899 F:      drivers/net/ethernet/qlogic/qla3xxx.*
8900
8901 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
8902 M:      Dept-GELinuxNICDev@qlogic.com
8903 L:      netdev@vger.kernel.org
8904 S:      Supported
8905 F:      drivers/net/ethernet/qlogic/qlcnic/
8906
8907 QLOGIC QLGE 10Gb ETHERNET DRIVER
8908 M:      Harish Patil <harish.patil@qlogic.com>
8909 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
8910 M:      Dept-GELinuxNICDev@qlogic.com
8911 M:      linux-driver@qlogic.com
8912 L:      netdev@vger.kernel.org
8913 S:      Supported
8914 F:      drivers/net/ethernet/qlogic/qlge/
8915
8916 QLOGIC QL4xxx ETHERNET DRIVER
8917 M:      Yuval Mintz <Yuval.Mintz@qlogic.com>
8918 M:      Ariel Elior <Ariel.Elior@qlogic.com>
8919 M:      everest-linux-l2@qlogic.com
8920 L:      netdev@vger.kernel.org
8921 S:      Supported
8922 F:      drivers/net/ethernet/qlogic/qed/
8923 F:      include/linux/qed/
8924 F:      drivers/net/ethernet/qlogic/qede/
8925
8926 QNX4 FILESYSTEM
8927 M:      Anders Larsen <al@alarsen.net>
8928 W:      http://www.alarsen.net/linux/qnx4fs/
8929 S:      Maintained
8930 F:      fs/qnx4/
8931 F:      include/uapi/linux/qnx4_fs.h
8932 F:      include/uapi/linux/qnxtypes.h
8933
8934 QT1010 MEDIA DRIVER
8935 M:      Antti Palosaari <crope@iki.fi>
8936 L:      linux-media@vger.kernel.org
8937 W:      https://linuxtv.org
8938 W:      http://palosaari.fi/linux/
8939 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8940 T:      git git://linuxtv.org/anttip/media_tree.git
8941 S:      Maintained
8942 F:      drivers/media/tuners/qt1010*
8943
8944 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
8945 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
8946 L:      linux-wireless@vger.kernel.org
8947 L:      ath9k-devel@lists.ath9k.org
8948 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
8949 S:      Supported
8950 F:      drivers/net/wireless/ath/ath9k/
8951
8952 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
8953 M:      Kalle Valo <kvalo@qca.qualcomm.com>
8954 L:      ath10k@lists.infradead.org
8955 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
8956 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
8957 S:      Supported
8958 F:      drivers/net/wireless/ath/ath10k/
8959
8960 QUALCOMM HEXAGON ARCHITECTURE
8961 M:      Richard Kuo <rkuo@codeaurora.org>
8962 L:      linux-hexagon@vger.kernel.org
8963 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rkuo/linux-hexagon-kernel.git
8964 S:      Supported
8965 F:      arch/hexagon/
8966
8967 QUALCOMM WCN36XX WIRELESS DRIVER
8968 M:      Eugene Krasnikov <k.eugene.e@gmail.com>
8969 L:      wcn36xx@lists.infradead.org
8970 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
8971 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
8972 S:      Supported
8973 F:      drivers/net/wireless/ath/wcn36xx/
8974
8975 RADOS BLOCK DEVICE (RBD)
8976 M:      Ilya Dryomov <idryomov@gmail.com>
8977 M:      Sage Weil <sage@redhat.com>
8978 M:      Alex Elder <elder@kernel.org>
8979 L:      ceph-devel@vger.kernel.org
8980 W:      http://ceph.com/
8981 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
8982 T:      git git://github.com/ceph/ceph-client.git
8983 S:      Supported
8984 F:      Documentation/ABI/testing/sysfs-bus-rbd
8985 F:      drivers/block/rbd.c
8986 F:      drivers/block/rbd_types.h
8987
8988 RADEON FRAMEBUFFER DISPLAY DRIVER
8989 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
8990 L:      linux-fbdev@vger.kernel.org
8991 S:      Maintained
8992 F:      drivers/video/fbdev/aty/radeon*
8993 F:      include/uapi/linux/radeonfb.h
8994
8995 RADIOSHARK RADIO DRIVER
8996 M:      Hans de Goede <hdegoede@redhat.com>
8997 L:      linux-media@vger.kernel.org
8998 T:      git git://linuxtv.org/media_tree.git
8999 S:      Maintained
9000 F:      drivers/media/radio/radio-shark.c
9001
9002 RADIOSHARK2 RADIO DRIVER
9003 M:      Hans de Goede <hdegoede@redhat.com>
9004 L:      linux-media@vger.kernel.org
9005 T:      git git://linuxtv.org/media_tree.git
9006 S:      Maintained
9007 F:      drivers/media/radio/radio-shark2.c
9008 F:      drivers/media/radio/radio-tea5777.c
9009
9010 RAGE128 FRAMEBUFFER DISPLAY DRIVER
9011 M:      Paul Mackerras <paulus@samba.org>
9012 L:      linux-fbdev@vger.kernel.org
9013 S:      Maintained
9014 F:      drivers/video/fbdev/aty/aty128fb.c
9015
9016 RALINK MIPS ARCHITECTURE
9017 M:      John Crispin <blogic@openwrt.org>
9018 L:      linux-mips@linux-mips.org
9019 S:      Maintained
9020 F:      arch/mips/ralink
9021
9022 RALINK RT2X00 WIRELESS LAN DRIVER
9023 P:      rt2x00 project
9024 M:      Stanislaw Gruszka <sgruszka@redhat.com>
9025 M:      Helmut Schaa <helmut.schaa@googlemail.com>
9026 L:      linux-wireless@vger.kernel.org
9027 S:      Maintained
9028 F:      drivers/net/wireless/ralink/rt2x00/
9029
9030 RAMDISK RAM BLOCK DEVICE DRIVER
9031 M:      Jens Axboe <axboe@kernel.dk>
9032 S:      Maintained
9033 F:      Documentation/blockdev/ramdisk.txt
9034 F:      drivers/block/brd.c
9035
9036 RANDOM NUMBER DRIVER
9037 M:      "Theodore Ts'o" <tytso@mit.edu>
9038 S:      Maintained
9039 F:      drivers/char/random.c
9040
9041 RAPIDIO SUBSYSTEM
9042 M:      Matt Porter <mporter@kernel.crashing.org>
9043 M:      Alexandre Bounine <alexandre.bounine@idt.com>
9044 S:      Maintained
9045 F:      drivers/rapidio/
9046
9047 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
9048 L:      linux-wireless@vger.kernel.org
9049 S:      Orphan
9050 F:      drivers/net/wireless/ray*
9051
9052 RCUTORTURE MODULE
9053 M:      Josh Triplett <josh@joshtriplett.org>
9054 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9055 L:      linux-kernel@vger.kernel.org
9056 S:      Supported
9057 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9058 F:      Documentation/RCU/torture.txt
9059 F:      kernel/rcu/rcutorture.c
9060
9061 RCUTORTURE TEST FRAMEWORK
9062 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9063 M:      Josh Triplett <josh@joshtriplett.org>
9064 R:      Steven Rostedt <rostedt@goodmis.org>
9065 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9066 R:      Lai Jiangshan <jiangshanlai@gmail.com>
9067 L:      linux-kernel@vger.kernel.org
9068 S:      Supported
9069 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9070 F:      tools/testing/selftests/rcutorture
9071
9072 RDC R-321X SoC
9073 M:      Florian Fainelli <florian@openwrt.org>
9074 S:      Maintained
9075
9076 RDC R6040 FAST ETHERNET DRIVER
9077 M:      Florian Fainelli <florian@openwrt.org>
9078 L:      netdev@vger.kernel.org
9079 S:      Maintained
9080 F:      drivers/net/ethernet/rdc/r6040.c
9081
9082 RDS - RELIABLE DATAGRAM SOCKETS
9083 M:      Chien Yen <chien.yen@oracle.com>
9084 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
9085 S:      Supported
9086 F:      net/rds/
9087
9088 READ-COPY UPDATE (RCU)
9089 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9090 M:      Josh Triplett <josh@joshtriplett.org>
9091 R:      Steven Rostedt <rostedt@goodmis.org>
9092 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9093 R:      Lai Jiangshan <jiangshanlai@gmail.com>
9094 L:      linux-kernel@vger.kernel.org
9095 W:      http://www.rdrop.com/users/paulmck/RCU/
9096 S:      Supported
9097 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9098 F:      Documentation/RCU/
9099 X:      Documentation/RCU/torture.txt
9100 F:      include/linux/rcu*
9101 X:      include/linux/srcu.h
9102 F:      kernel/rcu/
9103 X:      kernel/torture.c
9104
9105 REAL TIME CLOCK (RTC) SUBSYSTEM
9106 M:      Alessandro Zummo <a.zummo@towertech.it>
9107 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
9108 L:      rtc-linux@googlegroups.com
9109 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
9110 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
9111 S:      Maintained
9112 F:      Documentation/rtc.txt
9113 F:      drivers/rtc/
9114 F:      include/linux/rtc.h
9115 F:      include/uapi/linux/rtc.h
9116
9117 REALTEK AUDIO CODECS
9118 M:      Bard Liao <bardliao@realtek.com>
9119 M:      Oder Chiou <oder_chiou@realtek.com>
9120 S:      Maintained
9121 F:      sound/soc/codecs/rt*
9122 F:      include/sound/rt*.h
9123
9124 REISERFS FILE SYSTEM
9125 L:      reiserfs-devel@vger.kernel.org
9126 S:      Supported
9127 F:      fs/reiserfs/
9128
9129 REGISTER MAP ABSTRACTION
9130 M:      Mark Brown <broonie@kernel.org>
9131 L:      linux-kernel@vger.kernel.org
9132 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
9133 S:      Supported
9134 F:      drivers/base/regmap/
9135 F:      include/linux/regmap.h
9136
9137 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
9138 M:      Ohad Ben-Cohen <ohad@wizery.com>
9139 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
9140 S:      Maintained
9141 F:      drivers/remoteproc/
9142 F:      Documentation/remoteproc.txt
9143 F:      include/linux/remoteproc.h
9144
9145 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
9146 M:      Ohad Ben-Cohen <ohad@wizery.com>
9147 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
9148 S:      Maintained
9149 F:      drivers/rpmsg/
9150 F:      Documentation/rpmsg.txt
9151 F:      include/linux/rpmsg.h
9152
9153 RENESAS ETHERNET DRIVERS
9154 R:      Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
9155 L:      netdev@vger.kernel.org
9156 L:      linux-renesas-soc@vger.kernel.org
9157 F:      drivers/net/ethernet/renesas/
9158 F:      include/linux/sh_eth.h
9159
9160 RENESAS USB2 PHY DRIVER
9161 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
9162 L:      linux-renesas-soc@vger.kernel.org
9163 S:      Maintained
9164 F:      drivers/phy/phy-rcar-gen3-usb2.c
9165
9166 RESET CONTROLLER FRAMEWORK
9167 M:      Philipp Zabel <p.zabel@pengutronix.de>
9168 T:      git git://git.pengutronix.de/git/pza/linux
9169 S:      Maintained
9170 F:      drivers/reset/
9171 F:      Documentation/devicetree/bindings/reset/
9172 F:      include/dt-bindings/reset/
9173 F:      include/linux/reset.h
9174 F:      include/linux/reset-controller.h
9175
9176 RFKILL
9177 M:      Johannes Berg <johannes@sipsolutions.net>
9178 L:      linux-wireless@vger.kernel.org
9179 W:      http://wireless.kernel.org/
9180 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
9181 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
9182 S:      Maintained
9183 F:      Documentation/rfkill.txt
9184 F:      net/rfkill/
9185
9186 RHASHTABLE
9187 M:      Thomas Graf <tgraf@suug.ch>
9188 L:      netdev@vger.kernel.org
9189 S:      Maintained
9190 F:      lib/rhashtable.c
9191 F:      include/linux/rhashtable.h
9192
9193 RICOH SMARTMEDIA/XD DRIVER
9194 M:      Maxim Levitsky <maximlevitsky@gmail.com>
9195 S:      Maintained
9196 F:      drivers/mtd/nand/r852.c
9197 F:      drivers/mtd/nand/r852.h
9198
9199 RICOH R5C592 MEMORYSTICK DRIVER
9200 M:      Maxim Levitsky <maximlevitsky@gmail.com>
9201 S:      Maintained
9202 F:      drivers/memstick/host/r592.*
9203
9204 ROCCAT DRIVERS
9205 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
9206 W:      http://sourceforge.net/projects/roccat/
9207 S:      Maintained
9208 F:      drivers/hid/hid-roccat*
9209 F:      include/linux/hid-roccat*
9210 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
9211
9212 ROCKER DRIVER
9213 M:      Jiri Pirko <jiri@resnulli.us>
9214 M:      Scott Feldman <sfeldma@gmail.com>
9215 L:      netdev@vger.kernel.org
9216 S:      Supported
9217 F:      drivers/net/ethernet/rocker/
9218
9219 ROCKETPORT DRIVER
9220 P:      Comtrol Corp.
9221 W:      http://www.comtrol.com
9222 S:      Maintained
9223 F:      Documentation/serial/rocket.txt
9224 F:      drivers/tty/rocket*
9225
9226 ROCKETPORT EXPRESS/INFINITY DRIVER
9227 M:      Kevin Cernekee <cernekee@gmail.com>
9228 L:      linux-serial@vger.kernel.org
9229 S:      Odd Fixes
9230 F:      drivers/tty/serial/rp2.*
9231
9232 ROSE NETWORK LAYER
9233 M:      Ralf Baechle <ralf@linux-mips.org>
9234 L:      linux-hams@vger.kernel.org
9235 W:      http://www.linux-ax25.org/
9236 S:      Maintained
9237 F:      include/net/rose.h
9238 F:      include/uapi/linux/rose.h
9239 F:      net/rose/
9240
9241 RTL2830 MEDIA DRIVER
9242 M:      Antti Palosaari <crope@iki.fi>
9243 L:      linux-media@vger.kernel.org
9244 W:      https://linuxtv.org
9245 W:      http://palosaari.fi/linux/
9246 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9247 T:      git git://linuxtv.org/anttip/media_tree.git
9248 S:      Maintained
9249 F:      drivers/media/dvb-frontends/rtl2830*
9250
9251 RTL2832 MEDIA DRIVER
9252 M:      Antti Palosaari <crope@iki.fi>
9253 L:      linux-media@vger.kernel.org
9254 W:      https://linuxtv.org
9255 W:      http://palosaari.fi/linux/
9256 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9257 T:      git git://linuxtv.org/anttip/media_tree.git
9258 S:      Maintained
9259 F:      drivers/media/dvb-frontends/rtl2832*
9260
9261 RTL2832_SDR MEDIA DRIVER
9262 M:      Antti Palosaari <crope@iki.fi>
9263 L:      linux-media@vger.kernel.org
9264 W:      https://linuxtv.org
9265 W:      http://palosaari.fi/linux/
9266 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9267 T:      git git://linuxtv.org/anttip/media_tree.git
9268 S:      Maintained
9269 F:      drivers/media/dvb-frontends/rtl2832_sdr*
9270
9271 RTL8180 WIRELESS DRIVER
9272 L:      linux-wireless@vger.kernel.org
9273 W:      http://wireless.kernel.org/
9274 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9275 S:      Orphan
9276 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
9277
9278 RTL8187 WIRELESS DRIVER
9279 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
9280 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
9281 M:      Larry Finger <Larry.Finger@lwfinger.net>
9282 L:      linux-wireless@vger.kernel.org
9283 W:      http://wireless.kernel.org/
9284 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9285 S:      Maintained
9286 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
9287
9288 RTL8192CE WIRELESS DRIVER
9289 M:      Larry Finger <Larry.Finger@lwfinger.net>
9290 M:      Chaoming Li <chaoming_li@realsil.com.cn>
9291 L:      linux-wireless@vger.kernel.org
9292 W:      http://wireless.kernel.org/
9293 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9294 S:      Maintained
9295 F:      drivers/net/wireless/realtek/rtlwifi/
9296 F:      drivers/net/wireless/realtek/rtlwifi/rtl8192ce/
9297
9298 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
9299 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
9300 L:      linux-wireless@vger.kernel.org
9301 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8723au-mac80211
9302 S:      Maintained
9303 F:      drivers/net/wireless/realtek/rtl8xxxu/
9304
9305 S3 SAVAGE FRAMEBUFFER DRIVER
9306 M:      Antonino Daplas <adaplas@gmail.com>
9307 L:      linux-fbdev@vger.kernel.org
9308 S:      Maintained
9309 F:      drivers/video/fbdev/savage/
9310
9311 S390
9312 M:      Martin Schwidefsky <schwidefsky@de.ibm.com>
9313 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
9314 L:      linux-s390@vger.kernel.org
9315 W:      http://www.ibm.com/developerworks/linux/linux390/
9316 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
9317 S:      Supported
9318 F:      arch/s390/
9319 F:      drivers/s390/
9320 F:      Documentation/s390/
9321 F:      Documentation/DocBook/s390*
9322
9323 S390 COMMON I/O LAYER
9324 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
9325 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
9326 L:      linux-s390@vger.kernel.org
9327 W:      http://www.ibm.com/developerworks/linux/linux390/
9328 S:      Supported
9329 F:      drivers/s390/cio/
9330
9331 S390 DASD DRIVER
9332 M:      Stefan Weinhuber <wein@de.ibm.com>
9333 M:      Stefan Haberland <stefan.haberland@de.ibm.com>
9334 L:      linux-s390@vger.kernel.org
9335 W:      http://www.ibm.com/developerworks/linux/linux390/
9336 S:      Supported
9337 F:      drivers/s390/block/dasd*
9338 F:      block/partitions/ibm.c
9339
9340 S390 NETWORK DRIVERS
9341 M:      Ursula Braun <ubraun@linux.vnet.ibm.com>
9342 L:      linux-s390@vger.kernel.org
9343 W:      http://www.ibm.com/developerworks/linux/linux390/
9344 S:      Supported
9345 F:      drivers/s390/net/
9346
9347 S390 PCI SUBSYSTEM
9348 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
9349 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
9350 L:      linux-s390@vger.kernel.org
9351 W:      http://www.ibm.com/developerworks/linux/linux390/
9352 S:      Supported
9353 F:      arch/s390/pci/
9354 F:      drivers/pci/hotplug/s390_pci_hpc.c
9355
9356 S390 ZCRYPT DRIVER
9357 M:      Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
9358 L:      linux-s390@vger.kernel.org
9359 W:      http://www.ibm.com/developerworks/linux/linux390/
9360 S:      Supported
9361 F:      drivers/s390/crypto/
9362
9363 S390 ZFCP DRIVER
9364 M:      Steffen Maier <maier@linux.vnet.ibm.com>
9365 L:      linux-s390@vger.kernel.org
9366 W:      http://www.ibm.com/developerworks/linux/linux390/
9367 S:      Supported
9368 F:      drivers/s390/scsi/zfcp_*
9369
9370 S390 IUCV NETWORK LAYER
9371 M:      Ursula Braun <ubraun@linux.vnet.ibm.com>
9372 L:      linux-s390@vger.kernel.org
9373 W:      http://www.ibm.com/developerworks/linux/linux390/
9374 S:      Supported
9375 F:      drivers/s390/net/*iucv*
9376 F:      include/net/iucv/
9377 F:      net/iucv/
9378
9379 S390 IOMMU (PCI)
9380 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
9381 L:      linux-s390@vger.kernel.org
9382 W:      http://www.ibm.com/developerworks/linux/linux390/
9383 S:      Supported
9384 F:      drivers/iommu/s390-iommu.c
9385
9386 S3C24XX SD/MMC Driver
9387 M:      Ben Dooks <ben-linux@fluff.org>
9388 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9389 S:      Supported
9390 F:      drivers/mmc/host/s3cmci.*
9391
9392 SAA6588 RDS RECEIVER DRIVER
9393 M:      Hans Verkuil <hverkuil@xs4all.nl>
9394 L:      linux-media@vger.kernel.org
9395 T:      git git://linuxtv.org/media_tree.git
9396 W:      https://linuxtv.org
9397 S:      Odd Fixes
9398 F:      drivers/media/i2c/saa6588*
9399
9400 SAA7134 VIDEO4LINUX DRIVER
9401 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9402 L:      linux-media@vger.kernel.org
9403 W:      https://linuxtv.org
9404 T:      git git://linuxtv.org/media_tree.git
9405 S:      Odd fixes
9406 F:      Documentation/video4linux/*.saa7134
9407 F:      drivers/media/pci/saa7134/
9408
9409 SAA7146 VIDEO4LINUX-2 DRIVER
9410 M:      Hans Verkuil <hverkuil@xs4all.nl>
9411 L:      linux-media@vger.kernel.org
9412 T:      git git://linuxtv.org/media_tree.git
9413 S:      Maintained
9414 F:      drivers/media/common/saa7146/
9415 F:      drivers/media/pci/saa7146/
9416 F:      include/media/saa7146*
9417
9418 SAMSUNG LAPTOP DRIVER
9419 M:      Corentin Chary <corentin.chary@gmail.com>
9420 L:      platform-driver-x86@vger.kernel.org
9421 S:      Maintained
9422 F:      drivers/platform/x86/samsung-laptop.c
9423
9424 SAMSUNG AUDIO (ASoC) DRIVERS
9425 M:      Sangbeom Kim <sbkim73@samsung.com>
9426 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9427 S:      Supported
9428 F:      sound/soc/samsung/
9429
9430 SAMSUNG FRAMEBUFFER DRIVER
9431 M:      Jingoo Han <jingoohan1@gmail.com>
9432 L:      linux-fbdev@vger.kernel.org
9433 S:      Maintained
9434 F:      drivers/video/fbdev/s3c-fb.c
9435
9436 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
9437 M:      Sangbeom Kim <sbkim73@samsung.com>
9438 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
9439 L:      linux-kernel@vger.kernel.org
9440 L:      linux-samsung-soc@vger.kernel.org
9441 S:      Supported
9442 F:      drivers/mfd/sec*.c
9443 F:      drivers/regulator/s2m*.c
9444 F:      drivers/regulator/s5m*.c
9445 F:      drivers/clk/clk-s2mps11.c
9446 F:      drivers/rtc/rtc-s5m.c
9447 F:      include/linux/mfd/samsung/
9448 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
9449 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
9450 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
9451 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
9452
9453 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
9454 M:      Kyungmin Park <kyungmin.park@samsung.com>
9455 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
9456 L:      linux-media@vger.kernel.org
9457 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
9458 S:      Supported
9459 F:      drivers/media/platform/exynos4-is/
9460
9461 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
9462 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
9463 L:      linux-media@vger.kernel.org
9464 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9465 S:      Maintained
9466 F:      drivers/media/platform/s3c-camif/
9467 F:      include/media/drv-intf/s3c_camif.h
9468
9469 SAMSUNG S5C73M3 CAMERA DRIVER
9470 M:      Kyungmin Park <kyungmin.park@samsung.com>
9471 M:      Andrzej Hajda <a.hajda@samsung.com>
9472 L:      linux-media@vger.kernel.org
9473 S:      Supported
9474 F:      drivers/media/i2c/s5c73m3/*
9475
9476 SAMSUNG S5K5BAF CAMERA DRIVER
9477 M:      Kyungmin Park <kyungmin.park@samsung.com>
9478 M:      Andrzej Hajda <a.hajda@samsung.com>
9479 L:      linux-media@vger.kernel.org
9480 S:      Supported
9481 F:      drivers/media/i2c/s5k5baf.c
9482
9483 SAMSUNG S3FWRN5 NFC DRIVER
9484 M:      Robert Baldyga <r.baldyga@samsung.com>
9485 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
9486 S:      Supported
9487 F:      drivers/nfc/s3fwrn5
9488
9489 SAMSUNG SOC CLOCK DRIVERS
9490 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
9491 M:      Tomasz Figa <tomasz.figa@gmail.com>
9492 S:      Supported
9493 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9494 F:      drivers/clk/samsung/
9495
9496 SAMSUNG SXGBE DRIVERS
9497 M:      Byungho An <bh74.an@samsung.com>
9498 M:      Girish K S <ks.giri@samsung.com>
9499 M:      Vipul Pandya <vipul.pandya@samsung.com>
9500 S:      Supported
9501 L:      netdev@vger.kernel.org
9502 F:      drivers/net/ethernet/samsung/sxgbe/
9503
9504 SAMSUNG THERMAL DRIVER
9505 M:      Lukasz Majewski <l.majewski@samsung.com>
9506 L:      linux-pm@vger.kernel.org
9507 L:      linux-samsung-soc@vger.kernel.org
9508 S:      Supported
9509 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
9510 F:      drivers/thermal/samsung/
9511
9512 SAMSUNG USB2 PHY DRIVER
9513 M:      Kamil Debski <k.debski@samsung.com>
9514 L:      linux-kernel@vger.kernel.org
9515 S:      Supported
9516 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
9517 F:      Documentation/phy/samsung-usb2.txt
9518 F:      drivers/phy/phy-exynos4210-usb2.c
9519 F:      drivers/phy/phy-exynos4x12-usb2.c
9520 F:      drivers/phy/phy-exynos5250-usb2.c
9521 F:      drivers/phy/phy-s5pv210-usb2.c
9522 F:      drivers/phy/phy-samsung-usb2.c
9523 F:      drivers/phy/phy-samsung-usb2.h
9524
9525 SERIAL DRIVERS
9526 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9527 L:      linux-serial@vger.kernel.org
9528 S:      Maintained
9529 F:      drivers/tty/serial/
9530
9531 SYNOPSYS DESIGNWARE DMAC DRIVER
9532 M:      Viresh Kumar <vireshk@kernel.org>
9533 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9534 S:      Maintained
9535 F:      include/linux/dma/dw.h
9536 F:      include/linux/platform_data/dma-dw.h
9537 F:      drivers/dma/dw/
9538
9539 SYNOPSYS DESIGNWARE ETHERNET QOS 4.10a driver
9540 M: Lars Persson <lars.persson@axis.com>
9541 L: netdev@vger.kernel.org
9542 S: Supported
9543 F: Documentation/devicetree/bindings/net/snps,dwc-qos-ethernet.txt
9544 F: drivers/net/ethernet/synopsys/dwc_eth_qos.c
9545
9546 SYNOPSYS DESIGNWARE I2C DRIVER
9547 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9548 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
9549 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9550 L:      linux-i2c@vger.kernel.org
9551 S:      Maintained
9552 F:      drivers/i2c/busses/i2c-designware-*
9553 F:      include/linux/platform_data/i2c-designware.h
9554
9555 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
9556 M:      Jaehoon Chung <jh80.chung@samsung.com>
9557 L:      linux-mmc@vger.kernel.org
9558 S:      Maintained
9559 F:      include/linux/mmc/dw_mmc.h
9560 F:      drivers/mmc/host/dw_mmc*
9561
9562 SYSTEM TRACE MODULE CLASS
9563 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
9564 S:      Maintained
9565 F:      Documentation/trace/stm.txt
9566 F:      drivers/hwtracing/stm/
9567 F:      include/linux/stm.h
9568 F:      include/uapi/linux/stm.h
9569
9570 THUNDERBOLT DRIVER
9571 M:      Andreas Noever <andreas.noever@gmail.com>
9572 S:      Maintained
9573 F:      drivers/thunderbolt/
9574
9575 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
9576 M:      John Stultz <john.stultz@linaro.org>
9577 M:      Thomas Gleixner <tglx@linutronix.de>
9578 L:      linux-kernel@vger.kernel.org
9579 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
9580 S:      Supported
9581 F:      include/linux/clocksource.h
9582 F:      include/linux/time.h
9583 F:      include/linux/timex.h
9584 F:      include/uapi/linux/time.h
9585 F:      include/uapi/linux/timex.h
9586 F:      kernel/time/clocksource.c
9587 F:      kernel/time/time*.c
9588 F:      kernel/time/alarmtimer.c
9589 F:      kernel/time/ntp.c
9590 F:      tools/testing/selftests/timers/
9591
9592 SC1200 WDT DRIVER
9593 M:      Zwane Mwaikambo <zwanem@gmail.com>
9594 S:      Maintained
9595 F:      drivers/watchdog/sc1200wdt.c
9596
9597 SCHEDULER
9598 M:      Ingo Molnar <mingo@redhat.com>
9599 M:      Peter Zijlstra <peterz@infradead.org>
9600 L:      linux-kernel@vger.kernel.org
9601 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
9602 S:      Maintained
9603 F:      kernel/sched/
9604 F:      include/linux/sched.h
9605 F:      include/uapi/linux/sched.h
9606 F:      include/linux/wait.h
9607
9608 SCORE ARCHITECTURE
9609 M:      Chen Liqin <liqin.linux@gmail.com>
9610 M:      Lennox Wu <lennox.wu@gmail.com>
9611 W:      http://www.sunplus.com
9612 S:      Supported
9613 F:      arch/score/
9614
9615 SYSTEM CONTROL & POWER INTERFACE (SCPI) Message Protocol drivers
9616 M:      Sudeep Holla <sudeep.holla@arm.com>
9617 L:      linux-arm-kernel@lists.infradead.org
9618 S:      Maintained
9619 F:      Documentation/devicetree/bindings/arm/arm,scpi.txt
9620 F:      drivers/clk/clk-scpi.c
9621 F:      drivers/cpufreq/scpi-cpufreq.c
9622 F:      drivers/firmware/arm_scpi.c
9623 F:      include/linux/scpi_protocol.h
9624
9625 SCSI CDROM DRIVER
9626 M:      Jens Axboe <axboe@kernel.dk>
9627 L:      linux-scsi@vger.kernel.org
9628 W:      http://www.kernel.dk
9629 S:      Maintained
9630 F:      drivers/scsi/sr*
9631
9632 SCSI RDMA PROTOCOL (SRP) INITIATOR
9633 M:      Bart Van Assche <bart.vanassche@sandisk.com>
9634 L:      linux-rdma@vger.kernel.org
9635 S:      Supported
9636 W:      http://www.openfabrics.org
9637 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9638 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
9639 F:      drivers/infiniband/ulp/srp/
9640 F:      include/scsi/srp.h
9641
9642 SCSI SG DRIVER
9643 M:      Doug Gilbert <dgilbert@interlog.com>
9644 L:      linux-scsi@vger.kernel.org
9645 W:      http://sg.danny.cz/sg
9646 S:      Maintained
9647 F:      Documentation/scsi/scsi-generic.txt
9648 F:      drivers/scsi/sg.c
9649 F:      include/scsi/sg.h
9650
9651 SCSI SUBSYSTEM
9652 M:      "James E.J. Bottomley" <JBottomley@odin.com>
9653 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
9654 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
9655 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
9656 L:      linux-scsi@vger.kernel.org
9657 S:      Maintained
9658 F:      drivers/scsi/
9659 F:      include/scsi/
9660
9661 SCSI TAPE DRIVER
9662 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
9663 L:      linux-scsi@vger.kernel.org
9664 S:      Maintained
9665 F:      Documentation/scsi/st.txt
9666 F:      drivers/scsi/st.*
9667 F:      drivers/scsi/st_*.h
9668
9669 SCTP PROTOCOL
9670 M:      Vlad Yasevich <vyasevich@gmail.com>
9671 M:      Neil Horman <nhorman@tuxdriver.com>
9672 L:      linux-sctp@vger.kernel.org
9673 W:      http://lksctp.sourceforge.net
9674 S:      Maintained
9675 F:      Documentation/networking/sctp.txt
9676 F:      include/linux/sctp.h
9677 F:      include/uapi/linux/sctp.h
9678 F:      include/net/sctp/
9679 F:      net/sctp/
9680
9681 SCx200 CPU SUPPORT
9682 M:      Jim Cromie <jim.cromie@gmail.com>
9683 S:      Odd Fixes
9684 F:      Documentation/i2c/busses/scx200_acb
9685 F:      arch/x86/platform/scx200/
9686 F:      drivers/watchdog/scx200_wdt.c
9687 F:      drivers/i2c/busses/scx200*
9688 F:      drivers/mtd/maps/scx200_docflash.c
9689 F:      include/linux/scx200.h
9690
9691 SCx200 GPIO DRIVER
9692 M:      Jim Cromie <jim.cromie@gmail.com>
9693 S:      Maintained
9694 F:      drivers/char/scx200_gpio.c
9695 F:      include/linux/scx200_gpio.h
9696
9697 SCx200 HRT CLOCKSOURCE DRIVER
9698 M:      Jim Cromie <jim.cromie@gmail.com>
9699 S:      Maintained
9700 F:      drivers/clocksource/scx200_hrt.c
9701
9702 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
9703 M:      Sascha Sommer <saschasommer@freenet.de>
9704 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
9705 S:      Maintained
9706 F:      drivers/mmc/host/sdricoh_cs.c
9707
9708 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
9709 L:      linux-mmc@vger.kernel.org
9710 S:      Orphan
9711 F:      drivers/mmc/host/sdhci.*
9712 F:      drivers/mmc/host/sdhci-pltfm.[ch]
9713
9714 SECURE COMPUTING
9715 M:      Kees Cook <keescook@chromium.org>
9716 R:      Andy Lutomirski <luto@amacapital.net>
9717 R:      Will Drewry <wad@chromium.org>
9718 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
9719 S:      Supported
9720 F:      kernel/seccomp.c
9721 F:      include/uapi/linux/seccomp.h
9722 F:      include/linux/seccomp.h
9723 F:      tools/testing/selftests/seccomp/*
9724 K:      \bsecure_computing
9725 K:      \bTIF_SECCOMP\b
9726
9727 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
9728 M:      Ben Dooks <ben-linux@fluff.org>
9729 M:      Jaehoon Chung <jh80.chung@samsung.com>
9730 L:      linux-mmc@vger.kernel.org
9731 S:      Maintained
9732 F:      drivers/mmc/host/sdhci-s3c*
9733
9734 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
9735 M:      Viresh Kumar <vireshk@kernel.org>
9736 L:      spear-devel@list.st.com
9737 L:      linux-mmc@vger.kernel.org
9738 S:      Maintained
9739 F:      drivers/mmc/host/sdhci-spear.c
9740
9741 SECURITY SUBSYSTEM
9742 M:      James Morris <james.l.morris@oracle.com>
9743 M:      "Serge E. Hallyn" <serge@hallyn.com>
9744 L:      linux-security-module@vger.kernel.org (suggested Cc:)
9745 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
9746 W:      http://kernsec.org/
9747 S:      Supported
9748 F:      security/
9749
9750 SECURITY CONTACT
9751 M:      Security Officers <security@kernel.org>
9752 S:      Supported
9753
9754 SELINUX SECURITY MODULE
9755 M:      Paul Moore <paul@paul-moore.com>
9756 M:      Stephen Smalley <sds@tycho.nsa.gov>
9757 M:      Eric Paris <eparis@parisplace.org>
9758 L:      selinux@tycho.nsa.gov (moderated for non-subscribers)
9759 W:      http://selinuxproject.org
9760 T:      git git://git.infradead.org/users/pcmoore/selinux
9761 S:      Supported
9762 F:      include/linux/selinux*
9763 F:      security/selinux/
9764 F:      scripts/selinux/
9765
9766 APPARMOR SECURITY MODULE
9767 M:      John Johansen <john.johansen@canonical.com>
9768 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
9769 W:      apparmor.wiki.kernel.org
9770 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
9771 S:      Supported
9772 F:      security/apparmor/
9773
9774 YAMA SECURITY MODULE
9775 M:      Kees Cook <keescook@chromium.org>
9776 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
9777 S:      Supported
9778 F:      security/yama/
9779
9780 SENSABLE PHANTOM
9781 M:      Jiri Slaby <jirislaby@gmail.com>
9782 S:      Maintained
9783 F:      drivers/misc/phantom.c
9784 F:      include/uapi/linux/phantom.h
9785
9786 SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
9787 M:      Jayamohan Kallickal <jayamohan.kallickal@avagotech.com>
9788 M:      Ketan Mukadam <ketan.mukadam@avagotech.com>
9789 M:      John Soni Jose <sony.john@avagotech.com>
9790 L:      linux-scsi@vger.kernel.org
9791 W:      http://www.avagotech.com
9792 S:      Supported
9793 F:      drivers/scsi/be2iscsi/
9794
9795 Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER
9796 M:      Sathya Perla <sathya.perla@avagotech.com>
9797 M:      Ajit Khaparde <ajit.khaparde@avagotech.com>
9798 M:      Padmanabh Ratnakar <padmanabh.ratnakar@avagotech.com>
9799 M:      Sriharsha Basavapatna <sriharsha.basavapatna@avagotech.com>
9800 L:      netdev@vger.kernel.org
9801 W:      http://www.emulex.com
9802 S:      Supported
9803 F:      drivers/net/ethernet/emulex/benet/
9804
9805 EMULEX ONECONNECT ROCE DRIVER
9806 M:      Selvin Xavier <selvin.xavier@avagotech.com>
9807 M:      Devesh Sharma <devesh.sharma@avagotech.com>
9808 M:      Mitesh Ahuja <mitesh.ahuja@avagotech.com>
9809 L:      linux-rdma@vger.kernel.org
9810 W:      http://www.emulex.com
9811 S:      Supported
9812 F:      drivers/infiniband/hw/ocrdma/
9813
9814 SFC NETWORK DRIVER
9815 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
9816 M:      Shradha Shah <sshah@solarflare.com>
9817 L:      netdev@vger.kernel.org
9818 S:      Supported
9819 F:      drivers/net/ethernet/sfc/
9820
9821 SGI GRU DRIVER
9822 M:      Dimitri Sivanich <sivanich@sgi.com>
9823 S:      Maintained
9824 F:      drivers/misc/sgi-gru/
9825
9826 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
9827 M:      Pat Gefre <pfg@sgi.com>
9828 L:      linux-ia64@vger.kernel.org
9829 S:      Supported
9830 F:      Documentation/ia64/serial.txt
9831 F:      drivers/tty/serial/ioc?_serial.c
9832 F:      include/linux/ioc?.h
9833
9834 SGI XP/XPC/XPNET DRIVER
9835 M:      Cliff Whickman <cpw@sgi.com>
9836 M:      Robin Holt <robinmholt@gmail.com>
9837 S:      Maintained
9838 F:      drivers/misc/sgi-xp/
9839
9840 SI2157 MEDIA DRIVER
9841 M:      Antti Palosaari <crope@iki.fi>
9842 L:      linux-media@vger.kernel.org
9843 W:      https://linuxtv.org
9844 W:      http://palosaari.fi/linux/
9845 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9846 T:      git git://linuxtv.org/anttip/media_tree.git
9847 S:      Maintained
9848 F:      drivers/media/tuners/si2157*
9849
9850 SI2168 MEDIA DRIVER
9851 M:      Antti Palosaari <crope@iki.fi>
9852 L:      linux-media@vger.kernel.org
9853 W:      https://linuxtv.org
9854 W:      http://palosaari.fi/linux/
9855 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9856 T:      git git://linuxtv.org/anttip/media_tree.git
9857 S:      Maintained
9858 F:      drivers/media/dvb-frontends/si2168*
9859
9860 SI470X FM RADIO RECEIVER I2C DRIVER
9861 M:      Hans Verkuil <hverkuil@xs4all.nl>
9862 L:      linux-media@vger.kernel.org
9863 T:      git git://linuxtv.org/media_tree.git
9864 W:      https://linuxtv.org
9865 S:      Odd Fixes
9866 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
9867
9868 SI470X FM RADIO RECEIVER USB DRIVER
9869 M:      Hans Verkuil <hverkuil@xs4all.nl>
9870 L:      linux-media@vger.kernel.org
9871 T:      git git://linuxtv.org/media_tree.git
9872 W:      https://linuxtv.org
9873 S:      Maintained
9874 F:      drivers/media/radio/si470x/radio-si470x-common.c
9875 F:      drivers/media/radio/si470x/radio-si470x.h
9876 F:      drivers/media/radio/si470x/radio-si470x-usb.c
9877
9878 SI4713 FM RADIO TRANSMITTER I2C DRIVER
9879 M:      Eduardo Valentin <edubezval@gmail.com>
9880 L:      linux-media@vger.kernel.org
9881 T:      git git://linuxtv.org/media_tree.git
9882 W:      https://linuxtv.org
9883 S:      Odd Fixes
9884 F:      drivers/media/radio/si4713/si4713.?
9885
9886 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
9887 M:      Eduardo Valentin <edubezval@gmail.com>
9888 L:      linux-media@vger.kernel.org
9889 T:      git git://linuxtv.org/media_tree.git
9890 W:      https://linuxtv.org
9891 S:      Odd Fixes
9892 F:      drivers/media/radio/si4713/radio-platform-si4713.c
9893
9894 SI4713 FM RADIO TRANSMITTER USB DRIVER
9895 M:      Hans Verkuil <hverkuil@xs4all.nl>
9896 L:      linux-media@vger.kernel.org
9897 T:      git git://linuxtv.org/media_tree.git
9898 W:      https://linuxtv.org
9899 S:      Maintained
9900 F:      drivers/media/radio/si4713/radio-usb-si4713.c
9901
9902 SIANO DVB DRIVER
9903 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9904 L:      linux-media@vger.kernel.org
9905 W:      https://linuxtv.org
9906 T:      git git://linuxtv.org/media_tree.git
9907 S:      Odd fixes
9908 F:      drivers/media/common/siano/
9909 F:      drivers/media/usb/siano/
9910 F:      drivers/media/usb/siano/
9911 F:      drivers/media/mmc/siano/
9912
9913 SIMPLEFB FB DRIVER
9914 M:      Hans de Goede <hdegoede@redhat.com>
9915 L:      linux-fbdev@vger.kernel.org
9916 S:      Maintained
9917 F:      Documentation/devicetree/bindings/display/simple-framebuffer.txt
9918 F:      drivers/video/fbdev/simplefb.c
9919 F:      include/linux/platform_data/simplefb.h
9920
9921 SH_VEU V4L2 MEM2MEM DRIVER
9922 L:      linux-media@vger.kernel.org
9923 S:      Orphan
9924 F:      drivers/media/platform/sh_veu.c
9925
9926 SH_VOU V4L2 OUTPUT DRIVER
9927 L:      linux-media@vger.kernel.org
9928 S:      Orphan
9929 F:      drivers/media/platform/sh_vou.c
9930 F:      include/media/drv-intf/sh_vou.h
9931
9932 SIMPLE FIRMWARE INTERFACE (SFI)
9933 M:      Len Brown <lenb@kernel.org>
9934 L:      sfi-devel@simplefirmware.org
9935 W:      http://simplefirmware.org/
9936 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
9937 S:      Supported
9938 F:      arch/x86/platform/sfi/
9939 F:      drivers/sfi/
9940 F:      include/linux/sfi*.h
9941
9942 SIMTEC EB110ATX (Chalice CATS)
9943 P:      Ben Dooks
9944 P:      Vincent Sanders <vince@simtec.co.uk>
9945 M:      Simtec Linux Team <linux@simtec.co.uk>
9946 W:      http://www.simtec.co.uk/products/EB110ATX/
9947 S:      Supported
9948
9949 SIMTEC EB2410ITX (BAST)
9950 P:      Ben Dooks
9951 P:      Vincent Sanders <vince@simtec.co.uk>
9952 M:      Simtec Linux Team <linux@simtec.co.uk>
9953 W:      http://www.simtec.co.uk/products/EB2410ITX/
9954 S:      Supported
9955 F:      arch/arm/mach-s3c24xx/mach-bast.c
9956 F:      arch/arm/mach-s3c24xx/bast-ide.c
9957 F:      arch/arm/mach-s3c24xx/bast-irq.c
9958
9959 TI DAVINCI MACHINE SUPPORT
9960 M:      Sekhar Nori <nsekhar@ti.com>
9961 M:      Kevin Hilman <khilman@deeprootsystems.com>
9962 T:      git git://gitorious.org/linux-davinci/linux-davinci.git
9963 Q:      http://patchwork.kernel.org/project/linux-davinci/list/
9964 S:      Supported
9965 F:      arch/arm/mach-davinci/
9966 F:      drivers/i2c/busses/i2c-davinci.c
9967
9968 TI DAVINCI SERIES MEDIA DRIVER
9969 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9970 L:      linux-media@vger.kernel.org
9971 W:      https://linuxtv.org
9972 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9973 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9974 S:      Maintained
9975 F:      drivers/media/platform/davinci/
9976 F:      include/media/davinci/
9977
9978 TI AM437X VPFE DRIVER
9979 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9980 L:      linux-media@vger.kernel.org
9981 W:      https://linuxtv.org
9982 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9983 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9984 S:      Maintained
9985 F:      drivers/media/platform/am437x/
9986
9987 OV2659 OMNIVISION SENSOR DRIVER
9988 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9989 L:      linux-media@vger.kernel.org
9990 W:      https://linuxtv.org
9991 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9992 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9993 S:      Maintained
9994 F:      drivers/media/i2c/ov2659.c
9995 F:      include/media/i2c/ov2659.h
9996
9997 SILICON MOTION SM712 FRAME BUFFER DRIVER
9998 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
9999 M:      Teddy Wang <teddy.wang@siliconmotion.com>
10000 M:      Sudip Mukherjee <sudip@vectorindia.org>
10001 L:      linux-fbdev@vger.kernel.org
10002 S:      Maintained
10003 F:      drivers/video/fbdev/sm712*
10004 F:      Documentation/fb/sm712fb.txt
10005
10006 SIS 190 ETHERNET DRIVER
10007 M:      Francois Romieu <romieu@fr.zoreil.com>
10008 L:      netdev@vger.kernel.org
10009 S:      Maintained
10010 F:      drivers/net/ethernet/sis/sis190.c
10011
10012 SIS 900/7016 FAST ETHERNET DRIVER
10013 M:      Daniele Venzano <venza@brownhat.org>
10014 W:      http://www.brownhat.org/sis900.html
10015 L:      netdev@vger.kernel.org
10016 S:      Maintained
10017 F:      drivers/net/ethernet/sis/sis900.*
10018
10019 SIS FRAMEBUFFER DRIVER
10020 M:      Thomas Winischhofer <thomas@winischhofer.net>
10021 W:      http://www.winischhofer.net/linuxsisvga.shtml
10022 S:      Maintained
10023 F:      Documentation/fb/sisfb.txt
10024 F:      drivers/video/fbdev/sis/
10025 F:      include/video/sisfb.h
10026
10027 SIS USB2VGA DRIVER
10028 M:      Thomas Winischhofer <thomas@winischhofer.net>
10029 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
10030 S:      Maintained
10031 F:      drivers/usb/misc/sisusbvga/
10032
10033 SLAB ALLOCATOR
10034 M:      Christoph Lameter <cl@linux.com>
10035 M:      Pekka Enberg <penberg@kernel.org>
10036 M:      David Rientjes <rientjes@google.com>
10037 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
10038 M:      Andrew Morton <akpm@linux-foundation.org>
10039 L:      linux-mm@kvack.org
10040 S:      Maintained
10041 F:      include/linux/sl?b*.h
10042 F:      mm/sl?b*
10043
10044 SLEEPABLE READ-COPY UPDATE (SRCU)
10045 M:      Lai Jiangshan <jiangshanlai@gmail.com>
10046 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
10047 M:      Josh Triplett <josh@joshtriplett.org>
10048 R:      Steven Rostedt <rostedt@goodmis.org>
10049 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
10050 L:      linux-kernel@vger.kernel.org
10051 W:      http://www.rdrop.com/users/paulmck/RCU/
10052 S:      Supported
10053 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
10054 F:      include/linux/srcu.h
10055 F:      kernel/rcu/srcu.c
10056
10057 SMACK SECURITY MODULE
10058 M:      Casey Schaufler <casey@schaufler-ca.com>
10059 L:      linux-security-module@vger.kernel.org
10060 W:      http://schaufler-ca.com
10061 T:      git git://git.gitorious.org/smack-next/kernel.git
10062 S:      Maintained
10063 F:      Documentation/security/Smack.txt
10064 F:      security/smack/
10065
10066 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
10067 M:      Kevin Hilman <khilman@kernel.org>
10068 M:      Nishanth Menon <nm@ti.com>
10069 S:      Maintained
10070 F:      drivers/power/avs/
10071 F:      include/linux/power/smartreflex.h
10072 L:      linux-pm@vger.kernel.org
10073
10074 SMC91x ETHERNET DRIVER
10075 M:      Nicolas Pitre <nico@fluxnic.net>
10076 S:      Odd Fixes
10077 F:      drivers/net/ethernet/smsc/smc91x.*
10078
10079 SMIA AND SMIA++ IMAGE SENSOR DRIVER
10080 M:      Sakari Ailus <sakari.ailus@iki.fi>
10081 L:      linux-media@vger.kernel.org
10082 S:      Maintained
10083 F:      drivers/media/i2c/smiapp/
10084 F:      include/media/i2c/smiapp.h
10085 F:      drivers/media/i2c/smiapp-pll.c
10086 F:      drivers/media/i2c/smiapp-pll.h
10087 F:      include/uapi/linux/smiapp.h
10088 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
10089
10090 SMM665 HARDWARE MONITOR DRIVER
10091 M:      Guenter Roeck <linux@roeck-us.net>
10092 L:      lm-sensors@lm-sensors.org
10093 S:      Maintained
10094 F:      Documentation/hwmon/smm665
10095 F:      drivers/hwmon/smm665.c
10096
10097 SMSC EMC2103 HARDWARE MONITOR DRIVER
10098 M:      Steve Glendinning <steve.glendinning@shawell.net>
10099 L:      lm-sensors@lm-sensors.org
10100 S:      Maintained
10101 F:      Documentation/hwmon/emc2103
10102 F:      drivers/hwmon/emc2103.c
10103
10104 SMSC SCH5627 HARDWARE MONITOR DRIVER
10105 M:      Hans de Goede <hdegoede@redhat.com>
10106 L:      lm-sensors@lm-sensors.org
10107 S:      Supported
10108 F:      Documentation/hwmon/sch5627
10109 F:      drivers/hwmon/sch5627.c
10110
10111 SMSC47B397 HARDWARE MONITOR DRIVER
10112 M:      Jean Delvare <jdelvare@suse.com>
10113 L:      lm-sensors@lm-sensors.org
10114 S:      Maintained
10115 F:      Documentation/hwmon/smsc47b397
10116 F:      drivers/hwmon/smsc47b397.c
10117
10118 SMSC911x ETHERNET DRIVER
10119 M:      Steve Glendinning <steve.glendinning@shawell.net>
10120 L:      netdev@vger.kernel.org
10121 S:      Maintained
10122 F:      include/linux/smsc911x.h
10123 F:      drivers/net/ethernet/smsc/smsc911x.*
10124
10125 SMSC9420 PCI ETHERNET DRIVER
10126 M:      Steve Glendinning <steve.glendinning@shawell.net>
10127 L:      netdev@vger.kernel.org
10128 S:      Maintained
10129 F:      drivers/net/ethernet/smsc/smsc9420.*
10130
10131 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
10132 M:      Steve Glendinning <steve.glendinning@shawell.net>
10133 L:      linux-fbdev@vger.kernel.org
10134 S:      Maintained
10135 F:      drivers/video/fbdev/smscufx.c
10136
10137 SOC-CAMERA V4L2 SUBSYSTEM
10138 M:      Guennadi Liakhovetski <g.liakhovetski@gmx.de>
10139 L:      linux-media@vger.kernel.org
10140 T:      git git://linuxtv.org/media_tree.git
10141 S:      Maintained
10142 F:      include/media/soc*
10143 F:      drivers/media/i2c/soc_camera/
10144 F:      drivers/media/platform/soc_camera/
10145
10146 SOEKRIS NET48XX LED SUPPORT
10147 M:      Chris Boot <bootc@bootc.net>
10148 S:      Maintained
10149 F:      drivers/leds/leds-net48xx.c
10150
10151 SOFTLOGIC 6x10 MPEG CODEC
10152 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
10153 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
10154 M:      Andrey Utkin <andrey.krieger.utkin@gmail.com>
10155 M:      Ismael Luceno <ismael@iodev.co.uk>
10156 L:      linux-media@vger.kernel.org
10157 S:      Supported
10158 F:      drivers/media/pci/solo6x10/
10159
10160 SOFTWARE RAID (Multiple Disks) SUPPORT
10161 M:      Shaohua Li <shli@kernel.org>
10162 L:      linux-raid@vger.kernel.org
10163 T:      git git://neil.brown.name/md
10164 S:      Supported
10165 F:      drivers/md/
10166 F:      include/linux/raid/
10167 F:      include/uapi/linux/raid/
10168
10169 SONIC NETWORK DRIVER
10170 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
10171 L:      netdev@vger.kernel.org
10172 S:      Maintained
10173 F:      drivers/net/ethernet/natsemi/sonic.*
10174
10175 SONICS SILICON BACKPLANE DRIVER (SSB)
10176 M:      Michael Buesch <m@bues.ch>
10177 L:      linux-wireless@vger.kernel.org
10178 S:      Maintained
10179 F:      drivers/ssb/
10180 F:      include/linux/ssb/
10181
10182 SONY VAIO CONTROL DEVICE DRIVER
10183 M:      Mattia Dongili <malattia@linux.it>
10184 L:      platform-driver-x86@vger.kernel.org
10185 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
10186 S:      Maintained
10187 F:      Documentation/laptops/sony-laptop.txt
10188 F:      drivers/char/sonypi.c
10189 F:      drivers/platform/x86/sony-laptop.c
10190 F:      include/linux/sony-laptop.h
10191
10192 SONY MEMORYSTICK CARD SUPPORT
10193 M:      Alex Dubov <oakad@yahoo.com>
10194 W:      http://tifmxx.berlios.de/
10195 S:      Maintained
10196 F:      drivers/memstick/host/tifm_ms.c
10197
10198 SONY MEMORYSTICK STANDARD SUPPORT
10199 M:      Maxim Levitsky <maximlevitsky@gmail.com>
10200 S:      Maintained
10201 F:      drivers/memstick/core/ms_block.*
10202
10203 SOUND
10204 M:      Jaroslav Kysela <perex@perex.cz>
10205 M:      Takashi Iwai <tiwai@suse.com>
10206 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10207 W:      http://www.alsa-project.org/
10208 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
10209 T:      git git://git.alsa-project.org/alsa-kernel.git
10210 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
10211 S:      Maintained
10212 F:      Documentation/sound/
10213 F:      include/sound/
10214 F:      include/uapi/sound/
10215 F:      sound/
10216
10217 SOUND - COMPRESSED AUDIO
10218 M:      Vinod Koul <vinod.koul@intel.com>
10219 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10220 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
10221 S:      Supported
10222 F:      Documentation/sound/alsa/compress_offload.txt
10223 F:      include/sound/compress_driver.h
10224 F:      include/uapi/sound/compress_*
10225 F:      sound/core/compress_offload.c
10226 F:      sound/soc/soc-compress.c
10227
10228 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
10229 M:      Liam Girdwood <lgirdwood@gmail.com>
10230 M:      Mark Brown <broonie@kernel.org>
10231 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
10232 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10233 W:      http://alsa-project.org/main/index.php/ASoC
10234 S:      Supported
10235 F:      Documentation/sound/alsa/soc/
10236 F:      sound/soc/
10237 F:      include/sound/soc*
10238
10239 SOUND - DMAENGINE HELPERS
10240 M:      Lars-Peter Clausen <lars@metafoo.de>
10241 S:      Supported
10242 F:      include/sound/dmaengine_pcm.h
10243 F:      sound/core/pcm_dmaengine.c
10244 F:      sound/soc/soc-generic-dmaengine-pcm.c
10245
10246 SP2 MEDIA DRIVER
10247 M:      Olli Salonen <olli.salonen@iki.fi>
10248 L:      linux-media@vger.kernel.org
10249 W:      https://linuxtv.org
10250 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10251 S:      Maintained
10252 F:      drivers/media/dvb-frontends/sp2*
10253
10254 SPARC + UltraSPARC (sparc/sparc64)
10255 M:      "David S. Miller" <davem@davemloft.net>
10256 L:      sparclinux@vger.kernel.org
10257 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
10258 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
10259 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
10260 S:      Maintained
10261 F:      arch/sparc/
10262 F:      drivers/sbus/
10263
10264 SPARC SERIAL DRIVERS
10265 M:      "David S. Miller" <davem@davemloft.net>
10266 L:      sparclinux@vger.kernel.org
10267 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
10268 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
10269 S:      Maintained
10270 F:      include/linux/sunserialcore.h
10271 F:      drivers/tty/serial/suncore.c
10272 F:      drivers/tty/serial/sunhv.c
10273 F:      drivers/tty/serial/sunsab.c
10274 F:      drivers/tty/serial/sunsab.h
10275 F:      drivers/tty/serial/sunsu.c
10276 F:      drivers/tty/serial/sunzilog.c
10277 F:      drivers/tty/serial/sunzilog.h
10278
10279 SPARSE CHECKER
10280 M:      "Christopher Li" <sparse@chrisli.org>
10281 L:      linux-sparse@vger.kernel.org
10282 W:      https://sparse.wiki.kernel.org/
10283 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
10284 T:      git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
10285 S:      Maintained
10286 F:      include/linux/compiler.h
10287
10288 SPEAR PLATFORM SUPPORT
10289 M:      Viresh Kumar <vireshk@kernel.org>
10290 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
10291 L:      spear-devel@list.st.com
10292 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10293 W:      http://www.st.com/spear
10294 S:      Maintained
10295 F:      arch/arm/boot/dts/spear*
10296 F:      arch/arm/mach-spear/
10297
10298 SPEAR CLOCK FRAMEWORK SUPPORT
10299 M:      Viresh Kumar <vireshk@kernel.org>
10300 L:      spear-devel@list.st.com
10301 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10302 W:      http://www.st.com/spear
10303 S:      Maintained
10304 F:      drivers/clk/spear/
10305
10306 SPI SUBSYSTEM
10307 M:      Mark Brown <broonie@kernel.org>
10308 L:      linux-spi@vger.kernel.org
10309 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
10310 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
10311 S:      Maintained
10312 F:      Documentation/spi/
10313 F:      drivers/spi/
10314 F:      include/linux/spi/
10315 F:      include/uapi/linux/spi/
10316
10317 SPIDERNET NETWORK DRIVER for CELL
10318 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
10319 L:      netdev@vger.kernel.org
10320 S:      Supported
10321 F:      Documentation/networking/spider_net.txt
10322 F:      drivers/net/ethernet/toshiba/spider_net*
10323
10324 SPU FILE SYSTEM
10325 M:      Jeremy Kerr <jk@ozlabs.org>
10326 L:      linuxppc-dev@lists.ozlabs.org
10327 W:      http://www.ibm.com/developerworks/power/cell/
10328 S:      Supported
10329 F:      Documentation/filesystems/spufs.txt
10330 F:      arch/powerpc/platforms/cell/spufs/
10331
10332 SQUASHFS FILE SYSTEM
10333 M:      Phillip Lougher <phillip@squashfs.org.uk>
10334 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
10335 W:      http://squashfs.org.uk
10336 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
10337 S:      Maintained
10338 F:      Documentation/filesystems/squashfs.txt
10339 F:      fs/squashfs/
10340
10341 SRM (Alpha) environment access
10342 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
10343 S:      Maintained
10344 F:      arch/alpha/kernel/srm_env.c
10345
10346 STABLE BRANCH
10347 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10348 L:      stable@vger.kernel.org
10349 S:      Supported
10350 F:      Documentation/stable_kernel_rules.txt
10351
10352 STAGING SUBSYSTEM
10353 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10354 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
10355 L:      devel@driverdev.osuosl.org
10356 S:      Supported
10357 F:      drivers/staging/
10358
10359 STAGING - COMEDI
10360 M:      Ian Abbott <abbotti@mev.co.uk>
10361 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
10362 S:      Odd Fixes
10363 F:      drivers/staging/comedi/
10364
10365 STAGING - FLARION FT1000 DRIVERS
10366 M:      Marek Belisko <marek.belisko@gmail.com>
10367 S:      Odd Fixes
10368 F:      drivers/staging/ft1000/
10369
10370 STAGING - INDUSTRIAL IO
10371 M:      Jonathan Cameron <jic23@kernel.org>
10372 L:      linux-iio@vger.kernel.org
10373 S:      Odd Fixes
10374 F:      drivers/staging/iio/
10375
10376 STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
10377 M:      Jarod Wilson <jarod@wilsonet.com>
10378 W:      http://www.lirc.org/
10379 S:      Odd Fixes
10380 F:      drivers/staging/media/lirc/
10381
10382 STAGING - LUSTRE PARALLEL FILESYSTEM
10383 M:      Oleg Drokin <oleg.drokin@intel.com>
10384 M:      Andreas Dilger <andreas.dilger@intel.com>
10385 L:      lustre-devel@lists.lustre.org (moderated for non-subscribers)
10386 W:      http://wiki.lustre.org/
10387 S:      Maintained
10388 F:      drivers/staging/lustre
10389
10390 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
10391 M:      Marc Dietrich <marvin24@gmx.de>
10392 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
10393 L:      linux-tegra@vger.kernel.org
10394 S:      Maintained
10395 F:      drivers/staging/nvec/
10396
10397 STAGING - REALTEK RTL8712U DRIVERS
10398 M:      Larry Finger <Larry.Finger@lwfinger.net>
10399 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
10400 S:      Odd Fixes
10401 F:      drivers/staging/rtl8712/
10402
10403 STAGING - REALTEK RTL8723U WIRELESS DRIVER
10404 M:      Larry Finger <Larry.Finger@lwfinger.net>
10405 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
10406 L:      linux-wireless@vger.kernel.org
10407 S:      Maintained
10408 F:      drivers/staging/rtl8723au/
10409
10410 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
10411 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
10412 M:      Teddy Wang <teddy.wang@siliconmotion.com>
10413 M:      Sudip Mukherjee <sudip@vectorindia.org>
10414 L:      linux-fbdev@vger.kernel.org
10415 S:      Maintained
10416 F:      drivers/staging/sm750fb/
10417
10418 STAGING - SLICOSS
10419 M:      Lior Dotan <liodot@gmail.com>
10420 M:      Christopher Harrer <charrer@alacritech.com>
10421 S:      Odd Fixes
10422 F:      drivers/staging/slicoss/
10423
10424 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
10425 M:      William Hubbs <w.d.hubbs@gmail.com>
10426 M:      Chris Brannon <chris@the-brannons.com>
10427 M:      Kirk Reiser <kirk@reisers.ca>
10428 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
10429 L:      speakup@linux-speakup.org
10430 W:      http://www.linux-speakup.org/
10431 S:      Odd Fixes
10432 F:      drivers/staging/speakup/
10433
10434 STAGING - VIA VT665X DRIVERS
10435 M:      Forest Bond <forest@alittletooquiet.net>
10436 S:      Odd Fixes
10437 F:      drivers/staging/vt665?/
10438
10439 STAGING - WILC1000 WIFI DRIVER
10440 M:      Johnny Kim <johnny.kim@atmel.com>
10441 M:      Austin Shin <austin.shin@atmel.com>
10442 M:      Chris Park <chris.park@atmel.com>
10443 M:      Tony Cho <tony.cho@atmel.com>
10444 M:      Glen Lee <glen.lee@atmel.com>
10445 M:      Leo Kim <leo.kim@atmel.com>
10446 L:      linux-wireless@vger.kernel.org
10447 S:      Supported
10448 F:      drivers/staging/wilc1000/
10449
10450 STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
10451 M:      Arnaud Patard <arnaud.patard@rtp-net.org>
10452 S:      Odd Fixes
10453 F:      drivers/staging/xgifb/
10454
10455 HFI1 DRIVER
10456 M:      Mike Marciniszyn <infinipath@intel.com>
10457 L:      linux-rdma@vger.kernel.org
10458 S:      Supported
10459 F:      drivers/staging/rdma/hfi1
10460
10461 STARFIRE/DURALAN NETWORK DRIVER
10462 M:      Ion Badulescu <ionut@badula.org>
10463 S:      Odd Fixes
10464 F:      drivers/net/ethernet/adaptec/starfire*
10465
10466 SUN3/3X
10467 M:      Sam Creasey <sammy@sammy.net>
10468 W:      http://sammy.net/sun3/
10469 S:      Maintained
10470 F:      arch/m68k/kernel/*sun3*
10471 F:      arch/m68k/sun3*/
10472 F:      arch/m68k/include/asm/sun3*
10473 F:      drivers/net/ethernet/i825xx/sun3*
10474
10475 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
10476 M:      Hans de Goede <hdegoede@redhat.com>
10477 L:      linux-input@vger.kernel.org
10478 S:      Maintained
10479 F:      Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
10480 F:      drivers/input/keyboard/sun4i-lradc-keys.c
10481
10482 SUNDANCE NETWORK DRIVER
10483 M:      Denis Kirjanov <kda@linux-powerpc.org>
10484 L:      netdev@vger.kernel.org
10485 S:      Maintained
10486 F:      drivers/net/ethernet/dlink/sundance.c
10487
10488 SUPERH
10489 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
10490 M:      Rich Felker <dalias@libc.org>
10491 L:      linux-sh@vger.kernel.org
10492 Q:      http://patchwork.kernel.org/project/linux-sh/list/
10493 S:      Maintained
10494 F:      Documentation/sh/
10495 F:      arch/sh/
10496 F:      drivers/sh/
10497
10498 SUSPEND TO RAM
10499 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
10500 M:      Len Brown <len.brown@intel.com>
10501 M:      Pavel Machek <pavel@ucw.cz>
10502 L:      linux-pm@vger.kernel.org
10503 S:      Supported
10504 F:      Documentation/power/
10505 F:      arch/x86/kernel/acpi/
10506 F:      drivers/base/power/
10507 F:      kernel/power/
10508 F:      include/linux/suspend.h
10509 F:      include/linux/freezer.h
10510 F:      include/linux/pm.h
10511
10512 SVGA HANDLING
10513 M:      Martin Mares <mj@ucw.cz>
10514 L:      linux-video@atrey.karlin.mff.cuni.cz
10515 S:      Maintained
10516 F:      Documentation/svga.txt
10517 F:      arch/x86/boot/video*
10518
10519 SWIOTLB SUBSYSTEM
10520 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10521 L:      linux-kernel@vger.kernel.org
10522 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
10523 S:      Supported
10524 F:      lib/swiotlb.c
10525 F:      arch/*/kernel/pci-swiotlb.c
10526 F:      include/linux/swiotlb.h
10527
10528 SWITCHDEV
10529 M:      Jiri Pirko <jiri@resnulli.us>
10530 L:      netdev@vger.kernel.org
10531 S:      Supported
10532 F:      net/switchdev/
10533 F:      include/net/switchdev.h
10534
10535 SYNOPSYS ARC ARCHITECTURE
10536 M:      Vineet Gupta <vgupta@synopsys.com>
10537 L:      linux-snps-arc@lists.infradead.org
10538 S:      Supported
10539 F:      arch/arc/
10540 F:      Documentation/devicetree/bindings/arc/*
10541 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
10542 F:      drivers/tty/serial/arc_uart.c
10543 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
10544
10545 SYNOPSYS ARC SDP platform support
10546 M:      Alexey Brodkin <abrodkin@synopsys.com>
10547 S:      Supported
10548 F:      arch/arc/plat-axs10x
10549 F:      arch/arc/boot/dts/ax*
10550 F:      Documentation/devicetree/bindings/arc/axs10*
10551
10552 SYSTEM CONFIGURATION (SYSCON)
10553 M:      Lee Jones <lee.jones@linaro.org>
10554 M:      Arnd Bergmann <arnd@arndb.de>
10555 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
10556 S:      Supported
10557 F:      drivers/mfd/syscon.c
10558
10559 SYSV FILESYSTEM
10560 M:      Christoph Hellwig <hch@infradead.org>
10561 S:      Maintained
10562 F:      Documentation/filesystems/sysv-fs.txt
10563 F:      fs/sysv/
10564 F:      include/linux/sysv_fs.h
10565
10566 TARGET SUBSYSTEM
10567 M:      "Nicholas A. Bellinger" <nab@linux-iscsi.org>
10568 L:      linux-scsi@vger.kernel.org
10569 L:      target-devel@vger.kernel.org
10570 W:      http://www.linux-iscsi.org
10571 W:      http://groups.google.com/group/linux-iscsi-target-dev
10572 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10573 S:      Supported
10574 F:      drivers/target/
10575 F:      include/target/
10576 F:      Documentation/target/
10577
10578 TASKSTATS STATISTICS INTERFACE
10579 M:      Balbir Singh <bsingharora@gmail.com>
10580 S:      Maintained
10581 F:      Documentation/accounting/taskstats*
10582 F:      include/linux/taskstats*
10583 F:      kernel/taskstats.c
10584
10585 TC CLASSIFIER
10586 M:      Jamal Hadi Salim <jhs@mojatatu.com>
10587 L:      netdev@vger.kernel.org
10588 S:      Maintained
10589 F:      include/net/pkt_cls.h
10590 F:      include/uapi/linux/pkt_cls.h
10591 F:      net/sched/
10592
10593 TCP LOW PRIORITY MODULE
10594 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
10595 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
10596 W:      http://tcp-lp-mod.sourceforge.net/
10597 S:      Maintained
10598 F:      net/ipv4/tcp_lp.c
10599
10600 TDA10071 MEDIA DRIVER
10601 M:      Antti Palosaari <crope@iki.fi>
10602 L:      linux-media@vger.kernel.org
10603 W:      https://linuxtv.org
10604 W:      http://palosaari.fi/linux/
10605 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10606 T:      git git://linuxtv.org/anttip/media_tree.git
10607 S:      Maintained
10608 F:      drivers/media/dvb-frontends/tda10071*
10609
10610 TDA18212 MEDIA DRIVER
10611 M:      Antti Palosaari <crope@iki.fi>
10612 L:      linux-media@vger.kernel.org
10613 W:      https://linuxtv.org
10614 W:      http://palosaari.fi/linux/
10615 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10616 T:      git git://linuxtv.org/anttip/media_tree.git
10617 S:      Maintained
10618 F:      drivers/media/tuners/tda18212*
10619
10620 TDA18218 MEDIA DRIVER
10621 M:      Antti Palosaari <crope@iki.fi>
10622 L:      linux-media@vger.kernel.org
10623 W:      https://linuxtv.org
10624 W:      http://palosaari.fi/linux/
10625 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10626 T:      git git://linuxtv.org/anttip/media_tree.git
10627 S:      Maintained
10628 F:      drivers/media/tuners/tda18218*
10629
10630 TDA18271 MEDIA DRIVER
10631 M:      Michael Krufky <mkrufky@linuxtv.org>
10632 L:      linux-media@vger.kernel.org
10633 W:      https://linuxtv.org
10634 W:      http://github.com/mkrufky
10635 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10636 T:      git git://linuxtv.org/mkrufky/tuners.git
10637 S:      Maintained
10638 F:      drivers/media/tuners/tda18271*
10639
10640 TDA827x MEDIA DRIVER
10641 M:      Michael Krufky <mkrufky@linuxtv.org>
10642 L:      linux-media@vger.kernel.org
10643 W:      https://linuxtv.org
10644 W:      http://github.com/mkrufky
10645 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10646 T:      git git://linuxtv.org/mkrufky/tuners.git
10647 S:      Maintained
10648 F:      drivers/media/tuners/tda8290.*
10649
10650 TDA8290 MEDIA DRIVER
10651 M:      Michael Krufky <mkrufky@linuxtv.org>
10652 L:      linux-media@vger.kernel.org
10653 W:      https://linuxtv.org
10654 W:      http://github.com/mkrufky
10655 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10656 T:      git git://linuxtv.org/mkrufky/tuners.git
10657 S:      Maintained
10658 F:      drivers/media/tuners/tda8290.*
10659
10660 TDA9840 MEDIA DRIVER
10661 M:      Hans Verkuil <hverkuil@xs4all.nl>
10662 L:      linux-media@vger.kernel.org
10663 T:      git git://linuxtv.org/media_tree.git
10664 W:      https://linuxtv.org
10665 S:      Maintained
10666 F:      drivers/media/i2c/tda9840*
10667
10668 TEA5761 TUNER DRIVER
10669 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10670 L:      linux-media@vger.kernel.org
10671 W:      https://linuxtv.org
10672 T:      git git://linuxtv.org/media_tree.git
10673 S:      Odd fixes
10674 F:      drivers/media/tuners/tea5761.*
10675
10676 TEA5767 TUNER DRIVER
10677 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10678 L:      linux-media@vger.kernel.org
10679 W:      https://linuxtv.org
10680 T:      git git://linuxtv.org/media_tree.git
10681 S:      Maintained
10682 F:      drivers/media/tuners/tea5767.*
10683
10684 TEA6415C MEDIA DRIVER
10685 M:      Hans Verkuil <hverkuil@xs4all.nl>
10686 L:      linux-media@vger.kernel.org
10687 T:      git git://linuxtv.org/media_tree.git
10688 W:      https://linuxtv.org
10689 S:      Maintained
10690 F:      drivers/media/i2c/tea6415c*
10691
10692 TEA6420 MEDIA DRIVER
10693 M:      Hans Verkuil <hverkuil@xs4all.nl>
10694 L:      linux-media@vger.kernel.org
10695 T:      git git://linuxtv.org/media_tree.git
10696 W:      https://linuxtv.org
10697 S:      Maintained
10698 F:      drivers/media/i2c/tea6420*
10699
10700 TEAM DRIVER
10701 M:      Jiri Pirko <jiri@resnulli.us>
10702 L:      netdev@vger.kernel.org
10703 S:      Supported
10704 F:      drivers/net/team/
10705 F:      include/linux/if_team.h
10706 F:      include/uapi/linux/if_team.h
10707
10708 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
10709 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
10710 S:      Maintained
10711 F:      arch/x86/platform/ts5500/
10712
10713 TECHNOTREND USB IR RECEIVER
10714 M:      Sean Young <sean@mess.org>
10715 L:      linux-media@vger.kernel.org
10716 S:      Maintained
10717 F:      drivers/media/rc/ttusbir.c
10718
10719 TEGRA ARCHITECTURE SUPPORT
10720 M:      Stephen Warren <swarren@wwwdotorg.org>
10721 M:      Thierry Reding <thierry.reding@gmail.com>
10722 M:      Alexandre Courbot <gnurou@gmail.com>
10723 L:      linux-tegra@vger.kernel.org
10724 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
10725 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
10726 S:      Supported
10727 N:      [^a-z]tegra
10728
10729 TEGRA CLOCK DRIVER
10730 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
10731 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
10732 S:      Supported
10733 F:      drivers/clk/tegra/
10734
10735 TEGRA DMA DRIVER
10736 M:      Laxman Dewangan <ldewangan@nvidia.com>
10737 S:      Supported
10738 F:      drivers/dma/tegra20-apb-dma.c
10739
10740 TEGRA I2C DRIVER
10741 M:      Laxman Dewangan <ldewangan@nvidia.com>
10742 S:      Supported
10743 F:      drivers/i2c/busses/i2c-tegra.c
10744
10745 TEGRA IOMMU DRIVERS
10746 M:      Hiroshi Doyu <hdoyu@nvidia.com>
10747 S:      Supported
10748 F:      drivers/iommu/tegra*
10749
10750 TEGRA KBC DRIVER
10751 M:      Rakesh Iyer <riyer@nvidia.com>
10752 M:      Laxman Dewangan <ldewangan@nvidia.com>
10753 S:      Supported
10754 F:      drivers/input/keyboard/tegra-kbc.c
10755
10756 TEGRA PWM DRIVER
10757 M:      Thierry Reding <thierry.reding@gmail.com>
10758 S:      Supported
10759 F:      drivers/pwm/pwm-tegra.c
10760
10761 TEGRA SERIAL DRIVER
10762 M:      Laxman Dewangan <ldewangan@nvidia.com>
10763 S:      Supported
10764 F:      drivers/tty/serial/serial-tegra.c
10765
10766 TEGRA SPI DRIVER
10767 M:      Laxman Dewangan <ldewangan@nvidia.com>
10768 S:      Supported
10769 F:      drivers/spi/spi-tegra*
10770
10771 TEHUTI ETHERNET DRIVER
10772 M:      Andy Gospodarek <andy@greyhouse.net>
10773 L:      netdev@vger.kernel.org
10774 S:      Supported
10775 F:      drivers/net/ethernet/tehuti/*
10776
10777 Telecom Clock Driver for MCPL0010
10778 M:      Mark Gross <mark.gross@intel.com>
10779 S:      Supported
10780 F:      drivers/char/tlclk.c
10781
10782 TENSILICA XTENSA PORT (xtensa)
10783 M:      Chris Zankel <chris@zankel.net>
10784 M:      Max Filippov <jcmvbkbc@gmail.com>
10785 L:      linux-xtensa@linux-xtensa.org
10786 T:      git git://github.com/czankel/xtensa-linux.git
10787 S:      Maintained
10788 F:      arch/xtensa/
10789 F:      drivers/irqchip/irq-xtensa-*
10790
10791 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
10792 M:      Hans Verkuil <hverkuil@xs4all.nl>
10793 L:      linux-media@vger.kernel.org
10794 T:      git git://linuxtv.org/media_tree.git
10795 W:      https://linuxtv.org
10796 S:      Maintained
10797 F:      drivers/media/radio/radio-raremono.c
10798
10799 THERMAL
10800 M:      Zhang Rui <rui.zhang@intel.com>
10801 M:      Eduardo Valentin <edubezval@gmail.com>
10802 L:      linux-pm@vger.kernel.org
10803 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
10804 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
10805 Q:      https://patchwork.kernel.org/project/linux-pm/list/
10806 S:      Supported
10807 F:      drivers/thermal/
10808 F:      include/linux/thermal.h
10809 F:      include/uapi/linux/thermal.h
10810 F:      include/linux/cpu_cooling.h
10811 F:      Documentation/devicetree/bindings/thermal/
10812
10813 THERMAL/CPU_COOLING
10814 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
10815 M:      Viresh Kumar <viresh.kumar@linaro.org>
10816 M:      Javi Merino <javi.merino@arm.com>
10817 L:      linux-pm@vger.kernel.org
10818 S:      Supported
10819 F:      Documentation/thermal/cpu-cooling-api.txt
10820 F:      drivers/thermal/cpu_cooling.c
10821 F:      include/linux/cpu_cooling.h
10822
10823 THINGM BLINK(1) USB RGB LED DRIVER
10824 M:      Vivien Didelot <vivien.didelot@savoirfairelinux.com>
10825 S:      Maintained
10826 F:      drivers/hid/hid-thingm.c
10827
10828 THINKPAD ACPI EXTRAS DRIVER
10829 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
10830 L:      ibm-acpi-devel@lists.sourceforge.net
10831 L:      platform-driver-x86@vger.kernel.org
10832 W:      http://ibm-acpi.sourceforge.net
10833 W:      http://thinkwiki.org/wiki/Ibm-acpi
10834 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
10835 S:      Maintained
10836 F:      drivers/platform/x86/thinkpad_acpi.c
10837
10838 TI BANDGAP AND THERMAL DRIVER
10839 M:      Eduardo Valentin <edubezval@gmail.com>
10840 L:      linux-pm@vger.kernel.org
10841 L:      linux-omap@vger.kernel.org
10842 S:      Maintained
10843 F:      drivers/thermal/ti-soc-thermal/
10844
10845 TI CDCE706 CLOCK DRIVER
10846 M:      Max Filippov <jcmvbkbc@gmail.com>
10847 S:      Maintained
10848 F:      drivers/clk/clk-cdce706.c
10849
10850 TI CLOCK DRIVER
10851 M:      Tero Kristo <t-kristo@ti.com>
10852 L:      linux-omap@vger.kernel.org
10853 S:      Maintained
10854 F:      drivers/clk/ti/
10855 F:      include/linux/clk/ti.h
10856
10857 TI FLASH MEDIA INTERFACE DRIVER
10858 M:      Alex Dubov <oakad@yahoo.com>
10859 S:      Maintained
10860 F:      drivers/misc/tifm*
10861 F:      drivers/mmc/host/tifm_sd.c
10862 F:      include/linux/tifm.h
10863
10864 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
10865 M:      Santosh Shilimkar <ssantosh@kernel.org>
10866 L:      linux-kernel@vger.kernel.org
10867 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10868 S:      Maintained
10869 F:      drivers/soc/ti/*
10870 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
10871
10872
10873 TI LM49xxx FAMILY ASoC CODEC DRIVERS
10874 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
10875 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
10876 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10877 S:      Maintained
10878 F:      sound/soc/codecs/lm49453*
10879 F:      sound/soc/codecs/isabelle*
10880
10881 TI LP855x BACKLIGHT DRIVER
10882 M:      Milo Kim <milo.kim@ti.com>
10883 S:      Maintained
10884 F:      Documentation/backlight/lp855x-driver.txt
10885 F:      drivers/video/backlight/lp855x_bl.c
10886 F:      include/linux/platform_data/lp855x.h
10887
10888 TI LP8727 CHARGER DRIVER
10889 M:      Milo Kim <milo.kim@ti.com>
10890 S:      Maintained
10891 F:      drivers/power/lp8727_charger.c
10892 F:      include/linux/platform_data/lp8727.h
10893
10894 TI LP8788 MFD DRIVER
10895 M:      Milo Kim <milo.kim@ti.com>
10896 S:      Maintained
10897 F:      drivers/iio/adc/lp8788_adc.c
10898 F:      drivers/leds/leds-lp8788.c
10899 F:      drivers/mfd/lp8788*.c
10900 F:      drivers/power/lp8788-charger.c
10901 F:      drivers/regulator/lp8788-*.c
10902 F:      include/linux/mfd/lp8788*.h
10903
10904 TI NETCP ETHERNET DRIVER
10905 M:      Wingman Kwok <w-kwok2@ti.com>
10906 M:      Murali Karicheri <m-karicheri2@ti.com>
10907 L:      netdev@vger.kernel.org
10908 S:      Maintained
10909 F:      drivers/net/ethernet/ti/netcp*
10910
10911 TI TAS571X FAMILY ASoC CODEC DRIVER
10912 M:      Kevin Cernekee <cernekee@chromium.org>
10913 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10914 S:      Odd Fixes
10915 F:      sound/soc/codecs/tas571x*
10916
10917 TI TWL4030 SERIES SOC CODEC DRIVER
10918 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
10919 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10920 S:      Maintained
10921 F:      sound/soc/codecs/twl4030*
10922
10923 TI WILINK WIRELESS DRIVERS
10924 L:      linux-wireless@vger.kernel.org
10925 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
10926 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
10927 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
10928 S:      Orphan
10929 F:      drivers/net/wireless/ti/
10930 F:      include/linux/wl12xx.h
10931
10932 TIPC NETWORK LAYER
10933 M:      Jon Maloy <jon.maloy@ericsson.com>
10934 M:      Ying Xue <ying.xue@windriver.com>
10935 L:      netdev@vger.kernel.org (core kernel code)
10936 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
10937 W:      http://tipc.sourceforge.net/
10938 S:      Maintained
10939 F:      include/uapi/linux/tipc*.h
10940 F:      net/tipc/
10941
10942 TILE ARCHITECTURE
10943 M:      Chris Metcalf <cmetcalf@ezchip.com>
10944 W:      http://www.ezchip.com/scm/
10945 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cmetcalf/linux-tile.git
10946 S:      Supported
10947 F:      arch/tile/
10948 F:      drivers/char/tile-srom.c
10949 F:      drivers/edac/tile_edac.c
10950 F:      drivers/net/ethernet/tile/
10951 F:      drivers/rtc/rtc-tile.c
10952 F:      drivers/tty/hvc/hvc_tile.c
10953 F:      drivers/tty/serial/tilegx.c
10954 F:      drivers/usb/host/*-tilegx.c
10955 F:      include/linux/usb/tilegx.h
10956
10957 TLAN NETWORK DRIVER
10958 M:      Samuel Chessman <chessman@tux.org>
10959 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
10960 W:      http://sourceforge.net/projects/tlan/
10961 S:      Maintained
10962 F:      Documentation/networking/tlan.txt
10963 F:      drivers/net/ethernet/ti/tlan.*
10964
10965 TOMOYO SECURITY MODULE
10966 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
10967 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
10968 L:      tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
10969 L:      tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
10970 L:      tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
10971 L:      tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
10972 W:      http://tomoyo.sourceforge.jp/
10973 T:      quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
10974 S:      Maintained
10975 F:      security/tomoyo/
10976
10977 TOPSTAR LAPTOP EXTRAS DRIVER
10978 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
10979 L:      platform-driver-x86@vger.kernel.org
10980 S:      Maintained
10981 F:      drivers/platform/x86/topstar-laptop.c
10982
10983 TOSHIBA ACPI EXTRAS DRIVER
10984 M:      Azael Avalos <coproscefalo@gmail.com>
10985 L:      platform-driver-x86@vger.kernel.org
10986 S:      Maintained
10987 F:      drivers/platform/x86/toshiba_acpi.c
10988
10989 TOSHIBA BLUETOOTH DRIVER
10990 M:      Azael Avalos <coproscefalo@gmail.com>
10991 L:      platform-driver-x86@vger.kernel.org
10992 S:      Maintained
10993 F:      drivers/platform/x86/toshiba_bluetooth.c
10994
10995 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
10996 M:      Azael Avalos <coproscefalo@gmail.com>
10997 L:      platform-driver-x86@vger.kernel.org
10998 S:      Maintained
10999 F:      drivers/platform/x86/toshiba_haps.c
11000
11001 TOSHIBA WMI HOTKEYS DRIVER
11002 M:      Azael Avalos <coproscefalo@gmail.com>
11003 L:      platform-driver-x86@vger.kernel.org
11004 S:      Maintained
11005 F:      drivers/platform/x86/toshiba-wmi.c
11006
11007 TOSHIBA SMM DRIVER
11008 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
11009 W:      http://www.buzzard.org.uk/toshiba/
11010 S:      Maintained
11011 F:      drivers/char/toshiba.c
11012 F:      include/linux/toshiba.h
11013 F:      include/uapi/linux/toshiba.h
11014
11015 TOSHIBA TC358743 DRIVER
11016 M:      Mats Randgaard <matrandg@cisco.com>
11017 L:      linux-media@vger.kernel.org
11018 S:      Maintained
11019 F:      drivers/media/i2c/tc358743*
11020 F:      include/media/i2c/tc358743.h
11021
11022 TMIO MMC DRIVER
11023 M:      Ian Molton <ian@mnementh.co.uk>
11024 L:      linux-mmc@vger.kernel.org
11025 S:      Maintained
11026 F:      drivers/mmc/host/tmio_mmc*
11027 F:      drivers/mmc/host/sh_mobile_sdhi.c
11028 F:      include/linux/mmc/tmio.h
11029 F:      include/linux/mmc/sh_mobile_sdhi.h
11030
11031 TMP401 HARDWARE MONITOR DRIVER
11032 M:      Guenter Roeck <linux@roeck-us.net>
11033 L:      lm-sensors@lm-sensors.org
11034 S:      Maintained
11035 F:      Documentation/hwmon/tmp401
11036 F:      drivers/hwmon/tmp401.c
11037
11038 TMPFS (SHMEM FILESYSTEM)
11039 M:      Hugh Dickins <hughd@google.com>
11040 L:      linux-mm@kvack.org
11041 S:      Maintained
11042 F:      include/linux/shmem_fs.h
11043 F:      mm/shmem.c
11044
11045 TM6000 VIDEO4LINUX DRIVER
11046 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
11047 L:      linux-media@vger.kernel.org
11048 W:      https://linuxtv.org
11049 T:      git git://linuxtv.org/media_tree.git
11050 S:      Odd fixes
11051 F:      drivers/media/usb/tm6000/
11052
11053 TW68 VIDEO4LINUX DRIVER
11054 M:      Hans Verkuil <hverkuil@xs4all.nl>
11055 L:      linux-media@vger.kernel.org
11056 T:      git git://linuxtv.org/media_tree.git
11057 W:      https://linuxtv.org
11058 S:      Odd Fixes
11059 F:      drivers/media/pci/tw68/
11060
11061 TPM DEVICE DRIVER
11062 M:      Peter Huewe <peterhuewe@gmx.de>
11063 M:      Marcel Selhorst <tpmdd@selhorst.net>
11064 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
11065 R:      Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
11066 W:      http://tpmdd.sourceforge.net
11067 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
11068 Q:      git git://github.com/PeterHuewe/linux-tpmdd.git
11069 T:      git https://github.com/PeterHuewe/linux-tpmdd
11070 S:      Maintained
11071 F:      drivers/char/tpm/
11072
11073 TPM IBM_VTPM DEVICE DRIVER
11074 M:      Ashley Lai <ashleydlai@gmail.com>
11075 W:      http://tpmdd.sourceforge.net
11076 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
11077 S:      Maintained
11078 F:      drivers/char/tpm/tpm_ibmvtpm*
11079
11080 TRACING
11081 M:      Steven Rostedt <rostedt@goodmis.org>
11082 M:      Ingo Molnar <mingo@redhat.com>
11083 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
11084 S:      Maintained
11085 F:      Documentation/trace/ftrace.txt
11086 F:      arch/*/*/*/ftrace.h
11087 F:      arch/*/kernel/ftrace.c
11088 F:      include/*/ftrace.h
11089 F:      include/linux/trace*.h
11090 F:      include/trace/
11091 F:      kernel/trace/
11092 F:      tools/testing/selftests/ftrace/
11093
11094 TRIVIAL PATCHES
11095 M:      Jiri Kosina <trivial@kernel.org>
11096 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
11097 S:      Maintained
11098 K:      ^Subject:.*(?i)trivial
11099
11100 TTY LAYER
11101 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11102 M:      Jiri Slaby <jslaby@suse.com>
11103 S:      Supported
11104 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
11105 F:      Documentation/serial/
11106 F:      drivers/tty/
11107 F:      drivers/tty/serial/serial_core.c
11108 F:      include/linux/serial_core.h
11109 F:      include/linux/serial.h
11110 F:      include/linux/tty.h
11111 F:      include/uapi/linux/serial_core.h
11112 F:      include/uapi/linux/serial.h
11113 F:      include/uapi/linux/tty.h
11114
11115 TUA9001 MEDIA DRIVER
11116 M:      Antti Palosaari <crope@iki.fi>
11117 L:      linux-media@vger.kernel.org
11118 W:      https://linuxtv.org
11119 W:      http://palosaari.fi/linux/
11120 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11121 T:      git git://linuxtv.org/anttip/media_tree.git
11122 S:      Maintained
11123 F:      drivers/media/tuners/tua9001*
11124
11125 TULIP NETWORK DRIVERS
11126 L:      netdev@vger.kernel.org
11127 L:      linux-parisc@vger.kernel.org
11128 S:      Orphan
11129 F:      drivers/net/ethernet/dec/tulip/
11130
11131 TUN/TAP driver
11132 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
11133 W:      http://vtun.sourceforge.net/tun
11134 S:      Maintained
11135 F:      Documentation/networking/tuntap.txt
11136 F:      arch/um/os-Linux/drivers/
11137
11138 TURBOCHANNEL SUBSYSTEM
11139 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
11140 M:      Ralf Baechle <ralf@linux-mips.org>
11141 L:      linux-mips@linux-mips.org
11142 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
11143 S:      Maintained
11144 F:      drivers/tc/
11145 F:      include/linux/tc.h
11146
11147 U14-34F SCSI DRIVER
11148 M:      Dario Ballabio <ballabio_dario@emc.com>
11149 L:      linux-scsi@vger.kernel.org
11150 S:      Maintained
11151 F:      drivers/scsi/u14-34f.c
11152
11153 UBI FILE SYSTEM (UBIFS)
11154 M:      Artem Bityutskiy <dedekind1@gmail.com>
11155 M:      Adrian Hunter <adrian.hunter@intel.com>
11156 L:      linux-mtd@lists.infradead.org
11157 T:      git git://git.infradead.org/ubifs-2.6.git
11158 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
11159 S:      Maintained
11160 F:      Documentation/filesystems/ubifs.txt
11161 F:      fs/ubifs/
11162
11163 UCLINUX (M68KNOMMU AND COLDFIRE)
11164 M:      Greg Ungerer <gerg@uclinux.org>
11165 W:      http://www.uclinux.org/
11166 L:      linux-m68k@lists.linux-m68k.org
11167 L:      uclinux-dev@uclinux.org  (subscribers-only)
11168 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
11169 S:      Maintained
11170 F:      arch/m68k/coldfire/
11171 F:      arch/m68k/68*/
11172 F:      arch/m68k/*/*_no.*
11173 F:      arch/m68k/include/asm/*_no.*
11174
11175 UDF FILESYSTEM
11176 M:      Jan Kara <jack@suse.com>
11177 S:      Maintained
11178 F:      Documentation/filesystems/udf.txt
11179 F:      fs/udf/
11180
11181 UFS FILESYSTEM
11182 M:      Evgeniy Dushistov <dushistov@mail.ru>
11183 S:      Maintained
11184 F:      Documentation/filesystems/ufs.txt
11185 F:      fs/ufs/
11186
11187 UHID USERSPACE HID IO DRIVER:
11188 M:      David Herrmann <dh.herrmann@googlemail.com>
11189 L:      linux-input@vger.kernel.org
11190 S:      Maintained
11191 F:      drivers/hid/uhid.c
11192 F:      include/uapi/linux/uhid.h
11193
11194 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
11195 L:      linux-usb@vger.kernel.org
11196 S:      Orphan
11197 F:      drivers/uwb/
11198 F:      include/linux/uwb.h
11199 F:      include/linux/uwb/
11200
11201 UNICORE32 ARCHITECTURE:
11202 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
11203 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
11204 S:      Maintained
11205 T:      git git://github.com/gxt/linux.git
11206 F:      arch/unicore32/
11207
11208 UNIFDEF
11209 M:      Tony Finch <dot@dotat.at>
11210 W:      http://dotat.at/prog/unifdef
11211 S:      Maintained
11212 F:      scripts/unifdef.c
11213
11214 UNIFORM CDROM DRIVER
11215 M:      Jens Axboe <axboe@kernel.dk>
11216 W:      http://www.kernel.dk
11217 S:      Maintained
11218 F:      Documentation/cdrom/
11219 F:      drivers/cdrom/cdrom.c
11220 F:      include/linux/cdrom.h
11221 F:      include/uapi/linux/cdrom.h
11222
11223 UNISYS S-PAR DRIVERS
11224 M:      Benjamin Romer <benjamin.romer@unisys.com>
11225 M:      David Kershner <david.kershner@unisys.com>
11226 L:      sparmaintainer@unisys.com (Unisys internal)
11227 S:      Supported
11228 F:      drivers/staging/unisys/
11229
11230 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
11231 M:      Vinayak Holikatti <vinholikatti@gmail.com>
11232 L:      linux-scsi@vger.kernel.org
11233 S:      Supported
11234 F:      Documentation/scsi/ufs.txt
11235 F:      drivers/scsi/ufs/
11236
11237 UNSORTED BLOCK IMAGES (UBI)
11238 M:      Artem Bityutskiy <dedekind1@gmail.com>
11239 M:      Richard Weinberger <richard@nod.at>
11240 W:      http://www.linux-mtd.infradead.org/
11241 L:      linux-mtd@lists.infradead.org
11242 T:      git git://git.infradead.org/ubifs-2.6.git
11243 S:      Supported
11244 F:      drivers/mtd/ubi/
11245 F:      include/linux/mtd/ubi.h
11246 F:      include/uapi/mtd/ubi-user.h
11247
11248 USB ACM DRIVER
11249 M:      Oliver Neukum <oliver@neukum.org>
11250 L:      linux-usb@vger.kernel.org
11251 S:      Maintained
11252 F:      Documentation/usb/acm.txt
11253 F:      drivers/usb/class/cdc-acm.*
11254
11255 USB AR5523 WIRELESS DRIVER
11256 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
11257 L:      linux-wireless@vger.kernel.org
11258 S:      Maintained
11259 F:      drivers/net/wireless/ath/ar5523/
11260
11261 USB ATTACHED SCSI
11262 M:      Hans de Goede <hdegoede@redhat.com>
11263 M:      Gerd Hoffmann <kraxel@redhat.com>
11264 L:      linux-usb@vger.kernel.org
11265 L:      linux-scsi@vger.kernel.org
11266 S:      Maintained
11267 F:      drivers/usb/storage/uas.c
11268
11269 USB CDC ETHERNET DRIVER
11270 M:      Oliver Neukum <oliver@neukum.org>
11271 L:      linux-usb@vger.kernel.org
11272 S:      Maintained
11273 F:      drivers/net/usb/cdc_*.c
11274 F:      include/uapi/linux/usb/cdc.h
11275
11276 USB CHAOSKEY DRIVER
11277 M:      Keith Packard <keithp@keithp.com>
11278 L:      linux-usb@vger.kernel.org
11279 S:      Maintained
11280 F:      drivers/usb/misc/chaoskey.c
11281
11282 USB CYPRESS C67X00 DRIVER
11283 M:      Peter Korsgaard <jacmet@sunsite.dk>
11284 L:      linux-usb@vger.kernel.org
11285 S:      Maintained
11286 F:      drivers/usb/c67x00/
11287
11288 USB DAVICOM DM9601 DRIVER
11289 M:      Peter Korsgaard <jacmet@sunsite.dk>
11290 L:      netdev@vger.kernel.org
11291 W:      http://www.linux-usb.org/usbnet
11292 S:      Maintained
11293 F:      drivers/net/usb/dm9601.c
11294
11295 USB DIAMOND RIO500 DRIVER
11296 M:      Cesar Miquel <miquel@df.uba.ar>
11297 L:      rio500-users@lists.sourceforge.net
11298 W:      http://rio500.sourceforge.net
11299 S:      Maintained
11300 F:      drivers/usb/misc/rio500*
11301
11302 USB EHCI DRIVER
11303 M:      Alan Stern <stern@rowland.harvard.edu>
11304 L:      linux-usb@vger.kernel.org
11305 S:      Maintained
11306 F:      Documentation/usb/ehci.txt
11307 F:      drivers/usb/host/ehci*
11308
11309 USB GADGET/PERIPHERAL SUBSYSTEM
11310 M:      Felipe Balbi <balbi@kernel.org>
11311 L:      linux-usb@vger.kernel.org
11312 W:      http://www.linux-usb.org/gadget
11313 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
11314 S:      Maintained
11315 F:      drivers/usb/gadget/
11316 F:      include/linux/usb/gadget*
11317
11318 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
11319 M:      Jiri Kosina <jikos@kernel.org>
11320 R:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
11321 L:      linux-usb@vger.kernel.org
11322 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
11323 S:      Maintained
11324 F:      Documentation/hid/hiddev.txt
11325 F:      drivers/hid/usbhid/
11326
11327 USB ISP116X DRIVER
11328 M:      Olav Kongas <ok@artecdesign.ee>
11329 L:      linux-usb@vger.kernel.org
11330 S:      Maintained
11331 F:      drivers/usb/host/isp116x*
11332 F:      include/linux/usb/isp116x.h
11333
11334 USB MASS STORAGE DRIVER
11335 M:      Matthew Dharm <mdharm-usb@one-eyed-alien.net>
11336 L:      linux-usb@vger.kernel.org
11337 L:      usb-storage@lists.one-eyed-alien.net
11338 S:      Maintained
11339 W:      http://www.one-eyed-alien.net/~mdharm/linux-usb/
11340 F:      drivers/usb/storage/
11341
11342 USB MIDI DRIVER
11343 M:      Clemens Ladisch <clemens@ladisch.de>
11344 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11345 T:      git git://git.alsa-project.org/alsa-kernel.git
11346 S:      Maintained
11347 F:      sound/usb/midi.*
11348
11349 USB NETWORKING DRIVERS
11350 L:      linux-usb@vger.kernel.org
11351 S:      Odd Fixes
11352 F:      drivers/net/usb/
11353
11354 USB OHCI DRIVER
11355 M:      Alan Stern <stern@rowland.harvard.edu>
11356 L:      linux-usb@vger.kernel.org
11357 S:      Maintained
11358 F:      Documentation/usb/ohci.txt
11359 F:      drivers/usb/host/ohci*
11360
11361 USB OTG FSM (Finite State Machine)
11362 M:      Peter Chen <Peter.Chen@nxp.com>
11363 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
11364 L:      linux-usb@vger.kernel.org
11365 S:      Maintained
11366 F:      drivers/usb/common/usb-otg-fsm.c
11367
11368 USB OVER IP DRIVER
11369 M:      Valentina Manea <valentina.manea.m@gmail.com>
11370 M:      Shuah Khan <shuah.kh@samsung.com>
11371 L:      linux-usb@vger.kernel.org
11372 S:      Maintained
11373 F:      drivers/usb/usbip/
11374 F:      tools/usb/usbip/
11375
11376 USB PEGASUS DRIVER
11377 M:      Petko Manolov <petkan@nucleusys.com>
11378 L:      linux-usb@vger.kernel.org
11379 L:      netdev@vger.kernel.org
11380 T:      git git://github.com/petkan/pegasus.git
11381 W:      https://github.com/petkan/pegasus
11382 S:      Maintained
11383 F:      drivers/net/usb/pegasus.*
11384
11385 USB PHY LAYER
11386 M:      Felipe Balbi <balbi@kernel.org>
11387 L:      linux-usb@vger.kernel.org
11388 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
11389 S:      Maintained
11390 F:      drivers/usb/phy/
11391
11392 USB PRINTER DRIVER (usblp)
11393 M:      Pete Zaitcev <zaitcev@redhat.com>
11394 L:      linux-usb@vger.kernel.org
11395 S:      Supported
11396 F:      drivers/usb/class/usblp.c
11397
11398 USB QMI WWAN NETWORK DRIVER
11399 M:      Bjørn Mork <bjorn@mork.no>
11400 L:      netdev@vger.kernel.org
11401 S:      Maintained
11402 F:      Documentation/ABI/testing/sysfs-class-net-qmi
11403 F:      drivers/net/usb/qmi_wwan.c
11404
11405 USB RTL8150 DRIVER
11406 M:      Petko Manolov <petkan@nucleusys.com>
11407 L:      linux-usb@vger.kernel.org
11408 L:      netdev@vger.kernel.org
11409 T:      git git://github.com/petkan/rtl8150.git
11410 W:      https://github.com/petkan/rtl8150
11411 S:      Maintained
11412 F:      drivers/net/usb/rtl8150.c
11413
11414 USB SERIAL SUBSYSTEM
11415 M:      Johan Hovold <johan@kernel.org>
11416 L:      linux-usb@vger.kernel.org
11417 S:      Maintained
11418 F:      Documentation/usb/usb-serial.txt
11419 F:      drivers/usb/serial/
11420 F:      include/linux/usb/serial.h
11421
11422 USB SMSC75XX ETHERNET DRIVER
11423 M:      Steve Glendinning <steve.glendinning@shawell.net>
11424 L:      netdev@vger.kernel.org
11425 S:      Maintained
11426 F:      drivers/net/usb/smsc75xx.*
11427
11428 USB SMSC95XX ETHERNET DRIVER
11429 M:      Steve Glendinning <steve.glendinning@shawell.net>
11430 L:      netdev@vger.kernel.org
11431 S:      Maintained
11432 F:      drivers/net/usb/smsc95xx.*
11433
11434 USB SUBSYSTEM
11435 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11436 L:      linux-usb@vger.kernel.org
11437 W:      http://www.linux-usb.org
11438 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
11439 S:      Supported
11440 F:      Documentation/usb/
11441 F:      drivers/usb/
11442 F:      include/linux/usb.h
11443 F:      include/linux/usb/
11444
11445 USB UHCI DRIVER
11446 M:      Alan Stern <stern@rowland.harvard.edu>
11447 L:      linux-usb@vger.kernel.org
11448 S:      Maintained
11449 F:      drivers/usb/host/uhci*
11450
11451 USB "USBNET" DRIVER FRAMEWORK
11452 M:      Oliver Neukum <oneukum@suse.com>
11453 L:      netdev@vger.kernel.org
11454 W:      http://www.linux-usb.org/usbnet
11455 S:      Maintained
11456 F:      drivers/net/usb/usbnet.c
11457 F:      include/linux/usb/usbnet.h
11458
11459 USB VIDEO CLASS
11460 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11461 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
11462 L:      linux-media@vger.kernel.org
11463 T:      git git://linuxtv.org/media_tree.git
11464 W:      http://www.ideasonboard.org/uvc/
11465 S:      Maintained
11466 F:      drivers/media/usb/uvc/
11467 F:      include/uapi/linux/uvcvideo.h
11468
11469 USB VISION DRIVER
11470 M:      Hans Verkuil <hverkuil@xs4all.nl>
11471 L:      linux-media@vger.kernel.org
11472 T:      git git://linuxtv.org/media_tree.git
11473 W:      https://linuxtv.org
11474 S:      Odd Fixes
11475 F:      drivers/media/usb/usbvision/
11476
11477 USB WEBCAM GADGET
11478 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11479 L:      linux-usb@vger.kernel.org
11480 S:      Maintained
11481 F:      drivers/usb/gadget/function/*uvc*
11482 F:      drivers/usb/gadget/legacy/webcam.c
11483
11484 USB WIRELESS RNDIS DRIVER (rndis_wlan)
11485 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
11486 L:      linux-wireless@vger.kernel.org
11487 S:      Maintained
11488 F:      drivers/net/wireless/rndis_wlan.c
11489
11490 USB XHCI DRIVER
11491 M:      Mathias Nyman <mathias.nyman@intel.com>
11492 L:      linux-usb@vger.kernel.org
11493 S:      Supported
11494 F:      drivers/usb/host/xhci*
11495 F:      drivers/usb/host/pci-quirks*
11496
11497 USB ZD1201 DRIVER
11498 L:      linux-wireless@vger.kernel.org
11499 W:      http://linux-lc100020.sourceforge.net
11500 S:      Orphan
11501 F:      drivers/net/wireless/zydas/zd1201.*
11502
11503 USB ZR364XX DRIVER
11504 M:      Antoine Jacquet <royale@zerezo.com>
11505 L:      linux-usb@vger.kernel.org
11506 L:      linux-media@vger.kernel.org
11507 T:      git git://linuxtv.org/media_tree.git
11508 W:      http://royale.zerezo.com/zr364xx/
11509 S:      Maintained
11510 F:      Documentation/video4linux/zr364xx.txt
11511 F:      drivers/media/usb/zr364xx/
11512
11513 ULPI BUS
11514 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
11515 L:      linux-usb@vger.kernel.org
11516 S:      Maintained
11517 F:      drivers/usb/common/ulpi.c
11518 F:      include/linux/ulpi/
11519
11520 USER-MODE LINUX (UML)
11521 M:      Jeff Dike <jdike@addtoit.com>
11522 M:      Richard Weinberger <richard@nod.at>
11523 L:      user-mode-linux-devel@lists.sourceforge.net
11524 L:      user-mode-linux-user@lists.sourceforge.net
11525 W:      http://user-mode-linux.sourceforge.net
11526 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
11527 S:      Maintained
11528 F:      Documentation/virtual/uml/
11529 F:      arch/um/
11530 F:      arch/x86/um/
11531 F:      fs/hostfs/
11532 F:      fs/hppfs/
11533
11534 USERSPACE I/O (UIO)
11535 M:      "Hans J. Koch" <hjk@hansjkoch.de>
11536 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11537 S:      Maintained
11538 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
11539 F:      Documentation/DocBook/uio-howto.tmpl
11540 F:      drivers/uio/
11541 F:      include/linux/uio*.h
11542
11543 UTIL-LINUX PACKAGE
11544 M:      Karel Zak <kzak@redhat.com>
11545 L:      util-linux@vger.kernel.org
11546 W:      http://en.wikipedia.org/wiki/Util-linux
11547 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
11548 S:      Maintained
11549
11550 UVESAFB DRIVER
11551 M:      Michal Januszewski <spock@gentoo.org>
11552 L:      linux-fbdev@vger.kernel.org
11553 W:      http://dev.gentoo.org/~spock/projects/uvesafb/
11554 S:      Maintained
11555 F:      Documentation/fb/uvesafb.txt
11556 F:      drivers/video/fbdev/uvesafb.*
11557
11558 VF610 NAND DRIVER
11559 M:      Stefan Agner <stefan@agner.ch>
11560 L:      linux-mtd@lists.infradead.org
11561 S:      Supported
11562 F:      drivers/mtd/nand/vf610_nfc.c
11563
11564 VFAT/FAT/MSDOS FILESYSTEM
11565 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
11566 S:      Maintained
11567 F:      Documentation/filesystems/vfat.txt
11568 F:      fs/fat/
11569
11570 VFIO DRIVER
11571 M:      Alex Williamson <alex.williamson@redhat.com>
11572 L:      kvm@vger.kernel.org
11573 T:      git git://github.com/awilliam/linux-vfio.git
11574 S:      Maintained
11575 F:      Documentation/vfio.txt
11576 F:      drivers/vfio/
11577 F:      include/linux/vfio.h
11578 F:      include/uapi/linux/vfio.h
11579
11580 VFIO PLATFORM DRIVER
11581 M:      Baptiste Reynal <b.reynal@virtualopensystems.com>
11582 L:      kvm@vger.kernel.org
11583 S:      Maintained
11584 F:      drivers/vfio/platform/
11585
11586 VIDEOBUF2 FRAMEWORK
11587 M:      Pawel Osciak <pawel@osciak.com>
11588 M:      Marek Szyprowski <m.szyprowski@samsung.com>
11589 M:      Kyungmin Park <kyungmin.park@samsung.com>
11590 L:      linux-media@vger.kernel.org
11591 S:      Maintained
11592 F:      drivers/media/v4l2-core/videobuf2-*
11593 F:      include/media/videobuf2-*
11594
11595 VIRTUAL SERIO DEVICE DRIVER
11596 M:      Stephen Chandler Paul <thatslyude@gmail.com>
11597 S:      Maintained
11598 F:      drivers/input/serio/userio.c
11599 F:      include/uapi/linux/userio.h
11600
11601 VIRTIO CONSOLE DRIVER
11602 M:      Amit Shah <amit.shah@redhat.com>
11603 L:      virtualization@lists.linux-foundation.org
11604 S:      Maintained
11605 F:      drivers/char/virtio_console.c
11606 F:      include/linux/virtio_console.h
11607 F:      include/uapi/linux/virtio_console.h
11608
11609 VIRTIO CORE, NET AND BLOCK DRIVERS
11610 M:      "Michael S. Tsirkin" <mst@redhat.com>
11611 L:      virtualization@lists.linux-foundation.org
11612 S:      Maintained
11613 F:      drivers/virtio/
11614 F:      tools/virtio/
11615 F:      drivers/net/virtio_net.c
11616 F:      drivers/block/virtio_blk.c
11617 F:      include/linux/virtio_*.h
11618 F:      include/uapi/linux/virtio_*.h
11619
11620 VIRTIO DRIVERS FOR S390
11621 M:      Christian Borntraeger <borntraeger@de.ibm.com>
11622 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
11623 L:      linux-s390@vger.kernel.org
11624 L:      virtualization@lists.linux-foundation.org
11625 L:      kvm@vger.kernel.org
11626 S:      Supported
11627 F:      drivers/s390/virtio/
11628
11629 VIRTIO GPU DRIVER
11630 M:      David Airlie <airlied@linux.ie>
11631 M:      Gerd Hoffmann <kraxel@redhat.com>
11632 L:      dri-devel@lists.freedesktop.org
11633 L:      virtualization@lists.linux-foundation.org
11634 S:      Maintained
11635 F:      drivers/gpu/drm/virtio/
11636 F:      include/uapi/linux/virtio_gpu.h
11637
11638 VIRTIO HOST (VHOST)
11639 M:      "Michael S. Tsirkin" <mst@redhat.com>
11640 L:      kvm@vger.kernel.org
11641 L:      virtualization@lists.linux-foundation.org
11642 L:      netdev@vger.kernel.org
11643 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
11644 S:      Maintained
11645 F:      drivers/vhost/
11646 F:      include/uapi/linux/vhost.h
11647
11648 VIRTIO INPUT DRIVER
11649 M:      Gerd Hoffmann <kraxel@redhat.com>
11650 S:      Maintained
11651 F:      drivers/virtio/virtio_input.c
11652 F:      include/uapi/linux/virtio_input.h
11653
11654 VIA RHINE NETWORK DRIVER
11655 S:      Orphan
11656 F:      drivers/net/ethernet/via/via-rhine.c
11657
11658 VIA SD/MMC CARD CONTROLLER DRIVER
11659 M:      Bruce Chang <brucechang@via.com.tw>
11660 M:      Harald Welte <HaraldWelte@viatech.com>
11661 S:      Maintained
11662 F:      drivers/mmc/host/via-sdmmc.c
11663
11664 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
11665 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
11666 L:      linux-fbdev@vger.kernel.org
11667 S:      Maintained
11668 F:      include/linux/via-core.h
11669 F:      include/linux/via-gpio.h
11670 F:      include/linux/via_i2c.h
11671 F:      drivers/video/fbdev/via/
11672
11673 VIA VELOCITY NETWORK DRIVER
11674 M:      Francois Romieu <romieu@fr.zoreil.com>
11675 L:      netdev@vger.kernel.org
11676 S:      Maintained
11677 F:      drivers/net/ethernet/via/via-velocity.*
11678
11679 VIRT LIB
11680 M:      Alex Williamson <alex.williamson@redhat.com>
11681 M:      Paolo Bonzini <pbonzini@redhat.com>
11682 L:      kvm@vger.kernel.org
11683 S:      Supported
11684 F:      virt/lib/
11685
11686 VIVID VIRTUAL VIDEO DRIVER
11687 M:      Hans Verkuil <hverkuil@xs4all.nl>
11688 L:      linux-media@vger.kernel.org
11689 T:      git git://linuxtv.org/media_tree.git
11690 W:      https://linuxtv.org
11691 S:      Maintained
11692 F:      drivers/media/platform/vivid/*
11693
11694 VLAN (802.1Q)
11695 M:      Patrick McHardy <kaber@trash.net>
11696 L:      netdev@vger.kernel.org
11697 S:      Maintained
11698 F:      drivers/net/macvlan.c
11699 F:      include/linux/if_*vlan.h
11700 F:      net/8021q/
11701
11702 VLYNQ BUS
11703 M:      Florian Fainelli <florian@openwrt.org>
11704 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
11705 S:      Maintained
11706 F:      drivers/vlynq/vlynq.c
11707 F:      include/linux/vlynq.h
11708
11709 VME SUBSYSTEM
11710 M:      Martyn Welch <martyn@welchs.me.uk>
11711 M:      Manohar Vanga <manohar.vanga@gmail.com>
11712 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11713 L:      devel@driverdev.osuosl.org
11714 S:      Maintained
11715 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
11716 F:      Documentation/vme_api.txt
11717 F:      drivers/staging/vme/
11718 F:      drivers/vme/
11719 F:      include/linux/vme*
11720
11721 VMWARE HYPERVISOR INTERFACE
11722 M:      Alok Kataria <akataria@vmware.com>
11723 L:      virtualization@lists.linux-foundation.org
11724 S:      Supported
11725 F:      arch/x86/kernel/cpu/vmware.c
11726
11727 VMWARE BALLOON DRIVER
11728 M:      Xavier Deguillard <xdeguillard@vmware.com>
11729 M:      Philip Moltmann <moltmann@vmware.com>
11730 M:      "VMware, Inc." <pv-drivers@vmware.com>
11731 L:      linux-kernel@vger.kernel.org
11732 S:      Maintained
11733 F:      drivers/misc/vmw_balloon.c
11734
11735 VMWARE VMMOUSE SUBDRIVER
11736 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
11737 M:      "VMware, Inc." <pv-drivers@vmware.com>
11738 L:      linux-input@vger.kernel.org
11739 S:      Maintained
11740 F:      drivers/input/mouse/vmmouse.c
11741 F:      drivers/input/mouse/vmmouse.h
11742
11743 VMWARE VMXNET3 ETHERNET DRIVER
11744 M:      Shrikrishna Khare <skhare@vmware.com>
11745 M:      "VMware, Inc." <pv-drivers@vmware.com>
11746 L:      netdev@vger.kernel.org
11747 S:      Maintained
11748 F:      drivers/net/vmxnet3/
11749
11750 VMware PVSCSI driver
11751 M:      Arvind Kumar <arvindkumar@vmware.com>
11752 M:      VMware PV-Drivers <pv-drivers@vmware.com>
11753 L:      linux-scsi@vger.kernel.org
11754 S:      Maintained
11755 F:      drivers/scsi/vmw_pvscsi.c
11756 F:      drivers/scsi/vmw_pvscsi.h
11757
11758 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
11759 M:      Liam Girdwood <lgirdwood@gmail.com>
11760 M:      Mark Brown <broonie@kernel.org>
11761 L:      linux-kernel@vger.kernel.org
11762 W:      http://www.slimlogic.co.uk/?p=48
11763 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
11764 S:      Supported
11765 F:      drivers/regulator/
11766 F:      include/linux/regulator/
11767
11768 VRF
11769 M:      David Ahern <dsa@cumulusnetworks.com>
11770 M:      Shrijeet Mukherjee <shm@cumulusnetworks.com>
11771 L:      netdev@vger.kernel.org
11772 S:      Maintained
11773 F:      drivers/net/vrf.c
11774 F:      Documentation/networking/vrf.txt
11775
11776 VT1211 HARDWARE MONITOR DRIVER
11777 M:      Juerg Haefliger <juergh@gmail.com>
11778 L:      lm-sensors@lm-sensors.org
11779 S:      Maintained
11780 F:      Documentation/hwmon/vt1211
11781 F:      drivers/hwmon/vt1211.c
11782
11783 VT8231 HARDWARE MONITOR DRIVER
11784 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
11785 L:      lm-sensors@lm-sensors.org
11786 S:      Maintained
11787 F:      drivers/hwmon/vt8231.c
11788
11789 VUB300 USB to SDIO/SD/MMC bridge chip
11790 M:      Tony Olech <tony.olech@elandigitalsystems.com>
11791 L:      linux-mmc@vger.kernel.org
11792 L:      linux-usb@vger.kernel.org
11793 S:      Supported
11794 F:      drivers/mmc/host/vub300.c
11795
11796 W1 DALLAS'S 1-WIRE BUS
11797 M:      Evgeniy Polyakov <zbr@ioremap.net>
11798 S:      Maintained
11799 F:      Documentation/w1/
11800 F:      drivers/w1/
11801
11802 W83791D HARDWARE MONITORING DRIVER
11803 M:      Marc Hulsman <m.hulsman@tudelft.nl>
11804 L:      lm-sensors@lm-sensors.org
11805 S:      Maintained
11806 F:      Documentation/hwmon/w83791d
11807 F:      drivers/hwmon/w83791d.c
11808
11809 W83793 HARDWARE MONITORING DRIVER
11810 M:      Rudolf Marek <r.marek@assembler.cz>
11811 L:      lm-sensors@lm-sensors.org
11812 S:      Maintained
11813 F:      Documentation/hwmon/w83793
11814 F:      drivers/hwmon/w83793.c
11815
11816 W83795 HARDWARE MONITORING DRIVER
11817 M:      Jean Delvare <jdelvare@suse.com>
11818 L:      lm-sensors@lm-sensors.org
11819 S:      Maintained
11820 F:      drivers/hwmon/w83795.c
11821
11822 W83L51xD SD/MMC CARD INTERFACE DRIVER
11823 M:      Pierre Ossman <pierre@ossman.eu>
11824 S:      Maintained
11825 F:      drivers/mmc/host/wbsd.*
11826
11827 WACOM PROTOCOL 4 SERIAL TABLETS
11828 M:      Julian Squires <julian@cipht.net>
11829 M:      Hans de Goede <hdegoede@redhat.com>
11830 L:      linux-input@vger.kernel.org
11831 S:      Maintained
11832 F:      drivers/input/tablet/wacom_serial4.c
11833
11834 WATCHDOG DEVICE DRIVERS
11835 M:      Wim Van Sebroeck <wim@iguana.be>
11836 R:      Guenter Roeck <linux@roeck-us.net>
11837 L:      linux-watchdog@vger.kernel.org
11838 W:      http://www.linux-watchdog.org/
11839 T:      git git://www.linux-watchdog.org/linux-watchdog.git
11840 S:      Maintained
11841 F:      Documentation/watchdog/
11842 F:      drivers/watchdog/
11843 F:      include/linux/watchdog.h
11844 F:      include/uapi/linux/watchdog.h
11845
11846 WD7000 SCSI DRIVER
11847 M:      Miroslav Zagorac <zaga@fly.cc.fer.hr>
11848 L:      linux-scsi@vger.kernel.org
11849 S:      Maintained
11850 F:      drivers/scsi/wd7000.c
11851
11852 WIIMOTE HID DRIVER
11853 M:      David Herrmann <dh.herrmann@googlemail.com>
11854 L:      linux-input@vger.kernel.org
11855 S:      Maintained
11856 F:      drivers/hid/hid-wiimote*
11857
11858 WINBOND CIR DRIVER
11859 M:      David Härdeman <david@hardeman.nu>
11860 S:      Maintained
11861 F:      drivers/media/rc/winbond-cir.c
11862
11863 WIMAX STACK
11864 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
11865 M:      linux-wimax@intel.com
11866 L:      wimax@linuxwimax.org (subscribers-only)
11867 S:      Supported
11868 W:      http://linuxwimax.org
11869 F:      Documentation/wimax/README.wimax
11870 F:      include/linux/wimax/debug.h
11871 F:      include/net/wimax.h
11872 F:      include/uapi/linux/wimax.h
11873 F:      net/wimax/
11874
11875 WISTRON LAPTOP BUTTON DRIVER
11876 M:      Miloslav Trmac <mitr@volny.cz>
11877 S:      Maintained
11878 F:      drivers/input/misc/wistron_btns.c
11879
11880 WL3501 WIRELESS PCMCIA CARD DRIVER
11881 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
11882 L:      linux-wireless@vger.kernel.org
11883 W:      http://oops.ghostprotocols.net:81/blog
11884 S:      Maintained
11885 F:      drivers/net/wireless/wl3501*
11886
11887 WOLFSON MICROELECTRONICS DRIVERS
11888 L:      patches@opensource.wolfsonmicro.com
11889 T:      git https://github.com/CirrusLogic/linux-drivers.git
11890 W:      https://github.com/CirrusLogic/linux-drivers/wiki
11891 S:      Supported
11892 F:      Documentation/hwmon/wm83??
11893 F:      Documentation/devicetree/bindings/extcon/extcon-arizona.txt
11894 F:      Documentation/devicetree/bindings/regulator/arizona-regulator.txt
11895 F:      Documentation/devicetree/bindings/mfd/arizona.txt
11896 F:      arch/arm/mach-s3c64xx/mach-crag6410*
11897 F:      drivers/clk/clk-wm83*.c
11898 F:      drivers/extcon/extcon-arizona.c
11899 F:      drivers/leds/leds-wm83*.c
11900 F:      drivers/gpio/gpio-*wm*.c
11901 F:      drivers/gpio/gpio-arizona.c
11902 F:      drivers/hwmon/wm83??-hwmon.c
11903 F:      drivers/input/misc/wm831x-on.c
11904 F:      drivers/input/touchscreen/wm831x-ts.c
11905 F:      drivers/input/touchscreen/wm97*.c
11906 F:      drivers/mfd/arizona*
11907 F:      drivers/mfd/wm*.c
11908 F:      drivers/mfd/cs47l24*
11909 F:      drivers/power/wm83*.c
11910 F:      drivers/rtc/rtc-wm83*.c
11911 F:      drivers/regulator/wm8*.c
11912 F:      drivers/video/backlight/wm83*_bl.c
11913 F:      drivers/watchdog/wm83*_wdt.c
11914 F:      include/linux/mfd/arizona/
11915 F:      include/linux/mfd/wm831x/
11916 F:      include/linux/mfd/wm8350/
11917 F:      include/linux/mfd/wm8400*
11918 F:      include/linux/wm97xx.h
11919 F:      include/sound/wm????.h
11920 F:      sound/soc/codecs/arizona.?
11921 F:      sound/soc/codecs/wm*
11922 F:      sound/soc/codecs/cs47l24*
11923
11924 WORKQUEUE
11925 M:      Tejun Heo <tj@kernel.org>
11926 R:      Lai Jiangshan <jiangshanlai@gmail.com>
11927 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
11928 S:      Maintained
11929 F:      include/linux/workqueue.h
11930 F:      kernel/workqueue.c
11931 F:      Documentation/workqueue.txt
11932
11933 X.25 NETWORK LAYER
11934 M:      Andrew Hendry <andrew.hendry@gmail.com>
11935 L:      linux-x25@vger.kernel.org
11936 S:      Odd Fixes
11937 F:      Documentation/networking/x25*
11938 F:      include/net/x25*
11939 F:      net/x25/
11940
11941 X86 ARCHITECTURE (32-BIT AND 64-BIT)
11942 M:      Thomas Gleixner <tglx@linutronix.de>
11943 M:      Ingo Molnar <mingo@redhat.com>
11944 M:      "H. Peter Anvin" <hpa@zytor.com>
11945 M:      x86@kernel.org
11946 L:      linux-kernel@vger.kernel.org
11947 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
11948 S:      Maintained
11949 F:      Documentation/x86/
11950 F:      arch/x86/
11951
11952 X86 PLATFORM DRIVERS
11953 M:      Darren Hart <dvhart@infradead.org>
11954 L:      platform-driver-x86@vger.kernel.org
11955 T:      git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git
11956 S:      Maintained
11957 F:      drivers/platform/x86/
11958 F:      drivers/platform/olpc/
11959
11960 X86 MCE INFRASTRUCTURE
11961 M:      Tony Luck <tony.luck@intel.com>
11962 M:      Borislav Petkov <bp@alien8.de>
11963 L:      linux-edac@vger.kernel.org
11964 S:      Maintained
11965 F:      arch/x86/kernel/cpu/mcheck/*
11966
11967 X86 MICROCODE UPDATE SUPPORT
11968 M:      Borislav Petkov <bp@alien8.de>
11969 S:      Maintained
11970 F:      arch/x86/kernel/cpu/microcode/*
11971
11972 X86 VDSO
11973 M:      Andy Lutomirski <luto@amacapital.net>
11974 L:      linux-kernel@vger.kernel.org
11975 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
11976 S:      Maintained
11977 F:      arch/x86/entry/vdso/
11978
11979 XC2028/3028 TUNER DRIVER
11980 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
11981 L:      linux-media@vger.kernel.org
11982 W:      https://linuxtv.org
11983 T:      git git://linuxtv.org/media_tree.git
11984 S:      Maintained
11985 F:      drivers/media/tuners/tuner-xc2028.*
11986
11987 XEN HYPERVISOR INTERFACE
11988 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11989 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
11990 M:      David Vrabel <david.vrabel@citrix.com>
11991 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11992 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
11993 S:      Supported
11994 F:      arch/x86/xen/
11995 F:      drivers/*/xen-*front.c
11996 F:      drivers/xen/
11997 F:      arch/x86/include/asm/xen/
11998 F:      include/xen/
11999 F:      include/uapi/xen/
12000
12001 XEN HYPERVISOR ARM
12002 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
12003 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12004 S:      Supported
12005 F:      arch/arm/xen/
12006 F:      arch/arm/include/asm/xen/
12007
12008 XEN HYPERVISOR ARM64
12009 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
12010 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12011 S:      Supported
12012 F:      arch/arm64/xen/
12013 F:      arch/arm64/include/asm/xen/
12014
12015 XEN NETWORK BACKEND DRIVER
12016 M:      Ian Campbell <ian.campbell@citrix.com>
12017 M:      Wei Liu <wei.liu2@citrix.com>
12018 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12019 L:      netdev@vger.kernel.org
12020 S:      Supported
12021 F:      drivers/net/xen-netback/*
12022
12023 XEN PCI SUBSYSTEM
12024 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
12025 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12026 S:      Supported
12027 F:      arch/x86/pci/*xen*
12028 F:      drivers/pci/*xen*
12029
12030 XEN BLOCK SUBSYSTEM
12031 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
12032 M:      Roger Pau MonnĂ© <roger.pau@citrix.com>
12033 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12034 S:      Supported
12035 F:      drivers/block/xen-blkback/*
12036 F:      drivers/block/xen*
12037
12038 XEN PVSCSI DRIVERS
12039 M:      Juergen Gross <jgross@suse.com>
12040 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12041 L:      linux-scsi@vger.kernel.org
12042 S:      Supported
12043 F:      drivers/scsi/xen-scsifront.c
12044 F:      drivers/xen/xen-scsiback.c
12045 F:      include/xen/interface/io/vscsiif.h
12046
12047 XEN SWIOTLB SUBSYSTEM
12048 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
12049 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12050 S:      Supported
12051 F:      arch/x86/xen/*swiotlb*
12052 F:      drivers/xen/*swiotlb*
12053
12054 XFS FILESYSTEM
12055 P:      Silicon Graphics Inc
12056 M:      Dave Chinner <david@fromorbit.com>
12057 M:      xfs@oss.sgi.com
12058 L:      xfs@oss.sgi.com
12059 W:      http://oss.sgi.com/projects/xfs
12060 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dgc/linux-xfs.git
12061 S:      Supported
12062 F:      Documentation/filesystems/xfs.txt
12063 F:      fs/xfs/
12064
12065 XILINX AXI ETHERNET DRIVER
12066 M:      Anirudha Sarangi <anirudh@xilinx.com>
12067 M:      John Linn <John.Linn@xilinx.com>
12068 S:      Maintained
12069 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
12070
12071 XILINX UARTLITE SERIAL DRIVER
12072 M:      Peter Korsgaard <jacmet@sunsite.dk>
12073 L:      linux-serial@vger.kernel.org
12074 S:      Maintained
12075 F:      drivers/tty/serial/uartlite.c
12076
12077 XILINX VIDEO IP CORES
12078 M:      Hyun Kwon <hyun.kwon@xilinx.com>
12079 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12080 L:      linux-media@vger.kernel.org
12081 T:      git git://linuxtv.org/media_tree.git
12082 S:      Supported
12083 F:      Documentation/devicetree/bindings/media/xilinx/
12084 F:      drivers/media/platform/xilinx/
12085 F:      include/uapi/linux/xilinx-v4l2-controls.h
12086
12087 XILLYBUS DRIVER
12088 M:      Eli Billauer <eli.billauer@gmail.com>
12089 L:      linux-kernel@vger.kernel.org
12090 S:      Supported
12091 F:      drivers/char/xillybus/
12092
12093 XTENSA XTFPGA PLATFORM SUPPORT
12094 M:      Max Filippov <jcmvbkbc@gmail.com>
12095 L:      linux-xtensa@linux-xtensa.org
12096 S:      Maintained
12097 F:      drivers/spi/spi-xtensa-xtfpga.c
12098 F:      sound/soc/xtensa/xtfpga-i2s.c
12099
12100 YAM DRIVER FOR AX.25
12101 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
12102 L:      linux-hams@vger.kernel.org
12103 S:      Maintained
12104 F:      drivers/net/hamradio/yam*
12105 F:      include/linux/yam.h
12106
12107 YEALINK PHONE DRIVER
12108 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
12109 L:      usbb2k-api-dev@nongnu.org
12110 S:      Maintained
12111 F:      Documentation/input/yealink.txt
12112 F:      drivers/input/misc/yealink.*
12113
12114 Z8530 DRIVER FOR AX.25
12115 M:      Joerg Reuter <jreuter@yaina.de>
12116 W:      http://yaina.de/jreuter/
12117 W:      http://www.qsl.net/dl1bke/
12118 L:      linux-hams@vger.kernel.org
12119 S:      Maintained
12120 F:      Documentation/networking/z8530drv.txt
12121 F:      drivers/net/hamradio/*scc.c
12122 F:      drivers/net/hamradio/z8530.h
12123
12124 ZBUD COMPRESSED PAGE ALLOCATOR
12125 M:      Seth Jennings <sjenning@redhat.com>
12126 L:      linux-mm@kvack.org
12127 S:      Maintained
12128 F:      mm/zbud.c
12129 F:      include/linux/zbud.h
12130
12131 ZD1211RW WIRELESS DRIVER
12132 M:      Daniel Drake <dsd@gentoo.org>
12133 M:      Ulrich Kunitz <kune@deine-taler.de>
12134 W:      http://zd1211.ath.cx/wiki/DriverRewrite
12135 L:      linux-wireless@vger.kernel.org
12136 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
12137 S:      Maintained
12138 F:      drivers/net/wireless/zydas/zd1211rw/
12139
12140 ZPOOL COMPRESSED PAGE STORAGE API
12141 M:      Dan Streetman <ddstreet@ieee.org>
12142 L:      linux-mm@kvack.org
12143 S:      Maintained
12144 F:      mm/zpool.c
12145 F:      include/linux/zpool.h
12146
12147 ZR36067 VIDEO FOR LINUX DRIVER
12148 L:      mjpeg-users@lists.sourceforge.net
12149 L:      linux-media@vger.kernel.org
12150 W:      http://mjpeg.sourceforge.net/driver-zoran/
12151 T:      hg https://linuxtv.org/hg/v4l-dvb
12152 S:      Odd Fixes
12153 F:      drivers/media/pci/zoran/
12154
12155 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
12156 M:      Minchan Kim <minchan@kernel.org>
12157 M:      Nitin Gupta <ngupta@vflare.org>
12158 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
12159 L:      linux-kernel@vger.kernel.org
12160 S:      Maintained
12161 F:      drivers/block/zram/
12162 F:      Documentation/blockdev/zram.txt
12163
12164 ZS DECSTATION Z85C30 SERIAL DRIVER
12165 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
12166 S:      Maintained
12167 F:      drivers/tty/serial/zs.*
12168
12169 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
12170 M:      Minchan Kim <minchan@kernel.org>
12171 M:      Nitin Gupta <ngupta@vflare.org>
12172 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
12173 L:      linux-mm@kvack.org
12174 S:      Maintained
12175 F:      mm/zsmalloc.c
12176 F:      include/linux/zsmalloc.h
12177 F:      Documentation/vm/zsmalloc.txt
12178
12179 ZSWAP COMPRESSED SWAP CACHING
12180 M:      Seth Jennings <sjenning@redhat.com>
12181 L:      linux-mm@kvack.org
12182 S:      Maintained
12183 F:      mm/zswap.c
12184
12185 THE REST
12186 M:      Linus Torvalds <torvalds@linux-foundation.org>
12187 L:      linux-kernel@vger.kernel.org
12188 Q:      http://patchwork.kernel.org/project/LKML/list/
12189 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
12190 S:      Buried alive in reporters
12191 F:      *
12192 F:      */