9268e83a9065f97e7f0bf8cb57f9c769ccd3d5ae
[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:      Documentation/ABI/
227 F:      include/linux/syscalls.h
228 F:      include/uapi/
229 F:      kernel/sys_ni.c
230
231 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
232 M:      Hans de Goede <hdegoede@redhat.com>
233 L:      lm-sensors@lm-sensors.org
234 S:      Maintained
235 F:      drivers/hwmon/abituguru.c
236
237 ABIT UGURU 3 HARDWARE MONITOR DRIVER
238 M:      Alistair John Strachan <alistair@devzero.co.uk>
239 L:      lm-sensors@lm-sensors.org
240 S:      Maintained
241 F:      drivers/hwmon/abituguru3.c
242
243 ACCES 104-IDI-48 GPIO DRIVER
244 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
245 L:      linux-gpio@vger.kernel.org
246 S:      Maintained
247 F:      drivers/gpio/gpio-104-idi-48.c
248
249 ACCES 104-IDIO-16 GPIO DRIVER
250 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
251 L:      linux-gpio@vger.kernel.org
252 S:      Maintained
253 F:      drivers/gpio/gpio-104-idio-16.c
254
255 ACENIC DRIVER
256 M:      Jes Sorensen <jes@trained-monkey.org>
257 L:      linux-acenic@sunsite.dk
258 S:      Maintained
259 F:      drivers/net/ethernet/alteon/acenic*
260
261 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
262 M:      Peter Feuerer <peter@piie.net>
263 L:      platform-driver-x86@vger.kernel.org
264 W:      http://piie.net/?section=acerhdf
265 S:      Maintained
266 F:      drivers/platform/x86/acerhdf.c
267
268 ACER WMI LAPTOP EXTRAS
269 M:      "Lee, Chun-Yi" <jlee@suse.com>
270 L:      platform-driver-x86@vger.kernel.org
271 S:      Maintained
272 F:      drivers/platform/x86/acer-wmi.c
273
274 ACPI
275 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
276 M:      Len Brown <lenb@kernel.org>
277 L:      linux-acpi@vger.kernel.org
278 W:      https://01.org/linux-acpi
279 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
280 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
281 S:      Supported
282 F:      drivers/acpi/
283 F:      drivers/pnp/pnpacpi/
284 F:      include/linux/acpi.h
285 F:      include/acpi/
286 F:      Documentation/acpi/
287 F:      Documentation/ABI/testing/sysfs-bus-acpi
288 F:      drivers/pci/*acpi*
289 F:      drivers/pci/*/*acpi*
290 F:      drivers/pci/*/*/*acpi*
291 F:      tools/power/acpi/
292
293 ACPI COMPONENT ARCHITECTURE (ACPICA)
294 M:      Robert Moore <robert.moore@intel.com>
295 M:      Lv Zheng <lv.zheng@intel.com>
296 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
297 L:      linux-acpi@vger.kernel.org
298 L:      devel@acpica.org
299 W:      https://acpica.org/
300 W:      https://github.com/acpica/acpica/
301 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
302 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
303 S:      Supported
304 F:      drivers/acpi/acpica/
305 F:      include/acpi/
306 F:      tools/power/acpi/
307
308 ACPI FAN DRIVER
309 M:      Zhang Rui <rui.zhang@intel.com>
310 L:      linux-acpi@vger.kernel.org
311 W:      https://01.org/linux-acpi
312 S:      Supported
313 F:      drivers/acpi/fan.c
314
315 ACPI THERMAL DRIVER
316 M:      Zhang Rui <rui.zhang@intel.com>
317 L:      linux-acpi@vger.kernel.org
318 W:      https://01.org/linux-acpi
319 S:      Supported
320 F:      drivers/acpi/*thermal*
321
322 ACPI VIDEO DRIVER
323 M:      Zhang Rui <rui.zhang@intel.com>
324 L:      linux-acpi@vger.kernel.org
325 W:      https://01.org/linux-acpi
326 S:      Supported
327 F:      drivers/acpi/acpi_video.c
328
329 ACPI WMI DRIVER
330 L:      platform-driver-x86@vger.kernel.org
331 S:      Orphan
332 F:      drivers/platform/x86/wmi.c
333
334 AD1889 ALSA SOUND DRIVER
335 M:      Thibaut Varene <T-Bone@parisc-linux.org>
336 W:      http://wiki.parisc-linux.org/AD1889
337 L:      linux-parisc@vger.kernel.org
338 S:      Maintained
339 F:      sound/pci/ad1889.*
340
341 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
342 M:      Michael Hennerich <michael.hennerich@analog.com>
343 W:      http://wiki.analog.com/AD5254
344 W:      http://ez.analog.com/community/linux-device-drivers
345 S:      Supported
346 F:      drivers/misc/ad525x_dpot.c
347
348 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
349 M:      Michael Hennerich <michael.hennerich@analog.com>
350 W:      http://wiki.analog.com/AD5398
351 W:      http://ez.analog.com/community/linux-device-drivers
352 S:      Supported
353 F:      drivers/regulator/ad5398.c
354
355 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
356 M:      Michael Hennerich <michael.hennerich@analog.com>
357 W:      http://wiki.analog.com/AD7142
358 W:      http://ez.analog.com/community/linux-device-drivers
359 S:      Supported
360 F:      drivers/input/misc/ad714x.c
361
362 AD7877 TOUCHSCREEN DRIVER
363 M:      Michael Hennerich <michael.hennerich@analog.com>
364 W:      http://wiki.analog.com/AD7877
365 W:      http://ez.analog.com/community/linux-device-drivers
366 S:      Supported
367 F:      drivers/input/touchscreen/ad7877.c
368
369 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
370 M:      Michael Hennerich <michael.hennerich@analog.com>
371 W:      http://wiki.analog.com/AD7879
372 W:      http://ez.analog.com/community/linux-device-drivers
373 S:      Supported
374 F:      drivers/input/touchscreen/ad7879.c
375
376 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
377 M:      Jiri Kosina <jikos@kernel.org>
378 S:      Maintained
379
380 ADF7242 IEEE 802.15.4 RADIO DRIVER
381 M:      Michael Hennerich <michael.hennerich@analog.com>
382 W:      https://wiki.analog.com/ADF7242
383 W:      http://ez.analog.com/community/linux-device-drivers
384 L:      linux-wpan@vger.kernel.org
385 S:      Supported
386 F:      drivers/net/ieee802154/adf7242.c
387 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
388
389 ADM1025 HARDWARE MONITOR DRIVER
390 M:      Jean Delvare <jdelvare@suse.com>
391 L:      lm-sensors@lm-sensors.org
392 S:      Maintained
393 F:      Documentation/hwmon/adm1025
394 F:      drivers/hwmon/adm1025.c
395
396 ADM1029 HARDWARE MONITOR DRIVER
397 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
398 L:      lm-sensors@lm-sensors.org
399 S:      Maintained
400 F:      drivers/hwmon/adm1029.c
401
402 ADM8211 WIRELESS DRIVER
403 L:      linux-wireless@vger.kernel.org
404 W:      http://wireless.kernel.org/
405 S:      Orphan
406 F:      drivers/net/wireless/admtek/adm8211.*
407
408 ADP1653 FLASH CONTROLLER DRIVER
409 M:      Sakari Ailus <sakari.ailus@iki.fi>
410 L:      linux-media@vger.kernel.org
411 S:      Maintained
412 F:      drivers/media/i2c/adp1653.c
413 F:      include/media/i2c/adp1653.h
414
415 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
416 M:      Michael Hennerich <michael.hennerich@analog.com>
417 W:      http://wiki.analog.com/ADP5520
418 W:      http://ez.analog.com/community/linux-device-drivers
419 S:      Supported
420 F:      drivers/mfd/adp5520.c
421 F:      drivers/video/backlight/adp5520_bl.c
422 F:      drivers/leds/leds-adp5520.c
423 F:      drivers/gpio/gpio-adp5520.c
424 F:      drivers/input/keyboard/adp5520-keys.c
425
426 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
427 M:      Michael Hennerich <michael.hennerich@analog.com>
428 W:      http://wiki.analog.com/ADP5588
429 W:      http://ez.analog.com/community/linux-device-drivers
430 S:      Supported
431 F:      drivers/input/keyboard/adp5588-keys.c
432 F:      drivers/gpio/gpio-adp5588.c
433
434 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
435 M:      Michael Hennerich <michael.hennerich@analog.com>
436 W:      http://wiki.analog.com/ADP8860
437 W:      http://ez.analog.com/community/linux-device-drivers
438 S:      Supported
439 F:      drivers/video/backlight/adp8860_bl.c
440
441 ADS1015 HARDWARE MONITOR DRIVER
442 M:      Dirk Eibach <eibach@gdsys.de>
443 L:      lm-sensors@lm-sensors.org
444 S:      Maintained
445 F:      Documentation/hwmon/ads1015
446 F:      drivers/hwmon/ads1015.c
447 F:      include/linux/i2c/ads1015.h
448
449 ADT746X FAN DRIVER
450 M:      Colin Leroy <colin@colino.net>
451 S:      Maintained
452 F:      drivers/macintosh/therm_adt746x.c
453
454 ADT7475 HARDWARE MONITOR DRIVER
455 M:      Jean Delvare <jdelvare@suse.com>
456 L:      lm-sensors@lm-sensors.org
457 S:      Maintained
458 F:      Documentation/hwmon/adt7475
459 F:      drivers/hwmon/adt7475.c
460
461 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
462 M:      Michael Hennerich <michael.hennerich@analog.com>
463 W:      http://wiki.analog.com/ADXL345
464 W:      http://ez.analog.com/community/linux-device-drivers
465 S:      Supported
466 F:      drivers/input/misc/adxl34x.c
467
468 ADVANSYS SCSI DRIVER
469 M:      Matthew Wilcox <matthew@wil.cx>
470 M:      Hannes Reinecke <hare@suse.com>
471 L:      linux-scsi@vger.kernel.org
472 S:      Maintained
473 F:      Documentation/scsi/advansys.txt
474 F:      drivers/scsi/advansys.c
475
476 AEDSP16 DRIVER
477 M:      Riccardo Facchetti <fizban@tin.it>
478 S:      Maintained
479 F:      sound/oss/aedsp16.c
480
481 AF9013 MEDIA DRIVER
482 M:      Antti Palosaari <crope@iki.fi>
483 L:      linux-media@vger.kernel.org
484 W:      https://linuxtv.org
485 W:      http://palosaari.fi/linux/
486 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
487 T:      git git://linuxtv.org/anttip/media_tree.git
488 S:      Maintained
489 F:      drivers/media/dvb-frontends/af9013*
490
491 AF9033 MEDIA DRIVER
492 M:      Antti Palosaari <crope@iki.fi>
493 L:      linux-media@vger.kernel.org
494 W:      https://linuxtv.org
495 W:      http://palosaari.fi/linux/
496 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
497 T:      git git://linuxtv.org/anttip/media_tree.git
498 S:      Maintained
499 F:      drivers/media/dvb-frontends/af9033*
500
501 AFFS FILE SYSTEM
502 L:      linux-fsdevel@vger.kernel.org
503 S:      Orphan
504 F:      Documentation/filesystems/affs.txt
505 F:      fs/affs/
506
507 AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
508 M:      David Howells <dhowells@redhat.com>
509 L:      linux-afs@lists.infradead.org
510 S:      Supported
511 F:      fs/afs/
512 F:      include/net/af_rxrpc.h
513 F:      net/rxrpc/af_rxrpc.c
514
515 AGPGART DRIVER
516 M:      David Airlie <airlied@linux.ie>
517 T:      git git://people.freedesktop.org/~airlied/linux (part of drm maint)
518 S:      Maintained
519 F:      drivers/char/agp/
520 F:      include/linux/agp*
521 F:      include/uapi/linux/agp*
522
523 AHA152X SCSI DRIVER
524 M:      "Juergen E. Fischer" <fischer@norbit.de>
525 L:      linux-scsi@vger.kernel.org
526 S:      Maintained
527 F:      drivers/scsi/aha152x*
528 F:      drivers/scsi/pcmcia/aha152x*
529
530 AIC7XXX / AIC79XX SCSI DRIVER
531 M:      Hannes Reinecke <hare@suse.com>
532 L:      linux-scsi@vger.kernel.org
533 S:      Maintained
534 F:      drivers/scsi/aic7xxx/
535
536 AIMSLAB FM RADIO RECEIVER DRIVER
537 M:      Hans Verkuil <hverkuil@xs4all.nl>
538 L:      linux-media@vger.kernel.org
539 T:      git git://linuxtv.org/media_tree.git
540 W:      https://linuxtv.org
541 S:      Maintained
542 F:      drivers/media/radio/radio-aimslab*
543
544 AIO
545 M:      Benjamin LaHaise <bcrl@kvack.org>
546 L:      linux-aio@kvack.org
547 S:      Supported
548 F:      fs/aio.c
549 F:      include/linux/*aio*.h
550
551 AIRSPY MEDIA DRIVER
552 M:      Antti Palosaari <crope@iki.fi>
553 L:      linux-media@vger.kernel.org
554 W:      https://linuxtv.org
555 W:      http://palosaari.fi/linux/
556 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
557 T:      git git://linuxtv.org/anttip/media_tree.git
558 S:      Maintained
559 F:      drivers/media/usb/airspy/
560
561 ALCATEL SPEEDTOUCH USB DRIVER
562 M:      Duncan Sands <duncan.sands@free.fr>
563 L:      linux-usb@vger.kernel.org
564 W:      http://www.linux-usb.org/SpeedTouch/
565 S:      Maintained
566 F:      drivers/usb/atm/speedtch.c
567 F:      drivers/usb/atm/usbatm.c
568
569 ALCHEMY AU1XX0 MMC DRIVER
570 M:      Manuel Lauss <manuel.lauss@gmail.com>
571 S:      Maintained
572 F:      drivers/mmc/host/au1xmmc.c
573
574 ALI1563 I2C DRIVER
575 M:      Rudolf Marek <r.marek@assembler.cz>
576 L:      linux-i2c@vger.kernel.org
577 S:      Maintained
578 F:      Documentation/i2c/busses/i2c-ali1563
579 F:      drivers/i2c/busses/i2c-ali1563.c
580
581 ALLWINNER SECURITY SYSTEM
582 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
583 L:      linux-crypto@vger.kernel.org
584 S:      Maintained
585 F:      drivers/crypto/sunxi-ss/
586
587 ALPHA PORT
588 M:      Richard Henderson <rth@twiddle.net>
589 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
590 M:      Matt Turner <mattst88@gmail.com>
591 S:      Odd Fixes
592 L:      linux-alpha@vger.kernel.org
593 F:      arch/alpha/
594
595 ALTERA MAILBOX DRIVER
596 M:      Ley Foon Tan <lftan@altera.com>
597 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
598 S:      Maintained
599 F:      drivers/mailbox/mailbox-altera.c
600
601 ALTERA PIO DRIVER
602 M:      Tien Hock Loh <thloh@altera.com>
603 L:      linux-gpio@vger.kernel.org
604 S:      Maintained
605 F:      drivers/gpio/gpio-altera.c
606
607 ALTERA TRIPLE SPEED ETHERNET DRIVER
608 M:      Vince Bridgers <vbridger@opensource.altera.com>
609 L:      netdev@vger.kernel.org
610 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
611 S:      Maintained
612 F:      drivers/net/ethernet/altera/
613
614 ALTERA UART/JTAG UART SERIAL DRIVERS
615 M:      Tobias Klauser <tklauser@distanz.ch>
616 L:      linux-serial@vger.kernel.org
617 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
618 S:      Maintained
619 F:      drivers/tty/serial/altera_uart.c
620 F:      drivers/tty/serial/altera_jtaguart.c
621 F:      include/linux/altera_uart.h
622 F:      include/linux/altera_jtaguart.h
623
624 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
625 M:      Tom Lendacky <thomas.lendacky@amd.com>
626 L:      linux-crypto@vger.kernel.org
627 S:      Supported
628 F:      drivers/crypto/ccp/
629 F:      include/linux/ccp.h
630
631 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
632 M:      Huang Rui <ray.huang@amd.com>
633 L:      lm-sensors@lm-sensors.org
634 S:      Supported
635 F:      Documentation/hwmon/fam15h_power
636 F:      drivers/hwmon/fam15h_power.c
637
638 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
639 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
640 S:      Orphan
641 F:      drivers/usb/gadget/udc/amd5536udc.*
642
643 AMD GEODE PROCESSOR/CHIPSET SUPPORT
644 P:      Andres Salomon <dilinger@queued.net>
645 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
646 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
647 S:      Supported
648 F:      drivers/char/hw_random/geode-rng.c
649 F:      drivers/crypto/geode*
650 F:      drivers/video/fbdev/geode/
651 F:      arch/x86/include/asm/geode.h
652
653 AMD IOMMU (AMD-VI)
654 M:      Joerg Roedel <joro@8bytes.org>
655 L:      iommu@lists.linux-foundation.org
656 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
657 S:      Maintained
658 F:      drivers/iommu/amd_iommu*.[ch]
659 F:      include/linux/amd-iommu.h
660
661 AMD KFD
662 M:      Oded Gabbay <oded.gabbay@gmail.com>
663 L:      dri-devel@lists.freedesktop.org
664 T:      git git://people.freedesktop.org/~gabbayo/linux.git
665 S:      Supported
666 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c
667 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
668 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
669 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
670 F:      drivers/gpu/drm/amd/amdkfd/
671 F:      drivers/gpu/drm/amd/include/cik_structs.h
672 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
673 F:      drivers/gpu/drm/amd/include/vi_structs.h
674 F:      drivers/gpu/drm/radeon/radeon_kfd.c
675 F:      drivers/gpu/drm/radeon/radeon_kfd.h
676 F:      include/uapi/linux/kfd_ioctl.h
677
678 AMD XGBE DRIVER
679 M:      Tom Lendacky <thomas.lendacky@amd.com>
680 L:      netdev@vger.kernel.org
681 S:      Supported
682 F:      drivers/net/ethernet/amd/xgbe/
683
684 AMS (Apple Motion Sensor) DRIVER
685 M:      Michael Hanselmann <linux-kernel@hansmi.ch>
686 S:      Supported
687 F:      drivers/macintosh/ams/
688
689 AMSO1100 RNIC DRIVER
690 M:      Tom Tucker <tom@opengridcomputing.com>
691 M:      Steve Wise <swise@opengridcomputing.com>
692 L:      linux-rdma@vger.kernel.org
693 S:      Maintained
694 F:      drivers/infiniband/hw/amso1100/
695
696 ANALOG DEVICES INC AD9389B DRIVER
697 M:      Hans Verkuil <hans.verkuil@cisco.com>
698 L:      linux-media@vger.kernel.org
699 S:      Maintained
700 F:      drivers/media/i2c/ad9389b*
701
702 ANALOG DEVICES INC ADV7180 DRIVER
703 M:      Lars-Peter Clausen <lars@metafoo.de>
704 L:      linux-media@vger.kernel.org
705 W:      http://ez.analog.com/community/linux-device-drivers
706 S:      Supported
707 F:      drivers/media/i2c/adv7180.c
708
709 ANALOG DEVICES INC ADV7511 DRIVER
710 M:      Hans Verkuil <hans.verkuil@cisco.com>
711 L:      linux-media@vger.kernel.org
712 S:      Maintained
713 F:      drivers/media/i2c/adv7511*
714
715 ANALOG DEVICES INC ADV7604 DRIVER
716 M:      Hans Verkuil <hans.verkuil@cisco.com>
717 L:      linux-media@vger.kernel.org
718 S:      Maintained
719 F:      drivers/media/i2c/adv7604*
720
721 ANALOG DEVICES INC ADV7842 DRIVER
722 M:      Hans Verkuil <hans.verkuil@cisco.com>
723 L:      linux-media@vger.kernel.org
724 S:      Maintained
725 F:      drivers/media/i2c/adv7842*
726
727 ANALOG DEVICES INC ASOC CODEC DRIVERS
728 M:      Lars-Peter Clausen <lars@metafoo.de>
729 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
730 W:      http://wiki.analog.com/
731 W:      http://ez.analog.com/community/linux-device-drivers
732 S:      Supported
733 F:      sound/soc/codecs/adau*
734 F:      sound/soc/codecs/adav*
735 F:      sound/soc/codecs/ad1*
736 F:      sound/soc/codecs/ad7*
737 F:      sound/soc/codecs/ssm*
738 F:      sound/soc/codecs/sigmadsp.*
739
740 ANALOG DEVICES INC ASOC DRIVERS
741 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
742 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
743 W:      http://blackfin.uclinux.org/
744 S:      Supported
745 F:      sound/soc/blackfin/*
746
747 ANALOG DEVICES INC IIO DRIVERS
748 M:      Lars-Peter Clausen <lars@metafoo.de>
749 M:      Michael Hennerich <Michael.Hennerich@analog.com>
750 W:      http://wiki.analog.com/
751 W:      http://ez.analog.com/community/linux-device-drivers
752 S:      Supported
753 F:      drivers/iio/*/ad*
754 X:      drivers/iio/*/adjd*
755 F:      drivers/staging/iio/*/ad*
756 F:      staging/iio/trigger/iio-trig-bfin-timer.c
757
758 ANALOG DEVICES INC DMA DRIVERS
759 M:      Lars-Peter Clausen <lars@metafoo.de>
760 W:      http://ez.analog.com/community/linux-device-drivers
761 S:      Supported
762 F:      drivers/dma/dma-axi-dmac.c
763
764 ANDROID DRIVERS
765 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
766 M:      Arve HjønnevĂ¥g <arve@android.com>
767 M:      Riley Andrews <riandrews@android.com>
768 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
769 L:      devel@driverdev.osuosl.org
770 S:      Supported
771 F:      drivers/android/
772 F:      drivers/staging/android/
773
774 AOA (Apple Onboard Audio) ALSA DRIVER
775 M:      Johannes Berg <johannes@sipsolutions.net>
776 L:      linuxppc-dev@lists.ozlabs.org
777 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
778 S:      Maintained
779 F:      sound/aoa/
780
781 APM DRIVER
782 M:      Jiri Kosina <jikos@kernel.org>
783 S:      Odd fixes
784 F:      arch/x86/kernel/apm_32.c
785 F:      include/linux/apm_bios.h
786 F:      include/uapi/linux/apm_bios.h
787 F:      drivers/char/apm-emulation.c
788
789 APPLE BCM5974 MULTITOUCH DRIVER
790 M:      Henrik Rydberg <rydberg@bitmath.org>
791 L:      linux-input@vger.kernel.org
792 S:      Odd fixes
793 F:      drivers/input/mouse/bcm5974.c
794
795 APPLE SMC DRIVER
796 M:      Henrik Rydberg <rydberg@bitmath.org>
797 L:      lm-sensors@lm-sensors.org
798 S:      Odd fixes
799 F:      drivers/hwmon/applesmc.c
800
801 APPLETALK NETWORK LAYER
802 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
803 S:      Maintained
804 F:      drivers/net/appletalk/
805 F:      net/appletalk/
806
807 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
808 M:      Duc Dang <dhdang@apm.com>
809 S:      Supported
810 F:      arch/arm64/boot/dts/apm/
811
812 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
813 M:      Iyappan Subramanian <isubramanian@apm.com>
814 M:      Keyur Chudgar <kchudgar@apm.com>
815 S:      Supported
816 F:      drivers/net/ethernet/apm/xgene/
817 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
818
819 APTINA CAMERA SENSOR PLL
820 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
821 L:      linux-media@vger.kernel.org
822 S:      Maintained
823 F:      drivers/media/i2c/aptina-pll.*
824
825 ARC FRAMEBUFFER DRIVER
826 M:      Jaya Kumar <jayalk@intworks.biz>
827 S:      Maintained
828 F:      drivers/video/fbdev/arcfb.c
829 F:      drivers/video/fbdev/core/fb_defio.c
830
831 ARCNET NETWORK LAYER
832 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
833 L:      netdev@vger.kernel.org
834 S:      Maintained
835 F:      drivers/net/arcnet/
836 F:      include/uapi/linux/if_arcnet.h
837
838 ARM MFM AND FLOPPY DRIVERS
839 M:      Ian Molton <spyro@f2s.com>
840 S:      Maintained
841 F:      arch/arm/lib/floppydma.S
842 F:      arch/arm/include/asm/floppy.h
843
844 ARM PMU PROFILING AND DEBUGGING
845 M:      Will Deacon <will.deacon@arm.com>
846 R:      Mark Rutland <mark.rutland@arm.com>
847 S:      Maintained
848 F:      arch/arm*/kernel/perf_*
849 F:      arch/arm/oprofile/common.c
850 F:      arch/arm*/kernel/hw_breakpoint.c
851 F:      arch/arm*/include/asm/hw_breakpoint.h
852 F:      arch/arm*/include/asm/perf_event.h
853 F:      drivers/perf/arm_pmu.c
854 F:      include/linux/perf/arm_pmu.h
855
856 ARM PORT
857 M:      Russell King <linux@arm.linux.org.uk>
858 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
859 W:      http://www.arm.linux.org.uk/
860 S:      Maintained
861 F:      arch/arm/
862
863 ARM SUB-ARCHITECTURES
864 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
865 S:      Maintained
866 F:      arch/arm/mach-*/
867 F:      arch/arm/plat-*/
868 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
869
870 ARM PRIMECELL AACI PL041 DRIVER
871 M:      Russell King <linux@arm.linux.org.uk>
872 S:      Maintained
873 F:      sound/arm/aaci.*
874
875 ARM PRIMECELL CLCD PL110 DRIVER
876 M:      Russell King <linux@arm.linux.org.uk>
877 S:      Maintained
878 F:      drivers/video/fbdev/amba-clcd.*
879
880 ARM PRIMECELL KMI PL050 DRIVER
881 M:      Russell King <linux@arm.linux.org.uk>
882 S:      Maintained
883 F:      drivers/input/serio/ambakmi.*
884 F:      include/linux/amba/kmi.h
885
886 ARM PRIMECELL MMCI PL180/1 DRIVER
887 M:      Russell King <linux@arm.linux.org.uk>
888 S:      Maintained
889 F:      drivers/mmc/host/mmci.*
890 F:      include/linux/amba/mmci.h
891
892 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
893 M:      Russell King <linux@arm.linux.org.uk>
894 S:      Maintained
895 F:      drivers/tty/serial/amba-pl01*.c
896 F:      include/linux/amba/serial.h
897
898 ARM PRIMECELL BUS SUPPORT
899 M:      Russell King <linux@arm.linux.org.uk>
900 S:      Maintained
901 F:      drivers/amba/
902 F:      include/linux/amba/bus.h
903
904 ARM/ADS SPHERE MACHINE SUPPORT
905 M:      Lennert Buytenhek <kernel@wantstofly.org>
906 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
907 S:      Maintained
908
909 ARM/AFEB9260 MACHINE SUPPORT
910 M:      Sergey Lapin <slapin@ossfans.org>
911 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
912 S:      Maintained
913
914 ARM/AJECO 1ARM MACHINE SUPPORT
915 M:      Lennert Buytenhek <kernel@wantstofly.org>
916 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
917 S:      Maintained
918
919 ARM/Allwinner sunXi SoC support
920 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
921 M:      Chen-Yu Tsai <wens@csie.org>
922 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
923 S:      Maintained
924 N:      sun[x456789]i
925
926 ARM/Allwinner SoC Clock Support
927 M:      Emilio LĂ³pez <emilio@elopez.com.ar>
928 S:      Maintained
929 F:      drivers/clk/sunxi/
930
931 ARM/Amlogic MesonX SoC support
932 M:      Carlo Caione <carlo@caione.org>
933 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
934 S:      Maintained
935 F:      drivers/media/rc/meson-ir.c
936 N:      meson[x68]
937
938 ARM/Annapurna Labs ALPINE ARCHITECTURE
939 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
940 S:      Maintained
941 F:      arch/arm/mach-alpine/
942
943 ARM/ATMEL AT91RM9200, AT91SAM9 AND SAMA5 SOC SUPPORT
944 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
945 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
946 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
947 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
948 W:      http://www.linux4sam.org
949 S:      Supported
950 F:      arch/arm/mach-at91/
951 F:      include/soc/at91/
952 F:      arch/arm/boot/dts/at91*.dts
953 F:      arch/arm/boot/dts/at91*.dtsi
954 F:      arch/arm/boot/dts/sama*.dts
955 F:      arch/arm/boot/dts/sama*.dtsi
956 F:      arch/arm/include/debug/at91.S
957
958 ARM/ATMEL AT91 Clock Support
959 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
960 S:      Maintained
961 F:      drivers/clk/at91
962
963 ARM/CALXEDA HIGHBANK ARCHITECTURE
964 M:      Rob Herring <robh@kernel.org>
965 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
966 S:      Maintained
967 F:      arch/arm/mach-highbank/
968
969 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
970 M:      Krzysztof Halasa <khalasa@piap.pl>
971 S:      Maintained
972 F:      arch/arm/mach-cns3xxx/
973
974 ARM/CAVIUM THUNDER NETWORK DRIVER
975 M:      Sunil Goutham <sgoutham@cavium.com>
976 M:      Robert Richter <rric@kernel.org>
977 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
978 S:      Supported
979 F:      drivers/net/ethernet/cavium/thunder/
980
981 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
982 M:      Alexander Shiyan <shc_work@mail.ru>
983 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
984 S:      Odd Fixes
985 N:      clps711x
986
987 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
988 M:      Hartley Sweeten <hsweeten@visionengravers.com>
989 M:      Ryan Mallon <rmallon@gmail.com>
990 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
991 S:      Maintained
992 F:      arch/arm/mach-ep93xx/
993 F:      arch/arm/mach-ep93xx/include/mach/
994
995 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
996 M:      Lennert Buytenhek <kernel@wantstofly.org>
997 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
998 S:      Maintained
999
1000 ARM/CLKDEV SUPPORT
1001 M:      Russell King <linux@arm.linux.org.uk>
1002 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1003 S:      Maintained
1004 F:      arch/arm/include/asm/clkdev.h
1005 F:      drivers/clk/clkdev.c
1006
1007 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
1008 M:      Mike Rapoport <mike@compulab.co.il>
1009 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1010 S:      Maintained
1011
1012 ARM/CONTEC MICRO9 MACHINE SUPPORT
1013 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1014 S:      Maintained
1015 F:      arch/arm/mach-ep93xx/micro9.c
1016
1017 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1018 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1019 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1020 S:      Maintained
1021 F:      drivers/hwtracing/coresight/*
1022 F:      Documentation/trace/coresight.txt
1023 F:      Documentation/devicetree/bindings/arm/coresight.txt
1024 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1025
1026 ARM/CORGI MACHINE SUPPORT
1027 M:      Richard Purdie <rpurdie@rpsys.net>
1028 S:      Maintained
1029
1030 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1031 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1032 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1033 T:      git git://github.com/ulli-kroll/linux.git
1034 S:      Maintained
1035 F:      arch/arm/mach-gemini/
1036 F:      drivers/rtc/rtc-gemini.c
1037
1038 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1039 M:      Barry Song <baohua@kernel.org>
1040 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1041 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1042 S:      Maintained
1043 F:      arch/arm/mach-prima2/
1044 F:      drivers/clk/sirf/
1045 F:      drivers/clocksource/timer-prima2.c
1046 F:      drivers/clocksource/timer-atlas7.c
1047 N:      [^a-z]sirf
1048
1049 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1050 M:      Baruch Siach <baruch@tkos.co.il>
1051 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1052 S:      Maintained
1053 F:      arch/arm/boot/dts/cx92755*
1054 N:      digicolor
1055
1056 ARM/EBSA110 MACHINE SUPPORT
1057 M:      Russell King <linux@arm.linux.org.uk>
1058 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1059 W:      http://www.arm.linux.org.uk/
1060 S:      Maintained
1061 F:      arch/arm/mach-ebsa110/
1062 F:      drivers/net/ethernet/amd/am79c961a.*
1063
1064 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1065 M:      Uwe Kleine-König <kernel@pengutronix.de>
1066 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1067 S:      Maintained
1068 N:      efm32
1069
1070 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1071 M:      Daniel Ribeiro <drwyrm@gmail.com>
1072 M:      Stefan Schmidt <stefan@openezx.org>
1073 M:      Harald Welte <laforge@openezx.org>
1074 L:      openezx-devel@lists.openezx.org (moderated for non-subscribers)
1075 W:      http://www.openezx.org/
1076 S:      Maintained
1077 T:      topgit git://git.openezx.org/openezx.git
1078 F:      arch/arm/mach-pxa/ezx.c
1079
1080 ARM/FARADAY FA526 PORT
1081 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1082 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1083 S:      Maintained
1084 T:      git git://git.berlios.de/gemini-board
1085 F:      arch/arm/mm/*-fa*
1086
1087 ARM/FOOTBRIDGE ARCHITECTURE
1088 M:      Russell King <linux@arm.linux.org.uk>
1089 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1090 W:      http://www.arm.linux.org.uk/
1091 S:      Maintained
1092 F:      arch/arm/include/asm/hardware/dec21285.h
1093 F:      arch/arm/mach-footbridge/
1094
1095 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1096 M:      Shawn Guo <shawnguo@kernel.org>
1097 M:      Sascha Hauer <kernel@pengutronix.de>
1098 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1099 S:      Maintained
1100 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1101 F:      arch/arm/mach-imx/
1102 F:      arch/arm/mach-mxs/
1103 F:      arch/arm/boot/dts/imx*
1104 F:      arch/arm/configs/imx*_defconfig
1105 F:      drivers/clk/imx/
1106 F:      include/soc/imx/
1107
1108 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1109 M:      Shawn Guo <shawnguo@kernel.org>
1110 M:      Sascha Hauer <kernel@pengutronix.de>
1111 R:      Stefan Agner <stefan@agner.ch>
1112 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1113 S:      Maintained
1114 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1115 F:      arch/arm/mach-imx/*vf610*
1116 F:      arch/arm/boot/dts/vf*
1117
1118 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1119 M:      Lennert Buytenhek <kernel@wantstofly.org>
1120 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1121 S:      Maintained
1122
1123 ARM/GUMSTIX MACHINE SUPPORT
1124 M:      Steve Sakoman <sakoman@gmail.com>
1125 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1126 S:      Maintained
1127
1128 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1129 M:      Philipp Zabel <philipp.zabel@gmail.com>
1130 M:      Paul Parsons <lost.distance@yahoo.com>
1131 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1132 S:      Maintained
1133 F:      arch/arm/mach-pxa/hx4700.c
1134 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1135 F:      sound/soc/pxa/hx4700.c
1136
1137 ARM/HISILICON SOC SUPPORT
1138 M:      Wei Xu <xuwei5@hisilicon.com>
1139 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1140 W:      http://www.hisilicon.com
1141 S:      Supported
1142 T:      git git://github.com/hisilicon/linux-hisi.git
1143 F:      arch/arm/mach-hisi/
1144
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 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
1221
1222 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
1223 M:      Santosh Shilimkar <ssantosh@kernel.org>
1224 L:      linux-kernel@vger.kernel.org
1225 S:      Maintained
1226 F:      drivers/clk/keystone/
1227
1228 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
1229 M:      Santosh Shilimkar <ssantosh@kernel.org>
1230 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1231 L:      linux-kernel@vger.kernel.org
1232 S:      Maintained
1233 F:      drivers/clocksource/timer-keystone.c
1234
1235 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
1236 M:      Santosh Shilimkar <ssantosh@kernel.org>
1237 L:      linux-kernel@vger.kernel.org
1238 S:      Maintained
1239 F:      drivers/power/reset/keystone-reset.c
1240
1241 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
1242 M:      Santosh Shilimkar <ssantosh@kernel.org>
1243 L:      linux-kernel@vger.kernel.org
1244 S:      Maintained
1245 F:      drivers/memory/*emif*
1246
1247 ARM/LOGICPD PXA270 MACHINE SUPPORT
1248 M:      Lennert Buytenhek <kernel@wantstofly.org>
1249 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1250 S:      Maintained
1251
1252 ARM/LPC18XX ARCHITECTURE
1253 M:      Joachim Eastwood <manabian@gmail.com>
1254 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1255 S:      Maintained
1256 F:      arch/arm/boot/dts/lpc43*
1257 F:      drivers/clk/nxp/clk-lpc18xx*
1258 F:      drivers/clocksource/time-lpc32xx.c
1259 F:      drivers/i2c/busses/i2c-lpc2k.c
1260 F:      drivers/memory/pl172.c
1261 F:      drivers/mtd/spi-nor/nxp-spifi.c
1262 F:      drivers/rtc/rtc-lpc24xx.c
1263 N:      lpc18xx
1264
1265 ARM/MAGICIAN MACHINE SUPPORT
1266 M:      Philipp Zabel <philipp.zabel@gmail.com>
1267 S:      Maintained
1268
1269 ARM/Marvell Kirkwood and Armada 370, 375, 38x, XP SOC support
1270 M:      Jason Cooper <jason@lakedaemon.net>
1271 M:      Andrew Lunn <andrew@lunn.ch>
1272 M:      Gregory Clement <gregory.clement@free-electrons.com>
1273 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1274 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1275 S:      Maintained
1276 F:      arch/arm/mach-mvebu/
1277 F:      drivers/rtc/rtc-armada38x.c
1278 F:      arch/arm/boot/dts/armada*
1279 F:      arch/arm/boot/dts/kirkwood*
1280
1281
1282 ARM/Marvell Berlin SoC support
1283 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1284 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1285 S:      Maintained
1286 F:      arch/arm/mach-berlin/
1287 F:      arch/arm/boot/dts/berlin*
1288
1289
1290 ARM/Marvell Dove/MV78xx0/Orion SOC support
1291 M:      Jason Cooper <jason@lakedaemon.net>
1292 M:      Andrew Lunn <andrew@lunn.ch>
1293 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1294 M:      Gregory Clement <gregory.clement@free-electrons.com>
1295 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1296 S:      Maintained
1297 F:      arch/arm/mach-dove/
1298 F:      arch/arm/mach-mv78xx0/
1299 F:      arch/arm/mach-orion5x/
1300 F:      arch/arm/plat-orion/
1301 F:      arch/arm/boot/dts/dove*
1302 F:      arch/arm/boot/dts/orion5x*
1303
1304
1305 ARM/Orion SoC/Technologic Systems TS-78xx platform support
1306 M:      Alexander Clouter <alex@digriz.org.uk>
1307 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1308 W:      http://www.digriz.org.uk/ts78xx/kernel
1309 S:      Maintained
1310 F:      arch/arm/mach-orion5x/ts78xx-*
1311
1312 ARM/Mediatek RTC DRIVER
1313 M:      Eddie Huang <eddie.huang@mediatek.com>
1314 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1315 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1316 S:      Maintained
1317 F:      drivers/rtc/rtc-mt6397.c
1318
1319 ARM/Mediatek SoC support
1320 M:      Matthias Brugger <matthias.bgg@gmail.com>
1321 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1322 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1323 S:      Maintained
1324 F:      arch/arm/boot/dts/mt6*
1325 F:      arch/arm/boot/dts/mt8*
1326 F:      arch/arm/mach-mediatek/
1327 N:      mtk
1328 K:      mediatek
1329
1330 ARM/Mediatek USB3 PHY DRIVER
1331 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
1332 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1333 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1334 S:      Maintained
1335 F:      drivers/phy/phy-mt65xx-usb3.c
1336
1337 ARM/MICREL KS8695 ARCHITECTURE
1338 M:      Greg Ungerer <gerg@uclinux.org>
1339 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1340 F:      arch/arm/mach-ks8695/
1341 S:      Odd Fixes
1342
1343 ARM/MIOA701 MACHINE SUPPORT
1344 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1345 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1346 F:      arch/arm/mach-pxa/mioa701.c
1347 S:      Maintained
1348
1349 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1350 M:      Michael Petchkovsky <mkpetch@internode.on.net>
1351 S:      Maintained
1352
1353 ARM/NOMADIK ARCHITECTURE
1354 M:      Alessandro Rubini <rubini@unipv.it>
1355 M:      Linus Walleij <linus.walleij@linaro.org>
1356 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1357 S:      Maintained
1358 F:      arch/arm/mach-nomadik/
1359 F:      drivers/pinctrl/nomadik/
1360 F:      drivers/i2c/busses/i2c-nomadik.c
1361 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
1362
1363 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
1364 M:      Nelson Castillo <arhuaco@freaks-unidos.net>
1365 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
1366 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
1367 S:      Supported
1368
1369 ARM/TOSA MACHINE SUPPORT
1370 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1371 M:      Dirk Opfer <dirk@opfer-online.de>
1372 S:      Maintained
1373
1374 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
1375 M:      Marek Vasut <marek.vasut@gmail.com>
1376 L:      linux-arm-kernel@lists.infradead.org
1377 W:      http://hackndev.com
1378 S:      Maintained
1379 F:      arch/arm/mach-pxa/include/mach/palmtx.h
1380 F:      arch/arm/mach-pxa/palmtx.c
1381 F:      arch/arm/mach-pxa/include/mach/palmt5.h
1382 F:      arch/arm/mach-pxa/palmt5.c
1383 F:      arch/arm/mach-pxa/include/mach/palmld.h
1384 F:      arch/arm/mach-pxa/palmld.c
1385 F:      arch/arm/mach-pxa/include/mach/palmte2.h
1386 F:      arch/arm/mach-pxa/palmte2.c
1387 F:      arch/arm/mach-pxa/include/mach/palmtc.h
1388 F:      arch/arm/mach-pxa/palmtc.c
1389
1390 ARM/PALM TREO SUPPORT
1391 M:      Tomas Cech <sleep_walker@suse.com>
1392 L:      linux-arm-kernel@lists.infradead.org
1393 W:      http://hackndev.com
1394 S:      Maintained
1395 F:      arch/arm/mach-pxa/include/mach/palmtreo.h
1396 F:      arch/arm/mach-pxa/palmtreo.c
1397
1398 ARM/PALMZ72 SUPPORT
1399 M:      Sergey Lapin <slapin@ossfans.org>
1400 L:      linux-arm-kernel@lists.infradead.org
1401 W:      http://hackndev.com
1402 S:      Maintained
1403 F:      arch/arm/mach-pxa/include/mach/palmz72.h
1404 F:      arch/arm/mach-pxa/palmz72.c
1405
1406 ARM/PLEB SUPPORT
1407 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
1408 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1409 S:      Maintained
1410
1411 ARM/PT DIGITAL BOARD PORT
1412 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
1413 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1414 W:      http://www.arm.linux.org.uk/
1415 S:      Maintained
1416
1417 ARM/QUALCOMM SUPPORT
1418 M:      Kumar Gala <galak@codeaurora.org>
1419 M:      Andy Gross <agross@codeaurora.org>
1420 M:      David Brown <davidb@codeaurora.org>
1421 L:      linux-arm-msm@vger.kernel.org
1422 L:      linux-soc@vger.kernel.org
1423 S:      Maintained
1424 F:      arch/arm/mach-qcom/
1425 F:      drivers/soc/qcom/
1426 F:      drivers/tty/serial/msm_serial.h
1427 F:      drivers/tty/serial/msm_serial.c
1428 F:      drivers/*/pm8???-*
1429 F:      drivers/mfd/ssbi.c
1430 F:      drivers/firmware/qcom_scm.c
1431 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git
1432
1433 ARM/RADISYS ENP2611 MACHINE SUPPORT
1434 M:      Lennert Buytenhek <kernel@wantstofly.org>
1435 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1436 S:      Maintained
1437
1438 ARM/RENESAS ARM64 ARCHITECTURE
1439 M:      Simon Horman <horms@verge.net.au>
1440 M:      Magnus Damm <magnus.damm@gmail.com>
1441 L:      linux-sh@vger.kernel.org
1442 Q:      http://patchwork.kernel.org/project/linux-sh/list/
1443 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1444 S:      Supported
1445 F:      arch/arm64/boot/dts/renesas/
1446
1447 ARM/RISCPC ARCHITECTURE
1448 M:      Russell King <linux@arm.linux.org.uk>
1449 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1450 W:      http://www.arm.linux.org.uk/
1451 S:      Maintained
1452 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
1453 F:      arch/arm/include/asm/hardware/ioc.h
1454 F:      arch/arm/include/asm/hardware/iomd.h
1455 F:      arch/arm/include/asm/hardware/memc.h
1456 F:      arch/arm/mach-rpc/
1457 F:      drivers/net/ethernet/8390/etherh.c
1458 F:      drivers/net/ethernet/i825xx/ether1*
1459 F:      drivers/net/ethernet/seeq/ether3*
1460 F:      drivers/scsi/arm/
1461
1462 ARM/Rockchip SoC support
1463 M:      Heiko Stuebner <heiko@sntech.de>
1464 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1465 L:      linux-rockchip@lists.infradead.org
1466 S:      Maintained
1467 F:      arch/arm/boot/dts/rk3*
1468 F:      arch/arm/mach-rockchip/
1469 F:      drivers/clk/rockchip/
1470 F:      drivers/i2c/busses/i2c-rk3x.c
1471 F:      drivers/*/*rockchip*
1472 F:      drivers/*/*/*rockchip*
1473 F:      sound/soc/rockchip/
1474 N:      rockchip
1475
1476 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
1477 M:      Kukjin Kim <kgene@kernel.org>
1478 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
1479 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1480 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1481 S:      Maintained
1482 F:      arch/arm/boot/dts/s3c*
1483 F:      arch/arm/boot/dts/exynos*
1484 F:      arch/arm64/boot/dts/exynos/
1485 F:      arch/arm/plat-samsung/
1486 F:      arch/arm/mach-s3c24*/
1487 F:      arch/arm/mach-s3c64xx/
1488 F:      arch/arm/mach-s5p*/
1489 F:      arch/arm/mach-exynos*/
1490 F:      drivers/*/*s3c2410*
1491 F:      drivers/*/*/*s3c2410*
1492 F:      drivers/spi/spi-s3c*
1493 F:      sound/soc/samsung/*
1494 F:      Documentation/arm/Samsung/
1495 F:      Documentation/devicetree/bindings/arm/samsung/
1496 F:      Documentation/devicetree/bindings/sram/samsung-sram.txt
1497 F:      Documentation/devicetree/bindings/power/pd-samsung.txt
1498 N:      exynos
1499
1500 ARM/SAMSUNG MOBILE MACHINE SUPPORT
1501 M:      Kyungmin Park <kyungmin.park@samsung.com>
1502 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1503 S:      Maintained
1504 F:      arch/arm/mach-s5pv210/
1505
1506 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1507 M:      Kyungmin Park <kyungmin.park@samsung.com>
1508 M:      Kamil Debski <k.debski@samsung.com>
1509 L:      linux-arm-kernel@lists.infradead.org
1510 L:      linux-media@vger.kernel.org
1511 S:      Maintained
1512 F:      drivers/media/platform/s5p-g2d/
1513
1514 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1515 M:      Kyungmin Park <kyungmin.park@samsung.com>
1516 M:      Kamil Debski <k.debski@samsung.com>
1517 M:      Jeongtae Park <jtp.park@samsung.com>
1518 L:      linux-arm-kernel@lists.infradead.org
1519 L:      linux-media@vger.kernel.org
1520 S:      Maintained
1521 F:      arch/arm/plat-samsung/s5p-dev-mfc.c
1522 F:      drivers/media/platform/s5p-mfc/
1523
1524 ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1525 M:      Kyungmin Park <kyungmin.park@samsung.com>
1526 M:      Tomasz Stanislawski <t.stanislaws@samsung.com>
1527 L:      linux-arm-kernel@lists.infradead.org
1528 L:      linux-media@vger.kernel.org
1529 S:      Maintained
1530 F:      drivers/media/platform/s5p-tv/
1531
1532 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
1533 M:      Andrzej Pietrasiewicz <andrzej.p@samsung.com>
1534 M:      Jacek Anaszewski <j.anaszewski@samsung.com>
1535 L:      linux-arm-kernel@lists.infradead.org
1536 L:      linux-media@vger.kernel.org
1537 S:      Maintained
1538 F:      drivers/media/platform/s5p-jpeg/
1539
1540 ARM/SHMOBILE ARM ARCHITECTURE
1541 M:      Simon Horman <horms@verge.net.au>
1542 M:      Magnus Damm <magnus.damm@gmail.com>
1543 L:      linux-renesas-soc@vger.kernel.org
1544 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
1545 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1546 S:      Supported
1547 F:      arch/arm/boot/dts/emev2*
1548 F:      arch/arm/boot/dts/r7s*
1549 F:      arch/arm/boot/dts/r8a*
1550 F:      arch/arm/boot/dts/sh*
1551 F:      arch/arm/configs/shmobile_defconfig
1552 F:      arch/arm/include/debug/renesas-scif.S
1553 F:      arch/arm/mach-shmobile/
1554 F:      drivers/sh/
1555
1556 ARM/SOCFPGA ARCHITECTURE
1557 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1558 S:      Maintained
1559 F:      arch/arm/mach-socfpga/
1560 F:      arch/arm/boot/dts/socfpga*
1561 F:      arch/arm/configs/socfpga_defconfig
1562 W:      http://www.rocketboards.org
1563 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
1564
1565 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1566 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1567 S:      Maintained
1568 F:      drivers/clk/socfpga/
1569
1570 ARM/SOCFPGA EDAC SUPPORT
1571 M:      Thor Thayer <tthayer@opensource.altera.com>
1572 S:      Maintained
1573 F:      drivers/edac/altera_edac.
1574
1575 ARM/STI ARCHITECTURE
1576 M:      Srinivas Kandagatla <srinivas.kandagatla@gmail.com>
1577 M:      Maxime Coquelin <maxime.coquelin@st.com>
1578 M:      Patrice Chotard <patrice.chotard@st.com>
1579 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1580 L:      kernel@stlinux.com
1581 W:      http://www.stlinux.com
1582 S:      Maintained
1583 F:      arch/arm/mach-sti/
1584 F:      arch/arm/boot/dts/sti*
1585 F:      drivers/char/hw_random/st-rng.c
1586 F:      drivers/clocksource/arm_global_timer.c
1587 F:      drivers/clocksource/clksrc_st_lpc.c
1588 F:      drivers/i2c/busses/i2c-st.c
1589 F:      drivers/media/rc/st_rc.c
1590 F:      drivers/media/platform/sti/c8sectpfe/
1591 F:      drivers/mmc/host/sdhci-st.c
1592 F:      drivers/phy/phy-miphy28lp.c
1593 F:      drivers/phy/phy-miphy365x.c
1594 F:      drivers/phy/phy-stih407-usb.c
1595 F:      drivers/phy/phy-stih41x-usb.c
1596 F:      drivers/pinctrl/pinctrl-st.c
1597 F:      drivers/reset/sti/
1598 F:      drivers/rtc/rtc-st-lpc.c
1599 F:      drivers/tty/serial/st-asc.c
1600 F:      drivers/usb/dwc3/dwc3-st.c
1601 F:      drivers/usb/host/ehci-st.c
1602 F:      drivers/usb/host/ohci-st.c
1603 F:      drivers/watchdog/st_lpc_wdt.c
1604 F:      drivers/ata/ahci_st.c
1605
1606 ARM/STM32 ARCHITECTURE
1607 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
1608 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1609 S:      Maintained
1610 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git
1611 N:      stm32
1612 F:      drivers/clocksource/armv7m_systick.c
1613
1614 ARM/TANGO ARCHITECTURE
1615 M:      Marc Gonzalez <marc_gonzalez@sigmadesigns.com>
1616 L:      linux-arm-kernel@lists.infradead.org
1617 S:      Maintained
1618 F:      arch/arm/mach-tango/
1619 F:      arch/arm/boot/dts/tango*
1620
1621 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
1622 M:      Lennert Buytenhek <kernel@wantstofly.org>
1623 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1624 S:      Maintained
1625
1626 ARM/TETON BGA MACHINE SUPPORT
1627 M:      "Mark F. Brown" <mark.brown314@gmail.com>
1628 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1629 S:      Maintained
1630
1631 ARM/THECUS N2100 MACHINE SUPPORT
1632 M:      Lennert Buytenhek <kernel@wantstofly.org>
1633 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1634 S:      Maintained
1635
1636 ARM/NUVOTON W90X900 ARM ARCHITECTURE
1637 M:      Wan ZongShun <mcuos.com@gmail.com>
1638 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1639 W:      http://www.mcuos.com
1640 S:      Maintained
1641 F:      arch/arm/mach-w90x900/
1642 F:      drivers/input/keyboard/w90p910_keypad.c
1643 F:      drivers/input/touchscreen/w90p910_ts.c
1644 F:      drivers/watchdog/nuc900_wdt.c
1645 F:      drivers/net/ethernet/nuvoton/w90p910_ether.c
1646 F:      drivers/mtd/nand/nuc900_nand.c
1647 F:      drivers/rtc/rtc-nuc900.c
1648 F:      drivers/spi/spi-nuc900.c
1649 F:      drivers/usb/host/ehci-w90x900.c
1650 F:      drivers/video/fbdev/nuc900fb.c
1651
1652 ARM/U300 MACHINE SUPPORT
1653 M:      Linus Walleij <linus.walleij@linaro.org>
1654 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1655 S:      Supported
1656 F:      arch/arm/mach-u300/
1657 F:      drivers/clocksource/timer-u300.c
1658 F:      drivers/i2c/busses/i2c-stu300.c
1659 F:      drivers/rtc/rtc-coh901331.c
1660 F:      drivers/watchdog/coh901327_wdt.c
1661 F:      drivers/dma/coh901318*
1662 F:      drivers/mfd/ab3100*
1663 F:      drivers/rtc/rtc-ab3100.c
1664 F:      drivers/rtc/rtc-coh901331.c
1665 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1666
1667 ARM/UNIPHIER ARCHITECTURE
1668 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
1669 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1670 S:      Maintained
1671 F:      arch/arm/boot/dts/uniphier*
1672 F:      arch/arm/include/asm/hardware/cache-uniphier.h
1673 F:      arch/arm/mach-uniphier/
1674 F:      arch/arm/mm/cache-uniphier.c
1675 F:      arch/arm64/boot/dts/socionext/
1676 F:      drivers/i2c/busses/i2c-uniphier*
1677 F:      drivers/pinctrl/uniphier/
1678 F:      drivers/tty/serial/8250/8250_uniphier.c
1679 N:      uniphier
1680
1681 ARM/Ux500 ARM ARCHITECTURE
1682 M:      Linus Walleij <linus.walleij@linaro.org>
1683 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1684 S:      Maintained
1685 F:      arch/arm/mach-ux500/
1686 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
1687 F:      drivers/dma/ste_dma40*
1688 F:      drivers/hwspinlock/u8500_hsem.c
1689 F:      drivers/mfd/abx500*
1690 F:      drivers/mfd/ab8500*
1691 F:      drivers/mfd/dbx500*
1692 F:      drivers/mfd/db8500*
1693 F:      drivers/pinctrl/nomadik/pinctrl-ab*
1694 F:      drivers/pinctrl/nomadik/pinctrl-nomadik*
1695 F:      drivers/rtc/rtc-ab8500.c
1696 F:      drivers/rtc/rtc-pl031.c
1697 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1698
1699 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
1700 M:      Ulf Hansson <ulf.hansson@linaro.org>
1701 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1702 T:      git git://git.linaro.org/people/ulfh/clk.git
1703 S:      Maintained
1704 F:      drivers/clk/ux500/
1705 F:      include/linux/platform_data/clk-ux500.h
1706
1707 ARM/VERSATILE EXPRESS PLATFORM
1708 M:      Liviu Dudau <liviu.dudau@arm.com>
1709 M:      Sudeep Holla <sudeep.holla@arm.com>
1710 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
1711 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1712 S:      Maintained
1713 F:      arch/arm/boot/dts/vexpress*
1714 F:      arch/arm64/boot/dts/arm/vexpress*
1715 F:      arch/arm/mach-vexpress/
1716 F:      */*/vexpress*
1717 F:      */*/*/vexpress*
1718 F:      drivers/clk/versatile/clk-vexpress-osc.c
1719 F:      drivers/clocksource/versatile.c
1720
1721 ARM/VFP SUPPORT
1722 M:      Russell King <linux@arm.linux.org.uk>
1723 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1724 W:      http://www.arm.linux.org.uk/
1725 S:      Maintained
1726 F:      arch/arm/vfp/
1727
1728 ARM/VOIPAC PXA270 SUPPORT
1729 M:      Marek Vasut <marek.vasut@gmail.com>
1730 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1731 S:      Maintained
1732 F:      arch/arm/mach-pxa/vpac270.c
1733 F:      arch/arm/mach-pxa/include/mach/vpac270.h
1734
1735 ARM/VT8500 ARM ARCHITECTURE
1736 M:      Tony Prisk <linux@prisktech.co.nz>
1737 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1738 S:      Maintained
1739 F:      arch/arm/mach-vt8500/
1740 F:      drivers/clocksource/vt8500_timer.c
1741 F:      drivers/i2c/busses/i2c-wmt.c
1742 F:      drivers/mmc/host/wmt-sdmmc.c
1743 F:      drivers/pwm/pwm-vt8500.c
1744 F:      drivers/rtc/rtc-vt8500.c
1745 F:      drivers/tty/serial/vt8500_serial.c
1746 F:      drivers/usb/host/ehci-platform.c
1747 F:      drivers/usb/host/uhci-platform.c
1748 F:      drivers/video/fbdev/vt8500lcdfb.*
1749 F:      drivers/video/fbdev/wm8505fb*
1750 F:      drivers/video/fbdev/wmt_ge_rops.*
1751
1752 ARM/ZIPIT Z2 SUPPORT
1753 M:      Marek Vasut <marek.vasut@gmail.com>
1754 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1755 S:      Maintained
1756 F:      arch/arm/mach-pxa/z2.c
1757 F:      arch/arm/mach-pxa/include/mach/z2.h
1758
1759 ARM/ZTE ARCHITECTURE
1760 M:      Jun Nie <jun.nie@linaro.org>
1761 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1762 S:      Maintained
1763 F:      arch/arm/mach-zx/
1764 F:      drivers/clk/zte/
1765 F:      Documentation/devicetree/bindings/arm/zte.txt
1766 F:      Documentation/devicetree/bindings/clock/zx296702-clk.txt
1767
1768 ARM/ZYNQ ARCHITECTURE
1769 M:      Michal Simek <michal.simek@xilinx.com>
1770 R:      Sören Brinkmann <soren.brinkmann@xilinx.com>
1771 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1772 W:      http://wiki.xilinx.com
1773 T:      git https://github.com/Xilinx/linux-xlnx.git
1774 S:      Supported
1775 F:      arch/arm/mach-zynq/
1776 F:      drivers/cpuidle/cpuidle-zynq.c
1777 F:      drivers/block/xsysace.c
1778 N:      zynq
1779 N:      xilinx
1780 F:      drivers/clocksource/cadence_ttc_timer.c
1781 F:      drivers/i2c/busses/i2c-cadence.c
1782 F:      drivers/mmc/host/sdhci-of-arasan.c
1783 F:      drivers/edac/synopsys_edac.c
1784
1785 ARM SMMU DRIVERS
1786 M:      Will Deacon <will.deacon@arm.com>
1787 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1788 S:      Maintained
1789 F:      drivers/iommu/arm-smmu.c
1790 F:      drivers/iommu/arm-smmu-v3.c
1791 F:      drivers/iommu/io-pgtable-arm.c
1792
1793 ARM64 PORT (AARCH64 ARCHITECTURE)
1794 M:      Catalin Marinas <catalin.marinas@arm.com>
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:      arch/arm64/
1799 F:      Documentation/arm64/
1800
1801 AS3645A LED FLASH CONTROLLER DRIVER
1802 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1803 L:      linux-media@vger.kernel.org
1804 T:      git git://linuxtv.org/media_tree.git
1805 S:      Maintained
1806 F:      drivers/media/i2c/as3645a.c
1807 F:      include/media/i2c/as3645a.h
1808
1809 ASC7621 HARDWARE MONITOR DRIVER
1810 M:      George Joseph <george.joseph@fairview5.com>
1811 L:      lm-sensors@lm-sensors.org
1812 S:      Maintained
1813 F:      Documentation/hwmon/asc7621
1814 F:      drivers/hwmon/asc7621.c
1815
1816 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
1817 M:      Corentin Chary <corentin.chary@gmail.com>
1818 L:      acpi4asus-user@lists.sourceforge.net
1819 L:      platform-driver-x86@vger.kernel.org
1820 W:      http://acpi4asus.sf.net
1821 S:      Maintained
1822 F:      drivers/platform/x86/asus*.c
1823 F:      drivers/platform/x86/eeepc*.c
1824
1825 ASUS WIRELESS RADIO CONTROL DRIVER
1826 M:      JoĂ£o Paulo Rechi Vita <jprvita@gmail.com>
1827 L:      platform-driver-x86@vger.kernel.org
1828 S:      Maintained
1829 F:      drivers/platform/x86/asus-wireless.c
1830
1831 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
1832 R:      Dan Williams <dan.j.williams@intel.com>
1833 W:      http://sourceforge.net/projects/xscaleiop
1834 S:      Odd fixes
1835 F:      Documentation/crypto/async-tx-api.txt
1836 F:      crypto/async_tx/
1837 F:      drivers/dma/
1838 F:      include/linux/dmaengine.h
1839 F:      include/linux/async_tx.h
1840
1841 AT24 EEPROM DRIVER
1842 M:      Wolfram Sang <wsa@the-dreams.de>
1843 L:      linux-i2c@vger.kernel.org
1844 S:      Maintained
1845 F:      drivers/misc/eeprom/at24.c
1846 F:      include/linux/platform_data/at24.h
1847
1848 ATA OVER ETHERNET (AOE) DRIVER
1849 M:      "Ed L. Cashin" <ed.cashin@acm.org>
1850 W:      http://www.openaoe.org/
1851 S:      Supported
1852 F:      Documentation/aoe/
1853 F:      drivers/block/aoe/
1854
1855 ATHEROS 71XX/9XXX GPIO DRIVER
1856 M:      Alban Bedel <albeu@free.fr>
1857 W:      https://github.com/AlbanBedel/linux
1858 T:      git git://github.com/AlbanBedel/linux
1859 S:      Maintained
1860 F:      drivers/gpio/gpio-ath79.c
1861 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
1862
1863 ATHEROS ATH GENERIC UTILITIES
1864 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1865 L:      linux-wireless@vger.kernel.org
1866 S:      Supported
1867 F:      drivers/net/wireless/ath/*
1868
1869 ATHEROS ATH5K WIRELESS DRIVER
1870 M:      Jiri Slaby <jirislaby@gmail.com>
1871 M:      Nick Kossifidis <mickflemm@gmail.com>
1872 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1873 L:      linux-wireless@vger.kernel.org
1874 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
1875 S:      Maintained
1876 F:      drivers/net/wireless/ath/ath5k/
1877
1878 ATHEROS ATH6KL WIRELESS DRIVER
1879 M:      Kalle Valo <kvalo@qca.qualcomm.com>
1880 L:      linux-wireless@vger.kernel.org
1881 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
1882 T:      git git://github.com/kvalo/ath.git
1883 S:      Supported
1884 F:      drivers/net/wireless/ath/ath6kl/
1885
1886 WILOCITY WIL6210 WIRELESS DRIVER
1887 M:      Maya Erez <qca_merez@qca.qualcomm.com>
1888 L:      linux-wireless@vger.kernel.org
1889 L:      wil6210@qca.qualcomm.com
1890 S:      Supported
1891 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
1892 F:      drivers/net/wireless/ath/wil6210/
1893 F:      include/uapi/linux/wil6210_uapi.h
1894
1895 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1896 M:      Christian Lamparter <chunkeey@googlemail.com>
1897 L:      linux-wireless@vger.kernel.org
1898 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
1899 S:      Maintained
1900 F:      drivers/net/wireless/ath/carl9170/
1901
1902 ATK0110 HWMON DRIVER
1903 M:      Luca Tettamanti <kronos.it@gmail.com>
1904 L:      lm-sensors@lm-sensors.org
1905 S:      Maintained
1906 F:      drivers/hwmon/asus_atk0110.c
1907
1908 ATI_REMOTE2 DRIVER
1909 M:      Ville Syrjala <syrjala@sci.fi>
1910 S:      Maintained
1911 F:      drivers/input/misc/ati_remote2.c
1912
1913 ATLX ETHERNET DRIVERS
1914 M:      Jay Cliburn <jcliburn@gmail.com>
1915 M:      Chris Snook <chris.snook@gmail.com>
1916 L:      netdev@vger.kernel.org
1917 W:      http://sourceforge.net/projects/atl1
1918 W:      http://atl1.sourceforge.net
1919 S:      Maintained
1920 F:      drivers/net/ethernet/atheros/
1921
1922 ATM
1923 M:      Chas Williams <3chas3@gmail.com>
1924 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
1925 L:      netdev@vger.kernel.org
1926 W:      http://linux-atm.sourceforge.net
1927 S:      Maintained
1928 F:      drivers/atm/
1929 F:      include/linux/atm*
1930 F:      include/uapi/linux/atm*
1931
1932 ATMEL AT91 / AT32 MCI DRIVER
1933 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1934 S:      Maintained
1935 F:      drivers/mmc/host/atmel-mci.c
1936
1937 ATMEL AT91 / AT32 SERIAL DRIVER
1938 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1939 S:      Supported
1940 F:      drivers/tty/serial/atmel_serial.c
1941
1942 ATMEL Audio ALSA driver
1943 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1944 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1945 S:      Supported
1946 F:      sound/soc/atmel
1947
1948 ATMEL DMA DRIVER
1949 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1950 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1951 S:      Supported
1952 F:      drivers/dma/at_hdmac.c
1953 F:      drivers/dma/at_hdmac_regs.h
1954 F:      include/linux/platform_data/dma-atmel.h
1955
1956 ATMEL XDMA DRIVER
1957 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1958 L:      linux-arm-kernel@lists.infradead.org
1959 L:      dmaengine@vger.kernel.org
1960 S:      Supported
1961 F:      drivers/dma/at_xdmac.c
1962
1963 ATMEL I2C DRIVER
1964 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1965 L:      linux-i2c@vger.kernel.org
1966 S:      Supported
1967 F:      drivers/i2c/busses/i2c-at91.c
1968
1969 ATMEL ISI DRIVER
1970 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1971 L:      linux-media@vger.kernel.org
1972 S:      Supported
1973 F:      drivers/media/platform/soc_camera/atmel-isi.c
1974 F:      include/media/atmel-isi.h
1975
1976 ATMEL LCDFB DRIVER
1977 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1978 L:      linux-fbdev@vger.kernel.org
1979 S:      Maintained
1980 F:      drivers/video/fbdev/atmel_lcdfb.c
1981 F:      include/video/atmel_lcdc.h
1982
1983 ATMEL MACB ETHERNET DRIVER
1984 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1985 S:      Supported
1986 F:      drivers/net/ethernet/cadence/
1987
1988 ATMEL NAND DRIVER
1989 M:      Wenyou Yang <wenyou.yang@atmel.com>
1990 M:      Josh Wu <rainyfeeling@outlook.com>
1991 L:      linux-mtd@lists.infradead.org
1992 S:      Supported
1993 F:      drivers/mtd/nand/atmel_nand*
1994
1995 ATMEL SDMMC DRIVER
1996 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1997 L:      linux-mmc@vger.kernel.org
1998 S:      Supported
1999 F:      drivers/mmc/host/sdhci-of-at91.c
2000
2001 ATMEL SPI DRIVER
2002 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2003 S:      Supported
2004 F:      drivers/spi/spi-atmel.*
2005
2006 ATMEL SSC DRIVER
2007 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2008 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2009 S:      Supported
2010 F:      drivers/misc/atmel-ssc.c
2011 F:      include/linux/atmel-ssc.h
2012
2013 ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
2014 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2015 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2016 S:      Supported
2017 F:      drivers/misc/atmel_tclib.c
2018 F:      drivers/clocksource/tcb_clksrc.c
2019
2020 ATMEL USBA UDC DRIVER
2021 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2022 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2023 S:      Supported
2024 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
2025
2026 ATMEL WIRELESS DRIVER
2027 M:      Simon Kelley <simon@thekelleys.org.uk>
2028 L:      linux-wireless@vger.kernel.org
2029 W:      http://www.thekelleys.org.uk/atmel
2030 W:      http://atmelwlandriver.sourceforge.net/
2031 S:      Maintained
2032 F:      drivers/net/wireless/atmel/atmel*
2033
2034 ATMEL MAXTOUCH DRIVER
2035 M:      Nick Dyer <nick.dyer@itdev.co.uk>
2036 T:      git git://github.com/atmel-maxtouch/linux.git
2037 S:      Supported
2038 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2039 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2040 F:      include/linux/platform_data/atmel_mxt_ts.h
2041
2042 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2043 M:      Bradley Grove <linuxdrivers@attotech.com>
2044 L:      linux-scsi@vger.kernel.org
2045 W:      http://www.attotech.com
2046 S:      Supported
2047 F:      drivers/scsi/esas2r
2048
2049 ATUSB IEEE 802.15.4 RADIO DRIVER
2050 M:      Stefan Schmidt <stefan@osg.samsung.com>
2051 L:      linux-wpan@vger.kernel.org
2052 S:      Maintained
2053 F:      drivers/net/ieee802154/atusb.c
2054 F:      drivers/net/ieee802154/atusb.h
2055 F:      drivers/net/ieee802154/at86rf230.h
2056
2057 AUDIT SUBSYSTEM
2058 M:      Paul Moore <paul@paul-moore.com>
2059 M:      Eric Paris <eparis@redhat.com>
2060 L:      linux-audit@redhat.com (moderated for non-subscribers)
2061 W:      http://people.redhat.com/sgrubb/audit/
2062 T:      git git://git.infradead.org/users/pcmoore/audit
2063 S:      Maintained
2064 F:      include/linux/audit.h
2065 F:      include/uapi/linux/audit.h
2066 F:      kernel/audit*
2067
2068 AUXILIARY DISPLAY DRIVERS
2069 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2070 W:      http://miguelojeda.es/auxdisplay.htm
2071 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2072 S:      Maintained
2073 F:      drivers/auxdisplay/
2074 F:      include/linux/cfag12864b.h
2075
2076 AVR32 ARCHITECTURE
2077 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
2078 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
2079 W:      http://www.atmel.com/products/AVR32/
2080 W:      http://mirror.egtvedt.no/avr32linux.org/
2081 W:      http://avrfreaks.net/
2082 S:      Maintained
2083 F:      arch/avr32/
2084
2085 AVR32/AT32AP MACHINE SUPPORT
2086 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
2087 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
2088 S:      Maintained
2089 F:      arch/avr32/mach-at32ap/
2090
2091 AX.25 NETWORK LAYER
2092 M:      Ralf Baechle <ralf@linux-mips.org>
2093 L:      linux-hams@vger.kernel.org
2094 W:      http://www.linux-ax25.org/
2095 S:      Maintained
2096 F:      include/uapi/linux/ax25.h
2097 F:      include/net/ax25.h
2098 F:      net/ax25/
2099
2100 AZ6007 DVB DRIVER
2101 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2102 L:      linux-media@vger.kernel.org
2103 W:      https://linuxtv.org
2104 T:      git git://linuxtv.org/media_tree.git
2105 S:      Maintained
2106 F:      drivers/media/usb/dvb-usb-v2/az6007.c
2107
2108 AZTECH FM RADIO RECEIVER DRIVER
2109 M:      Hans Verkuil <hverkuil@xs4all.nl>
2110 L:      linux-media@vger.kernel.org
2111 T:      git git://linuxtv.org/media_tree.git
2112 W:      https://linuxtv.org
2113 S:      Maintained
2114 F:      drivers/media/radio/radio-aztech*
2115
2116 B43 WIRELESS DRIVER
2117 L:      linux-wireless@vger.kernel.org
2118 L:      b43-dev@lists.infradead.org
2119 W:      http://wireless.kernel.org/en/users/Drivers/b43
2120 S:      Odd Fixes
2121 F:      drivers/net/wireless/broadcom/b43/
2122
2123 B43LEGACY WIRELESS DRIVER
2124 M:      Larry Finger <Larry.Finger@lwfinger.net>
2125 L:      linux-wireless@vger.kernel.org
2126 L:      b43-dev@lists.infradead.org
2127 W:      http://wireless.kernel.org/en/users/Drivers/b43
2128 S:      Maintained
2129 F:      drivers/net/wireless/broadcom/b43legacy/
2130
2131 BACKLIGHT CLASS/SUBSYSTEM
2132 M:      Jingoo Han <jingoohan1@gmail.com>
2133 M:      Lee Jones <lee.jones@linaro.org>
2134 S:      Maintained
2135 F:      drivers/video/backlight/
2136 F:      include/linux/backlight.h
2137
2138 BATMAN ADVANCED
2139 M:      Marek Lindner <mareklindner@neomailbox.ch>
2140 M:      Simon Wunderlich <sw@simonwunderlich.de>
2141 M:      Antonio Quartulli <a@unstable.cc>
2142 L:      b.a.t.m.a.n@lists.open-mesh.org
2143 W:      http://www.open-mesh.org/
2144 S:      Maintained
2145 F:      net/batman-adv/
2146
2147 BAYCOM/HDLCDRV DRIVERS FOR AX.25
2148 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
2149 L:      linux-hams@vger.kernel.org
2150 W:      http://www.baycom.org/~tom/ham/ham.html
2151 S:      Maintained
2152 F:      drivers/net/hamradio/baycom*
2153
2154 BCACHE (BLOCK LAYER CACHE)
2155 M:      Kent Overstreet <kent.overstreet@gmail.com>
2156 L:      linux-bcache@vger.kernel.org
2157 W:      http://bcache.evilpiepirate.org
2158 S:      Maintained
2159 F:      drivers/md/bcache/
2160
2161 BDISP ST MEDIA DRIVER
2162 M:      Fabien Dessenne <fabien.dessenne@st.com>
2163 L:      linux-media@vger.kernel.org
2164 T:      git git://linuxtv.org/media_tree.git
2165 W:      https://linuxtv.org
2166 S:      Supported
2167 F:      drivers/media/platform/sti/bdisp
2168
2169 BEFS FILE SYSTEM
2170 S:      Orphan
2171 F:      Documentation/filesystems/befs.txt
2172 F:      fs/befs/
2173
2174 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
2175 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
2176 L:      netdev@vger.kernel.org
2177 S:      Maintained
2178 F:      drivers/net/ethernet/ec_bhf.c
2179
2180 BFS FILE SYSTEM
2181 M:      "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
2182 S:      Maintained
2183 F:      Documentation/filesystems/bfs.txt
2184 F:      fs/bfs/
2185 F:      include/uapi/linux/bfs_fs.h
2186
2187 BLACKFIN ARCHITECTURE
2188 M:      Steven Miao <realmz6@gmail.com>
2189 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2190 T:      git git://git.code.sf.net/p/adi-linux/code
2191 W:      http://blackfin.uclinux.org
2192 S:      Supported
2193 F:      arch/blackfin/
2194
2195 BLACKFIN EMAC DRIVER
2196 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2197 W:      http://blackfin.uclinux.org
2198 S:      Supported
2199 F:      drivers/net/ethernet/adi/
2200
2201 BLACKFIN RTC DRIVER
2202 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2203 W:      http://blackfin.uclinux.org
2204 S:      Supported
2205 F:      drivers/rtc/rtc-bfin.c
2206
2207 BLACKFIN SDH DRIVER
2208 M:      Sonic Zhang <sonic.zhang@analog.com>
2209 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2210 W:      http://blackfin.uclinux.org
2211 S:      Supported
2212 F:      drivers/mmc/host/bfin_sdh.c
2213
2214 BLACKFIN SERIAL DRIVER
2215 M:      Sonic Zhang <sonic.zhang@analog.com>
2216 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2217 W:      http://blackfin.uclinux.org
2218 S:      Supported
2219 F:      drivers/tty/serial/bfin_uart.c
2220
2221 BLACKFIN WATCHDOG DRIVER
2222 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2223 W:      http://blackfin.uclinux.org
2224 S:      Supported
2225 F:      drivers/watchdog/bfin_wdt.c
2226
2227 BLACKFIN I2C TWI DRIVER
2228 M:      Sonic Zhang <sonic.zhang@analog.com>
2229 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2230 W:      http://blackfin.uclinux.org/
2231 S:      Supported
2232 F:      drivers/i2c/busses/i2c-bfin-twi.c
2233
2234 BLACKFIN MEDIA DRIVER
2235 M:      Scott Jiang <scott.jiang.linux@gmail.com>
2236 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2237 W:      http://blackfin.uclinux.org/
2238 S:      Supported
2239 F:      drivers/media/platform/blackfin/
2240 F:      drivers/media/i2c/adv7183*
2241 F:      drivers/media/i2c/vs6624*
2242
2243 BLINKM RGB LED DRIVER
2244 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
2245 S:      Maintained
2246 F:      drivers/leds/leds-blinkm.c
2247
2248 BLOCK LAYER
2249 M:      Jens Axboe <axboe@kernel.dk>
2250 L:      linux-block@vger.kernel.org
2251 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
2252 S:      Maintained
2253 F:      block/
2254 F:      kernel/trace/blktrace.c
2255
2256 BLOCK2MTD DRIVER
2257 M:      Joern Engel <joern@lazybastard.org>
2258 L:      linux-mtd@lists.infradead.org
2259 S:      Maintained
2260 F:      drivers/mtd/devices/block2mtd.c
2261
2262 BLUETOOTH DRIVERS
2263 M:      Marcel Holtmann <marcel@holtmann.org>
2264 M:      Gustavo Padovan <gustavo@padovan.org>
2265 M:      Johan Hedberg <johan.hedberg@gmail.com>
2266 L:      linux-bluetooth@vger.kernel.org
2267 W:      http://www.bluez.org/
2268 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2269 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2270 S:      Maintained
2271 F:      drivers/bluetooth/
2272
2273 BLUETOOTH SUBSYSTEM
2274 M:      Marcel Holtmann <marcel@holtmann.org>
2275 M:      Gustavo Padovan <gustavo@padovan.org>
2276 M:      Johan Hedberg <johan.hedberg@gmail.com>
2277 L:      linux-bluetooth@vger.kernel.org
2278 W:      http://www.bluez.org/
2279 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2280 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2281 S:      Maintained
2282 F:      net/bluetooth/
2283 F:      include/net/bluetooth/
2284
2285 BONDING DRIVER
2286 M:      Jay Vosburgh <j.vosburgh@gmail.com>
2287 M:      Veaceslav Falico <vfalico@gmail.com>
2288 M:      Andy Gospodarek <gospo@cumulusnetworks.com>
2289 L:      netdev@vger.kernel.org
2290 W:      http://sourceforge.net/projects/bonding/
2291 S:      Supported
2292 F:      drivers/net/bonding/
2293 F:      include/uapi/linux/if_bonding.h
2294
2295 BPF (Safe dynamic programs and tools)
2296 M:      Alexei Starovoitov <ast@kernel.org>
2297 L:      netdev@vger.kernel.org
2298 L:      linux-kernel@vger.kernel.org
2299 S:      Supported
2300 F:      kernel/bpf/
2301
2302 BROADCOM B44 10/100 ETHERNET DRIVER
2303 M:      Gary Zambrano <zambrano@broadcom.com>
2304 L:      netdev@vger.kernel.org
2305 S:      Supported
2306 F:      drivers/net/ethernet/broadcom/b44.*
2307
2308 BROADCOM GENET ETHERNET DRIVER
2309 M:      Florian Fainelli <f.fainelli@gmail.com>
2310 L:      netdev@vger.kernel.org
2311 S:      Supported
2312 F:      drivers/net/ethernet/broadcom/genet/
2313
2314 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
2315 M:      Sony Chacko <sony.chacko@qlogic.com>
2316 M:      Dept-HSGLinuxNICDev@qlogic.com
2317 L:      netdev@vger.kernel.org
2318 S:      Supported
2319 F:      drivers/net/ethernet/broadcom/bnx2.*
2320 F:      drivers/net/ethernet/broadcom/bnx2_*
2321
2322 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
2323 M:      Ariel Elior <ariel.elior@qlogic.com>
2324 L:      netdev@vger.kernel.org
2325 S:      Supported
2326 F:      drivers/net/ethernet/broadcom/bnx2x/
2327
2328 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
2329 M:      Florian Fainelli <f.fainelli@gmail.com>
2330 M:      Ray Jui <rjui@broadcom.com>
2331 M:      Scott Branden <sbranden@broadcom.com>
2332 L:      bcm-kernel-feedback-list@broadcom.com
2333 T:      git git://github.com/broadcom/mach-bcm
2334 S:      Maintained
2335 F:      arch/arm/mach-bcm/
2336 F:      arch/arm/boot/dts/bcm113*
2337 F:      arch/arm/boot/dts/bcm216*
2338 F:      arch/arm/boot/dts/bcm281*
2339 F:      arch/arm/configs/bcm_defconfig
2340 F:      drivers/mmc/host/sdhci-bcm-kona.c
2341 F:      drivers/clocksource/bcm_kona_timer.c
2342
2343 BROADCOM BCM2835 ARM ARCHITECTURE
2344 M:      Stephen Warren <swarren@wwwdotorg.org>
2345 M:      Lee Jones <lee@kernel.org>
2346 M:      Eric Anholt <eric@anholt.net>
2347 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
2348 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2349 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rpi/linux-rpi.git
2350 S:      Maintained
2351 N:      bcm2835
2352
2353 BROADCOM BCM33XX MIPS ARCHITECTURE
2354 M:      Kevin Cernekee <cernekee@gmail.com>
2355 L:      linux-mips@linux-mips.org
2356 S:      Maintained
2357 F:      arch/mips/bcm3384/*
2358 F:      arch/mips/include/asm/mach-bcm3384/*
2359 F:      arch/mips/kernel/*bmips*
2360
2361 BROADCOM BCM47XX MIPS ARCHITECTURE
2362 M:      Hauke Mehrtens <hauke@hauke-m.de>
2363 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2364 L:      linux-mips@linux-mips.org
2365 S:      Maintained
2366 F:      arch/mips/bcm47xx/*
2367 F:      arch/mips/include/asm/mach-bcm47xx/*
2368
2369 BROADCOM BCM5301X ARM ARCHITECTURE
2370 M:      Hauke Mehrtens <hauke@hauke-m.de>
2371 L:      linux-arm-kernel@lists.infradead.org
2372 S:      Maintained
2373 F:      arch/arm/mach-bcm/bcm_5301x.c
2374 F:      arch/arm/boot/dts/bcm5301x.dtsi
2375 F:      arch/arm/boot/dts/bcm470*
2376
2377 BROADCOM BCM63XX ARM ARCHITECTURE
2378 M:      Florian Fainelli <f.fainelli@gmail.com>
2379 L:      linux-arm-kernel@lists.infradead.org
2380 T:      git git://github.com/broadcom/arm-bcm63xx.git
2381 S:      Maintained
2382 F:      arch/arm/mach-bcm/bcm63xx.c
2383 F:      arch/arm/include/debug/bcm63xx.S
2384
2385 BROADCOM BCM63XX/BCM33XX UDC DRIVER
2386 M:      Kevin Cernekee <cernekee@gmail.com>
2387 L:      linux-usb@vger.kernel.org
2388 S:      Maintained
2389 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
2390
2391 BROADCOM BCM7XXX ARM ARCHITECTURE
2392 M:      Brian Norris <computersforpeace@gmail.com>
2393 M:      Gregory Fong <gregory.0xf0@gmail.com>
2394 M:      Florian Fainelli <f.fainelli@gmail.com>
2395 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2396 L:      bcm-kernel-feedback-list@broadcom.com
2397 T:      git git://github.com/broadcom/stblinux.git
2398 S:      Maintained
2399 F:      arch/arm/mach-bcm/*brcmstb*
2400 F:      arch/arm/boot/dts/bcm7*.dts*
2401 F:      drivers/bus/brcmstb_gisb.c
2402 N:      brcmstb
2403
2404 BROADCOM BMIPS MIPS ARCHITECTURE
2405 M:      Kevin Cernekee <cernekee@gmail.com>
2406 M:      Florian Fainelli <f.fainelli@gmail.com>
2407 L:      linux-mips@linux-mips.org
2408 T:      git git://github.com/broadcom/stblinux.git
2409 S:      Maintained
2410 F:      arch/mips/bmips/*
2411 F:      arch/mips/include/asm/mach-bmips/*
2412 F:      arch/mips/kernel/*bmips*
2413 F:      arch/mips/boot/dts/brcm/bcm*.dts*
2414 F:      drivers/irqchip/irq-bcm7*
2415 F:      drivers/irqchip/irq-brcmstb*
2416
2417 BROADCOM TG3 GIGABIT ETHERNET DRIVER
2418 M:      Prashant Sreedharan <prashant@broadcom.com>
2419 M:      Michael Chan <mchan@broadcom.com>
2420 L:      netdev@vger.kernel.org
2421 S:      Supported
2422 F:      drivers/net/ethernet/broadcom/tg3.*
2423
2424 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2425 M:      Brett Rudley <brudley@broadcom.com>
2426 M:      Arend van Spriel <arend@broadcom.com>
2427 M:      Franky (Zhenhui) Lin <frankyl@broadcom.com>
2428 M:      Hante Meuleman <meuleman@broadcom.com>
2429 L:      linux-wireless@vger.kernel.org
2430 L:      brcm80211-dev-list@broadcom.com
2431 S:      Supported
2432 F:      drivers/net/wireless/broadcom/brcm80211/
2433
2434 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
2435 M:      QLogic-Storage-Upstream@qlogic.com
2436 L:      linux-scsi@vger.kernel.org
2437 S:      Supported
2438 F:      drivers/scsi/bnx2fc/
2439
2440 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
2441 M:      QLogic-Storage-Upstream@qlogic.com
2442 L:      linux-scsi@vger.kernel.org
2443 S:      Supported
2444 F:      drivers/scsi/bnx2i/
2445
2446 BROADCOM IPROC ARM ARCHITECTURE
2447 M:      Ray Jui <rjui@broadcom.com>
2448 M:      Scott Branden <sbranden@broadcom.com>
2449 M:      Jon Mason <jonmason@broadcom.com>
2450 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2451 L:      bcm-kernel-feedback-list@broadcom.com
2452 T:      git git://github.com/broadcom/cygnus-linux.git
2453 S:      Maintained
2454 N:      iproc
2455 N:      cygnus
2456 N:      nsp
2457 N:      bcm9113*
2458 N:      bcm9583*
2459 N:      bcm9585*
2460 N:      bcm9586*
2461 N:      bcm988312
2462 N:      bcm113*
2463 N:      bcm583*
2464 N:      bcm585*
2465 N:      bcm586*
2466 N:      bcm88312
2467
2468 BROADCOM BRCMSTB GPIO DRIVER
2469 M:      Gregory Fong <gregory.0xf0@gmail.com>
2470 L:      bcm-kernel-feedback-list@broadcom.com
2471 S:      Supported
2472 F:      drivers/gpio/gpio-brcmstb.c
2473 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
2474
2475 BROADCOM KONA GPIO DRIVER
2476 M:      Ray Jui <rjui@broadcom.com>
2477 L:      bcm-kernel-feedback-list@broadcom.com
2478 S:      Supported
2479 F:      drivers/gpio/gpio-bcm-kona.c
2480 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
2481
2482 BROADCOM NVRAM DRIVER
2483 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2484 L:      linux-mips@linux-mips.org
2485 S:      Maintained
2486 F:      drivers/firmware/broadcom/*
2487
2488 BROADCOM STB NAND FLASH DRIVER
2489 M:      Brian Norris <computersforpeace@gmail.com>
2490 M:      Kamal Dasu <kdasu.kdev@gmail.com>
2491 L:      linux-mtd@lists.infradead.org
2492 L:      bcm-kernel-feedback-list@broadcom.com
2493 S:      Maintained
2494 F:      drivers/mtd/nand/brcmnand/
2495
2496 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2497 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2498 L:      linux-wireless@vger.kernel.org
2499 S:      Maintained
2500 F:      drivers/bcma/
2501 F:      include/linux/bcma/
2502
2503 BROADCOM SYSTEMPORT ETHERNET DRIVER
2504 M:      Florian Fainelli <f.fainelli@gmail.com>
2505 L:      netdev@vger.kernel.org
2506 S:      Supported
2507 F:      drivers/net/ethernet/broadcom/bcmsysport.*
2508
2509 BROCADE BFA FC SCSI DRIVER
2510 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
2511 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
2512 L:      linux-scsi@vger.kernel.org
2513 S:      Supported
2514 F:      drivers/scsi/bfa/
2515
2516 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
2517 M:      Rasesh Mody <rasesh.mody@qlogic.com>
2518 L:      netdev@vger.kernel.org
2519 S:      Supported
2520 F:      drivers/net/ethernet/brocade/bna/
2521
2522 BSG (block layer generic sg v4 driver)
2523 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
2524 L:      linux-scsi@vger.kernel.org
2525 S:      Supported
2526 F:      block/bsg.c
2527 F:      include/linux/bsg.h
2528 F:      include/uapi/linux/bsg.h
2529
2530 BT87X AUDIO DRIVER
2531 M:      Clemens Ladisch <clemens@ladisch.de>
2532 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2533 T:      git git://git.alsa-project.org/alsa-kernel.git
2534 S:      Maintained
2535 F:      Documentation/sound/alsa/Bt87x.txt
2536 F:      sound/pci/bt87x.c
2537
2538 BT8XXGPIO DRIVER
2539 M:      Michael Buesch <m@bues.ch>
2540 W:      http://bu3sch.de/btgpio.php
2541 S:      Maintained
2542 F:      drivers/gpio/gpio-bt8xx.c
2543
2544 BTRFS FILE SYSTEM
2545 M:      Chris Mason <clm@fb.com>
2546 M:      Josef Bacik <jbacik@fb.com>
2547 M:      David Sterba <dsterba@suse.com>
2548 L:      linux-btrfs@vger.kernel.org
2549 W:      http://btrfs.wiki.kernel.org/
2550 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
2551 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
2552 S:      Maintained
2553 F:      Documentation/filesystems/btrfs.txt
2554 F:      fs/btrfs/
2555
2556 BTTV VIDEO4LINUX DRIVER
2557 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2558 L:      linux-media@vger.kernel.org
2559 W:      https://linuxtv.org
2560 T:      git git://linuxtv.org/media_tree.git
2561 S:      Odd fixes
2562 F:      Documentation/video4linux/bttv/
2563 F:      drivers/media/pci/bt8xx/bttv*
2564
2565 BUSLOGIC SCSI DRIVER
2566 M:      Khalid Aziz <khalid@gonehiking.org>
2567 L:      linux-scsi@vger.kernel.org
2568 S:      Maintained
2569 F:      drivers/scsi/BusLogic.*
2570 F:      drivers/scsi/FlashPoint.*
2571
2572 C-MEDIA CMI8788 DRIVER
2573 M:      Clemens Ladisch <clemens@ladisch.de>
2574 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2575 T:      git git://git.alsa-project.org/alsa-kernel.git
2576 S:      Maintained
2577 F:      sound/pci/oxygen/
2578
2579 C6X ARCHITECTURE
2580 M:      Mark Salter <msalter@redhat.com>
2581 M:      Aurelien Jacquiot <a-jacquiot@ti.com>
2582 L:      linux-c6x-dev@linux-c6x.org
2583 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
2584 S:      Maintained
2585 F:      arch/c6x/
2586
2587 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
2588 M:      David Howells <dhowells@redhat.com>
2589 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
2590 S:      Supported
2591 F:      Documentation/filesystems/caching/cachefiles.txt
2592 F:      fs/cachefiles/
2593
2594 CADET FM/AM RADIO RECEIVER DRIVER
2595 M:      Hans Verkuil <hverkuil@xs4all.nl>
2596 L:      linux-media@vger.kernel.org
2597 T:      git git://linuxtv.org/media_tree.git
2598 W:      https://linuxtv.org
2599 S:      Maintained
2600 F:      drivers/media/radio/radio-cadet*
2601
2602 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
2603 M:      Jonathan Corbet <corbet@lwn.net>
2604 L:      linux-media@vger.kernel.org
2605 T:      git git://linuxtv.org/media_tree.git
2606 S:      Maintained
2607 F:      Documentation/video4linux/cafe_ccic
2608 F:      drivers/media/platform/marvell-ccic/
2609
2610 CAIF NETWORK LAYER
2611 M:      Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
2612 L:      netdev@vger.kernel.org
2613 S:      Supported
2614 F:      Documentation/networking/caif/
2615 F:      drivers/net/caif/
2616 F:      include/uapi/linux/caif/
2617 F:      include/net/caif/
2618 F:      net/caif/
2619
2620 CALGARY x86-64 IOMMU
2621 M:      Muli Ben-Yehuda <muli@il.ibm.com>
2622 M:      "Jon D. Mason" <jdmason@kudzu.us>
2623 L:      discuss@x86-64.org
2624 S:      Maintained
2625 F:      arch/x86/kernel/pci-calgary_64.c
2626 F:      arch/x86/kernel/tce_64.c
2627 F:      arch/x86/include/asm/calgary.h
2628 F:      arch/x86/include/asm/tce.h
2629
2630 CAN NETWORK LAYER
2631 M:      Oliver Hartkopp <socketcan@hartkopp.net>
2632 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2633 L:      linux-can@vger.kernel.org
2634 W:      https://github.com/linux-can
2635 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2636 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2637 S:      Maintained
2638 F:      Documentation/networking/can.txt
2639 F:      net/can/
2640 F:      include/linux/can/core.h
2641 F:      include/uapi/linux/can.h
2642 F:      include/uapi/linux/can/bcm.h
2643 F:      include/uapi/linux/can/raw.h
2644 F:      include/uapi/linux/can/gw.h
2645
2646 CAN NETWORK DRIVERS
2647 M:      Wolfgang Grandegger <wg@grandegger.com>
2648 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2649 L:      linux-can@vger.kernel.org
2650 W:      https://github.com/linux-can
2651 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2652 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2653 S:      Maintained
2654 F:      drivers/net/can/
2655 F:      include/linux/can/dev.h
2656 F:      include/linux/can/platform/
2657 F:      include/uapi/linux/can/error.h
2658 F:      include/uapi/linux/can/netlink.h
2659
2660 CAPABILITIES
2661 M:      Serge Hallyn <serge.hallyn@canonical.com>
2662 L:      linux-security-module@vger.kernel.org
2663 S:      Supported
2664 F:      include/linux/capability.h
2665 F:      include/uapi/linux/capability.h
2666 F:      security/commoncap.c
2667 F:      kernel/capability.c
2668
2669 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
2670 M:      Kevin Tsai <ktsai@capellamicro.com>
2671 S:      Maintained
2672 F:      drivers/iio/light/cm*
2673 F:      Documentation/devicetree/bindings/i2c/trivial-devices.txt
2674
2675 CAVIUM LIQUIDIO NETWORK DRIVER
2676 M:     Derek Chickles <derek.chickles@caviumnetworks.com>
2677 M:     Satanand Burla <satananda.burla@caviumnetworks.com>
2678 M:     Felix Manlunas <felix.manlunas@caviumnetworks.com>
2679 M:     Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com>
2680 L:     netdev@vger.kernel.org
2681 W:     http://www.cavium.com
2682 S:     Supported
2683 F:     drivers/net/ethernet/cavium/liquidio/
2684
2685 CC2520 IEEE-802.15.4 RADIO DRIVER
2686 M:      Varka Bhadram <varkabhadram@gmail.com>
2687 L:      linux-wpan@vger.kernel.org
2688 S:      Maintained
2689 F:      drivers/net/ieee802154/cc2520.c
2690 F:      include/linux/spi/cc2520.h
2691 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
2692
2693 CELL BROADBAND ENGINE ARCHITECTURE
2694 M:      Arnd Bergmann <arnd@arndb.de>
2695 L:      linuxppc-dev@lists.ozlabs.org
2696 W:      http://www.ibm.com/developerworks/power/cell/
2697 S:      Supported
2698 F:      arch/powerpc/include/asm/cell*.h
2699 F:      arch/powerpc/include/asm/spu*.h
2700 F:      arch/powerpc/include/uapi/asm/spu*.h
2701 F:      arch/powerpc/oprofile/*cell*
2702 F:      arch/powerpc/platforms/cell/
2703
2704 CEPH COMMON CODE (LIBCEPH)
2705 M:      Ilya Dryomov <idryomov@gmail.com>
2706 M:      "Yan, Zheng" <zyan@redhat.com>
2707 M:      Sage Weil <sage@redhat.com>
2708 L:      ceph-devel@vger.kernel.org
2709 W:      http://ceph.com/
2710 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2711 T:      git git://github.com/ceph/ceph-client.git
2712 S:      Supported
2713 F:      net/ceph/
2714 F:      include/linux/ceph/
2715 F:      include/linux/crush/
2716
2717 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
2718 M:      "Yan, Zheng" <zyan@redhat.com>
2719 M:      Sage Weil <sage@redhat.com>
2720 M:      Ilya Dryomov <idryomov@gmail.com>
2721 L:      ceph-devel@vger.kernel.org
2722 W:      http://ceph.com/
2723 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2724 T:      git git://github.com/ceph/ceph-client.git
2725 S:      Supported
2726 F:      Documentation/filesystems/ceph.txt
2727 F:      fs/ceph/
2728
2729 CERTIFICATE HANDLING:
2730 M:      David Howells <dhowells@redhat.com>
2731 M:      David Woodhouse <dwmw2@infradead.org>
2732 L:      keyrings@vger.kernel.org
2733 S:      Maintained
2734 F:      Documentation/module-signing.txt
2735 F:      certs/
2736 F:      scripts/sign-file.c
2737 F:      scripts/extract-cert.c
2738
2739 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
2740 L:      linux-usb@vger.kernel.org
2741 S:      Orphan
2742 F:      Documentation/usb/WUSB-Design-overview.txt
2743 F:      Documentation/usb/wusb-cbaf
2744 F:      drivers/usb/host/hwa-hc.c
2745 F:      drivers/usb/host/whci/
2746 F:      drivers/usb/wusbcore/
2747 F:      include/linux/usb/wusb*
2748
2749 CFAG12864B LCD DRIVER
2750 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2751 W:      http://miguelojeda.es/auxdisplay.htm
2752 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2753 S:      Maintained
2754 F:      drivers/auxdisplay/cfag12864b.c
2755 F:      include/linux/cfag12864b.h
2756
2757 CFAG12864BFB LCD FRAMEBUFFER DRIVER
2758 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2759 W:      http://miguelojeda.es/auxdisplay.htm
2760 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2761 S:      Maintained
2762 F:      drivers/auxdisplay/cfag12864bfb.c
2763 F:      include/linux/cfag12864b.h
2764
2765 CFG80211 and NL80211
2766 M:      Johannes Berg <johannes@sipsolutions.net>
2767 L:      linux-wireless@vger.kernel.org
2768 W:      http://wireless.kernel.org/
2769 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2770 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
2771 S:      Maintained
2772 F:      include/uapi/linux/nl80211.h
2773 F:      include/net/cfg80211.h
2774 F:      net/wireless/*
2775 X:      net/wireless/wext*
2776
2777 CHAR and MISC DRIVERS
2778 M:      Arnd Bergmann <arnd@arndb.de>
2779 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2780 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
2781 S:      Supported
2782 F:      drivers/char/*
2783 F:      drivers/misc/*
2784 F:      include/linux/miscdevice.h
2785
2786 CHECKPATCH
2787 M:      Andy Whitcroft <apw@canonical.com>
2788 M:      Joe Perches <joe@perches.com>
2789 S:      Maintained
2790 F:      scripts/checkpatch.pl
2791
2792 CHINESE DOCUMENTATION
2793 M:      Harry Wei <harryxiyou@gmail.com>
2794 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
2795 L:      linux-kernel@zh-kernel.org (moderated for non-subscribers)
2796 S:      Maintained
2797 F:      Documentation/zh_CN/
2798
2799 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
2800 M:      Peter Chen <Peter.Chen@nxp.com>
2801 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
2802 L:      linux-usb@vger.kernel.org
2803 S:      Maintained
2804 F:      drivers/usb/chipidea/
2805
2806 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
2807 M:      Hans de Goede <hdegoede@redhat.com>
2808 L:      linux-input@vger.kernel.org
2809 S:      Maintained
2810 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
2811 F:      drivers/input/touchscreen/chipone_icn8318.c
2812
2813 CHROME HARDWARE PLATFORM SUPPORT
2814 M:      Olof Johansson <olof@lixom.net>
2815 S:      Maintained
2816 F:      drivers/platform/chrome/
2817
2818 CISCO VIC ETHERNET NIC DRIVER
2819 M:      Christian Benvenuti <benve@cisco.com>
2820 M:      Sujith Sankar <ssujith@cisco.com>
2821 M:      Govindarajulu Varadarajan <_govind@gmx.com>
2822 M:      Neel Patel <neepatel@cisco.com>
2823 S:      Supported
2824 F:      drivers/net/ethernet/cisco/enic/
2825
2826 CISCO VIC LOW LATENCY NIC DRIVER
2827 M:      Christian Benvenuti <benve@cisco.com>
2828 M:      Dave Goodell <dgoodell@cisco.com>
2829 S:      Supported
2830 F:      drivers/infiniband/hw/usnic/
2831
2832 CIRRUS LOGIC EP93XX ETHERNET DRIVER
2833 M:      Hartley Sweeten <hsweeten@visionengravers.com>
2834 L:      netdev@vger.kernel.org
2835 S:      Maintained
2836 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
2837
2838 CIRRUS LOGIC AUDIO CODEC DRIVERS
2839 M:      Brian Austin <brian.austin@cirrus.com>
2840 M:      Paul Handrigan <Paul.Handrigan@cirrus.com>
2841 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2842 S:      Maintained
2843 F:      sound/soc/codecs/cs*
2844
2845 CLEANCACHE API
2846 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2847 L:      linux-kernel@vger.kernel.org
2848 S:      Maintained
2849 F:      mm/cleancache.c
2850 F:      include/linux/cleancache.h
2851
2852 CLK API
2853 M:      Russell King <linux@arm.linux.org.uk>
2854 L:      linux-clk@vger.kernel.org
2855 S:      Maintained
2856 F:      include/linux/clk.h
2857
2858 CLOCKSOURCE, CLOCKEVENT DRIVERS
2859 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2860 M:      Thomas Gleixner <tglx@linutronix.de>
2861 L:      linux-kernel@vger.kernel.org
2862 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
2863 S:      Supported
2864 F:      drivers/clocksource
2865
2866 CISCO FCOE HBA DRIVER
2867 M:      Hiral Patel <hiralpat@cisco.com>
2868 M:      Suma Ramars <sramars@cisco.com>
2869 M:      Brian Uchino <buchino@cisco.com>
2870 L:      linux-scsi@vger.kernel.org
2871 S:      Supported
2872 F:      drivers/scsi/fnic/
2873
2874 CISCO SCSI HBA DRIVER
2875 M:      Narsimhulu Musini <nmusini@cisco.com>
2876 M:      Sesidhar Baddela <sebaddel@cisco.com>
2877 L:      linux-scsi@vger.kernel.org
2878 S:      Supported
2879 F:      drivers/scsi/snic/
2880
2881 CMPC ACPI DRIVER
2882 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2883 M:      Daniel Oliveira Nascimento <don@syst.com.br>
2884 L:      platform-driver-x86@vger.kernel.org
2885 S:      Supported
2886 F:      drivers/platform/x86/classmate-laptop.c
2887
2888 COBALT MEDIA DRIVER
2889 M:      Hans Verkuil <hans.verkuil@cisco.com>
2890 L:      linux-media@vger.kernel.org
2891 T:      git git://linuxtv.org/media_tree.git
2892 W:      https://linuxtv.org
2893 S:      Supported
2894 F:      drivers/media/pci/cobalt/
2895
2896 COCCINELLE/Semantic Patches (SmPL)
2897 M:      Julia Lawall <Julia.Lawall@lip6.fr>
2898 M:      Gilles Muller <Gilles.Muller@lip6.fr>
2899 M:      Nicolas Palix <nicolas.palix@imag.fr>
2900 M:      Michal Marek <mmarek@suse.com>
2901 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
2902 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
2903 W:      http://coccinelle.lip6.fr/
2904 S:      Supported
2905 F:      Documentation/coccinelle.txt
2906 F:      scripts/coccinelle/
2907 F:      scripts/coccicheck
2908
2909 CODA FILE SYSTEM
2910 M:      Jan Harkes <jaharkes@cs.cmu.edu>
2911 M:      coda@cs.cmu.edu
2912 L:      codalist@coda.cs.cmu.edu
2913 W:      http://www.coda.cs.cmu.edu/
2914 S:      Maintained
2915 F:      Documentation/filesystems/coda.txt
2916 F:      fs/coda/
2917 F:      include/linux/coda*.h
2918 F:      include/uapi/linux/coda*.h
2919
2920 CODA V4L2 MEM2MEM DRIVER
2921 M:      Philipp Zabel <p.zabel@pengutronix.de>
2922 L:      linux-media@vger.kernel.org
2923 S:      Maintained
2924 F:      Documentation/devicetree/bindings/media/coda.txt
2925 F:      drivers/media/platform/coda/
2926
2927 COMMON CLK FRAMEWORK
2928 M:      Michael Turquette <mturquette@baylibre.com>
2929 M:      Stephen Boyd <sboyd@codeaurora.org>
2930 L:      linux-clk@vger.kernel.org
2931 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
2932 S:      Maintained
2933 F:      drivers/clk/
2934 X:      drivers/clk/clkdev.c
2935 F:      include/linux/clk-pr*
2936 F:      include/linux/clk/
2937
2938 COMMON INTERNET FILE SYSTEM (CIFS)
2939 M:      Steve French <sfrench@samba.org>
2940 L:      linux-cifs@vger.kernel.org
2941 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
2942 W:      http://linux-cifs.samba.org/
2943 T:      git git://git.samba.org/sfrench/cifs-2.6.git
2944 S:      Supported
2945 F:      Documentation/filesystems/cifs/
2946 F:      fs/cifs/
2947
2948 COMPACTPCI HOTPLUG CORE
2949 M:      Scott Murray <scott@spiteful.org>
2950 L:      linux-pci@vger.kernel.org
2951 S:      Maintained
2952 F:      drivers/pci/hotplug/cpci_hotplug*
2953
2954 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
2955 M:      Scott Murray <scott@spiteful.org>
2956 L:      linux-pci@vger.kernel.org
2957 S:      Maintained
2958 F:      drivers/pci/hotplug/cpcihp_zt5550.*
2959
2960 COMPACTPCI HOTPLUG GENERIC DRIVER
2961 M:      Scott Murray <scott@spiteful.org>
2962 L:      linux-pci@vger.kernel.org
2963 S:      Maintained
2964 F:      drivers/pci/hotplug/cpcihp_generic.c
2965
2966 COMPAL LAPTOP SUPPORT
2967 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
2968 L:      platform-driver-x86@vger.kernel.org
2969 S:      Maintained
2970 F:      drivers/platform/x86/compal-laptop.c
2971
2972 CONEXANT ACCESSRUNNER USB DRIVER
2973 L:      accessrunner-general@lists.sourceforge.net
2974 W:      http://accessrunner.sourceforge.net/
2975 S:      Orphan
2976 F:      drivers/usb/atm/cxacru.c
2977
2978 CONFIGFS
2979 M:      Joel Becker <jlbec@evilplan.org>
2980 M:      Christoph Hellwig <hch@lst.de>
2981 T:      git git://git.infradead.org/users/hch/configfs.git
2982 S:      Supported
2983 F:      fs/configfs/
2984 F:      include/linux/configfs.h
2985
2986 CONNECTOR
2987 M:      Evgeniy Polyakov <zbr@ioremap.net>
2988 L:      netdev@vger.kernel.org
2989 S:      Maintained
2990 F:      drivers/connector/
2991
2992 CONTROL GROUP (CGROUP)
2993 M:      Tejun Heo <tj@kernel.org>
2994 M:      Li Zefan <lizefan@huawei.com>
2995 M:      Johannes Weiner <hannes@cmpxchg.org>
2996 L:      cgroups@vger.kernel.org
2997 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
2998 S:      Maintained
2999 F:      Documentation/cgroups/
3000 F:      include/linux/cgroup*
3001 F:      kernel/cgroup*
3002
3003 CONTROL GROUP - CPUSET
3004 M:      Li Zefan <lizefan@huawei.com>
3005 L:      cgroups@vger.kernel.org
3006 W:      http://www.bullopensource.org/cpuset/
3007 W:      http://oss.sgi.com/projects/cpusets/
3008 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3009 S:      Maintained
3010 F:      Documentation/cgroups/cpusets.txt
3011 F:      include/linux/cpuset.h
3012 F:      kernel/cpuset.c
3013
3014 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
3015 M:      Johannes Weiner <hannes@cmpxchg.org>
3016 M:      Michal Hocko <mhocko@kernel.org>
3017 M:      Vladimir Davydov <vdavydov@virtuozzo.com>
3018 L:      cgroups@vger.kernel.org
3019 L:      linux-mm@kvack.org
3020 S:      Maintained
3021 F:      mm/memcontrol.c
3022 F:      mm/swap_cgroup.c
3023
3024 CORETEMP HARDWARE MONITORING DRIVER
3025 M:      Fenghua Yu <fenghua.yu@intel.com>
3026 L:      lm-sensors@lm-sensors.org
3027 S:      Maintained
3028 F:      Documentation/hwmon/coretemp
3029 F:      drivers/hwmon/coretemp.c
3030
3031 COSA/SRP SYNC SERIAL DRIVER
3032 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
3033 W:      http://www.fi.muni.cz/~kas/cosa/
3034 S:      Maintained
3035 F:      drivers/net/wan/cosa*
3036
3037 CPMAC ETHERNET DRIVER
3038 M:      Florian Fainelli <florian@openwrt.org>
3039 L:      netdev@vger.kernel.org
3040 S:      Maintained
3041 F:      drivers/net/ethernet/ti/cpmac.c
3042
3043 CPU FREQUENCY DRIVERS
3044 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
3045 M:      Viresh Kumar <viresh.kumar@linaro.org>
3046 L:      linux-pm@vger.kernel.org
3047 S:      Maintained
3048 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3049 T:      git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
3050 F:      drivers/cpufreq/
3051 F:      include/linux/cpufreq.h
3052
3053 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
3054 M:      Viresh Kumar <viresh.kumar@linaro.org>
3055 M:      Sudeep Holla <sudeep.holla@arm.com>
3056 L:      linux-pm@vger.kernel.org
3057 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
3058 S:      Maintained
3059 F:      drivers/cpufreq/arm_big_little.h
3060 F:      drivers/cpufreq/arm_big_little.c
3061 F:      drivers/cpufreq/arm_big_little_dt.c
3062
3063 CPUIDLE DRIVER - ARM BIG LITTLE
3064 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
3065 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3066 L:      linux-pm@vger.kernel.org
3067 L:      linux-arm-kernel@lists.infradead.org
3068 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3069 S:      Maintained
3070 F:      drivers/cpuidle/cpuidle-big_little.c
3071
3072 CPUIDLE DRIVER - ARM EXYNOS
3073 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
3074 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3075 M:      Kukjin Kim <kgene@kernel.org>
3076 L:      linux-pm@vger.kernel.org
3077 L:      linux-samsung-soc@vger.kernel.org
3078 S:      Supported
3079 F:      drivers/cpuidle/cpuidle-exynos.c
3080 F:      arch/arm/mach-exynos/pm.c
3081
3082 CPUIDLE DRIVERS
3083 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
3084 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3085 L:      linux-pm@vger.kernel.org
3086 S:      Maintained
3087 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3088 F:      drivers/cpuidle/*
3089 F:      include/linux/cpuidle.h
3090
3091 CPUID/MSR DRIVER
3092 M:      "H. Peter Anvin" <hpa@zytor.com>
3093 S:      Maintained
3094 F:      arch/x86/kernel/cpuid.c
3095 F:      arch/x86/kernel/msr.c
3096
3097 CPU POWER MONITORING SUBSYSTEM
3098 M:      Thomas Renninger <trenn@suse.com>
3099 L:      linux-pm@vger.kernel.org
3100 S:      Maintained
3101 F:      tools/power/cpupower/
3102
3103 CRAMFS FILESYSTEM
3104 W:      http://sourceforge.net/projects/cramfs/
3105 S:      Orphan / Obsolete
3106 F:      Documentation/filesystems/cramfs.txt
3107 F:      fs/cramfs/
3108
3109 CRIS PORT
3110 M:      Mikael Starvik <starvik@axis.com>
3111 M:      Jesper Nilsson <jesper.nilsson@axis.com>
3112 L:      linux-cris-kernel@axis.com
3113 W:      http://developer.axis.com
3114 S:      Maintained
3115 F:      arch/cris/
3116 F:      drivers/tty/serial/crisv10.*
3117
3118 CRYPTO API
3119 M:      Herbert Xu <herbert@gondor.apana.org.au>
3120 M:      "David S. Miller" <davem@davemloft.net>
3121 L:      linux-crypto@vger.kernel.org
3122 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
3123 S:      Maintained
3124 F:      Documentation/crypto/
3125 F:      Documentation/DocBook/crypto-API.tmpl
3126 F:      arch/*/crypto/
3127 F:      crypto/
3128 F:      drivers/crypto/
3129 F:      include/crypto/
3130
3131 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
3132 M:      Neil Horman <nhorman@tuxdriver.com>
3133 L:      linux-crypto@vger.kernel.org
3134 S:      Maintained
3135 F:      crypto/ansi_cprng.c
3136 F:      crypto/rng.c
3137
3138 CS3308 MEDIA DRIVER
3139 M:      Hans Verkuil <hverkuil@xs4all.nl>
3140 L:      linux-media@vger.kernel.org
3141 T:      git git://linuxtv.org/media_tree.git
3142 W:      http://linuxtv.org
3143 S:      Odd Fixes
3144 F:      drivers/media/i2c/cs3308.c
3145 F:      drivers/media/i2c/cs3308.h
3146
3147 CS5535 Audio ALSA driver
3148 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
3149 S:      Maintained
3150 F:      sound/pci/cs5535audio/
3151
3152 CW1200 WLAN driver
3153 M:      Solomon Peachy <pizza@shaftnet.org>
3154 S:      Maintained
3155 F:      drivers/net/wireless/st/cw1200/
3156
3157 CX18 VIDEO4LINUX DRIVER
3158 M:      Andy Walls <awalls@md.metrocast.net>
3159 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
3160 L:      linux-media@vger.kernel.org
3161 T:      git git://linuxtv.org/media_tree.git
3162 W:      https://linuxtv.org
3163 W:      http://www.ivtvdriver.org/index.php/Cx18
3164 S:      Maintained
3165 F:      Documentation/video4linux/cx18.txt
3166 F:      drivers/media/pci/cx18/
3167 F:      include/uapi/linux/ivtv*
3168
3169 CX2341X MPEG ENCODER HELPER MODULE
3170 M:      Hans Verkuil <hverkuil@xs4all.nl>
3171 L:      linux-media@vger.kernel.org
3172 T:      git git://linuxtv.org/media_tree.git
3173 W:      https://linuxtv.org
3174 S:      Maintained
3175 F:      drivers/media/common/cx2341x*
3176 F:      include/media/cx2341x*
3177
3178 CX24120 MEDIA DRIVER
3179 M:      Jemma Denson <jdenson@gmail.com>
3180 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
3181 L:      linux-media@vger.kernel.org
3182 W:      https://linuxtv.org
3183 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3184 S:      Maintained
3185 F:      drivers/media/dvb-frontends/cx24120*
3186
3187 CX88 VIDEO4LINUX DRIVER
3188 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3189 L:      linux-media@vger.kernel.org
3190 W:      https://linuxtv.org
3191 T:      git git://linuxtv.org/media_tree.git
3192 S:      Odd fixes
3193 F:      Documentation/video4linux/cx88/
3194 F:      drivers/media/pci/cx88/
3195
3196 CXD2820R MEDIA DRIVER
3197 M:      Antti Palosaari <crope@iki.fi>
3198 L:      linux-media@vger.kernel.org
3199 W:      https://linuxtv.org
3200 W:      http://palosaari.fi/linux/
3201 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3202 T:      git git://linuxtv.org/anttip/media_tree.git
3203 S:      Maintained
3204 F:      drivers/media/dvb-frontends/cxd2820r*
3205
3206 CXGB3 ETHERNET DRIVER (CXGB3)
3207 M:      Santosh Raspatur <santosh@chelsio.com>
3208 L:      netdev@vger.kernel.org
3209 W:      http://www.chelsio.com
3210 S:      Supported
3211 F:      drivers/net/ethernet/chelsio/cxgb3/
3212
3213 CXGB3 ISCSI DRIVER (CXGB3I)
3214 M:      Karen Xie <kxie@chelsio.com>
3215 L:      linux-scsi@vger.kernel.org
3216 W:      http://www.chelsio.com
3217 S:      Supported
3218 F:      drivers/scsi/cxgbi/cxgb3i
3219
3220 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
3221 M:      Steve Wise <swise@chelsio.com>
3222 L:      linux-rdma@vger.kernel.org
3223 W:      http://www.openfabrics.org
3224 S:      Supported
3225 F:      drivers/infiniband/hw/cxgb3/
3226
3227 CXGB4 ETHERNET DRIVER (CXGB4)
3228 M:      Hariprasad S <hariprasad@chelsio.com>
3229 L:      netdev@vger.kernel.org
3230 W:      http://www.chelsio.com
3231 S:      Supported
3232 F:      drivers/net/ethernet/chelsio/cxgb4/
3233
3234 CXGB4 ISCSI DRIVER (CXGB4I)
3235 M:      Karen Xie <kxie@chelsio.com>
3236 L:      linux-scsi@vger.kernel.org
3237 W:      http://www.chelsio.com
3238 S:      Supported
3239 F:      drivers/scsi/cxgbi/cxgb4i
3240
3241 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
3242 M:      Steve Wise <swise@chelsio.com>
3243 L:      linux-rdma@vger.kernel.org
3244 W:      http://www.openfabrics.org
3245 S:      Supported
3246 F:      drivers/infiniband/hw/cxgb4/
3247
3248 CXGB4VF ETHERNET DRIVER (CXGB4VF)
3249 M:      Casey Leedom <leedom@chelsio.com>
3250 L:      netdev@vger.kernel.org
3251 W:      http://www.chelsio.com
3252 S:      Supported
3253 F:      drivers/net/ethernet/chelsio/cxgb4vf/
3254
3255 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
3256 M:      Ian Munsie <imunsie@au1.ibm.com>
3257 M:      Michael Neuling <mikey@neuling.org>
3258 L:      linuxppc-dev@lists.ozlabs.org
3259 S:      Supported
3260 F:      drivers/misc/cxl/
3261 F:      include/misc/cxl*
3262 F:      include/uapi/misc/cxl.h
3263 F:      Documentation/powerpc/cxl.txt
3264 F:      Documentation/powerpc/cxl.txt
3265 F:      Documentation/ABI/testing/sysfs-class-cxl
3266
3267 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
3268 M:      Manoj N. Kumar <manoj@linux.vnet.ibm.com>
3269 M:      Matthew R. Ochs <mrochs@linux.vnet.ibm.com>
3270 L:      linux-scsi@vger.kernel.org
3271 S:      Supported
3272 F:      drivers/scsi/cxlflash/
3273 F:      include/uapi/scsi/cxlflash_ioctls.h
3274 F:      Documentation/powerpc/cxlflash.txt
3275
3276 STMMAC ETHERNET DRIVER
3277 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
3278 L:      netdev@vger.kernel.org
3279 W:      http://www.stlinux.com
3280 S:      Supported
3281 F:      drivers/net/ethernet/stmicro/stmmac/
3282
3283 CYBERPRO FB DRIVER
3284 M:      Russell King <linux@arm.linux.org.uk>
3285 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3286 W:      http://www.arm.linux.org.uk/
3287 S:      Maintained
3288 F:      drivers/video/fbdev/cyber2000fb.*
3289
3290 CYCLADES ASYNC MUX DRIVER
3291 W:      http://www.cyclades.com/
3292 S:      Orphan
3293 F:      drivers/tty/cyclades.c
3294 F:      include/linux/cyclades.h
3295 F:      include/uapi/linux/cyclades.h
3296
3297 CYCLADES PC300 DRIVER
3298 W:      http://www.cyclades.com/
3299 S:      Orphan
3300 F:      drivers/net/wan/pc300*
3301
3302 CYPRESS_FIRMWARE MEDIA DRIVER
3303 M:      Antti Palosaari <crope@iki.fi>
3304 L:      linux-media@vger.kernel.org
3305 W:      https://linuxtv.org
3306 W:      http://palosaari.fi/linux/
3307 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3308 T:      git git://linuxtv.org/anttip/media_tree.git
3309 S:      Maintained
3310 F:      drivers/media/common/cypress_firmware*
3311
3312 CYTTSP TOUCHSCREEN DRIVER
3313 M:      Ferruh Yigit <fery@cypress.com>
3314 L:      linux-input@vger.kernel.org
3315 S:      Supported
3316 F:      drivers/input/touchscreen/cyttsp*
3317 F:      include/linux/input/cyttsp.h
3318
3319 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
3320 M:      Joshua Kinard <kumba@gentoo.org>
3321 S:      Maintained
3322 F:      drivers/rtc/rtc-ds1685.c
3323 F:      include/linux/rtc/ds1685.h
3324
3325 DAMA SLAVE for AX.25
3326 M:      Joerg Reuter <jreuter@yaina.de>
3327 W:      http://yaina.de/jreuter/
3328 W:      http://www.qsl.net/dl1bke/
3329 L:      linux-hams@vger.kernel.org
3330 S:      Maintained
3331 F:      net/ax25/af_ax25.c
3332 F:      net/ax25/ax25_dev.c
3333 F:      net/ax25/ax25_ds_*
3334 F:      net/ax25/ax25_in.c
3335 F:      net/ax25/ax25_out.c
3336 F:      net/ax25/ax25_timer.c
3337 F:      net/ax25/sysctl_net_ax25.c
3338
3339 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
3340 L:      netdev@vger.kernel.org
3341 S:      Orphan
3342 F:      Documentation/networking/dmfe.txt
3343 F:      drivers/net/ethernet/dec/tulip/dmfe.c
3344
3345 DC390/AM53C974 SCSI driver
3346 M:      Hannes Reinecke <hare@suse.com>
3347 L:      linux-scsi@vger.kernel.org
3348 S:      Maintained
3349 F:      drivers/scsi/am53c974.c
3350
3351 DC395x SCSI driver
3352 M:      Oliver Neukum <oliver@neukum.org>
3353 M:      Ali Akcaagac <aliakc@web.de>
3354 M:      Jamie Lenehan <lenehan@twibble.org>
3355 L:      dc395x@twibble.org
3356 W:      http://twibble.org/dist/dc395x/
3357 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
3358 S:      Maintained
3359 F:      Documentation/scsi/dc395x.txt
3360 F:      drivers/scsi/dc395x.*
3361
3362 DCCP PROTOCOL
3363 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
3364 L:      dccp@vger.kernel.org
3365 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
3366 S:      Maintained
3367 F:      include/linux/dccp.h
3368 F:      include/uapi/linux/dccp.h
3369 F:      include/linux/tfrc.h
3370 F:      net/dccp/
3371
3372 DECnet NETWORK LAYER
3373 W:      http://linux-decnet.sourceforge.net
3374 L:      linux-decnet-user@lists.sourceforge.net
3375 S:      Orphan
3376 F:      Documentation/networking/decnet.txt
3377 F:      net/decnet/
3378
3379 DECSTATION PLATFORM SUPPORT
3380 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3381 L:      linux-mips@linux-mips.org
3382 W:      http://www.linux-mips.org/wiki/DECstation
3383 S:      Maintained
3384 F:      arch/mips/dec/
3385 F:      arch/mips/include/asm/dec/
3386 F:      arch/mips/include/asm/mach-dec/
3387
3388 DEFXX FDDI NETWORK DRIVER
3389 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3390 S:      Maintained
3391 F:      drivers/net/fddi/defxx.*
3392
3393 DELL LAPTOP DRIVER
3394 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3395 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3396 L:      platform-driver-x86@vger.kernel.org
3397 S:      Maintained
3398 F:      drivers/platform/x86/dell-laptop.c
3399
3400 DELL LAPTOP RBTN DRIVER
3401 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3402 S:      Maintained
3403 F:      drivers/platform/x86/dell-rbtn.*
3404
3405 DELL LAPTOP FREEFALL DRIVER
3406 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3407 S:      Maintained
3408 F:      drivers/platform/x86/dell-smo8800.c
3409
3410 DELL LAPTOP SMM DRIVER
3411 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3412 S:      Maintained
3413 F:      drivers/hwmon/dell-smm-hwmon.c
3414 F:      include/uapi/linux/i8k.h
3415
3416 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
3417 M:      Doug Warzecha <Douglas_Warzecha@dell.com>
3418 S:      Maintained
3419 F:      Documentation/dcdbas.txt
3420 F:      drivers/firmware/dcdbas.*
3421
3422 DELL WMI EXTRAS DRIVER
3423 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3424 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3425 S:      Maintained
3426 F:      drivers/platform/x86/dell-wmi.c
3427
3428 DESIGNWARE USB2 DRD IP DRIVER
3429 M:      John Youn <johnyoun@synopsys.com>
3430 L:      linux-usb@vger.kernel.org
3431 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3432 S:      Maintained
3433 F:      drivers/usb/dwc2/
3434
3435 DESIGNWARE USB3 DRD IP DRIVER
3436 M:      Felipe Balbi <balbi@ti.com>
3437 L:      linux-usb@vger.kernel.org
3438 L:      linux-omap@vger.kernel.org
3439 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3440 S:      Maintained
3441 F:      drivers/usb/dwc3/
3442
3443 DEVICE COREDUMP (DEV_COREDUMP)
3444 M:      Johannes Berg <johannes@sipsolutions.net>
3445 L:      linux-kernel@vger.kernel.org
3446 S:      Maintained
3447 F:      drivers/base/devcoredump.c
3448 F:      include/linux/devcoredump.h
3449
3450 DEVICE FREQUENCY (DEVFREQ)
3451 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
3452 M:      Kyungmin Park <kyungmin.park@samsung.com>
3453 L:      linux-pm@vger.kernel.org
3454 S:      Maintained
3455 F:      drivers/devfreq/
3456
3457 DEVICE NUMBER REGISTRY
3458 M:      Torben Mathiasen <device@lanana.org>
3459 W:      http://lanana.org/docs/device-list/index.html
3460 S:      Maintained
3461
3462 DEVICE-MAPPER  (LVM)
3463 M:      Alasdair Kergon <agk@redhat.com>
3464 M:      Mike Snitzer <snitzer@redhat.com>
3465 M:      dm-devel@redhat.com
3466 L:      dm-devel@redhat.com
3467 W:      http://sources.redhat.com/dm
3468 Q:      http://patchwork.kernel.org/project/dm-devel/list/
3469 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
3470 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
3471 S:      Maintained
3472 F:      Documentation/device-mapper/
3473 F:      drivers/md/dm*
3474 F:      drivers/md/persistent-data/
3475 F:      include/linux/device-mapper.h
3476 F:      include/linux/dm-*.h
3477 F:      include/uapi/linux/dm-*.h
3478
3479 DIALOG SEMICONDUCTOR DRIVERS
3480 M:      Support Opensource <support.opensource@diasemi.com>
3481 W:      http://www.dialog-semiconductor.com/products
3482 S:      Supported
3483 F:      Documentation/hwmon/da90??
3484 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
3485 F:      drivers/gpio/gpio-da90??.c
3486 F:      drivers/hwmon/da90??-hwmon.c
3487 F:      drivers/iio/adc/da91??-*.c
3488 F:      drivers/input/misc/da90??_onkey.c
3489 F:      drivers/input/touchscreen/da9052_tsi.c
3490 F:      drivers/leds/leds-da90??.c
3491 F:      drivers/mfd/da903x.c
3492 F:      drivers/mfd/da90??-*.c
3493 F:      drivers/mfd/da91??-*.c
3494 F:      drivers/power/da9052-battery.c
3495 F:      drivers/power/da91??-*.c
3496 F:      drivers/regulator/da903x.c
3497 F:      drivers/regulator/da9???-regulator.[ch]
3498 F:      drivers/rtc/rtc-da90??.c
3499 F:      drivers/video/backlight/da90??_bl.c
3500 F:      drivers/watchdog/da90??_wdt.c
3501 F:      include/linux/mfd/da903x.h
3502 F:      include/linux/mfd/da9052/
3503 F:      include/linux/mfd/da9055/
3504 F:      include/linux/mfd/da9063/
3505 F:      include/linux/mfd/da9150/
3506 F:      include/sound/da[79]*.h
3507 F:      sound/soc/codecs/da[79]*.[ch]
3508
3509 DIGI NEO AND CLASSIC PCI PRODUCTS
3510 M:      Lidza Louina <lidza.louina@gmail.com>
3511 M:      Mark Hounschell <markh@compro.net>
3512 L:      driverdev-devel@linuxdriverproject.org
3513 S:      Maintained
3514 F:      drivers/staging/dgnc/
3515
3516 DIGI EPCA PCI PRODUCTS
3517 M:      Lidza Louina <lidza.louina@gmail.com>
3518 M:      Daeseok Youn <daeseok.youn@gmail.com>
3519 L:      driverdev-devel@linuxdriverproject.org
3520 S:      Maintained
3521 F:      drivers/staging/dgap/
3522
3523 DIOLAN U2C-12 I2C DRIVER
3524 M:      Guenter Roeck <linux@roeck-us.net>
3525 L:      linux-i2c@vger.kernel.org
3526 S:      Maintained
3527 F:      drivers/i2c/busses/i2c-diolan-u2c.c
3528
3529 DIRECT ACCESS (DAX)
3530 M:      Matthew Wilcox <willy@linux.intel.com>
3531 L:      linux-fsdevel@vger.kernel.org
3532 S:      Supported
3533 F:      fs/dax.c
3534
3535 DIRECTORY NOTIFICATION (DNOTIFY)
3536 M:      Eric Paris <eparis@parisplace.org>
3537 S:      Maintained
3538 F:      Documentation/filesystems/dnotify.txt
3539 F:      fs/notify/dnotify/
3540 F:      include/linux/dnotify.h
3541
3542 DISK GEOMETRY AND PARTITION HANDLING
3543 M:      Andries Brouwer <aeb@cwi.nl>
3544 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
3545 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
3546 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
3547 S:      Maintained
3548
3549 DISKQUOTA
3550 M:      Jan Kara <jack@suse.com>
3551 S:      Maintained
3552 F:      Documentation/filesystems/quota.txt
3553 F:      fs/quota/
3554 F:      include/linux/quota*.h
3555 F:      include/uapi/linux/quota*.h
3556
3557 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
3558 M:      Bernie Thompson <bernie@plugable.com>
3559 L:      linux-fbdev@vger.kernel.org
3560 S:      Maintained
3561 W:      http://plugable.com/category/projects/udlfb/
3562 F:      drivers/video/fbdev/udlfb.c
3563 F:      include/video/udlfb.h
3564 F:      Documentation/fb/udlfb.txt
3565
3566 DISTRIBUTED LOCK MANAGER (DLM)
3567 M:      Christine Caulfield <ccaulfie@redhat.com>
3568 M:      David Teigland <teigland@redhat.com>
3569 L:      cluster-devel@redhat.com
3570 W:      http://sources.redhat.com/cluster/
3571 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
3572 S:      Supported
3573 F:      fs/dlm/
3574
3575 DMA BUFFER SHARING FRAMEWORK
3576 M:      Sumit Semwal <sumit.semwal@linaro.org>
3577 S:      Maintained
3578 L:      linux-media@vger.kernel.org
3579 L:      dri-devel@lists.freedesktop.org
3580 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
3581 F:      drivers/dma-buf/
3582 F:      include/linux/dma-buf*
3583 F:      include/linux/reservation.h
3584 F:      include/linux/*fence.h
3585 F:      Documentation/dma-buf-sharing.txt
3586 T:      git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
3587
3588 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
3589 M:      Vinod Koul <vinod.koul@intel.com>
3590 L:      dmaengine@vger.kernel.org
3591 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
3592 S:      Maintained
3593 F:      drivers/dma/
3594 F:      include/linux/dmaengine.h
3595 F:      Documentation/dmaengine/
3596 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
3597
3598 DME1737 HARDWARE MONITOR DRIVER
3599 M:      Juerg Haefliger <juergh@gmail.com>
3600 L:      lm-sensors@lm-sensors.org
3601 S:      Maintained
3602 F:      Documentation/hwmon/dme1737
3603 F:      drivers/hwmon/dme1737.c
3604
3605 DMI/SMBIOS SUPPORT
3606 M:      Jean Delvare <jdelvare@suse.com>
3607 S:      Maintained
3608 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
3609 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
3610 F:      drivers/firmware/dmi-id.c
3611 F:      drivers/firmware/dmi_scan.c
3612 F:      include/linux/dmi.h
3613
3614 DOCUMENTATION
3615 M:      Jonathan Corbet <corbet@lwn.net>
3616 L:      linux-doc@vger.kernel.org
3617 S:      Maintained
3618 F:      Documentation/
3619 F:      scripts/docproc.c
3620 F:      scripts/kernel-doc*
3621 X:      Documentation/ABI/
3622 X:      Documentation/devicetree/
3623 X:      Documentation/acpi
3624 X:      Documentation/power
3625 X:      Documentation/spi
3626 X:      Documentation/DocBook/media
3627 T:      git git://git.lwn.net/linux.git docs-next
3628
3629 DOUBLETALK DRIVER
3630 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
3631 L:      blinux-list@redhat.com
3632 S:      Maintained
3633 F:      drivers/char/dtlk.c
3634 F:      include/linux/dtlk.h
3635
3636 DPT_I2O SCSI RAID DRIVER
3637 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
3638 L:      linux-scsi@vger.kernel.org
3639 W:      http://www.adaptec.com/
3640 S:      Maintained
3641 F:      drivers/scsi/dpt*
3642 F:      drivers/scsi/dpt/
3643
3644 DRBD DRIVER
3645 P:      Philipp Reisner
3646 P:      Lars Ellenberg
3647 M:      drbd-dev@lists.linbit.com
3648 L:      drbd-user@lists.linbit.com
3649 W:      http://www.drbd.org
3650 T:      git git://git.drbd.org/linux-2.6-drbd.git drbd
3651 T:      git git://git.drbd.org/drbd-8.3.git
3652 S:      Supported
3653 F:      drivers/block/drbd/
3654 F:      lib/lru_cache.c
3655 F:      Documentation/blockdev/drbd/
3656
3657 DRIVER CORE, KOBJECTS, DEBUGFS, KERNFS AND SYSFS
3658 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3659 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
3660 S:      Supported
3661 F:      Documentation/kobject.txt
3662 F:      drivers/base/
3663 F:      fs/debugfs/
3664 F:      fs/kernfs/
3665 F:      fs/sysfs/
3666 F:      include/linux/debugfs.h
3667 F:      include/linux/kobj*
3668 F:      lib/kobj*
3669
3670 DRM DRIVERS
3671 M:      David Airlie <airlied@linux.ie>
3672 L:      dri-devel@lists.freedesktop.org
3673 T:      git git://people.freedesktop.org/~airlied/linux
3674 S:      Maintained
3675 F:      drivers/gpu/drm/
3676 F:      drivers/gpu/vga/
3677 F:      include/drm/
3678 F:      include/uapi/drm/
3679
3680 RADEON DRM DRIVERS
3681 M:      Alex Deucher <alexander.deucher@amd.com>
3682 M:      Christian König <christian.koenig@amd.com>
3683 L:      dri-devel@lists.freedesktop.org
3684 T:      git git://people.freedesktop.org/~agd5f/linux
3685 S:      Supported
3686 F:      drivers/gpu/drm/radeon/
3687 F:      include/uapi/drm/radeon*
3688
3689 DRM PANEL DRIVERS
3690 M:      Thierry Reding <thierry.reding@gmail.com>
3691 L:      dri-devel@lists.freedesktop.org
3692 T:      git git://anongit.freedesktop.org/tegra/linux.git
3693 S:      Maintained
3694 F:      drivers/gpu/drm/drm_panel.c
3695 F:      drivers/gpu/drm/panel/
3696 F:      include/drm/drm_panel.h
3697 F:      Documentation/devicetree/bindings/display/panel/
3698
3699 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
3700 M:      Daniel Vetter <daniel.vetter@intel.com>
3701 M:      Jani Nikula <jani.nikula@linux.intel.com>
3702 L:      intel-gfx@lists.freedesktop.org
3703 L:      dri-devel@lists.freedesktop.org
3704 W:      https://01.org/linuxgraphics/
3705 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
3706 T:      git git://anongit.freedesktop.org/drm-intel
3707 S:      Supported
3708 F:      drivers/gpu/drm/i915/
3709 F:      include/drm/i915*
3710 F:      include/uapi/drm/i915*
3711
3712 DRM DRIVERS FOR ATMEL HLCDC
3713 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
3714 L:      dri-devel@lists.freedesktop.org
3715 S:      Supported
3716 F:      drivers/gpu/drm/atmel-hlcdc/
3717 F:      Documentation/devicetree/bindings/drm/atmel/
3718
3719 DRM DRIVERS FOR EXYNOS
3720 M:      Inki Dae <inki.dae@samsung.com>
3721 M:      Joonyoung Shim <jy0922.shim@samsung.com>
3722 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
3723 M:      Kyungmin Park <kyungmin.park@samsung.com>
3724 L:      dri-devel@lists.freedesktop.org
3725 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
3726 S:      Supported
3727 F:      drivers/gpu/drm/exynos/
3728 F:      include/drm/exynos*
3729 F:      include/uapi/drm/exynos*
3730
3731 DRM DRIVERS FOR FREESCALE DCU
3732 M:      Jianwei Wang <jianwei.wang.chn@gmail.com>
3733 M:      Alison Wang <alison.wang@freescale.com>
3734 L:      dri-devel@lists.freedesktop.org
3735 S:      Supported
3736 F:      drivers/gpu/drm/fsl-dcu/
3737 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
3738 F:      Documentation/devicetree/bindings/display/panel/nec,nl4827hc19_05b.txt
3739
3740 DRM DRIVERS FOR FREESCALE IMX
3741 M:      Philipp Zabel <p.zabel@pengutronix.de>
3742 L:      dri-devel@lists.freedesktop.org
3743 S:      Maintained
3744 F:      drivers/gpu/drm/imx/
3745 F:      drivers/gpu/ipu-v3/
3746 F:      Documentation/devicetree/bindings/display/imx/
3747
3748 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
3749 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
3750 L:      dri-devel@lists.freedesktop.org
3751 T:      git git://github.com/patjak/drm-gma500
3752 S:      Maintained
3753 F:      drivers/gpu/drm/gma500
3754 F:      include/drm/gma500*
3755
3756 DRM DRIVERS FOR NVIDIA TEGRA
3757 M:      Thierry Reding <thierry.reding@gmail.com>
3758 M:      Terje Bergström <tbergstrom@nvidia.com>
3759 L:      dri-devel@lists.freedesktop.org
3760 L:      linux-tegra@vger.kernel.org
3761 T:      git git://anongit.freedesktop.org/tegra/linux.git
3762 S:      Supported
3763 F:      drivers/gpu/drm/tegra/
3764 F:      drivers/gpu/host1x/
3765 F:      include/linux/host1x.h
3766 F:      include/uapi/drm/tegra_drm.h
3767 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
3768
3769 DRM DRIVERS FOR RENESAS
3770 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
3771 L:      dri-devel@lists.freedesktop.org
3772 L:      linux-renesas-soc@vger.kernel.org
3773 T:      git git://people.freedesktop.org/~airlied/linux
3774 S:      Supported
3775 F:      drivers/gpu/drm/rcar-du/
3776 F:      drivers/gpu/drm/shmobile/
3777 F:      include/linux/platform_data/shmob_drm.h
3778
3779 DRM DRIVERS FOR ROCKCHIP
3780 M:      Mark Yao <mark.yao@rock-chips.com>
3781 L:      dri-devel@lists.freedesktop.org
3782 S:      Maintained
3783 F:      drivers/gpu/drm/rockchip/
3784 F:      Documentation/devicetree/bindings/display/rockchip*
3785
3786 DRM DRIVERS FOR STI
3787 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
3788 M:      Vincent Abriou <vincent.abriou@st.com>
3789 L:      dri-devel@lists.freedesktop.org
3790 T:      git http://git.linaro.org/people/benjamin.gaignard/kernel.git
3791 S:      Maintained
3792 F:      drivers/gpu/drm/sti
3793 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
3794
3795 DRM DRIVERS FOR VIVANTE GPU IP
3796 M:      Lucas Stach <l.stach@pengutronix.de>
3797 R:      Russell King <linux+etnaviv@arm.linux.org.uk>
3798 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
3799 L:      dri-devel@lists.freedesktop.org
3800 S:      Maintained
3801 F:      drivers/gpu/drm/etnaviv
3802 F:      Documentation/devicetree/bindings/display/etnaviv
3803
3804 DSBR100 USB FM RADIO DRIVER
3805 M:      Alexey Klimov <klimov.linux@gmail.com>
3806 L:      linux-media@vger.kernel.org
3807 T:      git git://linuxtv.org/media_tree.git
3808 S:      Maintained
3809 F:      drivers/media/radio/dsbr100.c
3810
3811 DSCC4 DRIVER
3812 M:      Francois Romieu <romieu@fr.zoreil.com>
3813 L:      netdev@vger.kernel.org
3814 S:      Maintained
3815 F:      drivers/net/wan/dscc4.c
3816
3817 DT3155 MEDIA DRIVER
3818 M:      Hans Verkuil <hverkuil@xs4all.nl>
3819 L:      linux-media@vger.kernel.org
3820 T:      git git://linuxtv.org/media_tree.git
3821 W:      https://linuxtv.org
3822 S:      Odd Fixes
3823 F:      drivers/media/pci/dt3155/
3824
3825 DVB_USB_AF9015 MEDIA DRIVER
3826 M:      Antti Palosaari <crope@iki.fi>
3827 L:      linux-media@vger.kernel.org
3828 W:      https://linuxtv.org
3829 W:      http://palosaari.fi/linux/
3830 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3831 T:      git git://linuxtv.org/anttip/media_tree.git
3832 S:      Maintained
3833 F:      drivers/media/usb/dvb-usb-v2/af9015*
3834
3835 DVB_USB_AF9035 MEDIA DRIVER
3836 M:      Antti Palosaari <crope@iki.fi>
3837 L:      linux-media@vger.kernel.org
3838 W:      https://linuxtv.org
3839 W:      http://palosaari.fi/linux/
3840 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3841 T:      git git://linuxtv.org/anttip/media_tree.git
3842 S:      Maintained
3843 F:      drivers/media/usb/dvb-usb-v2/af9035*
3844
3845 DVB_USB_ANYSEE MEDIA DRIVER
3846 M:      Antti Palosaari <crope@iki.fi>
3847 L:      linux-media@vger.kernel.org
3848 W:      https://linuxtv.org
3849 W:      http://palosaari.fi/linux/
3850 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3851 T:      git git://linuxtv.org/anttip/media_tree.git
3852 S:      Maintained
3853 F:      drivers/media/usb/dvb-usb-v2/anysee*
3854
3855 DVB_USB_AU6610 MEDIA DRIVER
3856 M:      Antti Palosaari <crope@iki.fi>
3857 L:      linux-media@vger.kernel.org
3858 W:      https://linuxtv.org
3859 W:      http://palosaari.fi/linux/
3860 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3861 T:      git git://linuxtv.org/anttip/media_tree.git
3862 S:      Maintained
3863 F:      drivers/media/usb/dvb-usb-v2/au6610*
3864
3865 DVB_USB_CE6230 MEDIA DRIVER
3866 M:      Antti Palosaari <crope@iki.fi>
3867 L:      linux-media@vger.kernel.org
3868 W:      https://linuxtv.org
3869 W:      http://palosaari.fi/linux/
3870 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3871 T:      git git://linuxtv.org/anttip/media_tree.git
3872 S:      Maintained
3873 F:      drivers/media/usb/dvb-usb-v2/ce6230*
3874
3875 DVB_USB_CXUSB MEDIA DRIVER
3876 M:      Michael Krufky <mkrufky@linuxtv.org>
3877 L:      linux-media@vger.kernel.org
3878 W:      https://linuxtv.org
3879 W:      http://github.com/mkrufky
3880 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3881 T:      git git://linuxtv.org/media_tree.git
3882 S:      Maintained
3883 F:      drivers/media/usb/dvb-usb/cxusb*
3884
3885 DVB_USB_EC168 MEDIA DRIVER
3886 M:      Antti Palosaari <crope@iki.fi>
3887 L:      linux-media@vger.kernel.org
3888 W:      https://linuxtv.org
3889 W:      http://palosaari.fi/linux/
3890 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3891 T:      git git://linuxtv.org/anttip/media_tree.git
3892 S:      Maintained
3893 F:      drivers/media/usb/dvb-usb-v2/ec168*
3894
3895 DVB_USB_GL861 MEDIA DRIVER
3896 M:      Antti Palosaari <crope@iki.fi>
3897 L:      linux-media@vger.kernel.org
3898 W:      https://linuxtv.org
3899 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3900 T:      git git://linuxtv.org/anttip/media_tree.git
3901 S:      Maintained
3902 F:      drivers/media/usb/dvb-usb-v2/gl861*
3903
3904 DVB_USB_MXL111SF MEDIA DRIVER
3905 M:      Michael Krufky <mkrufky@linuxtv.org>
3906 L:      linux-media@vger.kernel.org
3907 W:      https://linuxtv.org
3908 W:      http://github.com/mkrufky
3909 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3910 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
3911 S:      Maintained
3912 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
3913
3914 DVB_USB_RTL28XXU MEDIA DRIVER
3915 M:      Antti Palosaari <crope@iki.fi>
3916 L:      linux-media@vger.kernel.org
3917 W:      https://linuxtv.org
3918 W:      http://palosaari.fi/linux/
3919 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3920 T:      git git://linuxtv.org/anttip/media_tree.git
3921 S:      Maintained
3922 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
3923
3924 DVB_USB_V2 MEDIA DRIVER
3925 M:      Antti Palosaari <crope@iki.fi>
3926 L:      linux-media@vger.kernel.org
3927 W:      https://linuxtv.org
3928 W:      http://palosaari.fi/linux/
3929 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3930 T:      git git://linuxtv.org/anttip/media_tree.git
3931 S:      Maintained
3932 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
3933 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
3934
3935 DYNAMIC DEBUG
3936 M:      Jason Baron <jbaron@akamai.com>
3937 S:      Maintained
3938 F:      lib/dynamic_debug.c
3939 F:      include/linux/dynamic_debug.h
3940
3941 DZ DECSTATION DZ11 SERIAL DRIVER
3942 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3943 S:      Maintained
3944 F:      drivers/tty/serial/dz.*
3945
3946 E3X0 POWER BUTTON DRIVER
3947 M:      Moritz Fischer <moritz.fischer@ettus.com>
3948 L:      usrp-users@lists.ettus.com
3949 W:      http://www.ettus.com
3950 S:      Supported
3951 F:      drivers/input/misc/e3x0-button.c
3952 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
3953
3954 E4000 MEDIA DRIVER
3955 M:      Antti Palosaari <crope@iki.fi>
3956 L:      linux-media@vger.kernel.org
3957 W:      https://linuxtv.org
3958 W:      http://palosaari.fi/linux/
3959 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3960 T:      git git://linuxtv.org/anttip/media_tree.git
3961 S:      Maintained
3962 F:      drivers/media/tuners/e4000*
3963
3964 EATA ISA/EISA/PCI SCSI DRIVER
3965 M:      Dario Ballabio <ballabio_dario@emc.com>
3966 L:      linux-scsi@vger.kernel.org
3967 S:      Maintained
3968 F:      drivers/scsi/eata.c
3969
3970 EC100 MEDIA DRIVER
3971 M:      Antti Palosaari <crope@iki.fi>
3972 L:      linux-media@vger.kernel.org
3973 W:      https://linuxtv.org
3974 W:      http://palosaari.fi/linux/
3975 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3976 T:      git git://linuxtv.org/anttip/media_tree.git
3977 S:      Maintained
3978 F:      drivers/media/dvb-frontends/ec100*
3979
3980 ECRYPT FILE SYSTEM
3981 M:      Tyler Hicks <tyhicks@canonical.com>
3982 L:      ecryptfs@vger.kernel.org
3983 W:      http://ecryptfs.org
3984 W:      https://launchpad.net/ecryptfs
3985 S:      Supported
3986 F:      Documentation/filesystems/ecryptfs.txt
3987 F:      fs/ecryptfs/
3988
3989 EDAC-CORE
3990 M:      Doug Thompson <dougthompson@xmission.com>
3991 M:      Borislav Petkov <bp@alien8.de>
3992 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3993 L:      linux-edac@vger.kernel.org
3994 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git for-next
3995 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-edac.git linux_next
3996 S:      Supported
3997 F:      Documentation/edac.txt
3998 F:      drivers/edac/
3999 F:      include/linux/edac.h
4000
4001 EDAC-AMD64
4002 M:      Doug Thompson <dougthompson@xmission.com>
4003 M:      Borislav Petkov <bp@alien8.de>
4004 L:      linux-edac@vger.kernel.org
4005 S:      Maintained
4006 F:      drivers/edac/amd64_edac*
4007
4008 EDAC-CALXEDA
4009 M:      Doug Thompson <dougthompson@xmission.com>
4010 M:      Robert Richter <rric@kernel.org>
4011 L:      linux-edac@vger.kernel.org
4012 S:      Maintained
4013 F:      drivers/edac/highbank*
4014
4015 EDAC-CAVIUM
4016 M:      Ralf Baechle <ralf@linux-mips.org>
4017 M:      David Daney <david.daney@cavium.com>
4018 L:      linux-edac@vger.kernel.org
4019 L:      linux-mips@linux-mips.org
4020 S:      Supported
4021 F:      drivers/edac/octeon_edac*
4022
4023 EDAC-E752X
4024 M:      Mark Gross <mark.gross@intel.com>
4025 M:      Doug Thompson <dougthompson@xmission.com>
4026 L:      linux-edac@vger.kernel.org
4027 S:      Maintained
4028 F:      drivers/edac/e752x_edac.c
4029
4030 EDAC-E7XXX
4031 M:      Doug Thompson <dougthompson@xmission.com>
4032 L:      linux-edac@vger.kernel.org
4033 S:      Maintained
4034 F:      drivers/edac/e7xxx_edac.c
4035
4036 EDAC-GHES
4037 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4038 L:      linux-edac@vger.kernel.org
4039 S:      Maintained
4040 F:      drivers/edac/ghes_edac.c
4041
4042 EDAC-I82443BXGX
4043 M:      Tim Small <tim@buttersideup.com>
4044 L:      linux-edac@vger.kernel.org
4045 S:      Maintained
4046 F:      drivers/edac/i82443bxgx_edac.c
4047
4048 EDAC-I3000
4049 M:      Jason Uhlenkott <juhlenko@akamai.com>
4050 L:      linux-edac@vger.kernel.org
4051 S:      Maintained
4052 F:      drivers/edac/i3000_edac.c
4053
4054 EDAC-I5000
4055 M:      Doug Thompson <dougthompson@xmission.com>
4056 L:      linux-edac@vger.kernel.org
4057 S:      Maintained
4058 F:      drivers/edac/i5000_edac.c
4059
4060 EDAC-I5400
4061 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4062 L:      linux-edac@vger.kernel.org
4063 S:      Maintained
4064 F:      drivers/edac/i5400_edac.c
4065
4066 EDAC-I7300
4067 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4068 L:      linux-edac@vger.kernel.org
4069 S:      Maintained
4070 F:      drivers/edac/i7300_edac.c
4071
4072 EDAC-I7CORE
4073 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4074 L:      linux-edac@vger.kernel.org
4075 S:      Maintained
4076 F:      drivers/edac/i7core_edac.c
4077
4078 EDAC-I82975X
4079 M:      Ranganathan Desikan <ravi@jetztechnologies.com>
4080 M:      "Arvind R." <arvino55@gmail.com>
4081 L:      linux-edac@vger.kernel.org
4082 S:      Maintained
4083 F:      drivers/edac/i82975x_edac.c
4084
4085 EDAC-IE31200
4086 M:      Jason Baron <jbaron@akamai.com>
4087 L:      linux-edac@vger.kernel.org
4088 S:      Maintained
4089 F:      drivers/edac/ie31200_edac.c
4090
4091 EDAC-MPC85XX
4092 M:      Johannes Thumshirn <morbidrsa@gmail.com>
4093 L:      linux-edac@vger.kernel.org
4094 S:      Maintained
4095 F:      drivers/edac/mpc85xx_edac.[ch]
4096
4097 EDAC-PASEMI
4098 M:      Egor Martovetsky <egor@pasemi.com>
4099 L:      linux-edac@vger.kernel.org
4100 S:      Maintained
4101 F:      drivers/edac/pasemi_edac.c
4102
4103 EDAC-R82600
4104 M:      Tim Small <tim@buttersideup.com>
4105 L:      linux-edac@vger.kernel.org
4106 S:      Maintained
4107 F:      drivers/edac/r82600_edac.c
4108
4109 EDAC-SBRIDGE
4110 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4111 L:      linux-edac@vger.kernel.org
4112 S:      Maintained
4113 F:      drivers/edac/sb_edac.c
4114
4115 EDAC-XGENE
4116 APPLIED MICRO (APM) X-GENE SOC EDAC
4117 M:     Loc Ho <lho@apm.com>
4118 S:     Supported
4119 F:     drivers/edac/xgene_edac.c
4120 F:     Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
4121
4122 EDIROL UA-101/UA-1000 DRIVER
4123 M:      Clemens Ladisch <clemens@ladisch.de>
4124 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4125 T:      git git://git.alsa-project.org/alsa-kernel.git
4126 S:      Maintained
4127 F:      sound/usb/misc/ua101.c
4128
4129 EXTENSIBLE FIRMWARE INTERFACE (EFI)
4130 M:      Matt Fleming <matt@codeblueprint.co.uk>
4131 L:      linux-efi@vger.kernel.org
4132 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4133 S:      Maintained
4134 F:      Documentation/efi-stub.txt
4135 F:      arch/ia64/kernel/efi.c
4136 F:      arch/x86/boot/compressed/eboot.[ch]
4137 F:      arch/x86/include/asm/efi.h
4138 F:      arch/x86/platform/efi/*
4139 F:      drivers/firmware/efi/*
4140 F:      include/linux/efi*.h
4141
4142 EFI VARIABLE FILESYSTEM
4143 M:      Matthew Garrett <matthew.garrett@nebula.com>
4144 M:      Jeremy Kerr <jk@ozlabs.org>
4145 M:      Matt Fleming <matt@codeblueprint.co.uk>
4146 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4147 L:      linux-efi@vger.kernel.org
4148 S:      Maintained
4149 F:      fs/efivarfs/
4150
4151 EFIFB FRAMEBUFFER DRIVER
4152 L:      linux-fbdev@vger.kernel.org
4153 M:      Peter Jones <pjones@redhat.com>
4154 S:      Maintained
4155 F:      drivers/video/fbdev/efifb.c
4156
4157 EFS FILESYSTEM
4158 W:      http://aeschi.ch.eu.org/efs/
4159 S:      Orphan
4160 F:      fs/efs/
4161
4162 EHCA (IBM GX bus InfiniBand adapter) DRIVER
4163 M:      Hoang-Nam Nguyen <hnguyen@de.ibm.com>
4164 M:      Christoph Raisch <raisch@de.ibm.com>
4165 L:      linux-rdma@vger.kernel.org
4166 S:      Supported
4167 F:      drivers/infiniband/hw/ehca/
4168
4169 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
4170 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
4171 L:      netdev@vger.kernel.org
4172 S:      Maintained
4173 F:      drivers/net/ethernet/ibm/ehea/
4174
4175 EM28XX VIDEO4LINUX DRIVER
4176 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4177 L:      linux-media@vger.kernel.org
4178 W:      https://linuxtv.org
4179 T:      git git://linuxtv.org/media_tree.git
4180 S:      Maintained
4181 F:      drivers/media/usb/em28xx/
4182
4183 EMBEDDED LINUX
4184 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
4185 M:      Matt Mackall <mpm@selenic.com>
4186 M:      David Woodhouse <dwmw2@infradead.org>
4187 L:      linux-embedded@vger.kernel.org
4188 S:      Maintained
4189
4190 EMULEX/AVAGO LPFC FC/FCOE SCSI DRIVER
4191 M:      James Smart <james.smart@avagotech.com>
4192 M:      Dick Kennedy <dick.kennedy@avagotech.com>
4193 L:      linux-scsi@vger.kernel.org
4194 W:      http://www.avagotech.com
4195 S:      Supported
4196 F:      drivers/scsi/lpfc/
4197
4198 ENE CB710 FLASH CARD READER DRIVER
4199 M:      MichaÅ‚ MirosÅ‚aw <mirq-linux@rere.qmqm.pl>
4200 S:      Maintained
4201 F:      drivers/misc/cb710/
4202 F:      drivers/mmc/host/cb710-mmc.*
4203 F:      include/linux/cb710.h
4204
4205 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
4206 M:      Maxim Levitsky <maximlevitsky@gmail.com>
4207 S:      Maintained
4208 F:      drivers/media/rc/ene_ir.*
4209
4210 ENHANCED ERROR HANDLING (EEH)
4211 M:      Gavin Shan <shangw@linux.vnet.ibm.com>
4212 L:      linuxppc-dev@lists.ozlabs.org
4213 S:      Supported
4214 F:      Documentation/powerpc/eeh-pci-error-recovery.txt
4215 F:      arch/powerpc/kernel/eeh*.c
4216
4217 EPSON S1D13XXX FRAMEBUFFER DRIVER
4218 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
4219 S:      Maintained
4220 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
4221 F:      drivers/video/fbdev/s1d13xxxfb.c
4222 F:      include/video/s1d13xxxfb.h
4223
4224 ET131X NETWORK DRIVER
4225 M:      Mark Einon <mark.einon@gmail.com>
4226 S:      Odd Fixes
4227 F:      drivers/net/ethernet/agere/
4228
4229 ETHERNET BRIDGE
4230 M:      Stephen Hemminger <stephen@networkplumber.org>
4231 L:      bridge@lists.linux-foundation.org
4232 L:      netdev@vger.kernel.org
4233 W:      http://www.linuxfoundation.org/en/Net:Bridge
4234 S:      Maintained
4235 F:      include/linux/netfilter_bridge/
4236 F:      net/bridge/
4237
4238 ETHERNET PHY LIBRARY
4239 M:      Florian Fainelli <f.fainelli@gmail.com>
4240 L:      netdev@vger.kernel.org
4241 S:      Maintained
4242 F:      include/linux/phy.h
4243 F:      include/linux/phy_fixed.h
4244 F:      drivers/net/phy/
4245 F:      Documentation/networking/phy.txt
4246 F:      drivers/of/of_mdio.c
4247 F:      drivers/of/of_net.c
4248
4249 EXT2 FILE SYSTEM
4250 M:      Jan Kara <jack@suse.com>
4251 L:      linux-ext4@vger.kernel.org
4252 S:      Maintained
4253 F:      Documentation/filesystems/ext2.txt
4254 F:      fs/ext2/
4255 F:      include/linux/ext2*
4256
4257 EXT4 FILE SYSTEM
4258 M:      "Theodore Ts'o" <tytso@mit.edu>
4259 M:      Andreas Dilger <adilger.kernel@dilger.ca>
4260 L:      linux-ext4@vger.kernel.org
4261 W:      http://ext4.wiki.kernel.org
4262 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
4263 S:      Maintained
4264 F:      Documentation/filesystems/ext4.txt
4265 F:      fs/ext4/
4266
4267 Extended Verification Module (EVM)
4268 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
4269 L:      linux-ima-devel@lists.sourceforge.net
4270 L:      linux-security-module@vger.kernel.org
4271 S:      Supported
4272 F:      security/integrity/evm/
4273
4274 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
4275 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
4276 M:      Chanwoo Choi <cw00.choi@samsung.com>
4277 L:      linux-kernel@vger.kernel.org
4278 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
4279 S:      Maintained
4280 F:      drivers/extcon/
4281 F:      include/linux/extcon/
4282 F:      include/linux/extcon.h
4283 F:      Documentation/extcon/
4284 F:      Documentation/devicetree/bindings/extcon/
4285
4286 EXYNOS DP DRIVER
4287 M:      Jingoo Han <jingoohan1@gmail.com>
4288 L:      dri-devel@lists.freedesktop.org
4289 S:      Maintained
4290 F:      drivers/gpu/drm/exynos/exynos_dp*
4291
4292 EXYNOS MIPI DISPLAY DRIVERS
4293 M:      Inki Dae <inki.dae@samsung.com>
4294 M:      Donghwa Lee <dh09.lee@samsung.com>
4295 M:      Kyungmin Park <kyungmin.park@samsung.com>
4296 L:      linux-fbdev@vger.kernel.org
4297 S:      Maintained
4298 F:      drivers/video/fbdev/exynos/exynos_mipi*
4299 F:      include/video/exynos_mipi*
4300
4301 F71805F HARDWARE MONITORING DRIVER
4302 M:      Jean Delvare <jdelvare@suse.com>
4303 L:      lm-sensors@lm-sensors.org
4304 S:      Maintained
4305 F:      Documentation/hwmon/f71805f
4306 F:      drivers/hwmon/f71805f.c
4307
4308 FC0011 TUNER DRIVER
4309 M:      Michael Buesch <m@bues.ch>
4310 L:      linux-media@vger.kernel.org
4311 S:      Maintained
4312 F:      drivers/media/tuners/fc0011.h
4313 F:      drivers/media/tuners/fc0011.c
4314
4315 FC2580 MEDIA DRIVER
4316 M:      Antti Palosaari <crope@iki.fi>
4317 L:      linux-media@vger.kernel.org
4318 W:      https://linuxtv.org
4319 W:      http://palosaari.fi/linux/
4320 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4321 T:      git git://linuxtv.org/anttip/media_tree.git
4322 S:      Maintained
4323 F:      drivers/media/tuners/fc2580*
4324
4325 FANOTIFY
4326 M:      Eric Paris <eparis@redhat.com>
4327 S:      Maintained
4328 F:      fs/notify/fanotify/
4329 F:      include/linux/fanotify.h
4330 F:      include/uapi/linux/fanotify.h
4331
4332 FARSYNC SYNCHRONOUS DRIVER
4333 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
4334 W:      http://www.farsite.co.uk/
4335 S:      Supported
4336 F:      drivers/net/wan/farsync.*
4337
4338 FAULT INJECTION SUPPORT
4339 M:      Akinobu Mita <akinobu.mita@gmail.com>
4340 S:      Supported
4341 F:      Documentation/fault-injection/
4342 F:      lib/fault-inject.c
4343
4344 FBTFT Framebuffer drivers
4345 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
4346 M:      Noralf Trønnes <noralf@tronnes.org>
4347 S:      Maintained
4348 F:      drivers/staging/fbtft/
4349
4350 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
4351 M:      Vasu Dev <vasu.dev@intel.com>
4352 L:      fcoe-devel@open-fcoe.org
4353 W:      www.Open-FCoE.org
4354 S:      Supported
4355 F:      drivers/scsi/libfc/
4356 F:      drivers/scsi/fcoe/
4357 F:      include/scsi/fc/
4358 F:      include/scsi/libfc.h
4359 F:      include/scsi/libfcoe.h
4360 F:      include/uapi/scsi/fc/
4361
4362 FILE LOCKING (flock() and fcntl()/lockf())
4363 M:      Jeff Layton <jlayton@poochiereds.net>
4364 M:      "J. Bruce Fields" <bfields@fieldses.org>
4365 L:      linux-fsdevel@vger.kernel.org
4366 S:      Maintained
4367 F:      include/linux/fcntl.h
4368 F:      include/linux/fs.h
4369 F:      include/uapi/linux/fcntl.h
4370 F:      include/uapi/linux/fs.h
4371 F:      fs/fcntl.c
4372 F:      fs/locks.c
4373
4374 FILESYSTEMS (VFS and infrastructure)
4375 M:      Alexander Viro <viro@zeniv.linux.org.uk>
4376 L:      linux-fsdevel@vger.kernel.org
4377 S:      Maintained
4378 F:      fs/*
4379
4380 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
4381 M:      Riku Voipio <riku.voipio@iki.fi>
4382 L:      lm-sensors@lm-sensors.org
4383 S:      Maintained
4384 F:      drivers/hwmon/f75375s.c
4385 F:      include/linux/f75375s.h
4386
4387 FIREWIRE AUDIO DRIVERS
4388 M:      Clemens Ladisch <clemens@ladisch.de>
4389 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4390 T:      git git://git.alsa-project.org/alsa-kernel.git
4391 S:      Maintained
4392 F:      sound/firewire/
4393
4394 FIREWIRE MEDIA DRIVERS (firedtv)
4395 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4396 L:      linux-media@vger.kernel.org
4397 L:      linux1394-devel@lists.sourceforge.net
4398 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
4399 S:      Maintained
4400 F:      drivers/media/firewire/
4401
4402 FIREWIRE SBP-2 TARGET
4403 M:      Chris Boot <bootc@bootc.net>
4404 L:      linux-scsi@vger.kernel.org
4405 L:      target-devel@vger.kernel.org
4406 L:      linux1394-devel@lists.sourceforge.net
4407 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
4408 S:      Maintained
4409 F:      drivers/target/sbp/
4410
4411 FIREWIRE SUBSYSTEM
4412 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4413 L:      linux1394-devel@lists.sourceforge.net
4414 W:      http://ieee1394.wiki.kernel.org/
4415 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
4416 S:      Maintained
4417 F:      drivers/firewire/
4418 F:      include/linux/firewire.h
4419 F:      include/uapi/linux/firewire*.h
4420 F:      tools/firewire/
4421
4422 FIRMWARE LOADER (request_firmware)
4423 M:      Ming Lei <ming.lei@canonical.com>
4424 L:      linux-kernel@vger.kernel.org
4425 S:      Maintained
4426 F:      Documentation/firmware_class/
4427 F:      drivers/base/firmware*.c
4428 F:      include/linux/firmware.h
4429
4430 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
4431 M:      Joshua Morris <josh.h.morris@us.ibm.com>
4432 M:      Philip Kelleher <pjk1939@linux.vnet.ibm.com>
4433 S:      Maintained
4434 F:      drivers/block/rsxx/
4435
4436 FLOPPY DRIVER
4437 M:      Jiri Kosina <jikos@kernel.org>
4438 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
4439 S:      Odd fixes
4440 F:      drivers/block/floppy.c
4441
4442 FMC SUBSYSTEM
4443 M:      Alessandro Rubini <rubini@gnudd.com>
4444 W:      http://www.ohwr.org/projects/fmc-bus
4445 S:      Supported
4446 F:      drivers/fmc/
4447 F:      include/linux/fmc*.h
4448 F:      include/linux/ipmi-fru.h
4449 K:      fmc_d.*register
4450
4451 FPGA MANAGER FRAMEWORK
4452 M:      Alan Tull <atull@opensource.altera.com>
4453 R:      Moritz Fischer <moritz.fischer@ettus.com>
4454 S:      Maintained
4455 F:      drivers/fpga/
4456 F:      include/linux/fpga/fpga-mgr.h
4457 W:      http://www.rocketboards.org
4458
4459 FPU EMULATOR
4460 M:      Bill Metzenthen <billm@melbpc.org.au>
4461 W:      http://floatingpoint.sourceforge.net/emulator/index.html
4462 S:      Maintained
4463 F:      arch/x86/math-emu/
4464
4465 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
4466 L:      netdev@vger.kernel.org
4467 S:      Orphan
4468 F:      drivers/net/wan/dlci.c
4469 F:      drivers/net/wan/sdla.c
4470
4471 FRAMEBUFFER LAYER
4472 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
4473 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
4474 L:      linux-fbdev@vger.kernel.org
4475 W:      http://linux-fbdev.sourceforge.net/
4476 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
4477 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git
4478 S:      Maintained
4479 F:      Documentation/fb/
4480 F:      drivers/video/
4481 F:      include/video/
4482 F:      include/linux/fb.h
4483 F:      include/uapi/video/
4484 F:      include/uapi/linux/fb.h
4485
4486 FREESCALE DIU FRAMEBUFFER DRIVER
4487 M:      Timur Tabi <timur@tabi.org>
4488 L:      linux-fbdev@vger.kernel.org
4489 S:      Maintained
4490 F:      drivers/video/fbdev/fsl-diu-fb.*
4491
4492 FREESCALE DMA DRIVER
4493 M:      Li Yang <leoli@freescale.com>
4494 M:      Zhang Wei <zw@zh-kernel.org>
4495 L:      linuxppc-dev@lists.ozlabs.org
4496 S:      Maintained
4497 F:      drivers/dma/fsldma.*
4498
4499 FREESCALE I2C CPM DRIVER
4500 M:      Jochen Friedrich <jochen@scram.de>
4501 L:      linuxppc-dev@lists.ozlabs.org
4502 L:      linux-i2c@vger.kernel.org
4503 S:      Maintained
4504 F:      drivers/i2c/busses/i2c-cpm.c
4505
4506 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
4507 M:      Sascha Hauer <kernel@pengutronix.de>
4508 L:      linux-fbdev@vger.kernel.org
4509 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4510 S:      Maintained
4511 F:      include/linux/platform_data/video-imxfb.h
4512 F:      drivers/video/fbdev/imxfb.c
4513
4514 FREESCALE QUAD SPI DRIVER
4515 M:      Han Xu <han.xu@freescale.com>
4516 L:      linux-mtd@lists.infradead.org
4517 S:      Maintained
4518 F:      drivers/mtd/spi-nor/fsl-quadspi.c
4519
4520 FREESCALE SOC FS_ENET DRIVER
4521 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
4522 M:      Vitaly Bordug <vbordug@ru.mvista.com>
4523 L:      linuxppc-dev@lists.ozlabs.org
4524 L:      netdev@vger.kernel.org
4525 S:      Maintained
4526 F:      drivers/net/ethernet/freescale/fs_enet/
4527 F:      include/linux/fs_enet_pd.h
4528
4529 FREESCALE QUICC ENGINE LIBRARY
4530 L:      linuxppc-dev@lists.ozlabs.org
4531 S:      Orphan
4532 F:      drivers/soc/fsl/qe/
4533 F:      include/soc/fsl/*qe*.h
4534 F:      include/soc/fsl/*ucc*.h
4535
4536 FREESCALE USB PERIPHERAL DRIVERS
4537 M:      Li Yang <leoli@freescale.com>
4538 L:      linux-usb@vger.kernel.org
4539 L:      linuxppc-dev@lists.ozlabs.org
4540 S:      Maintained
4541 F:      drivers/usb/gadget/udc/fsl*
4542
4543 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
4544 M:      Li Yang <leoli@freescale.com>
4545 L:      netdev@vger.kernel.org
4546 L:      linuxppc-dev@lists.ozlabs.org
4547 S:      Maintained
4548 F:      drivers/net/ethernet/freescale/ucc_geth*
4549
4550 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
4551 M:      Claudiu Manoil <claudiu.manoil@freescale.com>
4552 L:      netdev@vger.kernel.org
4553 S:      Maintained
4554 F:      drivers/net/ethernet/freescale/gianfar*
4555 X:      drivers/net/ethernet/freescale/gianfar_ptp.c
4556 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
4557
4558 FREESCALE QUICC ENGINE UCC UART DRIVER
4559 M:      Timur Tabi <timur@tabi.org>
4560 L:      linuxppc-dev@lists.ozlabs.org
4561 S:      Maintained
4562 F:      drivers/tty/serial/ucc_uart.c
4563
4564 FREESCALE SOC SOUND DRIVERS
4565 M:      Timur Tabi <timur@tabi.org>
4566 M:      Nicolin Chen <nicoleotsuka@gmail.com>
4567 M:      Xiubo Li <Xiubo.Lee@gmail.com>
4568 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4569 L:      linuxppc-dev@lists.ozlabs.org
4570 S:      Maintained
4571 F:      sound/soc/fsl/fsl*
4572 F:      sound/soc/fsl/imx*
4573 F:      sound/soc/fsl/mpc8610_hpcd.c
4574
4575 FREESCALE QORIQ MANAGEMENT COMPLEX DRIVER
4576 M:      "J. German Rivera" <German.Rivera@freescale.com>
4577 L:      linux-kernel@vger.kernel.org
4578 S:      Maintained
4579 F:      drivers/staging/fsl-mc/
4580
4581 FREEVXFS FILESYSTEM
4582 M:      Christoph Hellwig <hch@infradead.org>
4583 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
4584 S:      Maintained
4585 F:      fs/freevxfs/
4586
4587 FREEZER
4588 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4589 M:      Pavel Machek <pavel@ucw.cz>
4590 L:      linux-pm@vger.kernel.org
4591 S:      Supported
4592 F:      Documentation/power/freezing-of-tasks.txt
4593 F:      include/linux/freezer.h
4594 F:      kernel/freezer.c
4595
4596 FRONTSWAP API
4597 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4598 L:      linux-kernel@vger.kernel.org
4599 S:      Maintained
4600 F:      mm/frontswap.c
4601 F:      include/linux/frontswap.h
4602
4603 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
4604 M:      David Howells <dhowells@redhat.com>
4605 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
4606 S:      Supported
4607 F:      Documentation/filesystems/caching/
4608 F:      fs/fscache/
4609 F:      include/linux/fscache*.h
4610
4611 F2FS FILE SYSTEM
4612 M:      Jaegeuk Kim <jaegeuk@kernel.org>
4613 M:      Changman Lee <cm224.lee@samsung.com>
4614 R:      Chao Yu <chao2.yu@samsung.com>
4615 L:      linux-f2fs-devel@lists.sourceforge.net
4616 W:      http://en.wikipedia.org/wiki/F2FS
4617 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
4618 S:      Maintained
4619 F:      Documentation/filesystems/f2fs.txt
4620 F:      Documentation/ABI/testing/sysfs-fs-f2fs
4621 F:      fs/f2fs/
4622 F:      include/linux/f2fs_fs.h
4623 F:      include/trace/events/f2fs.h
4624
4625 FUJITSU FR-V (FRV) PORT
4626 S:      Orphan
4627 F:      arch/frv/
4628
4629 FUJITSU LAPTOP EXTRAS
4630 M:      Jonathan Woithe <jwoithe@just42.net>
4631 L:      platform-driver-x86@vger.kernel.org
4632 S:      Maintained
4633 F:      drivers/platform/x86/fujitsu-laptop.c
4634
4635 FUJITSU M-5MO LS CAMERA ISP DRIVER
4636 M:      Kyungmin Park <kyungmin.park@samsung.com>
4637 M:      Heungjun Kim <riverful.kim@samsung.com>
4638 L:      linux-media@vger.kernel.org
4639 S:      Maintained
4640 F:      drivers/media/i2c/m5mols/
4641 F:      include/media/i2c/m5mols.h
4642
4643 FUJITSU TABLET EXTRAS
4644 M:      Robert Gerlach <khnz@gmx.de>
4645 L:      platform-driver-x86@vger.kernel.org
4646 S:      Maintained
4647 F:      drivers/platform/x86/fujitsu-tablet.c
4648
4649 FUSE: FILESYSTEM IN USERSPACE
4650 M:      Miklos Szeredi <miklos@szeredi.hu>
4651 L:      fuse-devel@lists.sourceforge.net
4652 W:      http://fuse.sourceforge.net/
4653 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
4654 S:      Maintained
4655 F:      fs/fuse/
4656 F:      include/uapi/linux/fuse.h
4657 F:      Documentation/filesystems/fuse.txt
4658
4659 FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
4660 M:      Rik Faith <faith@cs.unc.edu>
4661 L:      linux-scsi@vger.kernel.org
4662 S:      Odd Fixes (e.g., new signatures)
4663 F:      drivers/scsi/fdomain.*
4664
4665 GCOV BASED KERNEL PROFILING
4666 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
4667 S:      Maintained
4668 F:      kernel/gcov/
4669 F:      Documentation/gcov.txt
4670
4671 GDT SCSI DISK ARRAY CONTROLLER DRIVER
4672 M:      Achim Leubner <achim_leubner@adaptec.com>
4673 L:      linux-scsi@vger.kernel.org
4674 W:      http://www.icp-vortex.com/
4675 S:      Supported
4676 F:      drivers/scsi/gdt*
4677
4678 GDB KERNEL DEBUGGING HELPER SCRIPTS
4679 M:      Jan Kiszka <jan.kiszka@siemens.com>
4680 S:      Supported
4681 F:      scripts/gdb/
4682
4683 GEMTEK FM RADIO RECEIVER DRIVER
4684 M:      Hans Verkuil <hverkuil@xs4all.nl>
4685 L:      linux-media@vger.kernel.org
4686 T:      git git://linuxtv.org/media_tree.git
4687 W:      https://linuxtv.org
4688 S:      Maintained
4689 F:      drivers/media/radio/radio-gemtek*
4690
4691 GENERIC GPIO I2C DRIVER
4692 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
4693 S:      Supported
4694 F:      drivers/i2c/busses/i2c-gpio.c
4695 F:      include/linux/i2c-gpio.h
4696
4697 GENERIC GPIO I2C MULTIPLEXER DRIVER
4698 M:      Peter Korsgaard <peter.korsgaard@barco.com>
4699 L:      linux-i2c@vger.kernel.org
4700 S:      Supported
4701 F:      drivers/i2c/muxes/i2c-mux-gpio.c
4702 F:      include/linux/i2c-mux-gpio.h
4703 F:      Documentation/i2c/muxes/i2c-mux-gpio
4704
4705 GENERIC HDLC (WAN) DRIVERS
4706 M:      Krzysztof Halasa <khc@pm.waw.pl>
4707 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
4708 S:      Maintained
4709 F:      drivers/net/wan/c101.c
4710 F:      drivers/net/wan/hd6457*
4711 F:      drivers/net/wan/hdlc*
4712 F:      drivers/net/wan/n2.c
4713 F:      drivers/net/wan/pc300too.c
4714 F:      drivers/net/wan/pci200syn.c
4715 F:      drivers/net/wan/wanxl*
4716
4717 GENERIC INCLUDE/ASM HEADER FILES
4718 M:      Arnd Bergmann <arnd@arndb.de>
4719 L:      linux-arch@vger.kernel.org
4720 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
4721 S:      Maintained
4722 F:      include/asm-generic/
4723 F:      include/uapi/asm-generic/
4724
4725 GENERIC PHY FRAMEWORK
4726 M:      Kishon Vijay Abraham I <kishon@ti.com>
4727 L:      linux-kernel@vger.kernel.org
4728 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
4729 S:      Supported
4730 F:      drivers/phy/
4731 F:      include/linux/phy/
4732
4733 GENERIC PM DOMAINS
4734 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4735 M:      Kevin Hilman <khilman@kernel.org>
4736 M:      Ulf Hansson <ulf.hansson@linaro.org>
4737 L:      linux-pm@vger.kernel.org
4738 S:      Supported
4739 F:      drivers/base/power/domain*.c
4740 F:      include/linux/pm_domain.h
4741
4742 GENERIC UIO DRIVER FOR PCI DEVICES
4743 M:      "Michael S. Tsirkin" <mst@redhat.com>
4744 L:      kvm@vger.kernel.org
4745 S:      Supported
4746 F:      drivers/uio/uio_pci_generic.c
4747
4748 GET_MAINTAINER SCRIPT
4749 M:      Joe Perches <joe@perches.com>
4750 S:      Maintained
4751 F:      scripts/get_maintainer.pl
4752
4753 GFS2 FILE SYSTEM
4754 M:      Steven Whitehouse <swhiteho@redhat.com>
4755 M:      Bob Peterson <rpeterso@redhat.com>
4756 L:      cluster-devel@redhat.com
4757 W:      http://sources.redhat.com/cluster/
4758 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
4759 S:      Supported
4760 F:      Documentation/filesystems/gfs2*.txt
4761 F:      fs/gfs2/
4762 F:      include/uapi/linux/gfs2_ondisk.h
4763
4764 GIGASET ISDN DRIVERS
4765 M:      Paul Bolle <pebolle@tiscali.nl>
4766 L:      gigaset307x-common@lists.sourceforge.net
4767 W:      http://gigaset307x.sourceforge.net/
4768 S:      Odd Fixes
4769 F:      Documentation/isdn/README.gigaset
4770 F:      drivers/isdn/gigaset/
4771 F:      include/uapi/linux/gigaset_dev.h
4772
4773 GO7007 MPEG CODEC
4774 M:      Hans Verkuil <hans.verkuil@cisco.com>
4775 L:      linux-media@vger.kernel.org
4776 S:      Maintained
4777 F:      drivers/media/usb/go7007/
4778
4779 GOODIX TOUCHSCREEN
4780 M:      Bastien Nocera <hadess@hadess.net>
4781 L:      linux-input@vger.kernel.org
4782 S:      Maintained
4783 F:      drivers/input/touchscreen/goodix.c
4784
4785 GPIO SUBSYSTEM
4786 M:      Linus Walleij <linus.walleij@linaro.org>
4787 M:      Alexandre Courbot <gnurou@gmail.com>
4788 L:      linux-gpio@vger.kernel.org
4789 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
4790 S:      Maintained
4791 F:      Documentation/gpio/
4792 F:      drivers/gpio/
4793 F:      include/linux/gpio/
4794 F:      include/linux/gpio.h
4795 F:      include/asm-generic/gpio.h
4796
4797 GRE DEMULTIPLEXER DRIVER
4798 M:      Dmitry Kozlov <xeb@mail.ru>
4799 L:      netdev@vger.kernel.org
4800 S:      Maintained
4801 F:      net/ipv4/gre_demux.c
4802 F:      net/ipv4/gre_offload.c
4803 F:      include/net/gre.h
4804
4805 GRETH 10/100/1G Ethernet MAC device driver
4806 M:      Kristoffer Glembo <kristoffer@gaisler.com>
4807 L:      netdev@vger.kernel.org
4808 S:      Maintained
4809 F:      drivers/net/ethernet/aeroflex/
4810
4811 GSPCA FINEPIX SUBDRIVER
4812 M:      Frank Zago <frank@zago.net>
4813 L:      linux-media@vger.kernel.org
4814 T:      git git://linuxtv.org/media_tree.git
4815 S:      Maintained
4816 F:      drivers/media/usb/gspca/finepix.c
4817
4818 GSPCA GL860 SUBDRIVER
4819 M:      Olivier Lorin <o.lorin@laposte.net>
4820 L:      linux-media@vger.kernel.org
4821 T:      git git://linuxtv.org/media_tree.git
4822 S:      Maintained
4823 F:      drivers/media/usb/gspca/gl860/
4824
4825 GSPCA M5602 SUBDRIVER
4826 M:      Erik Andren <erik.andren@gmail.com>
4827 L:      linux-media@vger.kernel.org
4828 T:      git git://linuxtv.org/media_tree.git
4829 S:      Maintained
4830 F:      drivers/media/usb/gspca/m5602/
4831
4832 GSPCA PAC207 SONIXB SUBDRIVER
4833 M:      Hans de Goede <hdegoede@redhat.com>
4834 L:      linux-media@vger.kernel.org
4835 T:      git git://linuxtv.org/media_tree.git
4836 S:      Maintained
4837 F:      drivers/media/usb/gspca/pac207.c
4838
4839 GSPCA SN9C20X SUBDRIVER
4840 M:      Brian Johnson <brijohn@gmail.com>
4841 L:      linux-media@vger.kernel.org
4842 T:      git git://linuxtv.org/media_tree.git
4843 S:      Maintained
4844 F:      drivers/media/usb/gspca/sn9c20x.c
4845
4846 GSPCA T613 SUBDRIVER
4847 M:      Leandro Costantino <lcostantino@gmail.com>
4848 L:      linux-media@vger.kernel.org
4849 T:      git git://linuxtv.org/media_tree.git
4850 S:      Maintained
4851 F:      drivers/media/usb/gspca/t613.c
4852
4853 GSPCA USB WEBCAM DRIVER
4854 M:      Hans de Goede <hdegoede@redhat.com>
4855 L:      linux-media@vger.kernel.org
4856 T:      git git://linuxtv.org/media_tree.git
4857 S:      Maintained
4858 F:      drivers/media/usb/gspca/
4859
4860 GUID PARTITION TABLE (GPT)
4861 M:      Davidlohr Bueso <dave@stgolabs.net>
4862 L:      linux-efi@vger.kernel.org
4863 S:      Maintained
4864 F:      block/partitions/efi.*
4865
4866 STK1160 USB VIDEO CAPTURE DRIVER
4867 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
4868 L:      linux-media@vger.kernel.org
4869 T:      git git://linuxtv.org/media_tree.git
4870 S:      Maintained
4871 F:      drivers/media/usb/stk1160/
4872
4873 H8/300 ARCHITECTURE
4874 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
4875 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
4876 W:      http://uclinux-h8.sourceforge.jp
4877 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
4878 S:      Maintained
4879 F:      arch/h8300/
4880 F:      drivers/clocksource/h8300_*.c
4881 F:      drivers/clk/h8300/
4882 F:      drivers/irqchip/irq-renesas-h8*.c
4883
4884 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
4885 M:      Frank Seidel <frank@f-seidel.de>
4886 L:      platform-driver-x86@vger.kernel.org
4887 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
4888 S:      Maintained
4889 F:      drivers/platform/x86/hdaps.c
4890
4891 HDPVR USB VIDEO ENCODER DRIVER
4892 M:      Hans Verkuil <hverkuil@xs4all.nl>
4893 L:      linux-media@vger.kernel.org
4894 T:      git git://linuxtv.org/media_tree.git
4895 W:      https://linuxtv.org
4896 S:      Odd Fixes
4897 F:      drivers/media/usb/hdpvr/
4898
4899 HWPOISON MEMORY FAILURE HANDLING
4900 M:      Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
4901 L:      linux-mm@kvack.org
4902 S:      Maintained
4903 F:      mm/memory-failure.c
4904 F:      mm/hwpoison-inject.c
4905
4906 HYPERVISOR VIRTUAL CONSOLE DRIVER
4907 L:      linuxppc-dev@lists.ozlabs.org
4908 S:      Odd Fixes
4909 F:      drivers/tty/hvc/
4910
4911 HACKRF MEDIA DRIVER
4912 M:      Antti Palosaari <crope@iki.fi>
4913 L:      linux-media@vger.kernel.org
4914 W:      https://linuxtv.org
4915 W:      http://palosaari.fi/linux/
4916 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4917 T:      git git://linuxtv.org/anttip/media_tree.git
4918 S:      Maintained
4919 F:      drivers/media/usb/hackrf/
4920
4921 HARDWARE MONITORING
4922 M:      Jean Delvare <jdelvare@suse.com>
4923 M:      Guenter Roeck <linux@roeck-us.net>
4924 L:      lm-sensors@lm-sensors.org
4925 W:      http://www.lm-sensors.org/
4926 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/
4927 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
4928 S:      Maintained
4929 F:      Documentation/hwmon/
4930 F:      drivers/hwmon/
4931 F:      include/linux/hwmon*.h
4932
4933 HARDWARE RANDOM NUMBER GENERATOR CORE
4934 M:      Matt Mackall <mpm@selenic.com>
4935 M:      Herbert Xu <herbert@gondor.apana.org.au>
4936 L:      linux-crypto@vger.kernel.org
4937 S:      Odd fixes
4938 F:      Documentation/hw_random.txt
4939 F:      drivers/char/hw_random/
4940 F:      include/linux/hw_random.h
4941
4942 HARDWARE SPINLOCK CORE
4943 M:      Ohad Ben-Cohen <ohad@wizery.com>
4944 S:      Maintained
4945 F:      Documentation/hwspinlock.txt
4946 F:      drivers/hwspinlock/hwspinlock_*
4947 F:      include/linux/hwspinlock.h
4948
4949 HARMONY SOUND DRIVER
4950 L:      linux-parisc@vger.kernel.org
4951 S:      Maintained
4952 F:      sound/parisc/harmony.*
4953
4954 HD29L2 MEDIA DRIVER
4955 M:      Antti Palosaari <crope@iki.fi>
4956 L:      linux-media@vger.kernel.org
4957 W:      https://linuxtv.org
4958 W:      http://palosaari.fi/linux/
4959 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4960 T:      git git://linuxtv.org/anttip/media_tree.git
4961 S:      Maintained
4962 F:      drivers/media/dvb-frontends/hd29l2*
4963
4964 HEWLETT-PACKARD SMART2 RAID DRIVER
4965 L:      iss_storagedev@hp.com
4966 S:      Orphan
4967 F:      Documentation/blockdev/cpqarray.txt
4968 F:      drivers/block/cpqarray.*
4969
4970 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
4971 M:      Don Brace <don.brace@pmcs.com>
4972 L:      iss_storagedev@hp.com
4973 L:      storagedev@pmcs.com
4974 L:      linux-scsi@vger.kernel.org
4975 S:      Supported
4976 F:      Documentation/scsi/hpsa.txt
4977 F:      drivers/scsi/hpsa*.[ch]
4978 F:      include/linux/cciss*.h
4979 F:      include/uapi/linux/cciss*.h
4980
4981 HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
4982 M:      Don Brace <don.brace@pmcs.com>
4983 L:      iss_storagedev@hp.com
4984 L:      storagedev@pmcs.com
4985 L:      linux-scsi@vger.kernel.org
4986 S:      Supported
4987 F:      Documentation/blockdev/cciss.txt
4988 F:      drivers/block/cciss*
4989 F:      include/linux/cciss_ioctl.h
4990 F:      include/uapi/linux/cciss_ioctl.h
4991
4992 HFS FILESYSTEM
4993 L:      linux-fsdevel@vger.kernel.org
4994 S:      Orphan
4995 F:      Documentation/filesystems/hfs.txt
4996 F:      fs/hfs/
4997
4998 HFSPLUS FILESYSTEM
4999 L:      linux-fsdevel@vger.kernel.org
5000 S:      Orphan
5001 F:      Documentation/filesystems/hfsplus.txt
5002 F:      fs/hfsplus/
5003
5004 HGA FRAMEBUFFER DRIVER
5005 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
5006 L:      linux-nvidia@lists.surfsouth.com
5007 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
5008 S:      Maintained
5009 F:      drivers/video/fbdev/hgafb.c
5010
5011 HIBERNATION (aka Software Suspend, aka swsusp)
5012 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
5013 M:      Pavel Machek <pavel@ucw.cz>
5014 L:      linux-pm@vger.kernel.org
5015 S:      Supported
5016 F:      arch/x86/power/
5017 F:      drivers/base/power/
5018 F:      kernel/power/
5019 F:      include/linux/suspend.h
5020 F:      include/linux/freezer.h
5021 F:      include/linux/pm.h
5022 F:      arch/*/include/asm/suspend*.h
5023
5024 HID CORE LAYER
5025 M:      Jiri Kosina <jikos@kernel.org>
5026 R:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
5027 L:      linux-input@vger.kernel.org
5028 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
5029 S:      Maintained
5030 F:      drivers/hid/
5031 F:      include/linux/hid*
5032 F:      include/uapi/linux/hid*
5033
5034 HID SENSOR HUB DRIVERS
5035 M:      Jiri Kosina <jikos@kernel.org>
5036 M:      Jonathan Cameron <jic23@kernel.org>
5037 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
5038 L:      linux-input@vger.kernel.org
5039 L:      linux-iio@vger.kernel.org
5040 S:      Maintained
5041 F:      Documentation/hid/hid-sensor*
5042 F:      drivers/hid/hid-sensor-*
5043 F:      drivers/iio/*/hid-*
5044 F:      include/linux/hid-sensor-*
5045
5046 HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
5047 M:      Thomas Gleixner <tglx@linutronix.de>
5048 L:      linux-kernel@vger.kernel.org
5049 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
5050 S:      Maintained
5051 F:      Documentation/timers/
5052 F:      kernel/time/hrtimer.c
5053 F:      kernel/time/clockevents.c
5054 F:      kernel/time/tick*.*
5055 F:      kernel/time/timer_*.c
5056 F:      include/linux/clockchips.h
5057 F:      include/linux/hrtimer.h
5058
5059 HIGH-SPEED SCC DRIVER FOR AX.25
5060 L:      linux-hams@vger.kernel.org
5061 S:      Orphan
5062 F:      drivers/net/hamradio/dmascc.c
5063 F:      drivers/net/hamradio/scc.c
5064
5065 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
5066 M:      HighPoint Linux Team <linux@highpoint-tech.com>
5067 W:      http://www.highpoint-tech.com
5068 S:      Supported
5069 F:      Documentation/scsi/hptiop.txt
5070 F:      drivers/scsi/hptiop.c
5071
5072 HIPPI
5073 M:      Jes Sorensen <jes@trained-monkey.org>
5074 L:      linux-hippi@sunsite.dk
5075 S:      Maintained
5076 F:      include/linux/hippidevice.h
5077 F:      include/uapi/linux/if_hippi.h
5078 F:      net/802/hippi.c
5079 F:      drivers/net/hippi/
5080
5081 HISILICON SAS Controller
5082 M:      John Garry <john.garry@huawei.com>
5083 W:      http://www.hisilicon.com
5084 S:      Supported
5085 F:      drivers/scsi/hisi_sas/
5086 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
5087
5088 HOST AP DRIVER
5089 M:      Jouni Malinen <j@w1.fi>
5090 L:      hostap@shmoo.com (subscribers-only)
5091 L:      linux-wireless@vger.kernel.org
5092 W:      http://hostap.epitest.fi/
5093 S:      Maintained
5094 F:      drivers/net/wireless/intersil/hostap/
5095
5096 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
5097 L:      platform-driver-x86@vger.kernel.org
5098 S:      Orphan
5099 F:      drivers/platform/x86/tc1100-wmi.c
5100
5101 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
5102 M:      Jaroslav Kysela <perex@perex.cz>
5103 S:      Maintained
5104 F:      drivers/net/ethernet/hp/hp100.*
5105
5106 HPET:   High Precision Event Timers driver
5107 M:      Clemens Ladisch <clemens@ladisch.de>
5108 S:      Maintained
5109 F:      Documentation/timers/hpet.txt
5110 F:      drivers/char/hpet.c
5111 F:      include/linux/hpet.h
5112 F:      include/uapi/linux/hpet.h
5113
5114 HPET:   x86
5115 S:      Orphan
5116 F:      arch/x86/kernel/hpet.c
5117 F:      arch/x86/include/asm/hpet.h
5118
5119 HPFS FILESYSTEM
5120 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
5121 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
5122 S:      Maintained
5123 F:      fs/hpfs/
5124
5125 HSI SUBSYSTEM
5126 M:      Sebastian Reichel <sre@kernel.org>
5127 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
5128 S:      Maintained
5129 F:      Documentation/ABI/testing/sysfs-bus-hsi
5130 F:      Documentation/hsi.txt
5131 F:      drivers/hsi/
5132 F:      include/linux/hsi/
5133 F:      include/uapi/linux/hsi/
5134
5135 HSO 3G MODEM DRIVER
5136 M:      Jan Dumon <j.dumon@option.com>
5137 W:      http://www.pharscape.org
5138 S:      Maintained
5139 F:      drivers/net/usb/hso.c
5140
5141 HSR NETWORK PROTOCOL
5142 M:      Arvid Brodin <arvid.brodin@alten.se>
5143 L:      netdev@vger.kernel.org
5144 S:      Maintained
5145 F:      net/hsr/
5146
5147 HTCPEN TOUCHSCREEN DRIVER
5148 M:      Pau Oliva Fora <pof@eslack.org>
5149 L:      linux-input@vger.kernel.org
5150 S:      Maintained
5151 F:      drivers/input/touchscreen/htcpen.c
5152
5153 HUGETLB FILESYSTEM
5154 M:      Nadia Yvette Chambers <nyc@holomorphy.com>
5155 S:      Maintained
5156 F:      fs/hugetlbfs/
5157
5158 Hyper-V CORE AND DRIVERS
5159 M:      "K. Y. Srinivasan" <kys@microsoft.com>
5160 M:      Haiyang Zhang <haiyangz@microsoft.com>
5161 L:      devel@linuxdriverproject.org
5162 S:      Maintained
5163 F:      arch/x86/include/asm/mshyperv.h
5164 F:      arch/x86/include/uapi/asm/hyperv.h
5165 F:      arch/x86/kernel/cpu/mshyperv.c
5166 F:      drivers/hid/hid-hyperv.c
5167 F:      drivers/hv/
5168 F:      drivers/input/serio/hyperv-keyboard.c
5169 F:      drivers/net/hyperv/
5170 F:      drivers/scsi/storvsc_drv.c
5171 F:      drivers/video/fbdev/hyperv_fb.c
5172 F:      include/linux/hyperv.h
5173 F:      tools/hv/
5174 F:      Documentation/ABI/stable/sysfs-bus-vmbus
5175
5176 I2C OVER PARALLEL PORT
5177 M:      Jean Delvare <jdelvare@suse.com>
5178 L:      linux-i2c@vger.kernel.org
5179 S:      Maintained
5180 F:      Documentation/i2c/busses/i2c-parport
5181 F:      Documentation/i2c/busses/i2c-parport-light
5182 F:      drivers/i2c/busses/i2c-parport.c
5183 F:      drivers/i2c/busses/i2c-parport-light.c
5184
5185 I2C/SMBUS CONTROLLER DRIVERS FOR PC
5186 M:      Jean Delvare <jdelvare@suse.com>
5187 L:      linux-i2c@vger.kernel.org
5188 S:      Maintained
5189 F:      Documentation/i2c/busses/i2c-ali1535
5190 F:      Documentation/i2c/busses/i2c-ali1563
5191 F:      Documentation/i2c/busses/i2c-ali15x3
5192 F:      Documentation/i2c/busses/i2c-amd756
5193 F:      Documentation/i2c/busses/i2c-amd8111
5194 F:      Documentation/i2c/busses/i2c-i801
5195 F:      Documentation/i2c/busses/i2c-nforce2
5196 F:      Documentation/i2c/busses/i2c-piix4
5197 F:      Documentation/i2c/busses/i2c-sis5595
5198 F:      Documentation/i2c/busses/i2c-sis630
5199 F:      Documentation/i2c/busses/i2c-sis96x
5200 F:      Documentation/i2c/busses/i2c-via
5201 F:      Documentation/i2c/busses/i2c-viapro
5202 F:      drivers/i2c/busses/i2c-ali1535.c
5203 F:      drivers/i2c/busses/i2c-ali1563.c
5204 F:      drivers/i2c/busses/i2c-ali15x3.c
5205 F:      drivers/i2c/busses/i2c-amd756.c
5206 F:      drivers/i2c/busses/i2c-amd756-s4882.c
5207 F:      drivers/i2c/busses/i2c-amd8111.c
5208 F:      drivers/i2c/busses/i2c-i801.c
5209 F:      drivers/i2c/busses/i2c-isch.c
5210 F:      drivers/i2c/busses/i2c-nforce2.c
5211 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
5212 F:      drivers/i2c/busses/i2c-piix4.c
5213 F:      drivers/i2c/busses/i2c-sis5595.c
5214 F:      drivers/i2c/busses/i2c-sis630.c
5215 F:      drivers/i2c/busses/i2c-sis96x.c
5216 F:      drivers/i2c/busses/i2c-via.c
5217 F:      drivers/i2c/busses/i2c-viapro.c
5218
5219 I2C/SMBUS ISMT DRIVER
5220 M:      Seth Heasley <seth.heasley@intel.com>
5221 M:      Neil Horman <nhorman@tuxdriver.com>
5222 L:      linux-i2c@vger.kernel.org
5223 F:      drivers/i2c/busses/i2c-ismt.c
5224 F:      Documentation/i2c/busses/i2c-ismt
5225
5226 I2C/SMBUS STUB DRIVER
5227 M:      Jean Delvare <jdelvare@suse.com>
5228 L:      linux-i2c@vger.kernel.org
5229 S:      Maintained
5230 F:      drivers/i2c/i2c-stub.c
5231
5232 I2C SUBSYSTEM
5233 M:      Wolfram Sang <wsa@the-dreams.de>
5234 L:      linux-i2c@vger.kernel.org
5235 W:      https://i2c.wiki.kernel.org/
5236 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
5237 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
5238 S:      Maintained
5239 F:      Documentation/devicetree/bindings/i2c/
5240 F:      Documentation/i2c/
5241 F:      drivers/i2c/
5242 F:      drivers/i2c/*/
5243 F:      include/linux/i2c.h
5244 F:      include/linux/i2c-*.h
5245 F:      include/uapi/linux/i2c.h
5246 F:      include/uapi/linux/i2c-*.h
5247
5248 I2C ACPI SUPPORT
5249 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
5250 L:      linux-i2c@vger.kernel.org
5251 L:      linux-acpi@vger.kernel.org
5252 S:      Maintained
5253
5254 I2C-TAOS-EVM DRIVER
5255 M:      Jean Delvare <jdelvare@suse.com>
5256 L:      linux-i2c@vger.kernel.org
5257 S:      Maintained
5258 F:      Documentation/i2c/busses/i2c-taos-evm
5259 F:      drivers/i2c/busses/i2c-taos-evm.c
5260
5261 I2C-TINY-USB DRIVER
5262 M:      Till Harbaum <till@harbaum.org>
5263 L:      linux-i2c@vger.kernel.org
5264 W:      http://www.harbaum.org/till/i2c_tiny_usb
5265 S:      Maintained
5266 F:      drivers/i2c/busses/i2c-tiny-usb.c
5267
5268 i386 BOOT CODE
5269 M:      "H. Peter Anvin" <hpa@zytor.com>
5270 S:      Maintained
5271 F:      arch/x86/boot/
5272
5273 i386 SETUP CODE / CPU ERRATA WORKAROUNDS
5274 M:      "H. Peter Anvin" <hpa@zytor.com>
5275 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
5276 S:      Maintained
5277
5278 IA64 (Itanium) PLATFORM
5279 M:      Tony Luck <tony.luck@intel.com>
5280 M:      Fenghua Yu <fenghua.yu@intel.com>
5281 L:      linux-ia64@vger.kernel.org
5282 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
5283 S:      Maintained
5284 F:      arch/ia64/
5285
5286 IBM Power VMX Cryptographic instructions
5287 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5288 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5289 L:      linux-crypto@vger.kernel.org
5290 S:      Supported
5291 F:      drivers/crypto/vmx/Makefile
5292 F:      drivers/crypto/vmx/Kconfig
5293 F:      drivers/crypto/vmx/vmx.c
5294 F:      drivers/crypto/vmx/aes*
5295 F:      drivers/crypto/vmx/ghash*
5296 F:      drivers/crypto/vmx/ppc-xlate.pl
5297
5298 IBM Power in-Nest Crypto Acceleration
5299 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5300 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5301 L:      linux-crypto@vger.kernel.org
5302 S:      Supported
5303 F:      drivers/crypto/nx/Makefile
5304 F:      drivers/crypto/nx/Kconfig
5305 F:      drivers/crypto/nx/nx-aes*
5306 F:      drivers/crypto/nx/nx-sha*
5307 F:      drivers/crypto/nx/nx.*
5308 F:      drivers/crypto/nx/nx_csbcpb.h
5309 F:      drivers/crypto/nx/nx_debugfs.h
5310
5311 IBM Power 842 compression accelerator
5312 M:      Dan Streetman <ddstreet@ieee.org>
5313 S:      Supported
5314 F:      drivers/crypto/nx/Makefile
5315 F:      drivers/crypto/nx/Kconfig
5316 F:      drivers/crypto/nx/nx-842*
5317 F:      include/linux/sw842.h
5318 F:      crypto/842.c
5319 F:      lib/842/
5320
5321 IBM Power Linux RAID adapter
5322 M:      Brian King <brking@us.ibm.com>
5323 S:      Supported
5324 F:      drivers/scsi/ipr.*
5325
5326 IBM Power Virtual Ethernet Device Driver
5327 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
5328 L:      netdev@vger.kernel.org
5329 S:      Supported
5330 F:      drivers/net/ethernet/ibm/ibmveth.*
5331
5332 IBM Power SRIOV Virtual NIC Device Driver
5333 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
5334 M:      John Allen <jallen@linux.vnet.ibm.com>
5335 L:      netdev@vger.kernel.org
5336 S:      Supported
5337 F:      drivers/net/ethernet/ibm/ibmvnic.*
5338
5339 IBM Power Virtual SCSI Device Drivers
5340 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5341 L:      linux-scsi@vger.kernel.org
5342 S:      Supported
5343 F:      drivers/scsi/ibmvscsi/ibmvscsi*
5344 F:      drivers/scsi/ibmvscsi/viosrp.h
5345
5346 IBM Power Virtual FC Device Drivers
5347 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5348 L:      linux-scsi@vger.kernel.org
5349 S:      Supported
5350 F:      drivers/scsi/ibmvscsi/ibmvfc*
5351
5352 IBM ServeRAID RAID DRIVER
5353 S:      Orphan
5354 F:      drivers/scsi/ips.*
5355
5356 ICH LPC AND GPIO DRIVER
5357 M:      Peter Tyser <ptyser@xes-inc.com>
5358 S:      Maintained
5359 F:      drivers/mfd/lpc_ich.c
5360 F:      drivers/gpio/gpio-ich.c
5361
5362 IDE SUBSYSTEM
5363 M:      "David S. Miller" <davem@davemloft.net>
5364 L:      linux-ide@vger.kernel.org
5365 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
5366 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
5367 S:      Maintained
5368 F:      Documentation/ide/
5369 F:      drivers/ide/
5370 F:      include/linux/ide.h
5371
5372 IDEAPAD LAPTOP EXTRAS DRIVER
5373 M:      Ike Panhc <ike.pan@canonical.com>
5374 L:      platform-driver-x86@vger.kernel.org
5375 W:      http://launchpad.net/ideapad-laptop
5376 S:      Maintained
5377 F:      drivers/platform/x86/ideapad-laptop.c
5378
5379 IDEAPAD LAPTOP SLIDEBAR DRIVER
5380 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
5381 L:      linux-input@vger.kernel.org
5382 W:      https://github.com/o2genum/ideapad-slidebar
5383 S:      Maintained
5384 F:      drivers/input/misc/ideapad_slidebar.c
5385
5386 IDE/ATAPI DRIVERS
5387 M:      Borislav Petkov <bp@alien8.de>
5388 L:      linux-ide@vger.kernel.org
5389 S:      Maintained
5390 F:      Documentation/cdrom/ide-cd
5391 F:      drivers/ide/ide-cd*
5392
5393 IDLE-I7300
5394 M:      Andy Henroid <andrew.d.henroid@intel.com>
5395 L:      linux-pm@vger.kernel.org
5396 S:      Supported
5397 F:      drivers/idle/i7300_idle.c
5398
5399 IEEE 802.15.4 SUBSYSTEM
5400 M:      Alexander Aring <alex.aring@gmail.com>
5401 L:      linux-wpan@vger.kernel.org
5402 W:      https://github.com/linux-wpan
5403 T:      git git://github.com/linux-wpan/linux-wpan-next.git
5404 S:      Maintained
5405 F:      net/ieee802154/
5406 F:      net/mac802154/
5407 F:      drivers/net/ieee802154/
5408 F:      include/linux/nl802154.h
5409 F:      include/linux/ieee802154.h
5410 F:      include/net/nl802154.h
5411 F:      include/net/mac802154.h
5412 F:      include/net/af_ieee802154.h
5413 F:      include/net/cfg802154.h
5414 F:      include/net/ieee802154_netdev.h
5415 F:      Documentation/networking/ieee802154.txt
5416
5417 IGORPLUG-USB IR RECEIVER
5418 M:      Sean Young <sean@mess.org>
5419 L:      linux-media@vger.kernel.org
5420 S:      Maintained
5421 F:      drivers/media/rc/igorplugusb.c
5422
5423 IGUANAWORKS USB IR TRANSCEIVER
5424 M:      Sean Young <sean@mess.org>
5425 L:      linux-media@vger.kernel.org
5426 S:      Maintained
5427 F:      drivers/media/rc/iguanair.c
5428
5429 IIO SUBSYSTEM AND DRIVERS
5430 M:      Jonathan Cameron <jic23@kernel.org>
5431 R:      Hartmut Knaack <knaack.h@gmx.de>
5432 R:      Lars-Peter Clausen <lars@metafoo.de>
5433 R:      Peter Meerwald <pmeerw@pmeerw.net>
5434 L:      linux-iio@vger.kernel.org
5435 S:      Maintained
5436 F:      drivers/iio/
5437 F:      drivers/staging/iio/
5438 F:      include/linux/iio/
5439 F:      tools/iio/
5440
5441 IKANOS/ADI EAGLE ADSL USB DRIVER
5442 M:      Matthieu Castet <castet.matthieu@free.fr>
5443 M:      Stanislaw Gruszka <stf_xl@wp.pl>
5444 S:      Maintained
5445 F:      drivers/usb/atm/ueagle-atm.c
5446
5447 INA209 HARDWARE MONITOR DRIVER
5448 M:      Guenter Roeck <linux@roeck-us.net>
5449 L:      lm-sensors@lm-sensors.org
5450 S:      Maintained
5451 F:      Documentation/hwmon/ina209
5452 F:      Documentation/devicetree/bindings/i2c/ina209.txt
5453 F:      drivers/hwmon/ina209.c
5454
5455 INA2XX HARDWARE MONITOR DRIVER
5456 M:      Guenter Roeck <linux@roeck-us.net>
5457 L:      lm-sensors@lm-sensors.org
5458 S:      Maintained
5459 F:      Documentation/hwmon/ina2xx
5460 F:      drivers/hwmon/ina2xx.c
5461 F:      include/linux/platform_data/ina2xx.h
5462
5463 INDUSTRY PACK SUBSYSTEM (IPACK)
5464 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
5465 M:      Jens Taprogge <jens.taprogge@taprogge.org>
5466 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5467 L:      industrypack-devel@lists.sourceforge.net
5468 W:      http://industrypack.sourceforge.net
5469 S:      Maintained
5470 F:      drivers/ipack/
5471
5472 INGENIC JZ4780 DMA Driver
5473 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
5474 S:      Maintained
5475 F:      drivers/dma/dma-jz4780.c
5476
5477 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
5478 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
5479 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
5480 L:      linux-ima-devel@lists.sourceforge.net
5481 L:      linux-ima-user@lists.sourceforge.net
5482 L:      linux-security-module@vger.kernel.org
5483 S:      Supported
5484 F:      security/integrity/ima/
5485
5486 IMGTEC IR DECODER DRIVER
5487 M:      James Hogan <james.hogan@imgtec.com>
5488 S:      Maintained
5489 F:      drivers/media/rc/img-ir/
5490
5491 IMS TWINTURBO FRAMEBUFFER DRIVER
5492 L:      linux-fbdev@vger.kernel.org
5493 S:      Orphan
5494 F:      drivers/video/fbdev/imsttfb.c
5495
5496 INFINIBAND SUBSYSTEM
5497 M:      Doug Ledford <dledford@redhat.com>
5498 M:      Sean Hefty <sean.hefty@intel.com>
5499 M:      Hal Rosenstock <hal.rosenstock@gmail.com>
5500 L:      linux-rdma@vger.kernel.org
5501 W:      http://www.openfabrics.org/
5502 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5503 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git
5504 S:      Supported
5505 F:      Documentation/infiniband/
5506 F:      drivers/infiniband/
5507 F:      drivers/staging/rdma/
5508 F:      include/uapi/linux/if_infiniband.h
5509 F:      include/uapi/rdma/
5510 F:      include/rdma/
5511
5512 INOTIFY
5513 M:      John McCutchan <john@johnmccutchan.com>
5514 M:      Robert Love <rlove@rlove.org>
5515 M:      Eric Paris <eparis@parisplace.org>
5516 S:      Maintained
5517 F:      Documentation/filesystems/inotify.txt
5518 F:      fs/notify/inotify/
5519 F:      include/linux/inotify.h
5520 F:      include/uapi/linux/inotify.h
5521
5522 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
5523 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
5524 L:      linux-input@vger.kernel.org
5525 Q:      http://patchwork.kernel.org/project/linux-input/list/
5526 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
5527 S:      Maintained
5528 F:      drivers/input/
5529 F:      include/linux/input.h
5530 F:      include/uapi/linux/input.h
5531 F:      include/linux/input/
5532
5533 INPUT MULTITOUCH (MT) PROTOCOL
5534 M:      Henrik Rydberg <rydberg@bitmath.org>
5535 L:      linux-input@vger.kernel.org
5536 S:      Odd fixes
5537 F:      Documentation/input/multi-touch-protocol.txt
5538 F:      drivers/input/input-mt.c
5539 K:      \b(ABS|SYN)_MT_
5540
5541 INTEL ASoC BDW/HSW DRIVERS
5542 M:      Jie Yang <yang.jie@linux.intel.com>
5543 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5544 S:      Supported
5545 F:      sound/soc/intel/common/sst-dsp*
5546 F:      sound/soc/intel/common/sst-firmware.c
5547 F:      sound/soc/intel/boards/broadwell.c
5548 F:      sound/soc/intel/haswell/
5549
5550 INTEL C600 SERIES SAS CONTROLLER DRIVER
5551 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
5552 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
5553 L:      linux-scsi@vger.kernel.org
5554 T:      git git://git.code.sf.net/p/intel-sas/isci
5555 S:      Supported
5556 F:      drivers/scsi/isci/
5557
5558 INTEL HID EVENT DRIVER
5559 M:      Alex Hung <alex.hung@canonical.com>
5560 L:      platform-driver-x86@vger.kernel.org
5561 S:      Maintained
5562 F:      drivers/platform/x86/intel-hid.c
5563
5564 INTEL IDLE DRIVER
5565 M:      Len Brown <lenb@kernel.org>
5566 L:      linux-pm@vger.kernel.org
5567 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
5568 S:      Supported
5569 F:      drivers/idle/intel_idle.c
5570
5571 INTEL PSTATE DRIVER
5572 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
5573 M:      Len Brown <lenb@kernel.org>
5574 L:      linux-pm@vger.kernel.org
5575 S:      Supported
5576 F:      drivers/cpufreq/intel_pstate.c
5577
5578 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
5579 M:      Maik Broemme <mbroemme@plusserver.de>
5580 L:      linux-fbdev@vger.kernel.org
5581 S:      Maintained
5582 F:      Documentation/fb/intelfb.txt
5583 F:      drivers/video/fbdev/intelfb/
5584
5585 INTEL 810/815 FRAMEBUFFER DRIVER
5586 M:      Antonino Daplas <adaplas@gmail.com>
5587 L:      linux-fbdev@vger.kernel.org
5588 S:      Maintained
5589 F:      drivers/video/fbdev/i810/
5590
5591 INTEL MENLOW THERMAL DRIVER
5592 M:      Sujith Thomas <sujith.thomas@intel.com>
5593 L:      platform-driver-x86@vger.kernel.org
5594 W:      https://01.org/linux-acpi
5595 S:      Supported
5596 F:      drivers/platform/x86/intel_menlow.c
5597
5598 INTEL I/OAT DMA DRIVER
5599 M:      Dave Jiang <dave.jiang@intel.com>
5600 R:      Dan Williams <dan.j.williams@intel.com>
5601 L:      dmaengine@vger.kernel.org
5602 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5603 S:      Supported
5604 F:      drivers/dma/ioat*
5605
5606 INTEL IOMMU (VT-d)
5607 M:      David Woodhouse <dwmw2@infradead.org>
5608 L:      iommu@lists.linux-foundation.org
5609 T:      git git://git.infradead.org/iommu-2.6.git
5610 S:      Supported
5611 F:      drivers/iommu/intel-iommu.c
5612 F:      include/linux/intel-iommu.h
5613
5614 INTEL IOP-ADMA DMA DRIVER
5615 R:      Dan Williams <dan.j.williams@intel.com>
5616 S:      Odd fixes
5617 F:      drivers/dma/iop-adma.c
5618
5619 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
5620 M:      Krzysztof Halasa <khalasa@piap.pl>
5621 S:      Maintained
5622 F:      arch/arm/mach-ixp4xx/include/mach/qmgr.h
5623 F:      arch/arm/mach-ixp4xx/include/mach/npe.h
5624 F:      arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
5625 F:      arch/arm/mach-ixp4xx/ixp4xx_npe.c
5626 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
5627 F:      drivers/net/wan/ixp4xx_hss.c
5628
5629 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
5630 M:      Deepak Saxena <dsaxena@plexity.net>
5631 S:      Maintained
5632 F:      drivers/char/hw_random/ixp4xx-rng.c
5633
5634 INTEL ETHERNET DRIVERS
5635 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
5636 R:      Jesse Brandeburg <jesse.brandeburg@intel.com>
5637 R:      Shannon Nelson <shannon.nelson@intel.com>
5638 R:      Carolyn Wyborny <carolyn.wyborny@intel.com>
5639 R:      Don Skidmore <donald.c.skidmore@intel.com>
5640 R:      Bruce Allan <bruce.w.allan@intel.com>
5641 R:      John Ronciak <john.ronciak@intel.com>
5642 R:      Mitch Williams <mitch.a.williams@intel.com>
5643 L:      intel-wired-lan@lists.osuosl.org
5644 W:      http://www.intel.com/support/feedback.htm
5645 W:      http://e1000.sourceforge.net/
5646 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
5647 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
5648 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
5649 S:      Supported
5650 F:      Documentation/networking/e100.txt
5651 F:      Documentation/networking/e1000.txt
5652 F:      Documentation/networking/e1000e.txt
5653 F:      Documentation/networking/igb.txt
5654 F:      Documentation/networking/igbvf.txt
5655 F:      Documentation/networking/ixgb.txt
5656 F:      Documentation/networking/ixgbe.txt
5657 F:      Documentation/networking/ixgbevf.txt
5658 F:      Documentation/networking/i40e.txt
5659 F:      Documentation/networking/i40evf.txt
5660 F:      drivers/net/ethernet/intel/
5661 F:      drivers/net/ethernet/intel/*/
5662
5663 INTEL-MID GPIO DRIVER
5664 M:      David Cohen <david.a.cohen@linux.intel.com>
5665 L:      linux-gpio@vger.kernel.org
5666 S:      Maintained
5667 F:      drivers/gpio/gpio-intel-mid.c
5668
5669 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
5670 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
5671 L:      linux-wireless@vger.kernel.org
5672 S:      Maintained
5673 F:      Documentation/networking/README.ipw2100
5674 F:      Documentation/networking/README.ipw2200
5675 F:      drivers/net/wireless/intel/ipw2x00/
5676
5677 INTEL(R) TRACE HUB
5678 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
5679 S:      Supported
5680 F:      Documentation/trace/intel_th.txt
5681 F:      drivers/hwtracing/intel_th/
5682
5683 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
5684 M:      Ning Sun <ning.sun@intel.com>
5685 L:      tboot-devel@lists.sourceforge.net
5686 W:      http://tboot.sourceforge.net
5687 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
5688 S:      Supported
5689 F:      Documentation/intel_txt.txt
5690 F:      include/linux/tboot.h
5691 F:      arch/x86/kernel/tboot.c
5692
5693 INTEL WIRELESS WIMAX CONNECTION 2400
5694 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
5695 M:      linux-wimax@intel.com
5696 L:      wimax@linuxwimax.org (subscribers-only)
5697 S:      Supported
5698 W:      http://linuxwimax.org
5699 F:      Documentation/wimax/README.i2400m
5700 F:      drivers/net/wimax/i2400m/
5701 F:      include/uapi/linux/wimax/i2400m.h
5702
5703 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
5704 M:      Stanislaw Gruszka <sgruszka@redhat.com>
5705 L:      linux-wireless@vger.kernel.org
5706 S:      Supported
5707 F:      drivers/net/wireless/intel/iwlegacy/
5708
5709 INTEL WIRELESS WIFI LINK (iwlwifi)
5710 M:      Johannes Berg <johannes.berg@intel.com>
5711 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
5712 M:      Intel Linux Wireless <linuxwifi@intel.com>
5713 L:      linux-wireless@vger.kernel.org
5714 W:      http://intellinuxwireless.org
5715 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
5716 S:      Supported
5717 F:      drivers/net/wireless/intel/iwlwifi/
5718
5719 INTEL MANAGEMENT ENGINE (mei)
5720 M:      Tomas Winkler <tomas.winkler@intel.com>
5721 L:      linux-kernel@vger.kernel.org
5722 S:      Supported
5723 F:      include/uapi/linux/mei.h
5724 F:      include/linux/mei_cl_bus.h
5725 F:      drivers/misc/mei/*
5726 F:      Documentation/misc-devices/mei/*
5727
5728 INTEL MIC DRIVERS (mic)
5729 M:      Sudeep Dutt <sudeep.dutt@intel.com>
5730 M:      Ashutosh Dixit <ashutosh.dixit@intel.com>
5731 S:      Supported
5732 W:      https://github.com/sudeepdutt/mic
5733 W:      http://software.intel.com/en-us/mic-developer
5734 F:      include/linux/mic_bus.h
5735 F:      include/linux/scif.h
5736 F:      include/uapi/linux/mic_common.h
5737 F:      include/uapi/linux/mic_ioctl.h
5738 F       include/uapi/linux/scif_ioctl.h
5739 F:      drivers/misc/mic/
5740 F:      drivers/dma/mic_x100_dma.c
5741 F:      drivers/dma/mic_x100_dma.h
5742 F       Documentation/mic/
5743
5744 INTEL PMC/P-Unit IPC DRIVER
5745 M:      Zha Qipeng<qipeng.zha@intel.com>
5746 L:      platform-driver-x86@vger.kernel.org
5747 S:      Maintained
5748 F:      drivers/platform/x86/intel_pmc_ipc.c
5749 F:      drivers/platform/x86/intel_punit_ipc.c
5750 F:      arch/x86/include/asm/intel_pmc_ipc.h
5751 F:      arch/x86/include/asm/intel_punit_ipc.h
5752
5753 INTEL TELEMETRY DRIVER
5754 M:      Souvik Kumar Chakravarty <souvik.k.chakravarty@intel.com>
5755 L:      platform-driver-x86@vger.kernel.org
5756 S:      Maintained
5757 F:      drivers/platform/x86/intel_telemetry_core.c
5758 F:      arch/x86/include/asm/intel_telemetry.h
5759 F:      drivers/platform/x86/intel_telemetry_pltdrv.c
5760 F:      drivers/platform/x86/intel_telemetry_debugfs.c
5761
5762 IOC3 ETHERNET DRIVER
5763 M:      Ralf Baechle <ralf@linux-mips.org>
5764 L:      linux-mips@linux-mips.org
5765 S:      Maintained
5766 F:      drivers/net/ethernet/sgi/ioc3-eth.c
5767
5768 IOC3 SERIAL DRIVER
5769 M:      Pat Gefre <pfg@sgi.com>
5770 L:      linux-serial@vger.kernel.org
5771 S:      Maintained
5772 F:      drivers/tty/serial/ioc3_serial.c
5773
5774 IOMMU DRIVERS
5775 M:      Joerg Roedel <joro@8bytes.org>
5776 L:      iommu@lists.linux-foundation.org
5777 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
5778 S:      Maintained
5779 F:      drivers/iommu/
5780
5781 IP MASQUERADING
5782 M:      Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
5783 S:      Maintained
5784 F:      net/ipv4/netfilter/ipt_MASQUERADE.c
5785
5786 IPATH DRIVER
5787 M:      Mike Marciniszyn <infinipath@intel.com>
5788 L:      linux-rdma@vger.kernel.org
5789 S:      Maintained
5790 F:      drivers/staging/rdma/ipath/
5791
5792 IPMI SUBSYSTEM
5793 M:      Corey Minyard <minyard@acm.org>
5794 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
5795 W:      http://openipmi.sourceforge.net/
5796 S:      Supported
5797 F:      Documentation/IPMI.txt
5798 F:      drivers/char/ipmi/
5799 F:      include/linux/ipmi*
5800 F:      include/uapi/linux/ipmi*
5801
5802 QCOM AUDIO (ASoC) DRIVERS
5803 M:      Patrick Lai <plai@codeaurora.org>
5804 M:      Banajit Goswami <bgoswami@codeaurora.org>
5805 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5806 S:      Supported
5807 F:      sound/soc/qcom/
5808
5809 IPS SCSI RAID DRIVER
5810 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
5811 L:      linux-scsi@vger.kernel.org
5812 W:      http://www.adaptec.com/
5813 S:      Maintained
5814 F:      drivers/scsi/ips*
5815
5816 IPVS
5817 M:      Wensong Zhang <wensong@linux-vs.org>
5818 M:      Simon Horman <horms@verge.net.au>
5819 M:      Julian Anastasov <ja@ssi.bg>
5820 L:      netdev@vger.kernel.org
5821 L:      lvs-devel@vger.kernel.org
5822 S:      Maintained
5823 F:      Documentation/networking/ipvs-sysctl.txt
5824 F:      include/net/ip_vs.h
5825 F:      include/uapi/linux/ip_vs.h
5826 F:      net/netfilter/ipvs/
5827
5828 IPWIRELESS DRIVER
5829 M:      Jiri Kosina <jikos@kernel.org>
5830 M:      David Sterba <dsterba@suse.com>
5831 S:      Odd Fixes
5832 F:      drivers/tty/ipwireless/
5833
5834 IPX NETWORK LAYER
5835 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
5836 L:      netdev@vger.kernel.org
5837 S:      Maintained
5838 F:      include/net/ipx.h
5839 F:      include/uapi/linux/ipx.h
5840 F:      net/ipx/
5841
5842 IRDA SUBSYSTEM
5843 M:      Samuel Ortiz <samuel@sortiz.org>
5844 L:      irda-users@lists.sourceforge.net (subscribers-only)
5845 L:      netdev@vger.kernel.org
5846 W:      http://irda.sourceforge.net/
5847 S:      Maintained
5848 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
5849 F:      Documentation/networking/irda.txt
5850 F:      drivers/net/irda/
5851 F:      include/net/irda/
5852 F:      net/irda/
5853
5854 IRQ SUBSYSTEM
5855 M:      Thomas Gleixner <tglx@linutronix.de>
5856 L:      linux-kernel@vger.kernel.org
5857 S:      Maintained
5858 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5859 F:      kernel/irq/
5860
5861 IRQCHIP DRIVERS
5862 M:      Thomas Gleixner <tglx@linutronix.de>
5863 M:      Jason Cooper <jason@lakedaemon.net>
5864 M:      Marc Zyngier <marc.zyngier@arm.com>
5865 L:      linux-kernel@vger.kernel.org
5866 S:      Maintained
5867 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5868 T:      git git://git.infradead.org/users/jcooper/linux.git irqchip/core
5869 F:      Documentation/devicetree/bindings/interrupt-controller/
5870 F:      drivers/irqchip/
5871
5872 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
5873 M:      Jiang Liu <jiang.liu@linux.intel.com>
5874 M:      Marc Zyngier <marc.zyngier@arm.com>
5875 S:      Maintained
5876 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5877 F:      Documentation/IRQ-domain.txt
5878 F:      include/linux/irqdomain.h
5879 F:      kernel/irq/irqdomain.c
5880 F:      kernel/irq/msi.c
5881
5882 ISAPNP
5883 M:      Jaroslav Kysela <perex@perex.cz>
5884 S:      Maintained
5885 F:      Documentation/isapnp.txt
5886 F:      drivers/pnp/isapnp/
5887 F:      include/linux/isapnp.h
5888
5889 ISA RADIO MODULE
5890 M:      Hans Verkuil <hverkuil@xs4all.nl>
5891 L:      linux-media@vger.kernel.org
5892 T:      git git://linuxtv.org/media_tree.git
5893 W:      https://linuxtv.org
5894 S:      Maintained
5895 F:      drivers/media/radio/radio-isa*
5896
5897 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
5898 M:      Peter Jones <pjones@redhat.com>
5899 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
5900 S:      Maintained
5901 F:      drivers/firmware/iscsi_ibft*
5902
5903 ISCSI
5904 M:      Mike Christie <michaelc@cs.wisc.edu>
5905 L:      open-iscsi@googlegroups.com
5906 W:      www.open-iscsi.org
5907 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
5908 S:      Maintained
5909 F:      drivers/scsi/*iscsi*
5910 F:      include/scsi/*iscsi*
5911
5912 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
5913 M:      Or Gerlitz <ogerlitz@mellanox.com>
5914 M:      Sagi Grimberg <sagig@mellanox.com>
5915 M:      Roi Dayan <roid@mellanox.com>
5916 L:      linux-rdma@vger.kernel.org
5917 S:      Supported
5918 W:      http://www.openfabrics.org
5919 W:      www.open-iscsi.org
5920 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5921 F:      drivers/infiniband/ulp/iser/
5922
5923 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
5924 M:      Sagi Grimberg <sagig@mellanox.com>
5925 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
5926 L:      linux-rdma@vger.kernel.org
5927 L:      target-devel@vger.kernel.org
5928 S:      Supported
5929 W:      http://www.linux-iscsi.org
5930 F:      drivers/infiniband/ulp/isert
5931
5932 ISDN SUBSYSTEM
5933 M:      Karsten Keil <isdn@linux-pingi.de>
5934 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5935 L:      netdev@vger.kernel.org
5936 W:      http://www.isdn4linux.de
5937 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
5938 S:      Maintained
5939 F:      Documentation/isdn/
5940 F:      drivers/isdn/
5941 F:      include/linux/isdn.h
5942 F:      include/linux/isdn/
5943 F:      include/uapi/linux/isdn.h
5944 F:      include/uapi/linux/isdn/
5945
5946 ISDN SUBSYSTEM (Eicon active card driver)
5947 M:      Armin Schindler <mac@melware.de>
5948 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5949 W:      http://www.melware.de
5950 S:      Maintained
5951 F:      drivers/isdn/hardware/eicon/
5952
5953 IT87 HARDWARE MONITORING DRIVER
5954 M:      Jean Delvare <jdelvare@suse.com>
5955 L:      lm-sensors@lm-sensors.org
5956 S:      Maintained
5957 F:      Documentation/hwmon/it87
5958 F:      drivers/hwmon/it87.c
5959
5960 IT913X MEDIA DRIVER
5961 M:      Antti Palosaari <crope@iki.fi>
5962 L:      linux-media@vger.kernel.org
5963 W:      https://linuxtv.org
5964 W:      http://palosaari.fi/linux/
5965 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5966 T:      git git://linuxtv.org/anttip/media_tree.git
5967 S:      Maintained
5968 F:      drivers/media/tuners/it913x*
5969
5970 IVTV VIDEO4LINUX DRIVER
5971 M:      Andy Walls <awalls@md.metrocast.net>
5972 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
5973 L:      linux-media@vger.kernel.org
5974 T:      git git://linuxtv.org/media_tree.git
5975 W:      http://www.ivtvdriver.org
5976 S:      Maintained
5977 F:      Documentation/video4linux/*.ivtv
5978 F:      drivers/media/pci/ivtv/
5979 F:      include/uapi/linux/ivtv*
5980
5981 IX2505V MEDIA DRIVER
5982 M:      Malcolm Priestley <tvboxspy@gmail.com>
5983 L:      linux-media@vger.kernel.org
5984 W:      https://linuxtv.org
5985 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5986 S:      Maintained
5987 F:      drivers/media/dvb-frontends/ix2505v*
5988
5989 JC42.4 TEMPERATURE SENSOR DRIVER
5990 M:      Guenter Roeck <linux@roeck-us.net>
5991 L:      lm-sensors@lm-sensors.org
5992 S:      Maintained
5993 F:      drivers/hwmon/jc42.c
5994 F:      Documentation/hwmon/jc42
5995
5996 JFS FILESYSTEM
5997 M:      Dave Kleikamp <shaggy@kernel.org>
5998 L:      jfs-discussion@lists.sourceforge.net
5999 W:      http://jfs.sourceforge.net/
6000 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
6001 S:      Maintained
6002 F:      Documentation/filesystems/jfs.txt
6003 F:      fs/jfs/
6004
6005 JME NETWORK DRIVER
6006 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
6007 L:      netdev@vger.kernel.org
6008 S:      Maintained
6009 F:      drivers/net/ethernet/jme.*
6010
6011 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
6012 M:      David Woodhouse <dwmw2@infradead.org>
6013 L:      linux-mtd@lists.infradead.org
6014 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
6015 S:      Maintained
6016 F:      fs/jffs2/
6017 F:      include/uapi/linux/jffs2.h
6018
6019 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
6020 M:      "Theodore Ts'o" <tytso@mit.edu>
6021 M:      Jan Kara <jack@suse.com>
6022 L:      linux-ext4@vger.kernel.org
6023 S:      Maintained
6024 F:      fs/jbd2/
6025 F:      include/linux/jbd2.h
6026
6027 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
6028 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
6029 L:      linux-media@vger.kernel.org
6030 S:      Maintained
6031 F:      drivers/media/platform/rcar_jpu.c
6032
6033 JSM Neo PCI based serial card
6034 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
6035 L:      linux-serial@vger.kernel.org
6036 S:      Maintained
6037 F:      drivers/tty/serial/jsm/
6038
6039 K10TEMP HARDWARE MONITORING DRIVER
6040 M:      Clemens Ladisch <clemens@ladisch.de>
6041 L:      lm-sensors@lm-sensors.org
6042 S:      Maintained
6043 F:      Documentation/hwmon/k10temp
6044 F:      drivers/hwmon/k10temp.c
6045
6046 K8TEMP HARDWARE MONITORING DRIVER
6047 M:      Rudolf Marek <r.marek@assembler.cz>
6048 L:      lm-sensors@lm-sensors.org
6049 S:      Maintained
6050 F:      Documentation/hwmon/k8temp
6051 F:      drivers/hwmon/k8temp.c
6052
6053 KCONFIG
6054 M:      "Yann E. MORIN" <yann.morin.1998@free.fr>
6055 L:      linux-kbuild@vger.kernel.org
6056 T:      git git://gitorious.org/linux-kconfig/linux-kconfig
6057 S:      Maintained
6058 F:      Documentation/kbuild/kconfig-language.txt
6059 F:      scripts/kconfig/
6060
6061 KDUMP
6062 M:      Vivek Goyal <vgoyal@redhat.com>
6063 M:      Haren Myneni <hbabu@us.ibm.com>
6064 L:      kexec@lists.infradead.org
6065 W:      http://lse.sourceforge.net/kdump/
6066 S:      Maintained
6067 F:      Documentation/kdump/
6068
6069 KEENE FM RADIO TRANSMITTER DRIVER
6070 M:      Hans Verkuil <hverkuil@xs4all.nl>
6071 L:      linux-media@vger.kernel.org
6072 T:      git git://linuxtv.org/media_tree.git
6073 W:      https://linuxtv.org
6074 S:      Maintained
6075 F:      drivers/media/radio/radio-keene*
6076
6077 KERNEL AUTOMOUNTER v4 (AUTOFS4)
6078 M:      Ian Kent <raven@themaw.net>
6079 L:      autofs@vger.kernel.org
6080 S:      Maintained
6081 F:      fs/autofs4/
6082
6083 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
6084 M:      Michal Marek <mmarek@suse.com>
6085 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
6086 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
6087 L:      linux-kbuild@vger.kernel.org
6088 S:      Maintained
6089 F:      Documentation/kbuild/
6090 F:      Makefile
6091 F:      scripts/Makefile.*
6092 F:      scripts/basic/
6093 F:      scripts/mk*
6094 F:      scripts/package/
6095
6096 KERNEL JANITORS
6097 L:      kernel-janitors@vger.kernel.org
6098 W:      http://kernelnewbies.org/KernelJanitors
6099 S:      Odd Fixes
6100
6101 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
6102 M:      "J. Bruce Fields" <bfields@fieldses.org>
6103 M:      Jeff Layton <jlayton@poochiereds.net>
6104 L:      linux-nfs@vger.kernel.org
6105 W:      http://nfs.sourceforge.net/
6106 S:      Supported
6107 F:      fs/nfsd/
6108 F:      include/uapi/linux/nfsd/
6109 F:      fs/lockd/
6110 F:      fs/nfs_common/
6111 F:      net/sunrpc/
6112 F:      include/linux/lockd/
6113 F:      include/linux/sunrpc/
6114 F:      include/uapi/linux/sunrpc/
6115
6116 KERNEL SELFTEST FRAMEWORK
6117 M:      Shuah Khan <shuahkh@osg.samsung.com>
6118 L:      linux-api@vger.kernel.org
6119 T:      git git://git.kernel.org/pub/scm/shuah/linux-kselftest
6120 S:      Maintained
6121 F:      tools/testing/selftests
6122
6123 KERNEL VIRTUAL MACHINE (KVM)
6124 M:      Gleb Natapov <gleb@kernel.org>
6125 M:      Paolo Bonzini <pbonzini@redhat.com>
6126 L:      kvm@vger.kernel.org
6127 W:      http://www.linux-kvm.org
6128 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
6129 S:      Supported
6130 F:      Documentation/*/kvm*.txt
6131 F:      Documentation/virtual/kvm/
6132 F:      arch/*/kvm/
6133 F:      arch/x86/kernel/kvm.c
6134 F:      arch/x86/kernel/kvmclock.c
6135 F:      arch/*/include/asm/kvm*
6136 F:      include/linux/kvm*
6137 F:      include/uapi/linux/kvm*
6138 F:      virt/kvm/
6139
6140 KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
6141 M:      Joerg Roedel <joro@8bytes.org>
6142 L:      kvm@vger.kernel.org
6143 W:      http://www.linux-kvm.org/
6144 S:      Maintained
6145 F:      arch/x86/include/asm/svm.h
6146 F:      arch/x86/kvm/svm.c
6147
6148 KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
6149 M:      Alexander Graf <agraf@suse.com>
6150 L:      kvm-ppc@vger.kernel.org
6151 W:      http://www.linux-kvm.org/
6152 T:      git git://github.com/agraf/linux-2.6.git
6153 S:      Supported
6154 F:      arch/powerpc/include/asm/kvm*
6155 F:      arch/powerpc/kvm/
6156
6157 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
6158 M:      Christian Borntraeger <borntraeger@de.ibm.com>
6159 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
6160 L:      linux-s390@vger.kernel.org
6161 W:      http://www.ibm.com/developerworks/linux/linux390/
6162 S:      Supported
6163 F:      Documentation/s390/kvm.txt
6164 F:      arch/s390/include/asm/kvm*
6165 F:      arch/s390/kvm/
6166
6167 KERNEL VIRTUAL MACHINE (KVM) FOR ARM
6168 M:      Christoffer Dall <christoffer.dall@linaro.org>
6169 M:      Marc Zyngier <marc.zyngier@arm.com>
6170 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6171 L:      kvmarm@lists.cs.columbia.edu
6172 W:      http://systems.cs.columbia.edu/projects/kvm-arm
6173 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
6174 S:      Supported
6175 F:      arch/arm/include/uapi/asm/kvm*
6176 F:      arch/arm/include/asm/kvm*
6177 F:      arch/arm/kvm/
6178 F:      virt/kvm/arm/
6179 F:      include/kvm/arm_*
6180
6181 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
6182 M:      Christoffer Dall <christoffer.dall@linaro.org>
6183 M:      Marc Zyngier <marc.zyngier@arm.com>
6184 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6185 L:      kvmarm@lists.cs.columbia.edu
6186 S:      Maintained
6187 F:      arch/arm64/include/uapi/asm/kvm*
6188 F:      arch/arm64/include/asm/kvm*
6189 F:      arch/arm64/kvm/
6190
6191 KEXEC
6192 M:      Eric Biederman <ebiederm@xmission.com>
6193 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
6194 L:      kexec@lists.infradead.org
6195 S:      Maintained
6196 F:      include/linux/kexec.h
6197 F:      include/uapi/linux/kexec.h
6198 F:      kernel/kexec.c
6199
6200 KEYS/KEYRINGS:
6201 M:      David Howells <dhowells@redhat.com>
6202 L:      keyrings@vger.kernel.org
6203 S:      Maintained
6204 F:      Documentation/security/keys.txt
6205 F:      include/linux/key.h
6206 F:      include/linux/key-type.h
6207 F:      include/keys/
6208 F:      security/keys/
6209
6210 KEYS-TRUSTED
6211 M:      David Safford <safford@us.ibm.com>
6212 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6213 L:      linux-security-module@vger.kernel.org
6214 L:      keyrings@vger.kernel.org
6215 S:      Supported
6216 F:      Documentation/security/keys-trusted-encrypted.txt
6217 F:      include/keys/trusted-type.h
6218 F:      security/keys/trusted.c
6219 F:      security/keys/trusted.h
6220
6221 KEYS-ENCRYPTED
6222 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6223 M:      David Safford <safford@us.ibm.com>
6224 L:      linux-security-module@vger.kernel.org
6225 L:      keyrings@vger.kernel.org
6226 S:      Supported
6227 F:      Documentation/security/keys-trusted-encrypted.txt
6228 F:      include/keys/encrypted-type.h
6229 F:      security/keys/encrypted-keys/
6230
6231 KGDB / KDB /debug_core
6232 M:      Jason Wessel <jason.wessel@windriver.com>
6233 W:      http://kgdb.wiki.kernel.org/
6234 L:      kgdb-bugreport@lists.sourceforge.net
6235 S:      Maintained
6236 F:      Documentation/DocBook/kgdb.tmpl
6237 F:      drivers/misc/kgdbts.c
6238 F:      drivers/tty/serial/kgdboc.c
6239 F:      include/linux/kdb.h
6240 F:      include/linux/kgdb.h
6241 F:      kernel/debug/
6242
6243 KMEMCHECK
6244 M:      Vegard Nossum <vegardno@ifi.uio.no>
6245 M:      Pekka Enberg <penberg@kernel.org>
6246 S:      Maintained
6247 F:      Documentation/kmemcheck.txt
6248 F:      arch/x86/include/asm/kmemcheck.h
6249 F:      arch/x86/mm/kmemcheck/
6250 F:      include/linux/kmemcheck.h
6251 F:      mm/kmemcheck.c
6252
6253 KMEMLEAK
6254 M:      Catalin Marinas <catalin.marinas@arm.com>
6255 S:      Maintained
6256 F:      Documentation/kmemleak.txt
6257 F:      include/linux/kmemleak.h
6258 F:      mm/kmemleak.c
6259 F:      mm/kmemleak-test.c
6260
6261 KPROBES
6262 M:      Ananth N Mavinakayanahalli <ananth@in.ibm.com>
6263 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
6264 M:      "David S. Miller" <davem@davemloft.net>
6265 M:      Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
6266 S:      Maintained
6267 F:      Documentation/kprobes.txt
6268 F:      include/linux/kprobes.h
6269 F:      kernel/kprobes.c
6270
6271 KS0108 LCD CONTROLLER DRIVER
6272 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
6273 W:      http://miguelojeda.es/auxdisplay.htm
6274 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
6275 S:      Maintained
6276 F:      Documentation/auxdisplay/ks0108
6277 F:      drivers/auxdisplay/ks0108.c
6278 F:      include/linux/ks0108.h
6279
6280 L3MDEV
6281 M:      David Ahern <dsa@cumulusnetworks.com>
6282 L:      netdev@vger.kernel.org
6283 S:      Maintained
6284 F:      net/l3mdev
6285 F:      include/net/l3mdev.h
6286
6287 LAPB module
6288 L:      linux-x25@vger.kernel.org
6289 S:      Orphan
6290 F:      Documentation/networking/lapb-module.txt
6291 F:      include/*/lapb.h
6292 F:      net/lapb/
6293
6294 LASI 53c700 driver for PARISC
6295 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
6296 L:      linux-scsi@vger.kernel.org
6297 S:      Maintained
6298 F:      Documentation/scsi/53c700.txt
6299 F:      drivers/scsi/53c700*
6300
6301 LED SUBSYSTEM
6302 M:      Richard Purdie <rpurdie@rpsys.net>
6303 M:      Jacek Anaszewski <j.anaszewski@samsung.com>
6304 L:      linux-leds@vger.kernel.org
6305 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
6306 S:      Maintained
6307 F:      drivers/leds/
6308 F:      include/linux/leds.h
6309
6310 LEGACY EEPROM DRIVER
6311 M:      Jean Delvare <jdelvare@suse.com>
6312 S:      Maintained
6313 F:      Documentation/misc-devices/eeprom
6314 F:      drivers/misc/eeprom/eeprom.c
6315
6316 LEGO USB Tower driver
6317 M:      Juergen Stuber <starblue@users.sourceforge.net>
6318 L:      legousb-devel@lists.sourceforge.net
6319 W:      http://legousb.sourceforge.net/
6320 S:      Maintained
6321 F:      drivers/usb/misc/legousbtower.c
6322
6323 LG2160 MEDIA DRIVER
6324 M:      Michael Krufky <mkrufky@linuxtv.org>
6325 L:      linux-media@vger.kernel.org
6326 W:      https://linuxtv.org
6327 W:      http://github.com/mkrufky
6328 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6329 T:      git git://linuxtv.org/mkrufky/tuners.git
6330 S:      Maintained
6331 F:      drivers/media/dvb-frontends/lg2160.*
6332
6333 LGDT3305 MEDIA DRIVER
6334 M:      Michael Krufky <mkrufky@linuxtv.org>
6335 L:      linux-media@vger.kernel.org
6336 W:      https://linuxtv.org
6337 W:      http://github.com/mkrufky
6338 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6339 T:      git git://linuxtv.org/mkrufky/tuners.git
6340 S:      Maintained
6341 F:      drivers/media/dvb-frontends/lgdt3305.*
6342
6343 LGUEST
6344 M:      Rusty Russell <rusty@rustcorp.com.au>
6345 L:      lguest@lists.ozlabs.org
6346 W:      http://lguest.ozlabs.org/
6347 S:      Odd Fixes
6348 F:      arch/x86/include/asm/lguest*.h
6349 F:      arch/x86/lguest/
6350 F:      drivers/lguest/
6351 F:      include/linux/lguest*.h
6352 F:      tools/lguest/
6353
6354 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
6355 M:      Tejun Heo <tj@kernel.org>
6356 L:      linux-ide@vger.kernel.org
6357 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6358 S:      Maintained
6359 F:      drivers/ata/
6360 F:      include/linux/ata.h
6361 F:      include/linux/libata.h
6362
6363 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
6364 M:      Viresh Kumar <vireshk@kernel.org>
6365 L:      linux-ide@vger.kernel.org
6366 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6367 S:      Maintained
6368 F:      include/linux/pata_arasan_cf_data.h
6369 F:      drivers/ata/pata_arasan_cf.c
6370
6371 LIBATA PATA DRIVERS
6372 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6373 M:      Tejun Heo <tj@kernel.org>
6374 L:      linux-ide@vger.kernel.org
6375 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6376 S:      Maintained
6377 F:      drivers/ata/pata_*.c
6378 F:      drivers/ata/ata_generic.c
6379
6380 LIBATA SATA AHCI PLATFORM devices support
6381 M:      Hans de Goede <hdegoede@redhat.com>
6382 M:      Tejun Heo <tj@kernel.org>
6383 L:      linux-ide@vger.kernel.org
6384 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6385 S:      Maintained
6386 F:      drivers/ata/ahci_platform.c
6387 F:      drivers/ata/libahci_platform.c
6388 F:      include/linux/ahci_platform.h
6389
6390 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
6391 M:      Mikael Pettersson <mikpelinux@gmail.com>
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/sata_promise.*
6396
6397 LIBLOCKDEP
6398 M:      Sasha Levin <sasha.levin@oracle.com>
6399 S:      Maintained
6400 F:      tools/lib/lockdep/
6401
6402 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
6403 M:      Dan Williams <dan.j.williams@intel.com>
6404 L:      linux-nvdimm@lists.01.org
6405 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6406 S:      Supported
6407 F:      drivers/nvdimm/*
6408 F:      include/linux/nd.h
6409 F:      include/linux/libnvdimm.h
6410 F:      include/uapi/linux/ndctl.h
6411
6412 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
6413 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6414 L:      linux-nvdimm@lists.01.org
6415 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6416 S:      Supported
6417 F:      drivers/nvdimm/blk.c
6418 F:      drivers/nvdimm/region_devs.c
6419 F:      drivers/acpi/nfit*
6420
6421 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
6422 M:      Vishal Verma <vishal.l.verma@intel.com>
6423 L:      linux-nvdimm@lists.01.org
6424 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6425 S:      Supported
6426 F:      drivers/nvdimm/btt*
6427
6428 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
6429 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6430 L:      linux-nvdimm@lists.01.org
6431 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6432 S:      Supported
6433 F:      drivers/nvdimm/pmem.c
6434 F:      include/linux/pmem.h
6435 F:      arch/*/include/asm/pmem.h
6436
6437 LIGHTNVM PLATFORM SUPPORT
6438 M:      Matias Bjorling <mb@lightnvm.io>
6439 W:      http://github/OpenChannelSSD
6440 L:      linux-block@vger.kernel.org
6441 S:      Maintained
6442 F:      drivers/lightnvm/
6443 F:      include/linux/lightnvm.h
6444 F:      include/uapi/linux/lightnvm.h
6445
6446 LINUX FOR IBM pSERIES (RS/6000)
6447 M:      Paul Mackerras <paulus@au.ibm.com>
6448 W:      http://www.ibm.com/linux/ltc/projects/ppc
6449 S:      Supported
6450 F:      arch/powerpc/boot/rs6000.h
6451
6452 LINUX FOR POWERPC (32-BIT AND 64-BIT)
6453 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6454 M:      Paul Mackerras <paulus@samba.org>
6455 M:      Michael Ellerman <mpe@ellerman.id.au>
6456 W:      http://www.penguinppc.org/
6457 L:      linuxppc-dev@lists.ozlabs.org
6458 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
6459 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
6460 S:      Supported
6461 F:      Documentation/powerpc/
6462 F:      arch/powerpc/
6463
6464 LINUX FOR POWER MACINTOSH
6465 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6466 W:      http://www.penguinppc.org/
6467 L:      linuxppc-dev@lists.ozlabs.org
6468 S:      Maintained
6469 F:      arch/powerpc/platforms/powermac/
6470 F:      drivers/macintosh/
6471
6472 LINUX FOR POWERPC EMBEDDED MPC5XXX
6473 M:      Anatolij Gustschin <agust@denx.de>
6474 L:      linuxppc-dev@lists.ozlabs.org
6475 T:      git git://git.denx.de/linux-denx-agust.git
6476 S:      Maintained
6477 F:      arch/powerpc/platforms/512x/
6478 F:      arch/powerpc/platforms/52xx/
6479
6480 LINUX FOR POWERPC EMBEDDED PPC4XX
6481 M:      Alistair Popple <alistair@popple.id.au>
6482 M:      Matt Porter <mporter@kernel.crashing.org>
6483 W:      http://www.penguinppc.org/
6484 L:      linuxppc-dev@lists.ozlabs.org
6485 S:      Maintained
6486 F:      arch/powerpc/platforms/40x/
6487 F:      arch/powerpc/platforms/44x/
6488
6489 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
6490 L:      linuxppc-dev@lists.ozlabs.org
6491 S:      Orphan
6492 F:      arch/powerpc/*/*virtex*
6493 F:      arch/powerpc/*/*/*virtex*
6494
6495 LINUX FOR POWERPC EMBEDDED PPC8XX
6496 M:      Vitaly Bordug <vitb@kernel.crashing.org>
6497 W:      http://www.penguinppc.org/
6498 L:      linuxppc-dev@lists.ozlabs.org
6499 S:      Maintained
6500 F:      arch/powerpc/platforms/8xx/
6501
6502 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
6503 M:      Scott Wood <oss@buserror.net>
6504 M:      Kumar Gala <galak@kernel.crashing.org>
6505 W:      http://www.penguinppc.org/
6506 L:      linuxppc-dev@lists.ozlabs.org
6507 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
6508 S:      Maintained
6509 F:      arch/powerpc/platforms/83xx/
6510 F:      arch/powerpc/platforms/85xx/
6511
6512 LINUX FOR POWERPC PA SEMI PWRFICIENT
6513 M:      Olof Johansson <olof@lixom.net>
6514 L:      linuxppc-dev@lists.ozlabs.org
6515 S:      Maintained
6516 F:      arch/powerpc/platforms/pasemi/
6517 F:      drivers/*/*pasemi*
6518 F:      drivers/*/*/*pasemi*
6519
6520 LINUX SECURITY MODULE (LSM) FRAMEWORK
6521 M:      Chris Wright <chrisw@sous-sol.org>
6522 L:      linux-security-module@vger.kernel.org
6523 S:      Supported
6524
6525 LIS3LV02D ACCELEROMETER DRIVER
6526 M:      Eric Piel <eric.piel@tremplin-utc.net>
6527 S:      Maintained
6528 F:      Documentation/misc-devices/lis3lv02d
6529 F:      drivers/misc/lis3lv02d/
6530 F:      drivers/platform/x86/hp_accel.c
6531
6532 LIVE PATCHING
6533 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6534 M:      Seth Jennings <sjenning@redhat.com>
6535 M:      Jiri Kosina <jikos@kernel.org>
6536 M:      Vojtech Pavlik <vojtech@suse.com>
6537 S:      Maintained
6538 F:      kernel/livepatch/
6539 F:      include/linux/livepatch.h
6540 F:      arch/x86/include/asm/livepatch.h
6541 F:      arch/x86/kernel/livepatch.c
6542 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
6543 F:      samples/livepatch/
6544 L:      live-patching@vger.kernel.org
6545 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
6546
6547 LLC (802.2)
6548 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
6549 S:      Maintained
6550 F:      include/linux/llc.h
6551 F:      include/uapi/linux/llc.h
6552 F:      include/net/llc*
6553 F:      net/llc/
6554
6555 LM73 HARDWARE MONITOR DRIVER
6556 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
6557 L:      lm-sensors@lm-sensors.org
6558 S:      Maintained
6559 F:      drivers/hwmon/lm73.c
6560
6561 LM78 HARDWARE MONITOR DRIVER
6562 M:      Jean Delvare <jdelvare@suse.com>
6563 L:      lm-sensors@lm-sensors.org
6564 S:      Maintained
6565 F:      Documentation/hwmon/lm78
6566 F:      drivers/hwmon/lm78.c
6567
6568 LM83 HARDWARE MONITOR DRIVER
6569 M:      Jean Delvare <jdelvare@suse.com>
6570 L:      lm-sensors@lm-sensors.org
6571 S:      Maintained
6572 F:      Documentation/hwmon/lm83
6573 F:      drivers/hwmon/lm83.c
6574
6575 LM90 HARDWARE MONITOR DRIVER
6576 M:      Jean Delvare <jdelvare@suse.com>
6577 L:      lm-sensors@lm-sensors.org
6578 S:      Maintained
6579 F:      Documentation/hwmon/lm90
6580 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
6581 F:      drivers/hwmon/lm90.c
6582
6583 LM95234 HARDWARE MONITOR DRIVER
6584 M:      Guenter Roeck <linux@roeck-us.net>
6585 L:      lm-sensors@lm-sensors.org
6586 S:      Maintained
6587 F:      Documentation/hwmon/lm95234
6588 F:      drivers/hwmon/lm95234.c
6589
6590 LME2510 MEDIA DRIVER
6591 M:      Malcolm Priestley <tvboxspy@gmail.com>
6592 L:      linux-media@vger.kernel.org
6593 W:      https://linuxtv.org
6594 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6595 S:      Maintained
6596 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
6597
6598 LOCKDEP AND LOCKSTAT
6599 M:      Peter Zijlstra <peterz@infradead.org>
6600 M:      Ingo Molnar <mingo@redhat.com>
6601 L:      linux-kernel@vger.kernel.org
6602 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
6603 S:      Maintained
6604 F:      Documentation/locking/lockdep*.txt
6605 F:      Documentation/locking/lockstat.txt
6606 F:      include/linux/lockdep.h
6607 F:      kernel/locking/
6608
6609 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
6610 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
6611 L:      linux-ntfs-dev@lists.sourceforge.net
6612 W:      http://www.linux-ntfs.org/content/view/19/37/
6613 S:      Maintained
6614 F:      Documentation/ldm.txt
6615 F:      block/partitions/ldm.*
6616
6617 LogFS
6618 M:      Joern Engel <joern@logfs.org>
6619 M:      Prasad Joshi <prasadjoshi.linux@gmail.com>
6620 L:      logfs@logfs.org
6621 W:      logfs.org
6622 S:      Maintained
6623 F:      fs/logfs/
6624
6625 LPC32XX MACHINE SUPPORT
6626 M:      Roland Stigge <stigge@antcom.de>
6627 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6628 S:      Maintained
6629 F:      arch/arm/mach-lpc32xx/
6630
6631 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
6632 M:      Nagalakshmi Nandigama <nagalakshmi.nandigama@avagotech.com>
6633 M:      Praveen Krishnamoorthy <praveen.krishnamoorthy@avagotech.com>
6634 M:      Sreekanth Reddy <sreekanth.reddy@avagotech.com>
6635 M:      Abhijit Mahajan <abhijit.mahajan@avagotech.com>
6636 L:      MPT-FusionLinux.pdl@avagotech.com
6637 L:      linux-scsi@vger.kernel.org
6638 W:      http://www.lsilogic.com/support
6639 S:      Supported
6640 F:      drivers/message/fusion/
6641 F:      drivers/scsi/mpt2sas/
6642 F:      drivers/scsi/mpt3sas/
6643
6644 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
6645 M:      Matthew Wilcox <matthew@wil.cx>
6646 L:      linux-scsi@vger.kernel.org
6647 S:      Maintained
6648 F:      drivers/scsi/sym53c8xx_2/
6649
6650 LTC4261 HARDWARE MONITOR DRIVER
6651 M:      Guenter Roeck <linux@roeck-us.net>
6652 L:      lm-sensors@lm-sensors.org
6653 S:      Maintained
6654 F:      Documentation/hwmon/ltc4261
6655 F:      drivers/hwmon/ltc4261.c
6656
6657 LTP (Linux Test Project)
6658 M:      Mike Frysinger <vapier@gentoo.org>
6659 M:      Cyril Hrubis <chrubis@suse.cz>
6660 M:      Wanlong Gao <wanlong.gao@gmail.com>
6661 M:      Jan Stancek <jstancek@redhat.com>
6662 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
6663 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
6664 L:      ltp@lists.linux.it (subscribers-only)
6665 W:      http://linux-test-project.github.io/
6666 T:      git git://github.com/linux-test-project/ltp.git
6667 S:      Maintained
6668
6669 M32R ARCHITECTURE
6670 W:      http://www.linux-m32r.org/
6671 S:      Orphan
6672 F:      arch/m32r/
6673
6674 M68K ARCHITECTURE
6675 M:      Geert Uytterhoeven <geert@linux-m68k.org>
6676 L:      linux-m68k@lists.linux-m68k.org
6677 W:      http://www.linux-m68k.org/
6678 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
6679 S:      Maintained
6680 F:      arch/m68k/
6681 F:      drivers/zorro/
6682
6683 M68K ON APPLE MACINTOSH
6684 M:      Joshua Thompson <funaho@jurai.org>
6685 W:      http://www.mac.linux-m68k.org/
6686 L:      linux-m68k@lists.linux-m68k.org
6687 S:      Maintained
6688 F:      arch/m68k/mac/
6689
6690 M68K ON HP9000/300
6691 M:      Philip Blundell <philb@gnu.org>
6692 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
6693 S:      Maintained
6694 F:      arch/m68k/hp300/
6695
6696 M88DS3103 MEDIA DRIVER
6697 M:      Antti Palosaari <crope@iki.fi>
6698 L:      linux-media@vger.kernel.org
6699 W:      https://linuxtv.org
6700 W:      http://palosaari.fi/linux/
6701 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6702 T:      git git://linuxtv.org/anttip/media_tree.git
6703 S:      Maintained
6704 F:      drivers/media/dvb-frontends/m88ds3103*
6705
6706 M88RS2000 MEDIA DRIVER
6707 M:      Malcolm Priestley <tvboxspy@gmail.com>
6708 L:      linux-media@vger.kernel.org
6709 W:      https://linuxtv.org
6710 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6711 S:      Maintained
6712 F:      drivers/media/dvb-frontends/m88rs2000*
6713
6714 MA901 MASTERKIT USB FM RADIO DRIVER
6715 M:      Alexey Klimov <klimov.linux@gmail.com>
6716 L:      linux-media@vger.kernel.org
6717 T:      git git://linuxtv.org/media_tree.git
6718 S:      Maintained
6719 F:      drivers/media/radio/radio-ma901.c
6720
6721 MAC80211
6722 M:      Johannes Berg <johannes@sipsolutions.net>
6723 L:      linux-wireless@vger.kernel.org
6724 W:      http://wireless.kernel.org/
6725 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6726 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
6727 S:      Maintained
6728 F:      Documentation/networking/mac80211-injection.txt
6729 F:      include/net/mac80211.h
6730 F:      net/mac80211/
6731
6732 MACVLAN DRIVER
6733 M:      Patrick McHardy <kaber@trash.net>
6734 L:      netdev@vger.kernel.org
6735 S:      Maintained
6736 F:      drivers/net/macvlan.c
6737 F:      include/linux/if_macvlan.h
6738
6739 MAILBOX API
6740 M:      Jassi Brar <jassisinghbrar@gmail.com>
6741 L:      linux-kernel@vger.kernel.org
6742 S:      Maintained
6743 F:      drivers/mailbox/
6744 F:      include/linux/mailbox_client.h
6745 F:      include/linux/mailbox_controller.h
6746
6747 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
6748 M:      Michael Kerrisk <mtk.manpages@gmail.com>
6749 W:      http://www.kernel.org/doc/man-pages
6750 L:      linux-man@vger.kernel.org
6751 S:      Maintained
6752
6753 MARVELL ARMADA DRM SUPPORT
6754 M:      Russell King <rmk+kernel@arm.linux.org.uk>
6755 S:      Maintained
6756 F:      drivers/gpu/drm/armada/
6757
6758 MARVELL 88E6352 DSA support
6759 M:      Guenter Roeck <linux@roeck-us.net>
6760 S:      Maintained
6761 F:      drivers/net/dsa/mv88e6352.c
6762
6763 MARVELL CRYPTO DRIVER
6764 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
6765 M:      Arnaud Ebalard <arno@natisbad.org>
6766 F:      drivers/crypto/marvell/
6767 S:      Maintained
6768 L:      linux-crypto@vger.kernel.org
6769
6770 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
6771 M:      Mirko Lindner <mlindner@marvell.com>
6772 M:      Stephen Hemminger <stephen@networkplumber.org>
6773 L:      netdev@vger.kernel.org
6774 S:      Maintained
6775 F:      drivers/net/ethernet/marvell/sk*
6776
6777 MARVELL LIBERTAS WIRELESS DRIVER
6778 L:      libertas-dev@lists.infradead.org
6779 S:      Orphan
6780 F:      drivers/net/wireless/marvell/libertas/
6781
6782 MARVELL MV643XX ETHERNET DRIVER
6783 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
6784 L:      netdev@vger.kernel.org
6785 S:      Maintained
6786 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
6787 F:      include/linux/mv643xx.h
6788
6789 MARVELL MVNETA ETHERNET DRIVER
6790 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
6791 L:      netdev@vger.kernel.org
6792 S:      Maintained
6793 F:      drivers/net/ethernet/marvell/mvneta.*
6794
6795 MARVELL MWIFIEX WIRELESS DRIVER
6796 M:      Amitkumar Karwar <akarwar@marvell.com>
6797 M:      Nishant Sarmukadam <nishants@marvell.com>
6798 L:      linux-wireless@vger.kernel.org
6799 S:      Maintained
6800 F:      drivers/net/wireless/marvell/mwifiex/
6801
6802 MARVELL MWL8K WIRELESS DRIVER
6803 M:      Lennert Buytenhek <buytenh@wantstofly.org>
6804 L:      linux-wireless@vger.kernel.org
6805 S:      Odd Fixes
6806 F:      drivers/net/wireless/marvell/mwl8k.c
6807
6808 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
6809 M:      Nicolas Pitre <nico@fluxnic.net>
6810 S:      Odd Fixes
6811 F:      drivers/mmc/host/mvsdio.*
6812
6813 MATROX FRAMEBUFFER DRIVER
6814 L:      linux-fbdev@vger.kernel.org
6815 S:      Orphan
6816 F:      drivers/video/fbdev/matrox/matroxfb_*
6817 F:      include/uapi/linux/matroxfb.h
6818
6819 MAX16065 HARDWARE MONITOR DRIVER
6820 M:      Guenter Roeck <linux@roeck-us.net>
6821 L:      lm-sensors@lm-sensors.org
6822 S:      Maintained
6823 F:      Documentation/hwmon/max16065
6824 F:      drivers/hwmon/max16065.c
6825
6826 MAX20751 HARDWARE MONITOR DRIVER
6827 M:      Guenter Roeck <linux@roeck-us.net>
6828 L:      lm-sensors@lm-sensors.org
6829 S:      Maintained
6830 F:      Documentation/hwmon/max20751
6831 F:      drivers/hwmon/max20751.c
6832
6833 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6834 M:      "Hans J. Koch" <hjk@hansjkoch.de>
6835 L:      lm-sensors@lm-sensors.org
6836 S:      Maintained
6837 F:      Documentation/hwmon/max6650
6838 F:      drivers/hwmon/max6650.c
6839
6840 MAX6697 HARDWARE MONITOR DRIVER
6841 M:      Guenter Roeck <linux@roeck-us.net>
6842 L:      lm-sensors@lm-sensors.org
6843 S:      Maintained
6844 F:      Documentation/hwmon/max6697
6845 F:      Documentation/devicetree/bindings/i2c/max6697.txt
6846 F:      drivers/hwmon/max6697.c
6847 F:      include/linux/platform_data/max6697.h
6848
6849 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
6850 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6851 L:      linux-pm@vger.kernel.org
6852 S:      Supported
6853 F:      drivers/power/max14577_charger.c
6854 F:      drivers/power/max77693_charger.c
6855
6856 MAXIM MAX77802 MULTIFUNCTION PMIC DEVICE DRIVERS
6857 M:      Javier Martinez Canillas <javier@osg.samsung.com>
6858 L:      linux-kernel@vger.kernel.org
6859 S:      Supported
6860 F:      drivers/*/*max77802.c
6861 F:      Documentation/devicetree/bindings/*/*max77802.txt
6862 F:      include/dt-bindings/*/*max77802.h
6863
6864 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
6865 M:      Chanwoo Choi <cw00.choi@samsung.com>
6866 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6867 L:      linux-kernel@vger.kernel.org
6868 S:      Supported
6869 F:      drivers/*/max14577.c
6870 F:      drivers/*/max77686.c
6871 F:      drivers/*/max77693.c
6872 F:      drivers/extcon/extcon-max14577.c
6873 F:      drivers/extcon/extcon-max77693.c
6874 F:      drivers/rtc/rtc-max77686.c
6875 F:      drivers/clk/clk-max77686.c
6876 F:      Documentation/devicetree/bindings/mfd/max14577.txt
6877 F:      Documentation/devicetree/bindings/*/max77686.txt
6878 F:      Documentation/devicetree/bindings/mfd/max77693.txt
6879 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
6880 F:      include/linux/mfd/max14577*.h
6881 F:      include/linux/mfd/max77686*.h
6882 F:      include/linux/mfd/max77693*.h
6883
6884 MAXIRADIO FM RADIO RECEIVER DRIVER
6885 M:      Hans Verkuil <hverkuil@xs4all.nl>
6886 L:      linux-media@vger.kernel.org
6887 T:      git git://linuxtv.org/media_tree.git
6888 W:      https://linuxtv.org
6889 S:      Maintained
6890 F:      drivers/media/radio/radio-maxiradio*
6891
6892 MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVER
6893 M:      Peter Rosin <peda@axentia.se>
6894 L:      linux-iio@vger.kernel.org
6895 S:      Maintained
6896 F:      drivers/iio/potentiometer/mcp4531.c
6897
6898 MEDIA DRIVERS FOR RENESAS - VSP1
6899 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6900 L:      linux-media@vger.kernel.org
6901 L:      linux-renesas-soc@vger.kernel.org
6902 T:      git git://linuxtv.org/media_tree.git
6903 S:      Supported
6904 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
6905 F:      drivers/media/platform/vsp1/
6906
6907 MEDIA DRIVERS FOR ASCOT2E
6908 M:      Sergey Kozlov <serjk@netup.ru>
6909 L:      linux-media@vger.kernel.org
6910 W:      https://linuxtv.org
6911 W:      http://netup.tv/
6912 T:      git git://linuxtv.org/media_tree.git
6913 S:      Supported
6914 F:      drivers/media/dvb-frontends/ascot2e*
6915
6916 MEDIA DRIVERS FOR CXD2841ER
6917 M:      Sergey Kozlov <serjk@netup.ru>
6918 L:      linux-media@vger.kernel.org
6919 W:      https://linuxtv.org
6920 W:      http://netup.tv/
6921 T:      git git://linuxtv.org/media_tree.git
6922 S:      Supported
6923 F:      drivers/media/dvb-frontends/cxd2841er*
6924
6925 MEDIA DRIVERS FOR HORUS3A
6926 M:      Sergey Kozlov <serjk@netup.ru>
6927 L:      linux-media@vger.kernel.org
6928 W:      https://linuxtv.org
6929 W:      http://netup.tv/
6930 T:      git git://linuxtv.org/media_tree.git
6931 S:      Supported
6932 F:      drivers/media/dvb-frontends/horus3a*
6933
6934 MEDIA DRIVERS FOR LNBH25
6935 M:      Sergey Kozlov <serjk@netup.ru>
6936 L:      linux-media@vger.kernel.org
6937 W:      https://linuxtv.org
6938 W:      http://netup.tv/
6939 T:      git git://linuxtv.org/media_tree.git
6940 S:      Supported
6941 F:      drivers/media/dvb-frontends/lnbh25*
6942
6943 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
6944 M:      Sergey Kozlov <serjk@netup.ru>
6945 L:      linux-media@vger.kernel.org
6946 W:      https://linuxtv.org
6947 W:      http://netup.tv/
6948 T:      git git://linuxtv.org/media_tree.git
6949 S:      Supported
6950 F:      drivers/media/pci/netup_unidvb/*
6951
6952 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
6953 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
6954 P:      LinuxTV.org Project
6955 L:      linux-media@vger.kernel.org
6956 W:      https://linuxtv.org
6957 Q:      http://patchwork.kernel.org/project/linux-media/list/
6958 T:      git git://linuxtv.org/media_tree.git
6959 S:      Maintained
6960 F:      Documentation/dvb/
6961 F:      Documentation/video4linux/
6962 F:      Documentation/DocBook/media/
6963 F:      drivers/media/
6964 F:      drivers/staging/media/
6965 F:      include/linux/platform_data/media/
6966 F:      include/media/
6967 F:      include/uapi/linux/dvb/
6968 F:      include/uapi/linux/videodev2.h
6969 F:      include/uapi/linux/media.h
6970 F:      include/uapi/linux/v4l2-*
6971 F:      include/uapi/linux/meye.h
6972 F:      include/uapi/linux/ivtv*
6973 F:      include/uapi/linux/uvcvideo.h
6974
6975 MEDIATEK MT7601U WIRELESS LAN DRIVER
6976 M:      Jakub Kicinski <kubakici@wp.pl>
6977 L:      linux-wireless@vger.kernel.org
6978 S:      Maintained
6979 F:      drivers/net/wireless/mediatek/mt7601u/
6980
6981 MEGARAID SCSI/SAS DRIVERS
6982 M:      Kashyap Desai <kashyap.desai@avagotech.com>
6983 M:      Sumit Saxena <sumit.saxena@avagotech.com>
6984 M:      Uday Lingala <uday.lingala@avagotech.com>
6985 L:      megaraidlinux.pdl@avagotech.com
6986 L:      linux-scsi@vger.kernel.org
6987 W:      http://www.lsi.com
6988 S:      Maintained
6989 F:      Documentation/scsi/megaraid.txt
6990 F:      drivers/scsi/megaraid.*
6991 F:      drivers/scsi/megaraid/
6992
6993 MELLANOX ETHERNET DRIVER (mlx4_en)
6994 M:      Eugenia Emantayev <eugenia@mellanox.com>
6995 L:      netdev@vger.kernel.org
6996 S:      Supported
6997 W:      http://www.mellanox.com
6998 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6999 F:      drivers/net/ethernet/mellanox/mlx4/en_*
7000
7001 MELLANOX ETHERNET DRIVER (mlx5e)
7002 M:      Saeed Mahameed <saeedm@mellanox.com>
7003 L:      netdev@vger.kernel.org
7004 S:      Supported
7005 W:      http://www.mellanox.com
7006 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7007 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
7008
7009 MELLANOX ETHERNET SWITCH DRIVERS
7010 M:      Jiri Pirko <jiri@mellanox.com>
7011 M:      Ido Schimmel <idosch@mellanox.com>
7012 L:      netdev@vger.kernel.org
7013 S:      Supported
7014 W:      http://www.mellanox.com
7015 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7016 F:      drivers/net/ethernet/mellanox/mlxsw/
7017
7018 MEMBARRIER SUPPORT
7019 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7020 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
7021 L:      linux-kernel@vger.kernel.org
7022 S:      Supported
7023 F:      kernel/membarrier.c
7024 F:      include/uapi/linux/membarrier.h
7025
7026 MEMORY MANAGEMENT
7027 L:      linux-mm@kvack.org
7028 W:      http://www.linux-mm.org
7029 S:      Maintained
7030 F:      include/linux/mm.h
7031 F:      include/linux/gfp.h
7032 F:      include/linux/mmzone.h
7033 F:      include/linux/memory_hotplug.h
7034 F:      include/linux/vmalloc.h
7035 F:      mm/
7036
7037 MEMORY TECHNOLOGY DEVICES (MTD)
7038 M:      David Woodhouse <dwmw2@infradead.org>
7039 M:      Brian Norris <computersforpeace@gmail.com>
7040 L:      linux-mtd@lists.infradead.org
7041 W:      http://www.linux-mtd.infradead.org/
7042 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
7043 T:      git git://git.infradead.org/linux-mtd.git
7044 T:      git git://git.infradead.org/l2-mtd.git
7045 S:      Maintained
7046 F:      drivers/mtd/
7047 F:      include/linux/mtd/
7048 F:      include/uapi/mtd/
7049
7050 MEN A21 WATCHDOG DRIVER
7051 M:      Johannes Thumshirn <morbidrsa@gmail.com>
7052 L:      linux-watchdog@vger.kernel.org
7053 S:      Maintained
7054 F:      drivers/watchdog/mena21_wdt.c
7055
7056 MEN CHAMELEON BUS (mcb)
7057 M:      Johannes Thumshirn <morbidrsa@gmail.com>
7058 S:      Maintained
7059 F:      drivers/mcb/
7060 F:      include/linux/mcb.h
7061 F:      Documentation/men-chameleon-bus.txt
7062
7063 MEN F21BMC (Board Management Controller)
7064 M:      Andreas Werner <andreas.werner@men.de>
7065 S:      Supported
7066 F:      drivers/mfd/menf21bmc.c
7067 F:      drivers/watchdog/menf21bmc_wdt.c
7068 F:      drivers/leds/leds-menf21bmc.c
7069 F:      drivers/hwmon/menf21bmc_hwmon.c
7070 F:      Documentation/hwmon/menf21bmc
7071
7072 METAG ARCHITECTURE
7073 M:      James Hogan <james.hogan@imgtec.com>
7074 L:      linux-metag@vger.kernel.org
7075 S:      Odd Fixes
7076 F:      arch/metag/
7077 F:      Documentation/metag/
7078 F:      Documentation/devicetree/bindings/metag/
7079 F:      Documentation/devicetree/bindings/interrupt-controller/img,*
7080 F:      drivers/clocksource/metag_generic.c
7081 F:      drivers/irqchip/irq-metag.c
7082 F:      drivers/irqchip/irq-metag-ext.c
7083 F:      drivers/tty/metag_da.c
7084
7085 MICROBLAZE ARCHITECTURE
7086 M:      Michal Simek <monstr@monstr.eu>
7087 W:      http://www.monstr.eu/fdt/
7088 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
7089 S:      Supported
7090 F:      arch/microblaze/
7091
7092 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
7093 M:      Chen Yu <yu.c.chen@intel.com>
7094 L:      platform-driver-x86@vger.kernel.org
7095 S:      Supported
7096 F:      drivers/platform/x86/surfacepro3_button.c
7097
7098 MICROTEK X6 SCANNER
7099 M:      Oliver Neukum <oliver@neukum.org>
7100 S:      Maintained
7101 F:      drivers/usb/image/microtek.*
7102
7103 MIPS
7104 M:      Ralf Baechle <ralf@linux-mips.org>
7105 L:      linux-mips@linux-mips.org
7106 W:      http://www.linux-mips.org/
7107 T:      git git://git.linux-mips.org/pub/scm/ralf/linux.git
7108 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
7109 S:      Supported
7110 F:      Documentation/mips/
7111 F:      arch/mips/
7112
7113 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
7114 M:      Hans Verkuil <hverkuil@xs4all.nl>
7115 L:      linux-media@vger.kernel.org
7116 T:      git git://linuxtv.org/media_tree.git
7117 W:      https://linuxtv.org
7118 S:      Odd Fixes
7119 F:      drivers/media/radio/radio-miropcm20*
7120
7121 Mellanox MLX5 core VPI driver
7122 M:      Eli Cohen <eli@mellanox.com>
7123 L:      netdev@vger.kernel.org
7124 L:      linux-rdma@vger.kernel.org
7125 W:      http://www.mellanox.com
7126 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7127 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
7128 T:      git git://openfabrics.org/~eli/connect-ib.git
7129 S:      Supported
7130 F:      drivers/net/ethernet/mellanox/mlx5/core/
7131 F:      include/linux/mlx5/
7132
7133 Mellanox MLX5 IB driver
7134 M:      Eli Cohen <eli@mellanox.com>
7135 L:      linux-rdma@vger.kernel.org
7136 W:      http://www.mellanox.com
7137 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
7138 T:      git git://openfabrics.org/~eli/connect-ib.git
7139 S:      Supported
7140 F:      include/linux/mlx5/
7141 F:      drivers/infiniband/hw/mlx5/
7142
7143 MELEXIS MLX90614 DRIVER
7144 M:      Crt Mori <cmo@melexis.com>
7145 L:      linux-iio@vger.kernel.org
7146 W:      http://www.melexis.com
7147 S:      Supported
7148 F:      drivers/iio/temperature/mlx90614.c
7149
7150 MN88472 MEDIA DRIVER
7151 M:      Antti Palosaari <crope@iki.fi>
7152 L:      linux-media@vger.kernel.org
7153 W:      https://linuxtv.org
7154 W:      http://palosaari.fi/linux/
7155 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7156 T:      git git://linuxtv.org/anttip/media_tree.git
7157 S:      Maintained
7158 F:      drivers/staging/media/mn88472/
7159 F:      drivers/media/dvb-frontends/mn88472.h
7160
7161 MN88473 MEDIA DRIVER
7162 M:      Antti Palosaari <crope@iki.fi>
7163 L:      linux-media@vger.kernel.org
7164 W:      https://linuxtv.org
7165 W:      http://palosaari.fi/linux/
7166 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7167 T:      git git://linuxtv.org/anttip/media_tree.git
7168 S:      Maintained
7169 F:      drivers/staging/media/mn88473/
7170 F:      drivers/media/dvb-frontends/mn88473.h
7171
7172 MODULE SUPPORT
7173 M:      Rusty Russell <rusty@rustcorp.com.au>
7174 S:      Maintained
7175 F:      include/linux/module.h
7176 F:      kernel/module.c
7177
7178 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
7179 W:      http://popies.net/meye/
7180 S:      Orphan
7181 F:      Documentation/video4linux/meye.txt
7182 F:      drivers/media/pci/meye/
7183 F:      include/uapi/linux/meye.h
7184
7185 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
7186 M:      Jiri Slaby <jirislaby@gmail.com>
7187 S:      Maintained
7188 F:      Documentation/serial/moxa-smartio
7189 F:      drivers/tty/mxser.*
7190
7191 MR800 AVERMEDIA USB FM RADIO DRIVER
7192 M:      Alexey Klimov <klimov.linux@gmail.com>
7193 L:      linux-media@vger.kernel.org
7194 T:      git git://linuxtv.org/media_tree.git
7195 S:      Maintained
7196 F:      drivers/media/radio/radio-mr800.c
7197
7198 MRF24J40 IEEE 802.15.4 RADIO DRIVER
7199 M:      Alan Ott <alan@signal11.us>
7200 L:      linux-wpan@vger.kernel.org
7201 S:      Maintained
7202 F:      drivers/net/ieee802154/mrf24j40.c
7203 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
7204
7205 MSI LAPTOP SUPPORT
7206 M:      "Lee, Chun-Yi" <jlee@suse.com>
7207 L:      platform-driver-x86@vger.kernel.org
7208 S:      Maintained
7209 F:      drivers/platform/x86/msi-laptop.c
7210
7211 MSI WMI SUPPORT
7212 L:      platform-driver-x86@vger.kernel.org
7213 S:      Orphan
7214 F:      drivers/platform/x86/msi-wmi.c
7215
7216 MSI001 MEDIA DRIVER
7217 M:      Antti Palosaari <crope@iki.fi>
7218 L:      linux-media@vger.kernel.org
7219 W:      https://linuxtv.org
7220 W:      http://palosaari.fi/linux/
7221 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7222 T:      git git://linuxtv.org/anttip/media_tree.git
7223 S:      Maintained
7224 F:      drivers/media/tuners/msi001*
7225
7226 MSI2500 MEDIA DRIVER
7227 M:      Antti Palosaari <crope@iki.fi>
7228 L:      linux-media@vger.kernel.org
7229 W:      https://linuxtv.org
7230 W:      http://palosaari.fi/linux/
7231 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7232 T:      git git://linuxtv.org/anttip/media_tree.git
7233 S:      Maintained
7234 F:      drivers/media/usb/msi2500/
7235
7236 MSYSTEMS DISKONCHIP G3 MTD DRIVER
7237 M:      Robert Jarzmik <robert.jarzmik@free.fr>
7238 L:      linux-mtd@lists.infradead.org
7239 S:      Maintained
7240 F:      drivers/mtd/devices/docg3*
7241
7242 MT9M032 APTINA SENSOR DRIVER
7243 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7244 L:      linux-media@vger.kernel.org
7245 T:      git git://linuxtv.org/media_tree.git
7246 S:      Maintained
7247 F:      drivers/media/i2c/mt9m032.c
7248 F:      include/media/i2c/mt9m032.h
7249
7250 MT9P031 APTINA CAMERA SENSOR
7251 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7252 L:      linux-media@vger.kernel.org
7253 T:      git git://linuxtv.org/media_tree.git
7254 S:      Maintained
7255 F:      drivers/media/i2c/mt9p031.c
7256 F:      include/media/i2c/mt9p031.h
7257
7258 MT9T001 APTINA CAMERA SENSOR
7259 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7260 L:      linux-media@vger.kernel.org
7261 T:      git git://linuxtv.org/media_tree.git
7262 S:      Maintained
7263 F:      drivers/media/i2c/mt9t001.c
7264 F:      include/media/i2c/mt9t001.h
7265
7266 MT9V032 APTINA CAMERA SENSOR
7267 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7268 L:      linux-media@vger.kernel.org
7269 T:      git git://linuxtv.org/media_tree.git
7270 S:      Maintained
7271 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
7272 F:      drivers/media/i2c/mt9v032.c
7273 F:      include/media/i2c/mt9v032.h
7274
7275 MULTIFUNCTION DEVICES (MFD)
7276 M:      Lee Jones <lee.jones@linaro.org>
7277 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
7278 S:      Supported
7279 F:      drivers/mfd/
7280 F:      include/linux/mfd/
7281
7282 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
7283 M:      Ulf Hansson <ulf.hansson@linaro.org>
7284 L:      linux-mmc@vger.kernel.org
7285 T:      git git://git.linaro.org/people/ulf.hansson/mmc.git
7286 S:      Maintained
7287 F:      drivers/mmc/
7288 F:      include/linux/mmc/
7289 F:      include/uapi/linux/mmc/
7290
7291 MULTIMEDIA CARD (MMC) ETC. OVER SPI
7292 S:      Orphan
7293 F:      drivers/mmc/host/mmc_spi.c
7294 F:      include/linux/spi/mmc_spi.h
7295
7296 MULTISOUND SOUND DRIVER
7297 M:      Andrew Veliath <andrewtv@usa.net>
7298 S:      Maintained
7299 F:      Documentation/sound/oss/MultiSound
7300 F:      sound/oss/msnd*
7301
7302 MULTITECH MULTIPORT CARD (ISICOM)
7303 S:      Orphan
7304 F:      drivers/tty/isicom.c
7305 F:      include/linux/isicom.h
7306
7307 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
7308 M:      Felipe Balbi <balbi@ti.com>
7309 L:      linux-usb@vger.kernel.org
7310 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7311 S:      Maintained
7312 F:      drivers/usb/musb/
7313
7314 MXL5007T MEDIA DRIVER
7315 M:      Michael Krufky <mkrufky@linuxtv.org>
7316 L:      linux-media@vger.kernel.org
7317 W:      https://linuxtv.org
7318 W:      http://github.com/mkrufky
7319 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7320 T:      git git://linuxtv.org/mkrufky/tuners.git
7321 S:      Maintained
7322 F:      drivers/media/tuners/mxl5007t.*
7323
7324 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
7325 M:      Hyong-Youb Kim <hykim@myri.com>
7326 L:      netdev@vger.kernel.org
7327 W:      https://www.myricom.com/support/downloads/myri10ge.html
7328 S:      Supported
7329 F:      drivers/net/ethernet/myricom/myri10ge/
7330
7331 NATSEMI ETHERNET DRIVER (DP8381x)
7332 S:      Orphan
7333 F:      drivers/net/ethernet/natsemi/natsemi.c
7334
7335 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
7336 M:      Daniel Mack <zonque@gmail.com>
7337 S:      Maintained
7338 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7339 W:      http://www.native-instruments.com
7340 F:      sound/usb/caiaq/
7341
7342 NCP FILESYSTEM
7343 M:      Petr Vandrovec <petr@vandrovec.name>
7344 S:      Odd Fixes
7345 F:      fs/ncpfs/
7346
7347 NCR 5380 SCSI DRIVERS
7348 M:      Finn Thain <fthain@telegraphics.com.au>
7349 M:      Michael Schmitz <schmitzmic@gmail.com>
7350 L:      linux-scsi@vger.kernel.org
7351 S:      Maintained
7352 F:      Documentation/scsi/g_NCR5380.txt
7353 F:      drivers/scsi/NCR5380.*
7354 F:      drivers/scsi/arm/cumana_1.c
7355 F:      drivers/scsi/arm/oak.c
7356 F:      drivers/scsi/atari_NCR5380.c
7357 F:      drivers/scsi/atari_scsi.*
7358 F:      drivers/scsi/dmx3191d.c
7359 F:      drivers/scsi/dtc.*
7360 F:      drivers/scsi/g_NCR5380.*
7361 F:      drivers/scsi/g_NCR5380_mmio.c
7362 F:      drivers/scsi/mac_scsi.*
7363 F:      drivers/scsi/pas16.*
7364 F:      drivers/scsi/sun3_scsi.*
7365 F:      drivers/scsi/sun3_scsi_vme.c
7366 F:      drivers/scsi/t128.*
7367
7368 NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
7369 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
7370 L:      linux-scsi@vger.kernel.org
7371 S:      Maintained
7372 F:      drivers/scsi/NCR_D700.*
7373
7374 NCT6775 HARDWARE MONITOR DRIVER
7375 M:      Guenter Roeck <linux@roeck-us.net>
7376 L:      lm-sensors@lm-sensors.org
7377 S:      Maintained
7378 F:      Documentation/hwmon/nct6775
7379 F:      drivers/hwmon/nct6775.c
7380
7381 NETEFFECT IWARP RNIC DRIVER (IW_NES)
7382 M:      Faisal Latif <faisal.latif@intel.com>
7383 L:      linux-rdma@vger.kernel.org
7384 W:      http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
7385 S:      Supported
7386 F:      drivers/infiniband/hw/nes/
7387
7388 NETEM NETWORK EMULATOR
7389 M:      Stephen Hemminger <stephen@networkplumber.org>
7390 L:      netem@lists.linux-foundation.org
7391 S:      Maintained
7392 F:      net/sched/sch_netem.c
7393
7394 NETERION 10GbE DRIVERS (s2io/vxge)
7395 M:      Jon Mason <jdmason@kudzu.us>
7396 L:      netdev@vger.kernel.org
7397 S:      Supported
7398 F:      Documentation/networking/s2io.txt
7399 F:      Documentation/networking/vxge.txt
7400 F:      drivers/net/ethernet/neterion/
7401
7402 NETFILTER ({IP,IP6,ARP,EB,NF}TABLES)
7403 M:      Pablo Neira Ayuso <pablo@netfilter.org>
7404 M:      Patrick McHardy <kaber@trash.net>
7405 M:      Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
7406 L:      netfilter-devel@vger.kernel.org
7407 L:      coreteam@netfilter.org
7408 W:      http://www.netfilter.org/
7409 W:      http://www.iptables.org/
7410 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
7411 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
7412 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
7413 S:      Supported
7414 F:      include/linux/netfilter*
7415 F:      include/linux/netfilter/
7416 F:      include/net/netfilter/
7417 F:      include/uapi/linux/netfilter*
7418 F:      include/uapi/linux/netfilter/
7419 F:      net/*/netfilter.c
7420 F:      net/*/netfilter/
7421 F:      net/netfilter/
7422 F:      net/bridge/br_netfilter*.c
7423
7424 NETLABEL
7425 M:      Paul Moore <paul@paul-moore.com>
7426 W:      http://netlabel.sf.net
7427 L:      netdev@vger.kernel.org
7428 S:      Maintained
7429 F:      Documentation/netlabel/
7430 F:      include/net/netlabel.h
7431 F:      net/netlabel/
7432
7433 NETROM NETWORK LAYER
7434 M:      Ralf Baechle <ralf@linux-mips.org>
7435 L:      linux-hams@vger.kernel.org
7436 W:      http://www.linux-ax25.org/
7437 S:      Maintained
7438 F:      include/net/netrom.h
7439 F:      include/uapi/linux/netrom.h
7440 F:      net/netrom/
7441
7442 NETRONOME ETHERNET DRIVERS
7443 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
7444 M:      Rolf Neugebauer <rolf.neugebauer@netronome.com>
7445 L:      oss-drivers@netronome.com
7446 S:      Maintained
7447 F:      drivers/net/ethernet/netronome/
7448
7449 NETWORK BLOCK DEVICE (NBD)
7450 M:      Markus Pargmann <mpa@pengutronix.de>
7451 S:      Maintained
7452 L:      nbd-general@lists.sourceforge.net
7453 T:      git git://git.pengutronix.de/git/mpa/linux-nbd.git
7454 F:      Documentation/blockdev/nbd.txt
7455 F:      drivers/block/nbd.c
7456 F:      include/uapi/linux/nbd.h
7457
7458 NETWORK DROP MONITOR
7459 M:      Neil Horman <nhorman@tuxdriver.com>
7460 L:      netdev@vger.kernel.org
7461 S:      Maintained
7462 W:      https://fedorahosted.org/dropwatch/
7463 F:      net/core/drop_monitor.c
7464
7465 NETWORKING [GENERAL]
7466 M:      "David S. Miller" <davem@davemloft.net>
7467 L:      netdev@vger.kernel.org
7468 W:      http://www.linuxfoundation.org/en/Net
7469 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7470 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7471 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7472 S:      Maintained
7473 F:      net/
7474 F:      include/net/
7475 F:      include/linux/in.h
7476 F:      include/linux/net.h
7477 F:      include/linux/netdevice.h
7478 F:      include/uapi/linux/in.h
7479 F:      include/uapi/linux/net.h
7480 F:      include/uapi/linux/netdevice.h
7481 F:      include/uapi/linux/net_namespace.h
7482 F:      tools/net/
7483 F:      tools/testing/selftests/net/
7484 F:      lib/random32.c
7485 F:      lib/test_bpf.c
7486
7487 NETWORKING [IPv4/IPv6]
7488 M:      "David S. Miller" <davem@davemloft.net>
7489 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
7490 M:      James Morris <jmorris@namei.org>
7491 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
7492 M:      Patrick McHardy <kaber@trash.net>
7493 L:      netdev@vger.kernel.org
7494 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7495 S:      Maintained
7496 F:      net/ipv4/
7497 F:      net/ipv6/
7498 F:      include/net/ip*
7499 F:      arch/x86/net/*
7500
7501 NETWORKING [IPSEC]
7502 M:      Steffen Klassert <steffen.klassert@secunet.com>
7503 M:      Herbert Xu <herbert@gondor.apana.org.au>
7504 M:      "David S. Miller" <davem@davemloft.net>
7505 L:      netdev@vger.kernel.org
7506 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
7507 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
7508 S:      Maintained
7509 F:      net/core/flow.c
7510 F:      net/xfrm/
7511 F:      net/key/
7512 F:      net/ipv4/xfrm*
7513 F:      net/ipv4/esp4.c
7514 F:      net/ipv4/ah4.c
7515 F:      net/ipv4/ipcomp.c
7516 F:      net/ipv4/ip_vti.c
7517 F:      net/ipv6/xfrm*
7518 F:      net/ipv6/esp6.c
7519 F:      net/ipv6/ah6.c
7520 F:      net/ipv6/ipcomp6.c
7521 F:      net/ipv6/ip6_vti.c
7522 F:      include/uapi/linux/xfrm.h
7523 F:      include/net/xfrm.h
7524
7525 NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
7526 M:      Paul Moore <paul@paul-moore.com>
7527 L:      netdev@vger.kernel.org
7528 S:      Maintained
7529
7530 NETWORKING [WIRELESS]
7531 L:      linux-wireless@vger.kernel.org
7532 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7533
7534 NETWORKING DRIVERS
7535 L:      netdev@vger.kernel.org
7536 W:      http://www.linuxfoundation.org/en/Net
7537 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7538 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7539 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7540 S:      Odd Fixes
7541 F:      drivers/net/
7542 F:      include/linux/if_*
7543 F:      include/linux/netdevice.h
7544 F:      include/linux/etherdevice.h
7545 F:      include/linux/fcdevice.h
7546 F:      include/linux/fddidevice.h
7547 F:      include/linux/hippidevice.h
7548 F:      include/linux/inetdevice.h
7549 F:      include/uapi/linux/if_*
7550 F:      include/uapi/linux/netdevice.h
7551
7552 NETWORKING DRIVERS (WIRELESS)
7553 M:      Kalle Valo <kvalo@codeaurora.org>
7554 L:      linux-wireless@vger.kernel.org
7555 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7556 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git/
7557 S:      Maintained
7558 F:      drivers/net/wireless/
7559
7560 NETXEN (1/10) GbE SUPPORT
7561 M:      Manish Chopra <manish.chopra@qlogic.com>
7562 M:      Sony Chacko <sony.chacko@qlogic.com>
7563 M:      Rajesh Borundia <rajesh.borundia@qlogic.com>
7564 L:      netdev@vger.kernel.org
7565 W:      http://www.qlogic.com
7566 S:      Supported
7567 F:      drivers/net/ethernet/qlogic/netxen/
7568
7569 NFC SUBSYSTEM
7570 M:      Lauro Ramos Venancio <lauro.venancio@openbossa.org>
7571 M:      Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
7572 M:      Samuel Ortiz <sameo@linux.intel.com>
7573 L:      linux-wireless@vger.kernel.org
7574 L:      linux-nfc@lists.01.org (subscribers-only)
7575 S:      Supported
7576 F:      net/nfc/
7577 F:      include/net/nfc/
7578 F:      include/uapi/linux/nfc.h
7579 F:      drivers/nfc/
7580 F:      include/linux/platform_data/microread.h
7581 F:      include/linux/platform_data/nfcmrvl.h
7582 F:      include/linux/platform_data/nxp-nci.h
7583 F:      include/linux/platform_data/pn544.h
7584 F:      include/linux/platform_data/st21nfca.h
7585 F:      include/linux/platform_data/st-nci.h
7586 F:      Documentation/devicetree/bindings/net/nfc/
7587
7588 NFS, SUNRPC, AND LOCKD CLIENTS
7589 M:      Trond Myklebust <trond.myklebust@primarydata.com>
7590 M:      Anna Schumaker <anna.schumaker@netapp.com>
7591 L:      linux-nfs@vger.kernel.org
7592 W:      http://client.linux-nfs.org
7593 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
7594 S:      Maintained
7595 F:      fs/lockd/
7596 F:      fs/nfs/
7597 F:      fs/nfs_common/
7598 F:      net/sunrpc/
7599 F:      include/linux/lockd/
7600 F:      include/linux/nfs*
7601 F:      include/linux/sunrpc/
7602 F:      include/uapi/linux/nfs*
7603 F:      include/uapi/linux/sunrpc/
7604
7605 NILFS2 FILESYSTEM
7606 M:      Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
7607 L:      linux-nilfs@vger.kernel.org
7608 W:      http://nilfs.sourceforge.net/
7609 T:      git git://github.com/konis/nilfs2.git
7610 S:      Supported
7611 F:      Documentation/filesystems/nilfs2.txt
7612 F:      fs/nilfs2/
7613 F:      include/linux/nilfs2_fs.h
7614 F:      include/trace/events/nilfs2.h
7615
7616 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
7617 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7618 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7619 S:      Maintained
7620 F:      Documentation/scsi/NinjaSCSI.txt
7621 F:      drivers/scsi/pcmcia/nsp_*
7622
7623 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
7624 M:      GOTO Masanori <gotom@debian.or.jp>
7625 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7626 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7627 S:      Maintained
7628 F:      Documentation/scsi/NinjaSCSI.txt
7629 F:      drivers/scsi/nsp32*
7630
7631 NIOS2 ARCHITECTURE
7632 M:      Ley Foon Tan <lftan@altera.com>
7633 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
7634 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
7635 S:      Maintained
7636 F:      arch/nios2/
7637
7638 NOKIA N900 POWER SUPPLY DRIVERS
7639 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
7640 S:      Maintained
7641 F:      include/linux/power/bq2415x_charger.h
7642 F:      include/linux/power/bq27xxx_battery.h
7643 F:      include/linux/power/isp1704_charger.h
7644 F:      drivers/power/bq2415x_charger.c
7645 F:      drivers/power/bq27xxx_battery.c
7646 F:      drivers/power/isp1704_charger.c
7647 F:      drivers/power/rx51_battery.c
7648
7649 NTB DRIVER CORE
7650 M:      Jon Mason <jdmason@kudzu.us>
7651 M:      Dave Jiang <dave.jiang@intel.com>
7652 M:      Allen Hubbe <Allen.Hubbe@emc.com>
7653 L:      linux-ntb@googlegroups.com
7654 S:      Supported
7655 W:      https://github.com/jonmason/ntb/wiki
7656 T:      git git://github.com/jonmason/ntb.git
7657 F:      drivers/ntb/
7658 F:      drivers/net/ntb_netdev.c
7659 F:      include/linux/ntb.h
7660 F:      include/linux/ntb_transport.h
7661
7662 NTB INTEL DRIVER
7663 M:      Jon Mason <jdmason@kudzu.us>
7664 M:      Dave Jiang <dave.jiang@intel.com>
7665 L:      linux-ntb@googlegroups.com
7666 S:      Supported
7667 W:      https://github.com/jonmason/ntb/wiki
7668 T:      git git://github.com/jonmason/ntb.git
7669 F:      drivers/ntb/hw/intel/
7670
7671 NTFS FILESYSTEM
7672 M:      Anton Altaparmakov <anton@tuxera.com>
7673 L:      linux-ntfs-dev@lists.sourceforge.net
7674 W:      http://www.tuxera.com/
7675 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
7676 S:      Supported
7677 F:      Documentation/filesystems/ntfs.txt
7678 F:      fs/ntfs/
7679
7680 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
7681 M:      Antonino Daplas <adaplas@gmail.com>
7682 L:      linux-fbdev@vger.kernel.org
7683 S:      Maintained
7684 F:      drivers/video/fbdev/riva/
7685 F:      drivers/video/fbdev/nvidia/
7686
7687 NVM EXPRESS DRIVER
7688 M:      Keith Busch <keith.busch@intel.com>
7689 M:      Jens Axboe <axboe@fb.com>
7690 L:      linux-nvme@lists.infradead.org
7691 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
7692 W:      https://kernel.googlesource.com/pub/scm/linux/kernel/git/axboe/linux-block/
7693 S:      Supported
7694 F:      drivers/nvme/host/
7695 F:      include/linux/nvme.h
7696
7697 NVMEM FRAMEWORK
7698 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
7699 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
7700 S:      Maintained
7701 F:      drivers/nvmem/
7702 F:      Documentation/devicetree/bindings/nvmem/
7703 F:      include/linux/nvmem-consumer.h
7704 F:      include/linux/nvmem-provider.h
7705
7706 NXP-NCI NFC DRIVER
7707 M:      ClĂ©ment Perrochaud <clement.perrochaud@effinnov.com>
7708 R:      Charles Gorand <charles.gorand@effinnov.com>
7709 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
7710 S:      Supported
7711 F:      drivers/nfc/nxp-nci
7712
7713 NXP TDA998X DRM DRIVER
7714 M:      Russell King <rmk+kernel@arm.linux.org.uk>
7715 S:      Supported
7716 F:      drivers/gpu/drm/i2c/tda998x_drv.c
7717 F:      include/drm/i2c/tda998x.h
7718
7719 NXP TFA9879 DRIVER
7720 M:      Peter Rosin <peda@axentia.se>
7721 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7722 S:      Maintained
7723 F:      sound/soc/codecs/tfa9879*
7724
7725 OMAP SUPPORT
7726 M:      Tony Lindgren <tony@atomide.com>
7727 L:      linux-omap@vger.kernel.org
7728 W:      http://www.muru.com/linux/omap/
7729 W:      http://linux.omap.com/
7730 Q:      http://patchwork.kernel.org/project/linux-omap/list/
7731 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
7732 S:      Maintained
7733 F:      arch/arm/*omap*/
7734 F:      arch/arm/configs/omap1_defconfig
7735 F:      arch/arm/configs/omap2plus_defconfig
7736 F:      drivers/i2c/busses/i2c-omap.c
7737 F:      drivers/irqchip/irq-omap-intc.c
7738 F:      drivers/mfd/*omap*.c
7739 F:      drivers/mfd/menelaus.c
7740 F:      drivers/mfd/palmas.c
7741 F:      drivers/mfd/tps65217.c
7742 F:      drivers/mfd/tps65218.c
7743 F:      drivers/mfd/tps65910.c
7744 F:      drivers/mfd/twl-core.[ch]
7745 F:      drivers/mfd/twl4030*.c
7746 F:      drivers/mfd/twl6030*.c
7747 F:      drivers/mfd/twl6040*.c
7748 F:      drivers/regulator/palmas-regulator*.c
7749 F:      drivers/regulator/pbias-regulator.c
7750 F:      drivers/regulator/tps65217-regulator.c
7751 F:      drivers/regulator/tps65218-regulator.c
7752 F:      drivers/regulator/tps65910-regulator.c
7753 F:      drivers/regulator/twl-regulator.c
7754 F:      include/linux/i2c-omap.h
7755
7756 OMAP DEVICE TREE SUPPORT
7757 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7758 M:      Tony Lindgren <tony@atomide.com>
7759 L:      linux-omap@vger.kernel.org
7760 L:      devicetree@vger.kernel.org
7761 S:      Maintained
7762 F:      arch/arm/boot/dts/*omap*
7763 F:      arch/arm/boot/dts/*am3*
7764 F:      arch/arm/boot/dts/*am4*
7765 F:      arch/arm/boot/dts/*am5*
7766 F:      arch/arm/boot/dts/*dra7*
7767
7768 OMAP CLOCK FRAMEWORK SUPPORT
7769 M:      Paul Walmsley <paul@pwsan.com>
7770 L:      linux-omap@vger.kernel.org
7771 S:      Maintained
7772 F:      arch/arm/*omap*/*clock*
7773
7774 OMAP POWER MANAGEMENT SUPPORT
7775 M:      Kevin Hilman <khilman@deeprootsystems.com>
7776 L:      linux-omap@vger.kernel.org
7777 S:      Maintained
7778 F:      arch/arm/*omap*/*pm*
7779 F:      drivers/cpufreq/omap-cpufreq.c
7780
7781 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
7782 M:      Rajendra Nayak <rnayak@ti.com>
7783 M:      Paul Walmsley <paul@pwsan.com>
7784 L:      linux-omap@vger.kernel.org
7785 S:      Maintained
7786 F:      arch/arm/mach-omap2/prm*
7787
7788 OMAP AUDIO SUPPORT
7789 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
7790 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
7791 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7792 L:      linux-omap@vger.kernel.org
7793 S:      Maintained
7794 F:      sound/soc/omap/
7795
7796 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
7797 M:      Roger Quadros <rogerq@ti.com>
7798 M:      Tony Lindgren <tony@atomide.com>
7799 L:      linux-omap@vger.kernel.org
7800 S:      Maintained
7801 F:      drivers/memory/omap-gpmc.c
7802 F:      arch/arm/mach-omap2/*gpmc*
7803
7804 OMAP FRAMEBUFFER SUPPORT
7805 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
7806 L:      linux-fbdev@vger.kernel.org
7807 L:      linux-omap@vger.kernel.org
7808 S:      Maintained
7809 F:      drivers/video/fbdev/omap/
7810
7811 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
7812 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
7813 L:      linux-omap@vger.kernel.org
7814 L:      linux-fbdev@vger.kernel.org
7815 S:      Maintained
7816 F:      drivers/video/fbdev/omap2/
7817 F:      Documentation/arm/OMAP/DSS
7818
7819 OMAP HARDWARE SPINLOCK SUPPORT
7820 M:      Ohad Ben-Cohen <ohad@wizery.com>
7821 L:      linux-omap@vger.kernel.org
7822 S:      Maintained
7823 F:      drivers/hwspinlock/omap_hwspinlock.c
7824
7825 OMAP MMC SUPPORT
7826 M:      Jarkko Lavinen <jarkko.lavinen@nokia.com>
7827 L:      linux-omap@vger.kernel.org
7828 S:      Maintained
7829 F:      drivers/mmc/host/omap.c
7830
7831 OMAP HS MMC SUPPORT
7832 L:      linux-mmc@vger.kernel.org
7833 L:      linux-omap@vger.kernel.org
7834 S:      Orphan
7835 F:      drivers/mmc/host/omap_hsmmc.c
7836
7837 OMAP RANDOM NUMBER GENERATOR SUPPORT
7838 M:      Deepak Saxena <dsaxena@plexity.net>
7839 S:      Maintained
7840 F:      drivers/char/hw_random/omap-rng.c
7841
7842 OMAP HWMOD SUPPORT
7843 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7844 M:      Paul Walmsley <paul@pwsan.com>
7845 L:      linux-omap@vger.kernel.org
7846 S:      Maintained
7847 F:      arch/arm/mach-omap2/omap_hwmod.*
7848
7849 OMAP HWMOD DATA
7850 M:      Paul Walmsley <paul@pwsan.com>
7851 L:      linux-omap@vger.kernel.org
7852 S:      Maintained
7853 F:      arch/arm/mach-omap2/omap_hwmod*data*
7854
7855 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
7856 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7857 L:      linux-omap@vger.kernel.org
7858 S:      Maintained
7859 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
7860
7861 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
7862 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7863 L:      linux-media@vger.kernel.org
7864 S:      Maintained
7865 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
7866 F:      drivers/media/platform/omap3isp/
7867 F:      drivers/staging/media/omap4iss/
7868
7869 OMAP USB SUPPORT
7870 M:      Felipe Balbi <balbi@ti.com>
7871 L:      linux-usb@vger.kernel.org
7872 L:      linux-omap@vger.kernel.org
7873 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7874 S:      Maintained
7875 F:      drivers/usb/*/*omap*
7876 F:      arch/arm/*omap*/usb*
7877
7878 OMAP GPIO DRIVER
7879 M:      Grygorii Strashko <grygorii.strashko@ti.com>
7880 M:      Santosh Shilimkar <ssantosh@kernel.org>
7881 M:      Kevin Hilman <khilman@deeprootsystems.com>
7882 L:      linux-omap@vger.kernel.org
7883 S:      Maintained
7884 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
7885 F:      drivers/gpio/gpio-omap.c
7886
7887 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
7888 M:      Mark Jackson <mpfj@newflow.co.uk>
7889 L:      linux-omap@vger.kernel.org
7890 S:      Maintained
7891 F:      arch/arm/boot/dts/am335x-nano.dts
7892
7893 OMFS FILESYSTEM
7894 M:      Bob Copeland <me@bobcopeland.com>
7895 L:      linux-karma-devel@lists.sourceforge.net
7896 S:      Maintained
7897 F:      Documentation/filesystems/omfs.txt
7898 F:      fs/omfs/
7899
7900 OMNIKEY CARDMAN 4000 DRIVER
7901 M:      Harald Welte <laforge@gnumonks.org>
7902 S:      Maintained
7903 F:      drivers/char/pcmcia/cm4000_cs.c
7904 F:      include/linux/cm4000_cs.h
7905 F:      include/uapi/linux/cm4000_cs.h
7906
7907 OMNIKEY CARDMAN 4040 DRIVER
7908 M:      Harald Welte <laforge@gnumonks.org>
7909 S:      Maintained
7910 F:      drivers/char/pcmcia/cm4040_cs.*
7911
7912 OMNIVISION OV7670 SENSOR DRIVER
7913 M:      Jonathan Corbet <corbet@lwn.net>
7914 L:      linux-media@vger.kernel.org
7915 T:      git git://linuxtv.org/media_tree.git
7916 S:      Maintained
7917 F:      drivers/media/i2c/ov7670.c
7918
7919 ONENAND FLASH DRIVER
7920 M:      Kyungmin Park <kyungmin.park@samsung.com>
7921 L:      linux-mtd@lists.infradead.org
7922 S:      Maintained
7923 F:      drivers/mtd/onenand/
7924 F:      include/linux/mtd/onenand*.h
7925
7926 ONSTREAM SCSI TAPE DRIVER
7927 M:      Willem Riede <osst@riede.org>
7928 L:      osst-users@lists.sourceforge.net
7929 L:      linux-scsi@vger.kernel.org
7930 S:      Maintained
7931 F:      Documentation/scsi/osst.txt
7932 F:      drivers/scsi/osst.*
7933 F:      drivers/scsi/osst_*.h
7934 F:      drivers/scsi/st.h
7935
7936 OPENCORES I2C BUS DRIVER
7937 M:      Peter Korsgaard <jacmet@sunsite.dk>
7938 L:      linux-i2c@vger.kernel.org
7939 S:      Maintained
7940 F:      Documentation/i2c/busses/i2c-ocores
7941 F:      drivers/i2c/busses/i2c-ocores.c
7942
7943 OPEN FIRMWARE AND FLATTENED DEVICE TREE
7944 M:      Rob Herring <robh+dt@kernel.org>
7945 M:      Frank Rowand <frowand.list@gmail.com>
7946 M:      Grant Likely <grant.likely@linaro.org>
7947 L:      devicetree@vger.kernel.org
7948 W:      http://www.devicetree.org/
7949 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/glikely/linux.git
7950 S:      Maintained
7951 F:      drivers/of/
7952 F:      include/linux/of*.h
7953 F:      scripts/dtc/
7954
7955 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
7956 M:      Rob Herring <robh+dt@kernel.org>
7957 M:      Pawel Moll <pawel.moll@arm.com>
7958 M:      Mark Rutland <mark.rutland@arm.com>
7959 M:      Ian Campbell <ijc+devicetree@hellion.org.uk>
7960 M:      Kumar Gala <galak@codeaurora.org>
7961 L:      devicetree@vger.kernel.org
7962 S:      Maintained
7963 F:      Documentation/devicetree/
7964 F:      arch/*/boot/dts/
7965 F:      include/dt-bindings/
7966
7967 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
7968 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
7969 L:      devicetree@vger.kernel.org
7970 S:      Maintained
7971 F:      Documentation/devicetree/dynamic-resolution-notes.txt
7972 F:      Documentation/devicetree/overlay-notes.txt
7973 F:      drivers/of/overlay.c
7974 F:      drivers/of/resolver.c
7975
7976 OPENRISC ARCHITECTURE
7977 M:      Jonas Bonn <jonas@southpole.se>
7978 W:      http://openrisc.net
7979 L:      linux@lists.openrisc.net (moderated for non-subscribers)
7980 S:      Maintained
7981 T:      git git://openrisc.net/~jonas/linux
7982 F:      arch/openrisc/
7983
7984 OPENVSWITCH
7985 M:      Pravin Shelar <pshelar@nicira.com>
7986 L:      netdev@vger.kernel.org
7987 L:      dev@openvswitch.org
7988 W:      http://openvswitch.org
7989 S:      Maintained
7990 F:      net/openvswitch/
7991 F:      include/uapi/linux/openvswitch.h
7992
7993 OPERATING PERFORMANCE POINTS (OPP)
7994 M:      Viresh Kumar <vireshk@kernel.org>
7995 M:      Nishanth Menon <nm@ti.com>
7996 M:      Stephen Boyd <sboyd@codeaurora.org>
7997 L:      linux-pm@vger.kernel.org
7998 S:      Maintained
7999 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
8000 F:      drivers/base/power/opp/
8001 F:      include/linux/pm_opp.h
8002 F:      Documentation/power/opp.txt
8003 F:      Documentation/devicetree/bindings/opp/
8004
8005 OPL4 DRIVER
8006 M:      Clemens Ladisch <clemens@ladisch.de>
8007 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8008 T:      git git://git.alsa-project.org/alsa-kernel.git
8009 S:      Maintained
8010 F:      sound/drivers/opl4/
8011
8012 OPROFILE
8013 M:      Robert Richter <rric@kernel.org>
8014 L:      oprofile-list@lists.sf.net
8015 S:      Maintained
8016 F:      arch/*/include/asm/oprofile*.h
8017 F:      arch/*/oprofile/
8018 F:      drivers/oprofile/
8019 F:      include/linux/oprofile.h
8020
8021 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
8022 M:      Mark Fasheh <mfasheh@suse.com>
8023 M:      Joel Becker <jlbec@evilplan.org>
8024 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
8025 W:      http://ocfs2.wiki.kernel.org
8026 S:      Supported
8027 F:      Documentation/filesystems/ocfs2.txt
8028 F:      Documentation/filesystems/dlmfs.txt
8029 F:      fs/ocfs2/
8030
8031 ORINOCO DRIVER
8032 L:      linux-wireless@vger.kernel.org
8033 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
8034 W:      http://www.nongnu.org/orinoco/
8035 S:      Orphan
8036 F:      drivers/net/wireless/intersil/orinoco/
8037
8038 OSD LIBRARY and FILESYSTEM
8039 M:      Boaz Harrosh <ooo@electrozaur.com>
8040 M:      Benny Halevy <bhalevy@primarydata.com>
8041 L:      osd-dev@open-osd.org
8042 W:      http://open-osd.org
8043 T:      git git://git.open-osd.org/open-osd.git
8044 S:      Maintained
8045 F:      drivers/scsi/osd/
8046 F:      include/scsi/osd_*
8047 F:      fs/exofs/
8048
8049 OVERLAY FILESYSTEM
8050 M:      Miklos Szeredi <miklos@szeredi.hu>
8051 L:      linux-unionfs@vger.kernel.org
8052 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
8053 S:      Supported
8054 F:      fs/overlayfs/
8055 F:      Documentation/filesystems/overlayfs.txt
8056
8057 P54 WIRELESS DRIVER
8058 M:      Christian Lamparter <chunkeey@googlemail.com>
8059 L:      linux-wireless@vger.kernel.org
8060 W:      http://wireless.kernel.org/en/users/Drivers/p54
8061 S:      Maintained
8062 F:      drivers/net/wireless/intersil/p54/
8063
8064 PA SEMI ETHERNET DRIVER
8065 M:      Olof Johansson <olof@lixom.net>
8066 L:      netdev@vger.kernel.org
8067 S:      Maintained
8068 F:      drivers/net/ethernet/pasemi/*
8069
8070 PA SEMI SMBUS DRIVER
8071 M:      Olof Johansson <olof@lixom.net>
8072 L:      linux-i2c@vger.kernel.org
8073 S:      Maintained
8074 F:      drivers/i2c/busses/i2c-pasemi.c
8075
8076 PADATA PARALLEL EXECUTION MECHANISM
8077 M:      Steffen Klassert <steffen.klassert@secunet.com>
8078 L:      linux-crypto@vger.kernel.org
8079 S:      Maintained
8080 F:      kernel/padata.c
8081 F:      include/linux/padata.h
8082 F:      Documentation/padata.txt
8083
8084 PANASONIC LAPTOP ACPI EXTRAS DRIVER
8085 M:      Harald Welte <laforge@gnumonks.org>
8086 L:      platform-driver-x86@vger.kernel.org
8087 S:      Maintained
8088 F:      drivers/platform/x86/panasonic-laptop.c
8089
8090 PANASONIC MN10300/AM33/AM34 PORT
8091 M:      David Howells <dhowells@redhat.com>
8092 M:      Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
8093 L:      linux-am33-list@redhat.com (moderated for non-subscribers)
8094 W:      ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
8095 S:      Maintained
8096 F:      Documentation/mn10300/
8097 F:      arch/mn10300/
8098
8099 PARALLEL PORT SUBSYSTEM
8100 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
8101 M:      Sudip Mukherjee <sudip@vectorindia.org>
8102 L:      linux-parport@lists.infradead.org (subscribers-only)
8103 S:      Maintained
8104 F:      drivers/parport/
8105 F:      include/linux/parport*.h
8106 F:      drivers/char/ppdev.c
8107 F:      include/uapi/linux/ppdev.h
8108 F:      Documentation/parport*.txt
8109
8110 PARAVIRT_OPS INTERFACE
8111 M:      Jeremy Fitzhardinge <jeremy@goop.org>
8112 M:      Chris Wright <chrisw@sous-sol.org>
8113 M:      Alok Kataria <akataria@vmware.com>
8114 M:      Rusty Russell <rusty@rustcorp.com.au>
8115 L:      virtualization@lists.linux-foundation.org
8116 S:      Supported
8117 F:      Documentation/virtual/paravirt_ops.txt
8118 F:      arch/*/kernel/paravirt*
8119 F:      arch/*/include/asm/paravirt.h
8120
8121 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
8122 M:      Tim Waugh <tim@cyberelk.net>
8123 L:      linux-parport@lists.infradead.org (subscribers-only)
8124 S:      Maintained
8125 F:      Documentation/blockdev/paride.txt
8126 F:      drivers/block/paride/
8127
8128 PARISC ARCHITECTURE
8129 M:      "James E.J. Bottomley" <jejb@parisc-linux.org>
8130 M:      Helge Deller <deller@gmx.de>
8131 L:      linux-parisc@vger.kernel.org
8132 W:      http://www.parisc-linux.org/
8133 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
8134 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
8135 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
8136 S:      Maintained
8137 F:      arch/parisc/
8138 F:      Documentation/parisc/
8139 F:      drivers/parisc/
8140 F:      drivers/char/agp/parisc-agp.c
8141 F:      drivers/input/serio/gscps2.c
8142 F:      drivers/parport/parport_gsc.*
8143 F:      drivers/tty/serial/8250/8250_gsc.c
8144 F:      drivers/video/fbdev/sti*
8145 F:      drivers/video/console/sti*
8146 F:      drivers/video/logo/logo_parisc*
8147
8148 PC87360 HARDWARE MONITORING DRIVER
8149 M:      Jim Cromie <jim.cromie@gmail.com>
8150 L:      lm-sensors@lm-sensors.org
8151 S:      Maintained
8152 F:      Documentation/hwmon/pc87360
8153 F:      drivers/hwmon/pc87360.c
8154
8155 PC8736x GPIO DRIVER
8156 M:      Jim Cromie <jim.cromie@gmail.com>
8157 S:      Maintained
8158 F:      drivers/char/pc8736x_gpio.c
8159
8160 PC87427 HARDWARE MONITORING DRIVER
8161 M:      Jean Delvare <jdelvare@suse.com>
8162 L:      lm-sensors@lm-sensors.org
8163 S:      Maintained
8164 F:      Documentation/hwmon/pc87427
8165 F:      drivers/hwmon/pc87427.c
8166
8167 PCA9532 LED DRIVER
8168 M:      Riku Voipio <riku.voipio@iki.fi>
8169 S:      Maintained
8170 F:      drivers/leds/leds-pca9532.c
8171 F:      include/linux/leds-pca9532.h
8172
8173 PCA9541 I2C BUS MASTER SELECTOR DRIVER
8174 M:      Guenter Roeck <linux@roeck-us.net>
8175 L:      linux-i2c@vger.kernel.org
8176 S:      Maintained
8177 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
8178
8179 PCDP - PRIMARY CONSOLE AND DEBUG PORT
8180 M:      Khalid Aziz <khalid@gonehiking.org>
8181 S:      Maintained
8182 F:      drivers/firmware/pcdp.*
8183
8184 PCI ERROR RECOVERY
8185 M:      Linas Vepstas <linasvepstas@gmail.com>
8186 L:      linux-pci@vger.kernel.org
8187 S:      Supported
8188 F:      Documentation/PCI/pci-error-recovery.txt
8189
8190 PCI SUBSYSTEM
8191 M:      Bjorn Helgaas <bhelgaas@google.com>
8192 L:      linux-pci@vger.kernel.org
8193 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
8194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
8195 S:      Supported
8196 F:      Documentation/PCI/
8197 F:      drivers/pci/
8198 F:      include/linux/pci*
8199 F:      arch/x86/pci/
8200 F:      arch/x86/kernel/quirks.c
8201
8202 PCI DRIVER FOR ALTERA PCIE IP
8203 M:      Ley Foon Tan <lftan@altera.com>
8204 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
8205 L:      linux-pci@vger.kernel.org
8206 S:      Supported
8207 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
8208 F:      drivers/pci/host/pcie-altera.c
8209
8210 PCI DRIVER FOR ARM VERSATILE PLATFORM
8211 M:      Rob Herring <robh@kernel.org>
8212 L:      linux-pci@vger.kernel.org
8213 L:      linux-arm-kernel@lists.infradead.org
8214 S:      Maintained
8215 F:      Documentation/devicetree/bindings/pci/versatile.txt
8216 F:      drivers/pci/host/pci-versatile.c
8217
8218 PCI DRIVER FOR APPLIEDMICRO XGENE
8219 M:      Tanmay Inamdar <tinamdar@apm.com>
8220 L:      linux-pci@vger.kernel.org
8221 L:      linux-arm-kernel@lists.infradead.org
8222 S:      Maintained
8223 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
8224 F:      drivers/pci/host/pci-xgene.c
8225
8226 PCI DRIVER FOR FREESCALE LAYERSCAPE
8227 M:      Minghuan Lian <minghuan.Lian@freescale.com>
8228 M:      Mingkai Hu <mingkai.hu@freescale.com>
8229 M:      Roy Zang <tie-fei.zang@freescale.com>
8230 L:      linuxppc-dev@lists.ozlabs.org
8231 L:      linux-pci@vger.kernel.org
8232 L:      linux-arm-kernel@lists.infradead.org
8233 S:      Maintained
8234 F:      drivers/pci/host/*layerscape*
8235
8236 PCI DRIVER FOR IMX6
8237 M:      Richard Zhu <Richard.Zhu@freescale.com>
8238 M:      Lucas Stach <l.stach@pengutronix.de>
8239 L:      linux-pci@vger.kernel.org
8240 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8241 S:      Maintained
8242 F:      drivers/pci/host/*imx6*
8243
8244 PCI DRIVER FOR TI KEYSTONE
8245 M:      Murali Karicheri <m-karicheri2@ti.com>
8246 L:      linux-pci@vger.kernel.org
8247 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8248 S:      Maintained
8249 F:      drivers/pci/host/*keystone*
8250
8251 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
8252 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8253 M:      Jason Cooper <jason@lakedaemon.net>
8254 L:      linux-pci@vger.kernel.org
8255 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8256 S:      Maintained
8257 F:      drivers/pci/host/*mvebu*
8258
8259 PCI DRIVER FOR NVIDIA TEGRA
8260 M:      Thierry Reding <thierry.reding@gmail.com>
8261 L:      linux-tegra@vger.kernel.org
8262 L:      linux-pci@vger.kernel.org
8263 S:      Supported
8264 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
8265 F:      drivers/pci/host/pci-tegra.c
8266
8267 PCI DRIVER FOR TI DRA7XX
8268 M:      Kishon Vijay Abraham I <kishon@ti.com>
8269 L:      linux-omap@vger.kernel.org
8270 L:      linux-pci@vger.kernel.org
8271 S:      Supported
8272 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
8273 F:      drivers/pci/host/pci-dra7xx.c
8274
8275 PCI DRIVER FOR RENESAS R-CAR
8276 M:      Simon Horman <horms@verge.net.au>
8277 L:      linux-pci@vger.kernel.org
8278 L:      linux-renesas-soc@vger.kernel.org
8279 S:      Maintained
8280 F:      drivers/pci/host/*rcar*
8281
8282 PCI DRIVER FOR SAMSUNG EXYNOS
8283 M:      Jingoo Han <jingoohan1@gmail.com>
8284 L:      linux-pci@vger.kernel.org
8285 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8286 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8287 S:      Maintained
8288 F:      drivers/pci/host/pci-exynos.c
8289
8290 PCI DRIVER FOR SYNOPSIS DESIGNWARE
8291 M:      Jingoo Han <jingoohan1@gmail.com>
8292 M:      Pratyush Anand <pratyush.anand@gmail.com>
8293 L:      linux-pci@vger.kernel.org
8294 S:      Maintained
8295 F:      drivers/pci/host/*designware*
8296
8297 PCI DRIVER FOR GENERIC OF HOSTS
8298 M:      Will Deacon <will.deacon@arm.com>
8299 L:      linux-pci@vger.kernel.org
8300 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8301 S:      Maintained
8302 F:      Documentation/devicetree/bindings/pci/host-generic-pci.txt
8303 F:      drivers/pci/host/pci-host-generic.c
8304
8305 PCIE DRIVER FOR ST SPEAR13XX
8306 M:      Pratyush Anand <pratyush.anand@gmail.com>
8307 L:      linux-pci@vger.kernel.org
8308 S:      Maintained
8309 F:      drivers/pci/host/*spear*
8310
8311 PCI MSI DRIVER FOR ALTERA MSI IP
8312 M:      Ley Foon Tan <lftan@altera.com>
8313 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
8314 L:      linux-pci@vger.kernel.org
8315 S:      Supported
8316 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
8317 F:      drivers/pci/host/pcie-altera-msi.c
8318
8319 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
8320 M:      Duc Dang <dhdang@apm.com>
8321 L:      linux-pci@vger.kernel.org
8322 L:      linux-arm-kernel@lists.infradead.org
8323 S:      Maintained
8324 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
8325 F:      drivers/pci/host/pci-xgene-msi.c
8326
8327 PCIE DRIVER FOR HISILICON
8328 M:      Zhou Wang <wangzhou1@hisilicon.com>
8329 L:      linux-pci@vger.kernel.org
8330 S:      Maintained
8331 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
8332 F:      drivers/pci/host/pcie-hisi.c
8333
8334 PCMCIA SUBSYSTEM
8335 P:      Linux PCMCIA Team
8336 L:      linux-pcmcia@lists.infradead.org
8337 W:      http://lists.infradead.org/mailman/listinfo/linux-pcmcia
8338 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
8339 S:      Maintained
8340 F:      Documentation/pcmcia/
8341 F:      drivers/pcmcia/
8342 F:      include/pcmcia/
8343
8344 PCNET32 NETWORK DRIVER
8345 M:      Don Fry <pcnet32@frontier.com>
8346 L:      netdev@vger.kernel.org
8347 S:      Maintained
8348 F:      drivers/net/ethernet/amd/pcnet32.c
8349
8350 PCRYPT PARALLEL CRYPTO ENGINE
8351 M:      Steffen Klassert <steffen.klassert@secunet.com>
8352 L:      linux-crypto@vger.kernel.org
8353 S:      Maintained
8354 F:      crypto/pcrypt.c
8355 F:      include/crypto/pcrypt.h
8356
8357 PER-CPU MEMORY ALLOCATOR
8358 M:      Tejun Heo <tj@kernel.org>
8359 M:      Christoph Lameter <cl@linux-foundation.org>
8360 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
8361 S:      Maintained
8362 F:      include/linux/percpu*.h
8363 F:      mm/percpu*.c
8364 F:      arch/*/include/asm/percpu.h
8365
8366 PER-TASK DELAY ACCOUNTING
8367 M:      Balbir Singh <bsingharora@gmail.com>
8368 S:      Maintained
8369 F:      include/linux/delayacct.h
8370 F:      kernel/delayacct.c
8371
8372 PERFORMANCE EVENTS SUBSYSTEM
8373 M:      Peter Zijlstra <peterz@infradead.org>
8374 M:      Ingo Molnar <mingo@redhat.com>
8375 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
8376 L:      linux-kernel@vger.kernel.org
8377 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
8378 S:      Supported
8379 F:      kernel/events/*
8380 F:      include/linux/perf_event.h
8381 F:      include/uapi/linux/perf_event.h
8382 F:      arch/*/kernel/perf_event*.c
8383 F:      arch/*/kernel/*/perf_event*.c
8384 F:      arch/*/kernel/*/*/perf_event*.c
8385 F:      arch/*/include/asm/perf_event.h
8386 F:      arch/*/kernel/perf_callchain.c
8387 F:      tools/perf/
8388
8389 PERSONALITY HANDLING
8390 M:      Christoph Hellwig <hch@infradead.org>
8391 L:      linux-abi-devel@lists.sourceforge.net
8392 S:      Maintained
8393 F:      include/linux/personality.h
8394 F:      include/uapi/linux/personality.h
8395
8396 PHONET PROTOCOL
8397 M:      Remi Denis-Courmont <courmisch@gmail.com>
8398 S:      Supported
8399 F:      Documentation/networking/phonet.txt
8400 F:      include/linux/phonet.h
8401 F:      include/net/phonet/
8402 F:      include/uapi/linux/phonet.h
8403 F:      net/phonet/
8404
8405 PHRAM MTD DRIVER
8406 M:      Joern Engel <joern@lazybastard.org>
8407 L:      linux-mtd@lists.infradead.org
8408 S:      Maintained
8409 F:      drivers/mtd/devices/phram.c
8410
8411 PICOLCD HID DRIVER
8412 M:      Bruno PrĂ©mont <bonbons@linux-vserver.org>
8413 L:      linux-input@vger.kernel.org
8414 S:      Maintained
8415 F:      drivers/hid/hid-picolcd*
8416
8417 PICOXCELL SUPPORT
8418 M:      Jamie Iles <jamie@jamieiles.com>
8419 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8420 T:      git git://github.com/jamieiles/linux-2.6-ji.git
8421 S:      Supported
8422 F:      arch/arm/boot/dts/picoxcell*
8423 F:      arch/arm/mach-picoxcell/
8424 F:      drivers/crypto/picoxcell*
8425
8426 PIN CONTROL SUBSYSTEM
8427 M:      Linus Walleij <linus.walleij@linaro.org>
8428 L:      linux-gpio@vger.kernel.org
8429 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
8430 S:      Maintained
8431 F:      drivers/pinctrl/
8432 F:      include/linux/pinctrl/
8433
8434 PIN CONTROLLER - ATMEL AT91
8435 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
8436 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8437 S:      Maintained
8438 F:      drivers/pinctrl/pinctrl-at91.*
8439
8440 PIN CONTROLLER - ATMEL AT91 PIO4
8441 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
8442 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8443 L:      linux-gpio@vger.kernel.org
8444 S:      Supported
8445 F:      drivers/pinctrl/pinctrl-at91-pio4.*
8446
8447 PIN CONTROLLER - INTEL
8448 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8449 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
8450 S:      Maintained
8451 F:      drivers/pinctrl/intel/
8452
8453 PIN CONTROLLER - RENESAS
8454 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8455 M:      Geert Uytterhoeven <geert+renesas@glider.be>
8456 L:      linux-renesas-soc@vger.kernel.org
8457 S:      Maintained
8458 F:      drivers/pinctrl/sh-pfc/
8459
8460 PIN CONTROLLER - SAMSUNG
8461 M:      Tomasz Figa <tomasz.figa@gmail.com>
8462 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8463 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8464 S:      Maintained
8465 F:      drivers/pinctrl/samsung/
8466
8467 PIN CONTROLLER - SINGLE
8468 M:      Tony Lindgren <tony@atomide.com>
8469 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
8470 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8471 L:      linux-omap@vger.kernel.org
8472 S:      Maintained
8473 F:      drivers/pinctrl/pinctrl-single.c
8474
8475 PIN CONTROLLER - ST SPEAR
8476 M:      Viresh Kumar <vireshk@kernel.org>
8477 L:      spear-devel@list.st.com
8478 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8479 W:      http://www.st.com/spear
8480 S:      Maintained
8481 F:      drivers/pinctrl/spear/
8482
8483 PKTCDVD DRIVER
8484 M:      Jiri Kosina <jikos@kernel.org>
8485 S:      Maintained
8486 F:      drivers/block/pktcdvd.c
8487 F:      include/linux/pktcdvd.h
8488 F:      include/uapi/linux/pktcdvd.h
8489
8490 PKUNITY SOC DRIVERS
8491 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
8492 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
8493 S:      Maintained
8494 T:      git git://github.com/gxt/linux.git
8495 F:      drivers/input/serio/i8042-unicore32io.h
8496 F:      drivers/i2c/busses/i2c-puv3.c
8497 F:      drivers/video/fbdev/fb-puv3.c
8498 F:      drivers/rtc/rtc-puv3.c
8499
8500 PMBUS HARDWARE MONITORING DRIVERS
8501 M:      Guenter Roeck <linux@roeck-us.net>
8502 L:      lm-sensors@lm-sensors.org
8503 W:      http://www.lm-sensors.org/
8504 W:      http://www.roeck-us.net/linux/drivers/
8505 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8506 S:      Maintained
8507 F:      Documentation/hwmon/pmbus
8508 F:      drivers/hwmon/pmbus/
8509 F:      include/linux/i2c/pmbus.h
8510
8511 PMC SIERRA MaxRAID DRIVER
8512 L:      linux-scsi@vger.kernel.org
8513 W:      http://www.pmc-sierra.com/
8514 S:      Orphan
8515 F:      drivers/scsi/pmcraid.*
8516
8517 PMC SIERRA PM8001 DRIVER
8518 M:      Jack Wang <jinpu.wang@profitbricks.com>
8519 M:      lindar_liu@usish.com
8520 L:      pmchba@pmcs.com
8521 L:      linux-scsi@vger.kernel.org
8522 S:      Supported
8523 F:      drivers/scsi/pm8001/
8524
8525 POSIX CLOCKS and TIMERS
8526 M:      Thomas Gleixner <tglx@linutronix.de>
8527 L:      linux-kernel@vger.kernel.org
8528 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8529 S:      Maintained
8530 F:      fs/timerfd.c
8531 F:      include/linux/timer*
8532 F:      kernel/time/*timer*
8533
8534 POWER MANAGEMENT CORE
8535 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
8536 L:      linux-pm@vger.kernel.org
8537 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
8538 S:      Supported
8539 F:      drivers/base/power/
8540 F:      include/linux/pm.h
8541 F:      include/linux/pm_*
8542 F:      include/linux/powercap.h
8543 F:      drivers/powercap/
8544
8545 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
8546 M:      Sebastian Reichel <sre@kernel.org>
8547 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
8548 M:      David Woodhouse <dwmw2@infradead.org>
8549 L:      linux-pm@vger.kernel.org
8550 T:      git git://git.infradead.org/battery-2.6.git
8551 S:      Maintained
8552 F:      include/linux/power_supply.h
8553 F:      drivers/power/
8554 X:      drivers/power/avs/
8555
8556 POWER STATE COORDINATION INTERFACE (PSCI)
8557 M:      Mark Rutland <mark.rutland@arm.com>
8558 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
8559 L:      linux-arm-kernel@lists.infradead.org
8560 S:      Maintained
8561 F:      drivers/firmware/psci.c
8562 F:      include/linux/psci.h
8563 F:      include/uapi/linux/psci.h
8564
8565 PNP SUPPORT
8566 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
8567 S:      Maintained
8568 F:      drivers/pnp/
8569
8570 PPP PROTOCOL DRIVERS AND COMPRESSORS
8571 M:      Paul Mackerras <paulus@samba.org>
8572 L:      linux-ppp@vger.kernel.org
8573 S:      Maintained
8574 F:      drivers/net/ppp/ppp_*
8575
8576 PPP OVER ATM (RFC 2364)
8577 M:      Mitchell Blank Jr <mitch@sfgoth.com>
8578 S:      Maintained
8579 F:      net/atm/pppoatm.c
8580 F:      include/uapi/linux/atmppp.h
8581
8582 PPP OVER ETHERNET
8583 M:      Michal Ostrowski <mostrows@earthlink.net>
8584 S:      Maintained
8585 F:      drivers/net/ppp/pppoe.c
8586 F:      drivers/net/ppp/pppox.c
8587
8588 PPP OVER L2TP
8589 M:      James Chapman <jchapman@katalix.com>
8590 S:      Maintained
8591 F:      net/l2tp/l2tp_ppp.c
8592 F:      include/linux/if_pppol2tp.h
8593 F:      include/uapi/linux/if_pppol2tp.h
8594
8595 PPS SUPPORT
8596 M:      Rodolfo Giometti <giometti@enneenne.com>
8597 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
8598 L:      linuxpps@ml.enneenne.com (subscribers-only)
8599 S:      Maintained
8600 F:      Documentation/pps/
8601 F:      drivers/pps/
8602 F:      include/linux/pps*.h
8603
8604 PPTP DRIVER
8605 M:      Dmitry Kozlov <xeb@mail.ru>
8606 L:      netdev@vger.kernel.org
8607 S:      Maintained
8608 F:      drivers/net/ppp/pptp.c
8609 W:      http://sourceforge.net/projects/accel-pptp
8610
8611 PREEMPTIBLE KERNEL
8612 M:      Robert Love <rml@tech9.net>
8613 L:      kpreempt-tech@lists.sourceforge.net
8614 W:      ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
8615 S:      Supported
8616 F:      Documentation/preempt-locking.txt
8617 F:      include/linux/preempt.h
8618
8619 PRISM54 WIRELESS DRIVER
8620 M:      "Luis R. Rodriguez" <mcgrof@gmail.com>
8621 L:      linux-wireless@vger.kernel.org
8622 W:      http://wireless.kernel.org/en/users/Drivers/p54
8623 S:      Obsolete
8624 F:      drivers/net/wireless/intersil/prism54/
8625
8626 PS3 NETWORK SUPPORT
8627 M:      Geoff Levand <geoff@infradead.org>
8628 L:      netdev@vger.kernel.org
8629 L:      linuxppc-dev@lists.ozlabs.org
8630 S:      Maintained
8631 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
8632
8633 PS3 PLATFORM SUPPORT
8634 M:      Geoff Levand <geoff@infradead.org>
8635 L:      linuxppc-dev@lists.ozlabs.org
8636 S:      Maintained
8637 F:      arch/powerpc/boot/ps3*
8638 F:      arch/powerpc/include/asm/lv1call.h
8639 F:      arch/powerpc/include/asm/ps3*.h
8640 F:      arch/powerpc/platforms/ps3/
8641 F:      drivers/*/ps3*
8642 F:      drivers/ps3/
8643 F:      drivers/rtc/rtc-ps3.c
8644 F:      drivers/usb/host/*ps3.c
8645 F:      sound/ppc/snd_ps3*
8646
8647 PS3VRAM DRIVER
8648 M:      Jim Paris <jim@jtan.com>
8649 M:      Geoff Levand <geoff@infradead.org>
8650 L:      linuxppc-dev@lists.ozlabs.org
8651 S:      Maintained
8652 F:      drivers/block/ps3vram.c
8653
8654 PSTORE FILESYSTEM
8655 M:      Anton Vorontsov <anton@enomsg.org>
8656 M:      Colin Cross <ccross@android.com>
8657 M:      Kees Cook <keescook@chromium.org>
8658 M:      Tony Luck <tony.luck@intel.com>
8659 S:      Maintained
8660 T:      git git://git.infradead.org/users/cbou/linux-pstore.git
8661 F:      fs/pstore/
8662 F:      include/linux/pstore*
8663 F:      drivers/firmware/efi/efi-pstore.c
8664 F:      drivers/acpi/apei/erst.c
8665
8666 PTP HARDWARE CLOCK SUPPORT
8667 M:      Richard Cochran <richardcochran@gmail.com>
8668 L:      netdev@vger.kernel.org
8669 S:      Maintained
8670 W:      http://linuxptp.sourceforge.net/
8671 F:      Documentation/ABI/testing/sysfs-ptp
8672 F:      Documentation/ptp/*
8673 F:      drivers/net/ethernet/freescale/gianfar_ptp.c
8674 F:      drivers/net/phy/dp83640*
8675 F:      drivers/ptp/*
8676 F:      include/linux/ptp_cl*
8677
8678 PTRACE SUPPORT
8679 M:      Roland McGrath <roland@hack.frob.com>
8680 M:      Oleg Nesterov <oleg@redhat.com>
8681 S:      Maintained
8682 F:      include/asm-generic/syscall.h
8683 F:      include/linux/ptrace.h
8684 F:      include/linux/regset.h
8685 F:      include/linux/tracehook.h
8686 F:      include/uapi/linux/ptrace.h
8687 F:      kernel/ptrace.c
8688
8689 PVRUSB2 VIDEO4LINUX DRIVER
8690 M:      Mike Isely <isely@pobox.com>
8691 L:      pvrusb2@isely.net       (subscribers-only)
8692 L:      linux-media@vger.kernel.org
8693 W:      http://www.isely.net/pvrusb2/
8694 T:      git git://linuxtv.org/media_tree.git
8695 S:      Maintained
8696 F:      Documentation/video4linux/README.pvrusb2
8697 F:      drivers/media/usb/pvrusb2/
8698
8699 PWC WEBCAM DRIVER
8700 M:      Hans de Goede <hdegoede@redhat.com>
8701 L:      linux-media@vger.kernel.org
8702 T:      git git://linuxtv.org/media_tree.git
8703 S:      Maintained
8704 F:      drivers/media/usb/pwc/*
8705
8706 PWM FAN DRIVER
8707 M:      Kamil Debski <k.debski@samsung.com>
8708 L:      lm-sensors@lm-sensors.org
8709 S:      Supported
8710 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
8711 F:      Documentation/hwmon/pwm-fan
8712 F:      drivers/hwmon/pwm-fan.c
8713
8714 PWM SUBSYSTEM
8715 M:      Thierry Reding <thierry.reding@gmail.com>
8716 L:      linux-pwm@vger.kernel.org
8717 S:      Maintained
8718 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
8719 F:      Documentation/pwm.txt
8720 F:      Documentation/devicetree/bindings/pwm/
8721 F:      include/linux/pwm.h
8722 F:      drivers/pwm/
8723 F:      drivers/video/backlight/pwm_bl.c
8724 F:      include/linux/pwm_backlight.h
8725
8726 PXA2xx/PXA3xx SUPPORT
8727 M:      Daniel Mack <daniel@zonque.org>
8728 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
8729 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8730 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8731 T:      git git://github.com/hzhuang1/linux.git
8732 T:      git git://github.com/rjarzmik/linux.git
8733 S:      Maintained
8734 F:      arch/arm/mach-pxa/
8735 F:      drivers/dma/pxa*
8736 F:      drivers/pcmcia/pxa2xx*
8737 F:      drivers/pinctrl/pxa/
8738 F:      drivers/spi/spi-pxa2xx*
8739 F:      drivers/usb/gadget/udc/pxa2*
8740 F:      include/sound/pxa2xx-lib.h
8741 F:      sound/arm/pxa*
8742 F:      sound/soc/pxa/
8743
8744 PXA GPIO DRIVER
8745 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8746 L:      linux-gpio@vger.kernel.org
8747 S:      Maintained
8748 F:      drivers/gpio/gpio-pxa.c
8749
8750 PXA3xx NAND FLASH DRIVER
8751 M:      Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
8752 L:      linux-mtd@lists.infradead.org
8753 S:      Maintained
8754 F:      drivers/mtd/nand/pxa3xx_nand.c
8755
8756 MMP SUPPORT
8757 M:      Eric Miao <eric.y.miao@gmail.com>
8758 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
8759 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8760 T:      git git://github.com/hzhuang1/linux.git
8761 T:      git git://git.linaro.org/people/ycmiao/pxa-linux.git
8762 S:      Maintained
8763 F:      arch/arm/mach-mmp/
8764
8765 PXA MMCI DRIVER
8766 S:      Orphan
8767
8768 PXA RTC DRIVER
8769 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8770 L:      rtc-linux@googlegroups.com
8771 S:      Maintained
8772
8773 QAT DRIVER
8774 M:      Tadeusz Struk <tadeusz.struk@intel.com>
8775 L:      qat-linux@intel.com
8776 S:      Supported
8777 F:      drivers/crypto/qat/
8778
8779 QIB DRIVER
8780 M:      Mike Marciniszyn <infinipath@intel.com>
8781 L:      linux-rdma@vger.kernel.org
8782 S:      Supported
8783 F:      drivers/infiniband/hw/qib/
8784
8785 QLOGIC QLA1280 SCSI DRIVER
8786 M:      Michael Reed <mdr@sgi.com>
8787 L:      linux-scsi@vger.kernel.org
8788 S:      Maintained
8789 F:      drivers/scsi/qla1280.[ch]
8790
8791 QLOGIC QLA2XXX FC-SCSI DRIVER
8792 M:      qla2xxx-upstream@qlogic.com
8793 L:      linux-scsi@vger.kernel.org
8794 S:      Supported
8795 F:      Documentation/scsi/LICENSE.qla2xxx
8796 F:      drivers/scsi/qla2xxx/
8797
8798 QLOGIC QLA4XXX iSCSI DRIVER
8799 M:      QLogic-Storage-Upstream@qlogic.com
8800 L:      linux-scsi@vger.kernel.org
8801 S:      Supported
8802 F:      Documentation/scsi/LICENSE.qla4xxx
8803 F:      drivers/scsi/qla4xxx/
8804
8805 QLOGIC QLA3XXX NETWORK DRIVER
8806 M:      Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
8807 M:      Ron Mercer <ron.mercer@qlogic.com>
8808 M:      linux-driver@qlogic.com
8809 L:      netdev@vger.kernel.org
8810 S:      Supported
8811 F:      Documentation/networking/LICENSE.qla3xxx
8812 F:      drivers/net/ethernet/qlogic/qla3xxx.*
8813
8814 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
8815 M:      Dept-GELinuxNICDev@qlogic.com
8816 L:      netdev@vger.kernel.org
8817 S:      Supported
8818 F:      drivers/net/ethernet/qlogic/qlcnic/
8819
8820 QLOGIC QLGE 10Gb ETHERNET DRIVER
8821 M:      Harish Patil <harish.patil@qlogic.com>
8822 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
8823 M:      Dept-GELinuxNICDev@qlogic.com
8824 M:      linux-driver@qlogic.com
8825 L:      netdev@vger.kernel.org
8826 S:      Supported
8827 F:      drivers/net/ethernet/qlogic/qlge/
8828
8829 QLOGIC QL4xxx ETHERNET DRIVER
8830 M:      Yuval Mintz <Yuval.Mintz@qlogic.com>
8831 M:      Ariel Elior <Ariel.Elior@qlogic.com>
8832 M:      everest-linux-l2@qlogic.com
8833 L:      netdev@vger.kernel.org
8834 S:      Supported
8835 F:      drivers/net/ethernet/qlogic/qed/
8836 F:      include/linux/qed/
8837 F:      drivers/net/ethernet/qlogic/qede/
8838
8839 QNX4 FILESYSTEM
8840 M:      Anders Larsen <al@alarsen.net>
8841 W:      http://www.alarsen.net/linux/qnx4fs/
8842 S:      Maintained
8843 F:      fs/qnx4/
8844 F:      include/uapi/linux/qnx4_fs.h
8845 F:      include/uapi/linux/qnxtypes.h
8846
8847 QT1010 MEDIA DRIVER
8848 M:      Antti Palosaari <crope@iki.fi>
8849 L:      linux-media@vger.kernel.org
8850 W:      https://linuxtv.org
8851 W:      http://palosaari.fi/linux/
8852 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8853 T:      git git://linuxtv.org/anttip/media_tree.git
8854 S:      Maintained
8855 F:      drivers/media/tuners/qt1010*
8856
8857 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
8858 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
8859 L:      linux-wireless@vger.kernel.org
8860 L:      ath9k-devel@lists.ath9k.org
8861 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
8862 S:      Supported
8863 F:      drivers/net/wireless/ath/ath9k/
8864
8865 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
8866 M:      Kalle Valo <kvalo@qca.qualcomm.com>
8867 L:      ath10k@lists.infradead.org
8868 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
8869 T:      git git://github.com/kvalo/ath.git
8870 S:      Supported
8871 F:      drivers/net/wireless/ath/ath10k/
8872
8873 QUALCOMM HEXAGON ARCHITECTURE
8874 M:      Richard Kuo <rkuo@codeaurora.org>
8875 L:      linux-hexagon@vger.kernel.org
8876 S:      Supported
8877 F:      arch/hexagon/
8878
8879 QUALCOMM WCN36XX WIRELESS DRIVER
8880 M:      Eugene Krasnikov <k.eugene.e@gmail.com>
8881 L:      wcn36xx@lists.infradead.org
8882 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
8883 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
8884 S:      Supported
8885 F:      drivers/net/wireless/ath/wcn36xx/
8886
8887 RADOS BLOCK DEVICE (RBD)
8888 M:      Ilya Dryomov <idryomov@gmail.com>
8889 M:      Sage Weil <sage@redhat.com>
8890 M:      Alex Elder <elder@kernel.org>
8891 L:      ceph-devel@vger.kernel.org
8892 W:      http://ceph.com/
8893 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
8894 T:      git git://github.com/ceph/ceph-client.git
8895 S:      Supported
8896 F:      Documentation/ABI/testing/sysfs-bus-rbd
8897 F:      drivers/block/rbd.c
8898 F:      drivers/block/rbd_types.h
8899
8900 RADEON FRAMEBUFFER DISPLAY DRIVER
8901 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
8902 L:      linux-fbdev@vger.kernel.org
8903 S:      Maintained
8904 F:      drivers/video/fbdev/aty/radeon*
8905 F:      include/uapi/linux/radeonfb.h
8906
8907 RADIOSHARK RADIO DRIVER
8908 M:      Hans de Goede <hdegoede@redhat.com>
8909 L:      linux-media@vger.kernel.org
8910 T:      git git://linuxtv.org/media_tree.git
8911 S:      Maintained
8912 F:      drivers/media/radio/radio-shark.c
8913
8914 RADIOSHARK2 RADIO DRIVER
8915 M:      Hans de Goede <hdegoede@redhat.com>
8916 L:      linux-media@vger.kernel.org
8917 T:      git git://linuxtv.org/media_tree.git
8918 S:      Maintained
8919 F:      drivers/media/radio/radio-shark2.c
8920 F:      drivers/media/radio/radio-tea5777.c
8921
8922 RAGE128 FRAMEBUFFER DISPLAY DRIVER
8923 M:      Paul Mackerras <paulus@samba.org>
8924 L:      linux-fbdev@vger.kernel.org
8925 S:      Maintained
8926 F:      drivers/video/fbdev/aty/aty128fb.c
8927
8928 RALINK RT2X00 WIRELESS LAN DRIVER
8929 P:      rt2x00 project
8930 M:      Stanislaw Gruszka <sgruszka@redhat.com>
8931 M:      Helmut Schaa <helmut.schaa@googlemail.com>
8932 L:      linux-wireless@vger.kernel.org
8933 S:      Maintained
8934 F:      drivers/net/wireless/ralink/rt2x00/
8935
8936 RAMDISK RAM BLOCK DEVICE DRIVER
8937 M:      Jens Axboe <axboe@kernel.dk>
8938 S:      Maintained
8939 F:      Documentation/blockdev/ramdisk.txt
8940 F:      drivers/block/brd.c
8941
8942 RANDOM NUMBER DRIVER
8943 M:      "Theodore Ts'o" <tytso@mit.edu>
8944 S:      Maintained
8945 F:      drivers/char/random.c
8946
8947 RAPIDIO SUBSYSTEM
8948 M:      Matt Porter <mporter@kernel.crashing.org>
8949 M:      Alexandre Bounine <alexandre.bounine@idt.com>
8950 S:      Maintained
8951 F:      drivers/rapidio/
8952
8953 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
8954 L:      linux-wireless@vger.kernel.org
8955 S:      Orphan
8956 F:      drivers/net/wireless/ray*
8957
8958 RCUTORTURE MODULE
8959 M:      Josh Triplett <josh@joshtriplett.org>
8960 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8961 L:      linux-kernel@vger.kernel.org
8962 S:      Supported
8963 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8964 F:      Documentation/RCU/torture.txt
8965 F:      kernel/rcu/rcutorture.c
8966
8967 RCUTORTURE TEST FRAMEWORK
8968 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8969 M:      Josh Triplett <josh@joshtriplett.org>
8970 R:      Steven Rostedt <rostedt@goodmis.org>
8971 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8972 R:      Lai Jiangshan <jiangshanlai@gmail.com>
8973 L:      linux-kernel@vger.kernel.org
8974 S:      Supported
8975 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8976 F:      tools/testing/selftests/rcutorture
8977
8978 RDC R-321X SoC
8979 M:      Florian Fainelli <florian@openwrt.org>
8980 S:      Maintained
8981
8982 RDC R6040 FAST ETHERNET DRIVER
8983 M:      Florian Fainelli <florian@openwrt.org>
8984 L:      netdev@vger.kernel.org
8985 S:      Maintained
8986 F:      drivers/net/ethernet/rdc/r6040.c
8987
8988 RDS - RELIABLE DATAGRAM SOCKETS
8989 M:      Chien Yen <chien.yen@oracle.com>
8990 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
8991 S:      Supported
8992 F:      net/rds/
8993
8994 READ-COPY UPDATE (RCU)
8995 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8996 M:      Josh Triplett <josh@joshtriplett.org>
8997 R:      Steven Rostedt <rostedt@goodmis.org>
8998 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8999 R:      Lai Jiangshan <jiangshanlai@gmail.com>
9000 L:      linux-kernel@vger.kernel.org
9001 W:      http://www.rdrop.com/users/paulmck/RCU/
9002 S:      Supported
9003 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9004 F:      Documentation/RCU/
9005 X:      Documentation/RCU/torture.txt
9006 F:      include/linux/rcu*
9007 X:      include/linux/srcu.h
9008 F:      kernel/rcu/
9009 X:      kernel/torture.c
9010
9011 REAL TIME CLOCK (RTC) SUBSYSTEM
9012 M:      Alessandro Zummo <a.zummo@towertech.it>
9013 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
9014 L:      rtc-linux@googlegroups.com
9015 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
9016 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
9017 S:      Maintained
9018 F:      Documentation/rtc.txt
9019 F:      drivers/rtc/
9020 F:      include/linux/rtc.h
9021 F:      include/uapi/linux/rtc.h
9022
9023 REALTEK AUDIO CODECS
9024 M:      Bard Liao <bardliao@realtek.com>
9025 M:      Oder Chiou <oder_chiou@realtek.com>
9026 S:      Maintained
9027 F:      sound/soc/codecs/rt*
9028 F:      include/sound/rt*.h
9029
9030 REISERFS FILE SYSTEM
9031 L:      reiserfs-devel@vger.kernel.org
9032 S:      Supported
9033 F:      fs/reiserfs/
9034
9035 REGISTER MAP ABSTRACTION
9036 M:      Mark Brown <broonie@kernel.org>
9037 L:      linux-kernel@vger.kernel.org
9038 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
9039 S:      Supported
9040 F:      drivers/base/regmap/
9041 F:      include/linux/regmap.h
9042
9043 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
9044 M:      Ohad Ben-Cohen <ohad@wizery.com>
9045 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
9046 S:      Maintained
9047 F:      drivers/remoteproc/
9048 F:      Documentation/remoteproc.txt
9049 F:      include/linux/remoteproc.h
9050
9051 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
9052 M:      Ohad Ben-Cohen <ohad@wizery.com>
9053 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
9054 S:      Maintained
9055 F:      drivers/rpmsg/
9056 F:      Documentation/rpmsg.txt
9057 F:      include/linux/rpmsg.h
9058
9059 RENESAS ETHERNET DRIVERS
9060 R:      Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
9061 L:      netdev@vger.kernel.org
9062 L:      linux-renesas-soc@vger.kernel.org
9063 F:      drivers/net/ethernet/renesas/
9064 F:      include/linux/sh_eth.h
9065
9066 RENESAS USB2 PHY DRIVER
9067 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
9068 L:      linux-renesas-soc@vger.kernel.org
9069 S:      Maintained
9070 F:      drivers/phy/phy-rcar-gen3-usb2.c
9071
9072 RESET CONTROLLER FRAMEWORK
9073 M:      Philipp Zabel <p.zabel@pengutronix.de>
9074 S:      Maintained
9075 F:      drivers/reset/
9076 F:      Documentation/devicetree/bindings/reset/
9077 F:      include/dt-bindings/reset/
9078 F:      include/linux/reset.h
9079 F:      include/linux/reset-controller.h
9080
9081 RFKILL
9082 M:      Johannes Berg <johannes@sipsolutions.net>
9083 L:      linux-wireless@vger.kernel.org
9084 W:      http://wireless.kernel.org/
9085 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
9086 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
9087 S:      Maintained
9088 F:      Documentation/rfkill.txt
9089 F:      net/rfkill/
9090
9091 RHASHTABLE
9092 M:      Thomas Graf <tgraf@suug.ch>
9093 L:      netdev@vger.kernel.org
9094 S:      Maintained
9095 F:      lib/rhashtable.c
9096 F:      include/linux/rhashtable.h
9097
9098 RICOH SMARTMEDIA/XD DRIVER
9099 M:      Maxim Levitsky <maximlevitsky@gmail.com>
9100 S:      Maintained
9101 F:      drivers/mtd/nand/r852.c
9102 F:      drivers/mtd/nand/r852.h
9103
9104 RICOH R5C592 MEMORYSTICK DRIVER
9105 M:      Maxim Levitsky <maximlevitsky@gmail.com>
9106 S:      Maintained
9107 F:      drivers/memstick/host/r592.*
9108
9109 ROCCAT DRIVERS
9110 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
9111 W:      http://sourceforge.net/projects/roccat/
9112 S:      Maintained
9113 F:      drivers/hid/hid-roccat*
9114 F:      include/linux/hid-roccat*
9115 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
9116
9117 ROCKER DRIVER
9118 M:      Jiri Pirko <jiri@resnulli.us>
9119 M:      Scott Feldman <sfeldma@gmail.com>
9120 L:      netdev@vger.kernel.org
9121 S:      Supported
9122 F:      drivers/net/ethernet/rocker/
9123
9124 ROCKETPORT DRIVER
9125 P:      Comtrol Corp.
9126 W:      http://www.comtrol.com
9127 S:      Maintained
9128 F:      Documentation/serial/rocket.txt
9129 F:      drivers/tty/rocket*
9130
9131 ROCKETPORT EXPRESS/INFINITY DRIVER
9132 M:      Kevin Cernekee <cernekee@gmail.com>
9133 L:      linux-serial@vger.kernel.org
9134 S:      Odd Fixes
9135 F:      drivers/tty/serial/rp2.*
9136
9137 ROSE NETWORK LAYER
9138 M:      Ralf Baechle <ralf@linux-mips.org>
9139 L:      linux-hams@vger.kernel.org
9140 W:      http://www.linux-ax25.org/
9141 S:      Maintained
9142 F:      include/net/rose.h
9143 F:      include/uapi/linux/rose.h
9144 F:      net/rose/
9145
9146 RTL2830 MEDIA DRIVER
9147 M:      Antti Palosaari <crope@iki.fi>
9148 L:      linux-media@vger.kernel.org
9149 W:      https://linuxtv.org
9150 W:      http://palosaari.fi/linux/
9151 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9152 T:      git git://linuxtv.org/anttip/media_tree.git
9153 S:      Maintained
9154 F:      drivers/media/dvb-frontends/rtl2830*
9155
9156 RTL2832 MEDIA DRIVER
9157 M:      Antti Palosaari <crope@iki.fi>
9158 L:      linux-media@vger.kernel.org
9159 W:      https://linuxtv.org
9160 W:      http://palosaari.fi/linux/
9161 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9162 T:      git git://linuxtv.org/anttip/media_tree.git
9163 S:      Maintained
9164 F:      drivers/media/dvb-frontends/rtl2832*
9165
9166 RTL2832_SDR MEDIA DRIVER
9167 M:      Antti Palosaari <crope@iki.fi>
9168 L:      linux-media@vger.kernel.org
9169 W:      https://linuxtv.org
9170 W:      http://palosaari.fi/linux/
9171 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9172 T:      git git://linuxtv.org/anttip/media_tree.git
9173 S:      Maintained
9174 F:      drivers/media/dvb-frontends/rtl2832_sdr*
9175
9176 RTL8180 WIRELESS DRIVER
9177 L:      linux-wireless@vger.kernel.org
9178 W:      http://wireless.kernel.org/
9179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9180 S:      Orphan
9181 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
9182
9183 RTL8187 WIRELESS DRIVER
9184 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
9185 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
9186 M:      Larry Finger <Larry.Finger@lwfinger.net>
9187 L:      linux-wireless@vger.kernel.org
9188 W:      http://wireless.kernel.org/
9189 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9190 S:      Maintained
9191 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
9192
9193 RTL8192CE WIRELESS DRIVER
9194 M:      Larry Finger <Larry.Finger@lwfinger.net>
9195 M:      Chaoming Li <chaoming_li@realsil.com.cn>
9196 L:      linux-wireless@vger.kernel.org
9197 W:      http://wireless.kernel.org/
9198 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9199 S:      Maintained
9200 F:      drivers/net/wireless/realtek/rtlwifi/
9201 F:      drivers/net/wireless/realtek/rtlwifi/rtl8192ce/
9202
9203 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
9204 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
9205 L:      linux-wireless@vger.kernel.org
9206 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8723au-mac80211
9207 S:      Maintained
9208 F:      drivers/net/wireless/realtek/rtl8xxxu/
9209
9210 S3 SAVAGE FRAMEBUFFER DRIVER
9211 M:      Antonino Daplas <adaplas@gmail.com>
9212 L:      linux-fbdev@vger.kernel.org
9213 S:      Maintained
9214 F:      drivers/video/fbdev/savage/
9215
9216 S390
9217 M:      Martin Schwidefsky <schwidefsky@de.ibm.com>
9218 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
9219 L:      linux-s390@vger.kernel.org
9220 W:      http://www.ibm.com/developerworks/linux/linux390/
9221 S:      Supported
9222 F:      arch/s390/
9223 F:      drivers/s390/
9224 F:      Documentation/s390/
9225 F:      Documentation/DocBook/s390*
9226
9227 S390 COMMON I/O LAYER
9228 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
9229 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
9230 L:      linux-s390@vger.kernel.org
9231 W:      http://www.ibm.com/developerworks/linux/linux390/
9232 S:      Supported
9233 F:      drivers/s390/cio/
9234
9235 S390 DASD DRIVER
9236 M:      Stefan Weinhuber <wein@de.ibm.com>
9237 M:      Stefan Haberland <stefan.haberland@de.ibm.com>
9238 L:      linux-s390@vger.kernel.org
9239 W:      http://www.ibm.com/developerworks/linux/linux390/
9240 S:      Supported
9241 F:      drivers/s390/block/dasd*
9242 F:      block/partitions/ibm.c
9243
9244 S390 NETWORK DRIVERS
9245 M:      Ursula Braun <ubraun@linux.vnet.ibm.com>
9246 L:      linux-s390@vger.kernel.org
9247 W:      http://www.ibm.com/developerworks/linux/linux390/
9248 S:      Supported
9249 F:      drivers/s390/net/
9250
9251 S390 PCI SUBSYSTEM
9252 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
9253 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
9254 L:      linux-s390@vger.kernel.org
9255 W:      http://www.ibm.com/developerworks/linux/linux390/
9256 S:      Supported
9257 F:      arch/s390/pci/
9258 F:      drivers/pci/hotplug/s390_pci_hpc.c
9259
9260 S390 ZCRYPT DRIVER
9261 M:      Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
9262 L:      linux-s390@vger.kernel.org
9263 W:      http://www.ibm.com/developerworks/linux/linux390/
9264 S:      Supported
9265 F:      drivers/s390/crypto/
9266
9267 S390 ZFCP DRIVER
9268 M:      Steffen Maier <maier@linux.vnet.ibm.com>
9269 L:      linux-s390@vger.kernel.org
9270 W:      http://www.ibm.com/developerworks/linux/linux390/
9271 S:      Supported
9272 F:      drivers/s390/scsi/zfcp_*
9273
9274 S390 IUCV NETWORK LAYER
9275 M:      Ursula Braun <ubraun@linux.vnet.ibm.com>
9276 L:      linux-s390@vger.kernel.org
9277 W:      http://www.ibm.com/developerworks/linux/linux390/
9278 S:      Supported
9279 F:      drivers/s390/net/*iucv*
9280 F:      include/net/iucv/
9281 F:      net/iucv/
9282
9283 S390 IOMMU (PCI)
9284 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
9285 L:      linux-s390@vger.kernel.org
9286 W:      http://www.ibm.com/developerworks/linux/linux390/
9287 S:      Supported
9288 F:      drivers/iommu/s390-iommu.c
9289
9290 S3C24XX SD/MMC Driver
9291 M:      Ben Dooks <ben-linux@fluff.org>
9292 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9293 S:      Supported
9294 F:      drivers/mmc/host/s3cmci.*
9295
9296 SAA6588 RDS RECEIVER DRIVER
9297 M:      Hans Verkuil <hverkuil@xs4all.nl>
9298 L:      linux-media@vger.kernel.org
9299 T:      git git://linuxtv.org/media_tree.git
9300 W:      https://linuxtv.org
9301 S:      Odd Fixes
9302 F:      drivers/media/i2c/saa6588*
9303
9304 SAA7134 VIDEO4LINUX DRIVER
9305 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9306 L:      linux-media@vger.kernel.org
9307 W:      https://linuxtv.org
9308 T:      git git://linuxtv.org/media_tree.git
9309 S:      Odd fixes
9310 F:      Documentation/video4linux/*.saa7134
9311 F:      drivers/media/pci/saa7134/
9312
9313 SAA7146 VIDEO4LINUX-2 DRIVER
9314 M:      Hans Verkuil <hverkuil@xs4all.nl>
9315 L:      linux-media@vger.kernel.org
9316 T:      git git://linuxtv.org/media_tree.git
9317 S:      Maintained
9318 F:      drivers/media/common/saa7146/
9319 F:      drivers/media/pci/saa7146/
9320 F:      include/media/saa7146*
9321
9322 SAMSUNG LAPTOP DRIVER
9323 M:      Corentin Chary <corentin.chary@gmail.com>
9324 L:      platform-driver-x86@vger.kernel.org
9325 S:      Maintained
9326 F:      drivers/platform/x86/samsung-laptop.c
9327
9328 SAMSUNG AUDIO (ASoC) DRIVERS
9329 M:      Sangbeom Kim <sbkim73@samsung.com>
9330 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9331 S:      Supported
9332 F:      sound/soc/samsung/
9333
9334 SAMSUNG FRAMEBUFFER DRIVER
9335 M:      Jingoo Han <jingoohan1@gmail.com>
9336 L:      linux-fbdev@vger.kernel.org
9337 S:      Maintained
9338 F:      drivers/video/fbdev/s3c-fb.c
9339
9340 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
9341 M:      Sangbeom Kim <sbkim73@samsung.com>
9342 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
9343 L:      linux-kernel@vger.kernel.org
9344 L:      linux-samsung-soc@vger.kernel.org
9345 S:      Supported
9346 F:      drivers/mfd/sec*.c
9347 F:      drivers/regulator/s2m*.c
9348 F:      drivers/regulator/s5m*.c
9349 F:      drivers/clk/clk-s2mps11.c
9350 F:      drivers/rtc/rtc-s5m.c
9351 F:      include/linux/mfd/samsung/
9352 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
9353 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
9354 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
9355 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
9356
9357 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
9358 M:      Kyungmin Park <kyungmin.park@samsung.com>
9359 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
9360 L:      linux-media@vger.kernel.org
9361 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
9362 S:      Supported
9363 F:      drivers/media/platform/exynos4-is/
9364
9365 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
9366 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
9367 L:      linux-media@vger.kernel.org
9368 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9369 S:      Maintained
9370 F:      drivers/media/platform/s3c-camif/
9371 F:      include/media/drv-intf/s3c_camif.h
9372
9373 SAMSUNG S5C73M3 CAMERA DRIVER
9374 M:      Kyungmin Park <kyungmin.park@samsung.com>
9375 M:      Andrzej Hajda <a.hajda@samsung.com>
9376 L:      linux-media@vger.kernel.org
9377 S:      Supported
9378 F:      drivers/media/i2c/s5c73m3/*
9379
9380 SAMSUNG S5K5BAF CAMERA DRIVER
9381 M:      Kyungmin Park <kyungmin.park@samsung.com>
9382 M:      Andrzej Hajda <a.hajda@samsung.com>
9383 L:      linux-media@vger.kernel.org
9384 S:      Supported
9385 F:      drivers/media/i2c/s5k5baf.c
9386
9387 SAMSUNG S3FWRN5 NFC DRIVER
9388 M:      Robert Baldyga <r.baldyga@samsung.com>
9389 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
9390 S:      Supported
9391 F:      drivers/nfc/s3fwrn5
9392
9393 SAMSUNG SOC CLOCK DRIVERS
9394 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
9395 M:      Tomasz Figa <tomasz.figa@gmail.com>
9396 S:      Supported
9397 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9398 F:      drivers/clk/samsung/
9399
9400 SAMSUNG SXGBE DRIVERS
9401 M:      Byungho An <bh74.an@samsung.com>
9402 M:      Girish K S <ks.giri@samsung.com>
9403 M:      Vipul Pandya <vipul.pandya@samsung.com>
9404 S:      Supported
9405 L:      netdev@vger.kernel.org
9406 F:      drivers/net/ethernet/samsung/sxgbe/
9407
9408 SAMSUNG THERMAL DRIVER
9409 M:      Lukasz Majewski <l.majewski@samsung.com>
9410 L:      linux-pm@vger.kernel.org
9411 L:      linux-samsung-soc@vger.kernel.org
9412 S:      Supported
9413 T:      https://github.com/lmajewski/linux-samsung-thermal.git
9414 F:      drivers/thermal/samsung/
9415
9416 SAMSUNG USB2 PHY DRIVER
9417 M:      Kamil Debski <k.debski@samsung.com>
9418 L:      linux-kernel@vger.kernel.org
9419 S:      Supported
9420 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
9421 F:      Documentation/phy/samsung-usb2.txt
9422 F:      drivers/phy/phy-exynos4210-usb2.c
9423 F:      drivers/phy/phy-exynos4x12-usb2.c
9424 F:      drivers/phy/phy-exynos5250-usb2.c
9425 F:      drivers/phy/phy-s5pv210-usb2.c
9426 F:      drivers/phy/phy-samsung-usb2.c
9427 F:      drivers/phy/phy-samsung-usb2.h
9428
9429 SERIAL DRIVERS
9430 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9431 L:      linux-serial@vger.kernel.org
9432 S:      Maintained
9433 F:      drivers/tty/serial/
9434
9435 SYNOPSYS DESIGNWARE DMAC DRIVER
9436 M:      Viresh Kumar <vireshk@kernel.org>
9437 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9438 S:      Maintained
9439 F:      include/linux/dma/dw.h
9440 F:      include/linux/platform_data/dma-dw.h
9441 F:      drivers/dma/dw/
9442
9443 SYNOPSYS DESIGNWARE ETHERNET QOS 4.10a driver
9444 M: Lars Persson <lars.persson@axis.com>
9445 L: netdev@vger.kernel.org
9446 S: Supported
9447 F: Documentation/devicetree/bindings/net/snps,dwc-qos-ethernet.txt
9448 F: drivers/net/ethernet/synopsys/dwc_eth_qos.c
9449
9450 SYNOPSYS DESIGNWARE I2C DRIVER
9451 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9452 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
9453 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9454 L:      linux-i2c@vger.kernel.org
9455 S:      Maintained
9456 F:      drivers/i2c/busses/i2c-designware-*
9457 F:      include/linux/platform_data/i2c-designware.h
9458
9459 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
9460 M:      Jaehoon Chung <jh80.chung@samsung.com>
9461 L:      linux-mmc@vger.kernel.org
9462 S:      Maintained
9463 F:      include/linux/mmc/dw_mmc.h
9464 F:      drivers/mmc/host/dw_mmc*
9465
9466 SYSTEM TRACE MODULE CLASS
9467 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
9468 S:      Maintained
9469 F:      Documentation/trace/stm.txt
9470 F:      drivers/hwtracing/stm/
9471 F:      include/linux/stm.h
9472 F:      include/uapi/linux/stm.h
9473
9474 THUNDERBOLT DRIVER
9475 M:      Andreas Noever <andreas.noever@gmail.com>
9476 S:      Maintained
9477 F:      drivers/thunderbolt/
9478
9479 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
9480 M:      John Stultz <john.stultz@linaro.org>
9481 M:      Thomas Gleixner <tglx@linutronix.de>
9482 L:      linux-kernel@vger.kernel.org
9483 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
9484 S:      Supported
9485 F:      include/linux/clocksource.h
9486 F:      include/linux/time.h
9487 F:      include/linux/timex.h
9488 F:      include/uapi/linux/time.h
9489 F:      include/uapi/linux/timex.h
9490 F:      kernel/time/clocksource.c
9491 F:      kernel/time/time*.c
9492 F:      kernel/time/alarmtimer.c
9493 F:      kernel/time/ntp.c
9494 F:      tools/testing/selftests/timers/
9495
9496 SC1200 WDT DRIVER
9497 M:      Zwane Mwaikambo <zwanem@gmail.com>
9498 S:      Maintained
9499 F:      drivers/watchdog/sc1200wdt.c
9500
9501 SCHEDULER
9502 M:      Ingo Molnar <mingo@redhat.com>
9503 M:      Peter Zijlstra <peterz@infradead.org>
9504 L:      linux-kernel@vger.kernel.org
9505 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
9506 S:      Maintained
9507 F:      kernel/sched/
9508 F:      include/linux/sched.h
9509 F:      include/uapi/linux/sched.h
9510 F:      include/linux/wait.h
9511
9512 SCORE ARCHITECTURE
9513 M:      Chen Liqin <liqin.linux@gmail.com>
9514 M:      Lennox Wu <lennox.wu@gmail.com>
9515 W:      http://www.sunplus.com
9516 S:      Supported
9517 F:      arch/score/
9518
9519 SYSTEM CONTROL & POWER INTERFACE (SCPI) Message Protocol drivers
9520 M:      Sudeep Holla <sudeep.holla@arm.com>
9521 L:      linux-arm-kernel@lists.infradead.org
9522 S:      Maintained
9523 F:      Documentation/devicetree/bindings/arm/arm,scpi.txt
9524 F:      drivers/clk/clk-scpi.c
9525 F:      drivers/cpufreq/scpi-cpufreq.c
9526 F:      drivers/firmware/arm_scpi.c
9527 F:      include/linux/scpi_protocol.h
9528
9529 SCSI CDROM DRIVER
9530 M:      Jens Axboe <axboe@kernel.dk>
9531 L:      linux-scsi@vger.kernel.org
9532 W:      http://www.kernel.dk
9533 S:      Maintained
9534 F:      drivers/scsi/sr*
9535
9536 SCSI RDMA PROTOCOL (SRP) INITIATOR
9537 M:      Bart Van Assche <bart.vanassche@sandisk.com>
9538 L:      linux-rdma@vger.kernel.org
9539 S:      Supported
9540 W:      http://www.openfabrics.org
9541 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9542 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
9543 F:      drivers/infiniband/ulp/srp/
9544 F:      include/scsi/srp.h
9545
9546 SCSI SG DRIVER
9547 M:      Doug Gilbert <dgilbert@interlog.com>
9548 L:      linux-scsi@vger.kernel.org
9549 W:      http://sg.danny.cz/sg
9550 S:      Maintained
9551 F:      Documentation/scsi/scsi-generic.txt
9552 F:      drivers/scsi/sg.c
9553 F:      include/scsi/sg.h
9554
9555 SCSI SUBSYSTEM
9556 M:      "James E.J. Bottomley" <JBottomley@odin.com>
9557 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
9558 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
9559 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
9560 L:      linux-scsi@vger.kernel.org
9561 S:      Maintained
9562 F:      drivers/scsi/
9563 F:      include/scsi/
9564
9565 SCSI TAPE DRIVER
9566 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
9567 L:      linux-scsi@vger.kernel.org
9568 S:      Maintained
9569 F:      Documentation/scsi/st.txt
9570 F:      drivers/scsi/st.*
9571 F:      drivers/scsi/st_*.h
9572
9573 SCTP PROTOCOL
9574 M:      Vlad Yasevich <vyasevich@gmail.com>
9575 M:      Neil Horman <nhorman@tuxdriver.com>
9576 L:      linux-sctp@vger.kernel.org
9577 W:      http://lksctp.sourceforge.net
9578 S:      Maintained
9579 F:      Documentation/networking/sctp.txt
9580 F:      include/linux/sctp.h
9581 F:      include/uapi/linux/sctp.h
9582 F:      include/net/sctp/
9583 F:      net/sctp/
9584
9585 SCx200 CPU SUPPORT
9586 M:      Jim Cromie <jim.cromie@gmail.com>
9587 S:      Odd Fixes
9588 F:      Documentation/i2c/busses/scx200_acb
9589 F:      arch/x86/platform/scx200/
9590 F:      drivers/watchdog/scx200_wdt.c
9591 F:      drivers/i2c/busses/scx200*
9592 F:      drivers/mtd/maps/scx200_docflash.c
9593 F:      include/linux/scx200.h
9594
9595 SCx200 GPIO DRIVER
9596 M:      Jim Cromie <jim.cromie@gmail.com>
9597 S:      Maintained
9598 F:      drivers/char/scx200_gpio.c
9599 F:      include/linux/scx200_gpio.h
9600
9601 SCx200 HRT CLOCKSOURCE DRIVER
9602 M:      Jim Cromie <jim.cromie@gmail.com>
9603 S:      Maintained
9604 F:      drivers/clocksource/scx200_hrt.c
9605
9606 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
9607 M:      Sascha Sommer <saschasommer@freenet.de>
9608 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
9609 S:      Maintained
9610 F:      drivers/mmc/host/sdricoh_cs.c
9611
9612 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
9613 L:      linux-mmc@vger.kernel.org
9614 S:      Orphan
9615 F:      drivers/mmc/host/sdhci.*
9616 F:      drivers/mmc/host/sdhci-pltfm.[ch]
9617
9618 SECURE COMPUTING
9619 M:      Kees Cook <keescook@chromium.org>
9620 R:      Andy Lutomirski <luto@amacapital.net>
9621 R:      Will Drewry <wad@chromium.org>
9622 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
9623 S:      Supported
9624 F:      kernel/seccomp.c
9625 F:      include/uapi/linux/seccomp.h
9626 F:      include/linux/seccomp.h
9627 F:      tools/testing/selftests/seccomp/*
9628 K:      \bsecure_computing
9629 K:      \bTIF_SECCOMP\b
9630
9631 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
9632 M:      Ben Dooks <ben-linux@fluff.org>
9633 M:      Jaehoon Chung <jh80.chung@samsung.com>
9634 L:      linux-mmc@vger.kernel.org
9635 S:      Maintained
9636 F:      drivers/mmc/host/sdhci-s3c*
9637
9638 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
9639 M:      Viresh Kumar <vireshk@kernel.org>
9640 L:      spear-devel@list.st.com
9641 L:      linux-mmc@vger.kernel.org
9642 S:      Maintained
9643 F:      drivers/mmc/host/sdhci-spear.c
9644
9645 SECURITY SUBSYSTEM
9646 M:      James Morris <james.l.morris@oracle.com>
9647 M:      "Serge E. Hallyn" <serge@hallyn.com>
9648 L:      linux-security-module@vger.kernel.org (suggested Cc:)
9649 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
9650 W:      http://kernsec.org/
9651 S:      Supported
9652 F:      security/
9653
9654 SECURITY CONTACT
9655 M:      Security Officers <security@kernel.org>
9656 S:      Supported
9657
9658 SELINUX SECURITY MODULE
9659 M:      Paul Moore <paul@paul-moore.com>
9660 M:      Stephen Smalley <sds@tycho.nsa.gov>
9661 M:      Eric Paris <eparis@parisplace.org>
9662 L:      selinux@tycho.nsa.gov (moderated for non-subscribers)
9663 W:      http://selinuxproject.org
9664 T:      git git://git.infradead.org/users/pcmoore/selinux
9665 S:      Supported
9666 F:      include/linux/selinux*
9667 F:      security/selinux/
9668 F:      scripts/selinux/
9669
9670 APPARMOR SECURITY MODULE
9671 M:      John Johansen <john.johansen@canonical.com>
9672 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
9673 W:      apparmor.wiki.kernel.org
9674 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
9675 S:      Supported
9676 F:      security/apparmor/
9677
9678 YAMA SECURITY MODULE
9679 M:      Kees Cook <keescook@chromium.org>
9680 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
9681 S:      Supported
9682 F:      security/yama/
9683
9684 SENSABLE PHANTOM
9685 M:      Jiri Slaby <jirislaby@gmail.com>
9686 S:      Maintained
9687 F:      drivers/misc/phantom.c
9688 F:      include/uapi/linux/phantom.h
9689
9690 SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
9691 M:      Jayamohan Kallickal <jayamohan.kallickal@avagotech.com>
9692 M:      Ketan Mukadam <ketan.mukadam@avagotech.com>
9693 M:      John Soni Jose <sony.john@avagotech.com>
9694 L:      linux-scsi@vger.kernel.org
9695 W:      http://www.avagotech.com
9696 S:      Supported
9697 F:      drivers/scsi/be2iscsi/
9698
9699 Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER
9700 M:      Sathya Perla <sathya.perla@avagotech.com>
9701 M:      Ajit Khaparde <ajit.khaparde@avagotech.com>
9702 M:      Padmanabh Ratnakar <padmanabh.ratnakar@avagotech.com>
9703 M:      Sriharsha Basavapatna <sriharsha.basavapatna@avagotech.com>
9704 L:      netdev@vger.kernel.org
9705 W:      http://www.emulex.com
9706 S:      Supported
9707 F:      drivers/net/ethernet/emulex/benet/
9708
9709 EMULEX ONECONNECT ROCE DRIVER
9710 M:      Selvin Xavier <selvin.xavier@avagotech.com>
9711 M:      Devesh Sharma <devesh.sharma@avagotech.com>
9712 M:      Mitesh Ahuja <mitesh.ahuja@avagotech.com>
9713 L:      linux-rdma@vger.kernel.org
9714 W:      http://www.emulex.com
9715 S:      Supported
9716 F:      drivers/infiniband/hw/ocrdma/
9717
9718 SFC NETWORK DRIVER
9719 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
9720 M:      Shradha Shah <sshah@solarflare.com>
9721 L:      netdev@vger.kernel.org
9722 S:      Supported
9723 F:      drivers/net/ethernet/sfc/
9724
9725 SGI GRU DRIVER
9726 M:      Dimitri Sivanich <sivanich@sgi.com>
9727 S:      Maintained
9728 F:      drivers/misc/sgi-gru/
9729
9730 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
9731 M:      Pat Gefre <pfg@sgi.com>
9732 L:      linux-ia64@vger.kernel.org
9733 S:      Supported
9734 F:      Documentation/ia64/serial.txt
9735 F:      drivers/tty/serial/ioc?_serial.c
9736 F:      include/linux/ioc?.h
9737
9738 SGI XP/XPC/XPNET DRIVER
9739 M:      Cliff Whickman <cpw@sgi.com>
9740 M:      Robin Holt <robinmholt@gmail.com>
9741 S:      Maintained
9742 F:      drivers/misc/sgi-xp/
9743
9744 SI2157 MEDIA DRIVER
9745 M:      Antti Palosaari <crope@iki.fi>
9746 L:      linux-media@vger.kernel.org
9747 W:      https://linuxtv.org
9748 W:      http://palosaari.fi/linux/
9749 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9750 T:      git git://linuxtv.org/anttip/media_tree.git
9751 S:      Maintained
9752 F:      drivers/media/tuners/si2157*
9753
9754 SI2168 MEDIA DRIVER
9755 M:      Antti Palosaari <crope@iki.fi>
9756 L:      linux-media@vger.kernel.org
9757 W:      https://linuxtv.org
9758 W:      http://palosaari.fi/linux/
9759 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9760 T:      git git://linuxtv.org/anttip/media_tree.git
9761 S:      Maintained
9762 F:      drivers/media/dvb-frontends/si2168*
9763
9764 SI470X FM RADIO RECEIVER I2C DRIVER
9765 M:      Hans Verkuil <hverkuil@xs4all.nl>
9766 L:      linux-media@vger.kernel.org
9767 T:      git git://linuxtv.org/media_tree.git
9768 W:      https://linuxtv.org
9769 S:      Odd Fixes
9770 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
9771
9772 SI470X FM RADIO RECEIVER USB DRIVER
9773 M:      Hans Verkuil <hverkuil@xs4all.nl>
9774 L:      linux-media@vger.kernel.org
9775 T:      git git://linuxtv.org/media_tree.git
9776 W:      https://linuxtv.org
9777 S:      Maintained
9778 F:      drivers/media/radio/si470x/radio-si470x-common.c
9779 F:      drivers/media/radio/si470x/radio-si470x.h
9780 F:      drivers/media/radio/si470x/radio-si470x-usb.c
9781
9782 SI4713 FM RADIO TRANSMITTER I2C DRIVER
9783 M:      Eduardo Valentin <edubezval@gmail.com>
9784 L:      linux-media@vger.kernel.org
9785 T:      git git://linuxtv.org/media_tree.git
9786 W:      https://linuxtv.org
9787 S:      Odd Fixes
9788 F:      drivers/media/radio/si4713/si4713.?
9789
9790 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
9791 M:      Eduardo Valentin <edubezval@gmail.com>
9792 L:      linux-media@vger.kernel.org
9793 T:      git git://linuxtv.org/media_tree.git
9794 W:      https://linuxtv.org
9795 S:      Odd Fixes
9796 F:      drivers/media/radio/si4713/radio-platform-si4713.c
9797
9798 SI4713 FM RADIO TRANSMITTER USB DRIVER
9799 M:      Hans Verkuil <hverkuil@xs4all.nl>
9800 L:      linux-media@vger.kernel.org
9801 T:      git git://linuxtv.org/media_tree.git
9802 W:      https://linuxtv.org
9803 S:      Maintained
9804 F:      drivers/media/radio/si4713/radio-usb-si4713.c
9805
9806 SIANO DVB DRIVER
9807 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9808 L:      linux-media@vger.kernel.org
9809 W:      https://linuxtv.org
9810 T:      git git://linuxtv.org/media_tree.git
9811 S:      Odd fixes
9812 F:      drivers/media/common/siano/
9813 F:      drivers/media/usb/siano/
9814 F:      drivers/media/usb/siano/
9815 F:      drivers/media/mmc/siano/
9816
9817 SIMPLEFB FB DRIVER
9818 M:      Hans de Goede <hdegoede@redhat.com>
9819 L:      linux-fbdev@vger.kernel.org
9820 S:      Maintained
9821 F:      Documentation/devicetree/bindings/display/simple-framebuffer.txt
9822 F:      drivers/video/fbdev/simplefb.c
9823 F:      include/linux/platform_data/simplefb.h
9824
9825 SH_VEU V4L2 MEM2MEM DRIVER
9826 L:      linux-media@vger.kernel.org
9827 S:      Orphan
9828 F:      drivers/media/platform/sh_veu.c
9829
9830 SH_VOU V4L2 OUTPUT DRIVER
9831 L:      linux-media@vger.kernel.org
9832 S:      Orphan
9833 F:      drivers/media/platform/sh_vou.c
9834 F:      include/media/drv-intf/sh_vou.h
9835
9836 SIMPLE FIRMWARE INTERFACE (SFI)
9837 M:      Len Brown <lenb@kernel.org>
9838 L:      sfi-devel@simplefirmware.org
9839 W:      http://simplefirmware.org/
9840 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
9841 S:      Supported
9842 F:      arch/x86/platform/sfi/
9843 F:      drivers/sfi/
9844 F:      include/linux/sfi*.h
9845
9846 SIMTEC EB110ATX (Chalice CATS)
9847 P:      Ben Dooks
9848 P:      Vincent Sanders <vince@simtec.co.uk>
9849 M:      Simtec Linux Team <linux@simtec.co.uk>
9850 W:      http://www.simtec.co.uk/products/EB110ATX/
9851 S:      Supported
9852
9853 SIMTEC EB2410ITX (BAST)
9854 P:      Ben Dooks
9855 P:      Vincent Sanders <vince@simtec.co.uk>
9856 M:      Simtec Linux Team <linux@simtec.co.uk>
9857 W:      http://www.simtec.co.uk/products/EB2410ITX/
9858 S:      Supported
9859 F:      arch/arm/mach-s3c24xx/mach-bast.c
9860 F:      arch/arm/mach-s3c24xx/bast-ide.c
9861 F:      arch/arm/mach-s3c24xx/bast-irq.c
9862
9863 TI DAVINCI MACHINE SUPPORT
9864 M:      Sekhar Nori <nsekhar@ti.com>
9865 M:      Kevin Hilman <khilman@deeprootsystems.com>
9866 T:      git git://gitorious.org/linux-davinci/linux-davinci.git
9867 Q:      http://patchwork.kernel.org/project/linux-davinci/list/
9868 S:      Supported
9869 F:      arch/arm/mach-davinci/
9870 F:      drivers/i2c/busses/i2c-davinci.c
9871
9872 TI DAVINCI SERIES MEDIA DRIVER
9873 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9874 L:      linux-media@vger.kernel.org
9875 W:      https://linuxtv.org
9876 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9877 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9878 S:      Maintained
9879 F:      drivers/media/platform/davinci/
9880 F:      include/media/davinci/
9881
9882 TI AM437X VPFE DRIVER
9883 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9884 L:      linux-media@vger.kernel.org
9885 W:      https://linuxtv.org
9886 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9887 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9888 S:      Maintained
9889 F:      drivers/media/platform/am437x/
9890
9891 OV2659 OMNIVISION SENSOR DRIVER
9892 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9893 L:      linux-media@vger.kernel.org
9894 W:      https://linuxtv.org
9895 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9896 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9897 S:      Maintained
9898 F:      drivers/media/i2c/ov2659.c
9899 F:      include/media/i2c/ov2659.h
9900
9901 SILICON MOTION SM712 FRAME BUFFER DRIVER
9902 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
9903 M:      Teddy Wang <teddy.wang@siliconmotion.com>
9904 M:      Sudip Mukherjee <sudip@vectorindia.org>
9905 L:      linux-fbdev@vger.kernel.org
9906 S:      Maintained
9907 F:      drivers/video/fbdev/sm712*
9908 F:      Documentation/fb/sm712fb.txt
9909
9910 SIS 190 ETHERNET DRIVER
9911 M:      Francois Romieu <romieu@fr.zoreil.com>
9912 L:      netdev@vger.kernel.org
9913 S:      Maintained
9914 F:      drivers/net/ethernet/sis/sis190.c
9915
9916 SIS 900/7016 FAST ETHERNET DRIVER
9917 M:      Daniele Venzano <venza@brownhat.org>
9918 W:      http://www.brownhat.org/sis900.html
9919 L:      netdev@vger.kernel.org
9920 S:      Maintained
9921 F:      drivers/net/ethernet/sis/sis900.*
9922
9923 SIS FRAMEBUFFER DRIVER
9924 M:      Thomas Winischhofer <thomas@winischhofer.net>
9925 W:      http://www.winischhofer.net/linuxsisvga.shtml
9926 S:      Maintained
9927 F:      Documentation/fb/sisfb.txt
9928 F:      drivers/video/fbdev/sis/
9929 F:      include/video/sisfb.h
9930
9931 SIS USB2VGA DRIVER
9932 M:      Thomas Winischhofer <thomas@winischhofer.net>
9933 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
9934 S:      Maintained
9935 F:      drivers/usb/misc/sisusbvga/
9936
9937 SLAB ALLOCATOR
9938 M:      Christoph Lameter <cl@linux.com>
9939 M:      Pekka Enberg <penberg@kernel.org>
9940 M:      David Rientjes <rientjes@google.com>
9941 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
9942 M:      Andrew Morton <akpm@linux-foundation.org>
9943 L:      linux-mm@kvack.org
9944 S:      Maintained
9945 F:      include/linux/sl?b*.h
9946 F:      mm/sl?b*
9947
9948 SLEEPABLE READ-COPY UPDATE (SRCU)
9949 M:      Lai Jiangshan <jiangshanlai@gmail.com>
9950 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9951 M:      Josh Triplett <josh@joshtriplett.org>
9952 R:      Steven Rostedt <rostedt@goodmis.org>
9953 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9954 L:      linux-kernel@vger.kernel.org
9955 W:      http://www.rdrop.com/users/paulmck/RCU/
9956 S:      Supported
9957 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9958 F:      include/linux/srcu.h
9959 F:      kernel/rcu/srcu.c
9960
9961 SMACK SECURITY MODULE
9962 M:      Casey Schaufler <casey@schaufler-ca.com>
9963 L:      linux-security-module@vger.kernel.org
9964 W:      http://schaufler-ca.com
9965 T:      git git://git.gitorious.org/smack-next/kernel.git
9966 S:      Maintained
9967 F:      Documentation/security/Smack.txt
9968 F:      security/smack/
9969
9970 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
9971 M:      Kevin Hilman <khilman@kernel.org>
9972 M:      Nishanth Menon <nm@ti.com>
9973 S:      Maintained
9974 F:      drivers/power/avs/
9975 F:      include/linux/power/smartreflex.h
9976 L:      linux-pm@vger.kernel.org
9977
9978 SMC91x ETHERNET DRIVER
9979 M:      Nicolas Pitre <nico@fluxnic.net>
9980 S:      Odd Fixes
9981 F:      drivers/net/ethernet/smsc/smc91x.*
9982
9983 SMIA AND SMIA++ IMAGE SENSOR DRIVER
9984 M:      Sakari Ailus <sakari.ailus@iki.fi>
9985 L:      linux-media@vger.kernel.org
9986 S:      Maintained
9987 F:      drivers/media/i2c/smiapp/
9988 F:      include/media/i2c/smiapp.h
9989 F:      drivers/media/i2c/smiapp-pll.c
9990 F:      drivers/media/i2c/smiapp-pll.h
9991 F:      include/uapi/linux/smiapp.h
9992 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
9993
9994 SMM665 HARDWARE MONITOR DRIVER
9995 M:      Guenter Roeck <linux@roeck-us.net>
9996 L:      lm-sensors@lm-sensors.org
9997 S:      Maintained
9998 F:      Documentation/hwmon/smm665
9999 F:      drivers/hwmon/smm665.c
10000
10001 SMSC EMC2103 HARDWARE MONITOR DRIVER
10002 M:      Steve Glendinning <steve.glendinning@shawell.net>
10003 L:      lm-sensors@lm-sensors.org
10004 S:      Maintained
10005 F:      Documentation/hwmon/emc2103
10006 F:      drivers/hwmon/emc2103.c
10007
10008 SMSC SCH5627 HARDWARE MONITOR DRIVER
10009 M:      Hans de Goede <hdegoede@redhat.com>
10010 L:      lm-sensors@lm-sensors.org
10011 S:      Supported
10012 F:      Documentation/hwmon/sch5627
10013 F:      drivers/hwmon/sch5627.c
10014
10015 SMSC47B397 HARDWARE MONITOR DRIVER
10016 M:      Jean Delvare <jdelvare@suse.com>
10017 L:      lm-sensors@lm-sensors.org
10018 S:      Maintained
10019 F:      Documentation/hwmon/smsc47b397
10020 F:      drivers/hwmon/smsc47b397.c
10021
10022 SMSC911x ETHERNET DRIVER
10023 M:      Steve Glendinning <steve.glendinning@shawell.net>
10024 L:      netdev@vger.kernel.org
10025 S:      Maintained
10026 F:      include/linux/smsc911x.h
10027 F:      drivers/net/ethernet/smsc/smsc911x.*
10028
10029 SMSC9420 PCI ETHERNET DRIVER
10030 M:      Steve Glendinning <steve.glendinning@shawell.net>
10031 L:      netdev@vger.kernel.org
10032 S:      Maintained
10033 F:      drivers/net/ethernet/smsc/smsc9420.*
10034
10035 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
10036 M:      Steve Glendinning <steve.glendinning@shawell.net>
10037 L:      linux-fbdev@vger.kernel.org
10038 S:      Maintained
10039 F:      drivers/video/fbdev/smscufx.c
10040
10041 SOC-CAMERA V4L2 SUBSYSTEM
10042 M:      Guennadi Liakhovetski <g.liakhovetski@gmx.de>
10043 L:      linux-media@vger.kernel.org
10044 T:      git git://linuxtv.org/media_tree.git
10045 S:      Maintained
10046 F:      include/media/soc*
10047 F:      drivers/media/i2c/soc_camera/
10048 F:      drivers/media/platform/soc_camera/
10049
10050 SOEKRIS NET48XX LED SUPPORT
10051 M:      Chris Boot <bootc@bootc.net>
10052 S:      Maintained
10053 F:      drivers/leds/leds-net48xx.c
10054
10055 SOFTLOGIC 6x10 MPEG CODEC
10056 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
10057 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
10058 M:      Andrey Utkin <andrey.krieger.utkin@gmail.com>
10059 M:      Ismael Luceno <ismael@iodev.co.uk>
10060 L:      linux-media@vger.kernel.org
10061 S:      Supported
10062 F:      drivers/media/pci/solo6x10/
10063
10064 SOFTWARE RAID (Multiple Disks) SUPPORT
10065 L:      linux-raid@vger.kernel.org
10066 S:      Supported
10067 F:      drivers/md/
10068 F:      include/linux/raid/
10069 F:      include/uapi/linux/raid/
10070
10071 SONIC NETWORK DRIVER
10072 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
10073 L:      netdev@vger.kernel.org
10074 S:      Maintained
10075 F:      drivers/net/ethernet/natsemi/sonic.*
10076
10077 SONICS SILICON BACKPLANE DRIVER (SSB)
10078 M:      Michael Buesch <m@bues.ch>
10079 L:      netdev@vger.kernel.org
10080 S:      Maintained
10081 F:      drivers/ssb/
10082 F:      include/linux/ssb/
10083
10084 SONY VAIO CONTROL DEVICE DRIVER
10085 M:      Mattia Dongili <malattia@linux.it>
10086 L:      platform-driver-x86@vger.kernel.org
10087 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
10088 S:      Maintained
10089 F:      Documentation/laptops/sony-laptop.txt
10090 F:      drivers/char/sonypi.c
10091 F:      drivers/platform/x86/sony-laptop.c
10092 F:      include/linux/sony-laptop.h
10093
10094 SONY MEMORYSTICK CARD SUPPORT
10095 M:      Alex Dubov <oakad@yahoo.com>
10096 W:      http://tifmxx.berlios.de/
10097 S:      Maintained
10098 F:      drivers/memstick/host/tifm_ms.c
10099
10100 SONY MEMORYSTICK STANDARD SUPPORT
10101 M:      Maxim Levitsky <maximlevitsky@gmail.com>
10102 S:      Maintained
10103 F:      drivers/memstick/core/ms_block.*
10104
10105 SOUND
10106 M:      Jaroslav Kysela <perex@perex.cz>
10107 M:      Takashi Iwai <tiwai@suse.com>
10108 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10109 W:      http://www.alsa-project.org/
10110 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
10111 T:      git git://git.alsa-project.org/alsa-kernel.git
10112 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
10113 S:      Maintained
10114 F:      Documentation/sound/
10115 F:      include/sound/
10116 F:      include/uapi/sound/
10117 F:      sound/
10118
10119 SOUND - COMPRESSED AUDIO
10120 M:      Vinod Koul <vinod.koul@intel.com>
10121 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10122 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
10123 S:      Supported
10124 F:      Documentation/sound/alsa/compress_offload.txt
10125 F:      include/sound/compress_driver.h
10126 F:      include/uapi/sound/compress_*
10127 F:      sound/core/compress_offload.c
10128 F:      sound/soc/soc-compress.c
10129
10130 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
10131 M:      Liam Girdwood <lgirdwood@gmail.com>
10132 M:      Mark Brown <broonie@kernel.org>
10133 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
10134 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10135 W:      http://alsa-project.org/main/index.php/ASoC
10136 S:      Supported
10137 F:      Documentation/sound/alsa/soc/
10138 F:      sound/soc/
10139 F:      include/sound/soc*
10140
10141 SOUND - DMAENGINE HELPERS
10142 M:      Lars-Peter Clausen <lars@metafoo.de>
10143 S:      Supported
10144 F:      include/sound/dmaengine_pcm.h
10145 F:      sound/core/pcm_dmaengine.c
10146 F:      sound/soc/soc-generic-dmaengine-pcm.c
10147
10148 SP2 MEDIA DRIVER
10149 M:      Olli Salonen <olli.salonen@iki.fi>
10150 L:      linux-media@vger.kernel.org
10151 W:      https://linuxtv.org
10152 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10153 S:      Maintained
10154 F:      drivers/media/dvb-frontends/sp2*
10155
10156 SPARC + UltraSPARC (sparc/sparc64)
10157 M:      "David S. Miller" <davem@davemloft.net>
10158 L:      sparclinux@vger.kernel.org
10159 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
10160 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
10161 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
10162 S:      Maintained
10163 F:      arch/sparc/
10164 F:      drivers/sbus/
10165
10166 SPARC SERIAL DRIVERS
10167 M:      "David S. Miller" <davem@davemloft.net>
10168 L:      sparclinux@vger.kernel.org
10169 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
10170 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
10171 S:      Maintained
10172 F:      include/linux/sunserialcore.h
10173 F:      drivers/tty/serial/suncore.c
10174 F:      drivers/tty/serial/sunhv.c
10175 F:      drivers/tty/serial/sunsab.c
10176 F:      drivers/tty/serial/sunsab.h
10177 F:      drivers/tty/serial/sunsu.c
10178 F:      drivers/tty/serial/sunzilog.c
10179 F:      drivers/tty/serial/sunzilog.h
10180
10181 SPARSE CHECKER
10182 M:      "Christopher Li" <sparse@chrisli.org>
10183 L:      linux-sparse@vger.kernel.org
10184 W:      https://sparse.wiki.kernel.org/
10185 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
10186 T:      git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
10187 S:      Maintained
10188 F:      include/linux/compiler.h
10189
10190 SPEAR PLATFORM SUPPORT
10191 M:      Viresh Kumar <vireshk@kernel.org>
10192 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
10193 L:      spear-devel@list.st.com
10194 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10195 W:      http://www.st.com/spear
10196 S:      Maintained
10197 F:      arch/arm/mach-spear/
10198
10199 SPEAR CLOCK FRAMEWORK SUPPORT
10200 M:      Viresh Kumar <vireshk@kernel.org>
10201 L:      spear-devel@list.st.com
10202 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10203 W:      http://www.st.com/spear
10204 S:      Maintained
10205 F:      drivers/clk/spear/
10206
10207 SPI SUBSYSTEM
10208 M:      Mark Brown <broonie@kernel.org>
10209 L:      linux-spi@vger.kernel.org
10210 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
10211 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
10212 S:      Maintained
10213 F:      Documentation/spi/
10214 F:      drivers/spi/
10215 F:      include/linux/spi/
10216 F:      include/uapi/linux/spi/
10217
10218 SPIDERNET NETWORK DRIVER for CELL
10219 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
10220 L:      netdev@vger.kernel.org
10221 S:      Supported
10222 F:      Documentation/networking/spider_net.txt
10223 F:      drivers/net/ethernet/toshiba/spider_net*
10224
10225 SPU FILE SYSTEM
10226 M:      Jeremy Kerr <jk@ozlabs.org>
10227 L:      linuxppc-dev@lists.ozlabs.org
10228 W:      http://www.ibm.com/developerworks/power/cell/
10229 S:      Supported
10230 F:      Documentation/filesystems/spufs.txt
10231 F:      arch/powerpc/platforms/cell/spufs/
10232
10233 SQUASHFS FILE SYSTEM
10234 M:      Phillip Lougher <phillip@squashfs.org.uk>
10235 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
10236 W:      http://squashfs.org.uk
10237 S:      Maintained
10238 F:      Documentation/filesystems/squashfs.txt
10239 F:      fs/squashfs/
10240
10241 SRM (Alpha) environment access
10242 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
10243 S:      Maintained
10244 F:      arch/alpha/kernel/srm_env.c
10245
10246 STABLE BRANCH
10247 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10248 L:      stable@vger.kernel.org
10249 S:      Supported
10250 F:      Documentation/stable_kernel_rules.txt
10251
10252 STAGING SUBSYSTEM
10253 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10254 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
10255 L:      devel@driverdev.osuosl.org
10256 S:      Supported
10257 F:      drivers/staging/
10258
10259 STAGING - COMEDI
10260 M:      Ian Abbott <abbotti@mev.co.uk>
10261 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
10262 S:      Odd Fixes
10263 F:      drivers/staging/comedi/
10264
10265 STAGING - FLARION FT1000 DRIVERS
10266 M:      Marek Belisko <marek.belisko@gmail.com>
10267 S:      Odd Fixes
10268 F:      drivers/staging/ft1000/
10269
10270 STAGING - INDUSTRIAL IO
10271 M:      Jonathan Cameron <jic23@kernel.org>
10272 L:      linux-iio@vger.kernel.org
10273 S:      Odd Fixes
10274 F:      drivers/staging/iio/
10275
10276 STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
10277 M:      Jarod Wilson <jarod@wilsonet.com>
10278 W:      http://www.lirc.org/
10279 S:      Odd Fixes
10280 F:      drivers/staging/media/lirc/
10281
10282 STAGING - LUSTRE PARALLEL FILESYSTEM
10283 M:      Oleg Drokin <oleg.drokin@intel.com>
10284 M:      Andreas Dilger <andreas.dilger@intel.com>
10285 L:      lustre-devel@lists.lustre.org (moderated for non-subscribers)
10286 W:      http://wiki.lustre.org/
10287 S:      Maintained
10288 F:      drivers/staging/lustre
10289
10290 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
10291 M:      Marc Dietrich <marvin24@gmx.de>
10292 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
10293 L:      linux-tegra@vger.kernel.org
10294 S:      Maintained
10295 F:      drivers/staging/nvec/
10296
10297 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
10298 M:      Jens Frederich <jfrederich@gmail.com>
10299 M:      Daniel Drake <dsd@laptop.org>
10300 M:      Jon Nettleton <jon.nettleton@gmail.com>
10301 W:      http://wiki.laptop.org/go/DCON
10302 S:      Maintained
10303 F:      drivers/staging/olpc_dcon/
10304
10305 STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
10306 M:      Willy Tarreau <willy@meta-x.org>
10307 S:      Odd Fixes
10308 F:      drivers/staging/panel/
10309
10310 STAGING - REALTEK RTL8712U DRIVERS
10311 M:      Larry Finger <Larry.Finger@lwfinger.net>
10312 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
10313 S:      Odd Fixes
10314 F:      drivers/staging/rtl8712/
10315
10316 STAGING - REALTEK RTL8723U WIRELESS DRIVER
10317 M:      Larry Finger <Larry.Finger@lwfinger.net>
10318 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
10319 L:      linux-wireless@vger.kernel.org
10320 S:      Maintained
10321 F:      drivers/staging/rtl8723au/
10322
10323 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
10324 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
10325 M:      Teddy Wang <teddy.wang@siliconmotion.com>
10326 M:      Sudip Mukherjee <sudip@vectorindia.org>
10327 L:      linux-fbdev@vger.kernel.org
10328 S:      Maintained
10329 F:      drivers/staging/sm750fb/
10330
10331 STAGING - SLICOSS
10332 M:      Lior Dotan <liodot@gmail.com>
10333 M:      Christopher Harrer <charrer@alacritech.com>
10334 S:      Odd Fixes
10335 F:      drivers/staging/slicoss/
10336
10337 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
10338 M:      William Hubbs <w.d.hubbs@gmail.com>
10339 M:      Chris Brannon <chris@the-brannons.com>
10340 M:      Kirk Reiser <kirk@reisers.ca>
10341 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
10342 L:      speakup@linux-speakup.org
10343 W:      http://www.linux-speakup.org/
10344 S:      Odd Fixes
10345 F:      drivers/staging/speakup/
10346
10347 STAGING - VIA VT665X DRIVERS
10348 M:      Forest Bond <forest@alittletooquiet.net>
10349 S:      Odd Fixes
10350 F:      drivers/staging/vt665?/
10351
10352 STAGING - WILC1000 WIFI DRIVER
10353 M:      Johnny Kim <johnny.kim@atmel.com>
10354 M:      Austin Shin <austin.shin@atmel.com>
10355 M:      Chris Park <chris.park@atmel.com>
10356 M:      Tony Cho <tony.cho@atmel.com>
10357 M:      Glen Lee <glen.lee@atmel.com>
10358 M:      Leo Kim <leo.kim@atmel.com>
10359 L:      linux-wireless@vger.kernel.org
10360 S:      Supported
10361 F:      drivers/staging/wilc1000/
10362
10363 STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
10364 M:      Arnaud Patard <arnaud.patard@rtp-net.org>
10365 S:      Odd Fixes
10366 F:      drivers/staging/xgifb/
10367
10368 HFI1 DRIVER
10369 M:      Mike Marciniszyn <infinipath@intel.com>
10370 L:      linux-rdma@vger.kernel.org
10371 S:      Supported
10372 F:      drivers/staging/rdma/hfi1
10373
10374 STARFIRE/DURALAN NETWORK DRIVER
10375 M:      Ion Badulescu <ionut@badula.org>
10376 S:      Odd Fixes
10377 F:      drivers/net/ethernet/adaptec/starfire*
10378
10379 SUN3/3X
10380 M:      Sam Creasey <sammy@sammy.net>
10381 W:      http://sammy.net/sun3/
10382 S:      Maintained
10383 F:      arch/m68k/kernel/*sun3*
10384 F:      arch/m68k/sun3*/
10385 F:      arch/m68k/include/asm/sun3*
10386 F:      drivers/net/ethernet/i825xx/sun3*
10387
10388 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
10389 M:      Hans de Goede <hdegoede@redhat.com>
10390 L:      linux-input@vger.kernel.org
10391 S:      Maintained
10392 F:      Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
10393 F:      drivers/input/keyboard/sun4i-lradc-keys.c
10394
10395 SUNDANCE NETWORK DRIVER
10396 M:      Denis Kirjanov <kda@linux-powerpc.org>
10397 L:      netdev@vger.kernel.org
10398 S:      Maintained
10399 F:      drivers/net/ethernet/dlink/sundance.c
10400
10401 SUPERH
10402 L:      linux-sh@vger.kernel.org
10403 Q:      http://patchwork.kernel.org/project/linux-sh/list/
10404 S:      Orphan
10405 F:      Documentation/sh/
10406 F:      arch/sh/
10407 F:      drivers/sh/
10408
10409 SUSPEND TO RAM
10410 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
10411 M:      Len Brown <len.brown@intel.com>
10412 M:      Pavel Machek <pavel@ucw.cz>
10413 L:      linux-pm@vger.kernel.org
10414 S:      Supported
10415 F:      Documentation/power/
10416 F:      arch/x86/kernel/acpi/
10417 F:      drivers/base/power/
10418 F:      kernel/power/
10419 F:      include/linux/suspend.h
10420 F:      include/linux/freezer.h
10421 F:      include/linux/pm.h
10422
10423 SVGA HANDLING
10424 M:      Martin Mares <mj@ucw.cz>
10425 L:      linux-video@atrey.karlin.mff.cuni.cz
10426 S:      Maintained
10427 F:      Documentation/svga.txt
10428 F:      arch/x86/boot/video*
10429
10430 SWIOTLB SUBSYSTEM
10431 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10432 L:      linux-kernel@vger.kernel.org
10433 S:      Supported
10434 F:      lib/swiotlb.c
10435 F:      arch/*/kernel/pci-swiotlb.c
10436 F:      include/linux/swiotlb.h
10437
10438 SWITCHDEV
10439 M:      Jiri Pirko <jiri@resnulli.us>
10440 L:      netdev@vger.kernel.org
10441 S:      Supported
10442 F:      net/switchdev/
10443 F:      include/net/switchdev.h
10444
10445 SYNOPSYS ARC ARCHITECTURE
10446 M:      Vineet Gupta <vgupta@synopsys.com>
10447 L:      linux-snps-arc@lists.infradead.org
10448 S:      Supported
10449 F:      arch/arc/
10450 F:      Documentation/devicetree/bindings/arc/*
10451 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
10452 F:      drivers/tty/serial/arc_uart.c
10453 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
10454
10455 SYNOPSYS ARC SDP platform support
10456 M:      Alexey Brodkin <abrodkin@synopsys.com>
10457 S:      Supported
10458 F:      arch/arc/plat-axs10x
10459 F:      arch/arc/boot/dts/ax*
10460 F:      Documentation/devicetree/bindings/arc/axs10*
10461
10462 SYSTEM CONFIGURATION (SYSCON)
10463 M:      Lee Jones <lee.jones@linaro.org>
10464 M:      Arnd Bergmann <arnd@arndb.de>
10465 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
10466 S:      Supported
10467 F:      drivers/mfd/syscon.c
10468
10469 SYSV FILESYSTEM
10470 M:      Christoph Hellwig <hch@infradead.org>
10471 S:      Maintained
10472 F:      Documentation/filesystems/sysv-fs.txt
10473 F:      fs/sysv/
10474 F:      include/linux/sysv_fs.h
10475
10476 TARGET SUBSYSTEM
10477 M:      "Nicholas A. Bellinger" <nab@linux-iscsi.org>
10478 L:      linux-scsi@vger.kernel.org
10479 L:      target-devel@vger.kernel.org
10480 W:      http://www.linux-iscsi.org
10481 W:      http://groups.google.com/group/linux-iscsi-target-dev
10482 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10483 S:      Supported
10484 F:      drivers/target/
10485 F:      include/target/
10486 F:      Documentation/target/
10487
10488 TASKSTATS STATISTICS INTERFACE
10489 M:      Balbir Singh <bsingharora@gmail.com>
10490 S:      Maintained
10491 F:      Documentation/accounting/taskstats*
10492 F:      include/linux/taskstats*
10493 F:      kernel/taskstats.c
10494
10495 TC CLASSIFIER
10496 M:      Jamal Hadi Salim <jhs@mojatatu.com>
10497 L:      netdev@vger.kernel.org
10498 S:      Maintained
10499 F:      include/net/pkt_cls.h
10500 F:      include/uapi/linux/pkt_cls.h
10501 F:      net/sched/
10502
10503 TCP LOW PRIORITY MODULE
10504 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
10505 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
10506 W:      http://tcp-lp-mod.sourceforge.net/
10507 S:      Maintained
10508 F:      net/ipv4/tcp_lp.c
10509
10510 TDA10071 MEDIA DRIVER
10511 M:      Antti Palosaari <crope@iki.fi>
10512 L:      linux-media@vger.kernel.org
10513 W:      https://linuxtv.org
10514 W:      http://palosaari.fi/linux/
10515 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10516 T:      git git://linuxtv.org/anttip/media_tree.git
10517 S:      Maintained
10518 F:      drivers/media/dvb-frontends/tda10071*
10519
10520 TDA18212 MEDIA DRIVER
10521 M:      Antti Palosaari <crope@iki.fi>
10522 L:      linux-media@vger.kernel.org
10523 W:      https://linuxtv.org
10524 W:      http://palosaari.fi/linux/
10525 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10526 T:      git git://linuxtv.org/anttip/media_tree.git
10527 S:      Maintained
10528 F:      drivers/media/tuners/tda18212*
10529
10530 TDA18218 MEDIA DRIVER
10531 M:      Antti Palosaari <crope@iki.fi>
10532 L:      linux-media@vger.kernel.org
10533 W:      https://linuxtv.org
10534 W:      http://palosaari.fi/linux/
10535 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10536 T:      git git://linuxtv.org/anttip/media_tree.git
10537 S:      Maintained
10538 F:      drivers/media/tuners/tda18218*
10539
10540 TDA18271 MEDIA DRIVER
10541 M:      Michael Krufky <mkrufky@linuxtv.org>
10542 L:      linux-media@vger.kernel.org
10543 W:      https://linuxtv.org
10544 W:      http://github.com/mkrufky
10545 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10546 T:      git git://linuxtv.org/mkrufky/tuners.git
10547 S:      Maintained
10548 F:      drivers/media/tuners/tda18271*
10549
10550 TDA827x MEDIA DRIVER
10551 M:      Michael Krufky <mkrufky@linuxtv.org>
10552 L:      linux-media@vger.kernel.org
10553 W:      https://linuxtv.org
10554 W:      http://github.com/mkrufky
10555 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10556 T:      git git://linuxtv.org/mkrufky/tuners.git
10557 S:      Maintained
10558 F:      drivers/media/tuners/tda8290.*
10559
10560 TDA8290 MEDIA DRIVER
10561 M:      Michael Krufky <mkrufky@linuxtv.org>
10562 L:      linux-media@vger.kernel.org
10563 W:      https://linuxtv.org
10564 W:      http://github.com/mkrufky
10565 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10566 T:      git git://linuxtv.org/mkrufky/tuners.git
10567 S:      Maintained
10568 F:      drivers/media/tuners/tda8290.*
10569
10570 TDA9840 MEDIA DRIVER
10571 M:      Hans Verkuil <hverkuil@xs4all.nl>
10572 L:      linux-media@vger.kernel.org
10573 T:      git git://linuxtv.org/media_tree.git
10574 W:      https://linuxtv.org
10575 S:      Maintained
10576 F:      drivers/media/i2c/tda9840*
10577
10578 TEA5761 TUNER DRIVER
10579 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10580 L:      linux-media@vger.kernel.org
10581 W:      https://linuxtv.org
10582 T:      git git://linuxtv.org/media_tree.git
10583 S:      Odd fixes
10584 F:      drivers/media/tuners/tea5761.*
10585
10586 TEA5767 TUNER DRIVER
10587 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10588 L:      linux-media@vger.kernel.org
10589 W:      https://linuxtv.org
10590 T:      git git://linuxtv.org/media_tree.git
10591 S:      Maintained
10592 F:      drivers/media/tuners/tea5767.*
10593
10594 TEA6415C MEDIA DRIVER
10595 M:      Hans Verkuil <hverkuil@xs4all.nl>
10596 L:      linux-media@vger.kernel.org
10597 T:      git git://linuxtv.org/media_tree.git
10598 W:      https://linuxtv.org
10599 S:      Maintained
10600 F:      drivers/media/i2c/tea6415c*
10601
10602 TEA6420 MEDIA DRIVER
10603 M:      Hans Verkuil <hverkuil@xs4all.nl>
10604 L:      linux-media@vger.kernel.org
10605 T:      git git://linuxtv.org/media_tree.git
10606 W:      https://linuxtv.org
10607 S:      Maintained
10608 F:      drivers/media/i2c/tea6420*
10609
10610 TEAM DRIVER
10611 M:      Jiri Pirko <jiri@resnulli.us>
10612 L:      netdev@vger.kernel.org
10613 S:      Supported
10614 F:      drivers/net/team/
10615 F:      include/linux/if_team.h
10616 F:      include/uapi/linux/if_team.h
10617
10618 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
10619 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
10620 S:      Maintained
10621 F:      arch/x86/platform/ts5500/
10622
10623 TECHNOTREND USB IR RECEIVER
10624 M:      Sean Young <sean@mess.org>
10625 L:      linux-media@vger.kernel.org
10626 S:      Maintained
10627 F:      drivers/media/rc/ttusbir.c
10628
10629 TEGRA ARCHITECTURE SUPPORT
10630 M:      Stephen Warren <swarren@wwwdotorg.org>
10631 M:      Thierry Reding <thierry.reding@gmail.com>
10632 M:      Alexandre Courbot <gnurou@gmail.com>
10633 L:      linux-tegra@vger.kernel.org
10634 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
10635 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
10636 S:      Supported
10637 N:      [^a-z]tegra
10638
10639 TEGRA CLOCK DRIVER
10640 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
10641 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
10642 S:      Supported
10643 F:      drivers/clk/tegra/
10644
10645 TEGRA DMA DRIVER
10646 M:      Laxman Dewangan <ldewangan@nvidia.com>
10647 S:      Supported
10648 F:      drivers/dma/tegra20-apb-dma.c
10649
10650 TEGRA I2C DRIVER
10651 M:      Laxman Dewangan <ldewangan@nvidia.com>
10652 S:      Supported
10653 F:      drivers/i2c/busses/i2c-tegra.c
10654
10655 TEGRA IOMMU DRIVERS
10656 M:      Hiroshi Doyu <hdoyu@nvidia.com>
10657 S:      Supported
10658 F:      drivers/iommu/tegra*
10659
10660 TEGRA KBC DRIVER
10661 M:      Rakesh Iyer <riyer@nvidia.com>
10662 M:      Laxman Dewangan <ldewangan@nvidia.com>
10663 S:      Supported
10664 F:      drivers/input/keyboard/tegra-kbc.c
10665
10666 TEGRA PWM DRIVER
10667 M:      Thierry Reding <thierry.reding@gmail.com>
10668 S:      Supported
10669 F:      drivers/pwm/pwm-tegra.c
10670
10671 TEGRA SERIAL DRIVER
10672 M:      Laxman Dewangan <ldewangan@nvidia.com>
10673 S:      Supported
10674 F:      drivers/tty/serial/serial-tegra.c
10675
10676 TEGRA SPI DRIVER
10677 M:      Laxman Dewangan <ldewangan@nvidia.com>
10678 S:      Supported
10679 F:      drivers/spi/spi-tegra*
10680
10681 TEHUTI ETHERNET DRIVER
10682 M:      Andy Gospodarek <andy@greyhouse.net>
10683 L:      netdev@vger.kernel.org
10684 S:      Supported
10685 F:      drivers/net/ethernet/tehuti/*
10686
10687 Telecom Clock Driver for MCPL0010
10688 M:      Mark Gross <mark.gross@intel.com>
10689 S:      Supported
10690 F:      drivers/char/tlclk.c
10691
10692 TENSILICA XTENSA PORT (xtensa)
10693 M:      Chris Zankel <chris@zankel.net>
10694 M:      Max Filippov <jcmvbkbc@gmail.com>
10695 L:      linux-xtensa@linux-xtensa.org
10696 S:      Maintained
10697 F:      arch/xtensa/
10698 F:      drivers/irqchip/irq-xtensa-*
10699
10700 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
10701 M:      Hans Verkuil <hverkuil@xs4all.nl>
10702 L:      linux-media@vger.kernel.org
10703 T:      git git://linuxtv.org/media_tree.git
10704 W:      https://linuxtv.org
10705 S:      Maintained
10706 F:      drivers/media/radio/radio-raremono.c
10707
10708 THERMAL
10709 M:      Zhang Rui <rui.zhang@intel.com>
10710 M:      Eduardo Valentin <edubezval@gmail.com>
10711 L:      linux-pm@vger.kernel.org
10712 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
10713 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
10714 Q:      https://patchwork.kernel.org/project/linux-pm/list/
10715 S:      Supported
10716 F:      drivers/thermal/
10717 F:      include/linux/thermal.h
10718 F:      include/uapi/linux/thermal.h
10719 F:      include/linux/cpu_cooling.h
10720 F:      Documentation/devicetree/bindings/thermal/
10721
10722 THERMAL/CPU_COOLING
10723 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
10724 M:      Viresh Kumar <viresh.kumar@linaro.org>
10725 M:      Javi Merino <javi.merino@arm.com>
10726 L:      linux-pm@vger.kernel.org
10727 S:      Supported
10728 F:      Documentation/thermal/cpu-cooling-api.txt
10729 F:      drivers/thermal/cpu_cooling.c
10730 F:      include/linux/cpu_cooling.h
10731
10732 THINGM BLINK(1) USB RGB LED DRIVER
10733 M:      Vivien Didelot <vivien.didelot@savoirfairelinux.com>
10734 S:      Maintained
10735 F:      drivers/hid/hid-thingm.c
10736
10737 THINKPAD ACPI EXTRAS DRIVER
10738 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
10739 L:      ibm-acpi-devel@lists.sourceforge.net
10740 L:      platform-driver-x86@vger.kernel.org
10741 W:      http://ibm-acpi.sourceforge.net
10742 W:      http://thinkwiki.org/wiki/Ibm-acpi
10743 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
10744 S:      Maintained
10745 F:      drivers/platform/x86/thinkpad_acpi.c
10746
10747 TI BANDGAP AND THERMAL DRIVER
10748 M:      Eduardo Valentin <edubezval@gmail.com>
10749 L:      linux-pm@vger.kernel.org
10750 L:      linux-omap@vger.kernel.org
10751 S:      Maintained
10752 F:      drivers/thermal/ti-soc-thermal/
10753
10754 TI CDCE706 CLOCK DRIVER
10755 M:      Max Filippov <jcmvbkbc@gmail.com>
10756 S:      Maintained
10757 F:      drivers/clk/clk-cdce706.c
10758
10759 TI CLOCK DRIVER
10760 M:      Tero Kristo <t-kristo@ti.com>
10761 L:      linux-omap@vger.kernel.org
10762 S:      Maintained
10763 F:      drivers/clk/ti/
10764 F:      include/linux/clk/ti.h
10765
10766 TI FLASH MEDIA INTERFACE DRIVER
10767 M:      Alex Dubov <oakad@yahoo.com>
10768 S:      Maintained
10769 F:      drivers/misc/tifm*
10770 F:      drivers/mmc/host/tifm_sd.c
10771 F:      include/linux/tifm.h
10772
10773 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
10774 M:      Santosh Shilimkar <ssantosh@kernel.org>
10775 L:      linux-kernel@vger.kernel.org
10776 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10777 S:      Maintained
10778 F:      drivers/soc/ti/*
10779 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
10780
10781
10782 TI LM49xxx FAMILY ASoC CODEC DRIVERS
10783 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
10784 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
10785 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10786 S:      Maintained
10787 F:      sound/soc/codecs/lm49453*
10788 F:      sound/soc/codecs/isabelle*
10789
10790 TI LP855x BACKLIGHT DRIVER
10791 M:      Milo Kim <milo.kim@ti.com>
10792 S:      Maintained
10793 F:      Documentation/backlight/lp855x-driver.txt
10794 F:      drivers/video/backlight/lp855x_bl.c
10795 F:      include/linux/platform_data/lp855x.h
10796
10797 TI LP8727 CHARGER DRIVER
10798 M:      Milo Kim <milo.kim@ti.com>
10799 S:      Maintained
10800 F:      drivers/power/lp8727_charger.c
10801 F:      include/linux/platform_data/lp8727.h
10802
10803 TI LP8788 MFD DRIVER
10804 M:      Milo Kim <milo.kim@ti.com>
10805 S:      Maintained
10806 F:      drivers/iio/adc/lp8788_adc.c
10807 F:      drivers/leds/leds-lp8788.c
10808 F:      drivers/mfd/lp8788*.c
10809 F:      drivers/power/lp8788-charger.c
10810 F:      drivers/regulator/lp8788-*.c
10811 F:      include/linux/mfd/lp8788*.h
10812
10813 TI NETCP ETHERNET DRIVER
10814 M:      Wingman Kwok <w-kwok2@ti.com>
10815 M:      Murali Karicheri <m-karicheri2@ti.com>
10816 L:      netdev@vger.kernel.org
10817 S:      Maintained
10818 F:      drivers/net/ethernet/ti/netcp*
10819
10820 TI TAS571X FAMILY ASoC CODEC DRIVER
10821 M:      Kevin Cernekee <cernekee@chromium.org>
10822 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10823 S:      Odd Fixes
10824 F:      sound/soc/codecs/tas571x*
10825
10826 TI TWL4030 SERIES SOC CODEC DRIVER
10827 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
10828 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10829 S:      Maintained
10830 F:      sound/soc/codecs/twl4030*
10831
10832 TI WILINK WIRELESS DRIVERS
10833 L:      linux-wireless@vger.kernel.org
10834 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
10835 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
10836 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
10837 S:      Orphan
10838 F:      drivers/net/wireless/ti/
10839 F:      include/linux/wl12xx.h
10840
10841 TIPC NETWORK LAYER
10842 M:      Jon Maloy <jon.maloy@ericsson.com>
10843 M:      Ying Xue <ying.xue@windriver.com>
10844 L:      netdev@vger.kernel.org (core kernel code)
10845 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
10846 W:      http://tipc.sourceforge.net/
10847 S:      Maintained
10848 F:      include/uapi/linux/tipc*.h
10849 F:      net/tipc/
10850
10851 TILE ARCHITECTURE
10852 M:      Chris Metcalf <cmetcalf@ezchip.com>
10853 W:      http://www.ezchip.com/scm/
10854 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cmetcalf/linux-tile.git
10855 S:      Supported
10856 F:      arch/tile/
10857 F:      drivers/char/tile-srom.c
10858 F:      drivers/edac/tile_edac.c
10859 F:      drivers/net/ethernet/tile/
10860 F:      drivers/rtc/rtc-tile.c
10861 F:      drivers/tty/hvc/hvc_tile.c
10862 F:      drivers/tty/serial/tilegx.c
10863 F:      drivers/usb/host/*-tilegx.c
10864 F:      include/linux/usb/tilegx.h
10865
10866 TLAN NETWORK DRIVER
10867 M:      Samuel Chessman <chessman@tux.org>
10868 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
10869 W:      http://sourceforge.net/projects/tlan/
10870 S:      Maintained
10871 F:      Documentation/networking/tlan.txt
10872 F:      drivers/net/ethernet/ti/tlan.*
10873
10874 TOMOYO SECURITY MODULE
10875 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
10876 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
10877 L:      tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
10878 L:      tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
10879 L:      tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
10880 L:      tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
10881 W:      http://tomoyo.sourceforge.jp/
10882 T:      quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
10883 S:      Maintained
10884 F:      security/tomoyo/
10885
10886 TOPSTAR LAPTOP EXTRAS DRIVER
10887 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
10888 L:      platform-driver-x86@vger.kernel.org
10889 S:      Maintained
10890 F:      drivers/platform/x86/topstar-laptop.c
10891
10892 TOSHIBA ACPI EXTRAS DRIVER
10893 M:      Azael Avalos <coproscefalo@gmail.com>
10894 L:      platform-driver-x86@vger.kernel.org
10895 S:      Maintained
10896 F:      drivers/platform/x86/toshiba_acpi.c
10897
10898 TOSHIBA BLUETOOTH DRIVER
10899 M:      Azael Avalos <coproscefalo@gmail.com>
10900 L:      platform-driver-x86@vger.kernel.org
10901 S:      Maintained
10902 F:      drivers/platform/x86/toshiba_bluetooth.c
10903
10904 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
10905 M:      Azael Avalos <coproscefalo@gmail.com>
10906 L:      platform-driver-x86@vger.kernel.org
10907 S:      Maintained
10908 F:      drivers/platform/x86/toshiba_haps.c
10909
10910 TOSHIBA WMI HOTKEYS DRIVER
10911 M:      Azael Avalos <coproscefalo@gmail.com>
10912 L:      platform-driver-x86@vger.kernel.org
10913 S:      Maintained
10914 F:      drivers/platform/x86/toshiba-wmi.c
10915
10916 TOSHIBA SMM DRIVER
10917 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
10918 W:      http://www.buzzard.org.uk/toshiba/
10919 S:      Maintained
10920 F:      drivers/char/toshiba.c
10921 F:      include/linux/toshiba.h
10922 F:      include/uapi/linux/toshiba.h
10923
10924 TOSHIBA TC358743 DRIVER
10925 M:      Mats Randgaard <matrandg@cisco.com>
10926 L:      linux-media@vger.kernel.org
10927 S:      Maintained
10928 F:      drivers/media/i2c/tc358743*
10929 F:      include/media/i2c/tc358743.h
10930
10931 TMIO MMC DRIVER
10932 M:      Ian Molton <ian@mnementh.co.uk>
10933 L:      linux-mmc@vger.kernel.org
10934 S:      Maintained
10935 F:      drivers/mmc/host/tmio_mmc*
10936 F:      drivers/mmc/host/sh_mobile_sdhi.c
10937 F:      include/linux/mmc/tmio.h
10938 F:      include/linux/mmc/sh_mobile_sdhi.h
10939
10940 TMP401 HARDWARE MONITOR DRIVER
10941 M:      Guenter Roeck <linux@roeck-us.net>
10942 L:      lm-sensors@lm-sensors.org
10943 S:      Maintained
10944 F:      Documentation/hwmon/tmp401
10945 F:      drivers/hwmon/tmp401.c
10946
10947 TMPFS (SHMEM FILESYSTEM)
10948 M:      Hugh Dickins <hughd@google.com>
10949 L:      linux-mm@kvack.org
10950 S:      Maintained
10951 F:      include/linux/shmem_fs.h
10952 F:      mm/shmem.c
10953
10954 TM6000 VIDEO4LINUX DRIVER
10955 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10956 L:      linux-media@vger.kernel.org
10957 W:      https://linuxtv.org
10958 T:      git git://linuxtv.org/media_tree.git
10959 S:      Odd fixes
10960 F:      drivers/media/usb/tm6000/
10961
10962 TW68 VIDEO4LINUX DRIVER
10963 M:      Hans Verkuil <hverkuil@xs4all.nl>
10964 L:      linux-media@vger.kernel.org
10965 T:      git git://linuxtv.org/media_tree.git
10966 W:      https://linuxtv.org
10967 S:      Odd Fixes
10968 F:      drivers/media/pci/tw68/
10969
10970 TPM DEVICE DRIVER
10971 M:      Peter Huewe <peterhuewe@gmx.de>
10972 M:      Marcel Selhorst <tpmdd@selhorst.net>
10973 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
10974 R:      Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
10975 W:      http://tpmdd.sourceforge.net
10976 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
10977 Q:      git git://github.com/PeterHuewe/linux-tpmdd.git
10978 T:      https://github.com/PeterHuewe/linux-tpmdd
10979 S:      Maintained
10980 F:      drivers/char/tpm/
10981
10982 TPM IBM_VTPM DEVICE DRIVER
10983 M:      Ashley Lai <ashleydlai@gmail.com>
10984 W:      http://tpmdd.sourceforge.net
10985 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
10986 S:      Maintained
10987 F:      drivers/char/tpm/tpm_ibmvtpm*
10988
10989 TRACING
10990 M:      Steven Rostedt <rostedt@goodmis.org>
10991 M:      Ingo Molnar <mingo@redhat.com>
10992 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
10993 S:      Maintained
10994 F:      Documentation/trace/ftrace.txt
10995 F:      arch/*/*/*/ftrace.h
10996 F:      arch/*/kernel/ftrace.c
10997 F:      include/*/ftrace.h
10998 F:      include/linux/trace*.h
10999 F:      include/trace/
11000 F:      kernel/trace/
11001 F:      tools/testing/selftests/ftrace/
11002
11003 TRIVIAL PATCHES
11004 M:      Jiri Kosina <trivial@kernel.org>
11005 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
11006 S:      Maintained
11007 K:      ^Subject:.*(?i)trivial
11008
11009 TTY LAYER
11010 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11011 M:      Jiri Slaby <jslaby@suse.com>
11012 S:      Supported
11013 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
11014 F:      Documentation/serial/
11015 F:      drivers/tty/
11016 F:      drivers/tty/serial/serial_core.c
11017 F:      include/linux/serial_core.h
11018 F:      include/linux/serial.h
11019 F:      include/linux/tty.h
11020 F:      include/uapi/linux/serial_core.h
11021 F:      include/uapi/linux/serial.h
11022 F:      include/uapi/linux/tty.h
11023
11024 TUA9001 MEDIA DRIVER
11025 M:      Antti Palosaari <crope@iki.fi>
11026 L:      linux-media@vger.kernel.org
11027 W:      https://linuxtv.org
11028 W:      http://palosaari.fi/linux/
11029 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11030 T:      git git://linuxtv.org/anttip/media_tree.git
11031 S:      Maintained
11032 F:      drivers/media/tuners/tua9001*
11033
11034 TULIP NETWORK DRIVERS
11035 L:      netdev@vger.kernel.org
11036 L:      linux-parisc@vger.kernel.org
11037 S:      Orphan
11038 F:      drivers/net/ethernet/dec/tulip/
11039
11040 TUN/TAP driver
11041 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
11042 W:      http://vtun.sourceforge.net/tun
11043 S:      Maintained
11044 F:      Documentation/networking/tuntap.txt
11045 F:      arch/um/os-Linux/drivers/
11046
11047 TURBOCHANNEL SUBSYSTEM
11048 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
11049 M:      Ralf Baechle <ralf@linux-mips.org>
11050 L:      linux-mips@linux-mips.org
11051 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
11052 S:      Maintained
11053 F:      drivers/tc/
11054 F:      include/linux/tc.h
11055
11056 U14-34F SCSI DRIVER
11057 M:      Dario Ballabio <ballabio_dario@emc.com>
11058 L:      linux-scsi@vger.kernel.org
11059 S:      Maintained
11060 F:      drivers/scsi/u14-34f.c
11061
11062 UBI FILE SYSTEM (UBIFS)
11063 M:      Artem Bityutskiy <dedekind1@gmail.com>
11064 M:      Adrian Hunter <adrian.hunter@intel.com>
11065 L:      linux-mtd@lists.infradead.org
11066 T:      git git://git.infradead.org/ubifs-2.6.git
11067 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
11068 S:      Maintained
11069 F:      Documentation/filesystems/ubifs.txt
11070 F:      fs/ubifs/
11071
11072 UCLINUX (M68KNOMMU AND COLDFIRE)
11073 M:      Greg Ungerer <gerg@uclinux.org>
11074 W:      http://www.uclinux.org/
11075 L:      linux-m68k@lists.linux-m68k.org
11076 L:      uclinux-dev@uclinux.org  (subscribers-only)
11077 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
11078 S:      Maintained
11079 F:      arch/m68k/coldfire/
11080 F:      arch/m68k/68*/
11081 F:      arch/m68k/*/*_no.*
11082 F:      arch/m68k/include/asm/*_no.*
11083
11084 UDF FILESYSTEM
11085 M:      Jan Kara <jack@suse.com>
11086 S:      Maintained
11087 F:      Documentation/filesystems/udf.txt
11088 F:      fs/udf/
11089
11090 UFS FILESYSTEM
11091 M:      Evgeniy Dushistov <dushistov@mail.ru>
11092 S:      Maintained
11093 F:      Documentation/filesystems/ufs.txt
11094 F:      fs/ufs/
11095
11096 UHID USERSPACE HID IO DRIVER:
11097 M:      David Herrmann <dh.herrmann@googlemail.com>
11098 L:      linux-input@vger.kernel.org
11099 S:      Maintained
11100 F:      drivers/hid/uhid.c
11101 F:      include/uapi/linux/uhid.h
11102
11103 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
11104 L:      linux-usb@vger.kernel.org
11105 S:      Orphan
11106 F:      drivers/uwb/
11107 F:      include/linux/uwb.h
11108 F:      include/linux/uwb/
11109
11110 UNICORE32 ARCHITECTURE:
11111 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
11112 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
11113 S:      Maintained
11114 T:      git git://github.com/gxt/linux.git
11115 F:      arch/unicore32/
11116
11117 UNIFDEF
11118 M:      Tony Finch <dot@dotat.at>
11119 W:      http://dotat.at/prog/unifdef
11120 S:      Maintained
11121 F:      scripts/unifdef.c
11122
11123 UNIFORM CDROM DRIVER
11124 M:      Jens Axboe <axboe@kernel.dk>
11125 W:      http://www.kernel.dk
11126 S:      Maintained
11127 F:      Documentation/cdrom/
11128 F:      drivers/cdrom/cdrom.c
11129 F:      include/linux/cdrom.h
11130 F:      include/uapi/linux/cdrom.h
11131
11132 UNISYS S-PAR DRIVERS
11133 M:      Benjamin Romer <benjamin.romer@unisys.com>
11134 M:      David Kershner <david.kershner@unisys.com>
11135 L:      sparmaintainer@unisys.com (Unisys internal)
11136 S:      Supported
11137 F:      drivers/staging/unisys/
11138
11139 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
11140 M:      Vinayak Holikatti <vinholikatti@gmail.com>
11141 L:      linux-scsi@vger.kernel.org
11142 S:      Supported
11143 F:      Documentation/scsi/ufs.txt
11144 F:      drivers/scsi/ufs/
11145
11146 UNSORTED BLOCK IMAGES (UBI)
11147 M:      Artem Bityutskiy <dedekind1@gmail.com>
11148 M:      Richard Weinberger <richard@nod.at>
11149 W:      http://www.linux-mtd.infradead.org/
11150 L:      linux-mtd@lists.infradead.org
11151 T:      git git://git.infradead.org/ubifs-2.6.git
11152 S:      Supported
11153 F:      drivers/mtd/ubi/
11154 F:      include/linux/mtd/ubi.h
11155 F:      include/uapi/mtd/ubi-user.h
11156
11157 USB ACM DRIVER
11158 M:      Oliver Neukum <oliver@neukum.org>
11159 L:      linux-usb@vger.kernel.org
11160 S:      Maintained
11161 F:      Documentation/usb/acm.txt
11162 F:      drivers/usb/class/cdc-acm.*
11163
11164 USB AR5523 WIRELESS DRIVER
11165 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
11166 L:      linux-wireless@vger.kernel.org
11167 S:      Maintained
11168 F:      drivers/net/wireless/ath/ar5523/
11169
11170 USB ATTACHED SCSI
11171 M:      Hans de Goede <hdegoede@redhat.com>
11172 M:      Gerd Hoffmann <kraxel@redhat.com>
11173 L:      linux-usb@vger.kernel.org
11174 L:      linux-scsi@vger.kernel.org
11175 S:      Maintained
11176 F:      drivers/usb/storage/uas.c
11177
11178 USB CDC ETHERNET DRIVER
11179 M:      Oliver Neukum <oliver@neukum.org>
11180 L:      linux-usb@vger.kernel.org
11181 S:      Maintained
11182 F:      drivers/net/usb/cdc_*.c
11183 F:      include/uapi/linux/usb/cdc.h
11184
11185 USB CHAOSKEY DRIVER
11186 M:      Keith Packard <keithp@keithp.com>
11187 L:      linux-usb@vger.kernel.org
11188 S:      Maintained
11189 F:      drivers/usb/misc/chaoskey.c
11190
11191 USB CYPRESS C67X00 DRIVER
11192 M:      Peter Korsgaard <jacmet@sunsite.dk>
11193 L:      linux-usb@vger.kernel.org
11194 S:      Maintained
11195 F:      drivers/usb/c67x00/
11196
11197 USB DAVICOM DM9601 DRIVER
11198 M:      Peter Korsgaard <jacmet@sunsite.dk>
11199 L:      netdev@vger.kernel.org
11200 W:      http://www.linux-usb.org/usbnet
11201 S:      Maintained
11202 F:      drivers/net/usb/dm9601.c
11203
11204 USB DIAMOND RIO500 DRIVER
11205 M:      Cesar Miquel <miquel@df.uba.ar>
11206 L:      rio500-users@lists.sourceforge.net
11207 W:      http://rio500.sourceforge.net
11208 S:      Maintained
11209 F:      drivers/usb/misc/rio500*
11210
11211 USB EHCI DRIVER
11212 M:      Alan Stern <stern@rowland.harvard.edu>
11213 L:      linux-usb@vger.kernel.org
11214 S:      Maintained
11215 F:      Documentation/usb/ehci.txt
11216 F:      drivers/usb/host/ehci*
11217
11218 USB GADGET/PERIPHERAL SUBSYSTEM
11219 M:      Felipe Balbi <balbi@ti.com>
11220 L:      linux-usb@vger.kernel.org
11221 W:      http://www.linux-usb.org/gadget
11222 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
11223 S:      Maintained
11224 F:      drivers/usb/gadget/
11225 F:      include/linux/usb/gadget*
11226
11227 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
11228 M:      Jiri Kosina <jikos@kernel.org>
11229 R:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
11230 L:      linux-usb@vger.kernel.org
11231 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
11232 S:      Maintained
11233 F:      Documentation/hid/hiddev.txt
11234 F:      drivers/hid/usbhid/
11235
11236 USB ISP116X DRIVER
11237 M:      Olav Kongas <ok@artecdesign.ee>
11238 L:      linux-usb@vger.kernel.org
11239 S:      Maintained
11240 F:      drivers/usb/host/isp116x*
11241 F:      include/linux/usb/isp116x.h
11242
11243 USB MASS STORAGE DRIVER
11244 M:      Matthew Dharm <mdharm-usb@one-eyed-alien.net>
11245 L:      linux-usb@vger.kernel.org
11246 L:      usb-storage@lists.one-eyed-alien.net
11247 S:      Maintained
11248 W:      http://www.one-eyed-alien.net/~mdharm/linux-usb/
11249 F:      drivers/usb/storage/
11250
11251 USB MIDI DRIVER
11252 M:      Clemens Ladisch <clemens@ladisch.de>
11253 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11254 T:      git git://git.alsa-project.org/alsa-kernel.git
11255 S:      Maintained
11256 F:      sound/usb/midi.*
11257
11258 USB NETWORKING DRIVERS
11259 L:      linux-usb@vger.kernel.org
11260 S:      Odd Fixes
11261 F:      drivers/net/usb/
11262
11263 USB OHCI DRIVER
11264 M:      Alan Stern <stern@rowland.harvard.edu>
11265 L:      linux-usb@vger.kernel.org
11266 S:      Maintained
11267 F:      Documentation/usb/ohci.txt
11268 F:      drivers/usb/host/ohci*
11269
11270 USB OTG FSM (Finite State Machine)
11271 M:      Peter Chen <Peter.Chen@nxp.com>
11272 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
11273 L:      linux-usb@vger.kernel.org
11274 S:      Maintained
11275 F:      drivers/usb/common/usb-otg-fsm.c
11276
11277 USB OVER IP DRIVER
11278 M:      Valentina Manea <valentina.manea.m@gmail.com>
11279 M:      Shuah Khan <shuah.kh@samsung.com>
11280 L:      linux-usb@vger.kernel.org
11281 S:      Maintained
11282 F:      drivers/usb/usbip/
11283 F:      tools/usb/usbip/
11284
11285 USB PEGASUS DRIVER
11286 M:      Petko Manolov <petkan@nucleusys.com>
11287 L:      linux-usb@vger.kernel.org
11288 L:      netdev@vger.kernel.org
11289 T:      git git://github.com/petkan/pegasus.git
11290 W:      https://github.com/petkan/pegasus
11291 S:      Maintained
11292 F:      drivers/net/usb/pegasus.*
11293
11294 USB PHY LAYER
11295 M:      Felipe Balbi <balbi@ti.com>
11296 L:      linux-usb@vger.kernel.org
11297 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
11298 S:      Maintained
11299 F:      drivers/usb/phy/
11300
11301 USB PRINTER DRIVER (usblp)
11302 M:      Pete Zaitcev <zaitcev@redhat.com>
11303 L:      linux-usb@vger.kernel.org
11304 S:      Supported
11305 F:      drivers/usb/class/usblp.c
11306
11307 USB QMI WWAN NETWORK DRIVER
11308 M:      Bjørn Mork <bjorn@mork.no>
11309 L:      netdev@vger.kernel.org
11310 S:      Maintained
11311 F:      Documentation/ABI/testing/sysfs-class-net-qmi
11312 F:      drivers/net/usb/qmi_wwan.c
11313
11314 USB RTL8150 DRIVER
11315 M:      Petko Manolov <petkan@nucleusys.com>
11316 L:      linux-usb@vger.kernel.org
11317 L:      netdev@vger.kernel.org
11318 T:      git git://github.com/petkan/rtl8150.git
11319 W:      https://github.com/petkan/rtl8150
11320 S:      Maintained
11321 F:      drivers/net/usb/rtl8150.c
11322
11323 USB SERIAL SUBSYSTEM
11324 M:      Johan Hovold <johan@kernel.org>
11325 L:      linux-usb@vger.kernel.org
11326 S:      Maintained
11327 F:      Documentation/usb/usb-serial.txt
11328 F:      drivers/usb/serial/
11329 F:      include/linux/usb/serial.h
11330
11331 USB SMSC75XX ETHERNET DRIVER
11332 M:      Steve Glendinning <steve.glendinning@shawell.net>
11333 L:      netdev@vger.kernel.org
11334 S:      Maintained
11335 F:      drivers/net/usb/smsc75xx.*
11336
11337 USB SMSC95XX ETHERNET DRIVER
11338 M:      Steve Glendinning <steve.glendinning@shawell.net>
11339 L:      netdev@vger.kernel.org
11340 S:      Maintained
11341 F:      drivers/net/usb/smsc95xx.*
11342
11343 USB SUBSYSTEM
11344 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11345 L:      linux-usb@vger.kernel.org
11346 W:      http://www.linux-usb.org
11347 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
11348 S:      Supported
11349 F:      Documentation/usb/
11350 F:      drivers/usb/
11351 F:      include/linux/usb.h
11352 F:      include/linux/usb/
11353
11354 USB UHCI DRIVER
11355 M:      Alan Stern <stern@rowland.harvard.edu>
11356 L:      linux-usb@vger.kernel.org
11357 S:      Maintained
11358 F:      drivers/usb/host/uhci*
11359
11360 USB "USBNET" DRIVER FRAMEWORK
11361 M:      Oliver Neukum <oneukum@suse.com>
11362 L:      netdev@vger.kernel.org
11363 W:      http://www.linux-usb.org/usbnet
11364 S:      Maintained
11365 F:      drivers/net/usb/usbnet.c
11366 F:      include/linux/usb/usbnet.h
11367
11368 USB VIDEO CLASS
11369 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11370 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
11371 L:      linux-media@vger.kernel.org
11372 T:      git git://linuxtv.org/media_tree.git
11373 W:      http://www.ideasonboard.org/uvc/
11374 S:      Maintained
11375 F:      drivers/media/usb/uvc/
11376 F:      include/uapi/linux/uvcvideo.h
11377
11378 USB VISION DRIVER
11379 M:      Hans Verkuil <hverkuil@xs4all.nl>
11380 L:      linux-media@vger.kernel.org
11381 T:      git git://linuxtv.org/media_tree.git
11382 W:      https://linuxtv.org
11383 S:      Odd Fixes
11384 F:      drivers/media/usb/usbvision/
11385
11386 USB WEBCAM GADGET
11387 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11388 L:      linux-usb@vger.kernel.org
11389 S:      Maintained
11390 F:      drivers/usb/gadget/function/*uvc*
11391 F:      drivers/usb/gadget/legacy/webcam.c
11392
11393 USB WIRELESS RNDIS DRIVER (rndis_wlan)
11394 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
11395 L:      linux-wireless@vger.kernel.org
11396 S:      Maintained
11397 F:      drivers/net/wireless/rndis_wlan.c
11398
11399 USB XHCI DRIVER
11400 M:      Mathias Nyman <mathias.nyman@intel.com>
11401 L:      linux-usb@vger.kernel.org
11402 S:      Supported
11403 F:      drivers/usb/host/xhci*
11404 F:      drivers/usb/host/pci-quirks*
11405
11406 USB ZD1201 DRIVER
11407 L:      linux-wireless@vger.kernel.org
11408 W:      http://linux-lc100020.sourceforge.net
11409 S:      Orphan
11410 F:      drivers/net/wireless/zydas/zd1201.*
11411
11412 USB ZR364XX DRIVER
11413 M:      Antoine Jacquet <royale@zerezo.com>
11414 L:      linux-usb@vger.kernel.org
11415 L:      linux-media@vger.kernel.org
11416 T:      git git://linuxtv.org/media_tree.git
11417 W:      http://royale.zerezo.com/zr364xx/
11418 S:      Maintained
11419 F:      Documentation/video4linux/zr364xx.txt
11420 F:      drivers/media/usb/zr364xx/
11421
11422 ULPI BUS
11423 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
11424 L:      linux-usb@vger.kernel.org
11425 S:      Maintained
11426 F:      drivers/usb/common/ulpi.c
11427 F:      include/linux/ulpi/
11428
11429 USER-MODE LINUX (UML)
11430 M:      Jeff Dike <jdike@addtoit.com>
11431 M:      Richard Weinberger <richard@nod.at>
11432 L:      user-mode-linux-devel@lists.sourceforge.net
11433 L:      user-mode-linux-user@lists.sourceforge.net
11434 W:      http://user-mode-linux.sourceforge.net
11435 S:      Maintained
11436 F:      Documentation/virtual/uml/
11437 F:      arch/um/
11438 F:      arch/x86/um/
11439 F:      fs/hostfs/
11440 F:      fs/hppfs/
11441
11442 USERSPACE I/O (UIO)
11443 M:      "Hans J. Koch" <hjk@hansjkoch.de>
11444 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11445 S:      Maintained
11446 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
11447 F:      Documentation/DocBook/uio-howto.tmpl
11448 F:      drivers/uio/
11449 F:      include/linux/uio*.h
11450
11451 UTIL-LINUX PACKAGE
11452 M:      Karel Zak <kzak@redhat.com>
11453 L:      util-linux@vger.kernel.org
11454 W:      http://en.wikipedia.org/wiki/Util-linux
11455 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
11456 S:      Maintained
11457
11458 UVESAFB DRIVER
11459 M:      Michal Januszewski <spock@gentoo.org>
11460 L:      linux-fbdev@vger.kernel.org
11461 W:      http://dev.gentoo.org/~spock/projects/uvesafb/
11462 S:      Maintained
11463 F:      Documentation/fb/uvesafb.txt
11464 F:      drivers/video/fbdev/uvesafb.*
11465
11466 VF610 NAND DRIVER
11467 M:      Stefan Agner <stefan@agner.ch>
11468 L:      linux-mtd@lists.infradead.org
11469 S:      Supported
11470 F:      drivers/mtd/nand/vf610_nfc.c
11471
11472 VFAT/FAT/MSDOS FILESYSTEM
11473 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
11474 S:      Maintained
11475 F:      Documentation/filesystems/vfat.txt
11476 F:      fs/fat/
11477
11478 VFIO DRIVER
11479 M:      Alex Williamson <alex.williamson@redhat.com>
11480 L:      kvm@vger.kernel.org
11481 S:      Maintained
11482 F:      Documentation/vfio.txt
11483 F:      drivers/vfio/
11484 F:      include/linux/vfio.h
11485 F:      include/uapi/linux/vfio.h
11486
11487 VFIO PLATFORM DRIVER
11488 M:      Baptiste Reynal <b.reynal@virtualopensystems.com>
11489 L:      kvm@vger.kernel.org
11490 S:      Maintained
11491 F:      drivers/vfio/platform/
11492
11493 VIDEOBUF2 FRAMEWORK
11494 M:      Pawel Osciak <pawel@osciak.com>
11495 M:      Marek Szyprowski <m.szyprowski@samsung.com>
11496 M:      Kyungmin Park <kyungmin.park@samsung.com>
11497 L:      linux-media@vger.kernel.org
11498 S:      Maintained
11499 F:      drivers/media/v4l2-core/videobuf2-*
11500 F:      include/media/videobuf2-*
11501
11502 VIRTUAL SERIO DEVICE DRIVER
11503 M:      Stephen Chandler Paul <thatslyude@gmail.com>
11504 S:      Maintained
11505 F:      drivers/input/serio/userio.c
11506 F:      include/uapi/linux/userio.h
11507
11508 VIRTIO CONSOLE DRIVER
11509 M:      Amit Shah <amit.shah@redhat.com>
11510 L:      virtualization@lists.linux-foundation.org
11511 S:      Maintained
11512 F:      drivers/char/virtio_console.c
11513 F:      include/linux/virtio_console.h
11514 F:      include/uapi/linux/virtio_console.h
11515
11516 VIRTIO CORE, NET AND BLOCK DRIVERS
11517 M:      "Michael S. Tsirkin" <mst@redhat.com>
11518 L:      virtualization@lists.linux-foundation.org
11519 S:      Maintained
11520 F:      drivers/virtio/
11521 F:      tools/virtio/
11522 F:      drivers/net/virtio_net.c
11523 F:      drivers/block/virtio_blk.c
11524 F:      include/linux/virtio_*.h
11525 F:      include/uapi/linux/virtio_*.h
11526
11527 VIRTIO DRIVERS FOR S390
11528 M:      Christian Borntraeger <borntraeger@de.ibm.com>
11529 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
11530 L:      linux-s390@vger.kernel.org
11531 L:      virtualization@lists.linux-foundation.org
11532 L:      kvm@vger.kernel.org
11533 S:      Supported
11534 F:      drivers/s390/virtio/
11535
11536 VIRTIO GPU DRIVER
11537 M:      David Airlie <airlied@linux.ie>
11538 M:      Gerd Hoffmann <kraxel@redhat.com>
11539 L:      dri-devel@lists.freedesktop.org
11540 L:      virtualization@lists.linux-foundation.org
11541 S:      Maintained
11542 F:      drivers/gpu/drm/virtio/
11543 F:      include/uapi/linux/virtio_gpu.h
11544
11545 VIRTIO HOST (VHOST)
11546 M:      "Michael S. Tsirkin" <mst@redhat.com>
11547 L:      kvm@vger.kernel.org
11548 L:      virtualization@lists.linux-foundation.org
11549 L:      netdev@vger.kernel.org
11550 S:      Maintained
11551 F:      drivers/vhost/
11552 F:      include/uapi/linux/vhost.h
11553
11554 VIRTIO INPUT DRIVER
11555 M:      Gerd Hoffmann <kraxel@redhat.com>
11556 S:      Maintained
11557 F:      drivers/virtio/virtio_input.c
11558 F:      include/uapi/linux/virtio_input.h
11559
11560 VIA RHINE NETWORK DRIVER
11561 S:      Orphan
11562 F:      drivers/net/ethernet/via/via-rhine.c
11563
11564 VIA SD/MMC CARD CONTROLLER DRIVER
11565 M:      Bruce Chang <brucechang@via.com.tw>
11566 M:      Harald Welte <HaraldWelte@viatech.com>
11567 S:      Maintained
11568 F:      drivers/mmc/host/via-sdmmc.c
11569
11570 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
11571 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
11572 L:      linux-fbdev@vger.kernel.org
11573 S:      Maintained
11574 F:      include/linux/via-core.h
11575 F:      include/linux/via-gpio.h
11576 F:      include/linux/via_i2c.h
11577 F:      drivers/video/fbdev/via/
11578
11579 VIA VELOCITY NETWORK DRIVER
11580 M:      Francois Romieu <romieu@fr.zoreil.com>
11581 L:      netdev@vger.kernel.org
11582 S:      Maintained
11583 F:      drivers/net/ethernet/via/via-velocity.*
11584
11585 VIRT LIB
11586 M:      Alex Williamson <alex.williamson@redhat.com>
11587 M:      Paolo Bonzini <pbonzini@redhat.com>
11588 L:      kvm@vger.kernel.org
11589 S:      Supported
11590 F:      virt/lib/
11591
11592 VIVID VIRTUAL VIDEO DRIVER
11593 M:      Hans Verkuil <hverkuil@xs4all.nl>
11594 L:      linux-media@vger.kernel.org
11595 T:      git git://linuxtv.org/media_tree.git
11596 W:      https://linuxtv.org
11597 S:      Maintained
11598 F:      drivers/media/platform/vivid/*
11599
11600 VLAN (802.1Q)
11601 M:      Patrick McHardy <kaber@trash.net>
11602 L:      netdev@vger.kernel.org
11603 S:      Maintained
11604 F:      drivers/net/macvlan.c
11605 F:      include/linux/if_*vlan.h
11606 F:      net/8021q/
11607
11608 VLYNQ BUS
11609 M:      Florian Fainelli <florian@openwrt.org>
11610 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
11611 S:      Maintained
11612 F:      drivers/vlynq/vlynq.c
11613 F:      include/linux/vlynq.h
11614
11615 VME SUBSYSTEM
11616 M:      Martyn Welch <martyn@welchs.me.uk>
11617 M:      Manohar Vanga <manohar.vanga@gmail.com>
11618 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11619 L:      devel@driverdev.osuosl.org
11620 S:      Maintained
11621 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
11622 F:      Documentation/vme_api.txt
11623 F:      drivers/staging/vme/
11624 F:      drivers/vme/
11625 F:      include/linux/vme*
11626
11627 VMWARE HYPERVISOR INTERFACE
11628 M:      Alok Kataria <akataria@vmware.com>
11629 L:      virtualization@lists.linux-foundation.org
11630 S:      Supported
11631 F:      arch/x86/kernel/cpu/vmware.c
11632
11633 VMWARE BALLOON DRIVER
11634 M:      Xavier Deguillard <xdeguillard@vmware.com>
11635 M:      Philip Moltmann <moltmann@vmware.com>
11636 M:      "VMware, Inc." <pv-drivers@vmware.com>
11637 L:      linux-kernel@vger.kernel.org
11638 S:      Maintained
11639 F:      drivers/misc/vmw_balloon.c
11640
11641 VMWARE VMMOUSE SUBDRIVER
11642 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
11643 M:      "VMware, Inc." <pv-drivers@vmware.com>
11644 L:      linux-input@vger.kernel.org
11645 S:      Maintained
11646 F:      drivers/input/mouse/vmmouse.c
11647 F:      drivers/input/mouse/vmmouse.h
11648
11649 VMWARE VMXNET3 ETHERNET DRIVER
11650 M:      Shrikrishna Khare <skhare@vmware.com>
11651 M:      "VMware, Inc." <pv-drivers@vmware.com>
11652 L:      netdev@vger.kernel.org
11653 S:      Maintained
11654 F:      drivers/net/vmxnet3/
11655
11656 VMware PVSCSI driver
11657 M:      Arvind Kumar <arvindkumar@vmware.com>
11658 M:      VMware PV-Drivers <pv-drivers@vmware.com>
11659 L:      linux-scsi@vger.kernel.org
11660 S:      Maintained
11661 F:      drivers/scsi/vmw_pvscsi.c
11662 F:      drivers/scsi/vmw_pvscsi.h
11663
11664 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
11665 M:      Liam Girdwood <lgirdwood@gmail.com>
11666 M:      Mark Brown <broonie@kernel.org>
11667 L:      linux-kernel@vger.kernel.org
11668 W:      http://www.slimlogic.co.uk/?p=48
11669 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
11670 S:      Supported
11671 F:      drivers/regulator/
11672 F:      include/linux/regulator/
11673
11674 VRF
11675 M:      David Ahern <dsa@cumulusnetworks.com>
11676 M:      Shrijeet Mukherjee <shm@cumulusnetworks.com>
11677 L:      netdev@vger.kernel.org
11678 S:      Maintained
11679 F:      drivers/net/vrf.c
11680 F:      Documentation/networking/vrf.txt
11681
11682 VT1211 HARDWARE MONITOR DRIVER
11683 M:      Juerg Haefliger <juergh@gmail.com>
11684 L:      lm-sensors@lm-sensors.org
11685 S:      Maintained
11686 F:      Documentation/hwmon/vt1211
11687 F:      drivers/hwmon/vt1211.c
11688
11689 VT8231 HARDWARE MONITOR DRIVER
11690 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
11691 L:      lm-sensors@lm-sensors.org
11692 S:      Maintained
11693 F:      drivers/hwmon/vt8231.c
11694
11695 VUB300 USB to SDIO/SD/MMC bridge chip
11696 M:      Tony Olech <tony.olech@elandigitalsystems.com>
11697 L:      linux-mmc@vger.kernel.org
11698 L:      linux-usb@vger.kernel.org
11699 S:      Supported
11700 F:      drivers/mmc/host/vub300.c
11701
11702 W1 DALLAS'S 1-WIRE BUS
11703 M:      Evgeniy Polyakov <zbr@ioremap.net>
11704 S:      Maintained
11705 F:      Documentation/w1/
11706 F:      drivers/w1/
11707
11708 W83791D HARDWARE MONITORING DRIVER
11709 M:      Marc Hulsman <m.hulsman@tudelft.nl>
11710 L:      lm-sensors@lm-sensors.org
11711 S:      Maintained
11712 F:      Documentation/hwmon/w83791d
11713 F:      drivers/hwmon/w83791d.c
11714
11715 W83793 HARDWARE MONITORING DRIVER
11716 M:      Rudolf Marek <r.marek@assembler.cz>
11717 L:      lm-sensors@lm-sensors.org
11718 S:      Maintained
11719 F:      Documentation/hwmon/w83793
11720 F:      drivers/hwmon/w83793.c
11721
11722 W83795 HARDWARE MONITORING DRIVER
11723 M:      Jean Delvare <jdelvare@suse.com>
11724 L:      lm-sensors@lm-sensors.org
11725 S:      Maintained
11726 F:      drivers/hwmon/w83795.c
11727
11728 W83L51xD SD/MMC CARD INTERFACE DRIVER
11729 M:      Pierre Ossman <pierre@ossman.eu>
11730 S:      Maintained
11731 F:      drivers/mmc/host/wbsd.*
11732
11733 WACOM PROTOCOL 4 SERIAL TABLETS
11734 M:      Julian Squires <julian@cipht.net>
11735 M:      Hans de Goede <hdegoede@redhat.com>
11736 L:      linux-input@vger.kernel.org
11737 S:      Maintained
11738 F:      drivers/input/tablet/wacom_serial4.c
11739
11740 WATCHDOG DEVICE DRIVERS
11741 M:      Wim Van Sebroeck <wim@iguana.be>
11742 R:      Guenter Roeck <linux@roeck-us.net>
11743 L:      linux-watchdog@vger.kernel.org
11744 W:      http://www.linux-watchdog.org/
11745 T:      git git://www.linux-watchdog.org/linux-watchdog.git
11746 S:      Maintained
11747 F:      Documentation/watchdog/
11748 F:      drivers/watchdog/
11749 F:      include/linux/watchdog.h
11750 F:      include/uapi/linux/watchdog.h
11751
11752 WD7000 SCSI DRIVER
11753 M:      Miroslav Zagorac <zaga@fly.cc.fer.hr>
11754 L:      linux-scsi@vger.kernel.org
11755 S:      Maintained
11756 F:      drivers/scsi/wd7000.c
11757
11758 WIIMOTE HID DRIVER
11759 M:      David Herrmann <dh.herrmann@googlemail.com>
11760 L:      linux-input@vger.kernel.org
11761 S:      Maintained
11762 F:      drivers/hid/hid-wiimote*
11763
11764 WINBOND CIR DRIVER
11765 M:      David Härdeman <david@hardeman.nu>
11766 S:      Maintained
11767 F:      drivers/media/rc/winbond-cir.c
11768
11769 WIMAX STACK
11770 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
11771 M:      linux-wimax@intel.com
11772 L:      wimax@linuxwimax.org (subscribers-only)
11773 S:      Supported
11774 W:      http://linuxwimax.org
11775 F:      Documentation/wimax/README.wimax
11776 F:      include/linux/wimax/debug.h
11777 F:      include/net/wimax.h
11778 F:      include/uapi/linux/wimax.h
11779 F:      net/wimax/
11780
11781 WISTRON LAPTOP BUTTON DRIVER
11782 M:      Miloslav Trmac <mitr@volny.cz>
11783 S:      Maintained
11784 F:      drivers/input/misc/wistron_btns.c
11785
11786 WL3501 WIRELESS PCMCIA CARD DRIVER
11787 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
11788 L:      linux-wireless@vger.kernel.org
11789 W:      http://oops.ghostprotocols.net:81/blog
11790 S:      Maintained
11791 F:      drivers/net/wireless/wl3501*
11792
11793 WOLFSON MICROELECTRONICS DRIVERS
11794 L:      patches@opensource.wolfsonmicro.com
11795 T:      git https://github.com/CirrusLogic/linux-drivers.git
11796 W:      https://github.com/CirrusLogic/linux-drivers/wiki
11797 S:      Supported
11798 F:      Documentation/hwmon/wm83??
11799 F:      Documentation/devicetree/bindings/extcon/extcon-arizona.txt
11800 F:      Documentation/devicetree/bindings/regulator/arizona-regulator.txt
11801 F:      Documentation/devicetree/bindings/mfd/arizona.txt
11802 F:      arch/arm/mach-s3c64xx/mach-crag6410*
11803 F:      drivers/clk/clk-wm83*.c
11804 F:      drivers/extcon/extcon-arizona.c
11805 F:      drivers/leds/leds-wm83*.c
11806 F:      drivers/gpio/gpio-*wm*.c
11807 F:      drivers/gpio/gpio-arizona.c
11808 F:      drivers/hwmon/wm83??-hwmon.c
11809 F:      drivers/input/misc/wm831x-on.c
11810 F:      drivers/input/touchscreen/wm831x-ts.c
11811 F:      drivers/input/touchscreen/wm97*.c
11812 F:      drivers/mfd/arizona*
11813 F:      drivers/mfd/wm*.c
11814 F:      drivers/mfd/cs47l24*
11815 F:      drivers/power/wm83*.c
11816 F:      drivers/rtc/rtc-wm83*.c
11817 F:      drivers/regulator/wm8*.c
11818 F:      drivers/video/backlight/wm83*_bl.c
11819 F:      drivers/watchdog/wm83*_wdt.c
11820 F:      include/linux/mfd/arizona/
11821 F:      include/linux/mfd/wm831x/
11822 F:      include/linux/mfd/wm8350/
11823 F:      include/linux/mfd/wm8400*
11824 F:      include/linux/wm97xx.h
11825 F:      include/sound/wm????.h
11826 F:      sound/soc/codecs/arizona.?
11827 F:      sound/soc/codecs/wm*
11828 F:      sound/soc/codecs/cs47l24*
11829
11830 WORKQUEUE
11831 M:      Tejun Heo <tj@kernel.org>
11832 R:      Lai Jiangshan <jiangshanlai@gmail.com>
11833 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
11834 S:      Maintained
11835 F:      include/linux/workqueue.h
11836 F:      kernel/workqueue.c
11837 F:      Documentation/workqueue.txt
11838
11839 X.25 NETWORK LAYER
11840 M:      Andrew Hendry <andrew.hendry@gmail.com>
11841 L:      linux-x25@vger.kernel.org
11842 S:      Odd Fixes
11843 F:      Documentation/networking/x25*
11844 F:      include/net/x25*
11845 F:      net/x25/
11846
11847 X86 ARCHITECTURE (32-BIT AND 64-BIT)
11848 M:      Thomas Gleixner <tglx@linutronix.de>
11849 M:      Ingo Molnar <mingo@redhat.com>
11850 M:      "H. Peter Anvin" <hpa@zytor.com>
11851 M:      x86@kernel.org
11852 L:      linux-kernel@vger.kernel.org
11853 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
11854 S:      Maintained
11855 F:      Documentation/x86/
11856 F:      arch/x86/
11857
11858 X86 PLATFORM DRIVERS
11859 M:      Darren Hart <dvhart@infradead.org>
11860 L:      platform-driver-x86@vger.kernel.org
11861 T:      git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git
11862 S:      Maintained
11863 F:      drivers/platform/x86/
11864 F:      drivers/platform/olpc/
11865
11866 X86 MCE INFRASTRUCTURE
11867 M:      Tony Luck <tony.luck@intel.com>
11868 M:      Borislav Petkov <bp@alien8.de>
11869 L:      linux-edac@vger.kernel.org
11870 S:      Maintained
11871 F:      arch/x86/kernel/cpu/mcheck/*
11872
11873 X86 MICROCODE UPDATE SUPPORT
11874 M:      Borislav Petkov <bp@alien8.de>
11875 S:      Maintained
11876 F:      arch/x86/kernel/cpu/microcode/*
11877
11878 X86 VDSO
11879 M:      Andy Lutomirski <luto@amacapital.net>
11880 L:      linux-kernel@vger.kernel.org
11881 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
11882 S:      Maintained
11883 F:      arch/x86/entry/vdso/
11884
11885 XC2028/3028 TUNER DRIVER
11886 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
11887 L:      linux-media@vger.kernel.org
11888 W:      https://linuxtv.org
11889 T:      git git://linuxtv.org/media_tree.git
11890 S:      Maintained
11891 F:      drivers/media/tuners/tuner-xc2028.*
11892
11893 XEN HYPERVISOR INTERFACE
11894 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11895 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
11896 M:      David Vrabel <david.vrabel@citrix.com>
11897 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11898 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
11899 S:      Supported
11900 F:      arch/x86/xen/
11901 F:      drivers/*/xen-*front.c
11902 F:      drivers/xen/
11903 F:      arch/x86/include/asm/xen/
11904 F:      include/xen/
11905 F:      include/uapi/xen/
11906
11907 XEN HYPERVISOR ARM
11908 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
11909 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11910 S:      Supported
11911 F:      arch/arm/xen/
11912 F:      arch/arm/include/asm/xen/
11913
11914 XEN HYPERVISOR ARM64
11915 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
11916 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11917 S:      Supported
11918 F:      arch/arm64/xen/
11919 F:      arch/arm64/include/asm/xen/
11920
11921 XEN NETWORK BACKEND DRIVER
11922 M:      Ian Campbell <ian.campbell@citrix.com>
11923 M:      Wei Liu <wei.liu2@citrix.com>
11924 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11925 L:      netdev@vger.kernel.org
11926 S:      Supported
11927 F:      drivers/net/xen-netback/*
11928
11929 XEN PCI SUBSYSTEM
11930 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11931 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11932 S:      Supported
11933 F:      arch/x86/pci/*xen*
11934 F:      drivers/pci/*xen*
11935
11936 XEN BLOCK SUBSYSTEM
11937 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11938 M:      Roger Pau MonnĂ© <roger.pau@citrix.com>
11939 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11940 S:      Supported
11941 F:      drivers/block/xen-blkback/*
11942 F:      drivers/block/xen*
11943
11944 XEN PVSCSI DRIVERS
11945 M:      Juergen Gross <jgross@suse.com>
11946 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11947 L:      linux-scsi@vger.kernel.org
11948 S:      Supported
11949 F:      drivers/scsi/xen-scsifront.c
11950 F:      drivers/xen/xen-scsiback.c
11951 F:      include/xen/interface/io/vscsiif.h
11952
11953 XEN SWIOTLB SUBSYSTEM
11954 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11955 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11956 S:      Supported
11957 F:      arch/x86/xen/*swiotlb*
11958 F:      drivers/xen/*swiotlb*
11959
11960 XFS FILESYSTEM
11961 P:      Silicon Graphics Inc
11962 M:      Dave Chinner <david@fromorbit.com>
11963 M:      xfs@oss.sgi.com
11964 L:      xfs@oss.sgi.com
11965 W:      http://oss.sgi.com/projects/xfs
11966 T:      git git://oss.sgi.com/xfs/xfs.git
11967 S:      Supported
11968 F:      Documentation/filesystems/xfs.txt
11969 F:      fs/xfs/
11970
11971 XILINX AXI ETHERNET DRIVER
11972 M:      Anirudha Sarangi <anirudh@xilinx.com>
11973 M:      John Linn <John.Linn@xilinx.com>
11974 S:      Maintained
11975 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
11976
11977 XILINX UARTLITE SERIAL DRIVER
11978 M:      Peter Korsgaard <jacmet@sunsite.dk>
11979 L:      linux-serial@vger.kernel.org
11980 S:      Maintained
11981 F:      drivers/tty/serial/uartlite.c
11982
11983 XILINX VIDEO IP CORES
11984 M:      Hyun Kwon <hyun.kwon@xilinx.com>
11985 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11986 L:      linux-media@vger.kernel.org
11987 T:      git git://linuxtv.org/media_tree.git
11988 S:      Supported
11989 F:      Documentation/devicetree/bindings/media/xilinx/
11990 F:      drivers/media/platform/xilinx/
11991 F:      include/uapi/linux/xilinx-v4l2-controls.h
11992
11993 XILLYBUS DRIVER
11994 M:      Eli Billauer <eli.billauer@gmail.com>
11995 L:      linux-kernel@vger.kernel.org
11996 S:      Supported
11997 F:      drivers/char/xillybus/
11998
11999 XTENSA XTFPGA PLATFORM SUPPORT
12000 M:      Max Filippov <jcmvbkbc@gmail.com>
12001 L:      linux-xtensa@linux-xtensa.org
12002 S:      Maintained
12003 F:      drivers/spi/spi-xtensa-xtfpga.c
12004 F:      sound/soc/xtensa/xtfpga-i2s.c
12005
12006 YAM DRIVER FOR AX.25
12007 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
12008 L:      linux-hams@vger.kernel.org
12009 S:      Maintained
12010 F:      drivers/net/hamradio/yam*
12011 F:      include/linux/yam.h
12012
12013 YEALINK PHONE DRIVER
12014 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
12015 L:      usbb2k-api-dev@nongnu.org
12016 S:      Maintained
12017 F:      Documentation/input/yealink.txt
12018 F:      drivers/input/misc/yealink.*
12019
12020 Z8530 DRIVER FOR AX.25
12021 M:      Joerg Reuter <jreuter@yaina.de>
12022 W:      http://yaina.de/jreuter/
12023 W:      http://www.qsl.net/dl1bke/
12024 L:      linux-hams@vger.kernel.org
12025 S:      Maintained
12026 F:      Documentation/networking/z8530drv.txt
12027 F:      drivers/net/hamradio/*scc.c
12028 F:      drivers/net/hamradio/z8530.h
12029
12030 ZBUD COMPRESSED PAGE ALLOCATOR
12031 M:      Seth Jennings <sjennings@variantweb.net>
12032 L:      linux-mm@kvack.org
12033 S:      Maintained
12034 F:      mm/zbud.c
12035 F:      include/linux/zbud.h
12036
12037 ZD1211RW WIRELESS DRIVER
12038 M:      Daniel Drake <dsd@gentoo.org>
12039 M:      Ulrich Kunitz <kune@deine-taler.de>
12040 W:      http://zd1211.ath.cx/wiki/DriverRewrite
12041 L:      linux-wireless@vger.kernel.org
12042 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
12043 S:      Maintained
12044 F:      drivers/net/wireless/zydas/zd1211rw/
12045
12046 ZPOOL COMPRESSED PAGE STORAGE API
12047 M:      Dan Streetman <ddstreet@ieee.org>
12048 L:      linux-mm@kvack.org
12049 S:      Maintained
12050 F:      mm/zpool.c
12051 F:      include/linux/zpool.h
12052
12053 ZR36067 VIDEO FOR LINUX DRIVER
12054 L:      mjpeg-users@lists.sourceforge.net
12055 L:      linux-media@vger.kernel.org
12056 W:      http://mjpeg.sourceforge.net/driver-zoran/
12057 T:      hg https://linuxtv.org/hg/v4l-dvb
12058 S:      Odd Fixes
12059 F:      drivers/media/pci/zoran/
12060
12061 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
12062 M:      Minchan Kim <minchan@kernel.org>
12063 M:      Nitin Gupta <ngupta@vflare.org>
12064 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
12065 L:      linux-kernel@vger.kernel.org
12066 S:      Maintained
12067 F:      drivers/block/zram/
12068 F:      Documentation/blockdev/zram.txt
12069
12070 ZS DECSTATION Z85C30 SERIAL DRIVER
12071 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
12072 S:      Maintained
12073 F:      drivers/tty/serial/zs.*
12074
12075 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
12076 M:      Minchan Kim <minchan@kernel.org>
12077 M:      Nitin Gupta <ngupta@vflare.org>
12078 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
12079 L:      linux-mm@kvack.org
12080 S:      Maintained
12081 F:      mm/zsmalloc.c
12082 F:      include/linux/zsmalloc.h
12083 F:      Documentation/vm/zsmalloc.txt
12084
12085 ZSWAP COMPRESSED SWAP CACHING
12086 M:      Seth Jennings <sjennings@variantweb.net>
12087 L:      linux-mm@kvack.org
12088 S:      Maintained
12089 F:      mm/zswap.c
12090
12091 THE REST
12092 M:      Linus Torvalds <torvalds@linux-foundation.org>
12093 L:      linux-kernel@vger.kernel.org
12094 Q:      http://patchwork.kernel.org/project/LKML/list/
12095 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
12096 S:      Buried alive in reporters
12097 F:      *
12098 F:      */