checkpatch: warn when casting constants to c90 int or longer types
[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/RISCPC ARCHITECTURE
1439 M:      Russell King <linux@arm.linux.org.uk>
1440 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1441 W:      http://www.arm.linux.org.uk/
1442 S:      Maintained
1443 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
1444 F:      arch/arm/include/asm/hardware/ioc.h
1445 F:      arch/arm/include/asm/hardware/iomd.h
1446 F:      arch/arm/include/asm/hardware/memc.h
1447 F:      arch/arm/mach-rpc/
1448 F:      drivers/net/ethernet/8390/etherh.c
1449 F:      drivers/net/ethernet/i825xx/ether1*
1450 F:      drivers/net/ethernet/seeq/ether3*
1451 F:      drivers/scsi/arm/
1452
1453 ARM/Rockchip SoC support
1454 M:      Heiko Stuebner <heiko@sntech.de>
1455 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1456 L:      linux-rockchip@lists.infradead.org
1457 S:      Maintained
1458 F:      arch/arm/boot/dts/rk3*
1459 F:      arch/arm/mach-rockchip/
1460 F:      drivers/clk/rockchip/
1461 F:      drivers/i2c/busses/i2c-rk3x.c
1462 F:      drivers/*/*rockchip*
1463 F:      drivers/*/*/*rockchip*
1464 F:      sound/soc/rockchip/
1465 N:      rockchip
1466
1467 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
1468 M:      Kukjin Kim <kgene@kernel.org>
1469 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
1470 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1471 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1472 S:      Maintained
1473 F:      arch/arm/boot/dts/s3c*
1474 F:      arch/arm/boot/dts/exynos*
1475 F:      arch/arm64/boot/dts/exynos/
1476 F:      arch/arm/plat-samsung/
1477 F:      arch/arm/mach-s3c24*/
1478 F:      arch/arm/mach-s3c64xx/
1479 F:      arch/arm/mach-s5p*/
1480 F:      arch/arm/mach-exynos*/
1481 F:      drivers/*/*s3c2410*
1482 F:      drivers/*/*/*s3c2410*
1483 F:      drivers/spi/spi-s3c*
1484 F:      sound/soc/samsung/*
1485 F:      Documentation/arm/Samsung/
1486 F:      Documentation/devicetree/bindings/arm/samsung/
1487 F:      Documentation/devicetree/bindings/sram/samsung-sram.txt
1488 F:      Documentation/devicetree/bindings/power/pd-samsung.txt
1489 N:      exynos
1490
1491 ARM/SAMSUNG MOBILE MACHINE SUPPORT
1492 M:      Kyungmin Park <kyungmin.park@samsung.com>
1493 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1494 S:      Maintained
1495 F:      arch/arm/mach-s5pv210/
1496
1497 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1498 M:      Kyungmin Park <kyungmin.park@samsung.com>
1499 M:      Kamil Debski <k.debski@samsung.com>
1500 L:      linux-arm-kernel@lists.infradead.org
1501 L:      linux-media@vger.kernel.org
1502 S:      Maintained
1503 F:      drivers/media/platform/s5p-g2d/
1504
1505 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1506 M:      Kyungmin Park <kyungmin.park@samsung.com>
1507 M:      Kamil Debski <k.debski@samsung.com>
1508 M:      Jeongtae Park <jtp.park@samsung.com>
1509 L:      linux-arm-kernel@lists.infradead.org
1510 L:      linux-media@vger.kernel.org
1511 S:      Maintained
1512 F:      arch/arm/plat-samsung/s5p-dev-mfc.c
1513 F:      drivers/media/platform/s5p-mfc/
1514
1515 ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1516 M:      Kyungmin Park <kyungmin.park@samsung.com>
1517 M:      Tomasz Stanislawski <t.stanislaws@samsung.com>
1518 L:      linux-arm-kernel@lists.infradead.org
1519 L:      linux-media@vger.kernel.org
1520 S:      Maintained
1521 F:      drivers/media/platform/s5p-tv/
1522
1523 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
1524 M:      Andrzej Pietrasiewicz <andrzej.p@samsung.com>
1525 M:      Jacek Anaszewski <j.anaszewski@samsung.com>
1526 L:      linux-arm-kernel@lists.infradead.org
1527 L:      linux-media@vger.kernel.org
1528 S:      Maintained
1529 F:      drivers/media/platform/s5p-jpeg/
1530
1531 ARM/SHMOBILE ARM ARCHITECTURE
1532 M:      Simon Horman <horms@verge.net.au>
1533 M:      Magnus Damm <magnus.damm@gmail.com>
1534 L:      linux-renesas-soc@vger.kernel.org
1535 W:      http://oss.renesas.com
1536 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
1537 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1538 S:      Supported
1539 F:      arch/arm/boot/dts/emev2*
1540 F:      arch/arm/boot/dts/r7s*
1541 F:      arch/arm/boot/dts/r8a*
1542 F:      arch/arm/boot/dts/sh*
1543 F:      arch/arm/configs/shmobile_defconfig
1544 F:      arch/arm/include/debug/renesas-scif.S
1545 F:      arch/arm/mach-shmobile/
1546 F:      drivers/sh/
1547
1548 ARM/SOCFPGA ARCHITECTURE
1549 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1550 S:      Maintained
1551 F:      arch/arm/mach-socfpga/
1552 F:      arch/arm/boot/dts/socfpga*
1553 F:      arch/arm/configs/socfpga_defconfig
1554 W:      http://www.rocketboards.org
1555 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
1556
1557 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1558 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1559 S:      Maintained
1560 F:      drivers/clk/socfpga/
1561
1562 ARM/SOCFPGA EDAC SUPPORT
1563 M:      Thor Thayer <tthayer@opensource.altera.com>
1564 S:      Maintained
1565 F:      drivers/edac/altera_edac.
1566
1567 ARM/STI ARCHITECTURE
1568 M:      Srinivas Kandagatla <srinivas.kandagatla@gmail.com>
1569 M:      Maxime Coquelin <maxime.coquelin@st.com>
1570 M:      Patrice Chotard <patrice.chotard@st.com>
1571 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1572 L:      kernel@stlinux.com
1573 W:      http://www.stlinux.com
1574 S:      Maintained
1575 F:      arch/arm/mach-sti/
1576 F:      arch/arm/boot/dts/sti*
1577 F:      drivers/char/hw_random/st-rng.c
1578 F:      drivers/clocksource/arm_global_timer.c
1579 F:      drivers/clocksource/clksrc_st_lpc.c
1580 F:      drivers/i2c/busses/i2c-st.c
1581 F:      drivers/media/rc/st_rc.c
1582 F:      drivers/media/platform/sti/c8sectpfe/
1583 F:      drivers/mmc/host/sdhci-st.c
1584 F:      drivers/phy/phy-miphy28lp.c
1585 F:      drivers/phy/phy-miphy365x.c
1586 F:      drivers/phy/phy-stih407-usb.c
1587 F:      drivers/phy/phy-stih41x-usb.c
1588 F:      drivers/pinctrl/pinctrl-st.c
1589 F:      drivers/reset/sti/
1590 F:      drivers/rtc/rtc-st-lpc.c
1591 F:      drivers/tty/serial/st-asc.c
1592 F:      drivers/usb/dwc3/dwc3-st.c
1593 F:      drivers/usb/host/ehci-st.c
1594 F:      drivers/usb/host/ohci-st.c
1595 F:      drivers/watchdog/st_lpc_wdt.c
1596 F:      drivers/ata/ahci_st.c
1597
1598 ARM/STM32 ARCHITECTURE
1599 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
1600 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1601 S:      Maintained
1602 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git
1603 N:      stm32
1604 F:      drivers/clocksource/armv7m_systick.c
1605
1606 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
1607 M:      Lennert Buytenhek <kernel@wantstofly.org>
1608 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1609 S:      Maintained
1610
1611 ARM/TETON BGA MACHINE SUPPORT
1612 M:      "Mark F. Brown" <mark.brown314@gmail.com>
1613 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1614 S:      Maintained
1615
1616 ARM/THECUS N2100 MACHINE SUPPORT
1617 M:      Lennert Buytenhek <kernel@wantstofly.org>
1618 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1619 S:      Maintained
1620
1621 ARM/NUVOTON W90X900 ARM ARCHITECTURE
1622 M:      Wan ZongShun <mcuos.com@gmail.com>
1623 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1624 W:      http://www.mcuos.com
1625 S:      Maintained
1626 F:      arch/arm/mach-w90x900/
1627 F:      drivers/input/keyboard/w90p910_keypad.c
1628 F:      drivers/input/touchscreen/w90p910_ts.c
1629 F:      drivers/watchdog/nuc900_wdt.c
1630 F:      drivers/net/ethernet/nuvoton/w90p910_ether.c
1631 F:      drivers/mtd/nand/nuc900_nand.c
1632 F:      drivers/rtc/rtc-nuc900.c
1633 F:      drivers/spi/spi-nuc900.c
1634 F:      drivers/usb/host/ehci-w90x900.c
1635 F:      drivers/video/fbdev/nuc900fb.c
1636
1637 ARM/U300 MACHINE SUPPORT
1638 M:      Linus Walleij <linus.walleij@linaro.org>
1639 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1640 S:      Supported
1641 F:      arch/arm/mach-u300/
1642 F:      drivers/clocksource/timer-u300.c
1643 F:      drivers/i2c/busses/i2c-stu300.c
1644 F:      drivers/rtc/rtc-coh901331.c
1645 F:      drivers/watchdog/coh901327_wdt.c
1646 F:      drivers/dma/coh901318*
1647 F:      drivers/mfd/ab3100*
1648 F:      drivers/rtc/rtc-ab3100.c
1649 F:      drivers/rtc/rtc-coh901331.c
1650 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1651
1652 ARM/UNIPHIER ARCHITECTURE
1653 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
1654 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1655 S:      Maintained
1656 F:      arch/arm/boot/dts/uniphier*
1657 F:      arch/arm/include/asm/hardware/cache-uniphier.h
1658 F:      arch/arm/mach-uniphier/
1659 F:      arch/arm/mm/cache-uniphier.c
1660 F:      drivers/i2c/busses/i2c-uniphier*
1661 F:      drivers/pinctrl/uniphier/
1662 F:      drivers/tty/serial/8250/8250_uniphier.c
1663 N:      uniphier
1664
1665 ARM/Ux500 ARM ARCHITECTURE
1666 M:      Linus Walleij <linus.walleij@linaro.org>
1667 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1668 S:      Maintained
1669 F:      arch/arm/mach-ux500/
1670 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
1671 F:      drivers/dma/ste_dma40*
1672 F:      drivers/hwspinlock/u8500_hsem.c
1673 F:      drivers/mfd/abx500*
1674 F:      drivers/mfd/ab8500*
1675 F:      drivers/mfd/dbx500*
1676 F:      drivers/mfd/db8500*
1677 F:      drivers/pinctrl/nomadik/pinctrl-ab*
1678 F:      drivers/pinctrl/nomadik/pinctrl-nomadik*
1679 F:      drivers/rtc/rtc-ab8500.c
1680 F:      drivers/rtc/rtc-pl031.c
1681 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1682
1683 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
1684 M:      Ulf Hansson <ulf.hansson@linaro.org>
1685 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1686 T:      git git://git.linaro.org/people/ulfh/clk.git
1687 S:      Maintained
1688 F:      drivers/clk/ux500/
1689 F:      include/linux/platform_data/clk-ux500.h
1690
1691 ARM/VERSATILE EXPRESS PLATFORM
1692 M:      Liviu Dudau <liviu.dudau@arm.com>
1693 M:      Sudeep Holla <sudeep.holla@arm.com>
1694 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
1695 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1696 S:      Maintained
1697 F:      arch/arm/boot/dts/vexpress*
1698 F:      arch/arm64/boot/dts/arm/vexpress*
1699 F:      arch/arm/mach-vexpress/
1700 F:      */*/vexpress*
1701 F:      */*/*/vexpress*
1702 F:      drivers/clk/versatile/clk-vexpress-osc.c
1703 F:      drivers/clocksource/versatile.c
1704
1705 ARM/VFP SUPPORT
1706 M:      Russell King <linux@arm.linux.org.uk>
1707 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1708 W:      http://www.arm.linux.org.uk/
1709 S:      Maintained
1710 F:      arch/arm/vfp/
1711
1712 ARM/VOIPAC PXA270 SUPPORT
1713 M:      Marek Vasut <marek.vasut@gmail.com>
1714 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1715 S:      Maintained
1716 F:      arch/arm/mach-pxa/vpac270.c
1717 F:      arch/arm/mach-pxa/include/mach/vpac270.h
1718
1719 ARM/VT8500 ARM ARCHITECTURE
1720 M:      Tony Prisk <linux@prisktech.co.nz>
1721 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1722 S:      Maintained
1723 F:      arch/arm/mach-vt8500/
1724 F:      drivers/clocksource/vt8500_timer.c
1725 F:      drivers/i2c/busses/i2c-wmt.c
1726 F:      drivers/mmc/host/wmt-sdmmc.c
1727 F:      drivers/pwm/pwm-vt8500.c
1728 F:      drivers/rtc/rtc-vt8500.c
1729 F:      drivers/tty/serial/vt8500_serial.c
1730 F:      drivers/usb/host/ehci-platform.c
1731 F:      drivers/usb/host/uhci-platform.c
1732 F:      drivers/video/fbdev/vt8500lcdfb.*
1733 F:      drivers/video/fbdev/wm8505fb*
1734 F:      drivers/video/fbdev/wmt_ge_rops.*
1735
1736 ARM/ZIPIT Z2 SUPPORT
1737 M:      Marek Vasut <marek.vasut@gmail.com>
1738 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1739 S:      Maintained
1740 F:      arch/arm/mach-pxa/z2.c
1741 F:      arch/arm/mach-pxa/include/mach/z2.h
1742
1743 ARM/ZTE ARCHITECTURE
1744 M:      Jun Nie <jun.nie@linaro.org>
1745 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1746 S:      Maintained
1747 F:      arch/arm/mach-zx/
1748 F:      drivers/clk/zte/
1749 F:      Documentation/devicetree/bindings/arm/zte.txt
1750 F:      Documentation/devicetree/bindings/clock/zx296702-clk.txt
1751
1752 ARM/ZYNQ ARCHITECTURE
1753 M:      Michal Simek <michal.simek@xilinx.com>
1754 R:      Sören Brinkmann <soren.brinkmann@xilinx.com>
1755 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1756 W:      http://wiki.xilinx.com
1757 T:      git https://github.com/Xilinx/linux-xlnx.git
1758 S:      Supported
1759 F:      arch/arm/mach-zynq/
1760 F:      drivers/cpuidle/cpuidle-zynq.c
1761 F:      drivers/block/xsysace.c
1762 N:      zynq
1763 N:      xilinx
1764 F:      drivers/clocksource/cadence_ttc_timer.c
1765 F:      drivers/i2c/busses/i2c-cadence.c
1766 F:      drivers/mmc/host/sdhci-of-arasan.c
1767 F:      drivers/edac/synopsys_edac.c
1768
1769 ARM SMMU DRIVERS
1770 M:      Will Deacon <will.deacon@arm.com>
1771 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1772 S:      Maintained
1773 F:      drivers/iommu/arm-smmu.c
1774 F:      drivers/iommu/arm-smmu-v3.c
1775 F:      drivers/iommu/io-pgtable-arm.c
1776
1777 ARM64 PORT (AARCH64 ARCHITECTURE)
1778 M:      Catalin Marinas <catalin.marinas@arm.com>
1779 M:      Will Deacon <will.deacon@arm.com>
1780 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1781 S:      Maintained
1782 F:      arch/arm64/
1783 F:      Documentation/arm64/
1784
1785 AS3645A LED FLASH CONTROLLER DRIVER
1786 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1787 L:      linux-media@vger.kernel.org
1788 T:      git git://linuxtv.org/media_tree.git
1789 S:      Maintained
1790 F:      drivers/media/i2c/as3645a.c
1791 F:      include/media/i2c/as3645a.h
1792
1793 ASC7621 HARDWARE MONITOR DRIVER
1794 M:      George Joseph <george.joseph@fairview5.com>
1795 L:      lm-sensors@lm-sensors.org
1796 S:      Maintained
1797 F:      Documentation/hwmon/asc7621
1798 F:      drivers/hwmon/asc7621.c
1799
1800 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
1801 M:      Corentin Chary <corentin.chary@gmail.com>
1802 L:      acpi4asus-user@lists.sourceforge.net
1803 L:      platform-driver-x86@vger.kernel.org
1804 W:      http://acpi4asus.sf.net
1805 S:      Maintained
1806 F:      drivers/platform/x86/asus*.c
1807 F:      drivers/platform/x86/eeepc*.c
1808
1809 ASUS WIRELESS RADIO CONTROL DRIVER
1810 M:      JoĂ£o Paulo Rechi Vita <jprvita@gmail.com>
1811 L:      platform-driver-x86@vger.kernel.org
1812 S:      Maintained
1813 F:      drivers/platform/x86/asus-wireless.c
1814
1815 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
1816 R:      Dan Williams <dan.j.williams@intel.com>
1817 W:      http://sourceforge.net/projects/xscaleiop
1818 S:      Odd fixes
1819 F:      Documentation/crypto/async-tx-api.txt
1820 F:      crypto/async_tx/
1821 F:      drivers/dma/
1822 F:      include/linux/dmaengine.h
1823 F:      include/linux/async_tx.h
1824
1825 AT24 EEPROM DRIVER
1826 M:      Wolfram Sang <wsa@the-dreams.de>
1827 L:      linux-i2c@vger.kernel.org
1828 S:      Maintained
1829 F:      drivers/misc/eeprom/at24.c
1830 F:      include/linux/platform_data/at24.h
1831
1832 ATA OVER ETHERNET (AOE) DRIVER
1833 M:      "Ed L. Cashin" <ed.cashin@acm.org>
1834 W:      http://www.openaoe.org/
1835 S:      Supported
1836 F:      Documentation/aoe/
1837 F:      drivers/block/aoe/
1838
1839 ATHEROS 71XX/9XXX GPIO DRIVER
1840 M:      Alban Bedel <albeu@free.fr>
1841 W:      https://github.com/AlbanBedel/linux
1842 T:      git git://github.com/AlbanBedel/linux
1843 S:      Maintained
1844 F:      drivers/gpio/gpio-ath79.c
1845 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
1846
1847 ATHEROS ATH GENERIC UTILITIES
1848 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1849 L:      linux-wireless@vger.kernel.org
1850 S:      Supported
1851 F:      drivers/net/wireless/ath/*
1852
1853 ATHEROS ATH5K WIRELESS DRIVER
1854 M:      Jiri Slaby <jirislaby@gmail.com>
1855 M:      Nick Kossifidis <mickflemm@gmail.com>
1856 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1857 L:      linux-wireless@vger.kernel.org
1858 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
1859 S:      Maintained
1860 F:      drivers/net/wireless/ath/ath5k/
1861
1862 ATHEROS ATH6KL WIRELESS DRIVER
1863 M:      Kalle Valo <kvalo@qca.qualcomm.com>
1864 L:      linux-wireless@vger.kernel.org
1865 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
1866 T:      git git://github.com/kvalo/ath.git
1867 S:      Supported
1868 F:      drivers/net/wireless/ath/ath6kl/
1869
1870 WILOCITY WIL6210 WIRELESS DRIVER
1871 M:      Maya Erez <qca_merez@qca.qualcomm.com>
1872 L:      linux-wireless@vger.kernel.org
1873 L:      wil6210@qca.qualcomm.com
1874 S:      Supported
1875 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
1876 F:      drivers/net/wireless/ath/wil6210/
1877 F:      include/uapi/linux/wil6210_uapi.h
1878
1879 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1880 M:      Christian Lamparter <chunkeey@googlemail.com>
1881 L:      linux-wireless@vger.kernel.org
1882 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
1883 S:      Maintained
1884 F:      drivers/net/wireless/ath/carl9170/
1885
1886 ATK0110 HWMON DRIVER
1887 M:      Luca Tettamanti <kronos.it@gmail.com>
1888 L:      lm-sensors@lm-sensors.org
1889 S:      Maintained
1890 F:      drivers/hwmon/asus_atk0110.c
1891
1892 ATI_REMOTE2 DRIVER
1893 M:      Ville Syrjala <syrjala@sci.fi>
1894 S:      Maintained
1895 F:      drivers/input/misc/ati_remote2.c
1896
1897 ATLX ETHERNET DRIVERS
1898 M:      Jay Cliburn <jcliburn@gmail.com>
1899 M:      Chris Snook <chris.snook@gmail.com>
1900 L:      netdev@vger.kernel.org
1901 W:      http://sourceforge.net/projects/atl1
1902 W:      http://atl1.sourceforge.net
1903 S:      Maintained
1904 F:      drivers/net/ethernet/atheros/
1905
1906 ATM
1907 M:      Chas Williams <3chas3@gmail.com>
1908 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
1909 L:      netdev@vger.kernel.org
1910 W:      http://linux-atm.sourceforge.net
1911 S:      Maintained
1912 F:      drivers/atm/
1913 F:      include/linux/atm*
1914 F:      include/uapi/linux/atm*
1915
1916 ATMEL AT91 / AT32 MCI DRIVER
1917 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1918 S:      Maintained
1919 F:      drivers/mmc/host/atmel-mci.c
1920
1921 ATMEL AT91 / AT32 SERIAL DRIVER
1922 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1923 S:      Supported
1924 F:      drivers/tty/serial/atmel_serial.c
1925
1926 ATMEL Audio ALSA driver
1927 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1928 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1929 S:      Supported
1930 F:      sound/soc/atmel
1931
1932 ATMEL DMA DRIVER
1933 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1934 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1935 S:      Supported
1936 F:      drivers/dma/at_hdmac.c
1937 F:      drivers/dma/at_hdmac_regs.h
1938 F:      include/linux/platform_data/dma-atmel.h
1939
1940 ATMEL XDMA DRIVER
1941 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1942 L:      linux-arm-kernel@lists.infradead.org
1943 L:      dmaengine@vger.kernel.org
1944 S:      Supported
1945 F:      drivers/dma/at_xdmac.c
1946
1947 ATMEL I2C DRIVER
1948 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1949 L:      linux-i2c@vger.kernel.org
1950 S:      Supported
1951 F:      drivers/i2c/busses/i2c-at91.c
1952
1953 ATMEL ISI DRIVER
1954 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1955 L:      linux-media@vger.kernel.org
1956 S:      Supported
1957 F:      drivers/media/platform/soc_camera/atmel-isi.c
1958 F:      include/media/atmel-isi.h
1959
1960 ATMEL LCDFB DRIVER
1961 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1962 L:      linux-fbdev@vger.kernel.org
1963 S:      Maintained
1964 F:      drivers/video/fbdev/atmel_lcdfb.c
1965 F:      include/video/atmel_lcdc.h
1966
1967 ATMEL MACB ETHERNET DRIVER
1968 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1969 S:      Supported
1970 F:      drivers/net/ethernet/cadence/
1971
1972 ATMEL NAND DRIVER
1973 M:      Wenyou Yang <wenyou.yang@atmel.com>
1974 M:      Josh Wu <rainyfeeling@outlook.com>
1975 L:      linux-mtd@lists.infradead.org
1976 S:      Supported
1977 F:      drivers/mtd/nand/atmel_nand*
1978
1979 ATMEL SDMMC DRIVER
1980 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1981 L:      linux-mmc@vger.kernel.org
1982 S:      Supported
1983 F:      drivers/mmc/host/sdhci-of-at91.c
1984
1985 ATMEL SPI DRIVER
1986 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1987 S:      Supported
1988 F:      drivers/spi/spi-atmel.*
1989
1990 ATMEL SSC DRIVER
1991 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1992 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1993 S:      Supported
1994 F:      drivers/misc/atmel-ssc.c
1995 F:      include/linux/atmel-ssc.h
1996
1997 ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1998 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1999 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2000 S:      Supported
2001 F:      drivers/misc/atmel_tclib.c
2002 F:      drivers/clocksource/tcb_clksrc.c
2003
2004 ATMEL USBA UDC DRIVER
2005 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2006 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2007 S:      Supported
2008 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
2009
2010 ATMEL WIRELESS DRIVER
2011 M:      Simon Kelley <simon@thekelleys.org.uk>
2012 L:      linux-wireless@vger.kernel.org
2013 W:      http://www.thekelleys.org.uk/atmel
2014 W:      http://atmelwlandriver.sourceforge.net/
2015 S:      Maintained
2016 F:      drivers/net/wireless/atmel/atmel*
2017
2018 ATMEL MAXTOUCH DRIVER
2019 M:      Nick Dyer <nick.dyer@itdev.co.uk>
2020 T:      git git://github.com/atmel-maxtouch/linux.git
2021 S:      Supported
2022 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2023 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2024 F:      include/linux/platform_data/atmel_mxt_ts.h
2025
2026 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2027 M:      Bradley Grove <linuxdrivers@attotech.com>
2028 L:      linux-scsi@vger.kernel.org
2029 W:      http://www.attotech.com
2030 S:      Supported
2031 F:      drivers/scsi/esas2r
2032
2033 ATUSB IEEE 802.15.4 RADIO DRIVER
2034 M:      Stefan Schmidt <stefan@osg.samsung.com>
2035 L:      linux-wpan@vger.kernel.org
2036 S:      Maintained
2037 F:      drivers/net/ieee802154/atusb.c
2038 F:      drivers/net/ieee802154/atusb.h
2039 F:      drivers/net/ieee802154/at86rf230.h
2040
2041 AUDIT SUBSYSTEM
2042 M:      Paul Moore <paul@paul-moore.com>
2043 M:      Eric Paris <eparis@redhat.com>
2044 L:      linux-audit@redhat.com (moderated for non-subscribers)
2045 W:      http://people.redhat.com/sgrubb/audit/
2046 T:      git git://git.infradead.org/users/pcmoore/audit
2047 S:      Maintained
2048 F:      include/linux/audit.h
2049 F:      include/uapi/linux/audit.h
2050 F:      kernel/audit*
2051
2052 AUXILIARY DISPLAY DRIVERS
2053 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2054 W:      http://miguelojeda.es/auxdisplay.htm
2055 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2056 S:      Maintained
2057 F:      drivers/auxdisplay/
2058 F:      include/linux/cfag12864b.h
2059
2060 AVR32 ARCHITECTURE
2061 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
2062 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
2063 W:      http://www.atmel.com/products/AVR32/
2064 W:      http://mirror.egtvedt.no/avr32linux.org/
2065 W:      http://avrfreaks.net/
2066 S:      Maintained
2067 F:      arch/avr32/
2068
2069 AVR32/AT32AP MACHINE SUPPORT
2070 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
2071 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
2072 S:      Maintained
2073 F:      arch/avr32/mach-at32ap/
2074
2075 AX.25 NETWORK LAYER
2076 M:      Ralf Baechle <ralf@linux-mips.org>
2077 L:      linux-hams@vger.kernel.org
2078 W:      http://www.linux-ax25.org/
2079 S:      Maintained
2080 F:      include/uapi/linux/ax25.h
2081 F:      include/net/ax25.h
2082 F:      net/ax25/
2083
2084 AZ6007 DVB DRIVER
2085 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2086 L:      linux-media@vger.kernel.org
2087 W:      https://linuxtv.org
2088 T:      git git://linuxtv.org/media_tree.git
2089 S:      Maintained
2090 F:      drivers/media/usb/dvb-usb-v2/az6007.c
2091
2092 AZTECH FM RADIO RECEIVER DRIVER
2093 M:      Hans Verkuil <hverkuil@xs4all.nl>
2094 L:      linux-media@vger.kernel.org
2095 T:      git git://linuxtv.org/media_tree.git
2096 W:      https://linuxtv.org
2097 S:      Maintained
2098 F:      drivers/media/radio/radio-aztech*
2099
2100 B43 WIRELESS DRIVER
2101 L:      linux-wireless@vger.kernel.org
2102 L:      b43-dev@lists.infradead.org
2103 W:      http://wireless.kernel.org/en/users/Drivers/b43
2104 S:      Odd Fixes
2105 F:      drivers/net/wireless/broadcom/b43/
2106
2107 B43LEGACY WIRELESS DRIVER
2108 M:      Larry Finger <Larry.Finger@lwfinger.net>
2109 L:      linux-wireless@vger.kernel.org
2110 L:      b43-dev@lists.infradead.org
2111 W:      http://wireless.kernel.org/en/users/Drivers/b43
2112 S:      Maintained
2113 F:      drivers/net/wireless/broadcom/b43legacy/
2114
2115 BACKLIGHT CLASS/SUBSYSTEM
2116 M:      Jingoo Han <jingoohan1@gmail.com>
2117 M:      Lee Jones <lee.jones@linaro.org>
2118 S:      Maintained
2119 F:      drivers/video/backlight/
2120 F:      include/linux/backlight.h
2121
2122 BATMAN ADVANCED
2123 M:      Marek Lindner <mareklindner@neomailbox.ch>
2124 M:      Simon Wunderlich <sw@simonwunderlich.de>
2125 M:      Antonio Quartulli <a@unstable.cc>
2126 L:      b.a.t.m.a.n@lists.open-mesh.org
2127 W:      http://www.open-mesh.org/
2128 S:      Maintained
2129 F:      net/batman-adv/
2130
2131 BAYCOM/HDLCDRV DRIVERS FOR AX.25
2132 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
2133 L:      linux-hams@vger.kernel.org
2134 W:      http://www.baycom.org/~tom/ham/ham.html
2135 S:      Maintained
2136 F:      drivers/net/hamradio/baycom*
2137
2138 BCACHE (BLOCK LAYER CACHE)
2139 M:      Kent Overstreet <kent.overstreet@gmail.com>
2140 L:      linux-bcache@vger.kernel.org
2141 W:      http://bcache.evilpiepirate.org
2142 S:      Maintained
2143 F:      drivers/md/bcache/
2144
2145 BDISP ST MEDIA DRIVER
2146 M:      Fabien Dessenne <fabien.dessenne@st.com>
2147 L:      linux-media@vger.kernel.org
2148 T:      git git://linuxtv.org/media_tree.git
2149 W:      https://linuxtv.org
2150 S:      Supported
2151 F:      drivers/media/platform/sti/bdisp
2152
2153 BEFS FILE SYSTEM
2154 S:      Orphan
2155 F:      Documentation/filesystems/befs.txt
2156 F:      fs/befs/
2157
2158 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
2159 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
2160 L:      netdev@vger.kernel.org
2161 S:      Maintained
2162 F:      drivers/net/ethernet/ec_bhf.c
2163
2164 BFS FILE SYSTEM
2165 M:      "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
2166 S:      Maintained
2167 F:      Documentation/filesystems/bfs.txt
2168 F:      fs/bfs/
2169 F:      include/uapi/linux/bfs_fs.h
2170
2171 BLACKFIN ARCHITECTURE
2172 M:      Steven Miao <realmz6@gmail.com>
2173 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2174 T:      git git://git.code.sf.net/p/adi-linux/code
2175 W:      http://blackfin.uclinux.org
2176 S:      Supported
2177 F:      arch/blackfin/
2178
2179 BLACKFIN EMAC DRIVER
2180 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2181 W:      http://blackfin.uclinux.org
2182 S:      Supported
2183 F:      drivers/net/ethernet/adi/
2184
2185 BLACKFIN RTC DRIVER
2186 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2187 W:      http://blackfin.uclinux.org
2188 S:      Supported
2189 F:      drivers/rtc/rtc-bfin.c
2190
2191 BLACKFIN SDH DRIVER
2192 M:      Sonic Zhang <sonic.zhang@analog.com>
2193 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2194 W:      http://blackfin.uclinux.org
2195 S:      Supported
2196 F:      drivers/mmc/host/bfin_sdh.c
2197
2198 BLACKFIN SERIAL DRIVER
2199 M:      Sonic Zhang <sonic.zhang@analog.com>
2200 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2201 W:      http://blackfin.uclinux.org
2202 S:      Supported
2203 F:      drivers/tty/serial/bfin_uart.c
2204
2205 BLACKFIN WATCHDOG DRIVER
2206 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2207 W:      http://blackfin.uclinux.org
2208 S:      Supported
2209 F:      drivers/watchdog/bfin_wdt.c
2210
2211 BLACKFIN I2C TWI DRIVER
2212 M:      Sonic Zhang <sonic.zhang@analog.com>
2213 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2214 W:      http://blackfin.uclinux.org/
2215 S:      Supported
2216 F:      drivers/i2c/busses/i2c-bfin-twi.c
2217
2218 BLACKFIN MEDIA DRIVER
2219 M:      Scott Jiang <scott.jiang.linux@gmail.com>
2220 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2221 W:      http://blackfin.uclinux.org/
2222 S:      Supported
2223 F:      drivers/media/platform/blackfin/
2224 F:      drivers/media/i2c/adv7183*
2225 F:      drivers/media/i2c/vs6624*
2226
2227 BLINKM RGB LED DRIVER
2228 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
2229 S:      Maintained
2230 F:      drivers/leds/leds-blinkm.c
2231
2232 BLOCK LAYER
2233 M:      Jens Axboe <axboe@kernel.dk>
2234 L:      linux-block@vger.kernel.org
2235 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
2236 S:      Maintained
2237 F:      block/
2238 F:      kernel/trace/blktrace.c
2239
2240 BLOCK2MTD DRIVER
2241 M:      Joern Engel <joern@lazybastard.org>
2242 L:      linux-mtd@lists.infradead.org
2243 S:      Maintained
2244 F:      drivers/mtd/devices/block2mtd.c
2245
2246 BLUETOOTH DRIVERS
2247 M:      Marcel Holtmann <marcel@holtmann.org>
2248 M:      Gustavo Padovan <gustavo@padovan.org>
2249 M:      Johan Hedberg <johan.hedberg@gmail.com>
2250 L:      linux-bluetooth@vger.kernel.org
2251 W:      http://www.bluez.org/
2252 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2253 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2254 S:      Maintained
2255 F:      drivers/bluetooth/
2256
2257 BLUETOOTH SUBSYSTEM
2258 M:      Marcel Holtmann <marcel@holtmann.org>
2259 M:      Gustavo Padovan <gustavo@padovan.org>
2260 M:      Johan Hedberg <johan.hedberg@gmail.com>
2261 L:      linux-bluetooth@vger.kernel.org
2262 W:      http://www.bluez.org/
2263 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2264 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2265 S:      Maintained
2266 F:      net/bluetooth/
2267 F:      include/net/bluetooth/
2268
2269 BONDING DRIVER
2270 M:      Jay Vosburgh <j.vosburgh@gmail.com>
2271 M:      Veaceslav Falico <vfalico@gmail.com>
2272 M:      Andy Gospodarek <gospo@cumulusnetworks.com>
2273 L:      netdev@vger.kernel.org
2274 W:      http://sourceforge.net/projects/bonding/
2275 S:      Supported
2276 F:      drivers/net/bonding/
2277 F:      include/uapi/linux/if_bonding.h
2278
2279 BPF (Safe dynamic programs and tools)
2280 M:      Alexei Starovoitov <ast@kernel.org>
2281 L:      netdev@vger.kernel.org
2282 L:      linux-kernel@vger.kernel.org
2283 S:      Supported
2284 F:      kernel/bpf/
2285
2286 BROADCOM B44 10/100 ETHERNET DRIVER
2287 M:      Gary Zambrano <zambrano@broadcom.com>
2288 L:      netdev@vger.kernel.org
2289 S:      Supported
2290 F:      drivers/net/ethernet/broadcom/b44.*
2291
2292 BROADCOM GENET ETHERNET DRIVER
2293 M:      Florian Fainelli <f.fainelli@gmail.com>
2294 L:      netdev@vger.kernel.org
2295 S:      Supported
2296 F:      drivers/net/ethernet/broadcom/genet/
2297
2298 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
2299 M:      Sony Chacko <sony.chacko@qlogic.com>
2300 M:      Dept-HSGLinuxNICDev@qlogic.com
2301 L:      netdev@vger.kernel.org
2302 S:      Supported
2303 F:      drivers/net/ethernet/broadcom/bnx2.*
2304 F:      drivers/net/ethernet/broadcom/bnx2_*
2305
2306 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
2307 M:      Ariel Elior <ariel.elior@qlogic.com>
2308 L:      netdev@vger.kernel.org
2309 S:      Supported
2310 F:      drivers/net/ethernet/broadcom/bnx2x/
2311
2312 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
2313 M:      Florian Fainelli <f.fainelli@gmail.com>
2314 M:      Ray Jui <rjui@broadcom.com>
2315 M:      Scott Branden <sbranden@broadcom.com>
2316 L:      bcm-kernel-feedback-list@broadcom.com
2317 T:      git git://github.com/broadcom/mach-bcm
2318 S:      Maintained
2319 F:      arch/arm/mach-bcm/
2320 F:      arch/arm/boot/dts/bcm113*
2321 F:      arch/arm/boot/dts/bcm216*
2322 F:      arch/arm/boot/dts/bcm281*
2323 F:      arch/arm/configs/bcm_defconfig
2324 F:      drivers/mmc/host/sdhci-bcm-kona.c
2325 F:      drivers/clocksource/bcm_kona_timer.c
2326
2327 BROADCOM BCM2835 ARM ARCHITECTURE
2328 M:      Stephen Warren <swarren@wwwdotorg.org>
2329 M:      Lee Jones <lee@kernel.org>
2330 M:      Eric Anholt <eric@anholt.net>
2331 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
2332 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2333 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rpi/linux-rpi.git
2334 S:      Maintained
2335 N:      bcm2835
2336
2337 BROADCOM BCM33XX MIPS ARCHITECTURE
2338 M:      Kevin Cernekee <cernekee@gmail.com>
2339 L:      linux-mips@linux-mips.org
2340 S:      Maintained
2341 F:      arch/mips/bcm3384/*
2342 F:      arch/mips/include/asm/mach-bcm3384/*
2343 F:      arch/mips/kernel/*bmips*
2344
2345 BROADCOM BCM47XX MIPS ARCHITECTURE
2346 M:      Hauke Mehrtens <hauke@hauke-m.de>
2347 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2348 L:      linux-mips@linux-mips.org
2349 S:      Maintained
2350 F:      arch/mips/bcm47xx/*
2351 F:      arch/mips/include/asm/mach-bcm47xx/*
2352
2353 BROADCOM BCM5301X ARM ARCHITECTURE
2354 M:      Hauke Mehrtens <hauke@hauke-m.de>
2355 L:      linux-arm-kernel@lists.infradead.org
2356 S:      Maintained
2357 F:      arch/arm/mach-bcm/bcm_5301x.c
2358 F:      arch/arm/boot/dts/bcm5301x.dtsi
2359 F:      arch/arm/boot/dts/bcm470*
2360
2361 BROADCOM BCM63XX ARM ARCHITECTURE
2362 M:      Florian Fainelli <f.fainelli@gmail.com>
2363 L:      linux-arm-kernel@lists.infradead.org
2364 T:      git git://github.com/broadcom/arm-bcm63xx.git
2365 S:      Maintained
2366 F:      arch/arm/mach-bcm/bcm63xx.c
2367 F:      arch/arm/include/debug/bcm63xx.S
2368
2369 BROADCOM BCM63XX/BCM33XX UDC DRIVER
2370 M:      Kevin Cernekee <cernekee@gmail.com>
2371 L:      linux-usb@vger.kernel.org
2372 S:      Maintained
2373 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
2374
2375 BROADCOM BCM7XXX ARM ARCHITECTURE
2376 M:      Brian Norris <computersforpeace@gmail.com>
2377 M:      Gregory Fong <gregory.0xf0@gmail.com>
2378 M:      Florian Fainelli <f.fainelli@gmail.com>
2379 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2380 T:      git git://github.com/broadcom/stblinux.git
2381 S:      Maintained
2382 F:      arch/arm/mach-bcm/*brcmstb*
2383 F:      arch/arm/boot/dts/bcm7*.dts*
2384 F:      drivers/bus/brcmstb_gisb.c
2385 N:      brcmstb
2386
2387 BROADCOM BMIPS MIPS ARCHITECTURE
2388 M:      Kevin Cernekee <cernekee@gmail.com>
2389 M:      Florian Fainelli <f.fainelli@gmail.com>
2390 L:      linux-mips@linux-mips.org
2391 T:      git git://github.com/broadcom/stblinux.git
2392 S:      Maintained
2393 F:      arch/mips/bmips/*
2394 F:      arch/mips/include/asm/mach-bmips/*
2395 F:      arch/mips/kernel/*bmips*
2396 F:      arch/mips/boot/dts/brcm/bcm*.dts*
2397 F:      drivers/irqchip/irq-bcm7*
2398 F:      drivers/irqchip/irq-brcmstb*
2399
2400 BROADCOM TG3 GIGABIT ETHERNET DRIVER
2401 M:      Prashant Sreedharan <prashant@broadcom.com>
2402 M:      Michael Chan <mchan@broadcom.com>
2403 L:      netdev@vger.kernel.org
2404 S:      Supported
2405 F:      drivers/net/ethernet/broadcom/tg3.*
2406
2407 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2408 M:      Brett Rudley <brudley@broadcom.com>
2409 M:      Arend van Spriel <arend@broadcom.com>
2410 M:      Franky (Zhenhui) Lin <frankyl@broadcom.com>
2411 M:      Hante Meuleman <meuleman@broadcom.com>
2412 L:      linux-wireless@vger.kernel.org
2413 L:      brcm80211-dev-list@broadcom.com
2414 S:      Supported
2415 F:      drivers/net/wireless/broadcom/brcm80211/
2416
2417 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
2418 M:      QLogic-Storage-Upstream@qlogic.com
2419 L:      linux-scsi@vger.kernel.org
2420 S:      Supported
2421 F:      drivers/scsi/bnx2fc/
2422
2423 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
2424 M:      QLogic-Storage-Upstream@qlogic.com
2425 L:      linux-scsi@vger.kernel.org
2426 S:      Supported
2427 F:      drivers/scsi/bnx2i/
2428
2429 BROADCOM IPROC ARM ARCHITECTURE
2430 M:      Ray Jui <rjui@broadcom.com>
2431 M:      Scott Branden <sbranden@broadcom.com>
2432 M:      Jon Mason <jonmason@broadcom.com>
2433 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2434 L:      bcm-kernel-feedback-list@broadcom.com
2435 T:      git git://github.com/broadcom/cygnus-linux.git
2436 S:      Maintained
2437 N:      iproc
2438 N:      cygnus
2439 N:      nsp
2440 N:      bcm9113*
2441 N:      bcm9583*
2442 N:      bcm9585*
2443 N:      bcm9586*
2444 N:      bcm988312
2445 N:      bcm113*
2446 N:      bcm583*
2447 N:      bcm585*
2448 N:      bcm586*
2449 N:      bcm88312
2450
2451 BROADCOM BRCMSTB GPIO DRIVER
2452 M:      Gregory Fong <gregory.0xf0@gmail.com>
2453 L:      bcm-kernel-feedback-list@broadcom.com>
2454 S:      Supported
2455 F:      drivers/gpio/gpio-brcmstb.c
2456 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
2457
2458 BROADCOM KONA GPIO DRIVER
2459 M:      Ray Jui <rjui@broadcom.com>
2460 L:      bcm-kernel-feedback-list@broadcom.com
2461 S:      Supported
2462 F:      drivers/gpio/gpio-bcm-kona.c
2463 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
2464
2465 BROADCOM NVRAM DRIVER
2466 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2467 L:      linux-mips@linux-mips.org
2468 S:      Maintained
2469 F:      drivers/firmware/broadcom/*
2470
2471 BROADCOM STB NAND FLASH DRIVER
2472 M:      Brian Norris <computersforpeace@gmail.com>
2473 M:      Kamal Dasu <kdasu.kdev@gmail.com>
2474 L:      linux-mtd@lists.infradead.org
2475 L:      bcm-kernel-feedback-list@broadcom.com
2476 S:      Maintained
2477 F:      drivers/mtd/nand/brcmnand/
2478
2479 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2480 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2481 L:      linux-wireless@vger.kernel.org
2482 S:      Maintained
2483 F:      drivers/bcma/
2484 F:      include/linux/bcma/
2485
2486 BROADCOM SYSTEMPORT ETHERNET DRIVER
2487 M:      Florian Fainelli <f.fainelli@gmail.com>
2488 L:      netdev@vger.kernel.org
2489 S:      Supported
2490 F:      drivers/net/ethernet/broadcom/bcmsysport.*
2491
2492 BROCADE BFA FC SCSI DRIVER
2493 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
2494 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
2495 L:      linux-scsi@vger.kernel.org
2496 S:      Supported
2497 F:      drivers/scsi/bfa/
2498
2499 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
2500 M:      Rasesh Mody <rasesh.mody@qlogic.com>
2501 L:      netdev@vger.kernel.org
2502 S:      Supported
2503 F:      drivers/net/ethernet/brocade/bna/
2504
2505 BSG (block layer generic sg v4 driver)
2506 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
2507 L:      linux-scsi@vger.kernel.org
2508 S:      Supported
2509 F:      block/bsg.c
2510 F:      include/linux/bsg.h
2511 F:      include/uapi/linux/bsg.h
2512
2513 BT87X AUDIO DRIVER
2514 M:      Clemens Ladisch <clemens@ladisch.de>
2515 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2516 T:      git git://git.alsa-project.org/alsa-kernel.git
2517 S:      Maintained
2518 F:      Documentation/sound/alsa/Bt87x.txt
2519 F:      sound/pci/bt87x.c
2520
2521 BT8XXGPIO DRIVER
2522 M:      Michael Buesch <m@bues.ch>
2523 W:      http://bu3sch.de/btgpio.php
2524 S:      Maintained
2525 F:      drivers/gpio/gpio-bt8xx.c
2526
2527 BTRFS FILE SYSTEM
2528 M:      Chris Mason <clm@fb.com>
2529 M:      Josef Bacik <jbacik@fb.com>
2530 M:      David Sterba <dsterba@suse.com>
2531 L:      linux-btrfs@vger.kernel.org
2532 W:      http://btrfs.wiki.kernel.org/
2533 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
2534 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
2535 S:      Maintained
2536 F:      Documentation/filesystems/btrfs.txt
2537 F:      fs/btrfs/
2538
2539 BTTV VIDEO4LINUX DRIVER
2540 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2541 L:      linux-media@vger.kernel.org
2542 W:      https://linuxtv.org
2543 T:      git git://linuxtv.org/media_tree.git
2544 S:      Odd fixes
2545 F:      Documentation/video4linux/bttv/
2546 F:      drivers/media/pci/bt8xx/bttv*
2547
2548 BUSLOGIC SCSI DRIVER
2549 M:      Khalid Aziz <khalid@gonehiking.org>
2550 L:      linux-scsi@vger.kernel.org
2551 S:      Maintained
2552 F:      drivers/scsi/BusLogic.*
2553 F:      drivers/scsi/FlashPoint.*
2554
2555 C-MEDIA CMI8788 DRIVER
2556 M:      Clemens Ladisch <clemens@ladisch.de>
2557 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2558 T:      git git://git.alsa-project.org/alsa-kernel.git
2559 S:      Maintained
2560 F:      sound/pci/oxygen/
2561
2562 C6X ARCHITECTURE
2563 M:      Mark Salter <msalter@redhat.com>
2564 M:      Aurelien Jacquiot <a-jacquiot@ti.com>
2565 L:      linux-c6x-dev@linux-c6x.org
2566 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
2567 S:      Maintained
2568 F:      arch/c6x/
2569
2570 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
2571 M:      David Howells <dhowells@redhat.com>
2572 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
2573 S:      Supported
2574 F:      Documentation/filesystems/caching/cachefiles.txt
2575 F:      fs/cachefiles/
2576
2577 CADET FM/AM RADIO RECEIVER DRIVER
2578 M:      Hans Verkuil <hverkuil@xs4all.nl>
2579 L:      linux-media@vger.kernel.org
2580 T:      git git://linuxtv.org/media_tree.git
2581 W:      https://linuxtv.org
2582 S:      Maintained
2583 F:      drivers/media/radio/radio-cadet*
2584
2585 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
2586 M:      Jonathan Corbet <corbet@lwn.net>
2587 L:      linux-media@vger.kernel.org
2588 T:      git git://linuxtv.org/media_tree.git
2589 S:      Maintained
2590 F:      Documentation/video4linux/cafe_ccic
2591 F:      drivers/media/platform/marvell-ccic/
2592
2593 CAIF NETWORK LAYER
2594 M:      Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
2595 L:      netdev@vger.kernel.org
2596 S:      Supported
2597 F:      Documentation/networking/caif/
2598 F:      drivers/net/caif/
2599 F:      include/uapi/linux/caif/
2600 F:      include/net/caif/
2601 F:      net/caif/
2602
2603 CALGARY x86-64 IOMMU
2604 M:      Muli Ben-Yehuda <muli@il.ibm.com>
2605 M:      "Jon D. Mason" <jdmason@kudzu.us>
2606 L:      discuss@x86-64.org
2607 S:      Maintained
2608 F:      arch/x86/kernel/pci-calgary_64.c
2609 F:      arch/x86/kernel/tce_64.c
2610 F:      arch/x86/include/asm/calgary.h
2611 F:      arch/x86/include/asm/tce.h
2612
2613 CAN NETWORK LAYER
2614 M:      Oliver Hartkopp <socketcan@hartkopp.net>
2615 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2616 L:      linux-can@vger.kernel.org
2617 W:      https://github.com/linux-can
2618 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2619 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2620 S:      Maintained
2621 F:      Documentation/networking/can.txt
2622 F:      net/can/
2623 F:      include/linux/can/core.h
2624 F:      include/uapi/linux/can.h
2625 F:      include/uapi/linux/can/bcm.h
2626 F:      include/uapi/linux/can/raw.h
2627 F:      include/uapi/linux/can/gw.h
2628
2629 CAN NETWORK DRIVERS
2630 M:      Wolfgang Grandegger <wg@grandegger.com>
2631 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2632 L:      linux-can@vger.kernel.org
2633 W:      https://github.com/linux-can
2634 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2635 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2636 S:      Maintained
2637 F:      drivers/net/can/
2638 F:      include/linux/can/dev.h
2639 F:      include/linux/can/platform/
2640 F:      include/uapi/linux/can/error.h
2641 F:      include/uapi/linux/can/netlink.h
2642
2643 CAPABILITIES
2644 M:      Serge Hallyn <serge.hallyn@canonical.com>
2645 L:      linux-security-module@vger.kernel.org
2646 S:      Supported
2647 F:      include/linux/capability.h
2648 F:      include/uapi/linux/capability.h
2649 F:      security/commoncap.c
2650 F:      kernel/capability.c
2651
2652 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
2653 M:      Kevin Tsai <ktsai@capellamicro.com>
2654 S:      Maintained
2655 F:      drivers/iio/light/cm*
2656 F:      Documentation/devicetree/bindings/i2c/trivial-devices.txt
2657
2658 CAVIUM LIQUIDIO NETWORK DRIVER
2659 M:     Derek Chickles <derek.chickles@caviumnetworks.com>
2660 M:     Satanand Burla <satananda.burla@caviumnetworks.com>
2661 M:     Felix Manlunas <felix.manlunas@caviumnetworks.com>
2662 M:     Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com>
2663 L:     netdev@vger.kernel.org
2664 W:     http://www.cavium.com
2665 S:     Supported
2666 F:     drivers/net/ethernet/cavium/liquidio/
2667
2668 CC2520 IEEE-802.15.4 RADIO DRIVER
2669 M:      Varka Bhadram <varkabhadram@gmail.com>
2670 L:      linux-wpan@vger.kernel.org
2671 S:      Maintained
2672 F:      drivers/net/ieee802154/cc2520.c
2673 F:      include/linux/spi/cc2520.h
2674 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
2675
2676 CELL BROADBAND ENGINE ARCHITECTURE
2677 M:      Arnd Bergmann <arnd@arndb.de>
2678 L:      linuxppc-dev@lists.ozlabs.org
2679 W:      http://www.ibm.com/developerworks/power/cell/
2680 S:      Supported
2681 F:      arch/powerpc/include/asm/cell*.h
2682 F:      arch/powerpc/include/asm/spu*.h
2683 F:      arch/powerpc/include/uapi/asm/spu*.h
2684 F:      arch/powerpc/oprofile/*cell*
2685 F:      arch/powerpc/platforms/cell/
2686
2687 CEPH COMMON CODE (LIBCEPH)
2688 M:      Ilya Dryomov <idryomov@gmail.com>
2689 M:      "Yan, Zheng" <zyan@redhat.com>
2690 M:      Sage Weil <sage@redhat.com>
2691 L:      ceph-devel@vger.kernel.org
2692 W:      http://ceph.com/
2693 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2694 T:      git git://github.com/ceph/ceph-client.git
2695 S:      Supported
2696 F:      net/ceph/
2697 F:      include/linux/ceph/
2698 F:      include/linux/crush/
2699
2700 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
2701 M:      "Yan, Zheng" <zyan@redhat.com>
2702 M:      Sage Weil <sage@redhat.com>
2703 M:      Ilya Dryomov <idryomov@gmail.com>
2704 L:      ceph-devel@vger.kernel.org
2705 W:      http://ceph.com/
2706 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2707 T:      git git://github.com/ceph/ceph-client.git
2708 S:      Supported
2709 F:      Documentation/filesystems/ceph.txt
2710 F:      fs/ceph/
2711
2712 CERTIFICATE HANDLING:
2713 M:      David Howells <dhowells@redhat.com>
2714 M:      David Woodhouse <dwmw2@infradead.org>
2715 L:      keyrings@vger.kernel.org
2716 S:      Maintained
2717 F:      Documentation/module-signing.txt
2718 F:      certs/
2719 F:      scripts/sign-file.c
2720 F:      scripts/extract-cert.c
2721
2722 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
2723 L:      linux-usb@vger.kernel.org
2724 S:      Orphan
2725 F:      Documentation/usb/WUSB-Design-overview.txt
2726 F:      Documentation/usb/wusb-cbaf
2727 F:      drivers/usb/host/hwa-hc.c
2728 F:      drivers/usb/host/whci/
2729 F:      drivers/usb/wusbcore/
2730 F:      include/linux/usb/wusb*
2731
2732 CFAG12864B LCD DRIVER
2733 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2734 W:      http://miguelojeda.es/auxdisplay.htm
2735 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2736 S:      Maintained
2737 F:      drivers/auxdisplay/cfag12864b.c
2738 F:      include/linux/cfag12864b.h
2739
2740 CFAG12864BFB LCD FRAMEBUFFER DRIVER
2741 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2742 W:      http://miguelojeda.es/auxdisplay.htm
2743 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2744 S:      Maintained
2745 F:      drivers/auxdisplay/cfag12864bfb.c
2746 F:      include/linux/cfag12864b.h
2747
2748 CFG80211 and NL80211
2749 M:      Johannes Berg <johannes@sipsolutions.net>
2750 L:      linux-wireless@vger.kernel.org
2751 W:      http://wireless.kernel.org/
2752 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2753 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
2754 S:      Maintained
2755 F:      include/uapi/linux/nl80211.h
2756 F:      include/net/cfg80211.h
2757 F:      net/wireless/*
2758 X:      net/wireless/wext*
2759
2760 CHAR and MISC DRIVERS
2761 M:      Arnd Bergmann <arnd@arndb.de>
2762 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2763 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
2764 S:      Supported
2765 F:      drivers/char/*
2766 F:      drivers/misc/*
2767 F:      include/linux/miscdevice.h
2768
2769 CHECKPATCH
2770 M:      Andy Whitcroft <apw@canonical.com>
2771 M:      Joe Perches <joe@perches.com>
2772 S:      Maintained
2773 F:      scripts/checkpatch.pl
2774
2775 CHINESE DOCUMENTATION
2776 M:      Harry Wei <harryxiyou@gmail.com>
2777 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
2778 L:      linux-kernel@zh-kernel.org (moderated for non-subscribers)
2779 S:      Maintained
2780 F:      Documentation/zh_CN/
2781
2782 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
2783 M:      Peter Chen <Peter.Chen@nxp.com>
2784 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
2785 L:      linux-usb@vger.kernel.org
2786 S:      Maintained
2787 F:      drivers/usb/chipidea/
2788
2789 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
2790 M:      Hans de Goede <hdegoede@redhat.com>
2791 L:      linux-input@vger.kernel.org
2792 S:      Maintained
2793 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
2794 F:      drivers/input/touchscreen/chipone_icn8318.c
2795
2796 CHROME HARDWARE PLATFORM SUPPORT
2797 M:      Olof Johansson <olof@lixom.net>
2798 S:      Maintained
2799 F:      drivers/platform/chrome/
2800
2801 CISCO VIC ETHERNET NIC DRIVER
2802 M:      Christian Benvenuti <benve@cisco.com>
2803 M:      Sujith Sankar <ssujith@cisco.com>
2804 M:      Govindarajulu Varadarajan <_govind@gmx.com>
2805 M:      Neel Patel <neepatel@cisco.com>
2806 S:      Supported
2807 F:      drivers/net/ethernet/cisco/enic/
2808
2809 CISCO VIC LOW LATENCY NIC DRIVER
2810 M:      Christian Benvenuti <benve@cisco.com>
2811 M:      Dave Goodell <dgoodell@cisco.com>
2812 S:      Supported
2813 F:      drivers/infiniband/hw/usnic/
2814
2815 CIRRUS LOGIC EP93XX ETHERNET DRIVER
2816 M:      Hartley Sweeten <hsweeten@visionengravers.com>
2817 L:      netdev@vger.kernel.org
2818 S:      Maintained
2819 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
2820
2821 CIRRUS LOGIC AUDIO CODEC DRIVERS
2822 M:      Brian Austin <brian.austin@cirrus.com>
2823 M:      Paul Handrigan <Paul.Handrigan@cirrus.com>
2824 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2825 S:      Maintained
2826 F:      sound/soc/codecs/cs*
2827
2828 CLEANCACHE API
2829 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2830 L:      linux-kernel@vger.kernel.org
2831 S:      Maintained
2832 F:      mm/cleancache.c
2833 F:      include/linux/cleancache.h
2834
2835 CLK API
2836 M:      Russell King <linux@arm.linux.org.uk>
2837 L:      linux-clk@vger.kernel.org
2838 S:      Maintained
2839 F:      include/linux/clk.h
2840
2841 CLOCKSOURCE, CLOCKEVENT DRIVERS
2842 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2843 M:      Thomas Gleixner <tglx@linutronix.de>
2844 L:      linux-kernel@vger.kernel.org
2845 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
2846 S:      Supported
2847 F:      drivers/clocksource
2848
2849 CISCO FCOE HBA DRIVER
2850 M:      Hiral Patel <hiralpat@cisco.com>
2851 M:      Suma Ramars <sramars@cisco.com>
2852 M:      Brian Uchino <buchino@cisco.com>
2853 L:      linux-scsi@vger.kernel.org
2854 S:      Supported
2855 F:      drivers/scsi/fnic/
2856
2857 CISCO SCSI HBA DRIVER
2858 M:      Narsimhulu Musini <nmusini@cisco.com>
2859 M:      Sesidhar Baddela <sebaddel@cisco.com>
2860 L:      linux-scsi@vger.kernel.org
2861 S:      Supported
2862 F:      drivers/scsi/snic/
2863
2864 CMPC ACPI DRIVER
2865 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2866 M:      Daniel Oliveira Nascimento <don@syst.com.br>
2867 L:      platform-driver-x86@vger.kernel.org
2868 S:      Supported
2869 F:      drivers/platform/x86/classmate-laptop.c
2870
2871 COBALT MEDIA DRIVER
2872 M:      Hans Verkuil <hans.verkuil@cisco.com>
2873 L:      linux-media@vger.kernel.org
2874 T:      git git://linuxtv.org/media_tree.git
2875 W:      https://linuxtv.org
2876 S:      Supported
2877 F:      drivers/media/pci/cobalt/
2878
2879 COCCINELLE/Semantic Patches (SmPL)
2880 M:      Julia Lawall <Julia.Lawall@lip6.fr>
2881 M:      Gilles Muller <Gilles.Muller@lip6.fr>
2882 M:      Nicolas Palix <nicolas.palix@imag.fr>
2883 M:      Michal Marek <mmarek@suse.com>
2884 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
2885 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
2886 W:      http://coccinelle.lip6.fr/
2887 S:      Supported
2888 F:      Documentation/coccinelle.txt
2889 F:      scripts/coccinelle/
2890 F:      scripts/coccicheck
2891
2892 CODA FILE SYSTEM
2893 M:      Jan Harkes <jaharkes@cs.cmu.edu>
2894 M:      coda@cs.cmu.edu
2895 L:      codalist@coda.cs.cmu.edu
2896 W:      http://www.coda.cs.cmu.edu/
2897 S:      Maintained
2898 F:      Documentation/filesystems/coda.txt
2899 F:      fs/coda/
2900 F:      include/linux/coda*.h
2901 F:      include/uapi/linux/coda*.h
2902
2903 CODA V4L2 MEM2MEM DRIVER
2904 M:      Philipp Zabel <p.zabel@pengutronix.de>
2905 L:      linux-media@vger.kernel.org
2906 S:      Maintained
2907 F:      Documentation/devicetree/bindings/media/coda.txt
2908 F:      drivers/media/platform/coda/
2909
2910 COMMON CLK FRAMEWORK
2911 M:      Michael Turquette <mturquette@baylibre.com>
2912 M:      Stephen Boyd <sboyd@codeaurora.org>
2913 L:      linux-clk@vger.kernel.org
2914 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
2915 S:      Maintained
2916 F:      drivers/clk/
2917 X:      drivers/clk/clkdev.c
2918 F:      include/linux/clk-pr*
2919 F:      include/linux/clk/
2920
2921 COMMON INTERNET FILE SYSTEM (CIFS)
2922 M:      Steve French <sfrench@samba.org>
2923 L:      linux-cifs@vger.kernel.org
2924 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
2925 W:      http://linux-cifs.samba.org/
2926 T:      git git://git.samba.org/sfrench/cifs-2.6.git
2927 S:      Supported
2928 F:      Documentation/filesystems/cifs/
2929 F:      fs/cifs/
2930
2931 COMPACTPCI HOTPLUG CORE
2932 M:      Scott Murray <scott@spiteful.org>
2933 L:      linux-pci@vger.kernel.org
2934 S:      Maintained
2935 F:      drivers/pci/hotplug/cpci_hotplug*
2936
2937 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
2938 M:      Scott Murray <scott@spiteful.org>
2939 L:      linux-pci@vger.kernel.org
2940 S:      Maintained
2941 F:      drivers/pci/hotplug/cpcihp_zt5550.*
2942
2943 COMPACTPCI HOTPLUG GENERIC DRIVER
2944 M:      Scott Murray <scott@spiteful.org>
2945 L:      linux-pci@vger.kernel.org
2946 S:      Maintained
2947 F:      drivers/pci/hotplug/cpcihp_generic.c
2948
2949 COMPAL LAPTOP SUPPORT
2950 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
2951 L:      platform-driver-x86@vger.kernel.org
2952 S:      Maintained
2953 F:      drivers/platform/x86/compal-laptop.c
2954
2955 CONEXANT ACCESSRUNNER USB DRIVER
2956 L:      accessrunner-general@lists.sourceforge.net
2957 W:      http://accessrunner.sourceforge.net/
2958 S:      Orphan
2959 F:      drivers/usb/atm/cxacru.c
2960
2961 CONFIGFS
2962 M:      Joel Becker <jlbec@evilplan.org>
2963 M:      Christoph Hellwig <hch@lst.de>
2964 T:      git git://git.infradead.org/users/hch/configfs.git
2965 S:      Supported
2966 F:      fs/configfs/
2967 F:      include/linux/configfs.h
2968
2969 CONNECTOR
2970 M:      Evgeniy Polyakov <zbr@ioremap.net>
2971 L:      netdev@vger.kernel.org
2972 S:      Maintained
2973 F:      drivers/connector/
2974
2975 CONTROL GROUP (CGROUP)
2976 M:      Tejun Heo <tj@kernel.org>
2977 M:      Li Zefan <lizefan@huawei.com>
2978 M:      Johannes Weiner <hannes@cmpxchg.org>
2979 L:      cgroups@vger.kernel.org
2980 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
2981 S:      Maintained
2982 F:      Documentation/cgroups/
2983 F:      include/linux/cgroup*
2984 F:      kernel/cgroup*
2985
2986 CONTROL GROUP - CPUSET
2987 M:      Li Zefan <lizefan@huawei.com>
2988 L:      cgroups@vger.kernel.org
2989 W:      http://www.bullopensource.org/cpuset/
2990 W:      http://oss.sgi.com/projects/cpusets/
2991 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
2992 S:      Maintained
2993 F:      Documentation/cgroups/cpusets.txt
2994 F:      include/linux/cpuset.h
2995 F:      kernel/cpuset.c
2996
2997 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
2998 M:      Johannes Weiner <hannes@cmpxchg.org>
2999 M:      Michal Hocko <mhocko@kernel.org>
3000 M:      Vladimir Davydov <vdavydov@virtuozzo.com>
3001 L:      cgroups@vger.kernel.org
3002 L:      linux-mm@kvack.org
3003 S:      Maintained
3004 F:      mm/memcontrol.c
3005 F:      mm/swap_cgroup.c
3006
3007 CORETEMP HARDWARE MONITORING DRIVER
3008 M:      Fenghua Yu <fenghua.yu@intel.com>
3009 L:      lm-sensors@lm-sensors.org
3010 S:      Maintained
3011 F:      Documentation/hwmon/coretemp
3012 F:      drivers/hwmon/coretemp.c
3013
3014 COSA/SRP SYNC SERIAL DRIVER
3015 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
3016 W:      http://www.fi.muni.cz/~kas/cosa/
3017 S:      Maintained
3018 F:      drivers/net/wan/cosa*
3019
3020 CPMAC ETHERNET DRIVER
3021 M:      Florian Fainelli <florian@openwrt.org>
3022 L:      netdev@vger.kernel.org
3023 S:      Maintained
3024 F:      drivers/net/ethernet/ti/cpmac.c
3025
3026 CPU FREQUENCY DRIVERS
3027 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
3028 M:      Viresh Kumar <viresh.kumar@linaro.org>
3029 L:      linux-pm@vger.kernel.org
3030 S:      Maintained
3031 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3032 T:      git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
3033 F:      drivers/cpufreq/
3034 F:      include/linux/cpufreq.h
3035
3036 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
3037 M:      Viresh Kumar <viresh.kumar@linaro.org>
3038 M:      Sudeep Holla <sudeep.holla@arm.com>
3039 L:      linux-pm@vger.kernel.org
3040 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
3041 S:      Maintained
3042 F:      drivers/cpufreq/arm_big_little.h
3043 F:      drivers/cpufreq/arm_big_little.c
3044 F:      drivers/cpufreq/arm_big_little_dt.c
3045
3046 CPUIDLE DRIVER - ARM BIG LITTLE
3047 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
3048 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3049 L:      linux-pm@vger.kernel.org
3050 L:      linux-arm-kernel@lists.infradead.org
3051 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3052 S:      Maintained
3053 F:      drivers/cpuidle/cpuidle-big_little.c
3054
3055 CPUIDLE DRIVER - ARM EXYNOS
3056 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
3057 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3058 M:      Kukjin Kim <kgene@kernel.org>
3059 L:      linux-pm@vger.kernel.org
3060 L:      linux-samsung-soc@vger.kernel.org
3061 S:      Supported
3062 F:      drivers/cpuidle/cpuidle-exynos.c
3063 F:      arch/arm/mach-exynos/pm.c
3064
3065 CPUIDLE DRIVERS
3066 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
3067 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3068 L:      linux-pm@vger.kernel.org
3069 S:      Maintained
3070 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3071 F:      drivers/cpuidle/*
3072 F:      include/linux/cpuidle.h
3073
3074 CPUID/MSR DRIVER
3075 M:      "H. Peter Anvin" <hpa@zytor.com>
3076 S:      Maintained
3077 F:      arch/x86/kernel/cpuid.c
3078 F:      arch/x86/kernel/msr.c
3079
3080 CPU POWER MONITORING SUBSYSTEM
3081 M:      Thomas Renninger <trenn@suse.com>
3082 L:      linux-pm@vger.kernel.org
3083 S:      Maintained
3084 F:      tools/power/cpupower/
3085
3086 CRAMFS FILESYSTEM
3087 W:      http://sourceforge.net/projects/cramfs/
3088 S:      Orphan / Obsolete
3089 F:      Documentation/filesystems/cramfs.txt
3090 F:      fs/cramfs/
3091
3092 CRIS PORT
3093 M:      Mikael Starvik <starvik@axis.com>
3094 M:      Jesper Nilsson <jesper.nilsson@axis.com>
3095 L:      linux-cris-kernel@axis.com
3096 W:      http://developer.axis.com
3097 S:      Maintained
3098 F:      arch/cris/
3099 F:      drivers/tty/serial/crisv10.*
3100
3101 CRYPTO API
3102 M:      Herbert Xu <herbert@gondor.apana.org.au>
3103 M:      "David S. Miller" <davem@davemloft.net>
3104 L:      linux-crypto@vger.kernel.org
3105 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
3106 S:      Maintained
3107 F:      Documentation/crypto/
3108 F:      Documentation/DocBook/crypto-API.tmpl
3109 F:      arch/*/crypto/
3110 F:      crypto/
3111 F:      drivers/crypto/
3112 F:      include/crypto/
3113
3114 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
3115 M:      Neil Horman <nhorman@tuxdriver.com>
3116 L:      linux-crypto@vger.kernel.org
3117 S:      Maintained
3118 F:      crypto/ansi_cprng.c
3119 F:      crypto/rng.c
3120
3121 CS3308 MEDIA DRIVER
3122 M:      Hans Verkuil <hverkuil@xs4all.nl>
3123 L:      linux-media@vger.kernel.org
3124 T:      git git://linuxtv.org/media_tree.git
3125 W:      http://linuxtv.org
3126 S:      Odd Fixes
3127 F:      drivers/media/i2c/cs3308.c
3128 F:      drivers/media/i2c/cs3308.h
3129
3130 CS5535 Audio ALSA driver
3131 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
3132 S:      Maintained
3133 F:      sound/pci/cs5535audio/
3134
3135 CW1200 WLAN driver
3136 M:      Solomon Peachy <pizza@shaftnet.org>
3137 S:      Maintained
3138 F:      drivers/net/wireless/st/cw1200/
3139
3140 CX18 VIDEO4LINUX DRIVER
3141 M:      Andy Walls <awalls@md.metrocast.net>
3142 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
3143 L:      linux-media@vger.kernel.org
3144 T:      git git://linuxtv.org/media_tree.git
3145 W:      https://linuxtv.org
3146 W:      http://www.ivtvdriver.org/index.php/Cx18
3147 S:      Maintained
3148 F:      Documentation/video4linux/cx18.txt
3149 F:      drivers/media/pci/cx18/
3150 F:      include/uapi/linux/ivtv*
3151
3152 CX2341X MPEG ENCODER HELPER MODULE
3153 M:      Hans Verkuil <hverkuil@xs4all.nl>
3154 L:      linux-media@vger.kernel.org
3155 T:      git git://linuxtv.org/media_tree.git
3156 W:      https://linuxtv.org
3157 S:      Maintained
3158 F:      drivers/media/common/cx2341x*
3159 F:      include/media/cx2341x*
3160
3161 CX24120 MEDIA DRIVER
3162 M:      Jemma Denson <jdenson@gmail.com>
3163 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
3164 L:      linux-media@vger.kernel.org
3165 W:      https://linuxtv.org
3166 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3167 S:      Maintained
3168 F:      drivers/media/dvb-frontends/cx24120*
3169
3170 CX88 VIDEO4LINUX DRIVER
3171 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3172 L:      linux-media@vger.kernel.org
3173 W:      https://linuxtv.org
3174 T:      git git://linuxtv.org/media_tree.git
3175 S:      Odd fixes
3176 F:      Documentation/video4linux/cx88/
3177 F:      drivers/media/pci/cx88/
3178
3179 CXD2820R MEDIA DRIVER
3180 M:      Antti Palosaari <crope@iki.fi>
3181 L:      linux-media@vger.kernel.org
3182 W:      https://linuxtv.org
3183 W:      http://palosaari.fi/linux/
3184 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3185 T:      git git://linuxtv.org/anttip/media_tree.git
3186 S:      Maintained
3187 F:      drivers/media/dvb-frontends/cxd2820r*
3188
3189 CXGB3 ETHERNET DRIVER (CXGB3)
3190 M:      Santosh Raspatur <santosh@chelsio.com>
3191 L:      netdev@vger.kernel.org
3192 W:      http://www.chelsio.com
3193 S:      Supported
3194 F:      drivers/net/ethernet/chelsio/cxgb3/
3195
3196 CXGB3 ISCSI DRIVER (CXGB3I)
3197 M:      Karen Xie <kxie@chelsio.com>
3198 L:      linux-scsi@vger.kernel.org
3199 W:      http://www.chelsio.com
3200 S:      Supported
3201 F:      drivers/scsi/cxgbi/cxgb3i
3202
3203 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
3204 M:      Steve Wise <swise@chelsio.com>
3205 L:      linux-rdma@vger.kernel.org
3206 W:      http://www.openfabrics.org
3207 S:      Supported
3208 F:      drivers/infiniband/hw/cxgb3/
3209
3210 CXGB4 ETHERNET DRIVER (CXGB4)
3211 M:      Hariprasad S <hariprasad@chelsio.com>
3212 L:      netdev@vger.kernel.org
3213 W:      http://www.chelsio.com
3214 S:      Supported
3215 F:      drivers/net/ethernet/chelsio/cxgb4/
3216
3217 CXGB4 ISCSI DRIVER (CXGB4I)
3218 M:      Karen Xie <kxie@chelsio.com>
3219 L:      linux-scsi@vger.kernel.org
3220 W:      http://www.chelsio.com
3221 S:      Supported
3222 F:      drivers/scsi/cxgbi/cxgb4i
3223
3224 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
3225 M:      Steve Wise <swise@chelsio.com>
3226 L:      linux-rdma@vger.kernel.org
3227 W:      http://www.openfabrics.org
3228 S:      Supported
3229 F:      drivers/infiniband/hw/cxgb4/
3230
3231 CXGB4VF ETHERNET DRIVER (CXGB4VF)
3232 M:      Casey Leedom <leedom@chelsio.com>
3233 L:      netdev@vger.kernel.org
3234 W:      http://www.chelsio.com
3235 S:      Supported
3236 F:      drivers/net/ethernet/chelsio/cxgb4vf/
3237
3238 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
3239 M:      Ian Munsie <imunsie@au1.ibm.com>
3240 M:      Michael Neuling <mikey@neuling.org>
3241 L:      linuxppc-dev@lists.ozlabs.org
3242 S:      Supported
3243 F:      drivers/misc/cxl/
3244 F:      include/misc/cxl*
3245 F:      include/uapi/misc/cxl.h
3246 F:      Documentation/powerpc/cxl.txt
3247 F:      Documentation/powerpc/cxl.txt
3248 F:      Documentation/ABI/testing/sysfs-class-cxl
3249
3250 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
3251 M:      Manoj N. Kumar <manoj@linux.vnet.ibm.com>
3252 M:      Matthew R. Ochs <mrochs@linux.vnet.ibm.com>
3253 L:      linux-scsi@vger.kernel.org
3254 S:      Supported
3255 F:      drivers/scsi/cxlflash/
3256 F:      include/uapi/scsi/cxlflash_ioctls.h
3257 F:      Documentation/powerpc/cxlflash.txt
3258
3259 STMMAC ETHERNET DRIVER
3260 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
3261 L:      netdev@vger.kernel.org
3262 W:      http://www.stlinux.com
3263 S:      Supported
3264 F:      drivers/net/ethernet/stmicro/stmmac/
3265
3266 CYBERPRO FB DRIVER
3267 M:      Russell King <linux@arm.linux.org.uk>
3268 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3269 W:      http://www.arm.linux.org.uk/
3270 S:      Maintained
3271 F:      drivers/video/fbdev/cyber2000fb.*
3272
3273 CYCLADES ASYNC MUX DRIVER
3274 W:      http://www.cyclades.com/
3275 S:      Orphan
3276 F:      drivers/tty/cyclades.c
3277 F:      include/linux/cyclades.h
3278 F:      include/uapi/linux/cyclades.h
3279
3280 CYCLADES PC300 DRIVER
3281 W:      http://www.cyclades.com/
3282 S:      Orphan
3283 F:      drivers/net/wan/pc300*
3284
3285 CYPRESS_FIRMWARE MEDIA DRIVER
3286 M:      Antti Palosaari <crope@iki.fi>
3287 L:      linux-media@vger.kernel.org
3288 W:      https://linuxtv.org
3289 W:      http://palosaari.fi/linux/
3290 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3291 T:      git git://linuxtv.org/anttip/media_tree.git
3292 S:      Maintained
3293 F:      drivers/media/common/cypress_firmware*
3294
3295 CYTTSP TOUCHSCREEN DRIVER
3296 M:      Ferruh Yigit <fery@cypress.com>
3297 L:      linux-input@vger.kernel.org
3298 S:      Supported
3299 F:      drivers/input/touchscreen/cyttsp*
3300 F:      include/linux/input/cyttsp.h
3301
3302 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
3303 M:      Joshua Kinard <kumba@gentoo.org>
3304 S:      Maintained
3305 F:      drivers/rtc/rtc-ds1685.c
3306 F:      include/linux/rtc/ds1685.h
3307
3308 DAMA SLAVE for AX.25
3309 M:      Joerg Reuter <jreuter@yaina.de>
3310 W:      http://yaina.de/jreuter/
3311 W:      http://www.qsl.net/dl1bke/
3312 L:      linux-hams@vger.kernel.org
3313 S:      Maintained
3314 F:      net/ax25/af_ax25.c
3315 F:      net/ax25/ax25_dev.c
3316 F:      net/ax25/ax25_ds_*
3317 F:      net/ax25/ax25_in.c
3318 F:      net/ax25/ax25_out.c
3319 F:      net/ax25/ax25_timer.c
3320 F:      net/ax25/sysctl_net_ax25.c
3321
3322 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
3323 L:      netdev@vger.kernel.org
3324 S:      Orphan
3325 F:      Documentation/networking/dmfe.txt
3326 F:      drivers/net/ethernet/dec/tulip/dmfe.c
3327
3328 DC390/AM53C974 SCSI driver
3329 M:      Hannes Reinecke <hare@suse.com>
3330 L:      linux-scsi@vger.kernel.org
3331 S:      Maintained
3332 F:      drivers/scsi/am53c974.c
3333
3334 DC395x SCSI driver
3335 M:      Oliver Neukum <oliver@neukum.org>
3336 M:      Ali Akcaagac <aliakc@web.de>
3337 M:      Jamie Lenehan <lenehan@twibble.org>
3338 L:      dc395x@twibble.org
3339 W:      http://twibble.org/dist/dc395x/
3340 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
3341 S:      Maintained
3342 F:      Documentation/scsi/dc395x.txt
3343 F:      drivers/scsi/dc395x.*
3344
3345 DCCP PROTOCOL
3346 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
3347 L:      dccp@vger.kernel.org
3348 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
3349 S:      Maintained
3350 F:      include/linux/dccp.h
3351 F:      include/uapi/linux/dccp.h
3352 F:      include/linux/tfrc.h
3353 F:      net/dccp/
3354
3355 DECnet NETWORK LAYER
3356 W:      http://linux-decnet.sourceforge.net
3357 L:      linux-decnet-user@lists.sourceforge.net
3358 S:      Orphan
3359 F:      Documentation/networking/decnet.txt
3360 F:      net/decnet/
3361
3362 DECSTATION PLATFORM SUPPORT
3363 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3364 L:      linux-mips@linux-mips.org
3365 W:      http://www.linux-mips.org/wiki/DECstation
3366 S:      Maintained
3367 F:      arch/mips/dec/
3368 F:      arch/mips/include/asm/dec/
3369 F:      arch/mips/include/asm/mach-dec/
3370
3371 DEFXX FDDI NETWORK DRIVER
3372 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3373 S:      Maintained
3374 F:      drivers/net/fddi/defxx.*
3375
3376 DELL LAPTOP DRIVER
3377 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3378 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3379 L:      platform-driver-x86@vger.kernel.org
3380 S:      Maintained
3381 F:      drivers/platform/x86/dell-laptop.c
3382
3383 DELL LAPTOP RBTN DRIVER
3384 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3385 S:      Maintained
3386 F:      drivers/platform/x86/dell-rbtn.*
3387
3388 DELL LAPTOP FREEFALL DRIVER
3389 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3390 S:      Maintained
3391 F:      drivers/platform/x86/dell-smo8800.c
3392
3393 DELL LAPTOP SMM DRIVER
3394 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3395 S:      Maintained
3396 F:      drivers/hwmon/dell-smm-hwmon.c
3397 F:      include/uapi/linux/i8k.h
3398
3399 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
3400 M:      Doug Warzecha <Douglas_Warzecha@dell.com>
3401 S:      Maintained
3402 F:      Documentation/dcdbas.txt
3403 F:      drivers/firmware/dcdbas.*
3404
3405 DELL WMI EXTRAS DRIVER
3406 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3407 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3408 S:      Maintained
3409 F:      drivers/platform/x86/dell-wmi.c
3410
3411 DESIGNWARE USB2 DRD IP DRIVER
3412 M:      John Youn <johnyoun@synopsys.com>
3413 L:      linux-usb@vger.kernel.org
3414 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3415 S:      Maintained
3416 F:      drivers/usb/dwc2/
3417
3418 DESIGNWARE USB3 DRD IP DRIVER
3419 M:      Felipe Balbi <balbi@ti.com>
3420 L:      linux-usb@vger.kernel.org
3421 L:      linux-omap@vger.kernel.org
3422 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3423 S:      Maintained
3424 F:      drivers/usb/dwc3/
3425
3426 DEVICE COREDUMP (DEV_COREDUMP)
3427 M:      Johannes Berg <johannes@sipsolutions.net>
3428 L:      linux-kernel@vger.kernel.org
3429 S:      Maintained
3430 F:      drivers/base/devcoredump.c
3431 F:      include/linux/devcoredump.h
3432
3433 DEVICE FREQUENCY (DEVFREQ)
3434 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
3435 M:      Kyungmin Park <kyungmin.park@samsung.com>
3436 L:      linux-pm@vger.kernel.org
3437 S:      Maintained
3438 F:      drivers/devfreq/
3439
3440 DEVICE NUMBER REGISTRY
3441 M:      Torben Mathiasen <device@lanana.org>
3442 W:      http://lanana.org/docs/device-list/index.html
3443 S:      Maintained
3444
3445 DEVICE-MAPPER  (LVM)
3446 M:      Alasdair Kergon <agk@redhat.com>
3447 M:      Mike Snitzer <snitzer@redhat.com>
3448 M:      dm-devel@redhat.com
3449 L:      dm-devel@redhat.com
3450 W:      http://sources.redhat.com/dm
3451 Q:      http://patchwork.kernel.org/project/dm-devel/list/
3452 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
3453 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
3454 S:      Maintained
3455 F:      Documentation/device-mapper/
3456 F:      drivers/md/dm*
3457 F:      drivers/md/persistent-data/
3458 F:      include/linux/device-mapper.h
3459 F:      include/linux/dm-*.h
3460 F:      include/uapi/linux/dm-*.h
3461
3462 DIALOG SEMICONDUCTOR DRIVERS
3463 M:      Support Opensource <support.opensource@diasemi.com>
3464 W:      http://www.dialog-semiconductor.com/products
3465 S:      Supported
3466 F:      Documentation/hwmon/da90??
3467 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
3468 F:      drivers/gpio/gpio-da90??.c
3469 F:      drivers/hwmon/da90??-hwmon.c
3470 F:      drivers/iio/adc/da91??-*.c
3471 F:      drivers/input/misc/da90??_onkey.c
3472 F:      drivers/input/touchscreen/da9052_tsi.c
3473 F:      drivers/leds/leds-da90??.c
3474 F:      drivers/mfd/da903x.c
3475 F:      drivers/mfd/da90??-*.c
3476 F:      drivers/mfd/da91??-*.c
3477 F:      drivers/power/da9052-battery.c
3478 F:      drivers/power/da91??-*.c
3479 F:      drivers/regulator/da903x.c
3480 F:      drivers/regulator/da9???-regulator.[ch]
3481 F:      drivers/rtc/rtc-da90??.c
3482 F:      drivers/video/backlight/da90??_bl.c
3483 F:      drivers/watchdog/da90??_wdt.c
3484 F:      include/linux/mfd/da903x.h
3485 F:      include/linux/mfd/da9052/
3486 F:      include/linux/mfd/da9055/
3487 F:      include/linux/mfd/da9063/
3488 F:      include/linux/mfd/da9150/
3489 F:      include/sound/da[79]*.h
3490 F:      sound/soc/codecs/da[79]*.[ch]
3491
3492 DIGI NEO AND CLASSIC PCI PRODUCTS
3493 M:      Lidza Louina <lidza.louina@gmail.com>
3494 M:      Mark Hounschell <markh@compro.net>
3495 L:      driverdev-devel@linuxdriverproject.org
3496 S:      Maintained
3497 F:      drivers/staging/dgnc/
3498
3499 DIGI EPCA PCI PRODUCTS
3500 M:      Lidza Louina <lidza.louina@gmail.com>
3501 M:      Daeseok Youn <daeseok.youn@gmail.com>
3502 L:      driverdev-devel@linuxdriverproject.org
3503 S:      Maintained
3504 F:      drivers/staging/dgap/
3505
3506 DIOLAN U2C-12 I2C DRIVER
3507 M:      Guenter Roeck <linux@roeck-us.net>
3508 L:      linux-i2c@vger.kernel.org
3509 S:      Maintained
3510 F:      drivers/i2c/busses/i2c-diolan-u2c.c
3511
3512 DIRECT ACCESS (DAX)
3513 M:      Matthew Wilcox <willy@linux.intel.com>
3514 L:      linux-fsdevel@vger.kernel.org
3515 S:      Supported
3516 F:      fs/dax.c
3517
3518 DIRECTORY NOTIFICATION (DNOTIFY)
3519 M:      Eric Paris <eparis@parisplace.org>
3520 S:      Maintained
3521 F:      Documentation/filesystems/dnotify.txt
3522 F:      fs/notify/dnotify/
3523 F:      include/linux/dnotify.h
3524
3525 DISK GEOMETRY AND PARTITION HANDLING
3526 M:      Andries Brouwer <aeb@cwi.nl>
3527 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
3528 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
3529 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
3530 S:      Maintained
3531
3532 DISKQUOTA
3533 M:      Jan Kara <jack@suse.com>
3534 S:      Maintained
3535 F:      Documentation/filesystems/quota.txt
3536 F:      fs/quota/
3537 F:      include/linux/quota*.h
3538 F:      include/uapi/linux/quota*.h
3539
3540 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
3541 M:      Bernie Thompson <bernie@plugable.com>
3542 L:      linux-fbdev@vger.kernel.org
3543 S:      Maintained
3544 W:      http://plugable.com/category/projects/udlfb/
3545 F:      drivers/video/fbdev/udlfb.c
3546 F:      include/video/udlfb.h
3547 F:      Documentation/fb/udlfb.txt
3548
3549 DISTRIBUTED LOCK MANAGER (DLM)
3550 M:      Christine Caulfield <ccaulfie@redhat.com>
3551 M:      David Teigland <teigland@redhat.com>
3552 L:      cluster-devel@redhat.com
3553 W:      http://sources.redhat.com/cluster/
3554 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
3555 S:      Supported
3556 F:      fs/dlm/
3557
3558 DMA BUFFER SHARING FRAMEWORK
3559 M:      Sumit Semwal <sumit.semwal@linaro.org>
3560 S:      Maintained
3561 L:      linux-media@vger.kernel.org
3562 L:      dri-devel@lists.freedesktop.org
3563 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
3564 F:      drivers/dma-buf/
3565 F:      include/linux/dma-buf*
3566 F:      include/linux/reservation.h
3567 F:      include/linux/*fence.h
3568 F:      Documentation/dma-buf-sharing.txt
3569 T:      git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
3570
3571 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
3572 M:      Vinod Koul <vinod.koul@intel.com>
3573 L:      dmaengine@vger.kernel.org
3574 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
3575 S:      Maintained
3576 F:      drivers/dma/
3577 F:      include/linux/dmaengine.h
3578 F:      Documentation/dmaengine/
3579 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
3580
3581 DME1737 HARDWARE MONITOR DRIVER
3582 M:      Juerg Haefliger <juergh@gmail.com>
3583 L:      lm-sensors@lm-sensors.org
3584 S:      Maintained
3585 F:      Documentation/hwmon/dme1737
3586 F:      drivers/hwmon/dme1737.c
3587
3588 DMI/SMBIOS SUPPORT
3589 M:      Jean Delvare <jdelvare@suse.com>
3590 S:      Maintained
3591 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
3592 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
3593 F:      drivers/firmware/dmi-id.c
3594 F:      drivers/firmware/dmi_scan.c
3595 F:      include/linux/dmi.h
3596
3597 DOCUMENTATION
3598 M:      Jonathan Corbet <corbet@lwn.net>
3599 L:      linux-doc@vger.kernel.org
3600 S:      Maintained
3601 F:      Documentation/
3602 F:      scripts/docproc.c
3603 F:      scripts/kernel-doc*
3604 X:      Documentation/ABI/
3605 X:      Documentation/devicetree/
3606 X:      Documentation/acpi
3607 X:      Documentation/power
3608 X:      Documentation/spi
3609 X:      Documentation/DocBook/media
3610 T:      git git://git.lwn.net/linux.git docs-next
3611
3612 DOUBLETALK DRIVER
3613 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
3614 L:      blinux-list@redhat.com
3615 S:      Maintained
3616 F:      drivers/char/dtlk.c
3617 F:      include/linux/dtlk.h
3618
3619 DPT_I2O SCSI RAID DRIVER
3620 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
3621 L:      linux-scsi@vger.kernel.org
3622 W:      http://www.adaptec.com/
3623 S:      Maintained
3624 F:      drivers/scsi/dpt*
3625 F:      drivers/scsi/dpt/
3626
3627 DRBD DRIVER
3628 P:      Philipp Reisner
3629 P:      Lars Ellenberg
3630 M:      drbd-dev@lists.linbit.com
3631 L:      drbd-user@lists.linbit.com
3632 W:      http://www.drbd.org
3633 T:      git git://git.drbd.org/linux-2.6-drbd.git drbd
3634 T:      git git://git.drbd.org/drbd-8.3.git
3635 S:      Supported
3636 F:      drivers/block/drbd/
3637 F:      lib/lru_cache.c
3638 F:      Documentation/blockdev/drbd/
3639
3640 DRIVER CORE, KOBJECTS, DEBUGFS, KERNFS AND SYSFS
3641 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3642 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
3643 S:      Supported
3644 F:      Documentation/kobject.txt
3645 F:      drivers/base/
3646 F:      fs/debugfs/
3647 F:      fs/kernfs/
3648 F:      fs/sysfs/
3649 F:      include/linux/debugfs.h
3650 F:      include/linux/kobj*
3651 F:      lib/kobj*
3652
3653 DRM DRIVERS
3654 M:      David Airlie <airlied@linux.ie>
3655 L:      dri-devel@lists.freedesktop.org
3656 T:      git git://people.freedesktop.org/~airlied/linux
3657 S:      Maintained
3658 F:      drivers/gpu/drm/
3659 F:      drivers/gpu/vga/
3660 F:      include/drm/
3661 F:      include/uapi/drm/
3662
3663 RADEON DRM DRIVERS
3664 M:      Alex Deucher <alexander.deucher@amd.com>
3665 M:      Christian König <christian.koenig@amd.com>
3666 L:      dri-devel@lists.freedesktop.org
3667 T:      git git://people.freedesktop.org/~agd5f/linux
3668 S:      Supported
3669 F:      drivers/gpu/drm/radeon/
3670 F:      include/uapi/drm/radeon*
3671
3672 DRM PANEL DRIVERS
3673 M:      Thierry Reding <thierry.reding@gmail.com>
3674 L:      dri-devel@lists.freedesktop.org
3675 T:      git git://anongit.freedesktop.org/tegra/linux.git
3676 S:      Maintained
3677 F:      drivers/gpu/drm/drm_panel.c
3678 F:      drivers/gpu/drm/panel/
3679 F:      include/drm/drm_panel.h
3680 F:      Documentation/devicetree/bindings/display/panel/
3681
3682 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
3683 M:      Daniel Vetter <daniel.vetter@intel.com>
3684 M:      Jani Nikula <jani.nikula@linux.intel.com>
3685 L:      intel-gfx@lists.freedesktop.org
3686 L:      dri-devel@lists.freedesktop.org
3687 W:      https://01.org/linuxgraphics/
3688 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
3689 T:      git git://anongit.freedesktop.org/drm-intel
3690 S:      Supported
3691 F:      drivers/gpu/drm/i915/
3692 F:      include/drm/i915*
3693 F:      include/uapi/drm/i915*
3694
3695 DRM DRIVERS FOR ATMEL HLCDC
3696 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
3697 L:      dri-devel@lists.freedesktop.org
3698 S:      Supported
3699 F:      drivers/gpu/drm/atmel-hlcdc/
3700 F:      Documentation/devicetree/bindings/drm/atmel/
3701
3702 DRM DRIVERS FOR EXYNOS
3703 M:      Inki Dae <inki.dae@samsung.com>
3704 M:      Joonyoung Shim <jy0922.shim@samsung.com>
3705 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
3706 M:      Kyungmin Park <kyungmin.park@samsung.com>
3707 L:      dri-devel@lists.freedesktop.org
3708 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
3709 S:      Supported
3710 F:      drivers/gpu/drm/exynos/
3711 F:      include/drm/exynos*
3712 F:      include/uapi/drm/exynos*
3713
3714 DRM DRIVERS FOR FREESCALE DCU
3715 M:      Jianwei Wang <jianwei.wang.chn@gmail.com>
3716 M:      Alison Wang <alison.wang@freescale.com>
3717 L:      dri-devel@lists.freedesktop.org
3718 S:      Supported
3719 F:      drivers/gpu/drm/fsl-dcu/
3720 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
3721 F:      Documentation/devicetree/bindings/display/panel/nec,nl4827hc19_05b.txt
3722
3723 DRM DRIVERS FOR FREESCALE IMX
3724 M:      Philipp Zabel <p.zabel@pengutronix.de>
3725 L:      dri-devel@lists.freedesktop.org
3726 S:      Maintained
3727 F:      drivers/gpu/drm/imx/
3728 F:      drivers/gpu/ipu-v3/
3729 F:      Documentation/devicetree/bindings/display/imx/
3730
3731 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
3732 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
3733 L:      dri-devel@lists.freedesktop.org
3734 T:      git git://github.com/patjak/drm-gma500
3735 S:      Maintained
3736 F:      drivers/gpu/drm/gma500
3737 F:      include/drm/gma500*
3738
3739 DRM DRIVERS FOR NVIDIA TEGRA
3740 M:      Thierry Reding <thierry.reding@gmail.com>
3741 M:      Terje Bergström <tbergstrom@nvidia.com>
3742 L:      dri-devel@lists.freedesktop.org
3743 L:      linux-tegra@vger.kernel.org
3744 T:      git git://anongit.freedesktop.org/tegra/linux.git
3745 S:      Supported
3746 F:      drivers/gpu/drm/tegra/
3747 F:      drivers/gpu/host1x/
3748 F:      include/linux/host1x.h
3749 F:      include/uapi/drm/tegra_drm.h
3750 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
3751
3752 DRM DRIVERS FOR RENESAS
3753 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
3754 L:      dri-devel@lists.freedesktop.org
3755 L:      linux-renesas-soc@vger.kernel.org
3756 T:      git git://people.freedesktop.org/~airlied/linux
3757 S:      Supported
3758 F:      drivers/gpu/drm/rcar-du/
3759 F:      drivers/gpu/drm/shmobile/
3760 F:      include/linux/platform_data/shmob_drm.h
3761
3762 DRM DRIVERS FOR ROCKCHIP
3763 M:      Mark Yao <mark.yao@rock-chips.com>
3764 L:      dri-devel@lists.freedesktop.org
3765 S:      Maintained
3766 F:      drivers/gpu/drm/rockchip/
3767 F:      Documentation/devicetree/bindings/display/rockchip*
3768
3769 DRM DRIVERS FOR STI
3770 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
3771 M:      Vincent Abriou <vincent.abriou@st.com>
3772 L:      dri-devel@lists.freedesktop.org
3773 T:      git http://git.linaro.org/people/benjamin.gaignard/kernel.git
3774 S:      Maintained
3775 F:      drivers/gpu/drm/sti
3776 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
3777
3778 DRM DRIVERS FOR VIVANTE GPU IP
3779 M:      Lucas Stach <l.stach@pengutronix.de>
3780 R:      Russell King <linux+etnaviv@arm.linux.org.uk>
3781 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
3782 L:      dri-devel@lists.freedesktop.org
3783 S:      Maintained
3784 F:      drivers/gpu/drm/etnaviv
3785 F:      Documentation/devicetree/bindings/display/etnaviv
3786
3787 DSBR100 USB FM RADIO DRIVER
3788 M:      Alexey Klimov <klimov.linux@gmail.com>
3789 L:      linux-media@vger.kernel.org
3790 T:      git git://linuxtv.org/media_tree.git
3791 S:      Maintained
3792 F:      drivers/media/radio/dsbr100.c
3793
3794 DSCC4 DRIVER
3795 M:      Francois Romieu <romieu@fr.zoreil.com>
3796 L:      netdev@vger.kernel.org
3797 S:      Maintained
3798 F:      drivers/net/wan/dscc4.c
3799
3800 DT3155 MEDIA DRIVER
3801 M:      Hans Verkuil <hverkuil@xs4all.nl>
3802 L:      linux-media@vger.kernel.org
3803 T:      git git://linuxtv.org/media_tree.git
3804 W:      https://linuxtv.org
3805 S:      Odd Fixes
3806 F:      drivers/media/pci/dt3155/
3807
3808 DVB_USB_AF9015 MEDIA DRIVER
3809 M:      Antti Palosaari <crope@iki.fi>
3810 L:      linux-media@vger.kernel.org
3811 W:      https://linuxtv.org
3812 W:      http://palosaari.fi/linux/
3813 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3814 T:      git git://linuxtv.org/anttip/media_tree.git
3815 S:      Maintained
3816 F:      drivers/media/usb/dvb-usb-v2/af9015*
3817
3818 DVB_USB_AF9035 MEDIA DRIVER
3819 M:      Antti Palosaari <crope@iki.fi>
3820 L:      linux-media@vger.kernel.org
3821 W:      https://linuxtv.org
3822 W:      http://palosaari.fi/linux/
3823 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3824 T:      git git://linuxtv.org/anttip/media_tree.git
3825 S:      Maintained
3826 F:      drivers/media/usb/dvb-usb-v2/af9035*
3827
3828 DVB_USB_ANYSEE MEDIA DRIVER
3829 M:      Antti Palosaari <crope@iki.fi>
3830 L:      linux-media@vger.kernel.org
3831 W:      https://linuxtv.org
3832 W:      http://palosaari.fi/linux/
3833 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3834 T:      git git://linuxtv.org/anttip/media_tree.git
3835 S:      Maintained
3836 F:      drivers/media/usb/dvb-usb-v2/anysee*
3837
3838 DVB_USB_AU6610 MEDIA DRIVER
3839 M:      Antti Palosaari <crope@iki.fi>
3840 L:      linux-media@vger.kernel.org
3841 W:      https://linuxtv.org
3842 W:      http://palosaari.fi/linux/
3843 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3844 T:      git git://linuxtv.org/anttip/media_tree.git
3845 S:      Maintained
3846 F:      drivers/media/usb/dvb-usb-v2/au6610*
3847
3848 DVB_USB_CE6230 MEDIA DRIVER
3849 M:      Antti Palosaari <crope@iki.fi>
3850 L:      linux-media@vger.kernel.org
3851 W:      https://linuxtv.org
3852 W:      http://palosaari.fi/linux/
3853 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3854 T:      git git://linuxtv.org/anttip/media_tree.git
3855 S:      Maintained
3856 F:      drivers/media/usb/dvb-usb-v2/ce6230*
3857
3858 DVB_USB_CXUSB MEDIA DRIVER
3859 M:      Michael Krufky <mkrufky@linuxtv.org>
3860 L:      linux-media@vger.kernel.org
3861 W:      https://linuxtv.org
3862 W:      http://github.com/mkrufky
3863 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3864 T:      git git://linuxtv.org/media_tree.git
3865 S:      Maintained
3866 F:      drivers/media/usb/dvb-usb/cxusb*
3867
3868 DVB_USB_EC168 MEDIA DRIVER
3869 M:      Antti Palosaari <crope@iki.fi>
3870 L:      linux-media@vger.kernel.org
3871 W:      https://linuxtv.org
3872 W:      http://palosaari.fi/linux/
3873 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3874 T:      git git://linuxtv.org/anttip/media_tree.git
3875 S:      Maintained
3876 F:      drivers/media/usb/dvb-usb-v2/ec168*
3877
3878 DVB_USB_GL861 MEDIA DRIVER
3879 M:      Antti Palosaari <crope@iki.fi>
3880 L:      linux-media@vger.kernel.org
3881 W:      https://linuxtv.org
3882 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3883 T:      git git://linuxtv.org/anttip/media_tree.git
3884 S:      Maintained
3885 F:      drivers/media/usb/dvb-usb-v2/gl861*
3886
3887 DVB_USB_MXL111SF MEDIA DRIVER
3888 M:      Michael Krufky <mkrufky@linuxtv.org>
3889 L:      linux-media@vger.kernel.org
3890 W:      https://linuxtv.org
3891 W:      http://github.com/mkrufky
3892 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3893 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
3894 S:      Maintained
3895 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
3896
3897 DVB_USB_RTL28XXU MEDIA DRIVER
3898 M:      Antti Palosaari <crope@iki.fi>
3899 L:      linux-media@vger.kernel.org
3900 W:      https://linuxtv.org
3901 W:      http://palosaari.fi/linux/
3902 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3903 T:      git git://linuxtv.org/anttip/media_tree.git
3904 S:      Maintained
3905 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
3906
3907 DVB_USB_V2 MEDIA DRIVER
3908 M:      Antti Palosaari <crope@iki.fi>
3909 L:      linux-media@vger.kernel.org
3910 W:      https://linuxtv.org
3911 W:      http://palosaari.fi/linux/
3912 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3913 T:      git git://linuxtv.org/anttip/media_tree.git
3914 S:      Maintained
3915 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
3916 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
3917
3918 DYNAMIC DEBUG
3919 M:      Jason Baron <jbaron@akamai.com>
3920 S:      Maintained
3921 F:      lib/dynamic_debug.c
3922 F:      include/linux/dynamic_debug.h
3923
3924 DZ DECSTATION DZ11 SERIAL DRIVER
3925 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3926 S:      Maintained
3927 F:      drivers/tty/serial/dz.*
3928
3929 E3X0 POWER BUTTON DRIVER
3930 M:      Moritz Fischer <moritz.fischer@ettus.com>
3931 L:      usrp-users@lists.ettus.com
3932 W:      http://www.ettus.com
3933 S:      Supported
3934 F:      drivers/input/misc/e3x0-button.c
3935 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
3936
3937 E4000 MEDIA DRIVER
3938 M:      Antti Palosaari <crope@iki.fi>
3939 L:      linux-media@vger.kernel.org
3940 W:      https://linuxtv.org
3941 W:      http://palosaari.fi/linux/
3942 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3943 T:      git git://linuxtv.org/anttip/media_tree.git
3944 S:      Maintained
3945 F:      drivers/media/tuners/e4000*
3946
3947 EATA ISA/EISA/PCI SCSI DRIVER
3948 M:      Dario Ballabio <ballabio_dario@emc.com>
3949 L:      linux-scsi@vger.kernel.org
3950 S:      Maintained
3951 F:      drivers/scsi/eata.c
3952
3953 EC100 MEDIA DRIVER
3954 M:      Antti Palosaari <crope@iki.fi>
3955 L:      linux-media@vger.kernel.org
3956 W:      https://linuxtv.org
3957 W:      http://palosaari.fi/linux/
3958 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3959 T:      git git://linuxtv.org/anttip/media_tree.git
3960 S:      Maintained
3961 F:      drivers/media/dvb-frontends/ec100*
3962
3963 ECRYPT FILE SYSTEM
3964 M:      Tyler Hicks <tyhicks@canonical.com>
3965 L:      ecryptfs@vger.kernel.org
3966 W:      http://ecryptfs.org
3967 W:      https://launchpad.net/ecryptfs
3968 S:      Supported
3969 F:      Documentation/filesystems/ecryptfs.txt
3970 F:      fs/ecryptfs/
3971
3972 EDAC-CORE
3973 M:      Doug Thompson <dougthompson@xmission.com>
3974 M:      Borislav Petkov <bp@alien8.de>
3975 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3976 L:      linux-edac@vger.kernel.org
3977 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git for-next
3978 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-edac.git linux_next
3979 S:      Supported
3980 F:      Documentation/edac.txt
3981 F:      drivers/edac/
3982 F:      include/linux/edac.h
3983
3984 EDAC-AMD64
3985 M:      Doug Thompson <dougthompson@xmission.com>
3986 M:      Borislav Petkov <bp@alien8.de>
3987 L:      linux-edac@vger.kernel.org
3988 S:      Maintained
3989 F:      drivers/edac/amd64_edac*
3990
3991 EDAC-CALXEDA
3992 M:      Doug Thompson <dougthompson@xmission.com>
3993 M:      Robert Richter <rric@kernel.org>
3994 L:      linux-edac@vger.kernel.org
3995 S:      Maintained
3996 F:      drivers/edac/highbank*
3997
3998 EDAC-CAVIUM
3999 M:      Ralf Baechle <ralf@linux-mips.org>
4000 M:      David Daney <david.daney@cavium.com>
4001 L:      linux-edac@vger.kernel.org
4002 L:      linux-mips@linux-mips.org
4003 S:      Supported
4004 F:      drivers/edac/octeon_edac*
4005
4006 EDAC-E752X
4007 M:      Mark Gross <mark.gross@intel.com>
4008 M:      Doug Thompson <dougthompson@xmission.com>
4009 L:      linux-edac@vger.kernel.org
4010 S:      Maintained
4011 F:      drivers/edac/e752x_edac.c
4012
4013 EDAC-E7XXX
4014 M:      Doug Thompson <dougthompson@xmission.com>
4015 L:      linux-edac@vger.kernel.org
4016 S:      Maintained
4017 F:      drivers/edac/e7xxx_edac.c
4018
4019 EDAC-GHES
4020 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4021 L:      linux-edac@vger.kernel.org
4022 S:      Maintained
4023 F:      drivers/edac/ghes_edac.c
4024
4025 EDAC-I82443BXGX
4026 M:      Tim Small <tim@buttersideup.com>
4027 L:      linux-edac@vger.kernel.org
4028 S:      Maintained
4029 F:      drivers/edac/i82443bxgx_edac.c
4030
4031 EDAC-I3000
4032 M:      Jason Uhlenkott <juhlenko@akamai.com>
4033 L:      linux-edac@vger.kernel.org
4034 S:      Maintained
4035 F:      drivers/edac/i3000_edac.c
4036
4037 EDAC-I5000
4038 M:      Doug Thompson <dougthompson@xmission.com>
4039 L:      linux-edac@vger.kernel.org
4040 S:      Maintained
4041 F:      drivers/edac/i5000_edac.c
4042
4043 EDAC-I5400
4044 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4045 L:      linux-edac@vger.kernel.org
4046 S:      Maintained
4047 F:      drivers/edac/i5400_edac.c
4048
4049 EDAC-I7300
4050 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4051 L:      linux-edac@vger.kernel.org
4052 S:      Maintained
4053 F:      drivers/edac/i7300_edac.c
4054
4055 EDAC-I7CORE
4056 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4057 L:      linux-edac@vger.kernel.org
4058 S:      Maintained
4059 F:      drivers/edac/i7core_edac.c
4060
4061 EDAC-I82975X
4062 M:      Ranganathan Desikan <ravi@jetztechnologies.com>
4063 M:      "Arvind R." <arvino55@gmail.com>
4064 L:      linux-edac@vger.kernel.org
4065 S:      Maintained
4066 F:      drivers/edac/i82975x_edac.c
4067
4068 EDAC-IE31200
4069 M:      Jason Baron <jbaron@akamai.com>
4070 L:      linux-edac@vger.kernel.org
4071 S:      Maintained
4072 F:      drivers/edac/ie31200_edac.c
4073
4074 EDAC-MPC85XX
4075 M:      Johannes Thumshirn <morbidrsa@gmail.com>
4076 L:      linux-edac@vger.kernel.org
4077 S:      Maintained
4078 F:      drivers/edac/mpc85xx_edac.[ch]
4079
4080 EDAC-PASEMI
4081 M:      Egor Martovetsky <egor@pasemi.com>
4082 L:      linux-edac@vger.kernel.org
4083 S:      Maintained
4084 F:      drivers/edac/pasemi_edac.c
4085
4086 EDAC-R82600
4087 M:      Tim Small <tim@buttersideup.com>
4088 L:      linux-edac@vger.kernel.org
4089 S:      Maintained
4090 F:      drivers/edac/r82600_edac.c
4091
4092 EDAC-SBRIDGE
4093 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4094 L:      linux-edac@vger.kernel.org
4095 S:      Maintained
4096 F:      drivers/edac/sb_edac.c
4097
4098 EDAC-XGENE
4099 APPLIED MICRO (APM) X-GENE SOC EDAC
4100 M:     Loc Ho <lho@apm.com>
4101 S:     Supported
4102 F:     drivers/edac/xgene_edac.c
4103 F:     Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
4104
4105 EDIROL UA-101/UA-1000 DRIVER
4106 M:      Clemens Ladisch <clemens@ladisch.de>
4107 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4108 T:      git git://git.alsa-project.org/alsa-kernel.git
4109 S:      Maintained
4110 F:      sound/usb/misc/ua101.c
4111
4112 EXTENSIBLE FIRMWARE INTERFACE (EFI)
4113 M:      Matt Fleming <matt@codeblueprint.co.uk>
4114 L:      linux-efi@vger.kernel.org
4115 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4116 S:      Maintained
4117 F:      Documentation/efi-stub.txt
4118 F:      arch/ia64/kernel/efi.c
4119 F:      arch/x86/boot/compressed/eboot.[ch]
4120 F:      arch/x86/include/asm/efi.h
4121 F:      arch/x86/platform/efi/*
4122 F:      drivers/firmware/efi/*
4123 F:      include/linux/efi*.h
4124
4125 EFI VARIABLE FILESYSTEM
4126 M:      Matthew Garrett <matthew.garrett@nebula.com>
4127 M:      Jeremy Kerr <jk@ozlabs.org>
4128 M:      Matt Fleming <matt@codeblueprint.co.uk>
4129 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4130 L:      linux-efi@vger.kernel.org
4131 S:      Maintained
4132 F:      fs/efivarfs/
4133
4134 EFIFB FRAMEBUFFER DRIVER
4135 L:      linux-fbdev@vger.kernel.org
4136 M:      Peter Jones <pjones@redhat.com>
4137 S:      Maintained
4138 F:      drivers/video/fbdev/efifb.c
4139
4140 EFS FILESYSTEM
4141 W:      http://aeschi.ch.eu.org/efs/
4142 S:      Orphan
4143 F:      fs/efs/
4144
4145 EHCA (IBM GX bus InfiniBand adapter) DRIVER
4146 M:      Hoang-Nam Nguyen <hnguyen@de.ibm.com>
4147 M:      Christoph Raisch <raisch@de.ibm.com>
4148 L:      linux-rdma@vger.kernel.org
4149 S:      Supported
4150 F:      drivers/infiniband/hw/ehca/
4151
4152 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
4153 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
4154 L:      netdev@vger.kernel.org
4155 S:      Maintained
4156 F:      drivers/net/ethernet/ibm/ehea/
4157
4158 EM28XX VIDEO4LINUX DRIVER
4159 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4160 L:      linux-media@vger.kernel.org
4161 W:      https://linuxtv.org
4162 T:      git git://linuxtv.org/media_tree.git
4163 S:      Maintained
4164 F:      drivers/media/usb/em28xx/
4165
4166 EMBEDDED LINUX
4167 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
4168 M:      Matt Mackall <mpm@selenic.com>
4169 M:      David Woodhouse <dwmw2@infradead.org>
4170 L:      linux-embedded@vger.kernel.org
4171 S:      Maintained
4172
4173 EMULEX/AVAGO LPFC FC/FCOE SCSI DRIVER
4174 M:      James Smart <james.smart@avagotech.com>
4175 M:      Dick Kennedy <dick.kennedy@avagotech.com>
4176 L:      linux-scsi@vger.kernel.org
4177 W:      http://www.avagotech.com
4178 S:      Supported
4179 F:      drivers/scsi/lpfc/
4180
4181 ENE CB710 FLASH CARD READER DRIVER
4182 M:      MichaÅ‚ MirosÅ‚aw <mirq-linux@rere.qmqm.pl>
4183 S:      Maintained
4184 F:      drivers/misc/cb710/
4185 F:      drivers/mmc/host/cb710-mmc.*
4186 F:      include/linux/cb710.h
4187
4188 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
4189 M:      Maxim Levitsky <maximlevitsky@gmail.com>
4190 S:      Maintained
4191 F:      drivers/media/rc/ene_ir.*
4192
4193 ENHANCED ERROR HANDLING (EEH)
4194 M:      Gavin Shan <shangw@linux.vnet.ibm.com>
4195 L:      linuxppc-dev@lists.ozlabs.org
4196 S:      Supported
4197 F:      Documentation/powerpc/eeh-pci-error-recovery.txt
4198 F:      arch/powerpc/kernel/eeh*.c
4199
4200 EPSON S1D13XXX FRAMEBUFFER DRIVER
4201 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
4202 S:      Maintained
4203 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
4204 F:      drivers/video/fbdev/s1d13xxxfb.c
4205 F:      include/video/s1d13xxxfb.h
4206
4207 ET131X NETWORK DRIVER
4208 M:      Mark Einon <mark.einon@gmail.com>
4209 S:      Odd Fixes
4210 F:      drivers/net/ethernet/agere/
4211
4212 ETHERNET BRIDGE
4213 M:      Stephen Hemminger <stephen@networkplumber.org>
4214 L:      bridge@lists.linux-foundation.org
4215 L:      netdev@vger.kernel.org
4216 W:      http://www.linuxfoundation.org/en/Net:Bridge
4217 S:      Maintained
4218 F:      include/linux/netfilter_bridge/
4219 F:      net/bridge/
4220
4221 ETHERNET PHY LIBRARY
4222 M:      Florian Fainelli <f.fainelli@gmail.com>
4223 L:      netdev@vger.kernel.org
4224 S:      Maintained
4225 F:      include/linux/phy.h
4226 F:      include/linux/phy_fixed.h
4227 F:      drivers/net/phy/
4228 F:      Documentation/networking/phy.txt
4229 F:      drivers/of/of_mdio.c
4230 F:      drivers/of/of_net.c
4231
4232 EXT2 FILE SYSTEM
4233 M:      Jan Kara <jack@suse.com>
4234 L:      linux-ext4@vger.kernel.org
4235 S:      Maintained
4236 F:      Documentation/filesystems/ext2.txt
4237 F:      fs/ext2/
4238 F:      include/linux/ext2*
4239
4240 EXT4 FILE SYSTEM
4241 M:      "Theodore Ts'o" <tytso@mit.edu>
4242 M:      Andreas Dilger <adilger.kernel@dilger.ca>
4243 L:      linux-ext4@vger.kernel.org
4244 W:      http://ext4.wiki.kernel.org
4245 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
4246 S:      Maintained
4247 F:      Documentation/filesystems/ext4.txt
4248 F:      fs/ext4/
4249
4250 Extended Verification Module (EVM)
4251 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
4252 L:      linux-ima-devel@lists.sourceforge.net
4253 L:      linux-security-module@vger.kernel.org
4254 S:      Supported
4255 F:      security/integrity/evm/
4256
4257 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
4258 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
4259 M:      Chanwoo Choi <cw00.choi@samsung.com>
4260 L:      linux-kernel@vger.kernel.org
4261 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
4262 S:      Maintained
4263 F:      drivers/extcon/
4264 F:      include/linux/extcon/
4265 F:      include/linux/extcon.h
4266 F:      Documentation/extcon/
4267 F:      Documentation/devicetree/bindings/extcon/
4268
4269 EXYNOS DP DRIVER
4270 M:      Jingoo Han <jingoohan1@gmail.com>
4271 L:      dri-devel@lists.freedesktop.org
4272 S:      Maintained
4273 F:      drivers/gpu/drm/exynos/exynos_dp*
4274
4275 EXYNOS MIPI DISPLAY DRIVERS
4276 M:      Inki Dae <inki.dae@samsung.com>
4277 M:      Donghwa Lee <dh09.lee@samsung.com>
4278 M:      Kyungmin Park <kyungmin.park@samsung.com>
4279 L:      linux-fbdev@vger.kernel.org
4280 S:      Maintained
4281 F:      drivers/video/fbdev/exynos/exynos_mipi*
4282 F:      include/video/exynos_mipi*
4283
4284 F71805F HARDWARE MONITORING DRIVER
4285 M:      Jean Delvare <jdelvare@suse.com>
4286 L:      lm-sensors@lm-sensors.org
4287 S:      Maintained
4288 F:      Documentation/hwmon/f71805f
4289 F:      drivers/hwmon/f71805f.c
4290
4291 FC0011 TUNER DRIVER
4292 M:      Michael Buesch <m@bues.ch>
4293 L:      linux-media@vger.kernel.org
4294 S:      Maintained
4295 F:      drivers/media/tuners/fc0011.h
4296 F:      drivers/media/tuners/fc0011.c
4297
4298 FC2580 MEDIA DRIVER
4299 M:      Antti Palosaari <crope@iki.fi>
4300 L:      linux-media@vger.kernel.org
4301 W:      https://linuxtv.org
4302 W:      http://palosaari.fi/linux/
4303 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4304 T:      git git://linuxtv.org/anttip/media_tree.git
4305 S:      Maintained
4306 F:      drivers/media/tuners/fc2580*
4307
4308 FANOTIFY
4309 M:      Eric Paris <eparis@redhat.com>
4310 S:      Maintained
4311 F:      fs/notify/fanotify/
4312 F:      include/linux/fanotify.h
4313 F:      include/uapi/linux/fanotify.h
4314
4315 FARSYNC SYNCHRONOUS DRIVER
4316 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
4317 W:      http://www.farsite.co.uk/
4318 S:      Supported
4319 F:      drivers/net/wan/farsync.*
4320
4321 FAULT INJECTION SUPPORT
4322 M:      Akinobu Mita <akinobu.mita@gmail.com>
4323 S:      Supported
4324 F:      Documentation/fault-injection/
4325 F:      lib/fault-inject.c
4326
4327 FBTFT Framebuffer drivers
4328 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
4329 M:      Noralf Trønnes <noralf@tronnes.org>
4330 S:      Maintained
4331 F:      drivers/staging/fbtft/
4332
4333 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
4334 M:      Vasu Dev <vasu.dev@intel.com>
4335 L:      fcoe-devel@open-fcoe.org
4336 W:      www.Open-FCoE.org
4337 S:      Supported
4338 F:      drivers/scsi/libfc/
4339 F:      drivers/scsi/fcoe/
4340 F:      include/scsi/fc/
4341 F:      include/scsi/libfc.h
4342 F:      include/scsi/libfcoe.h
4343 F:      include/uapi/scsi/fc/
4344
4345 FILE LOCKING (flock() and fcntl()/lockf())
4346 M:      Jeff Layton <jlayton@poochiereds.net>
4347 M:      "J. Bruce Fields" <bfields@fieldses.org>
4348 L:      linux-fsdevel@vger.kernel.org
4349 S:      Maintained
4350 F:      include/linux/fcntl.h
4351 F:      include/linux/fs.h
4352 F:      include/uapi/linux/fcntl.h
4353 F:      include/uapi/linux/fs.h
4354 F:      fs/fcntl.c
4355 F:      fs/locks.c
4356
4357 FILESYSTEMS (VFS and infrastructure)
4358 M:      Alexander Viro <viro@zeniv.linux.org.uk>
4359 L:      linux-fsdevel@vger.kernel.org
4360 S:      Maintained
4361 F:      fs/*
4362
4363 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
4364 M:      Riku Voipio <riku.voipio@iki.fi>
4365 L:      lm-sensors@lm-sensors.org
4366 S:      Maintained
4367 F:      drivers/hwmon/f75375s.c
4368 F:      include/linux/f75375s.h
4369
4370 FIREWIRE AUDIO DRIVERS
4371 M:      Clemens Ladisch <clemens@ladisch.de>
4372 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4373 T:      git git://git.alsa-project.org/alsa-kernel.git
4374 S:      Maintained
4375 F:      sound/firewire/
4376
4377 FIREWIRE MEDIA DRIVERS (firedtv)
4378 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4379 L:      linux-media@vger.kernel.org
4380 L:      linux1394-devel@lists.sourceforge.net
4381 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
4382 S:      Maintained
4383 F:      drivers/media/firewire/
4384
4385 FIREWIRE SBP-2 TARGET
4386 M:      Chris Boot <bootc@bootc.net>
4387 L:      linux-scsi@vger.kernel.org
4388 L:      target-devel@vger.kernel.org
4389 L:      linux1394-devel@lists.sourceforge.net
4390 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
4391 S:      Maintained
4392 F:      drivers/target/sbp/
4393
4394 FIREWIRE SUBSYSTEM
4395 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4396 L:      linux1394-devel@lists.sourceforge.net
4397 W:      http://ieee1394.wiki.kernel.org/
4398 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
4399 S:      Maintained
4400 F:      drivers/firewire/
4401 F:      include/linux/firewire.h
4402 F:      include/uapi/linux/firewire*.h
4403 F:      tools/firewire/
4404
4405 FIRMWARE LOADER (request_firmware)
4406 M:      Ming Lei <ming.lei@canonical.com>
4407 L:      linux-kernel@vger.kernel.org
4408 S:      Maintained
4409 F:      Documentation/firmware_class/
4410 F:      drivers/base/firmware*.c
4411 F:      include/linux/firmware.h
4412
4413 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
4414 M:      Joshua Morris <josh.h.morris@us.ibm.com>
4415 M:      Philip Kelleher <pjk1939@linux.vnet.ibm.com>
4416 S:      Maintained
4417 F:      drivers/block/rsxx/
4418
4419 FLOPPY DRIVER
4420 M:      Jiri Kosina <jikos@kernel.org>
4421 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
4422 S:      Odd fixes
4423 F:      drivers/block/floppy.c
4424
4425 FMC SUBSYSTEM
4426 M:      Alessandro Rubini <rubini@gnudd.com>
4427 W:      http://www.ohwr.org/projects/fmc-bus
4428 S:      Supported
4429 F:      drivers/fmc/
4430 F:      include/linux/fmc*.h
4431 F:      include/linux/ipmi-fru.h
4432 K:      fmc_d.*register
4433
4434 FPGA MANAGER FRAMEWORK
4435 M:      Alan Tull <atull@opensource.altera.com>
4436 R:      Moritz Fischer <moritz.fischer@ettus.com>
4437 S:      Maintained
4438 F:      drivers/fpga/
4439 F:      include/linux/fpga/fpga-mgr.h
4440 W:      http://www.rocketboards.org
4441
4442 FPU EMULATOR
4443 M:      Bill Metzenthen <billm@melbpc.org.au>
4444 W:      http://floatingpoint.sourceforge.net/emulator/index.html
4445 S:      Maintained
4446 F:      arch/x86/math-emu/
4447
4448 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
4449 L:      netdev@vger.kernel.org
4450 S:      Orphan
4451 F:      drivers/net/wan/dlci.c
4452 F:      drivers/net/wan/sdla.c
4453
4454 FRAMEBUFFER LAYER
4455 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
4456 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
4457 L:      linux-fbdev@vger.kernel.org
4458 W:      http://linux-fbdev.sourceforge.net/
4459 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
4460 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git
4461 S:      Maintained
4462 F:      Documentation/fb/
4463 F:      drivers/video/
4464 F:      include/video/
4465 F:      include/linux/fb.h
4466 F:      include/uapi/video/
4467 F:      include/uapi/linux/fb.h
4468
4469 FREESCALE DIU FRAMEBUFFER DRIVER
4470 M:      Timur Tabi <timur@tabi.org>
4471 L:      linux-fbdev@vger.kernel.org
4472 S:      Maintained
4473 F:      drivers/video/fbdev/fsl-diu-fb.*
4474
4475 FREESCALE DMA DRIVER
4476 M:      Li Yang <leoli@freescale.com>
4477 M:      Zhang Wei <zw@zh-kernel.org>
4478 L:      linuxppc-dev@lists.ozlabs.org
4479 S:      Maintained
4480 F:      drivers/dma/fsldma.*
4481
4482 FREESCALE I2C CPM DRIVER
4483 M:      Jochen Friedrich <jochen@scram.de>
4484 L:      linuxppc-dev@lists.ozlabs.org
4485 L:      linux-i2c@vger.kernel.org
4486 S:      Maintained
4487 F:      drivers/i2c/busses/i2c-cpm.c
4488
4489 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
4490 M:      Sascha Hauer <kernel@pengutronix.de>
4491 L:      linux-fbdev@vger.kernel.org
4492 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4493 S:      Maintained
4494 F:      include/linux/platform_data/video-imxfb.h
4495 F:      drivers/video/fbdev/imxfb.c
4496
4497 FREESCALE QUAD SPI DRIVER
4498 M:      Han Xu <han.xu@freescale.com>
4499 L:      linux-mtd@lists.infradead.org
4500 S:      Maintained
4501 F:      drivers/mtd/spi-nor/fsl-quadspi.c
4502
4503 FREESCALE SOC FS_ENET DRIVER
4504 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
4505 M:      Vitaly Bordug <vbordug@ru.mvista.com>
4506 L:      linuxppc-dev@lists.ozlabs.org
4507 L:      netdev@vger.kernel.org
4508 S:      Maintained
4509 F:      drivers/net/ethernet/freescale/fs_enet/
4510 F:      include/linux/fs_enet_pd.h
4511
4512 FREESCALE QUICC ENGINE LIBRARY
4513 L:      linuxppc-dev@lists.ozlabs.org
4514 S:      Orphan
4515 F:      drivers/soc/fsl/qe/
4516 F:      include/soc/fsl/*qe*.h
4517 F:      include/soc/fsl/*ucc*.h
4518
4519 FREESCALE USB PERIPHERAL DRIVERS
4520 M:      Li Yang <leoli@freescale.com>
4521 L:      linux-usb@vger.kernel.org
4522 L:      linuxppc-dev@lists.ozlabs.org
4523 S:      Maintained
4524 F:      drivers/usb/gadget/udc/fsl*
4525
4526 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
4527 M:      Li Yang <leoli@freescale.com>
4528 L:      netdev@vger.kernel.org
4529 L:      linuxppc-dev@lists.ozlabs.org
4530 S:      Maintained
4531 F:      drivers/net/ethernet/freescale/ucc_geth*
4532
4533 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
4534 M:      Claudiu Manoil <claudiu.manoil@freescale.com>
4535 L:      netdev@vger.kernel.org
4536 S:      Maintained
4537 F:      drivers/net/ethernet/freescale/gianfar*
4538 X:      drivers/net/ethernet/freescale/gianfar_ptp.c
4539 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
4540
4541 FREESCALE QUICC ENGINE UCC UART DRIVER
4542 M:      Timur Tabi <timur@tabi.org>
4543 L:      linuxppc-dev@lists.ozlabs.org
4544 S:      Maintained
4545 F:      drivers/tty/serial/ucc_uart.c
4546
4547 FREESCALE SOC SOUND DRIVERS
4548 M:      Timur Tabi <timur@tabi.org>
4549 M:      Nicolin Chen <nicoleotsuka@gmail.com>
4550 M:      Xiubo Li <Xiubo.Lee@gmail.com>
4551 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4552 L:      linuxppc-dev@lists.ozlabs.org
4553 S:      Maintained
4554 F:      sound/soc/fsl/fsl*
4555 F:      sound/soc/fsl/imx*
4556 F:      sound/soc/fsl/mpc8610_hpcd.c
4557
4558 FREESCALE QORIQ MANAGEMENT COMPLEX DRIVER
4559 M:      "J. German Rivera" <German.Rivera@freescale.com>
4560 L:      linux-kernel@vger.kernel.org
4561 S:      Maintained
4562 F:      drivers/staging/fsl-mc/
4563
4564 FREEVXFS FILESYSTEM
4565 M:      Christoph Hellwig <hch@infradead.org>
4566 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
4567 S:      Maintained
4568 F:      fs/freevxfs/
4569
4570 FREEZER
4571 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4572 M:      Pavel Machek <pavel@ucw.cz>
4573 L:      linux-pm@vger.kernel.org
4574 S:      Supported
4575 F:      Documentation/power/freezing-of-tasks.txt
4576 F:      include/linux/freezer.h
4577 F:      kernel/freezer.c
4578
4579 FRONTSWAP API
4580 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4581 L:      linux-kernel@vger.kernel.org
4582 S:      Maintained
4583 F:      mm/frontswap.c
4584 F:      include/linux/frontswap.h
4585
4586 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
4587 M:      David Howells <dhowells@redhat.com>
4588 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
4589 S:      Supported
4590 F:      Documentation/filesystems/caching/
4591 F:      fs/fscache/
4592 F:      include/linux/fscache*.h
4593
4594 F2FS FILE SYSTEM
4595 M:      Jaegeuk Kim <jaegeuk@kernel.org>
4596 M:      Changman Lee <cm224.lee@samsung.com>
4597 R:      Chao Yu <chao2.yu@samsung.com>
4598 L:      linux-f2fs-devel@lists.sourceforge.net
4599 W:      http://en.wikipedia.org/wiki/F2FS
4600 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
4601 S:      Maintained
4602 F:      Documentation/filesystems/f2fs.txt
4603 F:      Documentation/ABI/testing/sysfs-fs-f2fs
4604 F:      fs/f2fs/
4605 F:      include/linux/f2fs_fs.h
4606 F:      include/trace/events/f2fs.h
4607
4608 FUJITSU FR-V (FRV) PORT
4609 S:      Orphan
4610 F:      arch/frv/
4611
4612 FUJITSU LAPTOP EXTRAS
4613 M:      Jonathan Woithe <jwoithe@just42.net>
4614 L:      platform-driver-x86@vger.kernel.org
4615 S:      Maintained
4616 F:      drivers/platform/x86/fujitsu-laptop.c
4617
4618 FUJITSU M-5MO LS CAMERA ISP DRIVER
4619 M:      Kyungmin Park <kyungmin.park@samsung.com>
4620 M:      Heungjun Kim <riverful.kim@samsung.com>
4621 L:      linux-media@vger.kernel.org
4622 S:      Maintained
4623 F:      drivers/media/i2c/m5mols/
4624 F:      include/media/i2c/m5mols.h
4625
4626 FUJITSU TABLET EXTRAS
4627 M:      Robert Gerlach <khnz@gmx.de>
4628 L:      platform-driver-x86@vger.kernel.org
4629 S:      Maintained
4630 F:      drivers/platform/x86/fujitsu-tablet.c
4631
4632 FUSE: FILESYSTEM IN USERSPACE
4633 M:      Miklos Szeredi <miklos@szeredi.hu>
4634 L:      fuse-devel@lists.sourceforge.net
4635 W:      http://fuse.sourceforge.net/
4636 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
4637 S:      Maintained
4638 F:      fs/fuse/
4639 F:      include/uapi/linux/fuse.h
4640 F:      Documentation/filesystems/fuse.txt
4641
4642 FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
4643 M:      Rik Faith <faith@cs.unc.edu>
4644 L:      linux-scsi@vger.kernel.org
4645 S:      Odd Fixes (e.g., new signatures)
4646 F:      drivers/scsi/fdomain.*
4647
4648 GCOV BASED KERNEL PROFILING
4649 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
4650 S:      Maintained
4651 F:      kernel/gcov/
4652 F:      Documentation/gcov.txt
4653
4654 GDT SCSI DISK ARRAY CONTROLLER DRIVER
4655 M:      Achim Leubner <achim_leubner@adaptec.com>
4656 L:      linux-scsi@vger.kernel.org
4657 W:      http://www.icp-vortex.com/
4658 S:      Supported
4659 F:      drivers/scsi/gdt*
4660
4661 GDB KERNEL DEBUGGING HELPER SCRIPTS
4662 M:      Jan Kiszka <jan.kiszka@siemens.com>
4663 S:      Supported
4664 F:      scripts/gdb/
4665
4666 GEMTEK FM RADIO RECEIVER DRIVER
4667 M:      Hans Verkuil <hverkuil@xs4all.nl>
4668 L:      linux-media@vger.kernel.org
4669 T:      git git://linuxtv.org/media_tree.git
4670 W:      https://linuxtv.org
4671 S:      Maintained
4672 F:      drivers/media/radio/radio-gemtek*
4673
4674 GENERIC GPIO I2C DRIVER
4675 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
4676 S:      Supported
4677 F:      drivers/i2c/busses/i2c-gpio.c
4678 F:      include/linux/i2c-gpio.h
4679
4680 GENERIC GPIO I2C MULTIPLEXER DRIVER
4681 M:      Peter Korsgaard <peter.korsgaard@barco.com>
4682 L:      linux-i2c@vger.kernel.org
4683 S:      Supported
4684 F:      drivers/i2c/muxes/i2c-mux-gpio.c
4685 F:      include/linux/i2c-mux-gpio.h
4686 F:      Documentation/i2c/muxes/i2c-mux-gpio
4687
4688 GENERIC HDLC (WAN) DRIVERS
4689 M:      Krzysztof Halasa <khc@pm.waw.pl>
4690 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
4691 S:      Maintained
4692 F:      drivers/net/wan/c101.c
4693 F:      drivers/net/wan/hd6457*
4694 F:      drivers/net/wan/hdlc*
4695 F:      drivers/net/wan/n2.c
4696 F:      drivers/net/wan/pc300too.c
4697 F:      drivers/net/wan/pci200syn.c
4698 F:      drivers/net/wan/wanxl*
4699
4700 GENERIC INCLUDE/ASM HEADER FILES
4701 M:      Arnd Bergmann <arnd@arndb.de>
4702 L:      linux-arch@vger.kernel.org
4703 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
4704 S:      Maintained
4705 F:      include/asm-generic/
4706 F:      include/uapi/asm-generic/
4707
4708 GENERIC PHY FRAMEWORK
4709 M:      Kishon Vijay Abraham I <kishon@ti.com>
4710 L:      linux-kernel@vger.kernel.org
4711 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
4712 S:      Supported
4713 F:      drivers/phy/
4714 F:      include/linux/phy/
4715
4716 GENERIC PM DOMAINS
4717 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4718 M:      Kevin Hilman <khilman@kernel.org>
4719 M:      Ulf Hansson <ulf.hansson@linaro.org>
4720 L:      linux-pm@vger.kernel.org
4721 S:      Supported
4722 F:      drivers/base/power/domain*.c
4723 F:      include/linux/pm_domain.h
4724
4725 GENERIC UIO DRIVER FOR PCI DEVICES
4726 M:      "Michael S. Tsirkin" <mst@redhat.com>
4727 L:      kvm@vger.kernel.org
4728 S:      Supported
4729 F:      drivers/uio/uio_pci_generic.c
4730
4731 GET_MAINTAINER SCRIPT
4732 M:      Joe Perches <joe@perches.com>
4733 S:      Maintained
4734 F:      scripts/get_maintainer.pl
4735
4736 GFS2 FILE SYSTEM
4737 M:      Steven Whitehouse <swhiteho@redhat.com>
4738 M:      Bob Peterson <rpeterso@redhat.com>
4739 L:      cluster-devel@redhat.com
4740 W:      http://sources.redhat.com/cluster/
4741 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
4742 S:      Supported
4743 F:      Documentation/filesystems/gfs2*.txt
4744 F:      fs/gfs2/
4745 F:      include/uapi/linux/gfs2_ondisk.h
4746
4747 GIGASET ISDN DRIVERS
4748 M:      Paul Bolle <pebolle@tiscali.nl>
4749 L:      gigaset307x-common@lists.sourceforge.net
4750 W:      http://gigaset307x.sourceforge.net/
4751 S:      Odd Fixes
4752 F:      Documentation/isdn/README.gigaset
4753 F:      drivers/isdn/gigaset/
4754 F:      include/uapi/linux/gigaset_dev.h
4755
4756 GO7007 MPEG CODEC
4757 M:      Hans Verkuil <hans.verkuil@cisco.com>
4758 L:      linux-media@vger.kernel.org
4759 S:      Maintained
4760 F:      drivers/media/usb/go7007/
4761
4762 GOODIX TOUCHSCREEN
4763 M:      Bastien Nocera <hadess@hadess.net>
4764 L:      linux-input@vger.kernel.org
4765 S:      Maintained
4766 F:      drivers/input/touchscreen/goodix.c
4767
4768 GPIO SUBSYSTEM
4769 M:      Linus Walleij <linus.walleij@linaro.org>
4770 M:      Alexandre Courbot <gnurou@gmail.com>
4771 L:      linux-gpio@vger.kernel.org
4772 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
4773 S:      Maintained
4774 F:      Documentation/gpio/
4775 F:      drivers/gpio/
4776 F:      include/linux/gpio/
4777 F:      include/linux/gpio.h
4778 F:      include/asm-generic/gpio.h
4779
4780 GRE DEMULTIPLEXER DRIVER
4781 M:      Dmitry Kozlov <xeb@mail.ru>
4782 L:      netdev@vger.kernel.org
4783 S:      Maintained
4784 F:      net/ipv4/gre_demux.c
4785 F:      net/ipv4/gre_offload.c
4786 F:      include/net/gre.h
4787
4788 GRETH 10/100/1G Ethernet MAC device driver
4789 M:      Kristoffer Glembo <kristoffer@gaisler.com>
4790 L:      netdev@vger.kernel.org
4791 S:      Maintained
4792 F:      drivers/net/ethernet/aeroflex/
4793
4794 GSPCA FINEPIX SUBDRIVER
4795 M:      Frank Zago <frank@zago.net>
4796 L:      linux-media@vger.kernel.org
4797 T:      git git://linuxtv.org/media_tree.git
4798 S:      Maintained
4799 F:      drivers/media/usb/gspca/finepix.c
4800
4801 GSPCA GL860 SUBDRIVER
4802 M:      Olivier Lorin <o.lorin@laposte.net>
4803 L:      linux-media@vger.kernel.org
4804 T:      git git://linuxtv.org/media_tree.git
4805 S:      Maintained
4806 F:      drivers/media/usb/gspca/gl860/
4807
4808 GSPCA M5602 SUBDRIVER
4809 M:      Erik Andren <erik.andren@gmail.com>
4810 L:      linux-media@vger.kernel.org
4811 T:      git git://linuxtv.org/media_tree.git
4812 S:      Maintained
4813 F:      drivers/media/usb/gspca/m5602/
4814
4815 GSPCA PAC207 SONIXB SUBDRIVER
4816 M:      Hans de Goede <hdegoede@redhat.com>
4817 L:      linux-media@vger.kernel.org
4818 T:      git git://linuxtv.org/media_tree.git
4819 S:      Maintained
4820 F:      drivers/media/usb/gspca/pac207.c
4821
4822 GSPCA SN9C20X SUBDRIVER
4823 M:      Brian Johnson <brijohn@gmail.com>
4824 L:      linux-media@vger.kernel.org
4825 T:      git git://linuxtv.org/media_tree.git
4826 S:      Maintained
4827 F:      drivers/media/usb/gspca/sn9c20x.c
4828
4829 GSPCA T613 SUBDRIVER
4830 M:      Leandro Costantino <lcostantino@gmail.com>
4831 L:      linux-media@vger.kernel.org
4832 T:      git git://linuxtv.org/media_tree.git
4833 S:      Maintained
4834 F:      drivers/media/usb/gspca/t613.c
4835
4836 GSPCA USB WEBCAM DRIVER
4837 M:      Hans de Goede <hdegoede@redhat.com>
4838 L:      linux-media@vger.kernel.org
4839 T:      git git://linuxtv.org/media_tree.git
4840 S:      Maintained
4841 F:      drivers/media/usb/gspca/
4842
4843 GUID PARTITION TABLE (GPT)
4844 M:      Davidlohr Bueso <dave@stgolabs.net>
4845 L:      linux-efi@vger.kernel.org
4846 S:      Maintained
4847 F:      block/partitions/efi.*
4848
4849 STK1160 USB VIDEO CAPTURE DRIVER
4850 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
4851 L:      linux-media@vger.kernel.org
4852 T:      git git://linuxtv.org/media_tree.git
4853 S:      Maintained
4854 F:      drivers/media/usb/stk1160/
4855
4856 H8/300 ARCHITECTURE
4857 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
4858 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
4859 W:      http://uclinux-h8.sourceforge.jp
4860 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
4861 S:      Maintained
4862 F:      arch/h8300/
4863 F:      drivers/clocksource/h8300_*.c
4864 F:      drivers/clk/h8300/
4865 F:      drivers/irqchip/irq-renesas-h8*.c
4866
4867 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
4868 M:      Frank Seidel <frank@f-seidel.de>
4869 L:      platform-driver-x86@vger.kernel.org
4870 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
4871 S:      Maintained
4872 F:      drivers/platform/x86/hdaps.c
4873
4874 HDPVR USB VIDEO ENCODER DRIVER
4875 M:      Hans Verkuil <hverkuil@xs4all.nl>
4876 L:      linux-media@vger.kernel.org
4877 T:      git git://linuxtv.org/media_tree.git
4878 W:      https://linuxtv.org
4879 S:      Odd Fixes
4880 F:      drivers/media/usb/hdpvr/
4881
4882 HWPOISON MEMORY FAILURE HANDLING
4883 M:      Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
4884 L:      linux-mm@kvack.org
4885 S:      Maintained
4886 F:      mm/memory-failure.c
4887 F:      mm/hwpoison-inject.c
4888
4889 HYPERVISOR VIRTUAL CONSOLE DRIVER
4890 L:      linuxppc-dev@lists.ozlabs.org
4891 S:      Odd Fixes
4892 F:      drivers/tty/hvc/
4893
4894 HACKRF MEDIA DRIVER
4895 M:      Antti Palosaari <crope@iki.fi>
4896 L:      linux-media@vger.kernel.org
4897 W:      https://linuxtv.org
4898 W:      http://palosaari.fi/linux/
4899 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4900 T:      git git://linuxtv.org/anttip/media_tree.git
4901 S:      Maintained
4902 F:      drivers/media/usb/hackrf/
4903
4904 HARDWARE MONITORING
4905 M:      Jean Delvare <jdelvare@suse.com>
4906 M:      Guenter Roeck <linux@roeck-us.net>
4907 L:      lm-sensors@lm-sensors.org
4908 W:      http://www.lm-sensors.org/
4909 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/
4910 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
4911 S:      Maintained
4912 F:      Documentation/hwmon/
4913 F:      drivers/hwmon/
4914 F:      include/linux/hwmon*.h
4915
4916 HARDWARE RANDOM NUMBER GENERATOR CORE
4917 M:      Matt Mackall <mpm@selenic.com>
4918 M:      Herbert Xu <herbert@gondor.apana.org.au>
4919 L:      linux-crypto@vger.kernel.org
4920 S:      Odd fixes
4921 F:      Documentation/hw_random.txt
4922 F:      drivers/char/hw_random/
4923 F:      include/linux/hw_random.h
4924
4925 HARDWARE SPINLOCK CORE
4926 M:      Ohad Ben-Cohen <ohad@wizery.com>
4927 S:      Maintained
4928 F:      Documentation/hwspinlock.txt
4929 F:      drivers/hwspinlock/hwspinlock_*
4930 F:      include/linux/hwspinlock.h
4931
4932 HARMONY SOUND DRIVER
4933 L:      linux-parisc@vger.kernel.org
4934 S:      Maintained
4935 F:      sound/parisc/harmony.*
4936
4937 HD29L2 MEDIA DRIVER
4938 M:      Antti Palosaari <crope@iki.fi>
4939 L:      linux-media@vger.kernel.org
4940 W:      https://linuxtv.org
4941 W:      http://palosaari.fi/linux/
4942 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4943 T:      git git://linuxtv.org/anttip/media_tree.git
4944 S:      Maintained
4945 F:      drivers/media/dvb-frontends/hd29l2*
4946
4947 HEWLETT-PACKARD SMART2 RAID DRIVER
4948 L:      iss_storagedev@hp.com
4949 S:      Orphan
4950 F:      Documentation/blockdev/cpqarray.txt
4951 F:      drivers/block/cpqarray.*
4952
4953 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
4954 M:      Don Brace <don.brace@pmcs.com>
4955 L:      iss_storagedev@hp.com
4956 L:      storagedev@pmcs.com
4957 L:      linux-scsi@vger.kernel.org
4958 S:      Supported
4959 F:      Documentation/scsi/hpsa.txt
4960 F:      drivers/scsi/hpsa*.[ch]
4961 F:      include/linux/cciss*.h
4962 F:      include/uapi/linux/cciss*.h
4963
4964 HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
4965 M:      Don Brace <don.brace@pmcs.com>
4966 L:      iss_storagedev@hp.com
4967 L:      storagedev@pmcs.com
4968 L:      linux-scsi@vger.kernel.org
4969 S:      Supported
4970 F:      Documentation/blockdev/cciss.txt
4971 F:      drivers/block/cciss*
4972 F:      include/linux/cciss_ioctl.h
4973 F:      include/uapi/linux/cciss_ioctl.h
4974
4975 HFS FILESYSTEM
4976 L:      linux-fsdevel@vger.kernel.org
4977 S:      Orphan
4978 F:      Documentation/filesystems/hfs.txt
4979 F:      fs/hfs/
4980
4981 HFSPLUS FILESYSTEM
4982 L:      linux-fsdevel@vger.kernel.org
4983 S:      Orphan
4984 F:      Documentation/filesystems/hfsplus.txt
4985 F:      fs/hfsplus/
4986
4987 HGA FRAMEBUFFER DRIVER
4988 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
4989 L:      linux-nvidia@lists.surfsouth.com
4990 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
4991 S:      Maintained
4992 F:      drivers/video/fbdev/hgafb.c
4993
4994 HIBERNATION (aka Software Suspend, aka swsusp)
4995 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4996 M:      Pavel Machek <pavel@ucw.cz>
4997 L:      linux-pm@vger.kernel.org
4998 S:      Supported
4999 F:      arch/x86/power/
5000 F:      drivers/base/power/
5001 F:      kernel/power/
5002 F:      include/linux/suspend.h
5003 F:      include/linux/freezer.h
5004 F:      include/linux/pm.h
5005 F:      arch/*/include/asm/suspend*.h
5006
5007 HID CORE LAYER
5008 M:      Jiri Kosina <jikos@kernel.org>
5009 R:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
5010 L:      linux-input@vger.kernel.org
5011 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
5012 S:      Maintained
5013 F:      drivers/hid/
5014 F:      include/linux/hid*
5015 F:      include/uapi/linux/hid*
5016
5017 HID SENSOR HUB DRIVERS
5018 M:      Jiri Kosina <jikos@kernel.org>
5019 M:      Jonathan Cameron <jic23@kernel.org>
5020 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
5021 L:      linux-input@vger.kernel.org
5022 L:      linux-iio@vger.kernel.org
5023 S:      Maintained
5024 F:      Documentation/hid/hid-sensor*
5025 F:      drivers/hid/hid-sensor-*
5026 F:      drivers/iio/*/hid-*
5027 F:      include/linux/hid-sensor-*
5028
5029 HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
5030 M:      Thomas Gleixner <tglx@linutronix.de>
5031 L:      linux-kernel@vger.kernel.org
5032 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
5033 S:      Maintained
5034 F:      Documentation/timers/
5035 F:      kernel/time/hrtimer.c
5036 F:      kernel/time/clockevents.c
5037 F:      kernel/time/tick*.*
5038 F:      kernel/time/timer_*.c
5039 F:      include/linux/clockchips.h
5040 F:      include/linux/hrtimer.h
5041
5042 HIGH-SPEED SCC DRIVER FOR AX.25
5043 L:      linux-hams@vger.kernel.org
5044 S:      Orphan
5045 F:      drivers/net/hamradio/dmascc.c
5046 F:      drivers/net/hamradio/scc.c
5047
5048 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
5049 M:      HighPoint Linux Team <linux@highpoint-tech.com>
5050 W:      http://www.highpoint-tech.com
5051 S:      Supported
5052 F:      Documentation/scsi/hptiop.txt
5053 F:      drivers/scsi/hptiop.c
5054
5055 HIPPI
5056 M:      Jes Sorensen <jes@trained-monkey.org>
5057 L:      linux-hippi@sunsite.dk
5058 S:      Maintained
5059 F:      include/linux/hippidevice.h
5060 F:      include/uapi/linux/if_hippi.h
5061 F:      net/802/hippi.c
5062 F:      drivers/net/hippi/
5063
5064 HISILICON SAS Controller
5065 M:      John Garry <john.garry@huawei.com>
5066 W:      http://www.hisilicon.com
5067 S:      Supported
5068 F:      drivers/scsi/hisi_sas/
5069 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
5070
5071 HOST AP DRIVER
5072 M:      Jouni Malinen <j@w1.fi>
5073 L:      hostap@shmoo.com (subscribers-only)
5074 L:      linux-wireless@vger.kernel.org
5075 W:      http://hostap.epitest.fi/
5076 S:      Maintained
5077 F:      drivers/net/wireless/intersil/hostap/
5078
5079 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
5080 L:      platform-driver-x86@vger.kernel.org
5081 S:      Orphan
5082 F:      drivers/platform/x86/tc1100-wmi.c
5083
5084 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
5085 M:      Jaroslav Kysela <perex@perex.cz>
5086 S:      Maintained
5087 F:      drivers/net/ethernet/hp/hp100.*
5088
5089 HPET:   High Precision Event Timers driver
5090 M:      Clemens Ladisch <clemens@ladisch.de>
5091 S:      Maintained
5092 F:      Documentation/timers/hpet.txt
5093 F:      drivers/char/hpet.c
5094 F:      include/linux/hpet.h
5095 F:      include/uapi/linux/hpet.h
5096
5097 HPET:   x86
5098 S:      Orphan
5099 F:      arch/x86/kernel/hpet.c
5100 F:      arch/x86/include/asm/hpet.h
5101
5102 HPFS FILESYSTEM
5103 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
5104 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
5105 S:      Maintained
5106 F:      fs/hpfs/
5107
5108 HSI SUBSYSTEM
5109 M:      Sebastian Reichel <sre@kernel.org>
5110 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
5111 S:      Maintained
5112 F:      Documentation/ABI/testing/sysfs-bus-hsi
5113 F:      Documentation/hsi.txt
5114 F:      drivers/hsi/
5115 F:      include/linux/hsi/
5116 F:      include/uapi/linux/hsi/
5117
5118 HSO 3G MODEM DRIVER
5119 M:      Jan Dumon <j.dumon@option.com>
5120 W:      http://www.pharscape.org
5121 S:      Maintained
5122 F:      drivers/net/usb/hso.c
5123
5124 HSR NETWORK PROTOCOL
5125 M:      Arvid Brodin <arvid.brodin@alten.se>
5126 L:      netdev@vger.kernel.org
5127 S:      Maintained
5128 F:      net/hsr/
5129
5130 HTCPEN TOUCHSCREEN DRIVER
5131 M:      Pau Oliva Fora <pof@eslack.org>
5132 L:      linux-input@vger.kernel.org
5133 S:      Maintained
5134 F:      drivers/input/touchscreen/htcpen.c
5135
5136 HUGETLB FILESYSTEM
5137 M:      Nadia Yvette Chambers <nyc@holomorphy.com>
5138 S:      Maintained
5139 F:      fs/hugetlbfs/
5140
5141 Hyper-V CORE AND DRIVERS
5142 M:      "K. Y. Srinivasan" <kys@microsoft.com>
5143 M:      Haiyang Zhang <haiyangz@microsoft.com>
5144 L:      devel@linuxdriverproject.org
5145 S:      Maintained
5146 F:      arch/x86/include/asm/mshyperv.h
5147 F:      arch/x86/include/uapi/asm/hyperv.h
5148 F:      arch/x86/kernel/cpu/mshyperv.c
5149 F:      drivers/hid/hid-hyperv.c
5150 F:      drivers/hv/
5151 F:      drivers/input/serio/hyperv-keyboard.c
5152 F:      drivers/net/hyperv/
5153 F:      drivers/scsi/storvsc_drv.c
5154 F:      drivers/video/fbdev/hyperv_fb.c
5155 F:      include/linux/hyperv.h
5156 F:      tools/hv/
5157 F:      Documentation/ABI/stable/sysfs-bus-vmbus
5158
5159 I2C OVER PARALLEL PORT
5160 M:      Jean Delvare <jdelvare@suse.com>
5161 L:      linux-i2c@vger.kernel.org
5162 S:      Maintained
5163 F:      Documentation/i2c/busses/i2c-parport
5164 F:      Documentation/i2c/busses/i2c-parport-light
5165 F:      drivers/i2c/busses/i2c-parport.c
5166 F:      drivers/i2c/busses/i2c-parport-light.c
5167
5168 I2C/SMBUS CONTROLLER DRIVERS FOR PC
5169 M:      Jean Delvare <jdelvare@suse.com>
5170 L:      linux-i2c@vger.kernel.org
5171 S:      Maintained
5172 F:      Documentation/i2c/busses/i2c-ali1535
5173 F:      Documentation/i2c/busses/i2c-ali1563
5174 F:      Documentation/i2c/busses/i2c-ali15x3
5175 F:      Documentation/i2c/busses/i2c-amd756
5176 F:      Documentation/i2c/busses/i2c-amd8111
5177 F:      Documentation/i2c/busses/i2c-i801
5178 F:      Documentation/i2c/busses/i2c-nforce2
5179 F:      Documentation/i2c/busses/i2c-piix4
5180 F:      Documentation/i2c/busses/i2c-sis5595
5181 F:      Documentation/i2c/busses/i2c-sis630
5182 F:      Documentation/i2c/busses/i2c-sis96x
5183 F:      Documentation/i2c/busses/i2c-via
5184 F:      Documentation/i2c/busses/i2c-viapro
5185 F:      drivers/i2c/busses/i2c-ali1535.c
5186 F:      drivers/i2c/busses/i2c-ali1563.c
5187 F:      drivers/i2c/busses/i2c-ali15x3.c
5188 F:      drivers/i2c/busses/i2c-amd756.c
5189 F:      drivers/i2c/busses/i2c-amd756-s4882.c
5190 F:      drivers/i2c/busses/i2c-amd8111.c
5191 F:      drivers/i2c/busses/i2c-i801.c
5192 F:      drivers/i2c/busses/i2c-isch.c
5193 F:      drivers/i2c/busses/i2c-nforce2.c
5194 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
5195 F:      drivers/i2c/busses/i2c-piix4.c
5196 F:      drivers/i2c/busses/i2c-sis5595.c
5197 F:      drivers/i2c/busses/i2c-sis630.c
5198 F:      drivers/i2c/busses/i2c-sis96x.c
5199 F:      drivers/i2c/busses/i2c-via.c
5200 F:      drivers/i2c/busses/i2c-viapro.c
5201
5202 I2C/SMBUS ISMT DRIVER
5203 M:      Seth Heasley <seth.heasley@intel.com>
5204 M:      Neil Horman <nhorman@tuxdriver.com>
5205 L:      linux-i2c@vger.kernel.org
5206 F:      drivers/i2c/busses/i2c-ismt.c
5207 F:      Documentation/i2c/busses/i2c-ismt
5208
5209 I2C/SMBUS STUB DRIVER
5210 M:      Jean Delvare <jdelvare@suse.com>
5211 L:      linux-i2c@vger.kernel.org
5212 S:      Maintained
5213 F:      drivers/i2c/i2c-stub.c
5214
5215 I2C SUBSYSTEM
5216 M:      Wolfram Sang <wsa@the-dreams.de>
5217 L:      linux-i2c@vger.kernel.org
5218 W:      https://i2c.wiki.kernel.org/
5219 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
5220 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
5221 S:      Maintained
5222 F:      Documentation/devicetree/bindings/i2c/
5223 F:      Documentation/i2c/
5224 F:      drivers/i2c/
5225 F:      drivers/i2c/*/
5226 F:      include/linux/i2c.h
5227 F:      include/linux/i2c-*.h
5228 F:      include/uapi/linux/i2c.h
5229 F:      include/uapi/linux/i2c-*.h
5230
5231 I2C ACPI SUPPORT
5232 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
5233 L:      linux-i2c@vger.kernel.org
5234 L:      linux-acpi@vger.kernel.org
5235 S:      Maintained
5236
5237 I2C-TAOS-EVM DRIVER
5238 M:      Jean Delvare <jdelvare@suse.com>
5239 L:      linux-i2c@vger.kernel.org
5240 S:      Maintained
5241 F:      Documentation/i2c/busses/i2c-taos-evm
5242 F:      drivers/i2c/busses/i2c-taos-evm.c
5243
5244 I2C-TINY-USB DRIVER
5245 M:      Till Harbaum <till@harbaum.org>
5246 L:      linux-i2c@vger.kernel.org
5247 W:      http://www.harbaum.org/till/i2c_tiny_usb
5248 S:      Maintained
5249 F:      drivers/i2c/busses/i2c-tiny-usb.c
5250
5251 i386 BOOT CODE
5252 M:      "H. Peter Anvin" <hpa@zytor.com>
5253 S:      Maintained
5254 F:      arch/x86/boot/
5255
5256 i386 SETUP CODE / CPU ERRATA WORKAROUNDS
5257 M:      "H. Peter Anvin" <hpa@zytor.com>
5258 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
5259 S:      Maintained
5260
5261 IA64 (Itanium) PLATFORM
5262 M:      Tony Luck <tony.luck@intel.com>
5263 M:      Fenghua Yu <fenghua.yu@intel.com>
5264 L:      linux-ia64@vger.kernel.org
5265 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
5266 S:      Maintained
5267 F:      arch/ia64/
5268
5269 IBM Power VMX Cryptographic instructions
5270 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5271 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5272 L:      linux-crypto@vger.kernel.org
5273 S:      Supported
5274 F:      drivers/crypto/vmx/Makefile
5275 F:      drivers/crypto/vmx/Kconfig
5276 F:      drivers/crypto/vmx/vmx.c
5277 F:      drivers/crypto/vmx/aes*
5278 F:      drivers/crypto/vmx/ghash*
5279 F:      drivers/crypto/vmx/ppc-xlate.pl
5280
5281 IBM Power in-Nest Crypto Acceleration
5282 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5283 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5284 L:      linux-crypto@vger.kernel.org
5285 S:      Supported
5286 F:      drivers/crypto/nx/Makefile
5287 F:      drivers/crypto/nx/Kconfig
5288 F:      drivers/crypto/nx/nx-aes*
5289 F:      drivers/crypto/nx/nx-sha*
5290 F:      drivers/crypto/nx/nx.*
5291 F:      drivers/crypto/nx/nx_csbcpb.h
5292 F:      drivers/crypto/nx/nx_debugfs.h
5293
5294 IBM Power 842 compression accelerator
5295 M:      Dan Streetman <ddstreet@ieee.org>
5296 S:      Supported
5297 F:      drivers/crypto/nx/Makefile
5298 F:      drivers/crypto/nx/Kconfig
5299 F:      drivers/crypto/nx/nx-842*
5300 F:      include/linux/sw842.h
5301 F:      crypto/842.c
5302 F:      lib/842/
5303
5304 IBM Power Linux RAID adapter
5305 M:      Brian King <brking@us.ibm.com>
5306 S:      Supported
5307 F:      drivers/scsi/ipr.*
5308
5309 IBM Power Virtual Ethernet Device Driver
5310 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
5311 L:      netdev@vger.kernel.org
5312 S:      Supported
5313 F:      drivers/net/ethernet/ibm/ibmveth.*
5314
5315 IBM Power SRIOV Virtual NIC Device Driver
5316 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
5317 M:      John Allen <jallen@linux.vnet.ibm.com>
5318 L:      netdev@vger.kernel.org
5319 S:      Supported
5320 F:      drivers/net/ethernet/ibm/ibmvnic.*
5321
5322 IBM Power Virtual SCSI Device Drivers
5323 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5324 L:      linux-scsi@vger.kernel.org
5325 S:      Supported
5326 F:      drivers/scsi/ibmvscsi/ibmvscsi*
5327 F:      drivers/scsi/ibmvscsi/viosrp.h
5328
5329 IBM Power Virtual FC Device Drivers
5330 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5331 L:      linux-scsi@vger.kernel.org
5332 S:      Supported
5333 F:      drivers/scsi/ibmvscsi/ibmvfc*
5334
5335 IBM ServeRAID RAID DRIVER
5336 S:      Orphan
5337 F:      drivers/scsi/ips.*
5338
5339 ICH LPC AND GPIO DRIVER
5340 M:      Peter Tyser <ptyser@xes-inc.com>
5341 S:      Maintained
5342 F:      drivers/mfd/lpc_ich.c
5343 F:      drivers/gpio/gpio-ich.c
5344
5345 IDE SUBSYSTEM
5346 M:      "David S. Miller" <davem@davemloft.net>
5347 L:      linux-ide@vger.kernel.org
5348 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
5349 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
5350 S:      Maintained
5351 F:      Documentation/ide/
5352 F:      drivers/ide/
5353 F:      include/linux/ide.h
5354
5355 IDEAPAD LAPTOP EXTRAS DRIVER
5356 M:      Ike Panhc <ike.pan@canonical.com>
5357 L:      platform-driver-x86@vger.kernel.org
5358 W:      http://launchpad.net/ideapad-laptop
5359 S:      Maintained
5360 F:      drivers/platform/x86/ideapad-laptop.c
5361
5362 IDEAPAD LAPTOP SLIDEBAR DRIVER
5363 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
5364 L:      linux-input@vger.kernel.org
5365 W:      https://github.com/o2genum/ideapad-slidebar
5366 S:      Maintained
5367 F:      drivers/input/misc/ideapad_slidebar.c
5368
5369 IDE/ATAPI DRIVERS
5370 M:      Borislav Petkov <bp@alien8.de>
5371 L:      linux-ide@vger.kernel.org
5372 S:      Maintained
5373 F:      Documentation/cdrom/ide-cd
5374 F:      drivers/ide/ide-cd*
5375
5376 IDLE-I7300
5377 M:      Andy Henroid <andrew.d.henroid@intel.com>
5378 L:      linux-pm@vger.kernel.org
5379 S:      Supported
5380 F:      drivers/idle/i7300_idle.c
5381
5382 IEEE 802.15.4 SUBSYSTEM
5383 M:      Alexander Aring <alex.aring@gmail.com>
5384 L:      linux-wpan@vger.kernel.org
5385 W:      https://github.com/linux-wpan
5386 T:      git git://github.com/linux-wpan/linux-wpan-next.git
5387 S:      Maintained
5388 F:      net/ieee802154/
5389 F:      net/mac802154/
5390 F:      drivers/net/ieee802154/
5391 F:      include/linux/nl802154.h
5392 F:      include/linux/ieee802154.h
5393 F:      include/net/nl802154.h
5394 F:      include/net/mac802154.h
5395 F:      include/net/af_ieee802154.h
5396 F:      include/net/cfg802154.h
5397 F:      include/net/ieee802154_netdev.h
5398 F:      Documentation/networking/ieee802154.txt
5399
5400 IGORPLUG-USB IR RECEIVER
5401 M:      Sean Young <sean@mess.org>
5402 L:      linux-media@vger.kernel.org
5403 S:      Maintained
5404 F:      drivers/media/rc/igorplugusb.c
5405
5406 IGUANAWORKS USB IR TRANSCEIVER
5407 M:      Sean Young <sean@mess.org>
5408 L:      linux-media@vger.kernel.org
5409 S:      Maintained
5410 F:      drivers/media/rc/iguanair.c
5411
5412 IIO SUBSYSTEM AND DRIVERS
5413 M:      Jonathan Cameron <jic23@kernel.org>
5414 R:      Hartmut Knaack <knaack.h@gmx.de>
5415 R:      Lars-Peter Clausen <lars@metafoo.de>
5416 R:      Peter Meerwald <pmeerw@pmeerw.net>
5417 L:      linux-iio@vger.kernel.org
5418 S:      Maintained
5419 F:      drivers/iio/
5420 F:      drivers/staging/iio/
5421 F:      include/linux/iio/
5422 F:      tools/iio/
5423
5424 IKANOS/ADI EAGLE ADSL USB DRIVER
5425 M:      Matthieu Castet <castet.matthieu@free.fr>
5426 M:      Stanislaw Gruszka <stf_xl@wp.pl>
5427 S:      Maintained
5428 F:      drivers/usb/atm/ueagle-atm.c
5429
5430 INA209 HARDWARE MONITOR DRIVER
5431 M:      Guenter Roeck <linux@roeck-us.net>
5432 L:      lm-sensors@lm-sensors.org
5433 S:      Maintained
5434 F:      Documentation/hwmon/ina209
5435 F:      Documentation/devicetree/bindings/i2c/ina209.txt
5436 F:      drivers/hwmon/ina209.c
5437
5438 INA2XX HARDWARE MONITOR DRIVER
5439 M:      Guenter Roeck <linux@roeck-us.net>
5440 L:      lm-sensors@lm-sensors.org
5441 S:      Maintained
5442 F:      Documentation/hwmon/ina2xx
5443 F:      drivers/hwmon/ina2xx.c
5444 F:      include/linux/platform_data/ina2xx.h
5445
5446 INDUSTRY PACK SUBSYSTEM (IPACK)
5447 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
5448 M:      Jens Taprogge <jens.taprogge@taprogge.org>
5449 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5450 L:      industrypack-devel@lists.sourceforge.net
5451 W:      http://industrypack.sourceforge.net
5452 S:      Maintained
5453 F:      drivers/ipack/
5454
5455 INGENIC JZ4780 DMA Driver
5456 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
5457 S:      Maintained
5458 F:      drivers/dma/dma-jz4780.c
5459
5460 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
5461 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
5462 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
5463 L:      linux-ima-devel@lists.sourceforge.net
5464 L:      linux-ima-user@lists.sourceforge.net
5465 L:      linux-security-module@vger.kernel.org
5466 S:      Supported
5467 F:      security/integrity/ima/
5468
5469 IMGTEC IR DECODER DRIVER
5470 M:      James Hogan <james.hogan@imgtec.com>
5471 S:      Maintained
5472 F:      drivers/media/rc/img-ir/
5473
5474 IMS TWINTURBO FRAMEBUFFER DRIVER
5475 L:      linux-fbdev@vger.kernel.org
5476 S:      Orphan
5477 F:      drivers/video/fbdev/imsttfb.c
5478
5479 INFINIBAND SUBSYSTEM
5480 M:      Doug Ledford <dledford@redhat.com>
5481 M:      Sean Hefty <sean.hefty@intel.com>
5482 M:      Hal Rosenstock <hal.rosenstock@gmail.com>
5483 L:      linux-rdma@vger.kernel.org
5484 W:      http://www.openfabrics.org/
5485 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5486 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git
5487 S:      Supported
5488 F:      Documentation/infiniband/
5489 F:      drivers/infiniband/
5490 F:      drivers/staging/rdma/
5491 F:      include/uapi/linux/if_infiniband.h
5492 F:      include/uapi/rdma/
5493 F:      include/rdma/
5494
5495 INOTIFY
5496 M:      John McCutchan <john@johnmccutchan.com>
5497 M:      Robert Love <rlove@rlove.org>
5498 M:      Eric Paris <eparis@parisplace.org>
5499 S:      Maintained
5500 F:      Documentation/filesystems/inotify.txt
5501 F:      fs/notify/inotify/
5502 F:      include/linux/inotify.h
5503 F:      include/uapi/linux/inotify.h
5504
5505 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
5506 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
5507 L:      linux-input@vger.kernel.org
5508 Q:      http://patchwork.kernel.org/project/linux-input/list/
5509 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
5510 S:      Maintained
5511 F:      drivers/input/
5512 F:      include/linux/input.h
5513 F:      include/uapi/linux/input.h
5514 F:      include/linux/input/
5515
5516 INPUT MULTITOUCH (MT) PROTOCOL
5517 M:      Henrik Rydberg <rydberg@bitmath.org>
5518 L:      linux-input@vger.kernel.org
5519 S:      Odd fixes
5520 F:      Documentation/input/multi-touch-protocol.txt
5521 F:      drivers/input/input-mt.c
5522 K:      \b(ABS|SYN)_MT_
5523
5524 INTEL ASoC BDW/HSW DRIVERS
5525 M:      Jie Yang <yang.jie@linux.intel.com>
5526 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5527 S:      Supported
5528 F:      sound/soc/intel/common/sst-dsp*
5529 F:      sound/soc/intel/common/sst-firmware.c
5530 F:      sound/soc/intel/boards/broadwell.c
5531 F:      sound/soc/intel/haswell/
5532
5533 INTEL C600 SERIES SAS CONTROLLER DRIVER
5534 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
5535 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
5536 L:      linux-scsi@vger.kernel.org
5537 T:      git git://git.code.sf.net/p/intel-sas/isci
5538 S:      Supported
5539 F:      drivers/scsi/isci/
5540
5541 INTEL HID EVENT DRIVER
5542 M:      Alex Hung <alex.hung@canonical.com>
5543 L:      platform-driver-x86@vger.kernel.org
5544 S:      Maintained
5545 F:      drivers/platform/x86/intel-hid.c
5546
5547 INTEL IDLE DRIVER
5548 M:      Len Brown <lenb@kernel.org>
5549 L:      linux-pm@vger.kernel.org
5550 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
5551 S:      Supported
5552 F:      drivers/idle/intel_idle.c
5553
5554 INTEL PSTATE DRIVER
5555 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
5556 M:      Len Brown <lenb@kernel.org>
5557 L:      linux-pm@vger.kernel.org
5558 S:      Supported
5559 F:      drivers/cpufreq/intel_pstate.c
5560
5561 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
5562 M:      Maik Broemme <mbroemme@plusserver.de>
5563 L:      linux-fbdev@vger.kernel.org
5564 S:      Maintained
5565 F:      Documentation/fb/intelfb.txt
5566 F:      drivers/video/fbdev/intelfb/
5567
5568 INTEL 810/815 FRAMEBUFFER DRIVER
5569 M:      Antonino Daplas <adaplas@gmail.com>
5570 L:      linux-fbdev@vger.kernel.org
5571 S:      Maintained
5572 F:      drivers/video/fbdev/i810/
5573
5574 INTEL MENLOW THERMAL DRIVER
5575 M:      Sujith Thomas <sujith.thomas@intel.com>
5576 L:      platform-driver-x86@vger.kernel.org
5577 W:      https://01.org/linux-acpi
5578 S:      Supported
5579 F:      drivers/platform/x86/intel_menlow.c
5580
5581 INTEL I/OAT DMA DRIVER
5582 M:      Dave Jiang <dave.jiang@intel.com>
5583 R:      Dan Williams <dan.j.williams@intel.com>
5584 L:      dmaengine@vger.kernel.org
5585 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5586 S:      Supported
5587 F:      drivers/dma/ioat*
5588
5589 INTEL IOMMU (VT-d)
5590 M:      David Woodhouse <dwmw2@infradead.org>
5591 L:      iommu@lists.linux-foundation.org
5592 T:      git git://git.infradead.org/iommu-2.6.git
5593 S:      Supported
5594 F:      drivers/iommu/intel-iommu.c
5595 F:      include/linux/intel-iommu.h
5596
5597 INTEL IOP-ADMA DMA DRIVER
5598 R:      Dan Williams <dan.j.williams@intel.com>
5599 S:      Odd fixes
5600 F:      drivers/dma/iop-adma.c
5601
5602 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
5603 M:      Krzysztof Halasa <khalasa@piap.pl>
5604 S:      Maintained
5605 F:      arch/arm/mach-ixp4xx/include/mach/qmgr.h
5606 F:      arch/arm/mach-ixp4xx/include/mach/npe.h
5607 F:      arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
5608 F:      arch/arm/mach-ixp4xx/ixp4xx_npe.c
5609 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
5610 F:      drivers/net/wan/ixp4xx_hss.c
5611
5612 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
5613 M:      Deepak Saxena <dsaxena@plexity.net>
5614 S:      Maintained
5615 F:      drivers/char/hw_random/ixp4xx-rng.c
5616
5617 INTEL ETHERNET DRIVERS
5618 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
5619 R:      Jesse Brandeburg <jesse.brandeburg@intel.com>
5620 R:      Shannon Nelson <shannon.nelson@intel.com>
5621 R:      Carolyn Wyborny <carolyn.wyborny@intel.com>
5622 R:      Don Skidmore <donald.c.skidmore@intel.com>
5623 R:      Bruce Allan <bruce.w.allan@intel.com>
5624 R:      John Ronciak <john.ronciak@intel.com>
5625 R:      Mitch Williams <mitch.a.williams@intel.com>
5626 L:      intel-wired-lan@lists.osuosl.org
5627 W:      http://www.intel.com/support/feedback.htm
5628 W:      http://e1000.sourceforge.net/
5629 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
5630 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
5631 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
5632 S:      Supported
5633 F:      Documentation/networking/e100.txt
5634 F:      Documentation/networking/e1000.txt
5635 F:      Documentation/networking/e1000e.txt
5636 F:      Documentation/networking/igb.txt
5637 F:      Documentation/networking/igbvf.txt
5638 F:      Documentation/networking/ixgb.txt
5639 F:      Documentation/networking/ixgbe.txt
5640 F:      Documentation/networking/ixgbevf.txt
5641 F:      Documentation/networking/i40e.txt
5642 F:      Documentation/networking/i40evf.txt
5643 F:      drivers/net/ethernet/intel/
5644 F:      drivers/net/ethernet/intel/*/
5645
5646 INTEL-MID GPIO DRIVER
5647 M:      David Cohen <david.a.cohen@linux.intel.com>
5648 L:      linux-gpio@vger.kernel.org
5649 S:      Maintained
5650 F:      drivers/gpio/gpio-intel-mid.c
5651
5652 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
5653 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
5654 L:      linux-wireless@vger.kernel.org
5655 S:      Maintained
5656 F:      Documentation/networking/README.ipw2100
5657 F:      Documentation/networking/README.ipw2200
5658 F:      drivers/net/wireless/intel/ipw2x00/
5659
5660 INTEL(R) TRACE HUB
5661 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
5662 S:      Supported
5663 F:      Documentation/trace/intel_th.txt
5664 F:      drivers/hwtracing/intel_th/
5665
5666 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
5667 M:      Ning Sun <ning.sun@intel.com>
5668 L:      tboot-devel@lists.sourceforge.net
5669 W:      http://tboot.sourceforge.net
5670 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
5671 S:      Supported
5672 F:      Documentation/intel_txt.txt
5673 F:      include/linux/tboot.h
5674 F:      arch/x86/kernel/tboot.c
5675
5676 INTEL WIRELESS WIMAX CONNECTION 2400
5677 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
5678 M:      linux-wimax@intel.com
5679 L:      wimax@linuxwimax.org (subscribers-only)
5680 S:      Supported
5681 W:      http://linuxwimax.org
5682 F:      Documentation/wimax/README.i2400m
5683 F:      drivers/net/wimax/i2400m/
5684 F:      include/uapi/linux/wimax/i2400m.h
5685
5686 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
5687 M:      Stanislaw Gruszka <sgruszka@redhat.com>
5688 L:      linux-wireless@vger.kernel.org
5689 S:      Supported
5690 F:      drivers/net/wireless/intel/iwlegacy/
5691
5692 INTEL WIRELESS WIFI LINK (iwlwifi)
5693 M:      Johannes Berg <johannes.berg@intel.com>
5694 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
5695 M:      Intel Linux Wireless <linuxwifi@intel.com>
5696 L:      linux-wireless@vger.kernel.org
5697 W:      http://intellinuxwireless.org
5698 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
5699 S:      Supported
5700 F:      drivers/net/wireless/intel/iwlwifi/
5701
5702 INTEL MANAGEMENT ENGINE (mei)
5703 M:      Tomas Winkler <tomas.winkler@intel.com>
5704 L:      linux-kernel@vger.kernel.org
5705 S:      Supported
5706 F:      include/uapi/linux/mei.h
5707 F:      include/linux/mei_cl_bus.h
5708 F:      drivers/misc/mei/*
5709 F:      Documentation/misc-devices/mei/*
5710
5711 INTEL MIC DRIVERS (mic)
5712 M:      Sudeep Dutt <sudeep.dutt@intel.com>
5713 M:      Ashutosh Dixit <ashutosh.dixit@intel.com>
5714 S:      Supported
5715 W:      https://github.com/sudeepdutt/mic
5716 W:      http://software.intel.com/en-us/mic-developer
5717 F:      include/linux/mic_bus.h
5718 F:      include/linux/scif.h
5719 F:      include/uapi/linux/mic_common.h
5720 F:      include/uapi/linux/mic_ioctl.h
5721 F       include/uapi/linux/scif_ioctl.h
5722 F:      drivers/misc/mic/
5723 F:      drivers/dma/mic_x100_dma.c
5724 F:      drivers/dma/mic_x100_dma.h
5725 F       Documentation/mic/
5726
5727 INTEL PMC/P-Unit IPC DRIVER
5728 M:      Zha Qipeng<qipeng.zha@intel.com>
5729 L:      platform-driver-x86@vger.kernel.org
5730 S:      Maintained
5731 F:      drivers/platform/x86/intel_pmc_ipc.c
5732 F:      drivers/platform/x86/intel_punit_ipc.c
5733 F:      arch/x86/include/asm/intel_pmc_ipc.h
5734 F:      arch/x86/include/asm/intel_punit_ipc.h
5735
5736 INTEL TELEMETRY DRIVER
5737 M:      Souvik Kumar Chakravarty <souvik.k.chakravarty@intel.com>
5738 L:      platform-driver-x86@vger.kernel.org
5739 S:      Maintained
5740 F:      drivers/platform/x86/intel_telemetry_core.c
5741 F:      arch/x86/include/asm/intel_telemetry.h
5742 F:      drivers/platform/x86/intel_telemetry_pltdrv.c
5743 F:      drivers/platform/x86/intel_telemetry_debugfs.c
5744
5745 IOC3 ETHERNET DRIVER
5746 M:      Ralf Baechle <ralf@linux-mips.org>
5747 L:      linux-mips@linux-mips.org
5748 S:      Maintained
5749 F:      drivers/net/ethernet/sgi/ioc3-eth.c
5750
5751 IOC3 SERIAL DRIVER
5752 M:      Pat Gefre <pfg@sgi.com>
5753 L:      linux-serial@vger.kernel.org
5754 S:      Maintained
5755 F:      drivers/tty/serial/ioc3_serial.c
5756
5757 IOMMU DRIVERS
5758 M:      Joerg Roedel <joro@8bytes.org>
5759 L:      iommu@lists.linux-foundation.org
5760 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
5761 S:      Maintained
5762 F:      drivers/iommu/
5763
5764 IP MASQUERADING
5765 M:      Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
5766 S:      Maintained
5767 F:      net/ipv4/netfilter/ipt_MASQUERADE.c
5768
5769 IPATH DRIVER
5770 M:      Mike Marciniszyn <infinipath@intel.com>
5771 L:      linux-rdma@vger.kernel.org
5772 S:      Maintained
5773 F:      drivers/staging/rdma/ipath/
5774
5775 IPMI SUBSYSTEM
5776 M:      Corey Minyard <minyard@acm.org>
5777 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
5778 W:      http://openipmi.sourceforge.net/
5779 S:      Supported
5780 F:      Documentation/IPMI.txt
5781 F:      drivers/char/ipmi/
5782 F:      include/linux/ipmi*
5783 F:      include/uapi/linux/ipmi*
5784
5785 QCOM AUDIO (ASoC) DRIVERS
5786 M:      Patrick Lai <plai@codeaurora.org>
5787 M:      Banajit Goswami <bgoswami@codeaurora.org>
5788 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5789 S:      Supported
5790 F:      sound/soc/qcom/
5791
5792 IPS SCSI RAID DRIVER
5793 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
5794 L:      linux-scsi@vger.kernel.org
5795 W:      http://www.adaptec.com/
5796 S:      Maintained
5797 F:      drivers/scsi/ips*
5798
5799 IPVS
5800 M:      Wensong Zhang <wensong@linux-vs.org>
5801 M:      Simon Horman <horms@verge.net.au>
5802 M:      Julian Anastasov <ja@ssi.bg>
5803 L:      netdev@vger.kernel.org
5804 L:      lvs-devel@vger.kernel.org
5805 S:      Maintained
5806 F:      Documentation/networking/ipvs-sysctl.txt
5807 F:      include/net/ip_vs.h
5808 F:      include/uapi/linux/ip_vs.h
5809 F:      net/netfilter/ipvs/
5810
5811 IPWIRELESS DRIVER
5812 M:      Jiri Kosina <jikos@kernel.org>
5813 M:      David Sterba <dsterba@suse.com>
5814 S:      Odd Fixes
5815 F:      drivers/tty/ipwireless/
5816
5817 IPX NETWORK LAYER
5818 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
5819 L:      netdev@vger.kernel.org
5820 S:      Maintained
5821 F:      include/net/ipx.h
5822 F:      include/uapi/linux/ipx.h
5823 F:      net/ipx/
5824
5825 IRDA SUBSYSTEM
5826 M:      Samuel Ortiz <samuel@sortiz.org>
5827 L:      irda-users@lists.sourceforge.net (subscribers-only)
5828 L:      netdev@vger.kernel.org
5829 W:      http://irda.sourceforge.net/
5830 S:      Maintained
5831 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
5832 F:      Documentation/networking/irda.txt
5833 F:      drivers/net/irda/
5834 F:      include/net/irda/
5835 F:      net/irda/
5836
5837 IRQ SUBSYSTEM
5838 M:      Thomas Gleixner <tglx@linutronix.de>
5839 L:      linux-kernel@vger.kernel.org
5840 S:      Maintained
5841 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5842 F:      kernel/irq/
5843
5844 IRQCHIP DRIVERS
5845 M:      Thomas Gleixner <tglx@linutronix.de>
5846 M:      Jason Cooper <jason@lakedaemon.net>
5847 M:      Marc Zyngier <marc.zyngier@arm.com>
5848 L:      linux-kernel@vger.kernel.org
5849 S:      Maintained
5850 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5851 T:      git git://git.infradead.org/users/jcooper/linux.git irqchip/core
5852 F:      Documentation/devicetree/bindings/interrupt-controller/
5853 F:      drivers/irqchip/
5854
5855 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
5856 M:      Jiang Liu <jiang.liu@linux.intel.com>
5857 M:      Marc Zyngier <marc.zyngier@arm.com>
5858 S:      Maintained
5859 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5860 F:      Documentation/IRQ-domain.txt
5861 F:      include/linux/irqdomain.h
5862 F:      kernel/irq/irqdomain.c
5863 F:      kernel/irq/msi.c
5864
5865 ISAPNP
5866 M:      Jaroslav Kysela <perex@perex.cz>
5867 S:      Maintained
5868 F:      Documentation/isapnp.txt
5869 F:      drivers/pnp/isapnp/
5870 F:      include/linux/isapnp.h
5871
5872 ISA RADIO MODULE
5873 M:      Hans Verkuil <hverkuil@xs4all.nl>
5874 L:      linux-media@vger.kernel.org
5875 T:      git git://linuxtv.org/media_tree.git
5876 W:      https://linuxtv.org
5877 S:      Maintained
5878 F:      drivers/media/radio/radio-isa*
5879
5880 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
5881 M:      Peter Jones <pjones@redhat.com>
5882 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
5883 S:      Maintained
5884 F:      drivers/firmware/iscsi_ibft*
5885
5886 ISCSI
5887 M:      Mike Christie <michaelc@cs.wisc.edu>
5888 L:      open-iscsi@googlegroups.com
5889 W:      www.open-iscsi.org
5890 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
5891 S:      Maintained
5892 F:      drivers/scsi/*iscsi*
5893 F:      include/scsi/*iscsi*
5894
5895 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
5896 M:      Or Gerlitz <ogerlitz@mellanox.com>
5897 M:      Sagi Grimberg <sagig@mellanox.com>
5898 M:      Roi Dayan <roid@mellanox.com>
5899 L:      linux-rdma@vger.kernel.org
5900 S:      Supported
5901 W:      http://www.openfabrics.org
5902 W:      www.open-iscsi.org
5903 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5904 F:      drivers/infiniband/ulp/iser/
5905
5906 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
5907 M:      Sagi Grimberg <sagig@mellanox.com>
5908 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
5909 L:      linux-rdma@vger.kernel.org
5910 L:      target-devel@vger.kernel.org
5911 S:      Supported
5912 W:      http://www.linux-iscsi.org
5913 F:      drivers/infiniband/ulp/isert
5914
5915 ISDN SUBSYSTEM
5916 M:      Karsten Keil <isdn@linux-pingi.de>
5917 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5918 L:      netdev@vger.kernel.org
5919 W:      http://www.isdn4linux.de
5920 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
5921 S:      Maintained
5922 F:      Documentation/isdn/
5923 F:      drivers/isdn/
5924 F:      include/linux/isdn.h
5925 F:      include/linux/isdn/
5926 F:      include/uapi/linux/isdn.h
5927 F:      include/uapi/linux/isdn/
5928
5929 ISDN SUBSYSTEM (Eicon active card driver)
5930 M:      Armin Schindler <mac@melware.de>
5931 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5932 W:      http://www.melware.de
5933 S:      Maintained
5934 F:      drivers/isdn/hardware/eicon/
5935
5936 IT87 HARDWARE MONITORING DRIVER
5937 M:      Jean Delvare <jdelvare@suse.com>
5938 L:      lm-sensors@lm-sensors.org
5939 S:      Maintained
5940 F:      Documentation/hwmon/it87
5941 F:      drivers/hwmon/it87.c
5942
5943 IT913X MEDIA DRIVER
5944 M:      Antti Palosaari <crope@iki.fi>
5945 L:      linux-media@vger.kernel.org
5946 W:      https://linuxtv.org
5947 W:      http://palosaari.fi/linux/
5948 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5949 T:      git git://linuxtv.org/anttip/media_tree.git
5950 S:      Maintained
5951 F:      drivers/media/tuners/it913x*
5952
5953 IVTV VIDEO4LINUX DRIVER
5954 M:      Andy Walls <awalls@md.metrocast.net>
5955 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
5956 L:      linux-media@vger.kernel.org
5957 T:      git git://linuxtv.org/media_tree.git
5958 W:      http://www.ivtvdriver.org
5959 S:      Maintained
5960 F:      Documentation/video4linux/*.ivtv
5961 F:      drivers/media/pci/ivtv/
5962 F:      include/uapi/linux/ivtv*
5963
5964 IX2505V MEDIA DRIVER
5965 M:      Malcolm Priestley <tvboxspy@gmail.com>
5966 L:      linux-media@vger.kernel.org
5967 W:      https://linuxtv.org
5968 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5969 S:      Maintained
5970 F:      drivers/media/dvb-frontends/ix2505v*
5971
5972 JC42.4 TEMPERATURE SENSOR DRIVER
5973 M:      Guenter Roeck <linux@roeck-us.net>
5974 L:      lm-sensors@lm-sensors.org
5975 S:      Maintained
5976 F:      drivers/hwmon/jc42.c
5977 F:      Documentation/hwmon/jc42
5978
5979 JFS FILESYSTEM
5980 M:      Dave Kleikamp <shaggy@kernel.org>
5981 L:      jfs-discussion@lists.sourceforge.net
5982 W:      http://jfs.sourceforge.net/
5983 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
5984 S:      Maintained
5985 F:      Documentation/filesystems/jfs.txt
5986 F:      fs/jfs/
5987
5988 JME NETWORK DRIVER
5989 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
5990 L:      netdev@vger.kernel.org
5991 S:      Maintained
5992 F:      drivers/net/ethernet/jme.*
5993
5994 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
5995 M:      David Woodhouse <dwmw2@infradead.org>
5996 L:      linux-mtd@lists.infradead.org
5997 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
5998 S:      Maintained
5999 F:      fs/jffs2/
6000 F:      include/uapi/linux/jffs2.h
6001
6002 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
6003 M:      "Theodore Ts'o" <tytso@mit.edu>
6004 M:      Jan Kara <jack@suse.com>
6005 L:      linux-ext4@vger.kernel.org
6006 S:      Maintained
6007 F:      fs/jbd2/
6008 F:      include/linux/jbd2.h
6009
6010 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
6011 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
6012 L:      linux-media@vger.kernel.org
6013 S:      Maintained
6014 F:      drivers/media/platform/rcar_jpu.c
6015
6016 JSM Neo PCI based serial card
6017 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
6018 L:      linux-serial@vger.kernel.org
6019 S:      Maintained
6020 F:      drivers/tty/serial/jsm/
6021
6022 K10TEMP HARDWARE MONITORING DRIVER
6023 M:      Clemens Ladisch <clemens@ladisch.de>
6024 L:      lm-sensors@lm-sensors.org
6025 S:      Maintained
6026 F:      Documentation/hwmon/k10temp
6027 F:      drivers/hwmon/k10temp.c
6028
6029 K8TEMP HARDWARE MONITORING DRIVER
6030 M:      Rudolf Marek <r.marek@assembler.cz>
6031 L:      lm-sensors@lm-sensors.org
6032 S:      Maintained
6033 F:      Documentation/hwmon/k8temp
6034 F:      drivers/hwmon/k8temp.c
6035
6036 KCONFIG
6037 M:      "Yann E. MORIN" <yann.morin.1998@free.fr>
6038 L:      linux-kbuild@vger.kernel.org
6039 T:      git git://gitorious.org/linux-kconfig/linux-kconfig
6040 S:      Maintained
6041 F:      Documentation/kbuild/kconfig-language.txt
6042 F:      scripts/kconfig/
6043
6044 KDUMP
6045 M:      Vivek Goyal <vgoyal@redhat.com>
6046 M:      Haren Myneni <hbabu@us.ibm.com>
6047 L:      kexec@lists.infradead.org
6048 W:      http://lse.sourceforge.net/kdump/
6049 S:      Maintained
6050 F:      Documentation/kdump/
6051
6052 KEENE FM RADIO TRANSMITTER DRIVER
6053 M:      Hans Verkuil <hverkuil@xs4all.nl>
6054 L:      linux-media@vger.kernel.org
6055 T:      git git://linuxtv.org/media_tree.git
6056 W:      https://linuxtv.org
6057 S:      Maintained
6058 F:      drivers/media/radio/radio-keene*
6059
6060 KERNEL AUTOMOUNTER v4 (AUTOFS4)
6061 M:      Ian Kent <raven@themaw.net>
6062 L:      autofs@vger.kernel.org
6063 S:      Maintained
6064 F:      fs/autofs4/
6065
6066 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
6067 M:      Michal Marek <mmarek@suse.com>
6068 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
6069 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
6070 L:      linux-kbuild@vger.kernel.org
6071 S:      Maintained
6072 F:      Documentation/kbuild/
6073 F:      Makefile
6074 F:      scripts/Makefile.*
6075 F:      scripts/basic/
6076 F:      scripts/mk*
6077 F:      scripts/package/
6078
6079 KERNEL JANITORS
6080 L:      kernel-janitors@vger.kernel.org
6081 W:      http://kernelnewbies.org/KernelJanitors
6082 S:      Odd Fixes
6083
6084 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
6085 M:      "J. Bruce Fields" <bfields@fieldses.org>
6086 M:      Jeff Layton <jlayton@poochiereds.net>
6087 L:      linux-nfs@vger.kernel.org
6088 W:      http://nfs.sourceforge.net/
6089 S:      Supported
6090 F:      fs/nfsd/
6091 F:      include/uapi/linux/nfsd/
6092 F:      fs/lockd/
6093 F:      fs/nfs_common/
6094 F:      net/sunrpc/
6095 F:      include/linux/lockd/
6096 F:      include/linux/sunrpc/
6097 F:      include/uapi/linux/sunrpc/
6098
6099 KERNEL SELFTEST FRAMEWORK
6100 M:      Shuah Khan <shuahkh@osg.samsung.com>
6101 L:      linux-api@vger.kernel.org
6102 T:      git git://git.kernel.org/pub/scm/shuah/linux-kselftest
6103 S:      Maintained
6104 F:      tools/testing/selftests
6105
6106 KERNEL VIRTUAL MACHINE (KVM)
6107 M:      Gleb Natapov <gleb@kernel.org>
6108 M:      Paolo Bonzini <pbonzini@redhat.com>
6109 L:      kvm@vger.kernel.org
6110 W:      http://www.linux-kvm.org
6111 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
6112 S:      Supported
6113 F:      Documentation/*/kvm*.txt
6114 F:      Documentation/virtual/kvm/
6115 F:      arch/*/kvm/
6116 F:      arch/x86/kernel/kvm.c
6117 F:      arch/x86/kernel/kvmclock.c
6118 F:      arch/*/include/asm/kvm*
6119 F:      include/linux/kvm*
6120 F:      include/uapi/linux/kvm*
6121 F:      virt/kvm/
6122
6123 KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
6124 M:      Joerg Roedel <joro@8bytes.org>
6125 L:      kvm@vger.kernel.org
6126 W:      http://www.linux-kvm.org/
6127 S:      Maintained
6128 F:      arch/x86/include/asm/svm.h
6129 F:      arch/x86/kvm/svm.c
6130
6131 KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
6132 M:      Alexander Graf <agraf@suse.com>
6133 L:      kvm-ppc@vger.kernel.org
6134 W:      http://www.linux-kvm.org/
6135 T:      git git://github.com/agraf/linux-2.6.git
6136 S:      Supported
6137 F:      arch/powerpc/include/asm/kvm*
6138 F:      arch/powerpc/kvm/
6139
6140 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
6141 M:      Christian Borntraeger <borntraeger@de.ibm.com>
6142 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
6143 L:      linux-s390@vger.kernel.org
6144 W:      http://www.ibm.com/developerworks/linux/linux390/
6145 S:      Supported
6146 F:      Documentation/s390/kvm.txt
6147 F:      arch/s390/include/asm/kvm*
6148 F:      arch/s390/kvm/
6149
6150 KERNEL VIRTUAL MACHINE (KVM) FOR ARM
6151 M:      Christoffer Dall <christoffer.dall@linaro.org>
6152 M:      Marc Zyngier <marc.zyngier@arm.com>
6153 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6154 L:      kvmarm@lists.cs.columbia.edu
6155 W:      http://systems.cs.columbia.edu/projects/kvm-arm
6156 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
6157 S:      Supported
6158 F:      arch/arm/include/uapi/asm/kvm*
6159 F:      arch/arm/include/asm/kvm*
6160 F:      arch/arm/kvm/
6161 F:      virt/kvm/arm/
6162 F:      include/kvm/arm_*
6163
6164 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
6165 M:      Christoffer Dall <christoffer.dall@linaro.org>
6166 M:      Marc Zyngier <marc.zyngier@arm.com>
6167 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6168 L:      kvmarm@lists.cs.columbia.edu
6169 S:      Maintained
6170 F:      arch/arm64/include/uapi/asm/kvm*
6171 F:      arch/arm64/include/asm/kvm*
6172 F:      arch/arm64/kvm/
6173
6174 KEXEC
6175 M:      Eric Biederman <ebiederm@xmission.com>
6176 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
6177 L:      kexec@lists.infradead.org
6178 S:      Maintained
6179 F:      include/linux/kexec.h
6180 F:      include/uapi/linux/kexec.h
6181 F:      kernel/kexec.c
6182
6183 KEYS/KEYRINGS:
6184 M:      David Howells <dhowells@redhat.com>
6185 L:      keyrings@vger.kernel.org
6186 S:      Maintained
6187 F:      Documentation/security/keys.txt
6188 F:      include/linux/key.h
6189 F:      include/linux/key-type.h
6190 F:      include/keys/
6191 F:      security/keys/
6192
6193 KEYS-TRUSTED
6194 M:      David Safford <safford@us.ibm.com>
6195 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6196 L:      linux-security-module@vger.kernel.org
6197 L:      keyrings@vger.kernel.org
6198 S:      Supported
6199 F:      Documentation/security/keys-trusted-encrypted.txt
6200 F:      include/keys/trusted-type.h
6201 F:      security/keys/trusted.c
6202 F:      security/keys/trusted.h
6203
6204 KEYS-ENCRYPTED
6205 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6206 M:      David Safford <safford@us.ibm.com>
6207 L:      linux-security-module@vger.kernel.org
6208 L:      keyrings@vger.kernel.org
6209 S:      Supported
6210 F:      Documentation/security/keys-trusted-encrypted.txt
6211 F:      include/keys/encrypted-type.h
6212 F:      security/keys/encrypted-keys/
6213
6214 KGDB / KDB /debug_core
6215 M:      Jason Wessel <jason.wessel@windriver.com>
6216 W:      http://kgdb.wiki.kernel.org/
6217 L:      kgdb-bugreport@lists.sourceforge.net
6218 S:      Maintained
6219 F:      Documentation/DocBook/kgdb.tmpl
6220 F:      drivers/misc/kgdbts.c
6221 F:      drivers/tty/serial/kgdboc.c
6222 F:      include/linux/kdb.h
6223 F:      include/linux/kgdb.h
6224 F:      kernel/debug/
6225
6226 KMEMCHECK
6227 M:      Vegard Nossum <vegardno@ifi.uio.no>
6228 M:      Pekka Enberg <penberg@kernel.org>
6229 S:      Maintained
6230 F:      Documentation/kmemcheck.txt
6231 F:      arch/x86/include/asm/kmemcheck.h
6232 F:      arch/x86/mm/kmemcheck/
6233 F:      include/linux/kmemcheck.h
6234 F:      mm/kmemcheck.c
6235
6236 KMEMLEAK
6237 M:      Catalin Marinas <catalin.marinas@arm.com>
6238 S:      Maintained
6239 F:      Documentation/kmemleak.txt
6240 F:      include/linux/kmemleak.h
6241 F:      mm/kmemleak.c
6242 F:      mm/kmemleak-test.c
6243
6244 KPROBES
6245 M:      Ananth N Mavinakayanahalli <ananth@in.ibm.com>
6246 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
6247 M:      "David S. Miller" <davem@davemloft.net>
6248 M:      Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
6249 S:      Maintained
6250 F:      Documentation/kprobes.txt
6251 F:      include/linux/kprobes.h
6252 F:      kernel/kprobes.c
6253
6254 KS0108 LCD CONTROLLER DRIVER
6255 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
6256 W:      http://miguelojeda.es/auxdisplay.htm
6257 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
6258 S:      Maintained
6259 F:      Documentation/auxdisplay/ks0108
6260 F:      drivers/auxdisplay/ks0108.c
6261 F:      include/linux/ks0108.h
6262
6263 L3MDEV
6264 M:      David Ahern <dsa@cumulusnetworks.com>
6265 L:      netdev@vger.kernel.org
6266 S:      Maintained
6267 F:      net/l3mdev
6268 F:      include/net/l3mdev.h
6269
6270 LAPB module
6271 L:      linux-x25@vger.kernel.org
6272 S:      Orphan
6273 F:      Documentation/networking/lapb-module.txt
6274 F:      include/*/lapb.h
6275 F:      net/lapb/
6276
6277 LASI 53c700 driver for PARISC
6278 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
6279 L:      linux-scsi@vger.kernel.org
6280 S:      Maintained
6281 F:      Documentation/scsi/53c700.txt
6282 F:      drivers/scsi/53c700*
6283
6284 LED SUBSYSTEM
6285 M:      Richard Purdie <rpurdie@rpsys.net>
6286 M:      Jacek Anaszewski <j.anaszewski@samsung.com>
6287 L:      linux-leds@vger.kernel.org
6288 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
6289 S:      Maintained
6290 F:      drivers/leds/
6291 F:      include/linux/leds.h
6292
6293 LEGACY EEPROM DRIVER
6294 M:      Jean Delvare <jdelvare@suse.com>
6295 S:      Maintained
6296 F:      Documentation/misc-devices/eeprom
6297 F:      drivers/misc/eeprom/eeprom.c
6298
6299 LEGO USB Tower driver
6300 M:      Juergen Stuber <starblue@users.sourceforge.net>
6301 L:      legousb-devel@lists.sourceforge.net
6302 W:      http://legousb.sourceforge.net/
6303 S:      Maintained
6304 F:      drivers/usb/misc/legousbtower.c
6305
6306 LG2160 MEDIA DRIVER
6307 M:      Michael Krufky <mkrufky@linuxtv.org>
6308 L:      linux-media@vger.kernel.org
6309 W:      https://linuxtv.org
6310 W:      http://github.com/mkrufky
6311 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6312 T:      git git://linuxtv.org/mkrufky/tuners.git
6313 S:      Maintained
6314 F:      drivers/media/dvb-frontends/lg2160.*
6315
6316 LGDT3305 MEDIA DRIVER
6317 M:      Michael Krufky <mkrufky@linuxtv.org>
6318 L:      linux-media@vger.kernel.org
6319 W:      https://linuxtv.org
6320 W:      http://github.com/mkrufky
6321 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6322 T:      git git://linuxtv.org/mkrufky/tuners.git
6323 S:      Maintained
6324 F:      drivers/media/dvb-frontends/lgdt3305.*
6325
6326 LGUEST
6327 M:      Rusty Russell <rusty@rustcorp.com.au>
6328 L:      lguest@lists.ozlabs.org
6329 W:      http://lguest.ozlabs.org/
6330 S:      Odd Fixes
6331 F:      arch/x86/include/asm/lguest*.h
6332 F:      arch/x86/lguest/
6333 F:      drivers/lguest/
6334 F:      include/linux/lguest*.h
6335 F:      tools/lguest/
6336
6337 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
6338 M:      Tejun Heo <tj@kernel.org>
6339 L:      linux-ide@vger.kernel.org
6340 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6341 S:      Maintained
6342 F:      drivers/ata/
6343 F:      include/linux/ata.h
6344 F:      include/linux/libata.h
6345
6346 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
6347 M:      Viresh Kumar <vireshk@kernel.org>
6348 L:      linux-ide@vger.kernel.org
6349 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6350 S:      Maintained
6351 F:      include/linux/pata_arasan_cf_data.h
6352 F:      drivers/ata/pata_arasan_cf.c
6353
6354 LIBATA PATA DRIVERS
6355 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6356 M:      Tejun Heo <tj@kernel.org>
6357 L:      linux-ide@vger.kernel.org
6358 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6359 S:      Maintained
6360 F:      drivers/ata/pata_*.c
6361 F:      drivers/ata/ata_generic.c
6362
6363 LIBATA SATA AHCI PLATFORM devices support
6364 M:      Hans de Goede <hdegoede@redhat.com>
6365 M:      Tejun Heo <tj@kernel.org>
6366 L:      linux-ide@vger.kernel.org
6367 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6368 S:      Maintained
6369 F:      drivers/ata/ahci_platform.c
6370 F:      drivers/ata/libahci_platform.c
6371 F:      include/linux/ahci_platform.h
6372
6373 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
6374 M:      Mikael Pettersson <mikpelinux@gmail.com>
6375 L:      linux-ide@vger.kernel.org
6376 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6377 S:      Maintained
6378 F:      drivers/ata/sata_promise.*
6379
6380 LIBLOCKDEP
6381 M:      Sasha Levin <sasha.levin@oracle.com>
6382 S:      Maintained
6383 F:      tools/lib/lockdep/
6384
6385 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
6386 M:      Dan Williams <dan.j.williams@intel.com>
6387 L:      linux-nvdimm@lists.01.org
6388 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6389 S:      Supported
6390 F:      drivers/nvdimm/*
6391 F:      include/linux/nd.h
6392 F:      include/linux/libnvdimm.h
6393 F:      include/uapi/linux/ndctl.h
6394
6395 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
6396 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6397 L:      linux-nvdimm@lists.01.org
6398 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6399 S:      Supported
6400 F:      drivers/nvdimm/blk.c
6401 F:      drivers/nvdimm/region_devs.c
6402 F:      drivers/acpi/nfit*
6403
6404 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
6405 M:      Vishal Verma <vishal.l.verma@intel.com>
6406 L:      linux-nvdimm@lists.01.org
6407 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6408 S:      Supported
6409 F:      drivers/nvdimm/btt*
6410
6411 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
6412 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6413 L:      linux-nvdimm@lists.01.org
6414 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6415 S:      Supported
6416 F:      drivers/nvdimm/pmem.c
6417 F:      include/linux/pmem.h
6418 F:      arch/*/include/asm/pmem.h
6419
6420 LIGHTNVM PLATFORM SUPPORT
6421 M:      Matias Bjorling <mb@lightnvm.io>
6422 W:      http://github/OpenChannelSSD
6423 L:      linux-block@vger.kernel.org
6424 S:      Maintained
6425 F:      drivers/lightnvm/
6426 F:      include/linux/lightnvm.h
6427 F:      include/uapi/linux/lightnvm.h
6428
6429 LINUX FOR IBM pSERIES (RS/6000)
6430 M:      Paul Mackerras <paulus@au.ibm.com>
6431 W:      http://www.ibm.com/linux/ltc/projects/ppc
6432 S:      Supported
6433 F:      arch/powerpc/boot/rs6000.h
6434
6435 LINUX FOR POWERPC (32-BIT AND 64-BIT)
6436 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6437 M:      Paul Mackerras <paulus@samba.org>
6438 M:      Michael Ellerman <mpe@ellerman.id.au>
6439 W:      http://www.penguinppc.org/
6440 L:      linuxppc-dev@lists.ozlabs.org
6441 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
6442 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
6443 S:      Supported
6444 F:      Documentation/powerpc/
6445 F:      arch/powerpc/
6446
6447 LINUX FOR POWER MACINTOSH
6448 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6449 W:      http://www.penguinppc.org/
6450 L:      linuxppc-dev@lists.ozlabs.org
6451 S:      Maintained
6452 F:      arch/powerpc/platforms/powermac/
6453 F:      drivers/macintosh/
6454
6455 LINUX FOR POWERPC EMBEDDED MPC5XXX
6456 M:      Anatolij Gustschin <agust@denx.de>
6457 L:      linuxppc-dev@lists.ozlabs.org
6458 T:      git git://git.denx.de/linux-denx-agust.git
6459 S:      Maintained
6460 F:      arch/powerpc/platforms/512x/
6461 F:      arch/powerpc/platforms/52xx/
6462
6463 LINUX FOR POWERPC EMBEDDED PPC4XX
6464 M:      Alistair Popple <alistair@popple.id.au>
6465 M:      Matt Porter <mporter@kernel.crashing.org>
6466 W:      http://www.penguinppc.org/
6467 L:      linuxppc-dev@lists.ozlabs.org
6468 S:      Maintained
6469 F:      arch/powerpc/platforms/40x/
6470 F:      arch/powerpc/platforms/44x/
6471
6472 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
6473 L:      linuxppc-dev@lists.ozlabs.org
6474 S:      Orphan
6475 F:      arch/powerpc/*/*virtex*
6476 F:      arch/powerpc/*/*/*virtex*
6477
6478 LINUX FOR POWERPC EMBEDDED PPC8XX
6479 M:      Vitaly Bordug <vitb@kernel.crashing.org>
6480 W:      http://www.penguinppc.org/
6481 L:      linuxppc-dev@lists.ozlabs.org
6482 S:      Maintained
6483 F:      arch/powerpc/platforms/8xx/
6484
6485 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
6486 M:      Scott Wood <oss@buserror.net>
6487 M:      Kumar Gala <galak@kernel.crashing.org>
6488 W:      http://www.penguinppc.org/
6489 L:      linuxppc-dev@lists.ozlabs.org
6490 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
6491 S:      Maintained
6492 F:      arch/powerpc/platforms/83xx/
6493 F:      arch/powerpc/platforms/85xx/
6494
6495 LINUX FOR POWERPC PA SEMI PWRFICIENT
6496 M:      Olof Johansson <olof@lixom.net>
6497 L:      linuxppc-dev@lists.ozlabs.org
6498 S:      Maintained
6499 F:      arch/powerpc/platforms/pasemi/
6500 F:      drivers/*/*pasemi*
6501 F:      drivers/*/*/*pasemi*
6502
6503 LINUX SECURITY MODULE (LSM) FRAMEWORK
6504 M:      Chris Wright <chrisw@sous-sol.org>
6505 L:      linux-security-module@vger.kernel.org
6506 S:      Supported
6507
6508 LIS3LV02D ACCELEROMETER DRIVER
6509 M:      Eric Piel <eric.piel@tremplin-utc.net>
6510 S:      Maintained
6511 F:      Documentation/misc-devices/lis3lv02d
6512 F:      drivers/misc/lis3lv02d/
6513 F:      drivers/platform/x86/hp_accel.c
6514
6515 LIVE PATCHING
6516 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6517 M:      Seth Jennings <sjenning@redhat.com>
6518 M:      Jiri Kosina <jikos@kernel.org>
6519 M:      Vojtech Pavlik <vojtech@suse.com>
6520 S:      Maintained
6521 F:      kernel/livepatch/
6522 F:      include/linux/livepatch.h
6523 F:      arch/x86/include/asm/livepatch.h
6524 F:      arch/x86/kernel/livepatch.c
6525 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
6526 F:      samples/livepatch/
6527 L:      live-patching@vger.kernel.org
6528 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
6529
6530 LLC (802.2)
6531 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
6532 S:      Maintained
6533 F:      include/linux/llc.h
6534 F:      include/uapi/linux/llc.h
6535 F:      include/net/llc*
6536 F:      net/llc/
6537
6538 LM73 HARDWARE MONITOR DRIVER
6539 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
6540 L:      lm-sensors@lm-sensors.org
6541 S:      Maintained
6542 F:      drivers/hwmon/lm73.c
6543
6544 LM78 HARDWARE MONITOR DRIVER
6545 M:      Jean Delvare <jdelvare@suse.com>
6546 L:      lm-sensors@lm-sensors.org
6547 S:      Maintained
6548 F:      Documentation/hwmon/lm78
6549 F:      drivers/hwmon/lm78.c
6550
6551 LM83 HARDWARE MONITOR DRIVER
6552 M:      Jean Delvare <jdelvare@suse.com>
6553 L:      lm-sensors@lm-sensors.org
6554 S:      Maintained
6555 F:      Documentation/hwmon/lm83
6556 F:      drivers/hwmon/lm83.c
6557
6558 LM90 HARDWARE MONITOR DRIVER
6559 M:      Jean Delvare <jdelvare@suse.com>
6560 L:      lm-sensors@lm-sensors.org
6561 S:      Maintained
6562 F:      Documentation/hwmon/lm90
6563 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
6564 F:      drivers/hwmon/lm90.c
6565
6566 LM95234 HARDWARE MONITOR DRIVER
6567 M:      Guenter Roeck <linux@roeck-us.net>
6568 L:      lm-sensors@lm-sensors.org
6569 S:      Maintained
6570 F:      Documentation/hwmon/lm95234
6571 F:      drivers/hwmon/lm95234.c
6572
6573 LME2510 MEDIA DRIVER
6574 M:      Malcolm Priestley <tvboxspy@gmail.com>
6575 L:      linux-media@vger.kernel.org
6576 W:      https://linuxtv.org
6577 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6578 S:      Maintained
6579 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
6580
6581 LOCKDEP AND LOCKSTAT
6582 M:      Peter Zijlstra <peterz@infradead.org>
6583 M:      Ingo Molnar <mingo@redhat.com>
6584 L:      linux-kernel@vger.kernel.org
6585 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
6586 S:      Maintained
6587 F:      Documentation/locking/lockdep*.txt
6588 F:      Documentation/locking/lockstat.txt
6589 F:      include/linux/lockdep.h
6590 F:      kernel/locking/
6591
6592 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
6593 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
6594 L:      linux-ntfs-dev@lists.sourceforge.net
6595 W:      http://www.linux-ntfs.org/content/view/19/37/
6596 S:      Maintained
6597 F:      Documentation/ldm.txt
6598 F:      block/partitions/ldm.*
6599
6600 LogFS
6601 M:      Joern Engel <joern@logfs.org>
6602 M:      Prasad Joshi <prasadjoshi.linux@gmail.com>
6603 L:      logfs@logfs.org
6604 W:      logfs.org
6605 S:      Maintained
6606 F:      fs/logfs/
6607
6608 LPC32XX MACHINE SUPPORT
6609 M:      Roland Stigge <stigge@antcom.de>
6610 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6611 S:      Maintained
6612 F:      arch/arm/mach-lpc32xx/
6613
6614 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
6615 M:      Nagalakshmi Nandigama <nagalakshmi.nandigama@avagotech.com>
6616 M:      Praveen Krishnamoorthy <praveen.krishnamoorthy@avagotech.com>
6617 M:      Sreekanth Reddy <sreekanth.reddy@avagotech.com>
6618 M:      Abhijit Mahajan <abhijit.mahajan@avagotech.com>
6619 L:      MPT-FusionLinux.pdl@avagotech.com
6620 L:      linux-scsi@vger.kernel.org
6621 W:      http://www.lsilogic.com/support
6622 S:      Supported
6623 F:      drivers/message/fusion/
6624 F:      drivers/scsi/mpt2sas/
6625 F:      drivers/scsi/mpt3sas/
6626
6627 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
6628 M:      Matthew Wilcox <matthew@wil.cx>
6629 L:      linux-scsi@vger.kernel.org
6630 S:      Maintained
6631 F:      drivers/scsi/sym53c8xx_2/
6632
6633 LTC4261 HARDWARE MONITOR DRIVER
6634 M:      Guenter Roeck <linux@roeck-us.net>
6635 L:      lm-sensors@lm-sensors.org
6636 S:      Maintained
6637 F:      Documentation/hwmon/ltc4261
6638 F:      drivers/hwmon/ltc4261.c
6639
6640 LTP (Linux Test Project)
6641 M:      Mike Frysinger <vapier@gentoo.org>
6642 M:      Cyril Hrubis <chrubis@suse.cz>
6643 M:      Wanlong Gao <wanlong.gao@gmail.com>
6644 M:      Jan Stancek <jstancek@redhat.com>
6645 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
6646 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
6647 L:      ltp@lists.linux.it (subscribers-only)
6648 W:      http://linux-test-project.github.io/
6649 T:      git git://github.com/linux-test-project/ltp.git
6650 S:      Maintained
6651
6652 M32R ARCHITECTURE
6653 W:      http://www.linux-m32r.org/
6654 S:      Orphan
6655 F:      arch/m32r/
6656
6657 M68K ARCHITECTURE
6658 M:      Geert Uytterhoeven <geert@linux-m68k.org>
6659 L:      linux-m68k@lists.linux-m68k.org
6660 W:      http://www.linux-m68k.org/
6661 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
6662 S:      Maintained
6663 F:      arch/m68k/
6664 F:      drivers/zorro/
6665
6666 M68K ON APPLE MACINTOSH
6667 M:      Joshua Thompson <funaho@jurai.org>
6668 W:      http://www.mac.linux-m68k.org/
6669 L:      linux-m68k@lists.linux-m68k.org
6670 S:      Maintained
6671 F:      arch/m68k/mac/
6672
6673 M68K ON HP9000/300
6674 M:      Philip Blundell <philb@gnu.org>
6675 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
6676 S:      Maintained
6677 F:      arch/m68k/hp300/
6678
6679 M88DS3103 MEDIA DRIVER
6680 M:      Antti Palosaari <crope@iki.fi>
6681 L:      linux-media@vger.kernel.org
6682 W:      https://linuxtv.org
6683 W:      http://palosaari.fi/linux/
6684 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6685 T:      git git://linuxtv.org/anttip/media_tree.git
6686 S:      Maintained
6687 F:      drivers/media/dvb-frontends/m88ds3103*
6688
6689 M88RS2000 MEDIA DRIVER
6690 M:      Malcolm Priestley <tvboxspy@gmail.com>
6691 L:      linux-media@vger.kernel.org
6692 W:      https://linuxtv.org
6693 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6694 S:      Maintained
6695 F:      drivers/media/dvb-frontends/m88rs2000*
6696
6697 MA901 MASTERKIT USB FM RADIO DRIVER
6698 M:      Alexey Klimov <klimov.linux@gmail.com>
6699 L:      linux-media@vger.kernel.org
6700 T:      git git://linuxtv.org/media_tree.git
6701 S:      Maintained
6702 F:      drivers/media/radio/radio-ma901.c
6703
6704 MAC80211
6705 M:      Johannes Berg <johannes@sipsolutions.net>
6706 L:      linux-wireless@vger.kernel.org
6707 W:      http://wireless.kernel.org/
6708 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6709 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
6710 S:      Maintained
6711 F:      Documentation/networking/mac80211-injection.txt
6712 F:      include/net/mac80211.h
6713 F:      net/mac80211/
6714
6715 MACVLAN DRIVER
6716 M:      Patrick McHardy <kaber@trash.net>
6717 L:      netdev@vger.kernel.org
6718 S:      Maintained
6719 F:      drivers/net/macvlan.c
6720 F:      include/linux/if_macvlan.h
6721
6722 MAILBOX API
6723 M:      Jassi Brar <jassisinghbrar@gmail.com>
6724 L:      linux-kernel@vger.kernel.org
6725 S:      Maintained
6726 F:      drivers/mailbox/
6727 F:      include/linux/mailbox_client.h
6728 F:      include/linux/mailbox_controller.h
6729
6730 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
6731 M:      Michael Kerrisk <mtk.manpages@gmail.com>
6732 W:      http://www.kernel.org/doc/man-pages
6733 L:      linux-man@vger.kernel.org
6734 S:      Maintained
6735
6736 MARVELL ARMADA DRM SUPPORT
6737 M:      Russell King <rmk+kernel@arm.linux.org.uk>
6738 S:      Maintained
6739 F:      drivers/gpu/drm/armada/
6740
6741 MARVELL 88E6352 DSA support
6742 M:      Guenter Roeck <linux@roeck-us.net>
6743 S:      Maintained
6744 F:      drivers/net/dsa/mv88e6352.c
6745
6746 MARVELL CRYPTO DRIVER
6747 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
6748 M:      Arnaud Ebalard <arno@natisbad.org>
6749 F:      drivers/crypto/marvell/
6750 S:      Maintained
6751 L:      linux-crypto@vger.kernel.org
6752
6753 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
6754 M:      Mirko Lindner <mlindner@marvell.com>
6755 M:      Stephen Hemminger <stephen@networkplumber.org>
6756 L:      netdev@vger.kernel.org
6757 S:      Maintained
6758 F:      drivers/net/ethernet/marvell/sk*
6759
6760 MARVELL LIBERTAS WIRELESS DRIVER
6761 L:      libertas-dev@lists.infradead.org
6762 S:      Orphan
6763 F:      drivers/net/wireless/marvell/libertas/
6764
6765 MARVELL MV643XX ETHERNET DRIVER
6766 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
6767 L:      netdev@vger.kernel.org
6768 S:      Maintained
6769 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
6770 F:      include/linux/mv643xx.h
6771
6772 MARVELL MVNETA ETHERNET DRIVER
6773 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
6774 L:      netdev@vger.kernel.org
6775 S:      Maintained
6776 F:      drivers/net/ethernet/marvell/mvneta.*
6777
6778 MARVELL MWIFIEX WIRELESS DRIVER
6779 M:      Amitkumar Karwar <akarwar@marvell.com>
6780 M:      Nishant Sarmukadam <nishants@marvell.com>
6781 L:      linux-wireless@vger.kernel.org
6782 S:      Maintained
6783 F:      drivers/net/wireless/marvell/mwifiex/
6784
6785 MARVELL MWL8K WIRELESS DRIVER
6786 M:      Lennert Buytenhek <buytenh@wantstofly.org>
6787 L:      linux-wireless@vger.kernel.org
6788 S:      Odd Fixes
6789 F:      drivers/net/wireless/marvell/mwl8k.c
6790
6791 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
6792 M:      Nicolas Pitre <nico@fluxnic.net>
6793 S:      Odd Fixes
6794 F:      drivers/mmc/host/mvsdio.*
6795
6796 MATROX FRAMEBUFFER DRIVER
6797 L:      linux-fbdev@vger.kernel.org
6798 S:      Orphan
6799 F:      drivers/video/fbdev/matrox/matroxfb_*
6800 F:      include/uapi/linux/matroxfb.h
6801
6802 MAX16065 HARDWARE MONITOR DRIVER
6803 M:      Guenter Roeck <linux@roeck-us.net>
6804 L:      lm-sensors@lm-sensors.org
6805 S:      Maintained
6806 F:      Documentation/hwmon/max16065
6807 F:      drivers/hwmon/max16065.c
6808
6809 MAX20751 HARDWARE MONITOR DRIVER
6810 M:      Guenter Roeck <linux@roeck-us.net>
6811 L:      lm-sensors@lm-sensors.org
6812 S:      Maintained
6813 F:      Documentation/hwmon/max20751
6814 F:      drivers/hwmon/max20751.c
6815
6816 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6817 M:      "Hans J. Koch" <hjk@hansjkoch.de>
6818 L:      lm-sensors@lm-sensors.org
6819 S:      Maintained
6820 F:      Documentation/hwmon/max6650
6821 F:      drivers/hwmon/max6650.c
6822
6823 MAX6697 HARDWARE MONITOR DRIVER
6824 M:      Guenter Roeck <linux@roeck-us.net>
6825 L:      lm-sensors@lm-sensors.org
6826 S:      Maintained
6827 F:      Documentation/hwmon/max6697
6828 F:      Documentation/devicetree/bindings/i2c/max6697.txt
6829 F:      drivers/hwmon/max6697.c
6830 F:      include/linux/platform_data/max6697.h
6831
6832 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
6833 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6834 L:      linux-pm@vger.kernel.org
6835 S:      Supported
6836 F:      drivers/power/max14577_charger.c
6837 F:      drivers/power/max77693_charger.c
6838
6839 MAXIM MAX77802 MULTIFUNCTION PMIC DEVICE DRIVERS
6840 M:      Javier Martinez Canillas <javier@osg.samsung.com>
6841 L:      linux-kernel@vger.kernel.org
6842 S:      Supported
6843 F:      drivers/*/*max77802.c
6844 F:      Documentation/devicetree/bindings/*/*max77802.txt
6845 F:      include/dt-bindings/*/*max77802.h
6846
6847 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
6848 M:      Chanwoo Choi <cw00.choi@samsung.com>
6849 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6850 L:      linux-kernel@vger.kernel.org
6851 S:      Supported
6852 F:      drivers/*/max14577.c
6853 F:      drivers/*/max77686.c
6854 F:      drivers/*/max77693.c
6855 F:      drivers/extcon/extcon-max14577.c
6856 F:      drivers/extcon/extcon-max77693.c
6857 F:      drivers/rtc/rtc-max77686.c
6858 F:      drivers/clk/clk-max77686.c
6859 F:      Documentation/devicetree/bindings/mfd/max14577.txt
6860 F:      Documentation/devicetree/bindings/*/max77686.txt
6861 F:      Documentation/devicetree/bindings/mfd/max77693.txt
6862 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
6863 F:      include/linux/mfd/max14577*.h
6864 F:      include/linux/mfd/max77686*.h
6865 F:      include/linux/mfd/max77693*.h
6866
6867 MAXIRADIO FM RADIO RECEIVER DRIVER
6868 M:      Hans Verkuil <hverkuil@xs4all.nl>
6869 L:      linux-media@vger.kernel.org
6870 T:      git git://linuxtv.org/media_tree.git
6871 W:      https://linuxtv.org
6872 S:      Maintained
6873 F:      drivers/media/radio/radio-maxiradio*
6874
6875 MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVER
6876 M:      Peter Rosin <peda@axentia.se>
6877 L:      linux-iio@vger.kernel.org
6878 S:      Maintained
6879 F:      drivers/iio/potentiometer/mcp4531.c
6880
6881 MEDIA DRIVERS FOR RENESAS - VSP1
6882 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6883 L:      linux-media@vger.kernel.org
6884 L:      linux-renesas-soc@vger.kernel.org
6885 T:      git git://linuxtv.org/media_tree.git
6886 S:      Supported
6887 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
6888 F:      drivers/media/platform/vsp1/
6889
6890 MEDIA DRIVERS FOR ASCOT2E
6891 M:      Sergey Kozlov <serjk@netup.ru>
6892 L:      linux-media@vger.kernel.org
6893 W:      https://linuxtv.org
6894 W:      http://netup.tv/
6895 T:      git git://linuxtv.org/media_tree.git
6896 S:      Supported
6897 F:      drivers/media/dvb-frontends/ascot2e*
6898
6899 MEDIA DRIVERS FOR CXD2841ER
6900 M:      Sergey Kozlov <serjk@netup.ru>
6901 L:      linux-media@vger.kernel.org
6902 W:      https://linuxtv.org
6903 W:      http://netup.tv/
6904 T:      git git://linuxtv.org/media_tree.git
6905 S:      Supported
6906 F:      drivers/media/dvb-frontends/cxd2841er*
6907
6908 MEDIA DRIVERS FOR HORUS3A
6909 M:      Sergey Kozlov <serjk@netup.ru>
6910 L:      linux-media@vger.kernel.org
6911 W:      https://linuxtv.org
6912 W:      http://netup.tv/
6913 T:      git git://linuxtv.org/media_tree.git
6914 S:      Supported
6915 F:      drivers/media/dvb-frontends/horus3a*
6916
6917 MEDIA DRIVERS FOR LNBH25
6918 M:      Sergey Kozlov <serjk@netup.ru>
6919 L:      linux-media@vger.kernel.org
6920 W:      https://linuxtv.org
6921 W:      http://netup.tv/
6922 T:      git git://linuxtv.org/media_tree.git
6923 S:      Supported
6924 F:      drivers/media/dvb-frontends/lnbh25*
6925
6926 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
6927 M:      Sergey Kozlov <serjk@netup.ru>
6928 L:      linux-media@vger.kernel.org
6929 W:      https://linuxtv.org
6930 W:      http://netup.tv/
6931 T:      git git://linuxtv.org/media_tree.git
6932 S:      Supported
6933 F:      drivers/media/pci/netup_unidvb/*
6934
6935 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
6936 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
6937 P:      LinuxTV.org Project
6938 L:      linux-media@vger.kernel.org
6939 W:      https://linuxtv.org
6940 Q:      http://patchwork.kernel.org/project/linux-media/list/
6941 T:      git git://linuxtv.org/media_tree.git
6942 S:      Maintained
6943 F:      Documentation/dvb/
6944 F:      Documentation/video4linux/
6945 F:      Documentation/DocBook/media/
6946 F:      drivers/media/
6947 F:      drivers/staging/media/
6948 F:      include/linux/platform_data/media/
6949 F:      include/media/
6950 F:      include/uapi/linux/dvb/
6951 F:      include/uapi/linux/videodev2.h
6952 F:      include/uapi/linux/media.h
6953 F:      include/uapi/linux/v4l2-*
6954 F:      include/uapi/linux/meye.h
6955 F:      include/uapi/linux/ivtv*
6956 F:      include/uapi/linux/uvcvideo.h
6957
6958 MEDIATEK MT7601U WIRELESS LAN DRIVER
6959 M:      Jakub Kicinski <kubakici@wp.pl>
6960 L:      linux-wireless@vger.kernel.org
6961 S:      Maintained
6962 F:      drivers/net/wireless/mediatek/mt7601u/
6963
6964 MEGARAID SCSI/SAS DRIVERS
6965 M:      Kashyap Desai <kashyap.desai@avagotech.com>
6966 M:      Sumit Saxena <sumit.saxena@avagotech.com>
6967 M:      Uday Lingala <uday.lingala@avagotech.com>
6968 L:      megaraidlinux.pdl@avagotech.com
6969 L:      linux-scsi@vger.kernel.org
6970 W:      http://www.lsi.com
6971 S:      Maintained
6972 F:      Documentation/scsi/megaraid.txt
6973 F:      drivers/scsi/megaraid.*
6974 F:      drivers/scsi/megaraid/
6975
6976 MELLANOX ETHERNET DRIVER (mlx4_en)
6977 M:      Eugenia Emantayev <eugenia@mellanox.com>
6978 L:      netdev@vger.kernel.org
6979 S:      Supported
6980 W:      http://www.mellanox.com
6981 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6982 F:      drivers/net/ethernet/mellanox/mlx4/en_*
6983
6984 MELLANOX ETHERNET DRIVER (mlx5e)
6985 M:      Saeed Mahameed <saeedm@mellanox.com>
6986 L:      netdev@vger.kernel.org
6987 S:      Supported
6988 W:      http://www.mellanox.com
6989 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6990 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
6991
6992 MELLANOX ETHERNET SWITCH DRIVERS
6993 M:      Jiri Pirko <jiri@mellanox.com>
6994 M:      Ido Schimmel <idosch@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/mlxsw/
7000
7001 MEMBARRIER SUPPORT
7002 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7003 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
7004 L:      linux-kernel@vger.kernel.org
7005 S:      Supported
7006 F:      kernel/membarrier.c
7007 F:      include/uapi/linux/membarrier.h
7008
7009 MEMORY MANAGEMENT
7010 L:      linux-mm@kvack.org
7011 W:      http://www.linux-mm.org
7012 S:      Maintained
7013 F:      include/linux/mm.h
7014 F:      include/linux/gfp.h
7015 F:      include/linux/mmzone.h
7016 F:      include/linux/memory_hotplug.h
7017 F:      include/linux/vmalloc.h
7018 F:      mm/
7019
7020 MEMORY TECHNOLOGY DEVICES (MTD)
7021 M:      David Woodhouse <dwmw2@infradead.org>
7022 M:      Brian Norris <computersforpeace@gmail.com>
7023 L:      linux-mtd@lists.infradead.org
7024 W:      http://www.linux-mtd.infradead.org/
7025 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
7026 T:      git git://git.infradead.org/linux-mtd.git
7027 T:      git git://git.infradead.org/l2-mtd.git
7028 S:      Maintained
7029 F:      drivers/mtd/
7030 F:      include/linux/mtd/
7031 F:      include/uapi/mtd/
7032
7033 MEN A21 WATCHDOG DRIVER
7034 M:      Johannes Thumshirn <morbidrsa@gmail.com>
7035 L:      linux-watchdog@vger.kernel.org
7036 S:      Maintained
7037 F:      drivers/watchdog/mena21_wdt.c
7038
7039 MEN CHAMELEON BUS (mcb)
7040 M:      Johannes Thumshirn <morbidrsa@gmail.com>
7041 S:      Maintained
7042 F:      drivers/mcb/
7043 F:      include/linux/mcb.h
7044 F:      Documentation/men-chameleon-bus.txt
7045
7046 MEN F21BMC (Board Management Controller)
7047 M:      Andreas Werner <andreas.werner@men.de>
7048 S:      Supported
7049 F:      drivers/mfd/menf21bmc.c
7050 F:      drivers/watchdog/menf21bmc_wdt.c
7051 F:      drivers/leds/leds-menf21bmc.c
7052 F:      drivers/hwmon/menf21bmc_hwmon.c
7053 F:      Documentation/hwmon/menf21bmc
7054
7055 METAG ARCHITECTURE
7056 M:      James Hogan <james.hogan@imgtec.com>
7057 L:      linux-metag@vger.kernel.org
7058 S:      Odd Fixes
7059 F:      arch/metag/
7060 F:      Documentation/metag/
7061 F:      Documentation/devicetree/bindings/metag/
7062 F:      Documentation/devicetree/bindings/interrupt-controller/img,*
7063 F:      drivers/clocksource/metag_generic.c
7064 F:      drivers/irqchip/irq-metag.c
7065 F:      drivers/irqchip/irq-metag-ext.c
7066 F:      drivers/tty/metag_da.c
7067
7068 MICROBLAZE ARCHITECTURE
7069 M:      Michal Simek <monstr@monstr.eu>
7070 W:      http://www.monstr.eu/fdt/
7071 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
7072 S:      Supported
7073 F:      arch/microblaze/
7074
7075 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
7076 M:      Chen Yu <yu.c.chen@intel.com>
7077 L:      platform-driver-x86@vger.kernel.org
7078 S:      Supported
7079 F:      drivers/platform/x86/surfacepro3_button.c
7080
7081 MICROTEK X6 SCANNER
7082 M:      Oliver Neukum <oliver@neukum.org>
7083 S:      Maintained
7084 F:      drivers/usb/image/microtek.*
7085
7086 MIPS
7087 M:      Ralf Baechle <ralf@linux-mips.org>
7088 L:      linux-mips@linux-mips.org
7089 W:      http://www.linux-mips.org/
7090 T:      git git://git.linux-mips.org/pub/scm/ralf/linux.git
7091 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
7092 S:      Supported
7093 F:      Documentation/mips/
7094 F:      arch/mips/
7095
7096 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
7097 M:      Hans Verkuil <hverkuil@xs4all.nl>
7098 L:      linux-media@vger.kernel.org
7099 T:      git git://linuxtv.org/media_tree.git
7100 W:      https://linuxtv.org
7101 S:      Odd Fixes
7102 F:      drivers/media/radio/radio-miropcm20*
7103
7104 Mellanox MLX5 core VPI driver
7105 M:      Eli Cohen <eli@mellanox.com>
7106 L:      netdev@vger.kernel.org
7107 L:      linux-rdma@vger.kernel.org
7108 W:      http://www.mellanox.com
7109 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7110 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
7111 T:      git git://openfabrics.org/~eli/connect-ib.git
7112 S:      Supported
7113 F:      drivers/net/ethernet/mellanox/mlx5/core/
7114 F:      include/linux/mlx5/
7115
7116 Mellanox MLX5 IB driver
7117 M:      Eli Cohen <eli@mellanox.com>
7118 L:      linux-rdma@vger.kernel.org
7119 W:      http://www.mellanox.com
7120 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
7121 T:      git git://openfabrics.org/~eli/connect-ib.git
7122 S:      Supported
7123 F:      include/linux/mlx5/
7124 F:      drivers/infiniband/hw/mlx5/
7125
7126 MELEXIS MLX90614 DRIVER
7127 M:      Crt Mori <cmo@melexis.com>
7128 L:      linux-iio@vger.kernel.org
7129 W:      http://www.melexis.com
7130 S:      Supported
7131 F:      drivers/iio/temperature/mlx90614.c
7132
7133 MN88472 MEDIA DRIVER
7134 M:      Antti Palosaari <crope@iki.fi>
7135 L:      linux-media@vger.kernel.org
7136 W:      https://linuxtv.org
7137 W:      http://palosaari.fi/linux/
7138 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7139 T:      git git://linuxtv.org/anttip/media_tree.git
7140 S:      Maintained
7141 F:      drivers/staging/media/mn88472/
7142 F:      drivers/media/dvb-frontends/mn88472.h
7143
7144 MN88473 MEDIA DRIVER
7145 M:      Antti Palosaari <crope@iki.fi>
7146 L:      linux-media@vger.kernel.org
7147 W:      https://linuxtv.org
7148 W:      http://palosaari.fi/linux/
7149 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7150 T:      git git://linuxtv.org/anttip/media_tree.git
7151 S:      Maintained
7152 F:      drivers/staging/media/mn88473/
7153 F:      drivers/media/dvb-frontends/mn88473.h
7154
7155 MODULE SUPPORT
7156 M:      Rusty Russell <rusty@rustcorp.com.au>
7157 S:      Maintained
7158 F:      include/linux/module.h
7159 F:      kernel/module.c
7160
7161 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
7162 W:      http://popies.net/meye/
7163 S:      Orphan
7164 F:      Documentation/video4linux/meye.txt
7165 F:      drivers/media/pci/meye/
7166 F:      include/uapi/linux/meye.h
7167
7168 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
7169 M:      Jiri Slaby <jirislaby@gmail.com>
7170 S:      Maintained
7171 F:      Documentation/serial/moxa-smartio
7172 F:      drivers/tty/mxser.*
7173
7174 MR800 AVERMEDIA USB FM RADIO DRIVER
7175 M:      Alexey Klimov <klimov.linux@gmail.com>
7176 L:      linux-media@vger.kernel.org
7177 T:      git git://linuxtv.org/media_tree.git
7178 S:      Maintained
7179 F:      drivers/media/radio/radio-mr800.c
7180
7181 MRF24J40 IEEE 802.15.4 RADIO DRIVER
7182 M:      Alan Ott <alan@signal11.us>
7183 L:      linux-wpan@vger.kernel.org
7184 S:      Maintained
7185 F:      drivers/net/ieee802154/mrf24j40.c
7186 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
7187
7188 MSI LAPTOP SUPPORT
7189 M:      "Lee, Chun-Yi" <jlee@suse.com>
7190 L:      platform-driver-x86@vger.kernel.org
7191 S:      Maintained
7192 F:      drivers/platform/x86/msi-laptop.c
7193
7194 MSI WMI SUPPORT
7195 L:      platform-driver-x86@vger.kernel.org
7196 S:      Orphan
7197 F:      drivers/platform/x86/msi-wmi.c
7198
7199 MSI001 MEDIA DRIVER
7200 M:      Antti Palosaari <crope@iki.fi>
7201 L:      linux-media@vger.kernel.org
7202 W:      https://linuxtv.org
7203 W:      http://palosaari.fi/linux/
7204 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7205 T:      git git://linuxtv.org/anttip/media_tree.git
7206 S:      Maintained
7207 F:      drivers/media/tuners/msi001*
7208
7209 MSI2500 MEDIA DRIVER
7210 M:      Antti Palosaari <crope@iki.fi>
7211 L:      linux-media@vger.kernel.org
7212 W:      https://linuxtv.org
7213 W:      http://palosaari.fi/linux/
7214 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7215 T:      git git://linuxtv.org/anttip/media_tree.git
7216 S:      Maintained
7217 F:      drivers/media/usb/msi2500/
7218
7219 MSYSTEMS DISKONCHIP G3 MTD DRIVER
7220 M:      Robert Jarzmik <robert.jarzmik@free.fr>
7221 L:      linux-mtd@lists.infradead.org
7222 S:      Maintained
7223 F:      drivers/mtd/devices/docg3*
7224
7225 MT9M032 APTINA SENSOR DRIVER
7226 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7227 L:      linux-media@vger.kernel.org
7228 T:      git git://linuxtv.org/media_tree.git
7229 S:      Maintained
7230 F:      drivers/media/i2c/mt9m032.c
7231 F:      include/media/i2c/mt9m032.h
7232
7233 MT9P031 APTINA CAMERA SENSOR
7234 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7235 L:      linux-media@vger.kernel.org
7236 T:      git git://linuxtv.org/media_tree.git
7237 S:      Maintained
7238 F:      drivers/media/i2c/mt9p031.c
7239 F:      include/media/i2c/mt9p031.h
7240
7241 MT9T001 APTINA CAMERA SENSOR
7242 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7243 L:      linux-media@vger.kernel.org
7244 T:      git git://linuxtv.org/media_tree.git
7245 S:      Maintained
7246 F:      drivers/media/i2c/mt9t001.c
7247 F:      include/media/i2c/mt9t001.h
7248
7249 MT9V032 APTINA CAMERA SENSOR
7250 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7251 L:      linux-media@vger.kernel.org
7252 T:      git git://linuxtv.org/media_tree.git
7253 S:      Maintained
7254 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
7255 F:      drivers/media/i2c/mt9v032.c
7256 F:      include/media/i2c/mt9v032.h
7257
7258 MULTIFUNCTION DEVICES (MFD)
7259 M:      Lee Jones <lee.jones@linaro.org>
7260 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
7261 S:      Supported
7262 F:      drivers/mfd/
7263 F:      include/linux/mfd/
7264
7265 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
7266 M:      Ulf Hansson <ulf.hansson@linaro.org>
7267 L:      linux-mmc@vger.kernel.org
7268 T:      git git://git.linaro.org/people/ulf.hansson/mmc.git
7269 S:      Maintained
7270 F:      drivers/mmc/
7271 F:      include/linux/mmc/
7272 F:      include/uapi/linux/mmc/
7273
7274 MULTIMEDIA CARD (MMC) ETC. OVER SPI
7275 S:      Orphan
7276 F:      drivers/mmc/host/mmc_spi.c
7277 F:      include/linux/spi/mmc_spi.h
7278
7279 MULTISOUND SOUND DRIVER
7280 M:      Andrew Veliath <andrewtv@usa.net>
7281 S:      Maintained
7282 F:      Documentation/sound/oss/MultiSound
7283 F:      sound/oss/msnd*
7284
7285 MULTITECH MULTIPORT CARD (ISICOM)
7286 S:      Orphan
7287 F:      drivers/tty/isicom.c
7288 F:      include/linux/isicom.h
7289
7290 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
7291 M:      Felipe Balbi <balbi@ti.com>
7292 L:      linux-usb@vger.kernel.org
7293 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7294 S:      Maintained
7295 F:      drivers/usb/musb/
7296
7297 MXL5007T MEDIA DRIVER
7298 M:      Michael Krufky <mkrufky@linuxtv.org>
7299 L:      linux-media@vger.kernel.org
7300 W:      https://linuxtv.org
7301 W:      http://github.com/mkrufky
7302 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7303 T:      git git://linuxtv.org/mkrufky/tuners.git
7304 S:      Maintained
7305 F:      drivers/media/tuners/mxl5007t.*
7306
7307 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
7308 M:      Hyong-Youb Kim <hykim@myri.com>
7309 L:      netdev@vger.kernel.org
7310 W:      https://www.myricom.com/support/downloads/myri10ge.html
7311 S:      Supported
7312 F:      drivers/net/ethernet/myricom/myri10ge/
7313
7314 NATSEMI ETHERNET DRIVER (DP8381x)
7315 S:      Orphan
7316 F:      drivers/net/ethernet/natsemi/natsemi.c
7317
7318 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
7319 M:      Daniel Mack <zonque@gmail.com>
7320 S:      Maintained
7321 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7322 W:      http://www.native-instruments.com
7323 F:      sound/usb/caiaq/
7324
7325 NCP FILESYSTEM
7326 M:      Petr Vandrovec <petr@vandrovec.name>
7327 S:      Odd Fixes
7328 F:      fs/ncpfs/
7329
7330 NCR 5380 SCSI DRIVERS
7331 M:      Finn Thain <fthain@telegraphics.com.au>
7332 M:      Michael Schmitz <schmitzmic@gmail.com>
7333 L:      linux-scsi@vger.kernel.org
7334 S:      Maintained
7335 F:      Documentation/scsi/g_NCR5380.txt
7336 F:      drivers/scsi/NCR5380.*
7337 F:      drivers/scsi/arm/cumana_1.c
7338 F:      drivers/scsi/arm/oak.c
7339 F:      drivers/scsi/atari_NCR5380.c
7340 F:      drivers/scsi/atari_scsi.*
7341 F:      drivers/scsi/dmx3191d.c
7342 F:      drivers/scsi/dtc.*
7343 F:      drivers/scsi/g_NCR5380.*
7344 F:      drivers/scsi/g_NCR5380_mmio.c
7345 F:      drivers/scsi/mac_scsi.*
7346 F:      drivers/scsi/pas16.*
7347 F:      drivers/scsi/sun3_scsi.*
7348 F:      drivers/scsi/sun3_scsi_vme.c
7349 F:      drivers/scsi/t128.*
7350
7351 NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
7352 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
7353 L:      linux-scsi@vger.kernel.org
7354 S:      Maintained
7355 F:      drivers/scsi/NCR_D700.*
7356
7357 NCT6775 HARDWARE MONITOR DRIVER
7358 M:      Guenter Roeck <linux@roeck-us.net>
7359 L:      lm-sensors@lm-sensors.org
7360 S:      Maintained
7361 F:      Documentation/hwmon/nct6775
7362 F:      drivers/hwmon/nct6775.c
7363
7364 NETEFFECT IWARP RNIC DRIVER (IW_NES)
7365 M:      Faisal Latif <faisal.latif@intel.com>
7366 L:      linux-rdma@vger.kernel.org
7367 W:      http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
7368 S:      Supported
7369 F:      drivers/infiniband/hw/nes/
7370
7371 NETEM NETWORK EMULATOR
7372 M:      Stephen Hemminger <stephen@networkplumber.org>
7373 L:      netem@lists.linux-foundation.org
7374 S:      Maintained
7375 F:      net/sched/sch_netem.c
7376
7377 NETERION 10GbE DRIVERS (s2io/vxge)
7378 M:      Jon Mason <jdmason@kudzu.us>
7379 L:      netdev@vger.kernel.org
7380 S:      Supported
7381 F:      Documentation/networking/s2io.txt
7382 F:      Documentation/networking/vxge.txt
7383 F:      drivers/net/ethernet/neterion/
7384
7385 NETFILTER ({IP,IP6,ARP,EB,NF}TABLES)
7386 M:      Pablo Neira Ayuso <pablo@netfilter.org>
7387 M:      Patrick McHardy <kaber@trash.net>
7388 M:      Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
7389 L:      netfilter-devel@vger.kernel.org
7390 L:      coreteam@netfilter.org
7391 W:      http://www.netfilter.org/
7392 W:      http://www.iptables.org/
7393 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
7394 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
7395 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
7396 S:      Supported
7397 F:      include/linux/netfilter*
7398 F:      include/linux/netfilter/
7399 F:      include/net/netfilter/
7400 F:      include/uapi/linux/netfilter*
7401 F:      include/uapi/linux/netfilter/
7402 F:      net/*/netfilter.c
7403 F:      net/*/netfilter/
7404 F:      net/netfilter/
7405 F:      net/bridge/br_netfilter*.c
7406
7407 NETLABEL
7408 M:      Paul Moore <paul@paul-moore.com>
7409 W:      http://netlabel.sf.net
7410 L:      netdev@vger.kernel.org
7411 S:      Maintained
7412 F:      Documentation/netlabel/
7413 F:      include/net/netlabel.h
7414 F:      net/netlabel/
7415
7416 NETROM NETWORK LAYER
7417 M:      Ralf Baechle <ralf@linux-mips.org>
7418 L:      linux-hams@vger.kernel.org
7419 W:      http://www.linux-ax25.org/
7420 S:      Maintained
7421 F:      include/net/netrom.h
7422 F:      include/uapi/linux/netrom.h
7423 F:      net/netrom/
7424
7425 NETRONOME ETHERNET DRIVERS
7426 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
7427 M:      Rolf Neugebauer <rolf.neugebauer@netronome.com>
7428 L:      oss-drivers@netronome.com
7429 S:      Maintained
7430 F:      drivers/net/ethernet/netronome/
7431
7432 NETWORK BLOCK DEVICE (NBD)
7433 M:      Markus Pargmann <mpa@pengutronix.de>
7434 S:      Maintained
7435 L:      nbd-general@lists.sourceforge.net
7436 T:      git git://git.pengutronix.de/git/mpa/linux-nbd.git
7437 F:      Documentation/blockdev/nbd.txt
7438 F:      drivers/block/nbd.c
7439 F:      include/uapi/linux/nbd.h
7440
7441 NETWORK DROP MONITOR
7442 M:      Neil Horman <nhorman@tuxdriver.com>
7443 L:      netdev@vger.kernel.org
7444 S:      Maintained
7445 W:      https://fedorahosted.org/dropwatch/
7446 F:      net/core/drop_monitor.c
7447
7448 NETWORKING [GENERAL]
7449 M:      "David S. Miller" <davem@davemloft.net>
7450 L:      netdev@vger.kernel.org
7451 W:      http://www.linuxfoundation.org/en/Net
7452 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7453 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7454 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7455 S:      Maintained
7456 F:      net/
7457 F:      include/net/
7458 F:      include/linux/in.h
7459 F:      include/linux/net.h
7460 F:      include/linux/netdevice.h
7461 F:      include/uapi/linux/in.h
7462 F:      include/uapi/linux/net.h
7463 F:      include/uapi/linux/netdevice.h
7464 F:      include/uapi/linux/net_namespace.h
7465 F:      tools/net/
7466 F:      tools/testing/selftests/net/
7467 F:      lib/random32.c
7468 F:      lib/test_bpf.c
7469
7470 NETWORKING [IPv4/IPv6]
7471 M:      "David S. Miller" <davem@davemloft.net>
7472 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
7473 M:      James Morris <jmorris@namei.org>
7474 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
7475 M:      Patrick McHardy <kaber@trash.net>
7476 L:      netdev@vger.kernel.org
7477 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7478 S:      Maintained
7479 F:      net/ipv4/
7480 F:      net/ipv6/
7481 F:      include/net/ip*
7482 F:      arch/x86/net/*
7483
7484 NETWORKING [IPSEC]
7485 M:      Steffen Klassert <steffen.klassert@secunet.com>
7486 M:      Herbert Xu <herbert@gondor.apana.org.au>
7487 M:      "David S. Miller" <davem@davemloft.net>
7488 L:      netdev@vger.kernel.org
7489 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
7490 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
7491 S:      Maintained
7492 F:      net/core/flow.c
7493 F:      net/xfrm/
7494 F:      net/key/
7495 F:      net/ipv4/xfrm*
7496 F:      net/ipv4/esp4.c
7497 F:      net/ipv4/ah4.c
7498 F:      net/ipv4/ipcomp.c
7499 F:      net/ipv4/ip_vti.c
7500 F:      net/ipv6/xfrm*
7501 F:      net/ipv6/esp6.c
7502 F:      net/ipv6/ah6.c
7503 F:      net/ipv6/ipcomp6.c
7504 F:      net/ipv6/ip6_vti.c
7505 F:      include/uapi/linux/xfrm.h
7506 F:      include/net/xfrm.h
7507
7508 NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
7509 M:      Paul Moore <paul@paul-moore.com>
7510 L:      netdev@vger.kernel.org
7511 S:      Maintained
7512
7513 NETWORKING [WIRELESS]
7514 L:      linux-wireless@vger.kernel.org
7515 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7516
7517 NETWORKING DRIVERS
7518 L:      netdev@vger.kernel.org
7519 W:      http://www.linuxfoundation.org/en/Net
7520 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7521 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7522 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7523 S:      Odd Fixes
7524 F:      drivers/net/
7525 F:      include/linux/if_*
7526 F:      include/linux/netdevice.h
7527 F:      include/linux/etherdevice.h
7528 F:      include/linux/fcdevice.h
7529 F:      include/linux/fddidevice.h
7530 F:      include/linux/hippidevice.h
7531 F:      include/linux/inetdevice.h
7532 F:      include/uapi/linux/if_*
7533 F:      include/uapi/linux/netdevice.h
7534
7535 NETWORKING DRIVERS (WIRELESS)
7536 M:      Kalle Valo <kvalo@codeaurora.org>
7537 L:      linux-wireless@vger.kernel.org
7538 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7539 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git/
7540 S:      Maintained
7541 F:      drivers/net/wireless/
7542
7543 NETXEN (1/10) GbE SUPPORT
7544 M:      Manish Chopra <manish.chopra@qlogic.com>
7545 M:      Sony Chacko <sony.chacko@qlogic.com>
7546 M:      Rajesh Borundia <rajesh.borundia@qlogic.com>
7547 L:      netdev@vger.kernel.org
7548 W:      http://www.qlogic.com
7549 S:      Supported
7550 F:      drivers/net/ethernet/qlogic/netxen/
7551
7552 NFC SUBSYSTEM
7553 M:      Lauro Ramos Venancio <lauro.venancio@openbossa.org>
7554 M:      Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
7555 M:      Samuel Ortiz <sameo@linux.intel.com>
7556 L:      linux-wireless@vger.kernel.org
7557 L:      linux-nfc@lists.01.org (subscribers-only)
7558 S:      Supported
7559 F:      net/nfc/
7560 F:      include/net/nfc/
7561 F:      include/uapi/linux/nfc.h
7562 F:      drivers/nfc/
7563 F:      include/linux/platform_data/microread.h
7564 F:      include/linux/platform_data/nfcmrvl.h
7565 F:      include/linux/platform_data/nxp-nci.h
7566 F:      include/linux/platform_data/pn544.h
7567 F:      include/linux/platform_data/st21nfca.h
7568 F:      include/linux/platform_data/st-nci.h
7569 F:      Documentation/devicetree/bindings/net/nfc/
7570
7571 NFS, SUNRPC, AND LOCKD CLIENTS
7572 M:      Trond Myklebust <trond.myklebust@primarydata.com>
7573 M:      Anna Schumaker <anna.schumaker@netapp.com>
7574 L:      linux-nfs@vger.kernel.org
7575 W:      http://client.linux-nfs.org
7576 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
7577 S:      Maintained
7578 F:      fs/lockd/
7579 F:      fs/nfs/
7580 F:      fs/nfs_common/
7581 F:      net/sunrpc/
7582 F:      include/linux/lockd/
7583 F:      include/linux/nfs*
7584 F:      include/linux/sunrpc/
7585 F:      include/uapi/linux/nfs*
7586 F:      include/uapi/linux/sunrpc/
7587
7588 NILFS2 FILESYSTEM
7589 M:      Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
7590 L:      linux-nilfs@vger.kernel.org
7591 W:      http://nilfs.sourceforge.net/
7592 T:      git git://github.com/konis/nilfs2.git
7593 S:      Supported
7594 F:      Documentation/filesystems/nilfs2.txt
7595 F:      fs/nilfs2/
7596 F:      include/linux/nilfs2_fs.h
7597 F:      include/trace/events/nilfs2.h
7598
7599 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
7600 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7601 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7602 S:      Maintained
7603 F:      Documentation/scsi/NinjaSCSI.txt
7604 F:      drivers/scsi/pcmcia/nsp_*
7605
7606 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
7607 M:      GOTO Masanori <gotom@debian.or.jp>
7608 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7609 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7610 S:      Maintained
7611 F:      Documentation/scsi/NinjaSCSI.txt
7612 F:      drivers/scsi/nsp32*
7613
7614 NIOS2 ARCHITECTURE
7615 M:      Ley Foon Tan <lftan@altera.com>
7616 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
7617 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
7618 S:      Maintained
7619 F:      arch/nios2/
7620
7621 NOKIA N900 POWER SUPPLY DRIVERS
7622 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
7623 S:      Maintained
7624 F:      include/linux/power/bq2415x_charger.h
7625 F:      include/linux/power/bq27xxx_battery.h
7626 F:      include/linux/power/isp1704_charger.h
7627 F:      drivers/power/bq2415x_charger.c
7628 F:      drivers/power/bq27xxx_battery.c
7629 F:      drivers/power/isp1704_charger.c
7630 F:      drivers/power/rx51_battery.c
7631
7632 NTB DRIVER CORE
7633 M:      Jon Mason <jdmason@kudzu.us>
7634 M:      Dave Jiang <dave.jiang@intel.com>
7635 M:      Allen Hubbe <Allen.Hubbe@emc.com>
7636 L:      linux-ntb@googlegroups.com
7637 S:      Supported
7638 W:      https://github.com/jonmason/ntb/wiki
7639 T:      git git://github.com/jonmason/ntb.git
7640 F:      drivers/ntb/
7641 F:      drivers/net/ntb_netdev.c
7642 F:      include/linux/ntb.h
7643 F:      include/linux/ntb_transport.h
7644
7645 NTB INTEL DRIVER
7646 M:      Jon Mason <jdmason@kudzu.us>
7647 M:      Dave Jiang <dave.jiang@intel.com>
7648 L:      linux-ntb@googlegroups.com
7649 S:      Supported
7650 W:      https://github.com/jonmason/ntb/wiki
7651 T:      git git://github.com/jonmason/ntb.git
7652 F:      drivers/ntb/hw/intel/
7653
7654 NTFS FILESYSTEM
7655 M:      Anton Altaparmakov <anton@tuxera.com>
7656 L:      linux-ntfs-dev@lists.sourceforge.net
7657 W:      http://www.tuxera.com/
7658 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
7659 S:      Supported
7660 F:      Documentation/filesystems/ntfs.txt
7661 F:      fs/ntfs/
7662
7663 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
7664 M:      Antonino Daplas <adaplas@gmail.com>
7665 L:      linux-fbdev@vger.kernel.org
7666 S:      Maintained
7667 F:      drivers/video/fbdev/riva/
7668 F:      drivers/video/fbdev/nvidia/
7669
7670 NVM EXPRESS DRIVER
7671 M:      Keith Busch <keith.busch@intel.com>
7672 M:      Jens Axboe <axboe@fb.com>
7673 L:      linux-nvme@lists.infradead.org
7674 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
7675 W:      https://kernel.googlesource.com/pub/scm/linux/kernel/git/axboe/linux-block/
7676 S:      Supported
7677 F:      drivers/nvme/host/
7678 F:      include/linux/nvme.h
7679
7680 NVMEM FRAMEWORK
7681 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
7682 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
7683 S:      Maintained
7684 F:      drivers/nvmem/
7685 F:      Documentation/devicetree/bindings/nvmem/
7686 F:      include/linux/nvmem-consumer.h
7687 F:      include/linux/nvmem-provider.h
7688
7689 NXP-NCI NFC DRIVER
7690 M:      ClĂ©ment Perrochaud <clement.perrochaud@effinnov.com>
7691 R:      Charles Gorand <charles.gorand@effinnov.com>
7692 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
7693 S:      Supported
7694 F:      drivers/nfc/nxp-nci
7695
7696 NXP TDA998X DRM DRIVER
7697 M:      Russell King <rmk+kernel@arm.linux.org.uk>
7698 S:      Supported
7699 F:      drivers/gpu/drm/i2c/tda998x_drv.c
7700 F:      include/drm/i2c/tda998x.h
7701
7702 NXP TFA9879 DRIVER
7703 M:      Peter Rosin <peda@axentia.se>
7704 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7705 S:      Maintained
7706 F:      sound/soc/codecs/tfa9879*
7707
7708 OMAP SUPPORT
7709 M:      Tony Lindgren <tony@atomide.com>
7710 L:      linux-omap@vger.kernel.org
7711 W:      http://www.muru.com/linux/omap/
7712 W:      http://linux.omap.com/
7713 Q:      http://patchwork.kernel.org/project/linux-omap/list/
7714 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
7715 S:      Maintained
7716 F:      arch/arm/*omap*/
7717 F:      arch/arm/configs/omap1_defconfig
7718 F:      arch/arm/configs/omap2plus_defconfig
7719 F:      drivers/i2c/busses/i2c-omap.c
7720 F:      drivers/irqchip/irq-omap-intc.c
7721 F:      drivers/mfd/*omap*.c
7722 F:      drivers/mfd/menelaus.c
7723 F:      drivers/mfd/palmas.c
7724 F:      drivers/mfd/tps65217.c
7725 F:      drivers/mfd/tps65218.c
7726 F:      drivers/mfd/tps65910.c
7727 F:      drivers/mfd/twl-core.[ch]
7728 F:      drivers/mfd/twl4030*.c
7729 F:      drivers/mfd/twl6030*.c
7730 F:      drivers/mfd/twl6040*.c
7731 F:      drivers/regulator/palmas-regulator*.c
7732 F:      drivers/regulator/pbias-regulator.c
7733 F:      drivers/regulator/tps65217-regulator.c
7734 F:      drivers/regulator/tps65218-regulator.c
7735 F:      drivers/regulator/tps65910-regulator.c
7736 F:      drivers/regulator/twl-regulator.c
7737 F:      include/linux/i2c-omap.h
7738
7739 OMAP DEVICE TREE SUPPORT
7740 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7741 M:      Tony Lindgren <tony@atomide.com>
7742 L:      linux-omap@vger.kernel.org
7743 L:      devicetree@vger.kernel.org
7744 S:      Maintained
7745 F:      arch/arm/boot/dts/*omap*
7746 F:      arch/arm/boot/dts/*am3*
7747 F:      arch/arm/boot/dts/*am4*
7748 F:      arch/arm/boot/dts/*am5*
7749 F:      arch/arm/boot/dts/*dra7*
7750
7751 OMAP CLOCK FRAMEWORK SUPPORT
7752 M:      Paul Walmsley <paul@pwsan.com>
7753 L:      linux-omap@vger.kernel.org
7754 S:      Maintained
7755 F:      arch/arm/*omap*/*clock*
7756
7757 OMAP POWER MANAGEMENT SUPPORT
7758 M:      Kevin Hilman <khilman@deeprootsystems.com>
7759 L:      linux-omap@vger.kernel.org
7760 S:      Maintained
7761 F:      arch/arm/*omap*/*pm*
7762 F:      drivers/cpufreq/omap-cpufreq.c
7763
7764 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
7765 M:      Rajendra Nayak <rnayak@ti.com>
7766 M:      Paul Walmsley <paul@pwsan.com>
7767 L:      linux-omap@vger.kernel.org
7768 S:      Maintained
7769 F:      arch/arm/mach-omap2/prm*
7770
7771 OMAP AUDIO SUPPORT
7772 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
7773 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
7774 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7775 L:      linux-omap@vger.kernel.org
7776 S:      Maintained
7777 F:      sound/soc/omap/
7778
7779 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
7780 M:      Roger Quadros <rogerq@ti.com>
7781 M:      Tony Lindgren <tony@atomide.com>
7782 L:      linux-omap@vger.kernel.org
7783 S:      Maintained
7784 F:      drivers/memory/omap-gpmc.c
7785 F:      arch/arm/mach-omap2/*gpmc*
7786
7787 OMAP FRAMEBUFFER SUPPORT
7788 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
7789 L:      linux-fbdev@vger.kernel.org
7790 L:      linux-omap@vger.kernel.org
7791 S:      Maintained
7792 F:      drivers/video/fbdev/omap/
7793
7794 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
7795 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
7796 L:      linux-omap@vger.kernel.org
7797 L:      linux-fbdev@vger.kernel.org
7798 S:      Maintained
7799 F:      drivers/video/fbdev/omap2/
7800 F:      Documentation/arm/OMAP/DSS
7801
7802 OMAP HARDWARE SPINLOCK SUPPORT
7803 M:      Ohad Ben-Cohen <ohad@wizery.com>
7804 L:      linux-omap@vger.kernel.org
7805 S:      Maintained
7806 F:      drivers/hwspinlock/omap_hwspinlock.c
7807
7808 OMAP MMC SUPPORT
7809 M:      Jarkko Lavinen <jarkko.lavinen@nokia.com>
7810 L:      linux-omap@vger.kernel.org
7811 S:      Maintained
7812 F:      drivers/mmc/host/omap.c
7813
7814 OMAP HS MMC SUPPORT
7815 L:      linux-mmc@vger.kernel.org
7816 L:      linux-omap@vger.kernel.org
7817 S:      Orphan
7818 F:      drivers/mmc/host/omap_hsmmc.c
7819
7820 OMAP RANDOM NUMBER GENERATOR SUPPORT
7821 M:      Deepak Saxena <dsaxena@plexity.net>
7822 S:      Maintained
7823 F:      drivers/char/hw_random/omap-rng.c
7824
7825 OMAP HWMOD SUPPORT
7826 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7827 M:      Paul Walmsley <paul@pwsan.com>
7828 L:      linux-omap@vger.kernel.org
7829 S:      Maintained
7830 F:      arch/arm/mach-omap2/omap_hwmod.*
7831
7832 OMAP HWMOD DATA
7833 M:      Paul Walmsley <paul@pwsan.com>
7834 L:      linux-omap@vger.kernel.org
7835 S:      Maintained
7836 F:      arch/arm/mach-omap2/omap_hwmod*data*
7837
7838 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
7839 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7840 L:      linux-omap@vger.kernel.org
7841 S:      Maintained
7842 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
7843
7844 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
7845 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7846 L:      linux-media@vger.kernel.org
7847 S:      Maintained
7848 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
7849 F:      drivers/media/platform/omap3isp/
7850 F:      drivers/staging/media/omap4iss/
7851
7852 OMAP USB SUPPORT
7853 M:      Felipe Balbi <balbi@ti.com>
7854 L:      linux-usb@vger.kernel.org
7855 L:      linux-omap@vger.kernel.org
7856 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7857 S:      Maintained
7858 F:      drivers/usb/*/*omap*
7859 F:      arch/arm/*omap*/usb*
7860
7861 OMAP GPIO DRIVER
7862 M:      Grygorii Strashko <grygorii.strashko@ti.com>
7863 M:      Santosh Shilimkar <ssantosh@kernel.org>
7864 M:      Kevin Hilman <khilman@deeprootsystems.com>
7865 L:      linux-omap@vger.kernel.org
7866 S:      Maintained
7867 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
7868 F:      drivers/gpio/gpio-omap.c
7869
7870 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
7871 M:      Mark Jackson <mpfj@newflow.co.uk>
7872 L:      linux-omap@vger.kernel.org
7873 S:      Maintained
7874 F:      arch/arm/boot/dts/am335x-nano.dts
7875
7876 OMFS FILESYSTEM
7877 M:      Bob Copeland <me@bobcopeland.com>
7878 L:      linux-karma-devel@lists.sourceforge.net
7879 S:      Maintained
7880 F:      Documentation/filesystems/omfs.txt
7881 F:      fs/omfs/
7882
7883 OMNIKEY CARDMAN 4000 DRIVER
7884 M:      Harald Welte <laforge@gnumonks.org>
7885 S:      Maintained
7886 F:      drivers/char/pcmcia/cm4000_cs.c
7887 F:      include/linux/cm4000_cs.h
7888 F:      include/uapi/linux/cm4000_cs.h
7889
7890 OMNIKEY CARDMAN 4040 DRIVER
7891 M:      Harald Welte <laforge@gnumonks.org>
7892 S:      Maintained
7893 F:      drivers/char/pcmcia/cm4040_cs.*
7894
7895 OMNIVISION OV7670 SENSOR DRIVER
7896 M:      Jonathan Corbet <corbet@lwn.net>
7897 L:      linux-media@vger.kernel.org
7898 T:      git git://linuxtv.org/media_tree.git
7899 S:      Maintained
7900 F:      drivers/media/i2c/ov7670.c
7901
7902 ONENAND FLASH DRIVER
7903 M:      Kyungmin Park <kyungmin.park@samsung.com>
7904 L:      linux-mtd@lists.infradead.org
7905 S:      Maintained
7906 F:      drivers/mtd/onenand/
7907 F:      include/linux/mtd/onenand*.h
7908
7909 ONSTREAM SCSI TAPE DRIVER
7910 M:      Willem Riede <osst@riede.org>
7911 L:      osst-users@lists.sourceforge.net
7912 L:      linux-scsi@vger.kernel.org
7913 S:      Maintained
7914 F:      Documentation/scsi/osst.txt
7915 F:      drivers/scsi/osst.*
7916 F:      drivers/scsi/osst_*.h
7917 F:      drivers/scsi/st.h
7918
7919 OPENCORES I2C BUS DRIVER
7920 M:      Peter Korsgaard <jacmet@sunsite.dk>
7921 L:      linux-i2c@vger.kernel.org
7922 S:      Maintained
7923 F:      Documentation/i2c/busses/i2c-ocores
7924 F:      drivers/i2c/busses/i2c-ocores.c
7925
7926 OPEN FIRMWARE AND FLATTENED DEVICE TREE
7927 M:      Rob Herring <robh+dt@kernel.org>
7928 M:      Frank Rowand <frowand.list@gmail.com>
7929 M:      Grant Likely <grant.likely@linaro.org>
7930 L:      devicetree@vger.kernel.org
7931 W:      http://www.devicetree.org/
7932 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/glikely/linux.git
7933 S:      Maintained
7934 F:      drivers/of/
7935 F:      include/linux/of*.h
7936 F:      scripts/dtc/
7937
7938 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
7939 M:      Rob Herring <robh+dt@kernel.org>
7940 M:      Pawel Moll <pawel.moll@arm.com>
7941 M:      Mark Rutland <mark.rutland@arm.com>
7942 M:      Ian Campbell <ijc+devicetree@hellion.org.uk>
7943 M:      Kumar Gala <galak@codeaurora.org>
7944 L:      devicetree@vger.kernel.org
7945 S:      Maintained
7946 F:      Documentation/devicetree/
7947 F:      arch/*/boot/dts/
7948 F:      include/dt-bindings/
7949
7950 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
7951 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
7952 L:      devicetree@vger.kernel.org
7953 S:      Maintained
7954 F:      Documentation/devicetree/dynamic-resolution-notes.txt
7955 F:      Documentation/devicetree/overlay-notes.txt
7956 F:      drivers/of/overlay.c
7957 F:      drivers/of/resolver.c
7958
7959 OPENRISC ARCHITECTURE
7960 M:      Jonas Bonn <jonas@southpole.se>
7961 W:      http://openrisc.net
7962 L:      linux@lists.openrisc.net (moderated for non-subscribers)
7963 S:      Maintained
7964 T:      git git://openrisc.net/~jonas/linux
7965 F:      arch/openrisc/
7966
7967 OPENVSWITCH
7968 M:      Pravin Shelar <pshelar@nicira.com>
7969 L:      netdev@vger.kernel.org
7970 L:      dev@openvswitch.org
7971 W:      http://openvswitch.org
7972 S:      Maintained
7973 F:      net/openvswitch/
7974 F:      include/uapi/linux/openvswitch.h
7975
7976 OPERATING PERFORMANCE POINTS (OPP)
7977 M:      Viresh Kumar <vireshk@kernel.org>
7978 M:      Nishanth Menon <nm@ti.com>
7979 M:      Stephen Boyd <sboyd@codeaurora.org>
7980 L:      linux-pm@vger.kernel.org
7981 S:      Maintained
7982 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
7983 F:      drivers/base/power/opp/
7984 F:      include/linux/pm_opp.h
7985 F:      Documentation/power/opp.txt
7986 F:      Documentation/devicetree/bindings/opp/
7987
7988 OPL4 DRIVER
7989 M:      Clemens Ladisch <clemens@ladisch.de>
7990 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7991 T:      git git://git.alsa-project.org/alsa-kernel.git
7992 S:      Maintained
7993 F:      sound/drivers/opl4/
7994
7995 OPROFILE
7996 M:      Robert Richter <rric@kernel.org>
7997 L:      oprofile-list@lists.sf.net
7998 S:      Maintained
7999 F:      arch/*/include/asm/oprofile*.h
8000 F:      arch/*/oprofile/
8001 F:      drivers/oprofile/
8002 F:      include/linux/oprofile.h
8003
8004 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
8005 M:      Mark Fasheh <mfasheh@suse.com>
8006 M:      Joel Becker <jlbec@evilplan.org>
8007 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
8008 W:      http://ocfs2.wiki.kernel.org
8009 S:      Supported
8010 F:      Documentation/filesystems/ocfs2.txt
8011 F:      Documentation/filesystems/dlmfs.txt
8012 F:      fs/ocfs2/
8013
8014 ORINOCO DRIVER
8015 L:      linux-wireless@vger.kernel.org
8016 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
8017 W:      http://www.nongnu.org/orinoco/
8018 S:      Orphan
8019 F:      drivers/net/wireless/intersil/orinoco/
8020
8021 OSD LIBRARY and FILESYSTEM
8022 M:      Boaz Harrosh <ooo@electrozaur.com>
8023 M:      Benny Halevy <bhalevy@primarydata.com>
8024 L:      osd-dev@open-osd.org
8025 W:      http://open-osd.org
8026 T:      git git://git.open-osd.org/open-osd.git
8027 S:      Maintained
8028 F:      drivers/scsi/osd/
8029 F:      include/scsi/osd_*
8030 F:      fs/exofs/
8031
8032 OVERLAY FILESYSTEM
8033 M:      Miklos Szeredi <miklos@szeredi.hu>
8034 L:      linux-unionfs@vger.kernel.org
8035 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
8036 S:      Supported
8037 F:      fs/overlayfs/
8038 F:      Documentation/filesystems/overlayfs.txt
8039
8040 P54 WIRELESS DRIVER
8041 M:      Christian Lamparter <chunkeey@googlemail.com>
8042 L:      linux-wireless@vger.kernel.org
8043 W:      http://wireless.kernel.org/en/users/Drivers/p54
8044 S:      Maintained
8045 F:      drivers/net/wireless/intersil/p54/
8046
8047 PA SEMI ETHERNET DRIVER
8048 M:      Olof Johansson <olof@lixom.net>
8049 L:      netdev@vger.kernel.org
8050 S:      Maintained
8051 F:      drivers/net/ethernet/pasemi/*
8052
8053 PA SEMI SMBUS DRIVER
8054 M:      Olof Johansson <olof@lixom.net>
8055 L:      linux-i2c@vger.kernel.org
8056 S:      Maintained
8057 F:      drivers/i2c/busses/i2c-pasemi.c
8058
8059 PADATA PARALLEL EXECUTION MECHANISM
8060 M:      Steffen Klassert <steffen.klassert@secunet.com>
8061 L:      linux-crypto@vger.kernel.org
8062 S:      Maintained
8063 F:      kernel/padata.c
8064 F:      include/linux/padata.h
8065 F:      Documentation/padata.txt
8066
8067 PANASONIC LAPTOP ACPI EXTRAS DRIVER
8068 M:      Harald Welte <laforge@gnumonks.org>
8069 L:      platform-driver-x86@vger.kernel.org
8070 S:      Maintained
8071 F:      drivers/platform/x86/panasonic-laptop.c
8072
8073 PANASONIC MN10300/AM33/AM34 PORT
8074 M:      David Howells <dhowells@redhat.com>
8075 M:      Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
8076 L:      linux-am33-list@redhat.com (moderated for non-subscribers)
8077 W:      ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
8078 S:      Maintained
8079 F:      Documentation/mn10300/
8080 F:      arch/mn10300/
8081
8082 PARALLEL PORT SUBSYSTEM
8083 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
8084 M:      Sudip Mukherjee <sudip@vectorindia.org>
8085 L:      linux-parport@lists.infradead.org (subscribers-only)
8086 S:      Maintained
8087 F:      drivers/parport/
8088 F:      include/linux/parport*.h
8089 F:      drivers/char/ppdev.c
8090 F:      include/uapi/linux/ppdev.h
8091 F:      Documentation/parport*.txt
8092
8093 PARAVIRT_OPS INTERFACE
8094 M:      Jeremy Fitzhardinge <jeremy@goop.org>
8095 M:      Chris Wright <chrisw@sous-sol.org>
8096 M:      Alok Kataria <akataria@vmware.com>
8097 M:      Rusty Russell <rusty@rustcorp.com.au>
8098 L:      virtualization@lists.linux-foundation.org
8099 S:      Supported
8100 F:      Documentation/virtual/paravirt_ops.txt
8101 F:      arch/*/kernel/paravirt*
8102 F:      arch/*/include/asm/paravirt.h
8103
8104 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
8105 M:      Tim Waugh <tim@cyberelk.net>
8106 L:      linux-parport@lists.infradead.org (subscribers-only)
8107 S:      Maintained
8108 F:      Documentation/blockdev/paride.txt
8109 F:      drivers/block/paride/
8110
8111 PARISC ARCHITECTURE
8112 M:      "James E.J. Bottomley" <jejb@parisc-linux.org>
8113 M:      Helge Deller <deller@gmx.de>
8114 L:      linux-parisc@vger.kernel.org
8115 W:      http://www.parisc-linux.org/
8116 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
8117 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
8118 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
8119 S:      Maintained
8120 F:      arch/parisc/
8121 F:      Documentation/parisc/
8122 F:      drivers/parisc/
8123 F:      drivers/char/agp/parisc-agp.c
8124 F:      drivers/input/serio/gscps2.c
8125 F:      drivers/parport/parport_gsc.*
8126 F:      drivers/tty/serial/8250/8250_gsc.c
8127 F:      drivers/video/fbdev/sti*
8128 F:      drivers/video/console/sti*
8129 F:      drivers/video/logo/logo_parisc*
8130
8131 PC87360 HARDWARE MONITORING DRIVER
8132 M:      Jim Cromie <jim.cromie@gmail.com>
8133 L:      lm-sensors@lm-sensors.org
8134 S:      Maintained
8135 F:      Documentation/hwmon/pc87360
8136 F:      drivers/hwmon/pc87360.c
8137
8138 PC8736x GPIO DRIVER
8139 M:      Jim Cromie <jim.cromie@gmail.com>
8140 S:      Maintained
8141 F:      drivers/char/pc8736x_gpio.c
8142
8143 PC87427 HARDWARE MONITORING DRIVER
8144 M:      Jean Delvare <jdelvare@suse.com>
8145 L:      lm-sensors@lm-sensors.org
8146 S:      Maintained
8147 F:      Documentation/hwmon/pc87427
8148 F:      drivers/hwmon/pc87427.c
8149
8150 PCA9532 LED DRIVER
8151 M:      Riku Voipio <riku.voipio@iki.fi>
8152 S:      Maintained
8153 F:      drivers/leds/leds-pca9532.c
8154 F:      include/linux/leds-pca9532.h
8155
8156 PCA9541 I2C BUS MASTER SELECTOR DRIVER
8157 M:      Guenter Roeck <linux@roeck-us.net>
8158 L:      linux-i2c@vger.kernel.org
8159 S:      Maintained
8160 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
8161
8162 PCDP - PRIMARY CONSOLE AND DEBUG PORT
8163 M:      Khalid Aziz <khalid@gonehiking.org>
8164 S:      Maintained
8165 F:      drivers/firmware/pcdp.*
8166
8167 PCI ERROR RECOVERY
8168 M:      Linas Vepstas <linasvepstas@gmail.com>
8169 L:      linux-pci@vger.kernel.org
8170 S:      Supported
8171 F:      Documentation/PCI/pci-error-recovery.txt
8172
8173 PCI SUBSYSTEM
8174 M:      Bjorn Helgaas <bhelgaas@google.com>
8175 L:      linux-pci@vger.kernel.org
8176 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
8177 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
8178 S:      Supported
8179 F:      Documentation/PCI/
8180 F:      drivers/pci/
8181 F:      include/linux/pci*
8182 F:      arch/x86/pci/
8183 F:      arch/x86/kernel/quirks.c
8184
8185 PCI DRIVER FOR ALTERA PCIE IP
8186 M:      Ley Foon Tan <lftan@altera.com>
8187 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
8188 L:      linux-pci@vger.kernel.org
8189 S:      Supported
8190 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
8191 F:      drivers/pci/host/pcie-altera.c
8192
8193 PCI DRIVER FOR ARM VERSATILE PLATFORM
8194 M:      Rob Herring <robh@kernel.org>
8195 L:      linux-pci@vger.kernel.org
8196 L:      linux-arm-kernel@lists.infradead.org
8197 S:      Maintained
8198 F:      Documentation/devicetree/bindings/pci/versatile.txt
8199 F:      drivers/pci/host/pci-versatile.c
8200
8201 PCI DRIVER FOR APPLIEDMICRO XGENE
8202 M:      Tanmay Inamdar <tinamdar@apm.com>
8203 L:      linux-pci@vger.kernel.org
8204 L:      linux-arm-kernel@lists.infradead.org
8205 S:      Maintained
8206 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
8207 F:      drivers/pci/host/pci-xgene.c
8208
8209 PCI DRIVER FOR FREESCALE LAYERSCAPE
8210 M:      Minghuan Lian <minghuan.Lian@freescale.com>
8211 M:      Mingkai Hu <mingkai.hu@freescale.com>
8212 M:      Roy Zang <tie-fei.zang@freescale.com>
8213 L:      linuxppc-dev@lists.ozlabs.org
8214 L:      linux-pci@vger.kernel.org
8215 L:      linux-arm-kernel@lists.infradead.org
8216 S:      Maintained
8217 F:      drivers/pci/host/*layerscape*
8218
8219 PCI DRIVER FOR IMX6
8220 M:      Richard Zhu <Richard.Zhu@freescale.com>
8221 M:      Lucas Stach <l.stach@pengutronix.de>
8222 L:      linux-pci@vger.kernel.org
8223 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8224 S:      Maintained
8225 F:      drivers/pci/host/*imx6*
8226
8227 PCI DRIVER FOR TI KEYSTONE
8228 M:      Murali Karicheri <m-karicheri2@ti.com>
8229 L:      linux-pci@vger.kernel.org
8230 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8231 S:      Maintained
8232 F:      drivers/pci/host/*keystone*
8233
8234 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
8235 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8236 M:      Jason Cooper <jason@lakedaemon.net>
8237 L:      linux-pci@vger.kernel.org
8238 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8239 S:      Maintained
8240 F:      drivers/pci/host/*mvebu*
8241
8242 PCI DRIVER FOR NVIDIA TEGRA
8243 M:      Thierry Reding <thierry.reding@gmail.com>
8244 L:      linux-tegra@vger.kernel.org
8245 L:      linux-pci@vger.kernel.org
8246 S:      Supported
8247 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
8248 F:      drivers/pci/host/pci-tegra.c
8249
8250 PCI DRIVER FOR TI DRA7XX
8251 M:      Kishon Vijay Abraham I <kishon@ti.com>
8252 L:      linux-omap@vger.kernel.org
8253 L:      linux-pci@vger.kernel.org
8254 S:      Supported
8255 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
8256 F:      drivers/pci/host/pci-dra7xx.c
8257
8258 PCI DRIVER FOR RENESAS R-CAR
8259 M:      Simon Horman <horms@verge.net.au>
8260 L:      linux-pci@vger.kernel.org
8261 L:      linux-renesas-soc@vger.kernel.org
8262 S:      Maintained
8263 F:      drivers/pci/host/*rcar*
8264
8265 PCI DRIVER FOR SAMSUNG EXYNOS
8266 M:      Jingoo Han <jingoohan1@gmail.com>
8267 L:      linux-pci@vger.kernel.org
8268 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8269 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8270 S:      Maintained
8271 F:      drivers/pci/host/pci-exynos.c
8272
8273 PCI DRIVER FOR SYNOPSIS DESIGNWARE
8274 M:      Jingoo Han <jingoohan1@gmail.com>
8275 M:      Pratyush Anand <pratyush.anand@gmail.com>
8276 L:      linux-pci@vger.kernel.org
8277 S:      Maintained
8278 F:      drivers/pci/host/*designware*
8279
8280 PCI DRIVER FOR GENERIC OF HOSTS
8281 M:      Will Deacon <will.deacon@arm.com>
8282 L:      linux-pci@vger.kernel.org
8283 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8284 S:      Maintained
8285 F:      Documentation/devicetree/bindings/pci/host-generic-pci.txt
8286 F:      drivers/pci/host/pci-host-generic.c
8287
8288 PCIE DRIVER FOR ST SPEAR13XX
8289 M:      Pratyush Anand <pratyush.anand@gmail.com>
8290 L:      linux-pci@vger.kernel.org
8291 S:      Maintained
8292 F:      drivers/pci/host/*spear*
8293
8294 PCI MSI DRIVER FOR ALTERA MSI IP
8295 M:      Ley Foon Tan <lftan@altera.com>
8296 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
8297 L:      linux-pci@vger.kernel.org
8298 S:      Supported
8299 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
8300 F:      drivers/pci/host/pcie-altera-msi.c
8301
8302 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
8303 M:      Duc Dang <dhdang@apm.com>
8304 L:      linux-pci@vger.kernel.org
8305 L:      linux-arm-kernel@lists.infradead.org
8306 S:      Maintained
8307 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
8308 F:      drivers/pci/host/pci-xgene-msi.c
8309
8310 PCIE DRIVER FOR HISILICON
8311 M:      Zhou Wang <wangzhou1@hisilicon.com>
8312 L:      linux-pci@vger.kernel.org
8313 S:      Maintained
8314 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
8315 F:      drivers/pci/host/pcie-hisi.c
8316
8317 PCMCIA SUBSYSTEM
8318 P:      Linux PCMCIA Team
8319 L:      linux-pcmcia@lists.infradead.org
8320 W:      http://lists.infradead.org/mailman/listinfo/linux-pcmcia
8321 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
8322 S:      Maintained
8323 F:      Documentation/pcmcia/
8324 F:      drivers/pcmcia/
8325 F:      include/pcmcia/
8326
8327 PCNET32 NETWORK DRIVER
8328 M:      Don Fry <pcnet32@frontier.com>
8329 L:      netdev@vger.kernel.org
8330 S:      Maintained
8331 F:      drivers/net/ethernet/amd/pcnet32.c
8332
8333 PCRYPT PARALLEL CRYPTO ENGINE
8334 M:      Steffen Klassert <steffen.klassert@secunet.com>
8335 L:      linux-crypto@vger.kernel.org
8336 S:      Maintained
8337 F:      crypto/pcrypt.c
8338 F:      include/crypto/pcrypt.h
8339
8340 PER-CPU MEMORY ALLOCATOR
8341 M:      Tejun Heo <tj@kernel.org>
8342 M:      Christoph Lameter <cl@linux-foundation.org>
8343 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
8344 S:      Maintained
8345 F:      include/linux/percpu*.h
8346 F:      mm/percpu*.c
8347 F:      arch/*/include/asm/percpu.h
8348
8349 PER-TASK DELAY ACCOUNTING
8350 M:      Balbir Singh <bsingharora@gmail.com>
8351 S:      Maintained
8352 F:      include/linux/delayacct.h
8353 F:      kernel/delayacct.c
8354
8355 PERFORMANCE EVENTS SUBSYSTEM
8356 M:      Peter Zijlstra <peterz@infradead.org>
8357 M:      Ingo Molnar <mingo@redhat.com>
8358 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
8359 L:      linux-kernel@vger.kernel.org
8360 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
8361 S:      Supported
8362 F:      kernel/events/*
8363 F:      include/linux/perf_event.h
8364 F:      include/uapi/linux/perf_event.h
8365 F:      arch/*/kernel/perf_event*.c
8366 F:      arch/*/kernel/*/perf_event*.c
8367 F:      arch/*/kernel/*/*/perf_event*.c
8368 F:      arch/*/include/asm/perf_event.h
8369 F:      arch/*/kernel/perf_callchain.c
8370 F:      tools/perf/
8371
8372 PERSONALITY HANDLING
8373 M:      Christoph Hellwig <hch@infradead.org>
8374 L:      linux-abi-devel@lists.sourceforge.net
8375 S:      Maintained
8376 F:      include/linux/personality.h
8377 F:      include/uapi/linux/personality.h
8378
8379 PHONET PROTOCOL
8380 M:      Remi Denis-Courmont <courmisch@gmail.com>
8381 S:      Supported
8382 F:      Documentation/networking/phonet.txt
8383 F:      include/linux/phonet.h
8384 F:      include/net/phonet/
8385 F:      include/uapi/linux/phonet.h
8386 F:      net/phonet/
8387
8388 PHRAM MTD DRIVER
8389 M:      Joern Engel <joern@lazybastard.org>
8390 L:      linux-mtd@lists.infradead.org
8391 S:      Maintained
8392 F:      drivers/mtd/devices/phram.c
8393
8394 PICOLCD HID DRIVER
8395 M:      Bruno PrĂ©mont <bonbons@linux-vserver.org>
8396 L:      linux-input@vger.kernel.org
8397 S:      Maintained
8398 F:      drivers/hid/hid-picolcd*
8399
8400 PICOXCELL SUPPORT
8401 M:      Jamie Iles <jamie@jamieiles.com>
8402 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8403 T:      git git://github.com/jamieiles/linux-2.6-ji.git
8404 S:      Supported
8405 F:      arch/arm/boot/dts/picoxcell*
8406 F:      arch/arm/mach-picoxcell/
8407 F:      drivers/crypto/picoxcell*
8408
8409 PIN CONTROL SUBSYSTEM
8410 M:      Linus Walleij <linus.walleij@linaro.org>
8411 L:      linux-gpio@vger.kernel.org
8412 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
8413 S:      Maintained
8414 F:      drivers/pinctrl/
8415 F:      include/linux/pinctrl/
8416
8417 PIN CONTROLLER - ATMEL AT91
8418 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
8419 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8420 S:      Maintained
8421 F:      drivers/pinctrl/pinctrl-at91.*
8422
8423 PIN CONTROLLER - ATMEL AT91 PIO4
8424 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
8425 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8426 L:      linux-gpio@vger.kernel.org
8427 S:      Supported
8428 F:      drivers/pinctrl/pinctrl-at91-pio4.*
8429
8430 PIN CONTROLLER - INTEL
8431 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8432 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
8433 S:      Maintained
8434 F:      drivers/pinctrl/intel/
8435
8436 PIN CONTROLLER - RENESAS
8437 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8438 M:      Geert Uytterhoeven <geert+renesas@glider.be>
8439 L:      linux-renesas-soc@vger.kernel.org
8440 S:      Maintained
8441 F:      drivers/pinctrl/sh-pfc/
8442
8443 PIN CONTROLLER - SAMSUNG
8444 M:      Tomasz Figa <tomasz.figa@gmail.com>
8445 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8446 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8447 S:      Maintained
8448 F:      drivers/pinctrl/samsung/
8449
8450 PIN CONTROLLER - SINGLE
8451 M:      Tony Lindgren <tony@atomide.com>
8452 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
8453 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8454 L:      linux-omap@vger.kernel.org
8455 S:      Maintained
8456 F:      drivers/pinctrl/pinctrl-single.c
8457
8458 PIN CONTROLLER - ST SPEAR
8459 M:      Viresh Kumar <vireshk@kernel.org>
8460 L:      spear-devel@list.st.com
8461 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8462 W:      http://www.st.com/spear
8463 S:      Maintained
8464 F:      drivers/pinctrl/spear/
8465
8466 PKTCDVD DRIVER
8467 M:      Jiri Kosina <jikos@kernel.org>
8468 S:      Maintained
8469 F:      drivers/block/pktcdvd.c
8470 F:      include/linux/pktcdvd.h
8471 F:      include/uapi/linux/pktcdvd.h
8472
8473 PKUNITY SOC DRIVERS
8474 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
8475 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
8476 S:      Maintained
8477 T:      git git://github.com/gxt/linux.git
8478 F:      drivers/input/serio/i8042-unicore32io.h
8479 F:      drivers/i2c/busses/i2c-puv3.c
8480 F:      drivers/video/fbdev/fb-puv3.c
8481 F:      drivers/rtc/rtc-puv3.c
8482
8483 PMBUS HARDWARE MONITORING DRIVERS
8484 M:      Guenter Roeck <linux@roeck-us.net>
8485 L:      lm-sensors@lm-sensors.org
8486 W:      http://www.lm-sensors.org/
8487 W:      http://www.roeck-us.net/linux/drivers/
8488 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8489 S:      Maintained
8490 F:      Documentation/hwmon/pmbus
8491 F:      drivers/hwmon/pmbus/
8492 F:      include/linux/i2c/pmbus.h
8493
8494 PMC SIERRA MaxRAID DRIVER
8495 L:      linux-scsi@vger.kernel.org
8496 W:      http://www.pmc-sierra.com/
8497 S:      Orphan
8498 F:      drivers/scsi/pmcraid.*
8499
8500 PMC SIERRA PM8001 DRIVER
8501 M:      Jack Wang <jinpu.wang@profitbricks.com>
8502 M:      lindar_liu@usish.com
8503 L:      pmchba@pmcs.com
8504 L:      linux-scsi@vger.kernel.org
8505 S:      Supported
8506 F:      drivers/scsi/pm8001/
8507
8508 POSIX CLOCKS and TIMERS
8509 M:      Thomas Gleixner <tglx@linutronix.de>
8510 L:      linux-kernel@vger.kernel.org
8511 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8512 S:      Maintained
8513 F:      fs/timerfd.c
8514 F:      include/linux/timer*
8515 F:      kernel/time/*timer*
8516
8517 POWER MANAGEMENT CORE
8518 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
8519 L:      linux-pm@vger.kernel.org
8520 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
8521 S:      Supported
8522 F:      drivers/base/power/
8523 F:      include/linux/pm.h
8524 F:      include/linux/pm_*
8525 F:      include/linux/powercap.h
8526 F:      drivers/powercap/
8527
8528 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
8529 M:      Sebastian Reichel <sre@kernel.org>
8530 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
8531 M:      David Woodhouse <dwmw2@infradead.org>
8532 L:      linux-pm@vger.kernel.org
8533 T:      git git://git.infradead.org/battery-2.6.git
8534 S:      Maintained
8535 F:      include/linux/power_supply.h
8536 F:      drivers/power/
8537 X:      drivers/power/avs/
8538
8539 POWER STATE COORDINATION INTERFACE (PSCI)
8540 M:      Mark Rutland <mark.rutland@arm.com>
8541 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
8542 L:      linux-arm-kernel@lists.infradead.org
8543 S:      Maintained
8544 F:      drivers/firmware/psci.c
8545 F:      include/linux/psci.h
8546 F:      include/uapi/linux/psci.h
8547
8548 PNP SUPPORT
8549 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
8550 S:      Maintained
8551 F:      drivers/pnp/
8552
8553 PPP PROTOCOL DRIVERS AND COMPRESSORS
8554 M:      Paul Mackerras <paulus@samba.org>
8555 L:      linux-ppp@vger.kernel.org
8556 S:      Maintained
8557 F:      drivers/net/ppp/ppp_*
8558
8559 PPP OVER ATM (RFC 2364)
8560 M:      Mitchell Blank Jr <mitch@sfgoth.com>
8561 S:      Maintained
8562 F:      net/atm/pppoatm.c
8563 F:      include/uapi/linux/atmppp.h
8564
8565 PPP OVER ETHERNET
8566 M:      Michal Ostrowski <mostrows@earthlink.net>
8567 S:      Maintained
8568 F:      drivers/net/ppp/pppoe.c
8569 F:      drivers/net/ppp/pppox.c
8570
8571 PPP OVER L2TP
8572 M:      James Chapman <jchapman@katalix.com>
8573 S:      Maintained
8574 F:      net/l2tp/l2tp_ppp.c
8575 F:      include/linux/if_pppol2tp.h
8576 F:      include/uapi/linux/if_pppol2tp.h
8577
8578 PPS SUPPORT
8579 M:      Rodolfo Giometti <giometti@enneenne.com>
8580 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
8581 L:      linuxpps@ml.enneenne.com (subscribers-only)
8582 S:      Maintained
8583 F:      Documentation/pps/
8584 F:      drivers/pps/
8585 F:      include/linux/pps*.h
8586
8587 PPTP DRIVER
8588 M:      Dmitry Kozlov <xeb@mail.ru>
8589 L:      netdev@vger.kernel.org
8590 S:      Maintained
8591 F:      drivers/net/ppp/pptp.c
8592 W:      http://sourceforge.net/projects/accel-pptp
8593
8594 PREEMPTIBLE KERNEL
8595 M:      Robert Love <rml@tech9.net>
8596 L:      kpreempt-tech@lists.sourceforge.net
8597 W:      ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
8598 S:      Supported
8599 F:      Documentation/preempt-locking.txt
8600 F:      include/linux/preempt.h
8601
8602 PRISM54 WIRELESS DRIVER
8603 M:      "Luis R. Rodriguez" <mcgrof@gmail.com>
8604 L:      linux-wireless@vger.kernel.org
8605 W:      http://wireless.kernel.org/en/users/Drivers/p54
8606 S:      Obsolete
8607 F:      drivers/net/wireless/intersil/prism54/
8608
8609 PS3 NETWORK SUPPORT
8610 M:      Geoff Levand <geoff@infradead.org>
8611 L:      netdev@vger.kernel.org
8612 L:      linuxppc-dev@lists.ozlabs.org
8613 S:      Maintained
8614 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
8615
8616 PS3 PLATFORM SUPPORT
8617 M:      Geoff Levand <geoff@infradead.org>
8618 L:      linuxppc-dev@lists.ozlabs.org
8619 S:      Maintained
8620 F:      arch/powerpc/boot/ps3*
8621 F:      arch/powerpc/include/asm/lv1call.h
8622 F:      arch/powerpc/include/asm/ps3*.h
8623 F:      arch/powerpc/platforms/ps3/
8624 F:      drivers/*/ps3*
8625 F:      drivers/ps3/
8626 F:      drivers/rtc/rtc-ps3.c
8627 F:      drivers/usb/host/*ps3.c
8628 F:      sound/ppc/snd_ps3*
8629
8630 PS3VRAM DRIVER
8631 M:      Jim Paris <jim@jtan.com>
8632 M:      Geoff Levand <geoff@infradead.org>
8633 L:      linuxppc-dev@lists.ozlabs.org
8634 S:      Maintained
8635 F:      drivers/block/ps3vram.c
8636
8637 PSTORE FILESYSTEM
8638 M:      Anton Vorontsov <anton@enomsg.org>
8639 M:      Colin Cross <ccross@android.com>
8640 M:      Kees Cook <keescook@chromium.org>
8641 M:      Tony Luck <tony.luck@intel.com>
8642 S:      Maintained
8643 T:      git git://git.infradead.org/users/cbou/linux-pstore.git
8644 F:      fs/pstore/
8645 F:      include/linux/pstore*
8646 F:      drivers/firmware/efi/efi-pstore.c
8647 F:      drivers/acpi/apei/erst.c
8648
8649 PTP HARDWARE CLOCK SUPPORT
8650 M:      Richard Cochran <richardcochran@gmail.com>
8651 L:      netdev@vger.kernel.org
8652 S:      Maintained
8653 W:      http://linuxptp.sourceforge.net/
8654 F:      Documentation/ABI/testing/sysfs-ptp
8655 F:      Documentation/ptp/*
8656 F:      drivers/net/ethernet/freescale/gianfar_ptp.c
8657 F:      drivers/net/phy/dp83640*
8658 F:      drivers/ptp/*
8659 F:      include/linux/ptp_cl*
8660
8661 PTRACE SUPPORT
8662 M:      Roland McGrath <roland@hack.frob.com>
8663 M:      Oleg Nesterov <oleg@redhat.com>
8664 S:      Maintained
8665 F:      include/asm-generic/syscall.h
8666 F:      include/linux/ptrace.h
8667 F:      include/linux/regset.h
8668 F:      include/linux/tracehook.h
8669 F:      include/uapi/linux/ptrace.h
8670 F:      kernel/ptrace.c
8671
8672 PVRUSB2 VIDEO4LINUX DRIVER
8673 M:      Mike Isely <isely@pobox.com>
8674 L:      pvrusb2@isely.net       (subscribers-only)
8675 L:      linux-media@vger.kernel.org
8676 W:      http://www.isely.net/pvrusb2/
8677 T:      git git://linuxtv.org/media_tree.git
8678 S:      Maintained
8679 F:      Documentation/video4linux/README.pvrusb2
8680 F:      drivers/media/usb/pvrusb2/
8681
8682 PWC WEBCAM DRIVER
8683 M:      Hans de Goede <hdegoede@redhat.com>
8684 L:      linux-media@vger.kernel.org
8685 T:      git git://linuxtv.org/media_tree.git
8686 S:      Maintained
8687 F:      drivers/media/usb/pwc/*
8688
8689 PWM FAN DRIVER
8690 M:      Kamil Debski <k.debski@samsung.com>
8691 L:      lm-sensors@lm-sensors.org
8692 S:      Supported
8693 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
8694 F:      Documentation/hwmon/pwm-fan
8695 F:      drivers/hwmon/pwm-fan.c
8696
8697 PWM SUBSYSTEM
8698 M:      Thierry Reding <thierry.reding@gmail.com>
8699 L:      linux-pwm@vger.kernel.org
8700 S:      Maintained
8701 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
8702 F:      Documentation/pwm.txt
8703 F:      Documentation/devicetree/bindings/pwm/
8704 F:      include/linux/pwm.h
8705 F:      drivers/pwm/
8706 F:      drivers/video/backlight/pwm_bl.c
8707 F:      include/linux/pwm_backlight.h
8708
8709 PXA2xx/PXA3xx SUPPORT
8710 M:      Daniel Mack <daniel@zonque.org>
8711 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
8712 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8713 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8714 T:      git git://github.com/hzhuang1/linux.git
8715 T:      git git://github.com/rjarzmik/linux.git
8716 S:      Maintained
8717 F:      arch/arm/mach-pxa/
8718 F:      drivers/dma/pxa*
8719 F:      drivers/pcmcia/pxa2xx*
8720 F:      drivers/pinctrl/pxa/
8721 F:      drivers/spi/spi-pxa2xx*
8722 F:      drivers/usb/gadget/udc/pxa2*
8723 F:      include/sound/pxa2xx-lib.h
8724 F:      sound/arm/pxa*
8725 F:      sound/soc/pxa/
8726
8727 PXA GPIO DRIVER
8728 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8729 L:      linux-gpio@vger.kernel.org
8730 S:      Maintained
8731 F:      drivers/gpio/gpio-pxa.c
8732
8733 PXA3xx NAND FLASH DRIVER
8734 M:      Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
8735 L:      linux-mtd@lists.infradead.org
8736 S:      Maintained
8737 F:      drivers/mtd/nand/pxa3xx_nand.c
8738
8739 MMP SUPPORT
8740 M:      Eric Miao <eric.y.miao@gmail.com>
8741 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
8742 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8743 T:      git git://github.com/hzhuang1/linux.git
8744 T:      git git://git.linaro.org/people/ycmiao/pxa-linux.git
8745 S:      Maintained
8746 F:      arch/arm/mach-mmp/
8747
8748 PXA MMCI DRIVER
8749 S:      Orphan
8750
8751 PXA RTC DRIVER
8752 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8753 L:      rtc-linux@googlegroups.com
8754 S:      Maintained
8755
8756 QAT DRIVER
8757 M:      Tadeusz Struk <tadeusz.struk@intel.com>
8758 L:      qat-linux@intel.com
8759 S:      Supported
8760 F:      drivers/crypto/qat/
8761
8762 QIB DRIVER
8763 M:      Mike Marciniszyn <infinipath@intel.com>
8764 L:      linux-rdma@vger.kernel.org
8765 S:      Supported
8766 F:      drivers/infiniband/hw/qib/
8767
8768 QLOGIC QLA1280 SCSI DRIVER
8769 M:      Michael Reed <mdr@sgi.com>
8770 L:      linux-scsi@vger.kernel.org
8771 S:      Maintained
8772 F:      drivers/scsi/qla1280.[ch]
8773
8774 QLOGIC QLA2XXX FC-SCSI DRIVER
8775 M:      qla2xxx-upstream@qlogic.com
8776 L:      linux-scsi@vger.kernel.org
8777 S:      Supported
8778 F:      Documentation/scsi/LICENSE.qla2xxx
8779 F:      drivers/scsi/qla2xxx/
8780
8781 QLOGIC QLA4XXX iSCSI DRIVER
8782 M:      QLogic-Storage-Upstream@qlogic.com
8783 L:      linux-scsi@vger.kernel.org
8784 S:      Supported
8785 F:      Documentation/scsi/LICENSE.qla4xxx
8786 F:      drivers/scsi/qla4xxx/
8787
8788 QLOGIC QLA3XXX NETWORK DRIVER
8789 M:      Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
8790 M:      Ron Mercer <ron.mercer@qlogic.com>
8791 M:      linux-driver@qlogic.com
8792 L:      netdev@vger.kernel.org
8793 S:      Supported
8794 F:      Documentation/networking/LICENSE.qla3xxx
8795 F:      drivers/net/ethernet/qlogic/qla3xxx.*
8796
8797 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
8798 M:      Dept-GELinuxNICDev@qlogic.com
8799 L:      netdev@vger.kernel.org
8800 S:      Supported
8801 F:      drivers/net/ethernet/qlogic/qlcnic/
8802
8803 QLOGIC QLGE 10Gb ETHERNET DRIVER
8804 M:      Harish Patil <harish.patil@qlogic.com>
8805 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
8806 M:      Dept-GELinuxNICDev@qlogic.com
8807 M:      linux-driver@qlogic.com
8808 L:      netdev@vger.kernel.org
8809 S:      Supported
8810 F:      drivers/net/ethernet/qlogic/qlge/
8811
8812 QLOGIC QL4xxx ETHERNET DRIVER
8813 M:      Yuval Mintz <Yuval.Mintz@qlogic.com>
8814 M:      Ariel Elior <Ariel.Elior@qlogic.com>
8815 M:      everest-linux-l2@qlogic.com
8816 L:      netdev@vger.kernel.org
8817 S:      Supported
8818 F:      drivers/net/ethernet/qlogic/qed/
8819 F:      include/linux/qed/
8820 F:      drivers/net/ethernet/qlogic/qede/
8821
8822 QNX4 FILESYSTEM
8823 M:      Anders Larsen <al@alarsen.net>
8824 W:      http://www.alarsen.net/linux/qnx4fs/
8825 S:      Maintained
8826 F:      fs/qnx4/
8827 F:      include/uapi/linux/qnx4_fs.h
8828 F:      include/uapi/linux/qnxtypes.h
8829
8830 QT1010 MEDIA DRIVER
8831 M:      Antti Palosaari <crope@iki.fi>
8832 L:      linux-media@vger.kernel.org
8833 W:      https://linuxtv.org
8834 W:      http://palosaari.fi/linux/
8835 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8836 T:      git git://linuxtv.org/anttip/media_tree.git
8837 S:      Maintained
8838 F:      drivers/media/tuners/qt1010*
8839
8840 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
8841 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
8842 L:      linux-wireless@vger.kernel.org
8843 L:      ath9k-devel@lists.ath9k.org
8844 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
8845 S:      Supported
8846 F:      drivers/net/wireless/ath/ath9k/
8847
8848 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
8849 M:      Kalle Valo <kvalo@qca.qualcomm.com>
8850 L:      ath10k@lists.infradead.org
8851 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
8852 T:      git git://github.com/kvalo/ath.git
8853 S:      Supported
8854 F:      drivers/net/wireless/ath/ath10k/
8855
8856 QUALCOMM HEXAGON ARCHITECTURE
8857 M:      Richard Kuo <rkuo@codeaurora.org>
8858 L:      linux-hexagon@vger.kernel.org
8859 S:      Supported
8860 F:      arch/hexagon/
8861
8862 QUALCOMM WCN36XX WIRELESS DRIVER
8863 M:      Eugene Krasnikov <k.eugene.e@gmail.com>
8864 L:      wcn36xx@lists.infradead.org
8865 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
8866 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
8867 S:      Supported
8868 F:      drivers/net/wireless/ath/wcn36xx/
8869
8870 RADOS BLOCK DEVICE (RBD)
8871 M:      Ilya Dryomov <idryomov@gmail.com>
8872 M:      Sage Weil <sage@redhat.com>
8873 M:      Alex Elder <elder@kernel.org>
8874 L:      ceph-devel@vger.kernel.org
8875 W:      http://ceph.com/
8876 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
8877 T:      git git://github.com/ceph/ceph-client.git
8878 S:      Supported
8879 F:      Documentation/ABI/testing/sysfs-bus-rbd
8880 F:      drivers/block/rbd.c
8881 F:      drivers/block/rbd_types.h
8882
8883 RADEON FRAMEBUFFER DISPLAY DRIVER
8884 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
8885 L:      linux-fbdev@vger.kernel.org
8886 S:      Maintained
8887 F:      drivers/video/fbdev/aty/radeon*
8888 F:      include/uapi/linux/radeonfb.h
8889
8890 RADIOSHARK RADIO DRIVER
8891 M:      Hans de Goede <hdegoede@redhat.com>
8892 L:      linux-media@vger.kernel.org
8893 T:      git git://linuxtv.org/media_tree.git
8894 S:      Maintained
8895 F:      drivers/media/radio/radio-shark.c
8896
8897 RADIOSHARK2 RADIO DRIVER
8898 M:      Hans de Goede <hdegoede@redhat.com>
8899 L:      linux-media@vger.kernel.org
8900 T:      git git://linuxtv.org/media_tree.git
8901 S:      Maintained
8902 F:      drivers/media/radio/radio-shark2.c
8903 F:      drivers/media/radio/radio-tea5777.c
8904
8905 RAGE128 FRAMEBUFFER DISPLAY DRIVER
8906 M:      Paul Mackerras <paulus@samba.org>
8907 L:      linux-fbdev@vger.kernel.org
8908 S:      Maintained
8909 F:      drivers/video/fbdev/aty/aty128fb.c
8910
8911 RALINK RT2X00 WIRELESS LAN DRIVER
8912 P:      rt2x00 project
8913 M:      Stanislaw Gruszka <sgruszka@redhat.com>
8914 M:      Helmut Schaa <helmut.schaa@googlemail.com>
8915 L:      linux-wireless@vger.kernel.org
8916 S:      Maintained
8917 F:      drivers/net/wireless/ralink/rt2x00/
8918
8919 RAMDISK RAM BLOCK DEVICE DRIVER
8920 M:      Jens Axboe <axboe@kernel.dk>
8921 S:      Maintained
8922 F:      Documentation/blockdev/ramdisk.txt
8923 F:      drivers/block/brd.c
8924
8925 RANDOM NUMBER DRIVER
8926 M:      "Theodore Ts'o" <tytso@mit.edu>
8927 S:      Maintained
8928 F:      drivers/char/random.c
8929
8930 RAPIDIO SUBSYSTEM
8931 M:      Matt Porter <mporter@kernel.crashing.org>
8932 M:      Alexandre Bounine <alexandre.bounine@idt.com>
8933 S:      Maintained
8934 F:      drivers/rapidio/
8935
8936 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
8937 L:      linux-wireless@vger.kernel.org
8938 S:      Orphan
8939 F:      drivers/net/wireless/ray*
8940
8941 RCUTORTURE MODULE
8942 M:      Josh Triplett <josh@joshtriplett.org>
8943 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8944 L:      linux-kernel@vger.kernel.org
8945 S:      Supported
8946 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8947 F:      Documentation/RCU/torture.txt
8948 F:      kernel/rcu/rcutorture.c
8949
8950 RCUTORTURE TEST FRAMEWORK
8951 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8952 M:      Josh Triplett <josh@joshtriplett.org>
8953 R:      Steven Rostedt <rostedt@goodmis.org>
8954 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8955 R:      Lai Jiangshan <jiangshanlai@gmail.com>
8956 L:      linux-kernel@vger.kernel.org
8957 S:      Supported
8958 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8959 F:      tools/testing/selftests/rcutorture
8960
8961 RDC R-321X SoC
8962 M:      Florian Fainelli <florian@openwrt.org>
8963 S:      Maintained
8964
8965 RDC R6040 FAST ETHERNET DRIVER
8966 M:      Florian Fainelli <florian@openwrt.org>
8967 L:      netdev@vger.kernel.org
8968 S:      Maintained
8969 F:      drivers/net/ethernet/rdc/r6040.c
8970
8971 RDS - RELIABLE DATAGRAM SOCKETS
8972 M:      Chien Yen <chien.yen@oracle.com>
8973 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
8974 S:      Supported
8975 F:      net/rds/
8976
8977 READ-COPY UPDATE (RCU)
8978 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8979 M:      Josh Triplett <josh@joshtriplett.org>
8980 R:      Steven Rostedt <rostedt@goodmis.org>
8981 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8982 R:      Lai Jiangshan <jiangshanlai@gmail.com>
8983 L:      linux-kernel@vger.kernel.org
8984 W:      http://www.rdrop.com/users/paulmck/RCU/
8985 S:      Supported
8986 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8987 F:      Documentation/RCU/
8988 X:      Documentation/RCU/torture.txt
8989 F:      include/linux/rcu*
8990 X:      include/linux/srcu.h
8991 F:      kernel/rcu/
8992 X:      kernel/torture.c
8993
8994 REAL TIME CLOCK (RTC) SUBSYSTEM
8995 M:      Alessandro Zummo <a.zummo@towertech.it>
8996 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
8997 L:      rtc-linux@googlegroups.com
8998 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
8999 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
9000 S:      Maintained
9001 F:      Documentation/rtc.txt
9002 F:      drivers/rtc/
9003 F:      include/linux/rtc.h
9004 F:      include/uapi/linux/rtc.h
9005
9006 REALTEK AUDIO CODECS
9007 M:      Bard Liao <bardliao@realtek.com>
9008 M:      Oder Chiou <oder_chiou@realtek.com>
9009 S:      Maintained
9010 F:      sound/soc/codecs/rt*
9011 F:      include/sound/rt*.h
9012
9013 REISERFS FILE SYSTEM
9014 L:      reiserfs-devel@vger.kernel.org
9015 S:      Supported
9016 F:      fs/reiserfs/
9017
9018 REGISTER MAP ABSTRACTION
9019 M:      Mark Brown <broonie@kernel.org>
9020 L:      linux-kernel@vger.kernel.org
9021 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
9022 S:      Supported
9023 F:      drivers/base/regmap/
9024 F:      include/linux/regmap.h
9025
9026 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
9027 M:      Ohad Ben-Cohen <ohad@wizery.com>
9028 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
9029 S:      Maintained
9030 F:      drivers/remoteproc/
9031 F:      Documentation/remoteproc.txt
9032 F:      include/linux/remoteproc.h
9033
9034 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
9035 M:      Ohad Ben-Cohen <ohad@wizery.com>
9036 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
9037 S:      Maintained
9038 F:      drivers/rpmsg/
9039 F:      Documentation/rpmsg.txt
9040 F:      include/linux/rpmsg.h
9041
9042 RENESAS ETHERNET DRIVERS
9043 R:      Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
9044 L:      netdev@vger.kernel.org
9045 L:      linux-renesas-soc@vger.kernel.org
9046 F:      drivers/net/ethernet/renesas/
9047 F:      include/linux/sh_eth.h
9048
9049 RENESAS USB2 PHY DRIVER
9050 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
9051 L:      linux-renesas-soc@vger.kernel.org
9052 S:      Maintained
9053 F:      drivers/phy/phy-rcar-gen3-usb2.c
9054
9055 RESET CONTROLLER FRAMEWORK
9056 M:      Philipp Zabel <p.zabel@pengutronix.de>
9057 S:      Maintained
9058 F:      drivers/reset/
9059 F:      Documentation/devicetree/bindings/reset/
9060 F:      include/dt-bindings/reset/
9061 F:      include/linux/reset.h
9062 F:      include/linux/reset-controller.h
9063
9064 RFKILL
9065 M:      Johannes Berg <johannes@sipsolutions.net>
9066 L:      linux-wireless@vger.kernel.org
9067 W:      http://wireless.kernel.org/
9068 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
9069 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
9070 S:      Maintained
9071 F:      Documentation/rfkill.txt
9072 F:      net/rfkill/
9073
9074 RHASHTABLE
9075 M:      Thomas Graf <tgraf@suug.ch>
9076 L:      netdev@vger.kernel.org
9077 S:      Maintained
9078 F:      lib/rhashtable.c
9079 F:      include/linux/rhashtable.h
9080
9081 RICOH SMARTMEDIA/XD DRIVER
9082 M:      Maxim Levitsky <maximlevitsky@gmail.com>
9083 S:      Maintained
9084 F:      drivers/mtd/nand/r852.c
9085 F:      drivers/mtd/nand/r852.h
9086
9087 RICOH R5C592 MEMORYSTICK DRIVER
9088 M:      Maxim Levitsky <maximlevitsky@gmail.com>
9089 S:      Maintained
9090 F:      drivers/memstick/host/r592.*
9091
9092 ROCCAT DRIVERS
9093 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
9094 W:      http://sourceforge.net/projects/roccat/
9095 S:      Maintained
9096 F:      drivers/hid/hid-roccat*
9097 F:      include/linux/hid-roccat*
9098 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
9099
9100 ROCKER DRIVER
9101 M:      Jiri Pirko <jiri@resnulli.us>
9102 M:      Scott Feldman <sfeldma@gmail.com>
9103 L:      netdev@vger.kernel.org
9104 S:      Supported
9105 F:      drivers/net/ethernet/rocker/
9106
9107 ROCKETPORT DRIVER
9108 P:      Comtrol Corp.
9109 W:      http://www.comtrol.com
9110 S:      Maintained
9111 F:      Documentation/serial/rocket.txt
9112 F:      drivers/tty/rocket*
9113
9114 ROCKETPORT EXPRESS/INFINITY DRIVER
9115 M:      Kevin Cernekee <cernekee@gmail.com>
9116 L:      linux-serial@vger.kernel.org
9117 S:      Odd Fixes
9118 F:      drivers/tty/serial/rp2.*
9119
9120 ROSE NETWORK LAYER
9121 M:      Ralf Baechle <ralf@linux-mips.org>
9122 L:      linux-hams@vger.kernel.org
9123 W:      http://www.linux-ax25.org/
9124 S:      Maintained
9125 F:      include/net/rose.h
9126 F:      include/uapi/linux/rose.h
9127 F:      net/rose/
9128
9129 RTL2830 MEDIA DRIVER
9130 M:      Antti Palosaari <crope@iki.fi>
9131 L:      linux-media@vger.kernel.org
9132 W:      https://linuxtv.org
9133 W:      http://palosaari.fi/linux/
9134 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9135 T:      git git://linuxtv.org/anttip/media_tree.git
9136 S:      Maintained
9137 F:      drivers/media/dvb-frontends/rtl2830*
9138
9139 RTL2832 MEDIA DRIVER
9140 M:      Antti Palosaari <crope@iki.fi>
9141 L:      linux-media@vger.kernel.org
9142 W:      https://linuxtv.org
9143 W:      http://palosaari.fi/linux/
9144 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9145 T:      git git://linuxtv.org/anttip/media_tree.git
9146 S:      Maintained
9147 F:      drivers/media/dvb-frontends/rtl2832*
9148
9149 RTL2832_SDR MEDIA DRIVER
9150 M:      Antti Palosaari <crope@iki.fi>
9151 L:      linux-media@vger.kernel.org
9152 W:      https://linuxtv.org
9153 W:      http://palosaari.fi/linux/
9154 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9155 T:      git git://linuxtv.org/anttip/media_tree.git
9156 S:      Maintained
9157 F:      drivers/media/dvb-frontends/rtl2832_sdr*
9158
9159 RTL8180 WIRELESS DRIVER
9160 L:      linux-wireless@vger.kernel.org
9161 W:      http://wireless.kernel.org/
9162 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9163 S:      Orphan
9164 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
9165
9166 RTL8187 WIRELESS DRIVER
9167 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
9168 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
9169 M:      Larry Finger <Larry.Finger@lwfinger.net>
9170 L:      linux-wireless@vger.kernel.org
9171 W:      http://wireless.kernel.org/
9172 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9173 S:      Maintained
9174 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
9175
9176 RTL8192CE WIRELESS DRIVER
9177 M:      Larry Finger <Larry.Finger@lwfinger.net>
9178 M:      Chaoming Li <chaoming_li@realsil.com.cn>
9179 L:      linux-wireless@vger.kernel.org
9180 W:      http://wireless.kernel.org/
9181 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9182 S:      Maintained
9183 F:      drivers/net/wireless/realtek/rtlwifi/
9184 F:      drivers/net/wireless/realtek/rtlwifi/rtl8192ce/
9185
9186 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
9187 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
9188 L:      linux-wireless@vger.kernel.org
9189 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8723au-mac80211
9190 S:      Maintained
9191 F:      drivers/net/wireless/realtek/rtl8xxxu/
9192
9193 S3 SAVAGE FRAMEBUFFER DRIVER
9194 M:      Antonino Daplas <adaplas@gmail.com>
9195 L:      linux-fbdev@vger.kernel.org
9196 S:      Maintained
9197 F:      drivers/video/fbdev/savage/
9198
9199 S390
9200 M:      Martin Schwidefsky <schwidefsky@de.ibm.com>
9201 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
9202 L:      linux-s390@vger.kernel.org
9203 W:      http://www.ibm.com/developerworks/linux/linux390/
9204 S:      Supported
9205 F:      arch/s390/
9206 F:      drivers/s390/
9207 F:      Documentation/s390/
9208 F:      Documentation/DocBook/s390*
9209
9210 S390 COMMON I/O LAYER
9211 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
9212 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
9213 L:      linux-s390@vger.kernel.org
9214 W:      http://www.ibm.com/developerworks/linux/linux390/
9215 S:      Supported
9216 F:      drivers/s390/cio/
9217
9218 S390 DASD DRIVER
9219 M:      Stefan Weinhuber <wein@de.ibm.com>
9220 M:      Stefan Haberland <stefan.haberland@de.ibm.com>
9221 L:      linux-s390@vger.kernel.org
9222 W:      http://www.ibm.com/developerworks/linux/linux390/
9223 S:      Supported
9224 F:      drivers/s390/block/dasd*
9225 F:      block/partitions/ibm.c
9226
9227 S390 NETWORK DRIVERS
9228 M:      Ursula Braun <ubraun@linux.vnet.ibm.com>
9229 L:      linux-s390@vger.kernel.org
9230 W:      http://www.ibm.com/developerworks/linux/linux390/
9231 S:      Supported
9232 F:      drivers/s390/net/
9233
9234 S390 PCI SUBSYSTEM
9235 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
9236 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
9237 L:      linux-s390@vger.kernel.org
9238 W:      http://www.ibm.com/developerworks/linux/linux390/
9239 S:      Supported
9240 F:      arch/s390/pci/
9241 F:      drivers/pci/hotplug/s390_pci_hpc.c
9242
9243 S390 ZCRYPT DRIVER
9244 M:      Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
9245 L:      linux-s390@vger.kernel.org
9246 W:      http://www.ibm.com/developerworks/linux/linux390/
9247 S:      Supported
9248 F:      drivers/s390/crypto/
9249
9250 S390 ZFCP DRIVER
9251 M:      Steffen Maier <maier@linux.vnet.ibm.com>
9252 L:      linux-s390@vger.kernel.org
9253 W:      http://www.ibm.com/developerworks/linux/linux390/
9254 S:      Supported
9255 F:      drivers/s390/scsi/zfcp_*
9256
9257 S390 IUCV NETWORK LAYER
9258 M:      Ursula Braun <ubraun@linux.vnet.ibm.com>
9259 L:      linux-s390@vger.kernel.org
9260 W:      http://www.ibm.com/developerworks/linux/linux390/
9261 S:      Supported
9262 F:      drivers/s390/net/*iucv*
9263 F:      include/net/iucv/
9264 F:      net/iucv/
9265
9266 S390 IOMMU (PCI)
9267 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
9268 L:      linux-s390@vger.kernel.org
9269 W:      http://www.ibm.com/developerworks/linux/linux390/
9270 S:      Supported
9271 F:      drivers/iommu/s390-iommu.c
9272
9273 S3C24XX SD/MMC Driver
9274 M:      Ben Dooks <ben-linux@fluff.org>
9275 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9276 S:      Supported
9277 F:      drivers/mmc/host/s3cmci.*
9278
9279 SAA6588 RDS RECEIVER DRIVER
9280 M:      Hans Verkuil <hverkuil@xs4all.nl>
9281 L:      linux-media@vger.kernel.org
9282 T:      git git://linuxtv.org/media_tree.git
9283 W:      https://linuxtv.org
9284 S:      Odd Fixes
9285 F:      drivers/media/i2c/saa6588*
9286
9287 SAA7134 VIDEO4LINUX DRIVER
9288 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9289 L:      linux-media@vger.kernel.org
9290 W:      https://linuxtv.org
9291 T:      git git://linuxtv.org/media_tree.git
9292 S:      Odd fixes
9293 F:      Documentation/video4linux/*.saa7134
9294 F:      drivers/media/pci/saa7134/
9295
9296 SAA7146 VIDEO4LINUX-2 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 S:      Maintained
9301 F:      drivers/media/common/saa7146/
9302 F:      drivers/media/pci/saa7146/
9303 F:      include/media/saa7146*
9304
9305 SAMSUNG LAPTOP DRIVER
9306 M:      Corentin Chary <corentin.chary@gmail.com>
9307 L:      platform-driver-x86@vger.kernel.org
9308 S:      Maintained
9309 F:      drivers/platform/x86/samsung-laptop.c
9310
9311 SAMSUNG AUDIO (ASoC) DRIVERS
9312 M:      Sangbeom Kim <sbkim73@samsung.com>
9313 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9314 S:      Supported
9315 F:      sound/soc/samsung/
9316
9317 SAMSUNG FRAMEBUFFER DRIVER
9318 M:      Jingoo Han <jingoohan1@gmail.com>
9319 L:      linux-fbdev@vger.kernel.org
9320 S:      Maintained
9321 F:      drivers/video/fbdev/s3c-fb.c
9322
9323 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
9324 M:      Sangbeom Kim <sbkim73@samsung.com>
9325 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
9326 L:      linux-kernel@vger.kernel.org
9327 L:      linux-samsung-soc@vger.kernel.org
9328 S:      Supported
9329 F:      drivers/mfd/sec*.c
9330 F:      drivers/regulator/s2m*.c
9331 F:      drivers/regulator/s5m*.c
9332 F:      drivers/clk/clk-s2mps11.c
9333 F:      drivers/rtc/rtc-s5m.c
9334 F:      include/linux/mfd/samsung/
9335 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
9336 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
9337 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
9338 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
9339
9340 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
9341 M:      Kyungmin Park <kyungmin.park@samsung.com>
9342 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
9343 L:      linux-media@vger.kernel.org
9344 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
9345 S:      Supported
9346 F:      drivers/media/platform/exynos4-is/
9347
9348 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
9349 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
9350 L:      linux-media@vger.kernel.org
9351 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9352 S:      Maintained
9353 F:      drivers/media/platform/s3c-camif/
9354 F:      include/media/drv-intf/s3c_camif.h
9355
9356 SAMSUNG S5C73M3 CAMERA DRIVER
9357 M:      Kyungmin Park <kyungmin.park@samsung.com>
9358 M:      Andrzej Hajda <a.hajda@samsung.com>
9359 L:      linux-media@vger.kernel.org
9360 S:      Supported
9361 F:      drivers/media/i2c/s5c73m3/*
9362
9363 SAMSUNG S5K5BAF CAMERA DRIVER
9364 M:      Kyungmin Park <kyungmin.park@samsung.com>
9365 M:      Andrzej Hajda <a.hajda@samsung.com>
9366 L:      linux-media@vger.kernel.org
9367 S:      Supported
9368 F:      drivers/media/i2c/s5k5baf.c
9369
9370 SAMSUNG S3FWRN5 NFC DRIVER
9371 M:      Robert Baldyga <r.baldyga@samsung.com>
9372 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
9373 S:      Supported
9374 F:      drivers/nfc/s3fwrn5
9375
9376 SAMSUNG SOC CLOCK DRIVERS
9377 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
9378 M:      Tomasz Figa <tomasz.figa@gmail.com>
9379 S:      Supported
9380 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9381 F:      drivers/clk/samsung/
9382
9383 SAMSUNG SXGBE DRIVERS
9384 M:      Byungho An <bh74.an@samsung.com>
9385 M:      Girish K S <ks.giri@samsung.com>
9386 M:      Vipul Pandya <vipul.pandya@samsung.com>
9387 S:      Supported
9388 L:      netdev@vger.kernel.org
9389 F:      drivers/net/ethernet/samsung/sxgbe/
9390
9391 SAMSUNG THERMAL DRIVER
9392 M:      Lukasz Majewski <l.majewski@samsung.com>
9393 L:      linux-pm@vger.kernel.org
9394 L:      linux-samsung-soc@vger.kernel.org
9395 S:      Supported
9396 T:      https://github.com/lmajewski/linux-samsung-thermal.git
9397 F:      drivers/thermal/samsung/
9398
9399 SAMSUNG USB2 PHY DRIVER
9400 M:      Kamil Debski <k.debski@samsung.com>
9401 L:      linux-kernel@vger.kernel.org
9402 S:      Supported
9403 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
9404 F:      Documentation/phy/samsung-usb2.txt
9405 F:      drivers/phy/phy-exynos4210-usb2.c
9406 F:      drivers/phy/phy-exynos4x12-usb2.c
9407 F:      drivers/phy/phy-exynos5250-usb2.c
9408 F:      drivers/phy/phy-s5pv210-usb2.c
9409 F:      drivers/phy/phy-samsung-usb2.c
9410 F:      drivers/phy/phy-samsung-usb2.h
9411
9412 SERIAL DRIVERS
9413 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9414 L:      linux-serial@vger.kernel.org
9415 S:      Maintained
9416 F:      drivers/tty/serial/
9417
9418 SYNOPSYS DESIGNWARE DMAC DRIVER
9419 M:      Viresh Kumar <vireshk@kernel.org>
9420 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9421 S:      Maintained
9422 F:      include/linux/dma/dw.h
9423 F:      include/linux/platform_data/dma-dw.h
9424 F:      drivers/dma/dw/
9425
9426 SYNOPSYS DESIGNWARE ETHERNET QOS 4.10a driver
9427 M: Lars Persson <lars.persson@axis.com>
9428 L: netdev@vger.kernel.org
9429 S: Supported
9430 F: Documentation/devicetree/bindings/net/snps,dwc-qos-ethernet.txt
9431 F: drivers/net/ethernet/synopsys/dwc_eth_qos.c
9432
9433 SYNOPSYS DESIGNWARE I2C DRIVER
9434 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9435 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
9436 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9437 L:      linux-i2c@vger.kernel.org
9438 S:      Maintained
9439 F:      drivers/i2c/busses/i2c-designware-*
9440 F:      include/linux/platform_data/i2c-designware.h
9441
9442 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
9443 M:      Jaehoon Chung <jh80.chung@samsung.com>
9444 L:      linux-mmc@vger.kernel.org
9445 S:      Maintained
9446 F:      include/linux/mmc/dw_mmc.h
9447 F:      drivers/mmc/host/dw_mmc*
9448
9449 SYSTEM TRACE MODULE CLASS
9450 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
9451 S:      Maintained
9452 F:      Documentation/trace/stm.txt
9453 F:      drivers/hwtracing/stm/
9454 F:      include/linux/stm.h
9455 F:      include/uapi/linux/stm.h
9456
9457 THUNDERBOLT DRIVER
9458 M:      Andreas Noever <andreas.noever@gmail.com>
9459 S:      Maintained
9460 F:      drivers/thunderbolt/
9461
9462 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
9463 M:      John Stultz <john.stultz@linaro.org>
9464 M:      Thomas Gleixner <tglx@linutronix.de>
9465 L:      linux-kernel@vger.kernel.org
9466 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
9467 S:      Supported
9468 F:      include/linux/clocksource.h
9469 F:      include/linux/time.h
9470 F:      include/linux/timex.h
9471 F:      include/uapi/linux/time.h
9472 F:      include/uapi/linux/timex.h
9473 F:      kernel/time/clocksource.c
9474 F:      kernel/time/time*.c
9475 F:      kernel/time/alarmtimer.c
9476 F:      kernel/time/ntp.c
9477 F:      tools/testing/selftests/timers/
9478
9479 SC1200 WDT DRIVER
9480 M:      Zwane Mwaikambo <zwanem@gmail.com>
9481 S:      Maintained
9482 F:      drivers/watchdog/sc1200wdt.c
9483
9484 SCHEDULER
9485 M:      Ingo Molnar <mingo@redhat.com>
9486 M:      Peter Zijlstra <peterz@infradead.org>
9487 L:      linux-kernel@vger.kernel.org
9488 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
9489 S:      Maintained
9490 F:      kernel/sched/
9491 F:      include/linux/sched.h
9492 F:      include/uapi/linux/sched.h
9493 F:      include/linux/wait.h
9494
9495 SCORE ARCHITECTURE
9496 M:      Chen Liqin <liqin.linux@gmail.com>
9497 M:      Lennox Wu <lennox.wu@gmail.com>
9498 W:      http://www.sunplus.com
9499 S:      Supported
9500 F:      arch/score/
9501
9502 SYSTEM CONTROL & POWER INTERFACE (SCPI) Message Protocol drivers
9503 M:      Sudeep Holla <sudeep.holla@arm.com>
9504 L:      linux-arm-kernel@lists.infradead.org
9505 S:      Maintained
9506 F:      Documentation/devicetree/bindings/arm/arm,scpi.txt
9507 F:      drivers/clk/clk-scpi.c
9508 F:      drivers/cpufreq/scpi-cpufreq.c
9509 F:      drivers/firmware/arm_scpi.c
9510 F:      include/linux/scpi_protocol.h
9511
9512 SCSI CDROM DRIVER
9513 M:      Jens Axboe <axboe@kernel.dk>
9514 L:      linux-scsi@vger.kernel.org
9515 W:      http://www.kernel.dk
9516 S:      Maintained
9517 F:      drivers/scsi/sr*
9518
9519 SCSI RDMA PROTOCOL (SRP) INITIATOR
9520 M:      Bart Van Assche <bart.vanassche@sandisk.com>
9521 L:      linux-rdma@vger.kernel.org
9522 S:      Supported
9523 W:      http://www.openfabrics.org
9524 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9525 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
9526 F:      drivers/infiniband/ulp/srp/
9527 F:      include/scsi/srp.h
9528
9529 SCSI SG DRIVER
9530 M:      Doug Gilbert <dgilbert@interlog.com>
9531 L:      linux-scsi@vger.kernel.org
9532 W:      http://sg.danny.cz/sg
9533 S:      Maintained
9534 F:      Documentation/scsi/scsi-generic.txt
9535 F:      drivers/scsi/sg.c
9536 F:      include/scsi/sg.h
9537
9538 SCSI SUBSYSTEM
9539 M:      "James E.J. Bottomley" <JBottomley@odin.com>
9540 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
9541 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
9542 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
9543 L:      linux-scsi@vger.kernel.org
9544 S:      Maintained
9545 F:      drivers/scsi/
9546 F:      include/scsi/
9547
9548 SCSI TAPE DRIVER
9549 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
9550 L:      linux-scsi@vger.kernel.org
9551 S:      Maintained
9552 F:      Documentation/scsi/st.txt
9553 F:      drivers/scsi/st.*
9554 F:      drivers/scsi/st_*.h
9555
9556 SCTP PROTOCOL
9557 M:      Vlad Yasevich <vyasevich@gmail.com>
9558 M:      Neil Horman <nhorman@tuxdriver.com>
9559 L:      linux-sctp@vger.kernel.org
9560 W:      http://lksctp.sourceforge.net
9561 S:      Maintained
9562 F:      Documentation/networking/sctp.txt
9563 F:      include/linux/sctp.h
9564 F:      include/uapi/linux/sctp.h
9565 F:      include/net/sctp/
9566 F:      net/sctp/
9567
9568 SCx200 CPU SUPPORT
9569 M:      Jim Cromie <jim.cromie@gmail.com>
9570 S:      Odd Fixes
9571 F:      Documentation/i2c/busses/scx200_acb
9572 F:      arch/x86/platform/scx200/
9573 F:      drivers/watchdog/scx200_wdt.c
9574 F:      drivers/i2c/busses/scx200*
9575 F:      drivers/mtd/maps/scx200_docflash.c
9576 F:      include/linux/scx200.h
9577
9578 SCx200 GPIO DRIVER
9579 M:      Jim Cromie <jim.cromie@gmail.com>
9580 S:      Maintained
9581 F:      drivers/char/scx200_gpio.c
9582 F:      include/linux/scx200_gpio.h
9583
9584 SCx200 HRT CLOCKSOURCE DRIVER
9585 M:      Jim Cromie <jim.cromie@gmail.com>
9586 S:      Maintained
9587 F:      drivers/clocksource/scx200_hrt.c
9588
9589 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
9590 M:      Sascha Sommer <saschasommer@freenet.de>
9591 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
9592 S:      Maintained
9593 F:      drivers/mmc/host/sdricoh_cs.c
9594
9595 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
9596 L:      linux-mmc@vger.kernel.org
9597 S:      Orphan
9598 F:      drivers/mmc/host/sdhci.*
9599 F:      drivers/mmc/host/sdhci-pltfm.[ch]
9600
9601 SECURE COMPUTING
9602 M:      Kees Cook <keescook@chromium.org>
9603 R:      Andy Lutomirski <luto@amacapital.net>
9604 R:      Will Drewry <wad@chromium.org>
9605 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
9606 S:      Supported
9607 F:      kernel/seccomp.c
9608 F:      include/uapi/linux/seccomp.h
9609 F:      include/linux/seccomp.h
9610 F:      tools/testing/selftests/seccomp/*
9611 K:      \bsecure_computing
9612 K:      \bTIF_SECCOMP\b
9613
9614 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
9615 M:      Ben Dooks <ben-linux@fluff.org>
9616 M:      Jaehoon Chung <jh80.chung@samsung.com>
9617 L:      linux-mmc@vger.kernel.org
9618 S:      Maintained
9619 F:      drivers/mmc/host/sdhci-s3c*
9620
9621 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
9622 M:      Viresh Kumar <vireshk@kernel.org>
9623 L:      spear-devel@list.st.com
9624 L:      linux-mmc@vger.kernel.org
9625 S:      Maintained
9626 F:      drivers/mmc/host/sdhci-spear.c
9627
9628 SECURITY SUBSYSTEM
9629 M:      James Morris <james.l.morris@oracle.com>
9630 M:      "Serge E. Hallyn" <serge@hallyn.com>
9631 L:      linux-security-module@vger.kernel.org (suggested Cc:)
9632 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
9633 W:      http://kernsec.org/
9634 S:      Supported
9635 F:      security/
9636
9637 SECURITY CONTACT
9638 M:      Security Officers <security@kernel.org>
9639 S:      Supported
9640
9641 SELINUX SECURITY MODULE
9642 M:      Paul Moore <paul@paul-moore.com>
9643 M:      Stephen Smalley <sds@tycho.nsa.gov>
9644 M:      Eric Paris <eparis@parisplace.org>
9645 L:      selinux@tycho.nsa.gov (moderated for non-subscribers)
9646 W:      http://selinuxproject.org
9647 T:      git git://git.infradead.org/users/pcmoore/selinux
9648 S:      Supported
9649 F:      include/linux/selinux*
9650 F:      security/selinux/
9651 F:      scripts/selinux/
9652
9653 APPARMOR SECURITY MODULE
9654 M:      John Johansen <john.johansen@canonical.com>
9655 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
9656 W:      apparmor.wiki.kernel.org
9657 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
9658 S:      Supported
9659 F:      security/apparmor/
9660
9661 YAMA SECURITY MODULE
9662 M:      Kees Cook <keescook@chromium.org>
9663 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
9664 S:      Supported
9665 F:      security/yama/
9666
9667 SENSABLE PHANTOM
9668 M:      Jiri Slaby <jirislaby@gmail.com>
9669 S:      Maintained
9670 F:      drivers/misc/phantom.c
9671 F:      include/uapi/linux/phantom.h
9672
9673 SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
9674 M:      Jayamohan Kallickal <jayamohan.kallickal@avagotech.com>
9675 M:      Ketan Mukadam <ketan.mukadam@avagotech.com>
9676 M:      John Soni Jose <sony.john@avagotech.com>
9677 L:      linux-scsi@vger.kernel.org
9678 W:      http://www.avagotech.com
9679 S:      Supported
9680 F:      drivers/scsi/be2iscsi/
9681
9682 Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER
9683 M:      Sathya Perla <sathya.perla@avagotech.com>
9684 M:      Ajit Khaparde <ajit.khaparde@avagotech.com>
9685 M:      Padmanabh Ratnakar <padmanabh.ratnakar@avagotech.com>
9686 M:      Sriharsha Basavapatna <sriharsha.basavapatna@avagotech.com>
9687 L:      netdev@vger.kernel.org
9688 W:      http://www.emulex.com
9689 S:      Supported
9690 F:      drivers/net/ethernet/emulex/benet/
9691
9692 EMULEX ONECONNECT ROCE DRIVER
9693 M:      Selvin Xavier <selvin.xavier@avagotech.com>
9694 M:      Devesh Sharma <devesh.sharma@avagotech.com>
9695 M:      Mitesh Ahuja <mitesh.ahuja@avagotech.com>
9696 L:      linux-rdma@vger.kernel.org
9697 W:      http://www.emulex.com
9698 S:      Supported
9699 F:      drivers/infiniband/hw/ocrdma/
9700
9701 SFC NETWORK DRIVER
9702 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
9703 M:      Shradha Shah <sshah@solarflare.com>
9704 L:      netdev@vger.kernel.org
9705 S:      Supported
9706 F:      drivers/net/ethernet/sfc/
9707
9708 SGI GRU DRIVER
9709 M:      Dimitri Sivanich <sivanich@sgi.com>
9710 S:      Maintained
9711 F:      drivers/misc/sgi-gru/
9712
9713 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
9714 M:      Pat Gefre <pfg@sgi.com>
9715 L:      linux-ia64@vger.kernel.org
9716 S:      Supported
9717 F:      Documentation/ia64/serial.txt
9718 F:      drivers/tty/serial/ioc?_serial.c
9719 F:      include/linux/ioc?.h
9720
9721 SGI XP/XPC/XPNET DRIVER
9722 M:      Cliff Whickman <cpw@sgi.com>
9723 M:      Robin Holt <robinmholt@gmail.com>
9724 S:      Maintained
9725 F:      drivers/misc/sgi-xp/
9726
9727 SI2157 MEDIA DRIVER
9728 M:      Antti Palosaari <crope@iki.fi>
9729 L:      linux-media@vger.kernel.org
9730 W:      https://linuxtv.org
9731 W:      http://palosaari.fi/linux/
9732 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9733 T:      git git://linuxtv.org/anttip/media_tree.git
9734 S:      Maintained
9735 F:      drivers/media/tuners/si2157*
9736
9737 SI2168 MEDIA DRIVER
9738 M:      Antti Palosaari <crope@iki.fi>
9739 L:      linux-media@vger.kernel.org
9740 W:      https://linuxtv.org
9741 W:      http://palosaari.fi/linux/
9742 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9743 T:      git git://linuxtv.org/anttip/media_tree.git
9744 S:      Maintained
9745 F:      drivers/media/dvb-frontends/si2168*
9746
9747 SI470X FM RADIO RECEIVER I2C DRIVER
9748 M:      Hans Verkuil <hverkuil@xs4all.nl>
9749 L:      linux-media@vger.kernel.org
9750 T:      git git://linuxtv.org/media_tree.git
9751 W:      https://linuxtv.org
9752 S:      Odd Fixes
9753 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
9754
9755 SI470X FM RADIO RECEIVER USB DRIVER
9756 M:      Hans Verkuil <hverkuil@xs4all.nl>
9757 L:      linux-media@vger.kernel.org
9758 T:      git git://linuxtv.org/media_tree.git
9759 W:      https://linuxtv.org
9760 S:      Maintained
9761 F:      drivers/media/radio/si470x/radio-si470x-common.c
9762 F:      drivers/media/radio/si470x/radio-si470x.h
9763 F:      drivers/media/radio/si470x/radio-si470x-usb.c
9764
9765 SI4713 FM RADIO TRANSMITTER I2C DRIVER
9766 M:      Eduardo Valentin <edubezval@gmail.com>
9767 L:      linux-media@vger.kernel.org
9768 T:      git git://linuxtv.org/media_tree.git
9769 W:      https://linuxtv.org
9770 S:      Odd Fixes
9771 F:      drivers/media/radio/si4713/si4713.?
9772
9773 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
9774 M:      Eduardo Valentin <edubezval@gmail.com>
9775 L:      linux-media@vger.kernel.org
9776 T:      git git://linuxtv.org/media_tree.git
9777 W:      https://linuxtv.org
9778 S:      Odd Fixes
9779 F:      drivers/media/radio/si4713/radio-platform-si4713.c
9780
9781 SI4713 FM RADIO TRANSMITTER USB DRIVER
9782 M:      Hans Verkuil <hverkuil@xs4all.nl>
9783 L:      linux-media@vger.kernel.org
9784 T:      git git://linuxtv.org/media_tree.git
9785 W:      https://linuxtv.org
9786 S:      Maintained
9787 F:      drivers/media/radio/si4713/radio-usb-si4713.c
9788
9789 SIANO DVB DRIVER
9790 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9791 L:      linux-media@vger.kernel.org
9792 W:      https://linuxtv.org
9793 T:      git git://linuxtv.org/media_tree.git
9794 S:      Odd fixes
9795 F:      drivers/media/common/siano/
9796 F:      drivers/media/usb/siano/
9797 F:      drivers/media/usb/siano/
9798 F:      drivers/media/mmc/siano/
9799
9800 SIMPLEFB FB DRIVER
9801 M:      Hans de Goede <hdegoede@redhat.com>
9802 L:      linux-fbdev@vger.kernel.org
9803 S:      Maintained
9804 F:      Documentation/devicetree/bindings/display/simple-framebuffer.txt
9805 F:      drivers/video/fbdev/simplefb.c
9806 F:      include/linux/platform_data/simplefb.h
9807
9808 SH_VEU V4L2 MEM2MEM DRIVER
9809 L:      linux-media@vger.kernel.org
9810 S:      Orphan
9811 F:      drivers/media/platform/sh_veu.c
9812
9813 SH_VOU V4L2 OUTPUT DRIVER
9814 L:      linux-media@vger.kernel.org
9815 S:      Orphan
9816 F:      drivers/media/platform/sh_vou.c
9817 F:      include/media/drv-intf/sh_vou.h
9818
9819 SIMPLE FIRMWARE INTERFACE (SFI)
9820 M:      Len Brown <lenb@kernel.org>
9821 L:      sfi-devel@simplefirmware.org
9822 W:      http://simplefirmware.org/
9823 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
9824 S:      Supported
9825 F:      arch/x86/platform/sfi/
9826 F:      drivers/sfi/
9827 F:      include/linux/sfi*.h
9828
9829 SIMTEC EB110ATX (Chalice CATS)
9830 P:      Ben Dooks
9831 P:      Vincent Sanders <vince@simtec.co.uk>
9832 M:      Simtec Linux Team <linux@simtec.co.uk>
9833 W:      http://www.simtec.co.uk/products/EB110ATX/
9834 S:      Supported
9835
9836 SIMTEC EB2410ITX (BAST)
9837 P:      Ben Dooks
9838 P:      Vincent Sanders <vince@simtec.co.uk>
9839 M:      Simtec Linux Team <linux@simtec.co.uk>
9840 W:      http://www.simtec.co.uk/products/EB2410ITX/
9841 S:      Supported
9842 F:      arch/arm/mach-s3c24xx/mach-bast.c
9843 F:      arch/arm/mach-s3c24xx/bast-ide.c
9844 F:      arch/arm/mach-s3c24xx/bast-irq.c
9845
9846 TI DAVINCI MACHINE SUPPORT
9847 M:      Sekhar Nori <nsekhar@ti.com>
9848 M:      Kevin Hilman <khilman@deeprootsystems.com>
9849 T:      git git://gitorious.org/linux-davinci/linux-davinci.git
9850 Q:      http://patchwork.kernel.org/project/linux-davinci/list/
9851 S:      Supported
9852 F:      arch/arm/mach-davinci/
9853 F:      drivers/i2c/busses/i2c-davinci.c
9854
9855 TI DAVINCI SERIES MEDIA DRIVER
9856 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9857 L:      linux-media@vger.kernel.org
9858 W:      https://linuxtv.org
9859 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9860 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9861 S:      Maintained
9862 F:      drivers/media/platform/davinci/
9863 F:      include/media/davinci/
9864
9865 TI AM437X VPFE DRIVER
9866 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9867 L:      linux-media@vger.kernel.org
9868 W:      https://linuxtv.org
9869 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9870 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9871 S:      Maintained
9872 F:      drivers/media/platform/am437x/
9873
9874 OV2659 OMNIVISION SENSOR DRIVER
9875 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9876 L:      linux-media@vger.kernel.org
9877 W:      https://linuxtv.org
9878 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9879 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9880 S:      Maintained
9881 F:      drivers/media/i2c/ov2659.c
9882 F:      include/media/i2c/ov2659.h
9883
9884 SILICON MOTION SM712 FRAME BUFFER DRIVER
9885 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
9886 M:      Teddy Wang <teddy.wang@siliconmotion.com>
9887 M:      Sudip Mukherjee <sudip@vectorindia.org>
9888 L:      linux-fbdev@vger.kernel.org
9889 S:      Maintained
9890 F:      drivers/video/fbdev/sm712*
9891 F:      Documentation/fb/sm712fb.txt
9892
9893 SIS 190 ETHERNET DRIVER
9894 M:      Francois Romieu <romieu@fr.zoreil.com>
9895 L:      netdev@vger.kernel.org
9896 S:      Maintained
9897 F:      drivers/net/ethernet/sis/sis190.c
9898
9899 SIS 900/7016 FAST ETHERNET DRIVER
9900 M:      Daniele Venzano <venza@brownhat.org>
9901 W:      http://www.brownhat.org/sis900.html
9902 L:      netdev@vger.kernel.org
9903 S:      Maintained
9904 F:      drivers/net/ethernet/sis/sis900.*
9905
9906 SIS FRAMEBUFFER DRIVER
9907 M:      Thomas Winischhofer <thomas@winischhofer.net>
9908 W:      http://www.winischhofer.net/linuxsisvga.shtml
9909 S:      Maintained
9910 F:      Documentation/fb/sisfb.txt
9911 F:      drivers/video/fbdev/sis/
9912 F:      include/video/sisfb.h
9913
9914 SIS USB2VGA DRIVER
9915 M:      Thomas Winischhofer <thomas@winischhofer.net>
9916 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
9917 S:      Maintained
9918 F:      drivers/usb/misc/sisusbvga/
9919
9920 SLAB ALLOCATOR
9921 M:      Christoph Lameter <cl@linux.com>
9922 M:      Pekka Enberg <penberg@kernel.org>
9923 M:      David Rientjes <rientjes@google.com>
9924 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
9925 M:      Andrew Morton <akpm@linux-foundation.org>
9926 L:      linux-mm@kvack.org
9927 S:      Maintained
9928 F:      include/linux/sl?b*.h
9929 F:      mm/sl?b*
9930
9931 SLEEPABLE READ-COPY UPDATE (SRCU)
9932 M:      Lai Jiangshan <jiangshanlai@gmail.com>
9933 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9934 M:      Josh Triplett <josh@joshtriplett.org>
9935 R:      Steven Rostedt <rostedt@goodmis.org>
9936 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9937 L:      linux-kernel@vger.kernel.org
9938 W:      http://www.rdrop.com/users/paulmck/RCU/
9939 S:      Supported
9940 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9941 F:      include/linux/srcu.h
9942 F:      kernel/rcu/srcu.c
9943
9944 SMACK SECURITY MODULE
9945 M:      Casey Schaufler <casey@schaufler-ca.com>
9946 L:      linux-security-module@vger.kernel.org
9947 W:      http://schaufler-ca.com
9948 T:      git git://git.gitorious.org/smack-next/kernel.git
9949 S:      Maintained
9950 F:      Documentation/security/Smack.txt
9951 F:      security/smack/
9952
9953 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
9954 M:      Kevin Hilman <khilman@kernel.org>
9955 M:      Nishanth Menon <nm@ti.com>
9956 S:      Maintained
9957 F:      drivers/power/avs/
9958 F:      include/linux/power/smartreflex.h
9959 L:      linux-pm@vger.kernel.org
9960
9961 SMC91x ETHERNET DRIVER
9962 M:      Nicolas Pitre <nico@fluxnic.net>
9963 S:      Odd Fixes
9964 F:      drivers/net/ethernet/smsc/smc91x.*
9965
9966 SMIA AND SMIA++ IMAGE SENSOR DRIVER
9967 M:      Sakari Ailus <sakari.ailus@iki.fi>
9968 L:      linux-media@vger.kernel.org
9969 S:      Maintained
9970 F:      drivers/media/i2c/smiapp/
9971 F:      include/media/i2c/smiapp.h
9972 F:      drivers/media/i2c/smiapp-pll.c
9973 F:      drivers/media/i2c/smiapp-pll.h
9974 F:      include/uapi/linux/smiapp.h
9975 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
9976
9977 SMM665 HARDWARE MONITOR DRIVER
9978 M:      Guenter Roeck <linux@roeck-us.net>
9979 L:      lm-sensors@lm-sensors.org
9980 S:      Maintained
9981 F:      Documentation/hwmon/smm665
9982 F:      drivers/hwmon/smm665.c
9983
9984 SMSC EMC2103 HARDWARE MONITOR DRIVER
9985 M:      Steve Glendinning <steve.glendinning@shawell.net>
9986 L:      lm-sensors@lm-sensors.org
9987 S:      Maintained
9988 F:      Documentation/hwmon/emc2103
9989 F:      drivers/hwmon/emc2103.c
9990
9991 SMSC SCH5627 HARDWARE MONITOR DRIVER
9992 M:      Hans de Goede <hdegoede@redhat.com>
9993 L:      lm-sensors@lm-sensors.org
9994 S:      Supported
9995 F:      Documentation/hwmon/sch5627
9996 F:      drivers/hwmon/sch5627.c
9997
9998 SMSC47B397 HARDWARE MONITOR DRIVER
9999 M:      Jean Delvare <jdelvare@suse.com>
10000 L:      lm-sensors@lm-sensors.org
10001 S:      Maintained
10002 F:      Documentation/hwmon/smsc47b397
10003 F:      drivers/hwmon/smsc47b397.c
10004
10005 SMSC911x ETHERNET DRIVER
10006 M:      Steve Glendinning <steve.glendinning@shawell.net>
10007 L:      netdev@vger.kernel.org
10008 S:      Maintained
10009 F:      include/linux/smsc911x.h
10010 F:      drivers/net/ethernet/smsc/smsc911x.*
10011
10012 SMSC9420 PCI ETHERNET DRIVER
10013 M:      Steve Glendinning <steve.glendinning@shawell.net>
10014 L:      netdev@vger.kernel.org
10015 S:      Maintained
10016 F:      drivers/net/ethernet/smsc/smsc9420.*
10017
10018 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
10019 M:      Steve Glendinning <steve.glendinning@shawell.net>
10020 L:      linux-fbdev@vger.kernel.org
10021 S:      Maintained
10022 F:      drivers/video/fbdev/smscufx.c
10023
10024 SOC-CAMERA V4L2 SUBSYSTEM
10025 M:      Guennadi Liakhovetski <g.liakhovetski@gmx.de>
10026 L:      linux-media@vger.kernel.org
10027 T:      git git://linuxtv.org/media_tree.git
10028 S:      Maintained
10029 F:      include/media/soc*
10030 F:      drivers/media/i2c/soc_camera/
10031 F:      drivers/media/platform/soc_camera/
10032
10033 SOEKRIS NET48XX LED SUPPORT
10034 M:      Chris Boot <bootc@bootc.net>
10035 S:      Maintained
10036 F:      drivers/leds/leds-net48xx.c
10037
10038 SOFTLOGIC 6x10 MPEG CODEC
10039 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
10040 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
10041 M:      Andrey Utkin <andrey.krieger.utkin@gmail.com>
10042 M:      Ismael Luceno <ismael@iodev.co.uk>
10043 L:      linux-media@vger.kernel.org
10044 S:      Supported
10045 F:      drivers/media/pci/solo6x10/
10046
10047 SOFTWARE RAID (Multiple Disks) SUPPORT
10048 L:      linux-raid@vger.kernel.org
10049 S:      Supported
10050 F:      drivers/md/
10051 F:      include/linux/raid/
10052 F:      include/uapi/linux/raid/
10053
10054 SONIC NETWORK DRIVER
10055 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
10056 L:      netdev@vger.kernel.org
10057 S:      Maintained
10058 F:      drivers/net/ethernet/natsemi/sonic.*
10059
10060 SONICS SILICON BACKPLANE DRIVER (SSB)
10061 M:      Michael Buesch <m@bues.ch>
10062 L:      netdev@vger.kernel.org
10063 S:      Maintained
10064 F:      drivers/ssb/
10065 F:      include/linux/ssb/
10066
10067 SONY VAIO CONTROL DEVICE DRIVER
10068 M:      Mattia Dongili <malattia@linux.it>
10069 L:      platform-driver-x86@vger.kernel.org
10070 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
10071 S:      Maintained
10072 F:      Documentation/laptops/sony-laptop.txt
10073 F:      drivers/char/sonypi.c
10074 F:      drivers/platform/x86/sony-laptop.c
10075 F:      include/linux/sony-laptop.h
10076
10077 SONY MEMORYSTICK CARD SUPPORT
10078 M:      Alex Dubov <oakad@yahoo.com>
10079 W:      http://tifmxx.berlios.de/
10080 S:      Maintained
10081 F:      drivers/memstick/host/tifm_ms.c
10082
10083 SONY MEMORYSTICK STANDARD SUPPORT
10084 M:      Maxim Levitsky <maximlevitsky@gmail.com>
10085 S:      Maintained
10086 F:      drivers/memstick/core/ms_block.*
10087
10088 SOUND
10089 M:      Jaroslav Kysela <perex@perex.cz>
10090 M:      Takashi Iwai <tiwai@suse.com>
10091 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10092 W:      http://www.alsa-project.org/
10093 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
10094 T:      git git://git.alsa-project.org/alsa-kernel.git
10095 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
10096 S:      Maintained
10097 F:      Documentation/sound/
10098 F:      include/sound/
10099 F:      include/uapi/sound/
10100 F:      sound/
10101
10102 SOUND - COMPRESSED AUDIO
10103 M:      Vinod Koul <vinod.koul@intel.com>
10104 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10105 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
10106 S:      Supported
10107 F:      Documentation/sound/alsa/compress_offload.txt
10108 F:      include/sound/compress_driver.h
10109 F:      include/uapi/sound/compress_*
10110 F:      sound/core/compress_offload.c
10111 F:      sound/soc/soc-compress.c
10112
10113 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
10114 M:      Liam Girdwood <lgirdwood@gmail.com>
10115 M:      Mark Brown <broonie@kernel.org>
10116 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
10117 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10118 W:      http://alsa-project.org/main/index.php/ASoC
10119 S:      Supported
10120 F:      Documentation/sound/alsa/soc/
10121 F:      sound/soc/
10122 F:      include/sound/soc*
10123
10124 SOUND - DMAENGINE HELPERS
10125 M:      Lars-Peter Clausen <lars@metafoo.de>
10126 S:      Supported
10127 F:      include/sound/dmaengine_pcm.h
10128 F:      sound/core/pcm_dmaengine.c
10129 F:      sound/soc/soc-generic-dmaengine-pcm.c
10130
10131 SP2 MEDIA DRIVER
10132 M:      Olli Salonen <olli.salonen@iki.fi>
10133 L:      linux-media@vger.kernel.org
10134 W:      https://linuxtv.org
10135 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10136 S:      Maintained
10137 F:      drivers/media/dvb-frontends/sp2*
10138
10139 SPARC + UltraSPARC (sparc/sparc64)
10140 M:      "David S. Miller" <davem@davemloft.net>
10141 L:      sparclinux@vger.kernel.org
10142 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
10143 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
10144 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
10145 S:      Maintained
10146 F:      arch/sparc/
10147 F:      drivers/sbus/
10148
10149 SPARC SERIAL DRIVERS
10150 M:      "David S. Miller" <davem@davemloft.net>
10151 L:      sparclinux@vger.kernel.org
10152 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
10153 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
10154 S:      Maintained
10155 F:      include/linux/sunserialcore.h
10156 F:      drivers/tty/serial/suncore.c
10157 F:      drivers/tty/serial/sunhv.c
10158 F:      drivers/tty/serial/sunsab.c
10159 F:      drivers/tty/serial/sunsab.h
10160 F:      drivers/tty/serial/sunsu.c
10161 F:      drivers/tty/serial/sunzilog.c
10162 F:      drivers/tty/serial/sunzilog.h
10163
10164 SPARSE CHECKER
10165 M:      "Christopher Li" <sparse@chrisli.org>
10166 L:      linux-sparse@vger.kernel.org
10167 W:      https://sparse.wiki.kernel.org/
10168 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
10169 T:      git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
10170 S:      Maintained
10171 F:      include/linux/compiler.h
10172
10173 SPEAR PLATFORM SUPPORT
10174 M:      Viresh Kumar <vireshk@kernel.org>
10175 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
10176 L:      spear-devel@list.st.com
10177 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10178 W:      http://www.st.com/spear
10179 S:      Maintained
10180 F:      arch/arm/mach-spear/
10181
10182 SPEAR CLOCK FRAMEWORK SUPPORT
10183 M:      Viresh Kumar <vireshk@kernel.org>
10184 L:      spear-devel@list.st.com
10185 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10186 W:      http://www.st.com/spear
10187 S:      Maintained
10188 F:      drivers/clk/spear/
10189
10190 SPI SUBSYSTEM
10191 M:      Mark Brown <broonie@kernel.org>
10192 L:      linux-spi@vger.kernel.org
10193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
10194 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
10195 S:      Maintained
10196 F:      Documentation/spi/
10197 F:      drivers/spi/
10198 F:      include/linux/spi/
10199 F:      include/uapi/linux/spi/
10200
10201 SPIDERNET NETWORK DRIVER for CELL
10202 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
10203 L:      netdev@vger.kernel.org
10204 S:      Supported
10205 F:      Documentation/networking/spider_net.txt
10206 F:      drivers/net/ethernet/toshiba/spider_net*
10207
10208 SPU FILE SYSTEM
10209 M:      Jeremy Kerr <jk@ozlabs.org>
10210 L:      linuxppc-dev@lists.ozlabs.org
10211 W:      http://www.ibm.com/developerworks/power/cell/
10212 S:      Supported
10213 F:      Documentation/filesystems/spufs.txt
10214 F:      arch/powerpc/platforms/cell/spufs/
10215
10216 SQUASHFS FILE SYSTEM
10217 M:      Phillip Lougher <phillip@squashfs.org.uk>
10218 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
10219 W:      http://squashfs.org.uk
10220 S:      Maintained
10221 F:      Documentation/filesystems/squashfs.txt
10222 F:      fs/squashfs/
10223
10224 SRM (Alpha) environment access
10225 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
10226 S:      Maintained
10227 F:      arch/alpha/kernel/srm_env.c
10228
10229 STABLE BRANCH
10230 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10231 L:      stable@vger.kernel.org
10232 S:      Supported
10233 F:      Documentation/stable_kernel_rules.txt
10234
10235 STAGING SUBSYSTEM
10236 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10237 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
10238 L:      devel@driverdev.osuosl.org
10239 S:      Supported
10240 F:      drivers/staging/
10241
10242 STAGING - COMEDI
10243 M:      Ian Abbott <abbotti@mev.co.uk>
10244 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
10245 S:      Odd Fixes
10246 F:      drivers/staging/comedi/
10247
10248 STAGING - FLARION FT1000 DRIVERS
10249 M:      Marek Belisko <marek.belisko@gmail.com>
10250 S:      Odd Fixes
10251 F:      drivers/staging/ft1000/
10252
10253 STAGING - INDUSTRIAL IO
10254 M:      Jonathan Cameron <jic23@kernel.org>
10255 L:      linux-iio@vger.kernel.org
10256 S:      Odd Fixes
10257 F:      drivers/staging/iio/
10258
10259 STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
10260 M:      Jarod Wilson <jarod@wilsonet.com>
10261 W:      http://www.lirc.org/
10262 S:      Odd Fixes
10263 F:      drivers/staging/media/lirc/
10264
10265 STAGING - LUSTRE PARALLEL FILESYSTEM
10266 M:      Oleg Drokin <oleg.drokin@intel.com>
10267 M:      Andreas Dilger <andreas.dilger@intel.com>
10268 L:      lustre-devel@lists.lustre.org (moderated for non-subscribers)
10269 W:      http://wiki.lustre.org/
10270 S:      Maintained
10271 F:      drivers/staging/lustre
10272
10273 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
10274 M:      Marc Dietrich <marvin24@gmx.de>
10275 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
10276 L:      linux-tegra@vger.kernel.org
10277 S:      Maintained
10278 F:      drivers/staging/nvec/
10279
10280 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
10281 M:      Jens Frederich <jfrederich@gmail.com>
10282 M:      Daniel Drake <dsd@laptop.org>
10283 M:      Jon Nettleton <jon.nettleton@gmail.com>
10284 W:      http://wiki.laptop.org/go/DCON
10285 S:      Maintained
10286 F:      drivers/staging/olpc_dcon/
10287
10288 STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
10289 M:      Willy Tarreau <willy@meta-x.org>
10290 S:      Odd Fixes
10291 F:      drivers/staging/panel/
10292
10293 STAGING - REALTEK RTL8712U DRIVERS
10294 M:      Larry Finger <Larry.Finger@lwfinger.net>
10295 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
10296 S:      Odd Fixes
10297 F:      drivers/staging/rtl8712/
10298
10299 STAGING - REALTEK RTL8723U WIRELESS DRIVER
10300 M:      Larry Finger <Larry.Finger@lwfinger.net>
10301 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
10302 L:      linux-wireless@vger.kernel.org
10303 S:      Maintained
10304 F:      drivers/staging/rtl8723au/
10305
10306 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
10307 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
10308 M:      Teddy Wang <teddy.wang@siliconmotion.com>
10309 M:      Sudip Mukherjee <sudip@vectorindia.org>
10310 L:      linux-fbdev@vger.kernel.org
10311 S:      Maintained
10312 F:      drivers/staging/sm750fb/
10313
10314 STAGING - SLICOSS
10315 M:      Lior Dotan <liodot@gmail.com>
10316 M:      Christopher Harrer <charrer@alacritech.com>
10317 S:      Odd Fixes
10318 F:      drivers/staging/slicoss/
10319
10320 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
10321 M:      William Hubbs <w.d.hubbs@gmail.com>
10322 M:      Chris Brannon <chris@the-brannons.com>
10323 M:      Kirk Reiser <kirk@reisers.ca>
10324 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
10325 L:      speakup@linux-speakup.org
10326 W:      http://www.linux-speakup.org/
10327 S:      Odd Fixes
10328 F:      drivers/staging/speakup/
10329
10330 STAGING - VIA VT665X DRIVERS
10331 M:      Forest Bond <forest@alittletooquiet.net>
10332 S:      Odd Fixes
10333 F:      drivers/staging/vt665?/
10334
10335 STAGING - WILC1000 WIFI DRIVER
10336 M:      Johnny Kim <johnny.kim@atmel.com>
10337 M:      Austin Shin <austin.shin@atmel.com>
10338 M:      Chris Park <chris.park@atmel.com>
10339 M:      Tony Cho <tony.cho@atmel.com>
10340 M:      Glen Lee <glen.lee@atmel.com>
10341 M:      Leo Kim <leo.kim@atmel.com>
10342 L:      linux-wireless@vger.kernel.org
10343 S:      Supported
10344 F:      drivers/staging/wilc1000/
10345
10346 STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
10347 M:      Arnaud Patard <arnaud.patard@rtp-net.org>
10348 S:      Odd Fixes
10349 F:      drivers/staging/xgifb/
10350
10351 HFI1 DRIVER
10352 M:      Mike Marciniszyn <infinipath@intel.com>
10353 L:      linux-rdma@vger.kernel.org
10354 S:      Supported
10355 F:      drivers/staging/rdma/hfi1
10356
10357 STARFIRE/DURALAN NETWORK DRIVER
10358 M:      Ion Badulescu <ionut@badula.org>
10359 S:      Odd Fixes
10360 F:      drivers/net/ethernet/adaptec/starfire*
10361
10362 SUN3/3X
10363 M:      Sam Creasey <sammy@sammy.net>
10364 W:      http://sammy.net/sun3/
10365 S:      Maintained
10366 F:      arch/m68k/kernel/*sun3*
10367 F:      arch/m68k/sun3*/
10368 F:      arch/m68k/include/asm/sun3*
10369 F:      drivers/net/ethernet/i825xx/sun3*
10370
10371 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
10372 M:      Hans de Goede <hdegoede@redhat.com>
10373 L:      linux-input@vger.kernel.org
10374 S:      Maintained
10375 F:      Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
10376 F:      drivers/input/keyboard/sun4i-lradc-keys.c
10377
10378 SUNDANCE NETWORK DRIVER
10379 M:      Denis Kirjanov <kda@linux-powerpc.org>
10380 L:      netdev@vger.kernel.org
10381 S:      Maintained
10382 F:      drivers/net/ethernet/dlink/sundance.c
10383
10384 SUPERH
10385 L:      linux-sh@vger.kernel.org
10386 Q:      http://patchwork.kernel.org/project/linux-sh/list/
10387 S:      Orphan
10388 F:      Documentation/sh/
10389 F:      arch/sh/
10390 F:      drivers/sh/
10391
10392 SUSPEND TO RAM
10393 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
10394 M:      Len Brown <len.brown@intel.com>
10395 M:      Pavel Machek <pavel@ucw.cz>
10396 L:      linux-pm@vger.kernel.org
10397 S:      Supported
10398 F:      Documentation/power/
10399 F:      arch/x86/kernel/acpi/
10400 F:      drivers/base/power/
10401 F:      kernel/power/
10402 F:      include/linux/suspend.h
10403 F:      include/linux/freezer.h
10404 F:      include/linux/pm.h
10405
10406 SVGA HANDLING
10407 M:      Martin Mares <mj@ucw.cz>
10408 L:      linux-video@atrey.karlin.mff.cuni.cz
10409 S:      Maintained
10410 F:      Documentation/svga.txt
10411 F:      arch/x86/boot/video*
10412
10413 SWIOTLB SUBSYSTEM
10414 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10415 L:      linux-kernel@vger.kernel.org
10416 S:      Supported
10417 F:      lib/swiotlb.c
10418 F:      arch/*/kernel/pci-swiotlb.c
10419 F:      include/linux/swiotlb.h
10420
10421 SWITCHDEV
10422 M:      Jiri Pirko <jiri@resnulli.us>
10423 L:      netdev@vger.kernel.org
10424 S:      Supported
10425 F:      net/switchdev/
10426 F:      include/net/switchdev.h
10427
10428 SYNOPSYS ARC ARCHITECTURE
10429 M:      Vineet Gupta <vgupta@synopsys.com>
10430 L:      linux-snps-arc@lists.infradead.org
10431 S:      Supported
10432 F:      arch/arc/
10433 F:      Documentation/devicetree/bindings/arc/*
10434 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
10435 F:      drivers/tty/serial/arc_uart.c
10436 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
10437
10438 SYNOPSYS ARC SDP platform support
10439 M:      Alexey Brodkin <abrodkin@synopsys.com>
10440 S:      Supported
10441 F:      arch/arc/plat-axs10x
10442 F:      arch/arc/boot/dts/ax*
10443 F:      Documentation/devicetree/bindings/arc/axs10*
10444
10445 SYSTEM CONFIGURATION (SYSCON)
10446 M:      Lee Jones <lee.jones@linaro.org>
10447 M:      Arnd Bergmann <arnd@arndb.de>
10448 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
10449 S:      Supported
10450 F:      drivers/mfd/syscon.c
10451
10452 SYSV FILESYSTEM
10453 M:      Christoph Hellwig <hch@infradead.org>
10454 S:      Maintained
10455 F:      Documentation/filesystems/sysv-fs.txt
10456 F:      fs/sysv/
10457 F:      include/linux/sysv_fs.h
10458
10459 TARGET SUBSYSTEM
10460 M:      "Nicholas A. Bellinger" <nab@linux-iscsi.org>
10461 L:      linux-scsi@vger.kernel.org
10462 L:      target-devel@vger.kernel.org
10463 W:      http://www.linux-iscsi.org
10464 W:      http://groups.google.com/group/linux-iscsi-target-dev
10465 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10466 S:      Supported
10467 F:      drivers/target/
10468 F:      include/target/
10469 F:      Documentation/target/
10470
10471 TASKSTATS STATISTICS INTERFACE
10472 M:      Balbir Singh <bsingharora@gmail.com>
10473 S:      Maintained
10474 F:      Documentation/accounting/taskstats*
10475 F:      include/linux/taskstats*
10476 F:      kernel/taskstats.c
10477
10478 TC CLASSIFIER
10479 M:      Jamal Hadi Salim <jhs@mojatatu.com>
10480 L:      netdev@vger.kernel.org
10481 S:      Maintained
10482 F:      include/net/pkt_cls.h
10483 F:      include/uapi/linux/pkt_cls.h
10484 F:      net/sched/
10485
10486 TCP LOW PRIORITY MODULE
10487 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
10488 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
10489 W:      http://tcp-lp-mod.sourceforge.net/
10490 S:      Maintained
10491 F:      net/ipv4/tcp_lp.c
10492
10493 TDA10071 MEDIA DRIVER
10494 M:      Antti Palosaari <crope@iki.fi>
10495 L:      linux-media@vger.kernel.org
10496 W:      https://linuxtv.org
10497 W:      http://palosaari.fi/linux/
10498 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10499 T:      git git://linuxtv.org/anttip/media_tree.git
10500 S:      Maintained
10501 F:      drivers/media/dvb-frontends/tda10071*
10502
10503 TDA18212 MEDIA DRIVER
10504 M:      Antti Palosaari <crope@iki.fi>
10505 L:      linux-media@vger.kernel.org
10506 W:      https://linuxtv.org
10507 W:      http://palosaari.fi/linux/
10508 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10509 T:      git git://linuxtv.org/anttip/media_tree.git
10510 S:      Maintained
10511 F:      drivers/media/tuners/tda18212*
10512
10513 TDA18218 MEDIA DRIVER
10514 M:      Antti Palosaari <crope@iki.fi>
10515 L:      linux-media@vger.kernel.org
10516 W:      https://linuxtv.org
10517 W:      http://palosaari.fi/linux/
10518 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10519 T:      git git://linuxtv.org/anttip/media_tree.git
10520 S:      Maintained
10521 F:      drivers/media/tuners/tda18218*
10522
10523 TDA18271 MEDIA DRIVER
10524 M:      Michael Krufky <mkrufky@linuxtv.org>
10525 L:      linux-media@vger.kernel.org
10526 W:      https://linuxtv.org
10527 W:      http://github.com/mkrufky
10528 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10529 T:      git git://linuxtv.org/mkrufky/tuners.git
10530 S:      Maintained
10531 F:      drivers/media/tuners/tda18271*
10532
10533 TDA827x MEDIA DRIVER
10534 M:      Michael Krufky <mkrufky@linuxtv.org>
10535 L:      linux-media@vger.kernel.org
10536 W:      https://linuxtv.org
10537 W:      http://github.com/mkrufky
10538 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10539 T:      git git://linuxtv.org/mkrufky/tuners.git
10540 S:      Maintained
10541 F:      drivers/media/tuners/tda8290.*
10542
10543 TDA8290 MEDIA DRIVER
10544 M:      Michael Krufky <mkrufky@linuxtv.org>
10545 L:      linux-media@vger.kernel.org
10546 W:      https://linuxtv.org
10547 W:      http://github.com/mkrufky
10548 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10549 T:      git git://linuxtv.org/mkrufky/tuners.git
10550 S:      Maintained
10551 F:      drivers/media/tuners/tda8290.*
10552
10553 TDA9840 MEDIA DRIVER
10554 M:      Hans Verkuil <hverkuil@xs4all.nl>
10555 L:      linux-media@vger.kernel.org
10556 T:      git git://linuxtv.org/media_tree.git
10557 W:      https://linuxtv.org
10558 S:      Maintained
10559 F:      drivers/media/i2c/tda9840*
10560
10561 TEA5761 TUNER DRIVER
10562 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10563 L:      linux-media@vger.kernel.org
10564 W:      https://linuxtv.org
10565 T:      git git://linuxtv.org/media_tree.git
10566 S:      Odd fixes
10567 F:      drivers/media/tuners/tea5761.*
10568
10569 TEA5767 TUNER DRIVER
10570 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10571 L:      linux-media@vger.kernel.org
10572 W:      https://linuxtv.org
10573 T:      git git://linuxtv.org/media_tree.git
10574 S:      Maintained
10575 F:      drivers/media/tuners/tea5767.*
10576
10577 TEA6415C MEDIA DRIVER
10578 M:      Hans Verkuil <hverkuil@xs4all.nl>
10579 L:      linux-media@vger.kernel.org
10580 T:      git git://linuxtv.org/media_tree.git
10581 W:      https://linuxtv.org
10582 S:      Maintained
10583 F:      drivers/media/i2c/tea6415c*
10584
10585 TEA6420 MEDIA DRIVER
10586 M:      Hans Verkuil <hverkuil@xs4all.nl>
10587 L:      linux-media@vger.kernel.org
10588 T:      git git://linuxtv.org/media_tree.git
10589 W:      https://linuxtv.org
10590 S:      Maintained
10591 F:      drivers/media/i2c/tea6420*
10592
10593 TEAM DRIVER
10594 M:      Jiri Pirko <jiri@resnulli.us>
10595 L:      netdev@vger.kernel.org
10596 S:      Supported
10597 F:      drivers/net/team/
10598 F:      include/linux/if_team.h
10599 F:      include/uapi/linux/if_team.h
10600
10601 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
10602 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
10603 S:      Maintained
10604 F:      arch/x86/platform/ts5500/
10605
10606 TECHNOTREND USB IR RECEIVER
10607 M:      Sean Young <sean@mess.org>
10608 L:      linux-media@vger.kernel.org
10609 S:      Maintained
10610 F:      drivers/media/rc/ttusbir.c
10611
10612 TEGRA ARCHITECTURE SUPPORT
10613 M:      Stephen Warren <swarren@wwwdotorg.org>
10614 M:      Thierry Reding <thierry.reding@gmail.com>
10615 M:      Alexandre Courbot <gnurou@gmail.com>
10616 L:      linux-tegra@vger.kernel.org
10617 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
10618 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
10619 S:      Supported
10620 N:      [^a-z]tegra
10621
10622 TEGRA CLOCK DRIVER
10623 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
10624 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
10625 S:      Supported
10626 F:      drivers/clk/tegra/
10627
10628 TEGRA DMA DRIVER
10629 M:      Laxman Dewangan <ldewangan@nvidia.com>
10630 S:      Supported
10631 F:      drivers/dma/tegra20-apb-dma.c
10632
10633 TEGRA I2C DRIVER
10634 M:      Laxman Dewangan <ldewangan@nvidia.com>
10635 S:      Supported
10636 F:      drivers/i2c/busses/i2c-tegra.c
10637
10638 TEGRA IOMMU DRIVERS
10639 M:      Hiroshi Doyu <hdoyu@nvidia.com>
10640 S:      Supported
10641 F:      drivers/iommu/tegra*
10642
10643 TEGRA KBC DRIVER
10644 M:      Rakesh Iyer <riyer@nvidia.com>
10645 M:      Laxman Dewangan <ldewangan@nvidia.com>
10646 S:      Supported
10647 F:      drivers/input/keyboard/tegra-kbc.c
10648
10649 TEGRA PWM DRIVER
10650 M:      Thierry Reding <thierry.reding@gmail.com>
10651 S:      Supported
10652 F:      drivers/pwm/pwm-tegra.c
10653
10654 TEGRA SERIAL DRIVER
10655 M:      Laxman Dewangan <ldewangan@nvidia.com>
10656 S:      Supported
10657 F:      drivers/tty/serial/serial-tegra.c
10658
10659 TEGRA SPI DRIVER
10660 M:      Laxman Dewangan <ldewangan@nvidia.com>
10661 S:      Supported
10662 F:      drivers/spi/spi-tegra*
10663
10664 TEHUTI ETHERNET DRIVER
10665 M:      Andy Gospodarek <andy@greyhouse.net>
10666 L:      netdev@vger.kernel.org
10667 S:      Supported
10668 F:      drivers/net/ethernet/tehuti/*
10669
10670 Telecom Clock Driver for MCPL0010
10671 M:      Mark Gross <mark.gross@intel.com>
10672 S:      Supported
10673 F:      drivers/char/tlclk.c
10674
10675 TENSILICA XTENSA PORT (xtensa)
10676 M:      Chris Zankel <chris@zankel.net>
10677 M:      Max Filippov <jcmvbkbc@gmail.com>
10678 L:      linux-xtensa@linux-xtensa.org
10679 S:      Maintained
10680 F:      arch/xtensa/
10681 F:      drivers/irqchip/irq-xtensa-*
10682
10683 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
10684 M:      Hans Verkuil <hverkuil@xs4all.nl>
10685 L:      linux-media@vger.kernel.org
10686 T:      git git://linuxtv.org/media_tree.git
10687 W:      https://linuxtv.org
10688 S:      Maintained
10689 F:      drivers/media/radio/radio-raremono.c
10690
10691 THERMAL
10692 M:      Zhang Rui <rui.zhang@intel.com>
10693 M:      Eduardo Valentin <edubezval@gmail.com>
10694 L:      linux-pm@vger.kernel.org
10695 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
10696 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
10697 Q:      https://patchwork.kernel.org/project/linux-pm/list/
10698 S:      Supported
10699 F:      drivers/thermal/
10700 F:      include/linux/thermal.h
10701 F:      include/uapi/linux/thermal.h
10702 F:      include/linux/cpu_cooling.h
10703 F:      Documentation/devicetree/bindings/thermal/
10704
10705 THERMAL/CPU_COOLING
10706 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
10707 M:      Viresh Kumar <viresh.kumar@linaro.org>
10708 M:      Javi Merino <javi.merino@arm.com>
10709 L:      linux-pm@vger.kernel.org
10710 S:      Supported
10711 F:      Documentation/thermal/cpu-cooling-api.txt
10712 F:      drivers/thermal/cpu_cooling.c
10713 F:      include/linux/cpu_cooling.h
10714
10715 THINGM BLINK(1) USB RGB LED DRIVER
10716 M:      Vivien Didelot <vivien.didelot@savoirfairelinux.com>
10717 S:      Maintained
10718 F:      drivers/hid/hid-thingm.c
10719
10720 THINKPAD ACPI EXTRAS DRIVER
10721 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
10722 L:      ibm-acpi-devel@lists.sourceforge.net
10723 L:      platform-driver-x86@vger.kernel.org
10724 W:      http://ibm-acpi.sourceforge.net
10725 W:      http://thinkwiki.org/wiki/Ibm-acpi
10726 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
10727 S:      Maintained
10728 F:      drivers/platform/x86/thinkpad_acpi.c
10729
10730 TI BANDGAP AND THERMAL DRIVER
10731 M:      Eduardo Valentin <edubezval@gmail.com>
10732 L:      linux-pm@vger.kernel.org
10733 L:      linux-omap@vger.kernel.org
10734 S:      Maintained
10735 F:      drivers/thermal/ti-soc-thermal/
10736
10737 TI CDCE706 CLOCK DRIVER
10738 M:      Max Filippov <jcmvbkbc@gmail.com>
10739 S:      Maintained
10740 F:      drivers/clk/clk-cdce706.c
10741
10742 TI CLOCK DRIVER
10743 M:      Tero Kristo <t-kristo@ti.com>
10744 L:      linux-omap@vger.kernel.org
10745 S:      Maintained
10746 F:      drivers/clk/ti/
10747 F:      include/linux/clk/ti.h
10748
10749 TI FLASH MEDIA INTERFACE DRIVER
10750 M:      Alex Dubov <oakad@yahoo.com>
10751 S:      Maintained
10752 F:      drivers/misc/tifm*
10753 F:      drivers/mmc/host/tifm_sd.c
10754 F:      include/linux/tifm.h
10755
10756 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
10757 M:      Santosh Shilimkar <ssantosh@kernel.org>
10758 L:      linux-kernel@vger.kernel.org
10759 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10760 S:      Maintained
10761 F:      drivers/soc/ti/*
10762 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
10763
10764
10765 TI LM49xxx FAMILY ASoC CODEC DRIVERS
10766 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
10767 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
10768 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10769 S:      Maintained
10770 F:      sound/soc/codecs/lm49453*
10771 F:      sound/soc/codecs/isabelle*
10772
10773 TI LP855x BACKLIGHT DRIVER
10774 M:      Milo Kim <milo.kim@ti.com>
10775 S:      Maintained
10776 F:      Documentation/backlight/lp855x-driver.txt
10777 F:      drivers/video/backlight/lp855x_bl.c
10778 F:      include/linux/platform_data/lp855x.h
10779
10780 TI LP8727 CHARGER DRIVER
10781 M:      Milo Kim <milo.kim@ti.com>
10782 S:      Maintained
10783 F:      drivers/power/lp8727_charger.c
10784 F:      include/linux/platform_data/lp8727.h
10785
10786 TI LP8788 MFD DRIVER
10787 M:      Milo Kim <milo.kim@ti.com>
10788 S:      Maintained
10789 F:      drivers/iio/adc/lp8788_adc.c
10790 F:      drivers/leds/leds-lp8788.c
10791 F:      drivers/mfd/lp8788*.c
10792 F:      drivers/power/lp8788-charger.c
10793 F:      drivers/regulator/lp8788-*.c
10794 F:      include/linux/mfd/lp8788*.h
10795
10796 TI NETCP ETHERNET DRIVER
10797 M:      Wingman Kwok <w-kwok2@ti.com>
10798 M:      Murali Karicheri <m-karicheri2@ti.com>
10799 L:      netdev@vger.kernel.org
10800 S:      Maintained
10801 F:      drivers/net/ethernet/ti/netcp*
10802
10803 TI TAS571X FAMILY ASoC CODEC DRIVER
10804 M:      Kevin Cernekee <cernekee@chromium.org>
10805 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10806 S:      Odd Fixes
10807 F:      sound/soc/codecs/tas571x*
10808
10809 TI TWL4030 SERIES SOC CODEC DRIVER
10810 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
10811 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10812 S:      Maintained
10813 F:      sound/soc/codecs/twl4030*
10814
10815 TI WILINK WIRELESS DRIVERS
10816 L:      linux-wireless@vger.kernel.org
10817 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
10818 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
10819 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
10820 S:      Orphan
10821 F:      drivers/net/wireless/ti/
10822 F:      include/linux/wl12xx.h
10823
10824 TIPC NETWORK LAYER
10825 M:      Jon Maloy <jon.maloy@ericsson.com>
10826 M:      Ying Xue <ying.xue@windriver.com>
10827 L:      netdev@vger.kernel.org (core kernel code)
10828 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
10829 W:      http://tipc.sourceforge.net/
10830 S:      Maintained
10831 F:      include/uapi/linux/tipc*.h
10832 F:      net/tipc/
10833
10834 TILE ARCHITECTURE
10835 M:      Chris Metcalf <cmetcalf@ezchip.com>
10836 W:      http://www.ezchip.com/scm/
10837 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cmetcalf/linux-tile.git
10838 S:      Supported
10839 F:      arch/tile/
10840 F:      drivers/char/tile-srom.c
10841 F:      drivers/edac/tile_edac.c
10842 F:      drivers/net/ethernet/tile/
10843 F:      drivers/rtc/rtc-tile.c
10844 F:      drivers/tty/hvc/hvc_tile.c
10845 F:      drivers/tty/serial/tilegx.c
10846 F:      drivers/usb/host/*-tilegx.c
10847 F:      include/linux/usb/tilegx.h
10848
10849 TLAN NETWORK DRIVER
10850 M:      Samuel Chessman <chessman@tux.org>
10851 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
10852 W:      http://sourceforge.net/projects/tlan/
10853 S:      Maintained
10854 F:      Documentation/networking/tlan.txt
10855 F:      drivers/net/ethernet/ti/tlan.*
10856
10857 TOMOYO SECURITY MODULE
10858 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
10859 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
10860 L:      tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
10861 L:      tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
10862 L:      tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
10863 L:      tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
10864 W:      http://tomoyo.sourceforge.jp/
10865 T:      quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
10866 S:      Maintained
10867 F:      security/tomoyo/
10868
10869 TOPSTAR LAPTOP EXTRAS DRIVER
10870 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
10871 L:      platform-driver-x86@vger.kernel.org
10872 S:      Maintained
10873 F:      drivers/platform/x86/topstar-laptop.c
10874
10875 TOSHIBA ACPI EXTRAS DRIVER
10876 M:      Azael Avalos <coproscefalo@gmail.com>
10877 L:      platform-driver-x86@vger.kernel.org
10878 S:      Maintained
10879 F:      drivers/platform/x86/toshiba_acpi.c
10880
10881 TOSHIBA BLUETOOTH DRIVER
10882 M:      Azael Avalos <coproscefalo@gmail.com>
10883 L:      platform-driver-x86@vger.kernel.org
10884 S:      Maintained
10885 F:      drivers/platform/x86/toshiba_bluetooth.c
10886
10887 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
10888 M:      Azael Avalos <coproscefalo@gmail.com>
10889 L:      platform-driver-x86@vger.kernel.org
10890 S:      Maintained
10891 F:      drivers/platform/x86/toshiba_haps.c
10892
10893 TOSHIBA WMI HOTKEYS DRIVER
10894 M:      Azael Avalos <coproscefalo@gmail.com>
10895 L:      platform-driver-x86@vger.kernel.org
10896 S:      Maintained
10897 F:      drivers/platform/x86/toshiba-wmi.c
10898
10899 TOSHIBA SMM DRIVER
10900 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
10901 W:      http://www.buzzard.org.uk/toshiba/
10902 S:      Maintained
10903 F:      drivers/char/toshiba.c
10904 F:      include/linux/toshiba.h
10905 F:      include/uapi/linux/toshiba.h
10906
10907 TOSHIBA TC358743 DRIVER
10908 M:      Mats Randgaard <matrandg@cisco.com>
10909 L:      linux-media@vger.kernel.org
10910 S:      Maintained
10911 F:      drivers/media/i2c/tc358743*
10912 F:      include/media/i2c/tc358743.h
10913
10914 TMIO MMC DRIVER
10915 M:      Ian Molton <ian@mnementh.co.uk>
10916 L:      linux-mmc@vger.kernel.org
10917 S:      Maintained
10918 F:      drivers/mmc/host/tmio_mmc*
10919 F:      drivers/mmc/host/sh_mobile_sdhi.c
10920 F:      include/linux/mmc/tmio.h
10921 F:      include/linux/mmc/sh_mobile_sdhi.h
10922
10923 TMP401 HARDWARE MONITOR DRIVER
10924 M:      Guenter Roeck <linux@roeck-us.net>
10925 L:      lm-sensors@lm-sensors.org
10926 S:      Maintained
10927 F:      Documentation/hwmon/tmp401
10928 F:      drivers/hwmon/tmp401.c
10929
10930 TMPFS (SHMEM FILESYSTEM)
10931 M:      Hugh Dickins <hughd@google.com>
10932 L:      linux-mm@kvack.org
10933 S:      Maintained
10934 F:      include/linux/shmem_fs.h
10935 F:      mm/shmem.c
10936
10937 TM6000 VIDEO4LINUX DRIVER
10938 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10939 L:      linux-media@vger.kernel.org
10940 W:      https://linuxtv.org
10941 T:      git git://linuxtv.org/media_tree.git
10942 S:      Odd fixes
10943 F:      drivers/media/usb/tm6000/
10944
10945 TW68 VIDEO4LINUX DRIVER
10946 M:      Hans Verkuil <hverkuil@xs4all.nl>
10947 L:      linux-media@vger.kernel.org
10948 T:      git git://linuxtv.org/media_tree.git
10949 W:      https://linuxtv.org
10950 S:      Odd Fixes
10951 F:      drivers/media/pci/tw68/
10952
10953 TPM DEVICE DRIVER
10954 M:      Peter Huewe <peterhuewe@gmx.de>
10955 M:      Marcel Selhorst <tpmdd@selhorst.net>
10956 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
10957 R:      Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
10958 W:      http://tpmdd.sourceforge.net
10959 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
10960 Q:      git git://github.com/PeterHuewe/linux-tpmdd.git
10961 T:      https://github.com/PeterHuewe/linux-tpmdd
10962 S:      Maintained
10963 F:      drivers/char/tpm/
10964
10965 TPM IBM_VTPM DEVICE DRIVER
10966 M:      Ashley Lai <ashleydlai@gmail.com>
10967 W:      http://tpmdd.sourceforge.net
10968 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
10969 S:      Maintained
10970 F:      drivers/char/tpm/tpm_ibmvtpm*
10971
10972 TRACING
10973 M:      Steven Rostedt <rostedt@goodmis.org>
10974 M:      Ingo Molnar <mingo@redhat.com>
10975 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
10976 S:      Maintained
10977 F:      Documentation/trace/ftrace.txt
10978 F:      arch/*/*/*/ftrace.h
10979 F:      arch/*/kernel/ftrace.c
10980 F:      include/*/ftrace.h
10981 F:      include/linux/trace*.h
10982 F:      include/trace/
10983 F:      kernel/trace/
10984 F:      tools/testing/selftests/ftrace/
10985
10986 TRIVIAL PATCHES
10987 M:      Jiri Kosina <trivial@kernel.org>
10988 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
10989 S:      Maintained
10990 K:      ^Subject:.*(?i)trivial
10991
10992 TTY LAYER
10993 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10994 M:      Jiri Slaby <jslaby@suse.com>
10995 S:      Supported
10996 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
10997 F:      Documentation/serial/
10998 F:      drivers/tty/
10999 F:      drivers/tty/serial/serial_core.c
11000 F:      include/linux/serial_core.h
11001 F:      include/linux/serial.h
11002 F:      include/linux/tty.h
11003 F:      include/uapi/linux/serial_core.h
11004 F:      include/uapi/linux/serial.h
11005 F:      include/uapi/linux/tty.h
11006
11007 TUA9001 MEDIA DRIVER
11008 M:      Antti Palosaari <crope@iki.fi>
11009 L:      linux-media@vger.kernel.org
11010 W:      https://linuxtv.org
11011 W:      http://palosaari.fi/linux/
11012 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11013 T:      git git://linuxtv.org/anttip/media_tree.git
11014 S:      Maintained
11015 F:      drivers/media/tuners/tua9001*
11016
11017 TULIP NETWORK DRIVERS
11018 L:      netdev@vger.kernel.org
11019 L:      linux-parisc@vger.kernel.org
11020 S:      Orphan
11021 F:      drivers/net/ethernet/dec/tulip/
11022
11023 TUN/TAP driver
11024 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
11025 W:      http://vtun.sourceforge.net/tun
11026 S:      Maintained
11027 F:      Documentation/networking/tuntap.txt
11028 F:      arch/um/os-Linux/drivers/
11029
11030 TURBOCHANNEL SUBSYSTEM
11031 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
11032 M:      Ralf Baechle <ralf@linux-mips.org>
11033 L:      linux-mips@linux-mips.org
11034 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
11035 S:      Maintained
11036 F:      drivers/tc/
11037 F:      include/linux/tc.h
11038
11039 U14-34F SCSI DRIVER
11040 M:      Dario Ballabio <ballabio_dario@emc.com>
11041 L:      linux-scsi@vger.kernel.org
11042 S:      Maintained
11043 F:      drivers/scsi/u14-34f.c
11044
11045 UBI FILE SYSTEM (UBIFS)
11046 M:      Artem Bityutskiy <dedekind1@gmail.com>
11047 M:      Adrian Hunter <adrian.hunter@intel.com>
11048 L:      linux-mtd@lists.infradead.org
11049 T:      git git://git.infradead.org/ubifs-2.6.git
11050 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
11051 S:      Maintained
11052 F:      Documentation/filesystems/ubifs.txt
11053 F:      fs/ubifs/
11054
11055 UCLINUX (M68KNOMMU AND COLDFIRE)
11056 M:      Greg Ungerer <gerg@uclinux.org>
11057 W:      http://www.uclinux.org/
11058 L:      linux-m68k@lists.linux-m68k.org
11059 L:      uclinux-dev@uclinux.org  (subscribers-only)
11060 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
11061 S:      Maintained
11062 F:      arch/m68k/coldfire/
11063 F:      arch/m68k/68*/
11064 F:      arch/m68k/*/*_no.*
11065 F:      arch/m68k/include/asm/*_no.*
11066
11067 UDF FILESYSTEM
11068 M:      Jan Kara <jack@suse.com>
11069 S:      Maintained
11070 F:      Documentation/filesystems/udf.txt
11071 F:      fs/udf/
11072
11073 UFS FILESYSTEM
11074 M:      Evgeniy Dushistov <dushistov@mail.ru>
11075 S:      Maintained
11076 F:      Documentation/filesystems/ufs.txt
11077 F:      fs/ufs/
11078
11079 UHID USERSPACE HID IO DRIVER:
11080 M:      David Herrmann <dh.herrmann@googlemail.com>
11081 L:      linux-input@vger.kernel.org
11082 S:      Maintained
11083 F:      drivers/hid/uhid.c
11084 F:      include/uapi/linux/uhid.h
11085
11086 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
11087 L:      linux-usb@vger.kernel.org
11088 S:      Orphan
11089 F:      drivers/uwb/
11090 F:      include/linux/uwb.h
11091 F:      include/linux/uwb/
11092
11093 UNICORE32 ARCHITECTURE:
11094 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
11095 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
11096 S:      Maintained
11097 T:      git git://github.com/gxt/linux.git
11098 F:      arch/unicore32/
11099
11100 UNIFDEF
11101 M:      Tony Finch <dot@dotat.at>
11102 W:      http://dotat.at/prog/unifdef
11103 S:      Maintained
11104 F:      scripts/unifdef.c
11105
11106 UNIFORM CDROM DRIVER
11107 M:      Jens Axboe <axboe@kernel.dk>
11108 W:      http://www.kernel.dk
11109 S:      Maintained
11110 F:      Documentation/cdrom/
11111 F:      drivers/cdrom/cdrom.c
11112 F:      include/linux/cdrom.h
11113 F:      include/uapi/linux/cdrom.h
11114
11115 UNISYS S-PAR DRIVERS
11116 M:      Benjamin Romer <benjamin.romer@unisys.com>
11117 M:      David Kershner <david.kershner@unisys.com>
11118 L:      sparmaintainer@unisys.com (Unisys internal)
11119 S:      Supported
11120 F:      drivers/staging/unisys/
11121
11122 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
11123 M:      Vinayak Holikatti <vinholikatti@gmail.com>
11124 L:      linux-scsi@vger.kernel.org
11125 S:      Supported
11126 F:      Documentation/scsi/ufs.txt
11127 F:      drivers/scsi/ufs/
11128
11129 UNSORTED BLOCK IMAGES (UBI)
11130 M:      Artem Bityutskiy <dedekind1@gmail.com>
11131 M:      Richard Weinberger <richard@nod.at>
11132 W:      http://www.linux-mtd.infradead.org/
11133 L:      linux-mtd@lists.infradead.org
11134 T:      git git://git.infradead.org/ubifs-2.6.git
11135 S:      Supported
11136 F:      drivers/mtd/ubi/
11137 F:      include/linux/mtd/ubi.h
11138 F:      include/uapi/mtd/ubi-user.h
11139
11140 USB ACM DRIVER
11141 M:      Oliver Neukum <oliver@neukum.org>
11142 L:      linux-usb@vger.kernel.org
11143 S:      Maintained
11144 F:      Documentation/usb/acm.txt
11145 F:      drivers/usb/class/cdc-acm.*
11146
11147 USB AR5523 WIRELESS DRIVER
11148 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
11149 L:      linux-wireless@vger.kernel.org
11150 S:      Maintained
11151 F:      drivers/net/wireless/ath/ar5523/
11152
11153 USB ATTACHED SCSI
11154 M:      Hans de Goede <hdegoede@redhat.com>
11155 M:      Gerd Hoffmann <kraxel@redhat.com>
11156 L:      linux-usb@vger.kernel.org
11157 L:      linux-scsi@vger.kernel.org
11158 S:      Maintained
11159 F:      drivers/usb/storage/uas.c
11160
11161 USB CDC ETHERNET DRIVER
11162 M:      Oliver Neukum <oliver@neukum.org>
11163 L:      linux-usb@vger.kernel.org
11164 S:      Maintained
11165 F:      drivers/net/usb/cdc_*.c
11166 F:      include/uapi/linux/usb/cdc.h
11167
11168 USB CHAOSKEY DRIVER
11169 M:      Keith Packard <keithp@keithp.com>
11170 L:      linux-usb@vger.kernel.org
11171 S:      Maintained
11172 F:      drivers/usb/misc/chaoskey.c
11173
11174 USB CYPRESS C67X00 DRIVER
11175 M:      Peter Korsgaard <jacmet@sunsite.dk>
11176 L:      linux-usb@vger.kernel.org
11177 S:      Maintained
11178 F:      drivers/usb/c67x00/
11179
11180 USB DAVICOM DM9601 DRIVER
11181 M:      Peter Korsgaard <jacmet@sunsite.dk>
11182 L:      netdev@vger.kernel.org
11183 W:      http://www.linux-usb.org/usbnet
11184 S:      Maintained
11185 F:      drivers/net/usb/dm9601.c
11186
11187 USB DIAMOND RIO500 DRIVER
11188 M:      Cesar Miquel <miquel@df.uba.ar>
11189 L:      rio500-users@lists.sourceforge.net
11190 W:      http://rio500.sourceforge.net
11191 S:      Maintained
11192 F:      drivers/usb/misc/rio500*
11193
11194 USB EHCI DRIVER
11195 M:      Alan Stern <stern@rowland.harvard.edu>
11196 L:      linux-usb@vger.kernel.org
11197 S:      Maintained
11198 F:      Documentation/usb/ehci.txt
11199 F:      drivers/usb/host/ehci*
11200
11201 USB GADGET/PERIPHERAL SUBSYSTEM
11202 M:      Felipe Balbi <balbi@ti.com>
11203 L:      linux-usb@vger.kernel.org
11204 W:      http://www.linux-usb.org/gadget
11205 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
11206 S:      Maintained
11207 F:      drivers/usb/gadget/
11208 F:      include/linux/usb/gadget*
11209
11210 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
11211 M:      Jiri Kosina <jikos@kernel.org>
11212 R:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
11213 L:      linux-usb@vger.kernel.org
11214 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
11215 S:      Maintained
11216 F:      Documentation/hid/hiddev.txt
11217 F:      drivers/hid/usbhid/
11218
11219 USB ISP116X DRIVER
11220 M:      Olav Kongas <ok@artecdesign.ee>
11221 L:      linux-usb@vger.kernel.org
11222 S:      Maintained
11223 F:      drivers/usb/host/isp116x*
11224 F:      include/linux/usb/isp116x.h
11225
11226 USB MASS STORAGE DRIVER
11227 M:      Matthew Dharm <mdharm-usb@one-eyed-alien.net>
11228 L:      linux-usb@vger.kernel.org
11229 L:      usb-storage@lists.one-eyed-alien.net
11230 S:      Maintained
11231 W:      http://www.one-eyed-alien.net/~mdharm/linux-usb/
11232 F:      drivers/usb/storage/
11233
11234 USB MIDI DRIVER
11235 M:      Clemens Ladisch <clemens@ladisch.de>
11236 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11237 T:      git git://git.alsa-project.org/alsa-kernel.git
11238 S:      Maintained
11239 F:      sound/usb/midi.*
11240
11241 USB NETWORKING DRIVERS
11242 L:      linux-usb@vger.kernel.org
11243 S:      Odd Fixes
11244 F:      drivers/net/usb/
11245
11246 USB OHCI DRIVER
11247 M:      Alan Stern <stern@rowland.harvard.edu>
11248 L:      linux-usb@vger.kernel.org
11249 S:      Maintained
11250 F:      Documentation/usb/ohci.txt
11251 F:      drivers/usb/host/ohci*
11252
11253 USB OTG FSM (Finite State Machine)
11254 M:      Peter Chen <Peter.Chen@nxp.com>
11255 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
11256 L:      linux-usb@vger.kernel.org
11257 S:      Maintained
11258 F:      drivers/usb/common/usb-otg-fsm.c
11259
11260 USB OVER IP DRIVER
11261 M:      Valentina Manea <valentina.manea.m@gmail.com>
11262 M:      Shuah Khan <shuah.kh@samsung.com>
11263 L:      linux-usb@vger.kernel.org
11264 S:      Maintained
11265 F:      drivers/usb/usbip/
11266 F:      tools/usb/usbip/
11267
11268 USB PEGASUS DRIVER
11269 M:      Petko Manolov <petkan@nucleusys.com>
11270 L:      linux-usb@vger.kernel.org
11271 L:      netdev@vger.kernel.org
11272 T:      git git://github.com/petkan/pegasus.git
11273 W:      https://github.com/petkan/pegasus
11274 S:      Maintained
11275 F:      drivers/net/usb/pegasus.*
11276
11277 USB PHY LAYER
11278 M:      Felipe Balbi <balbi@ti.com>
11279 L:      linux-usb@vger.kernel.org
11280 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
11281 S:      Maintained
11282 F:      drivers/usb/phy/
11283
11284 USB PRINTER DRIVER (usblp)
11285 M:      Pete Zaitcev <zaitcev@redhat.com>
11286 L:      linux-usb@vger.kernel.org
11287 S:      Supported
11288 F:      drivers/usb/class/usblp.c
11289
11290 USB QMI WWAN NETWORK DRIVER
11291 M:      Bjørn Mork <bjorn@mork.no>
11292 L:      netdev@vger.kernel.org
11293 S:      Maintained
11294 F:      Documentation/ABI/testing/sysfs-class-net-qmi
11295 F:      drivers/net/usb/qmi_wwan.c
11296
11297 USB RTL8150 DRIVER
11298 M:      Petko Manolov <petkan@nucleusys.com>
11299 L:      linux-usb@vger.kernel.org
11300 L:      netdev@vger.kernel.org
11301 T:      git git://github.com/petkan/rtl8150.git
11302 W:      https://github.com/petkan/rtl8150
11303 S:      Maintained
11304 F:      drivers/net/usb/rtl8150.c
11305
11306 USB SERIAL SUBSYSTEM
11307 M:      Johan Hovold <johan@kernel.org>
11308 L:      linux-usb@vger.kernel.org
11309 S:      Maintained
11310 F:      Documentation/usb/usb-serial.txt
11311 F:      drivers/usb/serial/
11312 F:      include/linux/usb/serial.h
11313
11314 USB SMSC75XX ETHERNET DRIVER
11315 M:      Steve Glendinning <steve.glendinning@shawell.net>
11316 L:      netdev@vger.kernel.org
11317 S:      Maintained
11318 F:      drivers/net/usb/smsc75xx.*
11319
11320 USB SMSC95XX ETHERNET DRIVER
11321 M:      Steve Glendinning <steve.glendinning@shawell.net>
11322 L:      netdev@vger.kernel.org
11323 S:      Maintained
11324 F:      drivers/net/usb/smsc95xx.*
11325
11326 USB SUBSYSTEM
11327 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11328 L:      linux-usb@vger.kernel.org
11329 W:      http://www.linux-usb.org
11330 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
11331 S:      Supported
11332 F:      Documentation/usb/
11333 F:      drivers/usb/
11334 F:      include/linux/usb.h
11335 F:      include/linux/usb/
11336
11337 USB UHCI DRIVER
11338 M:      Alan Stern <stern@rowland.harvard.edu>
11339 L:      linux-usb@vger.kernel.org
11340 S:      Maintained
11341 F:      drivers/usb/host/uhci*
11342
11343 USB "USBNET" DRIVER FRAMEWORK
11344 M:      Oliver Neukum <oneukum@suse.com>
11345 L:      netdev@vger.kernel.org
11346 W:      http://www.linux-usb.org/usbnet
11347 S:      Maintained
11348 F:      drivers/net/usb/usbnet.c
11349 F:      include/linux/usb/usbnet.h
11350
11351 USB VIDEO CLASS
11352 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11353 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
11354 L:      linux-media@vger.kernel.org
11355 T:      git git://linuxtv.org/media_tree.git
11356 W:      http://www.ideasonboard.org/uvc/
11357 S:      Maintained
11358 F:      drivers/media/usb/uvc/
11359 F:      include/uapi/linux/uvcvideo.h
11360
11361 USB VISION DRIVER
11362 M:      Hans Verkuil <hverkuil@xs4all.nl>
11363 L:      linux-media@vger.kernel.org
11364 T:      git git://linuxtv.org/media_tree.git
11365 W:      https://linuxtv.org
11366 S:      Odd Fixes
11367 F:      drivers/media/usb/usbvision/
11368
11369 USB WEBCAM GADGET
11370 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11371 L:      linux-usb@vger.kernel.org
11372 S:      Maintained
11373 F:      drivers/usb/gadget/function/*uvc*
11374 F:      drivers/usb/gadget/legacy/webcam.c
11375
11376 USB WIRELESS RNDIS DRIVER (rndis_wlan)
11377 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
11378 L:      linux-wireless@vger.kernel.org
11379 S:      Maintained
11380 F:      drivers/net/wireless/rndis_wlan.c
11381
11382 USB XHCI DRIVER
11383 M:      Mathias Nyman <mathias.nyman@intel.com>
11384 L:      linux-usb@vger.kernel.org
11385 S:      Supported
11386 F:      drivers/usb/host/xhci*
11387 F:      drivers/usb/host/pci-quirks*
11388
11389 USB ZD1201 DRIVER
11390 L:      linux-wireless@vger.kernel.org
11391 W:      http://linux-lc100020.sourceforge.net
11392 S:      Orphan
11393 F:      drivers/net/wireless/zydas/zd1201.*
11394
11395 USB ZR364XX DRIVER
11396 M:      Antoine Jacquet <royale@zerezo.com>
11397 L:      linux-usb@vger.kernel.org
11398 L:      linux-media@vger.kernel.org
11399 T:      git git://linuxtv.org/media_tree.git
11400 W:      http://royale.zerezo.com/zr364xx/
11401 S:      Maintained
11402 F:      Documentation/video4linux/zr364xx.txt
11403 F:      drivers/media/usb/zr364xx/
11404
11405 ULPI BUS
11406 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
11407 L:      linux-usb@vger.kernel.org
11408 S:      Maintained
11409 F:      drivers/usb/common/ulpi.c
11410 F:      include/linux/ulpi/
11411
11412 USER-MODE LINUX (UML)
11413 M:      Jeff Dike <jdike@addtoit.com>
11414 M:      Richard Weinberger <richard@nod.at>
11415 L:      user-mode-linux-devel@lists.sourceforge.net
11416 L:      user-mode-linux-user@lists.sourceforge.net
11417 W:      http://user-mode-linux.sourceforge.net
11418 S:      Maintained
11419 F:      Documentation/virtual/uml/
11420 F:      arch/um/
11421 F:      arch/x86/um/
11422 F:      fs/hostfs/
11423 F:      fs/hppfs/
11424
11425 USERSPACE I/O (UIO)
11426 M:      "Hans J. Koch" <hjk@hansjkoch.de>
11427 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11428 S:      Maintained
11429 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
11430 F:      Documentation/DocBook/uio-howto.tmpl
11431 F:      drivers/uio/
11432 F:      include/linux/uio*.h
11433
11434 UTIL-LINUX PACKAGE
11435 M:      Karel Zak <kzak@redhat.com>
11436 L:      util-linux@vger.kernel.org
11437 W:      http://en.wikipedia.org/wiki/Util-linux
11438 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
11439 S:      Maintained
11440
11441 UVESAFB DRIVER
11442 M:      Michal Januszewski <spock@gentoo.org>
11443 L:      linux-fbdev@vger.kernel.org
11444 W:      http://dev.gentoo.org/~spock/projects/uvesafb/
11445 S:      Maintained
11446 F:      Documentation/fb/uvesafb.txt
11447 F:      drivers/video/fbdev/uvesafb.*
11448
11449 VF610 NAND DRIVER
11450 M:      Stefan Agner <stefan@agner.ch>
11451 L:      linux-mtd@lists.infradead.org
11452 S:      Supported
11453 F:      drivers/mtd/nand/vf610_nfc.c
11454
11455 VFAT/FAT/MSDOS FILESYSTEM
11456 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
11457 S:      Maintained
11458 F:      Documentation/filesystems/vfat.txt
11459 F:      fs/fat/
11460
11461 VFIO DRIVER
11462 M:      Alex Williamson <alex.williamson@redhat.com>
11463 L:      kvm@vger.kernel.org
11464 S:      Maintained
11465 F:      Documentation/vfio.txt
11466 F:      drivers/vfio/
11467 F:      include/linux/vfio.h
11468 F:      include/uapi/linux/vfio.h
11469
11470 VFIO PLATFORM DRIVER
11471 M:      Baptiste Reynal <b.reynal@virtualopensystems.com>
11472 L:      kvm@vger.kernel.org
11473 S:      Maintained
11474 F:      drivers/vfio/platform/
11475
11476 VIDEOBUF2 FRAMEWORK
11477 M:      Pawel Osciak <pawel@osciak.com>
11478 M:      Marek Szyprowski <m.szyprowski@samsung.com>
11479 M:      Kyungmin Park <kyungmin.park@samsung.com>
11480 L:      linux-media@vger.kernel.org
11481 S:      Maintained
11482 F:      drivers/media/v4l2-core/videobuf2-*
11483 F:      include/media/videobuf2-*
11484
11485 VIRTUAL SERIO DEVICE DRIVER
11486 M:      Stephen Chandler Paul <thatslyude@gmail.com>
11487 S:      Maintained
11488 F:      drivers/input/serio/userio.c
11489 F:      include/uapi/linux/userio.h
11490
11491 VIRTIO CONSOLE DRIVER
11492 M:      Amit Shah <amit.shah@redhat.com>
11493 L:      virtualization@lists.linux-foundation.org
11494 S:      Maintained
11495 F:      drivers/char/virtio_console.c
11496 F:      include/linux/virtio_console.h
11497 F:      include/uapi/linux/virtio_console.h
11498
11499 VIRTIO CORE, NET AND BLOCK DRIVERS
11500 M:      "Michael S. Tsirkin" <mst@redhat.com>
11501 L:      virtualization@lists.linux-foundation.org
11502 S:      Maintained
11503 F:      drivers/virtio/
11504 F:      tools/virtio/
11505 F:      drivers/net/virtio_net.c
11506 F:      drivers/block/virtio_blk.c
11507 F:      include/linux/virtio_*.h
11508 F:      include/uapi/linux/virtio_*.h
11509
11510 VIRTIO DRIVERS FOR S390
11511 M:      Christian Borntraeger <borntraeger@de.ibm.com>
11512 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
11513 L:      linux-s390@vger.kernel.org
11514 L:      virtualization@lists.linux-foundation.org
11515 L:      kvm@vger.kernel.org
11516 S:      Supported
11517 F:      drivers/s390/virtio/
11518
11519 VIRTIO GPU DRIVER
11520 M:      David Airlie <airlied@linux.ie>
11521 M:      Gerd Hoffmann <kraxel@redhat.com>
11522 L:      dri-devel@lists.freedesktop.org
11523 L:      virtualization@lists.linux-foundation.org
11524 S:      Maintained
11525 F:      drivers/gpu/drm/virtio/
11526 F:      include/uapi/linux/virtio_gpu.h
11527
11528 VIRTIO HOST (VHOST)
11529 M:      "Michael S. Tsirkin" <mst@redhat.com>
11530 L:      kvm@vger.kernel.org
11531 L:      virtualization@lists.linux-foundation.org
11532 L:      netdev@vger.kernel.org
11533 S:      Maintained
11534 F:      drivers/vhost/
11535 F:      include/uapi/linux/vhost.h
11536
11537 VIRTIO INPUT DRIVER
11538 M:      Gerd Hoffmann <kraxel@redhat.com>
11539 S:      Maintained
11540 F:      drivers/virtio/virtio_input.c
11541 F:      include/uapi/linux/virtio_input.h
11542
11543 VIA RHINE NETWORK DRIVER
11544 S:      Orphan
11545 F:      drivers/net/ethernet/via/via-rhine.c
11546
11547 VIA SD/MMC CARD CONTROLLER DRIVER
11548 M:      Bruce Chang <brucechang@via.com.tw>
11549 M:      Harald Welte <HaraldWelte@viatech.com>
11550 S:      Maintained
11551 F:      drivers/mmc/host/via-sdmmc.c
11552
11553 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
11554 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
11555 L:      linux-fbdev@vger.kernel.org
11556 S:      Maintained
11557 F:      include/linux/via-core.h
11558 F:      include/linux/via-gpio.h
11559 F:      include/linux/via_i2c.h
11560 F:      drivers/video/fbdev/via/
11561
11562 VIA VELOCITY NETWORK DRIVER
11563 M:      Francois Romieu <romieu@fr.zoreil.com>
11564 L:      netdev@vger.kernel.org
11565 S:      Maintained
11566 F:      drivers/net/ethernet/via/via-velocity.*
11567
11568 VIRT LIB
11569 M:      Alex Williamson <alex.williamson@redhat.com>
11570 M:      Paolo Bonzini <pbonzini@redhat.com>
11571 L:      kvm@vger.kernel.org
11572 S:      Supported
11573 F:      virt/lib/
11574
11575 VIVID VIRTUAL VIDEO DRIVER
11576 M:      Hans Verkuil <hverkuil@xs4all.nl>
11577 L:      linux-media@vger.kernel.org
11578 T:      git git://linuxtv.org/media_tree.git
11579 W:      https://linuxtv.org
11580 S:      Maintained
11581 F:      drivers/media/platform/vivid/*
11582
11583 VLAN (802.1Q)
11584 M:      Patrick McHardy <kaber@trash.net>
11585 L:      netdev@vger.kernel.org
11586 S:      Maintained
11587 F:      drivers/net/macvlan.c
11588 F:      include/linux/if_*vlan.h
11589 F:      net/8021q/
11590
11591 VLYNQ BUS
11592 M:      Florian Fainelli <florian@openwrt.org>
11593 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
11594 S:      Maintained
11595 F:      drivers/vlynq/vlynq.c
11596 F:      include/linux/vlynq.h
11597
11598 VME SUBSYSTEM
11599 M:      Martyn Welch <martyn@welchs.me.uk>
11600 M:      Manohar Vanga <manohar.vanga@gmail.com>
11601 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11602 L:      devel@driverdev.osuosl.org
11603 S:      Maintained
11604 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
11605 F:      Documentation/vme_api.txt
11606 F:      drivers/staging/vme/
11607 F:      drivers/vme/
11608 F:      include/linux/vme*
11609
11610 VMWARE HYPERVISOR INTERFACE
11611 M:      Alok Kataria <akataria@vmware.com>
11612 L:      virtualization@lists.linux-foundation.org
11613 S:      Supported
11614 F:      arch/x86/kernel/cpu/vmware.c
11615
11616 VMWARE BALLOON DRIVER
11617 M:      Xavier Deguillard <xdeguillard@vmware.com>
11618 M:      Philip Moltmann <moltmann@vmware.com>
11619 M:      "VMware, Inc." <pv-drivers@vmware.com>
11620 L:      linux-kernel@vger.kernel.org
11621 S:      Maintained
11622 F:      drivers/misc/vmw_balloon.c
11623
11624 VMWARE VMMOUSE SUBDRIVER
11625 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
11626 M:      "VMware, Inc." <pv-drivers@vmware.com>
11627 L:      linux-input@vger.kernel.org
11628 S:      Maintained
11629 F:      drivers/input/mouse/vmmouse.c
11630 F:      drivers/input/mouse/vmmouse.h
11631
11632 VMWARE VMXNET3 ETHERNET DRIVER
11633 M:      Shrikrishna Khare <skhare@vmware.com>
11634 M:      "VMware, Inc." <pv-drivers@vmware.com>
11635 L:      netdev@vger.kernel.org
11636 S:      Maintained
11637 F:      drivers/net/vmxnet3/
11638
11639 VMware PVSCSI driver
11640 M:      Arvind Kumar <arvindkumar@vmware.com>
11641 M:      VMware PV-Drivers <pv-drivers@vmware.com>
11642 L:      linux-scsi@vger.kernel.org
11643 S:      Maintained
11644 F:      drivers/scsi/vmw_pvscsi.c
11645 F:      drivers/scsi/vmw_pvscsi.h
11646
11647 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
11648 M:      Liam Girdwood <lgirdwood@gmail.com>
11649 M:      Mark Brown <broonie@kernel.org>
11650 L:      linux-kernel@vger.kernel.org
11651 W:      http://www.slimlogic.co.uk/?p=48
11652 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
11653 S:      Supported
11654 F:      drivers/regulator/
11655 F:      include/linux/regulator/
11656
11657 VRF
11658 M:      David Ahern <dsa@cumulusnetworks.com>
11659 M:      Shrijeet Mukherjee <shm@cumulusnetworks.com>
11660 L:      netdev@vger.kernel.org
11661 S:      Maintained
11662 F:      drivers/net/vrf.c
11663 F:      Documentation/networking/vrf.txt
11664
11665 VT1211 HARDWARE MONITOR DRIVER
11666 M:      Juerg Haefliger <juergh@gmail.com>
11667 L:      lm-sensors@lm-sensors.org
11668 S:      Maintained
11669 F:      Documentation/hwmon/vt1211
11670 F:      drivers/hwmon/vt1211.c
11671
11672 VT8231 HARDWARE MONITOR DRIVER
11673 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
11674 L:      lm-sensors@lm-sensors.org
11675 S:      Maintained
11676 F:      drivers/hwmon/vt8231.c
11677
11678 VUB300 USB to SDIO/SD/MMC bridge chip
11679 M:      Tony Olech <tony.olech@elandigitalsystems.com>
11680 L:      linux-mmc@vger.kernel.org
11681 L:      linux-usb@vger.kernel.org
11682 S:      Supported
11683 F:      drivers/mmc/host/vub300.c
11684
11685 W1 DALLAS'S 1-WIRE BUS
11686 M:      Evgeniy Polyakov <zbr@ioremap.net>
11687 S:      Maintained
11688 F:      Documentation/w1/
11689 F:      drivers/w1/
11690
11691 W83791D HARDWARE MONITORING DRIVER
11692 M:      Marc Hulsman <m.hulsman@tudelft.nl>
11693 L:      lm-sensors@lm-sensors.org
11694 S:      Maintained
11695 F:      Documentation/hwmon/w83791d
11696 F:      drivers/hwmon/w83791d.c
11697
11698 W83793 HARDWARE MONITORING DRIVER
11699 M:      Rudolf Marek <r.marek@assembler.cz>
11700 L:      lm-sensors@lm-sensors.org
11701 S:      Maintained
11702 F:      Documentation/hwmon/w83793
11703 F:      drivers/hwmon/w83793.c
11704
11705 W83795 HARDWARE MONITORING DRIVER
11706 M:      Jean Delvare <jdelvare@suse.com>
11707 L:      lm-sensors@lm-sensors.org
11708 S:      Maintained
11709 F:      drivers/hwmon/w83795.c
11710
11711 W83L51xD SD/MMC CARD INTERFACE DRIVER
11712 M:      Pierre Ossman <pierre@ossman.eu>
11713 S:      Maintained
11714 F:      drivers/mmc/host/wbsd.*
11715
11716 WACOM PROTOCOL 4 SERIAL TABLETS
11717 M:      Julian Squires <julian@cipht.net>
11718 M:      Hans de Goede <hdegoede@redhat.com>
11719 L:      linux-input@vger.kernel.org
11720 S:      Maintained
11721 F:      drivers/input/tablet/wacom_serial4.c
11722
11723 WATCHDOG DEVICE DRIVERS
11724 M:      Wim Van Sebroeck <wim@iguana.be>
11725 R:      Guenter Roeck <linux@roeck-us.net>
11726 L:      linux-watchdog@vger.kernel.org
11727 W:      http://www.linux-watchdog.org/
11728 T:      git git://www.linux-watchdog.org/linux-watchdog.git
11729 S:      Maintained
11730 F:      Documentation/watchdog/
11731 F:      drivers/watchdog/
11732 F:      include/linux/watchdog.h
11733 F:      include/uapi/linux/watchdog.h
11734
11735 WD7000 SCSI DRIVER
11736 M:      Miroslav Zagorac <zaga@fly.cc.fer.hr>
11737 L:      linux-scsi@vger.kernel.org
11738 S:      Maintained
11739 F:      drivers/scsi/wd7000.c
11740
11741 WIIMOTE HID DRIVER
11742 M:      David Herrmann <dh.herrmann@googlemail.com>
11743 L:      linux-input@vger.kernel.org
11744 S:      Maintained
11745 F:      drivers/hid/hid-wiimote*
11746
11747 WINBOND CIR DRIVER
11748 M:      David Härdeman <david@hardeman.nu>
11749 S:      Maintained
11750 F:      drivers/media/rc/winbond-cir.c
11751
11752 WIMAX STACK
11753 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
11754 M:      linux-wimax@intel.com
11755 L:      wimax@linuxwimax.org (subscribers-only)
11756 S:      Supported
11757 W:      http://linuxwimax.org
11758 F:      Documentation/wimax/README.wimax
11759 F:      include/linux/wimax/debug.h
11760 F:      include/net/wimax.h
11761 F:      include/uapi/linux/wimax.h
11762 F:      net/wimax/
11763
11764 WISTRON LAPTOP BUTTON DRIVER
11765 M:      Miloslav Trmac <mitr@volny.cz>
11766 S:      Maintained
11767 F:      drivers/input/misc/wistron_btns.c
11768
11769 WL3501 WIRELESS PCMCIA CARD DRIVER
11770 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
11771 L:      linux-wireless@vger.kernel.org
11772 W:      http://oops.ghostprotocols.net:81/blog
11773 S:      Maintained
11774 F:      drivers/net/wireless/wl3501*
11775
11776 WOLFSON MICROELECTRONICS DRIVERS
11777 L:      patches@opensource.wolfsonmicro.com
11778 T:      git https://github.com/CirrusLogic/linux-drivers.git
11779 W:      https://github.com/CirrusLogic/linux-drivers/wiki
11780 S:      Supported
11781 F:      Documentation/hwmon/wm83??
11782 F:      Documentation/devicetree/bindings/extcon/extcon-arizona.txt
11783 F:      Documentation/devicetree/bindings/regulator/arizona-regulator.txt
11784 F:      Documentation/devicetree/bindings/mfd/arizona.txt
11785 F:      arch/arm/mach-s3c64xx/mach-crag6410*
11786 F:      drivers/clk/clk-wm83*.c
11787 F:      drivers/extcon/extcon-arizona.c
11788 F:      drivers/leds/leds-wm83*.c
11789 F:      drivers/gpio/gpio-*wm*.c
11790 F:      drivers/gpio/gpio-arizona.c
11791 F:      drivers/hwmon/wm83??-hwmon.c
11792 F:      drivers/input/misc/wm831x-on.c
11793 F:      drivers/input/touchscreen/wm831x-ts.c
11794 F:      drivers/input/touchscreen/wm97*.c
11795 F:      drivers/mfd/arizona*
11796 F:      drivers/mfd/wm*.c
11797 F:      drivers/mfd/cs47l24*
11798 F:      drivers/power/wm83*.c
11799 F:      drivers/rtc/rtc-wm83*.c
11800 F:      drivers/regulator/wm8*.c
11801 F:      drivers/video/backlight/wm83*_bl.c
11802 F:      drivers/watchdog/wm83*_wdt.c
11803 F:      include/linux/mfd/arizona/
11804 F:      include/linux/mfd/wm831x/
11805 F:      include/linux/mfd/wm8350/
11806 F:      include/linux/mfd/wm8400*
11807 F:      include/linux/wm97xx.h
11808 F:      include/sound/wm????.h
11809 F:      sound/soc/codecs/arizona.?
11810 F:      sound/soc/codecs/wm*
11811 F:      sound/soc/codecs/cs47l24*
11812
11813 WORKQUEUE
11814 M:      Tejun Heo <tj@kernel.org>
11815 R:      Lai Jiangshan <jiangshanlai@gmail.com>
11816 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
11817 S:      Maintained
11818 F:      include/linux/workqueue.h
11819 F:      kernel/workqueue.c
11820 F:      Documentation/workqueue.txt
11821
11822 X.25 NETWORK LAYER
11823 M:      Andrew Hendry <andrew.hendry@gmail.com>
11824 L:      linux-x25@vger.kernel.org
11825 S:      Odd Fixes
11826 F:      Documentation/networking/x25*
11827 F:      include/net/x25*
11828 F:      net/x25/
11829
11830 X86 ARCHITECTURE (32-BIT AND 64-BIT)
11831 M:      Thomas Gleixner <tglx@linutronix.de>
11832 M:      Ingo Molnar <mingo@redhat.com>
11833 M:      "H. Peter Anvin" <hpa@zytor.com>
11834 M:      x86@kernel.org
11835 L:      linux-kernel@vger.kernel.org
11836 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
11837 S:      Maintained
11838 F:      Documentation/x86/
11839 F:      arch/x86/
11840
11841 X86 PLATFORM DRIVERS
11842 M:      Darren Hart <dvhart@infradead.org>
11843 L:      platform-driver-x86@vger.kernel.org
11844 T:      git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git
11845 S:      Maintained
11846 F:      drivers/platform/x86/
11847 F:      drivers/platform/olpc/
11848
11849 X86 MCE INFRASTRUCTURE
11850 M:      Tony Luck <tony.luck@intel.com>
11851 M:      Borislav Petkov <bp@alien8.de>
11852 L:      linux-edac@vger.kernel.org
11853 S:      Maintained
11854 F:      arch/x86/kernel/cpu/mcheck/*
11855
11856 X86 MICROCODE UPDATE SUPPORT
11857 M:      Borislav Petkov <bp@alien8.de>
11858 S:      Maintained
11859 F:      arch/x86/kernel/cpu/microcode/*
11860
11861 X86 VDSO
11862 M:      Andy Lutomirski <luto@amacapital.net>
11863 L:      linux-kernel@vger.kernel.org
11864 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
11865 S:      Maintained
11866 F:      arch/x86/entry/vdso/
11867
11868 XC2028/3028 TUNER DRIVER
11869 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
11870 L:      linux-media@vger.kernel.org
11871 W:      https://linuxtv.org
11872 T:      git git://linuxtv.org/media_tree.git
11873 S:      Maintained
11874 F:      drivers/media/tuners/tuner-xc2028.*
11875
11876 XEN HYPERVISOR INTERFACE
11877 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11878 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
11879 M:      David Vrabel <david.vrabel@citrix.com>
11880 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11881 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
11882 S:      Supported
11883 F:      arch/x86/xen/
11884 F:      drivers/*/xen-*front.c
11885 F:      drivers/xen/
11886 F:      arch/x86/include/asm/xen/
11887 F:      include/xen/
11888 F:      include/uapi/xen/
11889
11890 XEN HYPERVISOR ARM
11891 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
11892 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11893 S:      Supported
11894 F:      arch/arm/xen/
11895 F:      arch/arm/include/asm/xen/
11896
11897 XEN HYPERVISOR ARM64
11898 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
11899 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11900 S:      Supported
11901 F:      arch/arm64/xen/
11902 F:      arch/arm64/include/asm/xen/
11903
11904 XEN NETWORK BACKEND DRIVER
11905 M:      Ian Campbell <ian.campbell@citrix.com>
11906 M:      Wei Liu <wei.liu2@citrix.com>
11907 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11908 L:      netdev@vger.kernel.org
11909 S:      Supported
11910 F:      drivers/net/xen-netback/*
11911
11912 XEN PCI SUBSYSTEM
11913 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11914 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11915 S:      Supported
11916 F:      arch/x86/pci/*xen*
11917 F:      drivers/pci/*xen*
11918
11919 XEN BLOCK SUBSYSTEM
11920 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11921 M:      Roger Pau MonnĂ© <roger.pau@citrix.com>
11922 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11923 S:      Supported
11924 F:      drivers/block/xen-blkback/*
11925 F:      drivers/block/xen*
11926
11927 XEN PVSCSI DRIVERS
11928 M:      Juergen Gross <jgross@suse.com>
11929 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11930 L:      linux-scsi@vger.kernel.org
11931 S:      Supported
11932 F:      drivers/scsi/xen-scsifront.c
11933 F:      drivers/xen/xen-scsiback.c
11934 F:      include/xen/interface/io/vscsiif.h
11935
11936 XEN SWIOTLB SUBSYSTEM
11937 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11938 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11939 S:      Supported
11940 F:      arch/x86/xen/*swiotlb*
11941 F:      drivers/xen/*swiotlb*
11942
11943 XFS FILESYSTEM
11944 P:      Silicon Graphics Inc
11945 M:      Dave Chinner <david@fromorbit.com>
11946 M:      xfs@oss.sgi.com
11947 L:      xfs@oss.sgi.com
11948 W:      http://oss.sgi.com/projects/xfs
11949 T:      git git://oss.sgi.com/xfs/xfs.git
11950 S:      Supported
11951 F:      Documentation/filesystems/xfs.txt
11952 F:      fs/xfs/
11953
11954 XILINX AXI ETHERNET DRIVER
11955 M:      Anirudha Sarangi <anirudh@xilinx.com>
11956 M:      John Linn <John.Linn@xilinx.com>
11957 S:      Maintained
11958 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
11959
11960 XILINX UARTLITE SERIAL DRIVER
11961 M:      Peter Korsgaard <jacmet@sunsite.dk>
11962 L:      linux-serial@vger.kernel.org
11963 S:      Maintained
11964 F:      drivers/tty/serial/uartlite.c
11965
11966 XILINX VIDEO IP CORES
11967 M:      Hyun Kwon <hyun.kwon@xilinx.com>
11968 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11969 L:      linux-media@vger.kernel.org
11970 T:      git git://linuxtv.org/media_tree.git
11971 S:      Supported
11972 F:      Documentation/devicetree/bindings/media/xilinx/
11973 F:      drivers/media/platform/xilinx/
11974 F:      include/uapi/linux/xilinx-v4l2-controls.h
11975
11976 XILLYBUS DRIVER
11977 M:      Eli Billauer <eli.billauer@gmail.com>
11978 L:      linux-kernel@vger.kernel.org
11979 S:      Supported
11980 F:      drivers/char/xillybus/
11981
11982 XTENSA XTFPGA PLATFORM SUPPORT
11983 M:      Max Filippov <jcmvbkbc@gmail.com>
11984 L:      linux-xtensa@linux-xtensa.org
11985 S:      Maintained
11986 F:      drivers/spi/spi-xtensa-xtfpga.c
11987 F:      sound/soc/xtensa/xtfpga-i2s.c
11988
11989 YAM DRIVER FOR AX.25
11990 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
11991 L:      linux-hams@vger.kernel.org
11992 S:      Maintained
11993 F:      drivers/net/hamradio/yam*
11994 F:      include/linux/yam.h
11995
11996 YEALINK PHONE DRIVER
11997 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
11998 L:      usbb2k-api-dev@nongnu.org
11999 S:      Maintained
12000 F:      Documentation/input/yealink.txt
12001 F:      drivers/input/misc/yealink.*
12002
12003 Z8530 DRIVER FOR AX.25
12004 M:      Joerg Reuter <jreuter@yaina.de>
12005 W:      http://yaina.de/jreuter/
12006 W:      http://www.qsl.net/dl1bke/
12007 L:      linux-hams@vger.kernel.org
12008 S:      Maintained
12009 F:      Documentation/networking/z8530drv.txt
12010 F:      drivers/net/hamradio/*scc.c
12011 F:      drivers/net/hamradio/z8530.h
12012
12013 ZBUD COMPRESSED PAGE ALLOCATOR
12014 M:      Seth Jennings <sjennings@variantweb.net>
12015 L:      linux-mm@kvack.org
12016 S:      Maintained
12017 F:      mm/zbud.c
12018 F:      include/linux/zbud.h
12019
12020 ZD1211RW WIRELESS DRIVER
12021 M:      Daniel Drake <dsd@gentoo.org>
12022 M:      Ulrich Kunitz <kune@deine-taler.de>
12023 W:      http://zd1211.ath.cx/wiki/DriverRewrite
12024 L:      linux-wireless@vger.kernel.org
12025 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
12026 S:      Maintained
12027 F:      drivers/net/wireless/zydas/zd1211rw/
12028
12029 ZPOOL COMPRESSED PAGE STORAGE API
12030 M:      Dan Streetman <ddstreet@ieee.org>
12031 L:      linux-mm@kvack.org
12032 S:      Maintained
12033 F:      mm/zpool.c
12034 F:      include/linux/zpool.h
12035
12036 ZR36067 VIDEO FOR LINUX DRIVER
12037 L:      mjpeg-users@lists.sourceforge.net
12038 L:      linux-media@vger.kernel.org
12039 W:      http://mjpeg.sourceforge.net/driver-zoran/
12040 T:      hg https://linuxtv.org/hg/v4l-dvb
12041 S:      Odd Fixes
12042 F:      drivers/media/pci/zoran/
12043
12044 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
12045 M:      Minchan Kim <minchan@kernel.org>
12046 M:      Nitin Gupta <ngupta@vflare.org>
12047 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
12048 L:      linux-kernel@vger.kernel.org
12049 S:      Maintained
12050 F:      drivers/block/zram/
12051 F:      Documentation/blockdev/zram.txt
12052
12053 ZS DECSTATION Z85C30 SERIAL DRIVER
12054 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
12055 S:      Maintained
12056 F:      drivers/tty/serial/zs.*
12057
12058 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
12059 M:      Minchan Kim <minchan@kernel.org>
12060 M:      Nitin Gupta <ngupta@vflare.org>
12061 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
12062 L:      linux-mm@kvack.org
12063 S:      Maintained
12064 F:      mm/zsmalloc.c
12065 F:      include/linux/zsmalloc.h
12066 F:      Documentation/vm/zsmalloc.txt
12067
12068 ZSWAP COMPRESSED SWAP CACHING
12069 M:      Seth Jennings <sjennings@variantweb.net>
12070 L:      linux-mm@kvack.org
12071 S:      Maintained
12072 F:      mm/zswap.c
12073
12074 THE REST
12075 M:      Linus Torvalds <torvalds@linux-foundation.org>
12076 L:      linux-kernel@vger.kernel.org
12077 Q:      http://patchwork.kernel.org/project/LKML/list/
12078 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
12079 S:      Buried alive in reporters
12080 F:      *
12081 F:      */