sctp: allow setting SCTP_SACK_IMMEDIATELY by the application
[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-sh@vger.kernel.org
1535 W:      http://oss.renesas.com
1536 Q:      http://patchwork.kernel.org/project/linux-sh/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 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
1810 R:      Dan Williams <dan.j.williams@intel.com>
1811 W:      http://sourceforge.net/projects/xscaleiop
1812 S:      Odd fixes
1813 F:      Documentation/crypto/async-tx-api.txt
1814 F:      crypto/async_tx/
1815 F:      drivers/dma/
1816 F:      include/linux/dmaengine.h
1817 F:      include/linux/async_tx.h
1818
1819 AT24 EEPROM DRIVER
1820 M:      Wolfram Sang <wsa@the-dreams.de>
1821 L:      linux-i2c@vger.kernel.org
1822 S:      Maintained
1823 F:      drivers/misc/eeprom/at24.c
1824 F:      include/linux/platform_data/at24.h
1825
1826 ATA OVER ETHERNET (AOE) DRIVER
1827 M:      "Ed L. Cashin" <ed.cashin@acm.org>
1828 W:      http://www.openaoe.org/
1829 S:      Supported
1830 F:      Documentation/aoe/
1831 F:      drivers/block/aoe/
1832
1833 ATHEROS 71XX/9XXX GPIO DRIVER
1834 M:      Alban Bedel <albeu@free.fr>
1835 W:      https://github.com/AlbanBedel/linux
1836 T:      git git://github.com/AlbanBedel/linux
1837 S:      Maintained
1838 F:      drivers/gpio/gpio-ath79.c
1839 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
1840
1841 ATHEROS ATH GENERIC UTILITIES
1842 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1843 L:      linux-wireless@vger.kernel.org
1844 S:      Supported
1845 F:      drivers/net/wireless/ath/*
1846
1847 ATHEROS ATH5K WIRELESS DRIVER
1848 M:      Jiri Slaby <jirislaby@gmail.com>
1849 M:      Nick Kossifidis <mickflemm@gmail.com>
1850 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1851 L:      linux-wireless@vger.kernel.org
1852 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
1853 S:      Maintained
1854 F:      drivers/net/wireless/ath/ath5k/
1855
1856 ATHEROS ATH6KL WIRELESS DRIVER
1857 M:      Kalle Valo <kvalo@qca.qualcomm.com>
1858 L:      linux-wireless@vger.kernel.org
1859 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
1860 T:      git git://github.com/kvalo/ath.git
1861 S:      Supported
1862 F:      drivers/net/wireless/ath/ath6kl/
1863
1864 WILOCITY WIL6210 WIRELESS DRIVER
1865 M:      Maya Erez <qca_merez@qca.qualcomm.com>
1866 L:      linux-wireless@vger.kernel.org
1867 L:      wil6210@qca.qualcomm.com
1868 S:      Supported
1869 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
1870 F:      drivers/net/wireless/ath/wil6210/
1871 F:      include/uapi/linux/wil6210_uapi.h
1872
1873 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1874 M:      Christian Lamparter <chunkeey@googlemail.com>
1875 L:      linux-wireless@vger.kernel.org
1876 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
1877 S:      Maintained
1878 F:      drivers/net/wireless/ath/carl9170/
1879
1880 ATK0110 HWMON DRIVER
1881 M:      Luca Tettamanti <kronos.it@gmail.com>
1882 L:      lm-sensors@lm-sensors.org
1883 S:      Maintained
1884 F:      drivers/hwmon/asus_atk0110.c
1885
1886 ATI_REMOTE2 DRIVER
1887 M:      Ville Syrjala <syrjala@sci.fi>
1888 S:      Maintained
1889 F:      drivers/input/misc/ati_remote2.c
1890
1891 ATLX ETHERNET DRIVERS
1892 M:      Jay Cliburn <jcliburn@gmail.com>
1893 M:      Chris Snook <chris.snook@gmail.com>
1894 L:      netdev@vger.kernel.org
1895 W:      http://sourceforge.net/projects/atl1
1896 W:      http://atl1.sourceforge.net
1897 S:      Maintained
1898 F:      drivers/net/ethernet/atheros/
1899
1900 ATM
1901 M:      Chas Williams <3chas3@gmail.com>
1902 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
1903 L:      netdev@vger.kernel.org
1904 W:      http://linux-atm.sourceforge.net
1905 S:      Maintained
1906 F:      drivers/atm/
1907 F:      include/linux/atm*
1908 F:      include/uapi/linux/atm*
1909
1910 ATMEL AT91 / AT32 MCI DRIVER
1911 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1912 S:      Maintained
1913 F:      drivers/mmc/host/atmel-mci.c
1914
1915 ATMEL AT91 / AT32 SERIAL DRIVER
1916 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1917 S:      Supported
1918 F:      drivers/tty/serial/atmel_serial.c
1919
1920 ATMEL Audio ALSA driver
1921 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1922 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1923 S:      Supported
1924 F:      sound/soc/atmel
1925
1926 ATMEL DMA DRIVER
1927 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1928 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1929 S:      Supported
1930 F:      drivers/dma/at_hdmac.c
1931 F:      drivers/dma/at_hdmac_regs.h
1932 F:      include/linux/platform_data/dma-atmel.h
1933
1934 ATMEL XDMA DRIVER
1935 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1936 L:      linux-arm-kernel@lists.infradead.org
1937 L:      dmaengine@vger.kernel.org
1938 S:      Supported
1939 F:      drivers/dma/at_xdmac.c
1940
1941 ATMEL I2C DRIVER
1942 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1943 L:      linux-i2c@vger.kernel.org
1944 S:      Supported
1945 F:      drivers/i2c/busses/i2c-at91.c
1946
1947 ATMEL ISI DRIVER
1948 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1949 L:      linux-media@vger.kernel.org
1950 S:      Supported
1951 F:      drivers/media/platform/soc_camera/atmel-isi.c
1952 F:      include/media/atmel-isi.h
1953
1954 ATMEL LCDFB DRIVER
1955 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1956 L:      linux-fbdev@vger.kernel.org
1957 S:      Maintained
1958 F:      drivers/video/fbdev/atmel_lcdfb.c
1959 F:      include/video/atmel_lcdc.h
1960
1961 ATMEL MACB ETHERNET DRIVER
1962 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1963 S:      Supported
1964 F:      drivers/net/ethernet/cadence/
1965
1966 ATMEL NAND DRIVER
1967 M:      Wenyou Yang <wenyou.yang@atmel.com>
1968 M:      Josh Wu <rainyfeeling@outlook.com>
1969 L:      linux-mtd@lists.infradead.org
1970 S:      Supported
1971 F:      drivers/mtd/nand/atmel_nand*
1972
1973 ATMEL SDMMC DRIVER
1974 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1975 L:      linux-mmc@vger.kernel.org
1976 S:      Supported
1977 F:      drivers/mmc/host/sdhci-of-at91.c
1978
1979 ATMEL SPI DRIVER
1980 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1981 S:      Supported
1982 F:      drivers/spi/spi-atmel.*
1983
1984 ATMEL SSC DRIVER
1985 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1986 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1987 S:      Supported
1988 F:      drivers/misc/atmel-ssc.c
1989 F:      include/linux/atmel-ssc.h
1990
1991 ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1992 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1993 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1994 S:      Supported
1995 F:      drivers/misc/atmel_tclib.c
1996 F:      drivers/clocksource/tcb_clksrc.c
1997
1998 ATMEL USBA UDC DRIVER
1999 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2000 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2001 S:      Supported
2002 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
2003
2004 ATMEL WIRELESS DRIVER
2005 M:      Simon Kelley <simon@thekelleys.org.uk>
2006 L:      linux-wireless@vger.kernel.org
2007 W:      http://www.thekelleys.org.uk/atmel
2008 W:      http://atmelwlandriver.sourceforge.net/
2009 S:      Maintained
2010 F:      drivers/net/wireless/atmel/atmel*
2011
2012 ATMEL MAXTOUCH DRIVER
2013 M:      Nick Dyer <nick.dyer@itdev.co.uk>
2014 T:      git git://github.com/atmel-maxtouch/linux.git
2015 S:      Supported
2016 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2017 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2018 F:      include/linux/platform_data/atmel_mxt_ts.h
2019
2020 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2021 M:      Bradley Grove <linuxdrivers@attotech.com>
2022 L:      linux-scsi@vger.kernel.org
2023 W:      http://www.attotech.com
2024 S:      Supported
2025 F:      drivers/scsi/esas2r
2026
2027 ATUSB IEEE 802.15.4 RADIO DRIVER
2028 M:      Stefan Schmidt <stefan@osg.samsung.com>
2029 L:      linux-wpan@vger.kernel.org
2030 S:      Maintained
2031 F:      drivers/net/ieee802154/atusb.c
2032 F:      drivers/net/ieee802154/atusb.h
2033 F:      drivers/net/ieee802154/at86rf230.h
2034
2035 AUDIT SUBSYSTEM
2036 M:      Paul Moore <paul@paul-moore.com>
2037 M:      Eric Paris <eparis@redhat.com>
2038 L:      linux-audit@redhat.com (moderated for non-subscribers)
2039 W:      http://people.redhat.com/sgrubb/audit/
2040 T:      git git://git.infradead.org/users/pcmoore/audit
2041 S:      Maintained
2042 F:      include/linux/audit.h
2043 F:      include/uapi/linux/audit.h
2044 F:      kernel/audit*
2045
2046 AUXILIARY DISPLAY DRIVERS
2047 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2048 W:      http://miguelojeda.es/auxdisplay.htm
2049 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2050 S:      Maintained
2051 F:      drivers/auxdisplay/
2052 F:      include/linux/cfag12864b.h
2053
2054 AVR32 ARCHITECTURE
2055 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
2056 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
2057 W:      http://www.atmel.com/products/AVR32/
2058 W:      http://mirror.egtvedt.no/avr32linux.org/
2059 W:      http://avrfreaks.net/
2060 S:      Maintained
2061 F:      arch/avr32/
2062
2063 AVR32/AT32AP MACHINE SUPPORT
2064 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
2065 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
2066 S:      Maintained
2067 F:      arch/avr32/mach-at32ap/
2068
2069 AX.25 NETWORK LAYER
2070 M:      Ralf Baechle <ralf@linux-mips.org>
2071 L:      linux-hams@vger.kernel.org
2072 W:      http://www.linux-ax25.org/
2073 S:      Maintained
2074 F:      include/uapi/linux/ax25.h
2075 F:      include/net/ax25.h
2076 F:      net/ax25/
2077
2078 AZ6007 DVB DRIVER
2079 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2080 L:      linux-media@vger.kernel.org
2081 W:      https://linuxtv.org
2082 T:      git git://linuxtv.org/media_tree.git
2083 S:      Maintained
2084 F:      drivers/media/usb/dvb-usb-v2/az6007.c
2085
2086 AZTECH FM RADIO RECEIVER DRIVER
2087 M:      Hans Verkuil <hverkuil@xs4all.nl>
2088 L:      linux-media@vger.kernel.org
2089 T:      git git://linuxtv.org/media_tree.git
2090 W:      https://linuxtv.org
2091 S:      Maintained
2092 F:      drivers/media/radio/radio-aztech*
2093
2094 B43 WIRELESS DRIVER
2095 L:      linux-wireless@vger.kernel.org
2096 L:      b43-dev@lists.infradead.org
2097 W:      http://wireless.kernel.org/en/users/Drivers/b43
2098 S:      Odd Fixes
2099 F:      drivers/net/wireless/broadcom/b43/
2100
2101 B43LEGACY WIRELESS DRIVER
2102 M:      Larry Finger <Larry.Finger@lwfinger.net>
2103 L:      linux-wireless@vger.kernel.org
2104 L:      b43-dev@lists.infradead.org
2105 W:      http://wireless.kernel.org/en/users/Drivers/b43
2106 S:      Maintained
2107 F:      drivers/net/wireless/broadcom/b43legacy/
2108
2109 BACKLIGHT CLASS/SUBSYSTEM
2110 M:      Jingoo Han <jingoohan1@gmail.com>
2111 M:      Lee Jones <lee.jones@linaro.org>
2112 S:      Maintained
2113 F:      drivers/video/backlight/
2114 F:      include/linux/backlight.h
2115
2116 BATMAN ADVANCED
2117 M:      Marek Lindner <mareklindner@neomailbox.ch>
2118 M:      Simon Wunderlich <sw@simonwunderlich.de>
2119 M:      Antonio Quartulli <a@unstable.cc>
2120 L:      b.a.t.m.a.n@lists.open-mesh.org
2121 W:      http://www.open-mesh.org/
2122 S:      Maintained
2123 F:      net/batman-adv/
2124
2125 BAYCOM/HDLCDRV DRIVERS FOR AX.25
2126 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
2127 L:      linux-hams@vger.kernel.org
2128 W:      http://www.baycom.org/~tom/ham/ham.html
2129 S:      Maintained
2130 F:      drivers/net/hamradio/baycom*
2131
2132 BCACHE (BLOCK LAYER CACHE)
2133 M:      Kent Overstreet <kent.overstreet@gmail.com>
2134 L:      linux-bcache@vger.kernel.org
2135 W:      http://bcache.evilpiepirate.org
2136 S:      Maintained
2137 F:      drivers/md/bcache/
2138
2139 BDISP ST MEDIA DRIVER
2140 M:      Fabien Dessenne <fabien.dessenne@st.com>
2141 L:      linux-media@vger.kernel.org
2142 T:      git git://linuxtv.org/media_tree.git
2143 W:      https://linuxtv.org
2144 S:      Supported
2145 F:      drivers/media/platform/sti/bdisp
2146
2147 BEFS FILE SYSTEM
2148 S:      Orphan
2149 F:      Documentation/filesystems/befs.txt
2150 F:      fs/befs/
2151
2152 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
2153 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
2154 L:      netdev@vger.kernel.org
2155 S:      Maintained
2156 F:      drivers/net/ethernet/ec_bhf.c
2157
2158 BFS FILE SYSTEM
2159 M:      "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
2160 S:      Maintained
2161 F:      Documentation/filesystems/bfs.txt
2162 F:      fs/bfs/
2163 F:      include/uapi/linux/bfs_fs.h
2164
2165 BLACKFIN ARCHITECTURE
2166 M:      Steven Miao <realmz6@gmail.com>
2167 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2168 T:      git git://git.code.sf.net/p/adi-linux/code
2169 W:      http://blackfin.uclinux.org
2170 S:      Supported
2171 F:      arch/blackfin/
2172
2173 BLACKFIN EMAC DRIVER
2174 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2175 W:      http://blackfin.uclinux.org
2176 S:      Supported
2177 F:      drivers/net/ethernet/adi/
2178
2179 BLACKFIN RTC 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/rtc/rtc-bfin.c
2184
2185 BLACKFIN SDH DRIVER
2186 M:      Sonic Zhang <sonic.zhang@analog.com>
2187 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2188 W:      http://blackfin.uclinux.org
2189 S:      Supported
2190 F:      drivers/mmc/host/bfin_sdh.c
2191
2192 BLACKFIN SERIAL DRIVER
2193 M:      Sonic Zhang <sonic.zhang@analog.com>
2194 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2195 W:      http://blackfin.uclinux.org
2196 S:      Supported
2197 F:      drivers/tty/serial/bfin_uart.c
2198
2199 BLACKFIN WATCHDOG DRIVER
2200 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2201 W:      http://blackfin.uclinux.org
2202 S:      Supported
2203 F:      drivers/watchdog/bfin_wdt.c
2204
2205 BLACKFIN I2C TWI DRIVER
2206 M:      Sonic Zhang <sonic.zhang@analog.com>
2207 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2208 W:      http://blackfin.uclinux.org/
2209 S:      Supported
2210 F:      drivers/i2c/busses/i2c-bfin-twi.c
2211
2212 BLACKFIN MEDIA DRIVER
2213 M:      Scott Jiang <scott.jiang.linux@gmail.com>
2214 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2215 W:      http://blackfin.uclinux.org/
2216 S:      Supported
2217 F:      drivers/media/platform/blackfin/
2218 F:      drivers/media/i2c/adv7183*
2219 F:      drivers/media/i2c/vs6624*
2220
2221 BLINKM RGB LED DRIVER
2222 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
2223 S:      Maintained
2224 F:      drivers/leds/leds-blinkm.c
2225
2226 BLOCK LAYER
2227 M:      Jens Axboe <axboe@kernel.dk>
2228 L:      linux-block@vger.kernel.org
2229 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
2230 S:      Maintained
2231 F:      block/
2232 F:      kernel/trace/blktrace.c
2233
2234 BLOCK2MTD DRIVER
2235 M:      Joern Engel <joern@lazybastard.org>
2236 L:      linux-mtd@lists.infradead.org
2237 S:      Maintained
2238 F:      drivers/mtd/devices/block2mtd.c
2239
2240 BLUETOOTH DRIVERS
2241 M:      Marcel Holtmann <marcel@holtmann.org>
2242 M:      Gustavo Padovan <gustavo@padovan.org>
2243 M:      Johan Hedberg <johan.hedberg@gmail.com>
2244 L:      linux-bluetooth@vger.kernel.org
2245 W:      http://www.bluez.org/
2246 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2247 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2248 S:      Maintained
2249 F:      drivers/bluetooth/
2250
2251 BLUETOOTH SUBSYSTEM
2252 M:      Marcel Holtmann <marcel@holtmann.org>
2253 M:      Gustavo Padovan <gustavo@padovan.org>
2254 M:      Johan Hedberg <johan.hedberg@gmail.com>
2255 L:      linux-bluetooth@vger.kernel.org
2256 W:      http://www.bluez.org/
2257 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2258 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2259 S:      Maintained
2260 F:      net/bluetooth/
2261 F:      include/net/bluetooth/
2262
2263 BONDING DRIVER
2264 M:      Jay Vosburgh <j.vosburgh@gmail.com>
2265 M:      Veaceslav Falico <vfalico@gmail.com>
2266 M:      Andy Gospodarek <gospo@cumulusnetworks.com>
2267 L:      netdev@vger.kernel.org
2268 W:      http://sourceforge.net/projects/bonding/
2269 S:      Supported
2270 F:      drivers/net/bonding/
2271 F:      include/uapi/linux/if_bonding.h
2272
2273 BPF (Safe dynamic programs and tools)
2274 M:      Alexei Starovoitov <ast@kernel.org>
2275 L:      netdev@vger.kernel.org
2276 L:      linux-kernel@vger.kernel.org
2277 S:      Supported
2278 F:      kernel/bpf/
2279
2280 BROADCOM B44 10/100 ETHERNET DRIVER
2281 M:      Gary Zambrano <zambrano@broadcom.com>
2282 L:      netdev@vger.kernel.org
2283 S:      Supported
2284 F:      drivers/net/ethernet/broadcom/b44.*
2285
2286 BROADCOM GENET ETHERNET DRIVER
2287 M:      Florian Fainelli <f.fainelli@gmail.com>
2288 L:      netdev@vger.kernel.org
2289 S:      Supported
2290 F:      drivers/net/ethernet/broadcom/genet/
2291
2292 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
2293 M:      Sony Chacko <sony.chacko@qlogic.com>
2294 M:      Dept-HSGLinuxNICDev@qlogic.com
2295 L:      netdev@vger.kernel.org
2296 S:      Supported
2297 F:      drivers/net/ethernet/broadcom/bnx2.*
2298 F:      drivers/net/ethernet/broadcom/bnx2_*
2299
2300 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
2301 M:      Ariel Elior <ariel.elior@qlogic.com>
2302 L:      netdev@vger.kernel.org
2303 S:      Supported
2304 F:      drivers/net/ethernet/broadcom/bnx2x/
2305
2306 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
2307 M:      Florian Fainelli <f.fainelli@gmail.com>
2308 M:      Ray Jui <rjui@broadcom.com>
2309 M:      Scott Branden <sbranden@broadcom.com>
2310 L:      bcm-kernel-feedback-list@broadcom.com
2311 T:      git git://github.com/broadcom/mach-bcm
2312 S:      Maintained
2313 F:      arch/arm/mach-bcm/
2314 F:      arch/arm/boot/dts/bcm113*
2315 F:      arch/arm/boot/dts/bcm216*
2316 F:      arch/arm/boot/dts/bcm281*
2317 F:      arch/arm/configs/bcm_defconfig
2318 F:      drivers/mmc/host/sdhci-bcm-kona.c
2319 F:      drivers/clocksource/bcm_kona_timer.c
2320
2321 BROADCOM BCM2835 ARM ARCHITECTURE
2322 M:      Stephen Warren <swarren@wwwdotorg.org>
2323 M:      Lee Jones <lee@kernel.org>
2324 M:      Eric Anholt <eric@anholt.net>
2325 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
2326 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2327 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rpi/linux-rpi.git
2328 S:      Maintained
2329 N:      bcm2835
2330
2331 BROADCOM BCM33XX MIPS ARCHITECTURE
2332 M:      Kevin Cernekee <cernekee@gmail.com>
2333 L:      linux-mips@linux-mips.org
2334 S:      Maintained
2335 F:      arch/mips/bcm3384/*
2336 F:      arch/mips/include/asm/mach-bcm3384/*
2337 F:      arch/mips/kernel/*bmips*
2338
2339 BROADCOM BCM47XX MIPS ARCHITECTURE
2340 M:      Hauke Mehrtens <hauke@hauke-m.de>
2341 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2342 L:      linux-mips@linux-mips.org
2343 S:      Maintained
2344 F:      arch/mips/bcm47xx/*
2345 F:      arch/mips/include/asm/mach-bcm47xx/*
2346
2347 BROADCOM BCM5301X ARM ARCHITECTURE
2348 M:      Hauke Mehrtens <hauke@hauke-m.de>
2349 L:      linux-arm-kernel@lists.infradead.org
2350 S:      Maintained
2351 F:      arch/arm/mach-bcm/bcm_5301x.c
2352 F:      arch/arm/boot/dts/bcm5301x.dtsi
2353 F:      arch/arm/boot/dts/bcm470*
2354
2355 BROADCOM BCM63XX ARM ARCHITECTURE
2356 M:      Florian Fainelli <f.fainelli@gmail.com>
2357 L:      linux-arm-kernel@lists.infradead.org
2358 T:      git git://github.com/broadcom/arm-bcm63xx.git
2359 S:      Maintained
2360 F:      arch/arm/mach-bcm/bcm63xx.c
2361 F:      arch/arm/include/debug/bcm63xx.S
2362
2363 BROADCOM BCM63XX/BCM33XX UDC DRIVER
2364 M:      Kevin Cernekee <cernekee@gmail.com>
2365 L:      linux-usb@vger.kernel.org
2366 S:      Maintained
2367 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
2368
2369 BROADCOM BCM7XXX ARM ARCHITECTURE
2370 M:      Brian Norris <computersforpeace@gmail.com>
2371 M:      Gregory Fong <gregory.0xf0@gmail.com>
2372 M:      Florian Fainelli <f.fainelli@gmail.com>
2373 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2374 T:      git git://github.com/broadcom/stblinux.git
2375 S:      Maintained
2376 F:      arch/arm/mach-bcm/*brcmstb*
2377 F:      arch/arm/boot/dts/bcm7*.dts*
2378 F:      drivers/bus/brcmstb_gisb.c
2379 N:      brcmstb
2380
2381 BROADCOM BMIPS MIPS ARCHITECTURE
2382 M:      Kevin Cernekee <cernekee@gmail.com>
2383 M:      Florian Fainelli <f.fainelli@gmail.com>
2384 L:      linux-mips@linux-mips.org
2385 T:      git git://github.com/broadcom/stblinux.git
2386 S:      Maintained
2387 F:      arch/mips/bmips/*
2388 F:      arch/mips/include/asm/mach-bmips/*
2389 F:      arch/mips/kernel/*bmips*
2390 F:      arch/mips/boot/dts/brcm/bcm*.dts*
2391 F:      drivers/irqchip/irq-bcm7*
2392 F:      drivers/irqchip/irq-brcmstb*
2393
2394 BROADCOM TG3 GIGABIT ETHERNET DRIVER
2395 M:      Prashant Sreedharan <prashant@broadcom.com>
2396 M:      Michael Chan <mchan@broadcom.com>
2397 L:      netdev@vger.kernel.org
2398 S:      Supported
2399 F:      drivers/net/ethernet/broadcom/tg3.*
2400
2401 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2402 M:      Brett Rudley <brudley@broadcom.com>
2403 M:      Arend van Spriel <arend@broadcom.com>
2404 M:      Franky (Zhenhui) Lin <frankyl@broadcom.com>
2405 M:      Hante Meuleman <meuleman@broadcom.com>
2406 L:      linux-wireless@vger.kernel.org
2407 L:      brcm80211-dev-list@broadcom.com
2408 S:      Supported
2409 F:      drivers/net/wireless/broadcom/brcm80211/
2410
2411 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
2412 M:      QLogic-Storage-Upstream@qlogic.com
2413 L:      linux-scsi@vger.kernel.org
2414 S:      Supported
2415 F:      drivers/scsi/bnx2fc/
2416
2417 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
2418 M:      QLogic-Storage-Upstream@qlogic.com
2419 L:      linux-scsi@vger.kernel.org
2420 S:      Supported
2421 F:      drivers/scsi/bnx2i/
2422
2423 BROADCOM IPROC ARM ARCHITECTURE
2424 M:      Ray Jui <rjui@broadcom.com>
2425 M:      Scott Branden <sbranden@broadcom.com>
2426 M:      Jon Mason <jonmason@broadcom.com>
2427 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2428 L:      bcm-kernel-feedback-list@broadcom.com
2429 T:      git git://github.com/broadcom/cygnus-linux.git
2430 S:      Maintained
2431 N:      iproc
2432 N:      cygnus
2433 N:      nsp
2434 N:      bcm9113*
2435 N:      bcm9583*
2436 N:      bcm9585*
2437 N:      bcm9586*
2438 N:      bcm988312
2439 N:      bcm113*
2440 N:      bcm583*
2441 N:      bcm585*
2442 N:      bcm586*
2443 N:      bcm88312
2444
2445 BROADCOM BRCMSTB GPIO DRIVER
2446 M:      Gregory Fong <gregory.0xf0@gmail.com>
2447 L:      bcm-kernel-feedback-list@broadcom.com>
2448 S:      Supported
2449 F:      drivers/gpio/gpio-brcmstb.c
2450 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
2451
2452 BROADCOM KONA GPIO DRIVER
2453 M:      Ray Jui <rjui@broadcom.com>
2454 L:      bcm-kernel-feedback-list@broadcom.com
2455 S:      Supported
2456 F:      drivers/gpio/gpio-bcm-kona.c
2457 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
2458
2459 BROADCOM NVRAM DRIVER
2460 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2461 L:      linux-mips@linux-mips.org
2462 S:      Maintained
2463 F:      drivers/firmware/broadcom/*
2464
2465 BROADCOM STB NAND FLASH DRIVER
2466 M:      Brian Norris <computersforpeace@gmail.com>
2467 M:      Kamal Dasu <kdasu.kdev@gmail.com>
2468 L:      linux-mtd@lists.infradead.org
2469 L:      bcm-kernel-feedback-list@broadcom.com
2470 S:      Maintained
2471 F:      drivers/mtd/nand/brcmnand/
2472
2473 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2474 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2475 L:      linux-wireless@vger.kernel.org
2476 S:      Maintained
2477 F:      drivers/bcma/
2478 F:      include/linux/bcma/
2479
2480 BROADCOM SYSTEMPORT ETHERNET DRIVER
2481 M:      Florian Fainelli <f.fainelli@gmail.com>
2482 L:      netdev@vger.kernel.org
2483 S:      Supported
2484 F:      drivers/net/ethernet/broadcom/bcmsysport.*
2485
2486 BROCADE BFA FC SCSI DRIVER
2487 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
2488 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
2489 L:      linux-scsi@vger.kernel.org
2490 S:      Supported
2491 F:      drivers/scsi/bfa/
2492
2493 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
2494 M:      Rasesh Mody <rasesh.mody@qlogic.com>
2495 L:      netdev@vger.kernel.org
2496 S:      Supported
2497 F:      drivers/net/ethernet/brocade/bna/
2498
2499 BSG (block layer generic sg v4 driver)
2500 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
2501 L:      linux-scsi@vger.kernel.org
2502 S:      Supported
2503 F:      block/bsg.c
2504 F:      include/linux/bsg.h
2505 F:      include/uapi/linux/bsg.h
2506
2507 BT87X AUDIO DRIVER
2508 M:      Clemens Ladisch <clemens@ladisch.de>
2509 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2510 T:      git git://git.alsa-project.org/alsa-kernel.git
2511 S:      Maintained
2512 F:      Documentation/sound/alsa/Bt87x.txt
2513 F:      sound/pci/bt87x.c
2514
2515 BT8XXGPIO DRIVER
2516 M:      Michael Buesch <m@bues.ch>
2517 W:      http://bu3sch.de/btgpio.php
2518 S:      Maintained
2519 F:      drivers/gpio/gpio-bt8xx.c
2520
2521 BTRFS FILE SYSTEM
2522 M:      Chris Mason <clm@fb.com>
2523 M:      Josef Bacik <jbacik@fb.com>
2524 M:      David Sterba <dsterba@suse.com>
2525 L:      linux-btrfs@vger.kernel.org
2526 W:      http://btrfs.wiki.kernel.org/
2527 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
2528 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
2529 S:      Maintained
2530 F:      Documentation/filesystems/btrfs.txt
2531 F:      fs/btrfs/
2532
2533 BTTV VIDEO4LINUX DRIVER
2534 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2535 L:      linux-media@vger.kernel.org
2536 W:      https://linuxtv.org
2537 T:      git git://linuxtv.org/media_tree.git
2538 S:      Odd fixes
2539 F:      Documentation/video4linux/bttv/
2540 F:      drivers/media/pci/bt8xx/bttv*
2541
2542 BUSLOGIC SCSI DRIVER
2543 M:      Khalid Aziz <khalid@gonehiking.org>
2544 L:      linux-scsi@vger.kernel.org
2545 S:      Maintained
2546 F:      drivers/scsi/BusLogic.*
2547 F:      drivers/scsi/FlashPoint.*
2548
2549 C-MEDIA CMI8788 DRIVER
2550 M:      Clemens Ladisch <clemens@ladisch.de>
2551 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2552 T:      git git://git.alsa-project.org/alsa-kernel.git
2553 S:      Maintained
2554 F:      sound/pci/oxygen/
2555
2556 C6X ARCHITECTURE
2557 M:      Mark Salter <msalter@redhat.com>
2558 M:      Aurelien Jacquiot <a-jacquiot@ti.com>
2559 L:      linux-c6x-dev@linux-c6x.org
2560 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
2561 S:      Maintained
2562 F:      arch/c6x/
2563
2564 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
2565 M:      David Howells <dhowells@redhat.com>
2566 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
2567 S:      Supported
2568 F:      Documentation/filesystems/caching/cachefiles.txt
2569 F:      fs/cachefiles/
2570
2571 CADET FM/AM RADIO RECEIVER DRIVER
2572 M:      Hans Verkuil <hverkuil@xs4all.nl>
2573 L:      linux-media@vger.kernel.org
2574 T:      git git://linuxtv.org/media_tree.git
2575 W:      https://linuxtv.org
2576 S:      Maintained
2577 F:      drivers/media/radio/radio-cadet*
2578
2579 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
2580 M:      Jonathan Corbet <corbet@lwn.net>
2581 L:      linux-media@vger.kernel.org
2582 T:      git git://linuxtv.org/media_tree.git
2583 S:      Maintained
2584 F:      Documentation/video4linux/cafe_ccic
2585 F:      drivers/media/platform/marvell-ccic/
2586
2587 CAIF NETWORK LAYER
2588 M:      Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
2589 L:      netdev@vger.kernel.org
2590 S:      Supported
2591 F:      Documentation/networking/caif/
2592 F:      drivers/net/caif/
2593 F:      include/uapi/linux/caif/
2594 F:      include/net/caif/
2595 F:      net/caif/
2596
2597 CALGARY x86-64 IOMMU
2598 M:      Muli Ben-Yehuda <muli@il.ibm.com>
2599 M:      "Jon D. Mason" <jdmason@kudzu.us>
2600 L:      discuss@x86-64.org
2601 S:      Maintained
2602 F:      arch/x86/kernel/pci-calgary_64.c
2603 F:      arch/x86/kernel/tce_64.c
2604 F:      arch/x86/include/asm/calgary.h
2605 F:      arch/x86/include/asm/tce.h
2606
2607 CAN NETWORK LAYER
2608 M:      Oliver Hartkopp <socketcan@hartkopp.net>
2609 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2610 L:      linux-can@vger.kernel.org
2611 W:      https://github.com/linux-can
2612 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2613 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2614 S:      Maintained
2615 F:      Documentation/networking/can.txt
2616 F:      net/can/
2617 F:      include/linux/can/core.h
2618 F:      include/uapi/linux/can.h
2619 F:      include/uapi/linux/can/bcm.h
2620 F:      include/uapi/linux/can/raw.h
2621 F:      include/uapi/linux/can/gw.h
2622
2623 CAN NETWORK DRIVERS
2624 M:      Wolfgang Grandegger <wg@grandegger.com>
2625 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2626 L:      linux-can@vger.kernel.org
2627 W:      https://github.com/linux-can
2628 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2629 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2630 S:      Maintained
2631 F:      drivers/net/can/
2632 F:      include/linux/can/dev.h
2633 F:      include/linux/can/platform/
2634 F:      include/uapi/linux/can/error.h
2635 F:      include/uapi/linux/can/netlink.h
2636
2637 CAPABILITIES
2638 M:      Serge Hallyn <serge.hallyn@canonical.com>
2639 L:      linux-security-module@vger.kernel.org
2640 S:      Supported
2641 F:      include/linux/capability.h
2642 F:      include/uapi/linux/capability.h
2643 F:      security/commoncap.c
2644 F:      kernel/capability.c
2645
2646 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
2647 M:      Kevin Tsai <ktsai@capellamicro.com>
2648 S:      Maintained
2649 F:      drivers/iio/light/cm*
2650 F:      Documentation/devicetree/bindings/i2c/trivial-devices.txt
2651
2652 CAVIUM LIQUIDIO NETWORK DRIVER
2653 M:     Derek Chickles <derek.chickles@caviumnetworks.com>
2654 M:     Satanand Burla <satananda.burla@caviumnetworks.com>
2655 M:     Felix Manlunas <felix.manlunas@caviumnetworks.com>
2656 M:     Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com>
2657 L:     netdev@vger.kernel.org
2658 W:     http://www.cavium.com
2659 S:     Supported
2660 F:     drivers/net/ethernet/cavium/liquidio/
2661
2662 CC2520 IEEE-802.15.4 RADIO DRIVER
2663 M:      Varka Bhadram <varkabhadram@gmail.com>
2664 L:      linux-wpan@vger.kernel.org
2665 S:      Maintained
2666 F:      drivers/net/ieee802154/cc2520.c
2667 F:      include/linux/spi/cc2520.h
2668 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
2669
2670 CELL BROADBAND ENGINE ARCHITECTURE
2671 M:      Arnd Bergmann <arnd@arndb.de>
2672 L:      linuxppc-dev@lists.ozlabs.org
2673 W:      http://www.ibm.com/developerworks/power/cell/
2674 S:      Supported
2675 F:      arch/powerpc/include/asm/cell*.h
2676 F:      arch/powerpc/include/asm/spu*.h
2677 F:      arch/powerpc/include/uapi/asm/spu*.h
2678 F:      arch/powerpc/oprofile/*cell*
2679 F:      arch/powerpc/platforms/cell/
2680
2681 CEPH COMMON CODE (LIBCEPH)
2682 M:      Ilya Dryomov <idryomov@gmail.com>
2683 M:      "Yan, Zheng" <zyan@redhat.com>
2684 M:      Sage Weil <sage@redhat.com>
2685 L:      ceph-devel@vger.kernel.org
2686 W:      http://ceph.com/
2687 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2688 T:      git git://github.com/ceph/ceph-client.git
2689 S:      Supported
2690 F:      net/ceph/
2691 F:      include/linux/ceph/
2692 F:      include/linux/crush/
2693
2694 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
2695 M:      "Yan, Zheng" <zyan@redhat.com>
2696 M:      Sage Weil <sage@redhat.com>
2697 M:      Ilya Dryomov <idryomov@gmail.com>
2698 L:      ceph-devel@vger.kernel.org
2699 W:      http://ceph.com/
2700 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2701 T:      git git://github.com/ceph/ceph-client.git
2702 S:      Supported
2703 F:      Documentation/filesystems/ceph.txt
2704 F:      fs/ceph/
2705
2706 CERTIFICATE HANDLING:
2707 M:      David Howells <dhowells@redhat.com>
2708 M:      David Woodhouse <dwmw2@infradead.org>
2709 L:      keyrings@linux-nfs.org
2710 S:      Maintained
2711 F:      Documentation/module-signing.txt
2712 F:      certs/
2713 F:      scripts/extract-cert.c
2714
2715 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
2716 L:      linux-usb@vger.kernel.org
2717 S:      Orphan
2718 F:      Documentation/usb/WUSB-Design-overview.txt
2719 F:      Documentation/usb/wusb-cbaf
2720 F:      drivers/usb/host/hwa-hc.c
2721 F:      drivers/usb/host/whci/
2722 F:      drivers/usb/wusbcore/
2723 F:      include/linux/usb/wusb*
2724
2725 CFAG12864B LCD DRIVER
2726 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2727 W:      http://miguelojeda.es/auxdisplay.htm
2728 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2729 S:      Maintained
2730 F:      drivers/auxdisplay/cfag12864b.c
2731 F:      include/linux/cfag12864b.h
2732
2733 CFAG12864BFB LCD FRAMEBUFFER DRIVER
2734 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2735 W:      http://miguelojeda.es/auxdisplay.htm
2736 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2737 S:      Maintained
2738 F:      drivers/auxdisplay/cfag12864bfb.c
2739 F:      include/linux/cfag12864b.h
2740
2741 CFG80211 and NL80211
2742 M:      Johannes Berg <johannes@sipsolutions.net>
2743 L:      linux-wireless@vger.kernel.org
2744 W:      http://wireless.kernel.org/
2745 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2746 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
2747 S:      Maintained
2748 F:      include/uapi/linux/nl80211.h
2749 F:      include/net/cfg80211.h
2750 F:      net/wireless/*
2751 X:      net/wireless/wext*
2752
2753 CHAR and MISC DRIVERS
2754 M:      Arnd Bergmann <arnd@arndb.de>
2755 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2756 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
2757 S:      Supported
2758 F:      drivers/char/*
2759 F:      drivers/misc/*
2760 F:      include/linux/miscdevice.h
2761
2762 CHECKPATCH
2763 M:      Andy Whitcroft <apw@canonical.com>
2764 M:      Joe Perches <joe@perches.com>
2765 S:      Maintained
2766 F:      scripts/checkpatch.pl
2767
2768 CHINESE DOCUMENTATION
2769 M:      Harry Wei <harryxiyou@gmail.com>
2770 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
2771 L:      linux-kernel@zh-kernel.org (moderated for non-subscribers)
2772 S:      Maintained
2773 F:      Documentation/zh_CN/
2774
2775 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
2776 M:      Peter Chen <Peter.Chen@nxp.com>
2777 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
2778 L:      linux-usb@vger.kernel.org
2779 S:      Maintained
2780 F:      drivers/usb/chipidea/
2781
2782 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
2783 M:      Hans de Goede <hdegoede@redhat.com>
2784 L:      linux-input@vger.kernel.org
2785 S:      Maintained
2786 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
2787 F:      drivers/input/touchscreen/chipone_icn8318.c
2788
2789 CHROME HARDWARE PLATFORM SUPPORT
2790 M:      Olof Johansson <olof@lixom.net>
2791 S:      Maintained
2792 F:      drivers/platform/chrome/
2793
2794 CISCO VIC ETHERNET NIC DRIVER
2795 M:      Christian Benvenuti <benve@cisco.com>
2796 M:      Sujith Sankar <ssujith@cisco.com>
2797 M:      Govindarajulu Varadarajan <_govind@gmx.com>
2798 M:      Neel Patel <neepatel@cisco.com>
2799 S:      Supported
2800 F:      drivers/net/ethernet/cisco/enic/
2801
2802 CISCO VIC LOW LATENCY NIC DRIVER
2803 M:      Christian Benvenuti <benve@cisco.com>
2804 M:      Dave Goodell <dgoodell@cisco.com>
2805 S:      Supported
2806 F:      drivers/infiniband/hw/usnic/
2807
2808 CIRRUS LOGIC EP93XX ETHERNET DRIVER
2809 M:      Hartley Sweeten <hsweeten@visionengravers.com>
2810 L:      netdev@vger.kernel.org
2811 S:      Maintained
2812 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
2813
2814 CIRRUS LOGIC AUDIO CODEC DRIVERS
2815 M:      Brian Austin <brian.austin@cirrus.com>
2816 M:      Paul Handrigan <Paul.Handrigan@cirrus.com>
2817 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2818 S:      Maintained
2819 F:      sound/soc/codecs/cs*
2820
2821 CLEANCACHE API
2822 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2823 L:      linux-kernel@vger.kernel.org
2824 S:      Maintained
2825 F:      mm/cleancache.c
2826 F:      include/linux/cleancache.h
2827
2828 CLK API
2829 M:      Russell King <linux@arm.linux.org.uk>
2830 L:      linux-clk@vger.kernel.org
2831 S:      Maintained
2832 F:      include/linux/clk.h
2833
2834 CLOCKSOURCE, CLOCKEVENT DRIVERS
2835 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2836 M:      Thomas Gleixner <tglx@linutronix.de>
2837 L:      linux-kernel@vger.kernel.org
2838 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
2839 S:      Supported
2840 F:      drivers/clocksource
2841
2842 CISCO FCOE HBA DRIVER
2843 M:      Hiral Patel <hiralpat@cisco.com>
2844 M:      Suma Ramars <sramars@cisco.com>
2845 M:      Brian Uchino <buchino@cisco.com>
2846 L:      linux-scsi@vger.kernel.org
2847 S:      Supported
2848 F:      drivers/scsi/fnic/
2849
2850 CISCO SCSI HBA DRIVER
2851 M:      Narsimhulu Musini <nmusini@cisco.com>
2852 M:      Sesidhar Baddela <sebaddel@cisco.com>
2853 L:      linux-scsi@vger.kernel.org
2854 S:      Supported
2855 F:      drivers/scsi/snic/
2856
2857 CMPC ACPI DRIVER
2858 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2859 M:      Daniel Oliveira Nascimento <don@syst.com.br>
2860 L:      platform-driver-x86@vger.kernel.org
2861 S:      Supported
2862 F:      drivers/platform/x86/classmate-laptop.c
2863
2864 COBALT MEDIA DRIVER
2865 M:      Hans Verkuil <hans.verkuil@cisco.com>
2866 L:      linux-media@vger.kernel.org
2867 T:      git git://linuxtv.org/media_tree.git
2868 W:      https://linuxtv.org
2869 S:      Supported
2870 F:      drivers/media/pci/cobalt/
2871
2872 COCCINELLE/Semantic Patches (SmPL)
2873 M:      Julia Lawall <Julia.Lawall@lip6.fr>
2874 M:      Gilles Muller <Gilles.Muller@lip6.fr>
2875 M:      Nicolas Palix <nicolas.palix@imag.fr>
2876 M:      Michal Marek <mmarek@suse.com>
2877 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
2878 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
2879 W:      http://coccinelle.lip6.fr/
2880 S:      Supported
2881 F:      Documentation/coccinelle.txt
2882 F:      scripts/coccinelle/
2883 F:      scripts/coccicheck
2884
2885 CODA FILE SYSTEM
2886 M:      Jan Harkes <jaharkes@cs.cmu.edu>
2887 M:      coda@cs.cmu.edu
2888 L:      codalist@coda.cs.cmu.edu
2889 W:      http://www.coda.cs.cmu.edu/
2890 S:      Maintained
2891 F:      Documentation/filesystems/coda.txt
2892 F:      fs/coda/
2893 F:      include/linux/coda*.h
2894 F:      include/uapi/linux/coda*.h
2895
2896 CODA V4L2 MEM2MEM DRIVER
2897 M:      Philipp Zabel <p.zabel@pengutronix.de>
2898 L:      linux-media@vger.kernel.org
2899 S:      Maintained
2900 F:      Documentation/devicetree/bindings/media/coda.txt
2901 F:      drivers/media/platform/coda/
2902
2903 COMMON CLK FRAMEWORK
2904 M:      Michael Turquette <mturquette@baylibre.com>
2905 M:      Stephen Boyd <sboyd@codeaurora.org>
2906 L:      linux-clk@vger.kernel.org
2907 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
2908 S:      Maintained
2909 F:      drivers/clk/
2910 X:      drivers/clk/clkdev.c
2911 F:      include/linux/clk-pr*
2912 F:      include/linux/clk/
2913
2914 COMMON INTERNET FILE SYSTEM (CIFS)
2915 M:      Steve French <sfrench@samba.org>
2916 L:      linux-cifs@vger.kernel.org
2917 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
2918 W:      http://linux-cifs.samba.org/
2919 T:      git git://git.samba.org/sfrench/cifs-2.6.git
2920 S:      Supported
2921 F:      Documentation/filesystems/cifs/
2922 F:      fs/cifs/
2923
2924 COMPACTPCI HOTPLUG CORE
2925 M:      Scott Murray <scott@spiteful.org>
2926 L:      linux-pci@vger.kernel.org
2927 S:      Maintained
2928 F:      drivers/pci/hotplug/cpci_hotplug*
2929
2930 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
2931 M:      Scott Murray <scott@spiteful.org>
2932 L:      linux-pci@vger.kernel.org
2933 S:      Maintained
2934 F:      drivers/pci/hotplug/cpcihp_zt5550.*
2935
2936 COMPACTPCI HOTPLUG GENERIC DRIVER
2937 M:      Scott Murray <scott@spiteful.org>
2938 L:      linux-pci@vger.kernel.org
2939 S:      Maintained
2940 F:      drivers/pci/hotplug/cpcihp_generic.c
2941
2942 COMPAL LAPTOP SUPPORT
2943 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
2944 L:      platform-driver-x86@vger.kernel.org
2945 S:      Maintained
2946 F:      drivers/platform/x86/compal-laptop.c
2947
2948 CONEXANT ACCESSRUNNER USB DRIVER
2949 L:      accessrunner-general@lists.sourceforge.net
2950 W:      http://accessrunner.sourceforge.net/
2951 S:      Orphan
2952 F:      drivers/usb/atm/cxacru.c
2953
2954 CONFIGFS
2955 M:      Joel Becker <jlbec@evilplan.org>
2956 M:      Christoph Hellwig <hch@lst.de>
2957 T:      git git://git.infradead.org/users/hch/configfs.git
2958 S:      Supported
2959 F:      fs/configfs/
2960 F:      include/linux/configfs.h
2961
2962 CONNECTOR
2963 M:      Evgeniy Polyakov <zbr@ioremap.net>
2964 L:      netdev@vger.kernel.org
2965 S:      Maintained
2966 F:      drivers/connector/
2967
2968 CONTROL GROUP (CGROUP)
2969 M:      Tejun Heo <tj@kernel.org>
2970 M:      Li Zefan <lizefan@huawei.com>
2971 M:      Johannes Weiner <hannes@cmpxchg.org>
2972 L:      cgroups@vger.kernel.org
2973 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
2974 S:      Maintained
2975 F:      Documentation/cgroups/
2976 F:      include/linux/cgroup*
2977 F:      kernel/cgroup*
2978
2979 CONTROL GROUP - CPUSET
2980 M:      Li Zefan <lizefan@huawei.com>
2981 L:      cgroups@vger.kernel.org
2982 W:      http://www.bullopensource.org/cpuset/
2983 W:      http://oss.sgi.com/projects/cpusets/
2984 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
2985 S:      Maintained
2986 F:      Documentation/cgroups/cpusets.txt
2987 F:      include/linux/cpuset.h
2988 F:      kernel/cpuset.c
2989
2990 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
2991 M:      Johannes Weiner <hannes@cmpxchg.org>
2992 M:      Michal Hocko <mhocko@kernel.org>
2993 M:      Vladimir Davydov <vdavydov@virtuozzo.com>
2994 L:      cgroups@vger.kernel.org
2995 L:      linux-mm@kvack.org
2996 S:      Maintained
2997 F:      mm/memcontrol.c
2998 F:      mm/swap_cgroup.c
2999
3000 CORETEMP HARDWARE MONITORING DRIVER
3001 M:      Fenghua Yu <fenghua.yu@intel.com>
3002 L:      lm-sensors@lm-sensors.org
3003 S:      Maintained
3004 F:      Documentation/hwmon/coretemp
3005 F:      drivers/hwmon/coretemp.c
3006
3007 COSA/SRP SYNC SERIAL DRIVER
3008 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
3009 W:      http://www.fi.muni.cz/~kas/cosa/
3010 S:      Maintained
3011 F:      drivers/net/wan/cosa*
3012
3013 CPMAC ETHERNET DRIVER
3014 M:      Florian Fainelli <florian@openwrt.org>
3015 L:      netdev@vger.kernel.org
3016 S:      Maintained
3017 F:      drivers/net/ethernet/ti/cpmac.c
3018
3019 CPU FREQUENCY DRIVERS
3020 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
3021 M:      Viresh Kumar <viresh.kumar@linaro.org>
3022 L:      linux-pm@vger.kernel.org
3023 S:      Maintained
3024 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3025 T:      git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
3026 F:      drivers/cpufreq/
3027 F:      include/linux/cpufreq.h
3028
3029 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
3030 M:      Viresh Kumar <viresh.kumar@linaro.org>
3031 M:      Sudeep Holla <sudeep.holla@arm.com>
3032 L:      linux-pm@vger.kernel.org
3033 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
3034 S:      Maintained
3035 F:      drivers/cpufreq/arm_big_little.h
3036 F:      drivers/cpufreq/arm_big_little.c
3037 F:      drivers/cpufreq/arm_big_little_dt.c
3038
3039 CPUIDLE DRIVER - ARM BIG LITTLE
3040 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
3041 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3042 L:      linux-pm@vger.kernel.org
3043 L:      linux-arm-kernel@lists.infradead.org
3044 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3045 S:      Maintained
3046 F:      drivers/cpuidle/cpuidle-big_little.c
3047
3048 CPUIDLE DRIVER - ARM EXYNOS
3049 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
3050 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3051 M:      Kukjin Kim <kgene@kernel.org>
3052 L:      linux-pm@vger.kernel.org
3053 L:      linux-samsung-soc@vger.kernel.org
3054 S:      Supported
3055 F:      drivers/cpuidle/cpuidle-exynos.c
3056 F:      arch/arm/mach-exynos/pm.c
3057
3058 CPUIDLE DRIVERS
3059 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
3060 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3061 L:      linux-pm@vger.kernel.org
3062 S:      Maintained
3063 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3064 F:      drivers/cpuidle/*
3065 F:      include/linux/cpuidle.h
3066
3067 CPUID/MSR DRIVER
3068 M:      "H. Peter Anvin" <hpa@zytor.com>
3069 S:      Maintained
3070 F:      arch/x86/kernel/cpuid.c
3071 F:      arch/x86/kernel/msr.c
3072
3073 CPU POWER MONITORING SUBSYSTEM
3074 M:      Thomas Renninger <trenn@suse.com>
3075 L:      linux-pm@vger.kernel.org
3076 S:      Maintained
3077 F:      tools/power/cpupower/
3078
3079 CRAMFS FILESYSTEM
3080 W:      http://sourceforge.net/projects/cramfs/
3081 S:      Orphan / Obsolete
3082 F:      Documentation/filesystems/cramfs.txt
3083 F:      fs/cramfs/
3084
3085 CRIS PORT
3086 M:      Mikael Starvik <starvik@axis.com>
3087 M:      Jesper Nilsson <jesper.nilsson@axis.com>
3088 L:      linux-cris-kernel@axis.com
3089 W:      http://developer.axis.com
3090 S:      Maintained
3091 F:      arch/cris/
3092 F:      drivers/tty/serial/crisv10.*
3093
3094 CRYPTO API
3095 M:      Herbert Xu <herbert@gondor.apana.org.au>
3096 M:      "David S. Miller" <davem@davemloft.net>
3097 L:      linux-crypto@vger.kernel.org
3098 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
3099 S:      Maintained
3100 F:      Documentation/crypto/
3101 F:      Documentation/DocBook/crypto-API.tmpl
3102 F:      arch/*/crypto/
3103 F:      crypto/
3104 F:      drivers/crypto/
3105 F:      include/crypto/
3106
3107 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
3108 M:      Neil Horman <nhorman@tuxdriver.com>
3109 L:      linux-crypto@vger.kernel.org
3110 S:      Maintained
3111 F:      crypto/ansi_cprng.c
3112 F:      crypto/rng.c
3113
3114 CS3308 MEDIA DRIVER
3115 M:      Hans Verkuil <hverkuil@xs4all.nl>
3116 L:      linux-media@vger.kernel.org
3117 T:      git git://linuxtv.org/media_tree.git
3118 W:      http://linuxtv.org
3119 S:      Odd Fixes
3120 F:      drivers/media/i2c/cs3308.c
3121 F:      drivers/media/i2c/cs3308.h
3122
3123 CS5535 Audio ALSA driver
3124 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
3125 S:      Maintained
3126 F:      sound/pci/cs5535audio/
3127
3128 CW1200 WLAN driver
3129 M:      Solomon Peachy <pizza@shaftnet.org>
3130 S:      Maintained
3131 F:      drivers/net/wireless/st/cw1200/
3132
3133 CX18 VIDEO4LINUX DRIVER
3134 M:      Andy Walls <awalls@md.metrocast.net>
3135 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
3136 L:      linux-media@vger.kernel.org
3137 T:      git git://linuxtv.org/media_tree.git
3138 W:      https://linuxtv.org
3139 W:      http://www.ivtvdriver.org/index.php/Cx18
3140 S:      Maintained
3141 F:      Documentation/video4linux/cx18.txt
3142 F:      drivers/media/pci/cx18/
3143 F:      include/uapi/linux/ivtv*
3144
3145 CX2341X MPEG ENCODER HELPER MODULE
3146 M:      Hans Verkuil <hverkuil@xs4all.nl>
3147 L:      linux-media@vger.kernel.org
3148 T:      git git://linuxtv.org/media_tree.git
3149 W:      https://linuxtv.org
3150 S:      Maintained
3151 F:      drivers/media/common/cx2341x*
3152 F:      include/media/cx2341x*
3153
3154 CX24120 MEDIA DRIVER
3155 M:      Jemma Denson <jdenson@gmail.com>
3156 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
3157 L:      linux-media@vger.kernel.org
3158 W:      https://linuxtv.org
3159 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3160 S:      Maintained
3161 F:      drivers/media/dvb-frontends/cx24120*
3162
3163 CX88 VIDEO4LINUX DRIVER
3164 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3165 L:      linux-media@vger.kernel.org
3166 W:      https://linuxtv.org
3167 T:      git git://linuxtv.org/media_tree.git
3168 S:      Odd fixes
3169 F:      Documentation/video4linux/cx88/
3170 F:      drivers/media/pci/cx88/
3171
3172 CXD2820R MEDIA DRIVER
3173 M:      Antti Palosaari <crope@iki.fi>
3174 L:      linux-media@vger.kernel.org
3175 W:      https://linuxtv.org
3176 W:      http://palosaari.fi/linux/
3177 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3178 T:      git git://linuxtv.org/anttip/media_tree.git
3179 S:      Maintained
3180 F:      drivers/media/dvb-frontends/cxd2820r*
3181
3182 CXGB3 ETHERNET DRIVER (CXGB3)
3183 M:      Santosh Raspatur <santosh@chelsio.com>
3184 L:      netdev@vger.kernel.org
3185 W:      http://www.chelsio.com
3186 S:      Supported
3187 F:      drivers/net/ethernet/chelsio/cxgb3/
3188
3189 CXGB3 ISCSI DRIVER (CXGB3I)
3190 M:      Karen Xie <kxie@chelsio.com>
3191 L:      linux-scsi@vger.kernel.org
3192 W:      http://www.chelsio.com
3193 S:      Supported
3194 F:      drivers/scsi/cxgbi/cxgb3i
3195
3196 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
3197 M:      Steve Wise <swise@chelsio.com>
3198 L:      linux-rdma@vger.kernel.org
3199 W:      http://www.openfabrics.org
3200 S:      Supported
3201 F:      drivers/infiniband/hw/cxgb3/
3202
3203 CXGB4 ETHERNET DRIVER (CXGB4)
3204 M:      Hariprasad S <hariprasad@chelsio.com>
3205 L:      netdev@vger.kernel.org
3206 W:      http://www.chelsio.com
3207 S:      Supported
3208 F:      drivers/net/ethernet/chelsio/cxgb4/
3209
3210 CXGB4 ISCSI DRIVER (CXGB4I)
3211 M:      Karen Xie <kxie@chelsio.com>
3212 L:      linux-scsi@vger.kernel.org
3213 W:      http://www.chelsio.com
3214 S:      Supported
3215 F:      drivers/scsi/cxgbi/cxgb4i
3216
3217 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
3218 M:      Steve Wise <swise@chelsio.com>
3219 L:      linux-rdma@vger.kernel.org
3220 W:      http://www.openfabrics.org
3221 S:      Supported
3222 F:      drivers/infiniband/hw/cxgb4/
3223
3224 CXGB4VF ETHERNET DRIVER (CXGB4VF)
3225 M:      Casey Leedom <leedom@chelsio.com>
3226 L:      netdev@vger.kernel.org
3227 W:      http://www.chelsio.com
3228 S:      Supported
3229 F:      drivers/net/ethernet/chelsio/cxgb4vf/
3230
3231 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
3232 M:      Ian Munsie <imunsie@au1.ibm.com>
3233 M:      Michael Neuling <mikey@neuling.org>
3234 L:      linuxppc-dev@lists.ozlabs.org
3235 S:      Supported
3236 F:      drivers/misc/cxl/
3237 F:      include/misc/cxl*
3238 F:      include/uapi/misc/cxl.h
3239 F:      Documentation/powerpc/cxl.txt
3240 F:      Documentation/powerpc/cxl.txt
3241 F:      Documentation/ABI/testing/sysfs-class-cxl
3242
3243 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
3244 M:      Manoj N. Kumar <manoj@linux.vnet.ibm.com>
3245 M:      Matthew R. Ochs <mrochs@linux.vnet.ibm.com>
3246 L:      linux-scsi@vger.kernel.org
3247 S:      Supported
3248 F:      drivers/scsi/cxlflash/
3249 F:      include/uapi/scsi/cxlflash_ioctls.h
3250 F:      Documentation/powerpc/cxlflash.txt
3251
3252 STMMAC ETHERNET DRIVER
3253 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
3254 L:      netdev@vger.kernel.org
3255 W:      http://www.stlinux.com
3256 S:      Supported
3257 F:      drivers/net/ethernet/stmicro/stmmac/
3258
3259 CYBERPRO FB DRIVER
3260 M:      Russell King <linux@arm.linux.org.uk>
3261 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3262 W:      http://www.arm.linux.org.uk/
3263 S:      Maintained
3264 F:      drivers/video/fbdev/cyber2000fb.*
3265
3266 CYCLADES ASYNC MUX DRIVER
3267 W:      http://www.cyclades.com/
3268 S:      Orphan
3269 F:      drivers/tty/cyclades.c
3270 F:      include/linux/cyclades.h
3271 F:      include/uapi/linux/cyclades.h
3272
3273 CYCLADES PC300 DRIVER
3274 W:      http://www.cyclades.com/
3275 S:      Orphan
3276 F:      drivers/net/wan/pc300*
3277
3278 CYPRESS_FIRMWARE MEDIA DRIVER
3279 M:      Antti Palosaari <crope@iki.fi>
3280 L:      linux-media@vger.kernel.org
3281 W:      https://linuxtv.org
3282 W:      http://palosaari.fi/linux/
3283 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3284 T:      git git://linuxtv.org/anttip/media_tree.git
3285 S:      Maintained
3286 F:      drivers/media/common/cypress_firmware*
3287
3288 CYTTSP TOUCHSCREEN DRIVER
3289 M:      Ferruh Yigit <fery@cypress.com>
3290 L:      linux-input@vger.kernel.org
3291 S:      Supported
3292 F:      drivers/input/touchscreen/cyttsp*
3293 F:      include/linux/input/cyttsp.h
3294
3295 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
3296 M:      Joshua Kinard <kumba@gentoo.org>
3297 S:      Maintained
3298 F:      drivers/rtc/rtc-ds1685.c
3299 F:      include/linux/rtc/ds1685.h
3300
3301 DAMA SLAVE for AX.25
3302 M:      Joerg Reuter <jreuter@yaina.de>
3303 W:      http://yaina.de/jreuter/
3304 W:      http://www.qsl.net/dl1bke/
3305 L:      linux-hams@vger.kernel.org
3306 S:      Maintained
3307 F:      net/ax25/af_ax25.c
3308 F:      net/ax25/ax25_dev.c
3309 F:      net/ax25/ax25_ds_*
3310 F:      net/ax25/ax25_in.c
3311 F:      net/ax25/ax25_out.c
3312 F:      net/ax25/ax25_timer.c
3313 F:      net/ax25/sysctl_net_ax25.c
3314
3315 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
3316 L:      netdev@vger.kernel.org
3317 S:      Orphan
3318 F:      Documentation/networking/dmfe.txt
3319 F:      drivers/net/ethernet/dec/tulip/dmfe.c
3320
3321 DC390/AM53C974 SCSI driver
3322 M:      Hannes Reinecke <hare@suse.com>
3323 L:      linux-scsi@vger.kernel.org
3324 S:      Maintained
3325 F:      drivers/scsi/am53c974.c
3326
3327 DC395x SCSI driver
3328 M:      Oliver Neukum <oliver@neukum.org>
3329 M:      Ali Akcaagac <aliakc@web.de>
3330 M:      Jamie Lenehan <lenehan@twibble.org>
3331 L:      dc395x@twibble.org
3332 W:      http://twibble.org/dist/dc395x/
3333 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
3334 S:      Maintained
3335 F:      Documentation/scsi/dc395x.txt
3336 F:      drivers/scsi/dc395x.*
3337
3338 DCCP PROTOCOL
3339 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
3340 L:      dccp@vger.kernel.org
3341 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
3342 S:      Maintained
3343 F:      include/linux/dccp.h
3344 F:      include/uapi/linux/dccp.h
3345 F:      include/linux/tfrc.h
3346 F:      net/dccp/
3347
3348 DECnet NETWORK LAYER
3349 W:      http://linux-decnet.sourceforge.net
3350 L:      linux-decnet-user@lists.sourceforge.net
3351 S:      Orphan
3352 F:      Documentation/networking/decnet.txt
3353 F:      net/decnet/
3354
3355 DECSTATION PLATFORM SUPPORT
3356 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3357 L:      linux-mips@linux-mips.org
3358 W:      http://www.linux-mips.org/wiki/DECstation
3359 S:      Maintained
3360 F:      arch/mips/dec/
3361 F:      arch/mips/include/asm/dec/
3362 F:      arch/mips/include/asm/mach-dec/
3363
3364 DEFXX FDDI NETWORK DRIVER
3365 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3366 S:      Maintained
3367 F:      drivers/net/fddi/defxx.*
3368
3369 DELL LAPTOP DRIVER
3370 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3371 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3372 L:      platform-driver-x86@vger.kernel.org
3373 S:      Maintained
3374 F:      drivers/platform/x86/dell-laptop.c
3375
3376 DELL LAPTOP RBTN DRIVER
3377 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3378 S:      Maintained
3379 F:      drivers/platform/x86/dell-rbtn.*
3380
3381 DELL LAPTOP FREEFALL DRIVER
3382 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3383 S:      Maintained
3384 F:      drivers/platform/x86/dell-smo8800.c
3385
3386 DELL LAPTOP SMM DRIVER
3387 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3388 S:      Maintained
3389 F:      drivers/hwmon/dell-smm-hwmon.c
3390 F:      include/uapi/linux/i8k.h
3391
3392 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
3393 M:      Doug Warzecha <Douglas_Warzecha@dell.com>
3394 S:      Maintained
3395 F:      Documentation/dcdbas.txt
3396 F:      drivers/firmware/dcdbas.*
3397
3398 DELL WMI EXTRAS DRIVER
3399 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3400 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3401 S:      Maintained
3402 F:      drivers/platform/x86/dell-wmi.c
3403
3404 DESIGNWARE USB2 DRD IP DRIVER
3405 M:      John Youn <johnyoun@synopsys.com>
3406 L:      linux-usb@vger.kernel.org
3407 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3408 S:      Maintained
3409 F:      drivers/usb/dwc2/
3410
3411 DESIGNWARE USB3 DRD IP DRIVER
3412 M:      Felipe Balbi <balbi@ti.com>
3413 L:      linux-usb@vger.kernel.org
3414 L:      linux-omap@vger.kernel.org
3415 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3416 S:      Maintained
3417 F:      drivers/usb/dwc3/
3418
3419 DEVICE COREDUMP (DEV_COREDUMP)
3420 M:      Johannes Berg <johannes@sipsolutions.net>
3421 L:      linux-kernel@vger.kernel.org
3422 S:      Maintained
3423 F:      drivers/base/devcoredump.c
3424 F:      include/linux/devcoredump.h
3425
3426 DEVICE FREQUENCY (DEVFREQ)
3427 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
3428 M:      Kyungmin Park <kyungmin.park@samsung.com>
3429 L:      linux-pm@vger.kernel.org
3430 S:      Maintained
3431 F:      drivers/devfreq/
3432
3433 DEVICE NUMBER REGISTRY
3434 M:      Torben Mathiasen <device@lanana.org>
3435 W:      http://lanana.org/docs/device-list/index.html
3436 S:      Maintained
3437
3438 DEVICE-MAPPER  (LVM)
3439 M:      Alasdair Kergon <agk@redhat.com>
3440 M:      Mike Snitzer <snitzer@redhat.com>
3441 M:      dm-devel@redhat.com
3442 L:      dm-devel@redhat.com
3443 W:      http://sources.redhat.com/dm
3444 Q:      http://patchwork.kernel.org/project/dm-devel/list/
3445 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
3446 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
3447 S:      Maintained
3448 F:      Documentation/device-mapper/
3449 F:      drivers/md/dm*
3450 F:      drivers/md/persistent-data/
3451 F:      include/linux/device-mapper.h
3452 F:      include/linux/dm-*.h
3453 F:      include/uapi/linux/dm-*.h
3454
3455 DIALOG SEMICONDUCTOR DRIVERS
3456 M:      Support Opensource <support.opensource@diasemi.com>
3457 W:      http://www.dialog-semiconductor.com/products
3458 S:      Supported
3459 F:      Documentation/hwmon/da90??
3460 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
3461 F:      drivers/gpio/gpio-da90??.c
3462 F:      drivers/hwmon/da90??-hwmon.c
3463 F:      drivers/iio/adc/da91??-*.c
3464 F:      drivers/input/misc/da90??_onkey.c
3465 F:      drivers/input/touchscreen/da9052_tsi.c
3466 F:      drivers/leds/leds-da90??.c
3467 F:      drivers/mfd/da903x.c
3468 F:      drivers/mfd/da90??-*.c
3469 F:      drivers/mfd/da91??-*.c
3470 F:      drivers/power/da9052-battery.c
3471 F:      drivers/power/da91??-*.c
3472 F:      drivers/regulator/da903x.c
3473 F:      drivers/regulator/da9???-regulator.[ch]
3474 F:      drivers/rtc/rtc-da90??.c
3475 F:      drivers/video/backlight/da90??_bl.c
3476 F:      drivers/watchdog/da90??_wdt.c
3477 F:      include/linux/mfd/da903x.h
3478 F:      include/linux/mfd/da9052/
3479 F:      include/linux/mfd/da9055/
3480 F:      include/linux/mfd/da9063/
3481 F:      include/linux/mfd/da9150/
3482 F:      include/sound/da[79]*.h
3483 F:      sound/soc/codecs/da[79]*.[ch]
3484
3485 DIGI NEO AND CLASSIC PCI PRODUCTS
3486 M:      Lidza Louina <lidza.louina@gmail.com>
3487 M:      Mark Hounschell <markh@compro.net>
3488 L:      driverdev-devel@linuxdriverproject.org
3489 S:      Maintained
3490 F:      drivers/staging/dgnc/
3491
3492 DIGI EPCA PCI PRODUCTS
3493 M:      Lidza Louina <lidza.louina@gmail.com>
3494 M:      Daeseok Youn <daeseok.youn@gmail.com>
3495 L:      driverdev-devel@linuxdriverproject.org
3496 S:      Maintained
3497 F:      drivers/staging/dgap/
3498
3499 DIOLAN U2C-12 I2C DRIVER
3500 M:      Guenter Roeck <linux@roeck-us.net>
3501 L:      linux-i2c@vger.kernel.org
3502 S:      Maintained
3503 F:      drivers/i2c/busses/i2c-diolan-u2c.c
3504
3505 DIRECT ACCESS (DAX)
3506 M:      Matthew Wilcox <willy@linux.intel.com>
3507 L:      linux-fsdevel@vger.kernel.org
3508 S:      Supported
3509 F:      fs/dax.c
3510
3511 DIRECTORY NOTIFICATION (DNOTIFY)
3512 M:      Eric Paris <eparis@parisplace.org>
3513 S:      Maintained
3514 F:      Documentation/filesystems/dnotify.txt
3515 F:      fs/notify/dnotify/
3516 F:      include/linux/dnotify.h
3517
3518 DISK GEOMETRY AND PARTITION HANDLING
3519 M:      Andries Brouwer <aeb@cwi.nl>
3520 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
3521 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
3522 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
3523 S:      Maintained
3524
3525 DISKQUOTA
3526 M:      Jan Kara <jack@suse.com>
3527 S:      Maintained
3528 F:      Documentation/filesystems/quota.txt
3529 F:      fs/quota/
3530 F:      include/linux/quota*.h
3531 F:      include/uapi/linux/quota*.h
3532
3533 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
3534 M:      Bernie Thompson <bernie@plugable.com>
3535 L:      linux-fbdev@vger.kernel.org
3536 S:      Maintained
3537 W:      http://plugable.com/category/projects/udlfb/
3538 F:      drivers/video/fbdev/udlfb.c
3539 F:      include/video/udlfb.h
3540 F:      Documentation/fb/udlfb.txt
3541
3542 DISTRIBUTED LOCK MANAGER (DLM)
3543 M:      Christine Caulfield <ccaulfie@redhat.com>
3544 M:      David Teigland <teigland@redhat.com>
3545 L:      cluster-devel@redhat.com
3546 W:      http://sources.redhat.com/cluster/
3547 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
3548 S:      Supported
3549 F:      fs/dlm/
3550
3551 DMA BUFFER SHARING FRAMEWORK
3552 M:      Sumit Semwal <sumit.semwal@linaro.org>
3553 S:      Maintained
3554 L:      linux-media@vger.kernel.org
3555 L:      dri-devel@lists.freedesktop.org
3556 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
3557 F:      drivers/dma-buf/
3558 F:      include/linux/dma-buf*
3559 F:      include/linux/reservation.h
3560 F:      include/linux/*fence.h
3561 F:      Documentation/dma-buf-sharing.txt
3562 T:      git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
3563
3564 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
3565 M:      Vinod Koul <vinod.koul@intel.com>
3566 L:      dmaengine@vger.kernel.org
3567 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
3568 S:      Maintained
3569 F:      drivers/dma/
3570 F:      include/linux/dmaengine.h
3571 F:      Documentation/dmaengine/
3572 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
3573
3574 DME1737 HARDWARE MONITOR DRIVER
3575 M:      Juerg Haefliger <juergh@gmail.com>
3576 L:      lm-sensors@lm-sensors.org
3577 S:      Maintained
3578 F:      Documentation/hwmon/dme1737
3579 F:      drivers/hwmon/dme1737.c
3580
3581 DMI/SMBIOS SUPPORT
3582 M:      Jean Delvare <jdelvare@suse.com>
3583 S:      Maintained
3584 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
3585 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
3586 F:      drivers/firmware/dmi-id.c
3587 F:      drivers/firmware/dmi_scan.c
3588 F:      include/linux/dmi.h
3589
3590 DOCUMENTATION
3591 M:      Jonathan Corbet <corbet@lwn.net>
3592 L:      linux-doc@vger.kernel.org
3593 S:      Maintained
3594 F:      Documentation/
3595 F:      scripts/docproc.c
3596 F:      scripts/kernel-doc*
3597 X:      Documentation/ABI/
3598 X:      Documentation/devicetree/
3599 X:      Documentation/acpi
3600 X:      Documentation/power
3601 X:      Documentation/spi
3602 X:      Documentation/DocBook/media
3603 T:      git git://git.lwn.net/linux.git docs-next
3604
3605 DOUBLETALK DRIVER
3606 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
3607 L:      blinux-list@redhat.com
3608 S:      Maintained
3609 F:      drivers/char/dtlk.c
3610 F:      include/linux/dtlk.h
3611
3612 DPT_I2O SCSI RAID DRIVER
3613 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
3614 L:      linux-scsi@vger.kernel.org
3615 W:      http://www.adaptec.com/
3616 S:      Maintained
3617 F:      drivers/scsi/dpt*
3618 F:      drivers/scsi/dpt/
3619
3620 DRBD DRIVER
3621 P:      Philipp Reisner
3622 P:      Lars Ellenberg
3623 M:      drbd-dev@lists.linbit.com
3624 L:      drbd-user@lists.linbit.com
3625 W:      http://www.drbd.org
3626 T:      git git://git.drbd.org/linux-2.6-drbd.git drbd
3627 T:      git git://git.drbd.org/drbd-8.3.git
3628 S:      Supported
3629 F:      drivers/block/drbd/
3630 F:      lib/lru_cache.c
3631 F:      Documentation/blockdev/drbd/
3632
3633 DRIVER CORE, KOBJECTS, DEBUGFS, KERNFS AND SYSFS
3634 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3635 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
3636 S:      Supported
3637 F:      Documentation/kobject.txt
3638 F:      drivers/base/
3639 F:      fs/debugfs/
3640 F:      fs/kernfs/
3641 F:      fs/sysfs/
3642 F:      include/linux/debugfs.h
3643 F:      include/linux/kobj*
3644 F:      lib/kobj*
3645
3646 DRM DRIVERS
3647 M:      David Airlie <airlied@linux.ie>
3648 L:      dri-devel@lists.freedesktop.org
3649 T:      git git://people.freedesktop.org/~airlied/linux
3650 S:      Maintained
3651 F:      drivers/gpu/drm/
3652 F:      drivers/gpu/vga/
3653 F:      include/drm/
3654 F:      include/uapi/drm/
3655
3656 RADEON DRM DRIVERS
3657 M:      Alex Deucher <alexander.deucher@amd.com>
3658 M:      Christian König <christian.koenig@amd.com>
3659 L:      dri-devel@lists.freedesktop.org
3660 T:      git git://people.freedesktop.org/~agd5f/linux
3661 S:      Supported
3662 F:      drivers/gpu/drm/radeon/
3663 F:      include/uapi/drm/radeon*
3664
3665 DRM PANEL DRIVERS
3666 M:      Thierry Reding <thierry.reding@gmail.com>
3667 L:      dri-devel@lists.freedesktop.org
3668 T:      git git://anongit.freedesktop.org/tegra/linux.git
3669 S:      Maintained
3670 F:      drivers/gpu/drm/drm_panel.c
3671 F:      drivers/gpu/drm/panel/
3672 F:      include/drm/drm_panel.h
3673 F:      Documentation/devicetree/bindings/display/panel/
3674
3675 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
3676 M:      Daniel Vetter <daniel.vetter@intel.com>
3677 M:      Jani Nikula <jani.nikula@linux.intel.com>
3678 L:      intel-gfx@lists.freedesktop.org
3679 L:      dri-devel@lists.freedesktop.org
3680 W:      https://01.org/linuxgraphics/
3681 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
3682 T:      git git://anongit.freedesktop.org/drm-intel
3683 S:      Supported
3684 F:      drivers/gpu/drm/i915/
3685 F:      include/drm/i915*
3686 F:      include/uapi/drm/i915*
3687
3688 DRM DRIVERS FOR ATMEL HLCDC
3689 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
3690 L:      dri-devel@lists.freedesktop.org
3691 S:      Supported
3692 F:      drivers/gpu/drm/atmel-hlcdc/
3693 F:      Documentation/devicetree/bindings/drm/atmel/
3694
3695 DRM DRIVERS FOR EXYNOS
3696 M:      Inki Dae <inki.dae@samsung.com>
3697 M:      Joonyoung Shim <jy0922.shim@samsung.com>
3698 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
3699 M:      Kyungmin Park <kyungmin.park@samsung.com>
3700 L:      dri-devel@lists.freedesktop.org
3701 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
3702 S:      Supported
3703 F:      drivers/gpu/drm/exynos/
3704 F:      include/drm/exynos*
3705 F:      include/uapi/drm/exynos*
3706
3707 DRM DRIVERS FOR FREESCALE DCU
3708 M:      Jianwei Wang <jianwei.wang.chn@gmail.com>
3709 M:      Alison Wang <alison.wang@freescale.com>
3710 L:      dri-devel@lists.freedesktop.org
3711 S:      Supported
3712 F:      drivers/gpu/drm/fsl-dcu/
3713 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
3714 F:      Documentation/devicetree/bindings/display/panel/nec,nl4827hc19_05b.txt
3715
3716 DRM DRIVERS FOR FREESCALE IMX
3717 M:      Philipp Zabel <p.zabel@pengutronix.de>
3718 L:      dri-devel@lists.freedesktop.org
3719 S:      Maintained
3720 F:      drivers/gpu/drm/imx/
3721 F:      drivers/gpu/ipu-v3/
3722 F:      Documentation/devicetree/bindings/display/imx/
3723
3724 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
3725 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
3726 L:      dri-devel@lists.freedesktop.org
3727 T:      git git://github.com/patjak/drm-gma500
3728 S:      Maintained
3729 F:      drivers/gpu/drm/gma500
3730 F:      include/drm/gma500*
3731
3732 DRM DRIVERS FOR NVIDIA TEGRA
3733 M:      Thierry Reding <thierry.reding@gmail.com>
3734 M:      Terje Bergström <tbergstrom@nvidia.com>
3735 L:      dri-devel@lists.freedesktop.org
3736 L:      linux-tegra@vger.kernel.org
3737 T:      git git://anongit.freedesktop.org/tegra/linux.git
3738 S:      Supported
3739 F:      drivers/gpu/drm/tegra/
3740 F:      drivers/gpu/host1x/
3741 F:      include/linux/host1x.h
3742 F:      include/uapi/drm/tegra_drm.h
3743 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
3744
3745 DRM DRIVERS FOR RENESAS
3746 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
3747 L:      dri-devel@lists.freedesktop.org
3748 L:      linux-sh@vger.kernel.org
3749 T:      git git://people.freedesktop.org/~airlied/linux
3750 S:      Supported
3751 F:      drivers/gpu/drm/rcar-du/
3752 F:      drivers/gpu/drm/shmobile/
3753 F:      include/linux/platform_data/shmob_drm.h
3754
3755 DRM DRIVERS FOR ROCKCHIP
3756 M:      Mark Yao <mark.yao@rock-chips.com>
3757 L:      dri-devel@lists.freedesktop.org
3758 S:      Maintained
3759 F:      drivers/gpu/drm/rockchip/
3760 F:      Documentation/devicetree/bindings/display/rockchip*
3761
3762 DRM DRIVERS FOR STI
3763 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
3764 M:      Vincent Abriou <vincent.abriou@st.com>
3765 L:      dri-devel@lists.freedesktop.org
3766 T:      git http://git.linaro.org/people/benjamin.gaignard/kernel.git
3767 S:      Maintained
3768 F:      drivers/gpu/drm/sti
3769 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
3770
3771 DRM DRIVERS FOR VIVANTE GPU IP
3772 M:      Lucas Stach <l.stach@pengutronix.de>
3773 R:      Russell King <linux+etnaviv@arm.linux.org.uk>
3774 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
3775 L:      dri-devel@lists.freedesktop.org
3776 S:      Maintained
3777 F:      drivers/gpu/drm/etnaviv
3778 F:      Documentation/devicetree/bindings/display/etnaviv
3779
3780 DSBR100 USB FM RADIO DRIVER
3781 M:      Alexey Klimov <klimov.linux@gmail.com>
3782 L:      linux-media@vger.kernel.org
3783 T:      git git://linuxtv.org/media_tree.git
3784 S:      Maintained
3785 F:      drivers/media/radio/dsbr100.c
3786
3787 DSCC4 DRIVER
3788 M:      Francois Romieu <romieu@fr.zoreil.com>
3789 L:      netdev@vger.kernel.org
3790 S:      Maintained
3791 F:      drivers/net/wan/dscc4.c
3792
3793 DT3155 MEDIA DRIVER
3794 M:      Hans Verkuil <hverkuil@xs4all.nl>
3795 L:      linux-media@vger.kernel.org
3796 T:      git git://linuxtv.org/media_tree.git
3797 W:      https://linuxtv.org
3798 S:      Odd Fixes
3799 F:      drivers/media/pci/dt3155/
3800
3801 DVB_USB_AF9015 MEDIA DRIVER
3802 M:      Antti Palosaari <crope@iki.fi>
3803 L:      linux-media@vger.kernel.org
3804 W:      https://linuxtv.org
3805 W:      http://palosaari.fi/linux/
3806 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3807 T:      git git://linuxtv.org/anttip/media_tree.git
3808 S:      Maintained
3809 F:      drivers/media/usb/dvb-usb-v2/af9015*
3810
3811 DVB_USB_AF9035 MEDIA DRIVER
3812 M:      Antti Palosaari <crope@iki.fi>
3813 L:      linux-media@vger.kernel.org
3814 W:      https://linuxtv.org
3815 W:      http://palosaari.fi/linux/
3816 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3817 T:      git git://linuxtv.org/anttip/media_tree.git
3818 S:      Maintained
3819 F:      drivers/media/usb/dvb-usb-v2/af9035*
3820
3821 DVB_USB_ANYSEE MEDIA DRIVER
3822 M:      Antti Palosaari <crope@iki.fi>
3823 L:      linux-media@vger.kernel.org
3824 W:      https://linuxtv.org
3825 W:      http://palosaari.fi/linux/
3826 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3827 T:      git git://linuxtv.org/anttip/media_tree.git
3828 S:      Maintained
3829 F:      drivers/media/usb/dvb-usb-v2/anysee*
3830
3831 DVB_USB_AU6610 MEDIA DRIVER
3832 M:      Antti Palosaari <crope@iki.fi>
3833 L:      linux-media@vger.kernel.org
3834 W:      https://linuxtv.org
3835 W:      http://palosaari.fi/linux/
3836 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3837 T:      git git://linuxtv.org/anttip/media_tree.git
3838 S:      Maintained
3839 F:      drivers/media/usb/dvb-usb-v2/au6610*
3840
3841 DVB_USB_CE6230 MEDIA DRIVER
3842 M:      Antti Palosaari <crope@iki.fi>
3843 L:      linux-media@vger.kernel.org
3844 W:      https://linuxtv.org
3845 W:      http://palosaari.fi/linux/
3846 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3847 T:      git git://linuxtv.org/anttip/media_tree.git
3848 S:      Maintained
3849 F:      drivers/media/usb/dvb-usb-v2/ce6230*
3850
3851 DVB_USB_CXUSB MEDIA DRIVER
3852 M:      Michael Krufky <mkrufky@linuxtv.org>
3853 L:      linux-media@vger.kernel.org
3854 W:      https://linuxtv.org
3855 W:      http://github.com/mkrufky
3856 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3857 T:      git git://linuxtv.org/media_tree.git
3858 S:      Maintained
3859 F:      drivers/media/usb/dvb-usb/cxusb*
3860
3861 DVB_USB_EC168 MEDIA DRIVER
3862 M:      Antti Palosaari <crope@iki.fi>
3863 L:      linux-media@vger.kernel.org
3864 W:      https://linuxtv.org
3865 W:      http://palosaari.fi/linux/
3866 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3867 T:      git git://linuxtv.org/anttip/media_tree.git
3868 S:      Maintained
3869 F:      drivers/media/usb/dvb-usb-v2/ec168*
3870
3871 DVB_USB_GL861 MEDIA DRIVER
3872 M:      Antti Palosaari <crope@iki.fi>
3873 L:      linux-media@vger.kernel.org
3874 W:      https://linuxtv.org
3875 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3876 T:      git git://linuxtv.org/anttip/media_tree.git
3877 S:      Maintained
3878 F:      drivers/media/usb/dvb-usb-v2/gl861*
3879
3880 DVB_USB_MXL111SF MEDIA DRIVER
3881 M:      Michael Krufky <mkrufky@linuxtv.org>
3882 L:      linux-media@vger.kernel.org
3883 W:      https://linuxtv.org
3884 W:      http://github.com/mkrufky
3885 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3886 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
3887 S:      Maintained
3888 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
3889
3890 DVB_USB_RTL28XXU MEDIA DRIVER
3891 M:      Antti Palosaari <crope@iki.fi>
3892 L:      linux-media@vger.kernel.org
3893 W:      https://linuxtv.org
3894 W:      http://palosaari.fi/linux/
3895 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3896 T:      git git://linuxtv.org/anttip/media_tree.git
3897 S:      Maintained
3898 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
3899
3900 DVB_USB_V2 MEDIA DRIVER
3901 M:      Antti Palosaari <crope@iki.fi>
3902 L:      linux-media@vger.kernel.org
3903 W:      https://linuxtv.org
3904 W:      http://palosaari.fi/linux/
3905 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3906 T:      git git://linuxtv.org/anttip/media_tree.git
3907 S:      Maintained
3908 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
3909 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
3910
3911 DYNAMIC DEBUG
3912 M:      Jason Baron <jbaron@akamai.com>
3913 S:      Maintained
3914 F:      lib/dynamic_debug.c
3915 F:      include/linux/dynamic_debug.h
3916
3917 DZ DECSTATION DZ11 SERIAL DRIVER
3918 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3919 S:      Maintained
3920 F:      drivers/tty/serial/dz.*
3921
3922 E3X0 POWER BUTTON DRIVER
3923 M:      Moritz Fischer <moritz.fischer@ettus.com>
3924 L:      usrp-users@lists.ettus.com
3925 W:      http://www.ettus.com
3926 S:      Supported
3927 F:      drivers/input/misc/e3x0-button.c
3928 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
3929
3930 E4000 MEDIA DRIVER
3931 M:      Antti Palosaari <crope@iki.fi>
3932 L:      linux-media@vger.kernel.org
3933 W:      https://linuxtv.org
3934 W:      http://palosaari.fi/linux/
3935 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3936 T:      git git://linuxtv.org/anttip/media_tree.git
3937 S:      Maintained
3938 F:      drivers/media/tuners/e4000*
3939
3940 EATA ISA/EISA/PCI SCSI DRIVER
3941 M:      Dario Ballabio <ballabio_dario@emc.com>
3942 L:      linux-scsi@vger.kernel.org
3943 S:      Maintained
3944 F:      drivers/scsi/eata.c
3945
3946 EC100 MEDIA DRIVER
3947 M:      Antti Palosaari <crope@iki.fi>
3948 L:      linux-media@vger.kernel.org
3949 W:      https://linuxtv.org
3950 W:      http://palosaari.fi/linux/
3951 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3952 T:      git git://linuxtv.org/anttip/media_tree.git
3953 S:      Maintained
3954 F:      drivers/media/dvb-frontends/ec100*
3955
3956 ECRYPT FILE SYSTEM
3957 M:      Tyler Hicks <tyhicks@canonical.com>
3958 L:      ecryptfs@vger.kernel.org
3959 W:      http://ecryptfs.org
3960 W:      https://launchpad.net/ecryptfs
3961 S:      Supported
3962 F:      Documentation/filesystems/ecryptfs.txt
3963 F:      fs/ecryptfs/
3964
3965 EDAC-CORE
3966 M:      Doug Thompson <dougthompson@xmission.com>
3967 M:      Borislav Petkov <bp@alien8.de>
3968 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3969 L:      linux-edac@vger.kernel.org
3970 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git for-next
3971 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-edac.git linux_next
3972 S:      Supported
3973 F:      Documentation/edac.txt
3974 F:      drivers/edac/
3975 F:      include/linux/edac.h
3976
3977 EDAC-AMD64
3978 M:      Doug Thompson <dougthompson@xmission.com>
3979 M:      Borislav Petkov <bp@alien8.de>
3980 L:      linux-edac@vger.kernel.org
3981 S:      Maintained
3982 F:      drivers/edac/amd64_edac*
3983
3984 EDAC-CALXEDA
3985 M:      Doug Thompson <dougthompson@xmission.com>
3986 M:      Robert Richter <rric@kernel.org>
3987 L:      linux-edac@vger.kernel.org
3988 S:      Maintained
3989 F:      drivers/edac/highbank*
3990
3991 EDAC-CAVIUM
3992 M:      Ralf Baechle <ralf@linux-mips.org>
3993 M:      David Daney <david.daney@cavium.com>
3994 L:      linux-edac@vger.kernel.org
3995 L:      linux-mips@linux-mips.org
3996 S:      Supported
3997 F:      drivers/edac/octeon_edac*
3998
3999 EDAC-E752X
4000 M:      Mark Gross <mark.gross@intel.com>
4001 M:      Doug Thompson <dougthompson@xmission.com>
4002 L:      linux-edac@vger.kernel.org
4003 S:      Maintained
4004 F:      drivers/edac/e752x_edac.c
4005
4006 EDAC-E7XXX
4007 M:      Doug Thompson <dougthompson@xmission.com>
4008 L:      linux-edac@vger.kernel.org
4009 S:      Maintained
4010 F:      drivers/edac/e7xxx_edac.c
4011
4012 EDAC-GHES
4013 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4014 L:      linux-edac@vger.kernel.org
4015 S:      Maintained
4016 F:      drivers/edac/ghes_edac.c
4017
4018 EDAC-I82443BXGX
4019 M:      Tim Small <tim@buttersideup.com>
4020 L:      linux-edac@vger.kernel.org
4021 S:      Maintained
4022 F:      drivers/edac/i82443bxgx_edac.c
4023
4024 EDAC-I3000
4025 M:      Jason Uhlenkott <juhlenko@akamai.com>
4026 L:      linux-edac@vger.kernel.org
4027 S:      Maintained
4028 F:      drivers/edac/i3000_edac.c
4029
4030 EDAC-I5000
4031 M:      Doug Thompson <dougthompson@xmission.com>
4032 L:      linux-edac@vger.kernel.org
4033 S:      Maintained
4034 F:      drivers/edac/i5000_edac.c
4035
4036 EDAC-I5400
4037 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4038 L:      linux-edac@vger.kernel.org
4039 S:      Maintained
4040 F:      drivers/edac/i5400_edac.c
4041
4042 EDAC-I7300
4043 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4044 L:      linux-edac@vger.kernel.org
4045 S:      Maintained
4046 F:      drivers/edac/i7300_edac.c
4047
4048 EDAC-I7CORE
4049 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4050 L:      linux-edac@vger.kernel.org
4051 S:      Maintained
4052 F:      drivers/edac/i7core_edac.c
4053
4054 EDAC-I82975X
4055 M:      Ranganathan Desikan <ravi@jetztechnologies.com>
4056 M:      "Arvind R." <arvino55@gmail.com>
4057 L:      linux-edac@vger.kernel.org
4058 S:      Maintained
4059 F:      drivers/edac/i82975x_edac.c
4060
4061 EDAC-IE31200
4062 M:      Jason Baron <jbaron@akamai.com>
4063 L:      linux-edac@vger.kernel.org
4064 S:      Maintained
4065 F:      drivers/edac/ie31200_edac.c
4066
4067 EDAC-MPC85XX
4068 M:      Johannes Thumshirn <morbidrsa@gmail.com>
4069 L:      linux-edac@vger.kernel.org
4070 S:      Maintained
4071 F:      drivers/edac/mpc85xx_edac.[ch]
4072
4073 EDAC-PASEMI
4074 M:      Egor Martovetsky <egor@pasemi.com>
4075 L:      linux-edac@vger.kernel.org
4076 S:      Maintained
4077 F:      drivers/edac/pasemi_edac.c
4078
4079 EDAC-R82600
4080 M:      Tim Small <tim@buttersideup.com>
4081 L:      linux-edac@vger.kernel.org
4082 S:      Maintained
4083 F:      drivers/edac/r82600_edac.c
4084
4085 EDAC-SBRIDGE
4086 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4087 L:      linux-edac@vger.kernel.org
4088 S:      Maintained
4089 F:      drivers/edac/sb_edac.c
4090
4091 EDAC-XGENE
4092 APPLIED MICRO (APM) X-GENE SOC EDAC
4093 M:     Loc Ho <lho@apm.com>
4094 S:     Supported
4095 F:     drivers/edac/xgene_edac.c
4096 F:     Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
4097
4098 EDIROL UA-101/UA-1000 DRIVER
4099 M:      Clemens Ladisch <clemens@ladisch.de>
4100 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4101 T:      git git://git.alsa-project.org/alsa-kernel.git
4102 S:      Maintained
4103 F:      sound/usb/misc/ua101.c
4104
4105 EXTENSIBLE FIRMWARE INTERFACE (EFI)
4106 M:      Matt Fleming <matt@codeblueprint.co.uk>
4107 L:      linux-efi@vger.kernel.org
4108 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4109 S:      Maintained
4110 F:      Documentation/efi-stub.txt
4111 F:      arch/ia64/kernel/efi.c
4112 F:      arch/x86/boot/compressed/eboot.[ch]
4113 F:      arch/x86/include/asm/efi.h
4114 F:      arch/x86/platform/efi/*
4115 F:      drivers/firmware/efi/*
4116 F:      include/linux/efi*.h
4117
4118 EFI VARIABLE FILESYSTEM
4119 M:      Matthew Garrett <matthew.garrett@nebula.com>
4120 M:      Jeremy Kerr <jk@ozlabs.org>
4121 M:      Matt Fleming <matt@codeblueprint.co.uk>
4122 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4123 L:      linux-efi@vger.kernel.org
4124 S:      Maintained
4125 F:      fs/efivarfs/
4126
4127 EFIFB FRAMEBUFFER DRIVER
4128 L:      linux-fbdev@vger.kernel.org
4129 M:      Peter Jones <pjones@redhat.com>
4130 S:      Maintained
4131 F:      drivers/video/fbdev/efifb.c
4132
4133 EFS FILESYSTEM
4134 W:      http://aeschi.ch.eu.org/efs/
4135 S:      Orphan
4136 F:      fs/efs/
4137
4138 EHCA (IBM GX bus InfiniBand adapter) DRIVER
4139 M:      Hoang-Nam Nguyen <hnguyen@de.ibm.com>
4140 M:      Christoph Raisch <raisch@de.ibm.com>
4141 L:      linux-rdma@vger.kernel.org
4142 S:      Supported
4143 F:      drivers/infiniband/hw/ehca/
4144
4145 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
4146 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
4147 L:      netdev@vger.kernel.org
4148 S:      Maintained
4149 F:      drivers/net/ethernet/ibm/ehea/
4150
4151 EM28XX VIDEO4LINUX DRIVER
4152 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4153 L:      linux-media@vger.kernel.org
4154 W:      https://linuxtv.org
4155 T:      git git://linuxtv.org/media_tree.git
4156 S:      Maintained
4157 F:      drivers/media/usb/em28xx/
4158
4159 EMBEDDED LINUX
4160 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
4161 M:      Matt Mackall <mpm@selenic.com>
4162 M:      David Woodhouse <dwmw2@infradead.org>
4163 L:      linux-embedded@vger.kernel.org
4164 S:      Maintained
4165
4166 EMULEX/AVAGO LPFC FC/FCOE SCSI DRIVER
4167 M:      James Smart <james.smart@avagotech.com>
4168 M:      Dick Kennedy <dick.kennedy@avagotech.com>
4169 L:      linux-scsi@vger.kernel.org
4170 W:      http://www.avagotech.com
4171 S:      Supported
4172 F:      drivers/scsi/lpfc/
4173
4174 ENE CB710 FLASH CARD READER DRIVER
4175 M:      MichaÅ‚ MirosÅ‚aw <mirq-linux@rere.qmqm.pl>
4176 S:      Maintained
4177 F:      drivers/misc/cb710/
4178 F:      drivers/mmc/host/cb710-mmc.*
4179 F:      include/linux/cb710.h
4180
4181 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
4182 M:      Maxim Levitsky <maximlevitsky@gmail.com>
4183 S:      Maintained
4184 F:      drivers/media/rc/ene_ir.*
4185
4186 ENHANCED ERROR HANDLING (EEH)
4187 M:      Gavin Shan <shangw@linux.vnet.ibm.com>
4188 L:      linuxppc-dev@lists.ozlabs.org
4189 S:      Supported
4190 F:      Documentation/powerpc/eeh-pci-error-recovery.txt
4191 F:      arch/powerpc/kernel/eeh*.c
4192
4193 EPSON S1D13XXX FRAMEBUFFER DRIVER
4194 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
4195 S:      Maintained
4196 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
4197 F:      drivers/video/fbdev/s1d13xxxfb.c
4198 F:      include/video/s1d13xxxfb.h
4199
4200 ET131X NETWORK DRIVER
4201 M:      Mark Einon <mark.einon@gmail.com>
4202 S:      Odd Fixes
4203 F:      drivers/net/ethernet/agere/
4204
4205 ETHERNET BRIDGE
4206 M:      Stephen Hemminger <stephen@networkplumber.org>
4207 L:      bridge@lists.linux-foundation.org
4208 L:      netdev@vger.kernel.org
4209 W:      http://www.linuxfoundation.org/en/Net:Bridge
4210 S:      Maintained
4211 F:      include/linux/netfilter_bridge/
4212 F:      net/bridge/
4213
4214 ETHERNET PHY LIBRARY
4215 M:      Florian Fainelli <f.fainelli@gmail.com>
4216 L:      netdev@vger.kernel.org
4217 S:      Maintained
4218 F:      include/linux/phy.h
4219 F:      include/linux/phy_fixed.h
4220 F:      drivers/net/phy/
4221 F:      Documentation/networking/phy.txt
4222 F:      drivers/of/of_mdio.c
4223 F:      drivers/of/of_net.c
4224
4225 EXT2 FILE SYSTEM
4226 M:      Jan Kara <jack@suse.com>
4227 L:      linux-ext4@vger.kernel.org
4228 S:      Maintained
4229 F:      Documentation/filesystems/ext2.txt
4230 F:      fs/ext2/
4231 F:      include/linux/ext2*
4232
4233 EXT4 FILE SYSTEM
4234 M:      "Theodore Ts'o" <tytso@mit.edu>
4235 M:      Andreas Dilger <adilger.kernel@dilger.ca>
4236 L:      linux-ext4@vger.kernel.org
4237 W:      http://ext4.wiki.kernel.org
4238 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
4239 S:      Maintained
4240 F:      Documentation/filesystems/ext4.txt
4241 F:      fs/ext4/
4242
4243 Extended Verification Module (EVM)
4244 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
4245 L:      linux-ima-devel@lists.sourceforge.net
4246 L:      linux-security-module@vger.kernel.org
4247 S:      Supported
4248 F:      security/integrity/evm/
4249
4250 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
4251 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
4252 M:      Chanwoo Choi <cw00.choi@samsung.com>
4253 L:      linux-kernel@vger.kernel.org
4254 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
4255 S:      Maintained
4256 F:      drivers/extcon/
4257 F:      include/linux/extcon/
4258 F:      include/linux/extcon.h
4259 F:      Documentation/extcon/
4260 F:      Documentation/devicetree/bindings/extcon/
4261
4262 EXYNOS DP DRIVER
4263 M:      Jingoo Han <jingoohan1@gmail.com>
4264 L:      dri-devel@lists.freedesktop.org
4265 S:      Maintained
4266 F:      drivers/gpu/drm/exynos/exynos_dp*
4267
4268 EXYNOS MIPI DISPLAY DRIVERS
4269 M:      Inki Dae <inki.dae@samsung.com>
4270 M:      Donghwa Lee <dh09.lee@samsung.com>
4271 M:      Kyungmin Park <kyungmin.park@samsung.com>
4272 L:      linux-fbdev@vger.kernel.org
4273 S:      Maintained
4274 F:      drivers/video/fbdev/exynos/exynos_mipi*
4275 F:      include/video/exynos_mipi*
4276
4277 F71805F HARDWARE MONITORING DRIVER
4278 M:      Jean Delvare <jdelvare@suse.com>
4279 L:      lm-sensors@lm-sensors.org
4280 S:      Maintained
4281 F:      Documentation/hwmon/f71805f
4282 F:      drivers/hwmon/f71805f.c
4283
4284 FC0011 TUNER DRIVER
4285 M:      Michael Buesch <m@bues.ch>
4286 L:      linux-media@vger.kernel.org
4287 S:      Maintained
4288 F:      drivers/media/tuners/fc0011.h
4289 F:      drivers/media/tuners/fc0011.c
4290
4291 FC2580 MEDIA DRIVER
4292 M:      Antti Palosaari <crope@iki.fi>
4293 L:      linux-media@vger.kernel.org
4294 W:      https://linuxtv.org
4295 W:      http://palosaari.fi/linux/
4296 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4297 T:      git git://linuxtv.org/anttip/media_tree.git
4298 S:      Maintained
4299 F:      drivers/media/tuners/fc2580*
4300
4301 FANOTIFY
4302 M:      Eric Paris <eparis@redhat.com>
4303 S:      Maintained
4304 F:      fs/notify/fanotify/
4305 F:      include/linux/fanotify.h
4306 F:      include/uapi/linux/fanotify.h
4307
4308 FARSYNC SYNCHRONOUS DRIVER
4309 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
4310 W:      http://www.farsite.co.uk/
4311 S:      Supported
4312 F:      drivers/net/wan/farsync.*
4313
4314 FAULT INJECTION SUPPORT
4315 M:      Akinobu Mita <akinobu.mita@gmail.com>
4316 S:      Supported
4317 F:      Documentation/fault-injection/
4318 F:      lib/fault-inject.c
4319
4320 FBTFT Framebuffer drivers
4321 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
4322 M:      Noralf Trønnes <noralf@tronnes.org>
4323 S:      Maintained
4324 F:      drivers/staging/fbtft/
4325
4326 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
4327 M:      Vasu Dev <vasu.dev@intel.com>
4328 L:      fcoe-devel@open-fcoe.org
4329 W:      www.Open-FCoE.org
4330 S:      Supported
4331 F:      drivers/scsi/libfc/
4332 F:      drivers/scsi/fcoe/
4333 F:      include/scsi/fc/
4334 F:      include/scsi/libfc.h
4335 F:      include/scsi/libfcoe.h
4336 F:      include/uapi/scsi/fc/
4337
4338 FILE LOCKING (flock() and fcntl()/lockf())
4339 M:      Jeff Layton <jlayton@poochiereds.net>
4340 M:      "J. Bruce Fields" <bfields@fieldses.org>
4341 L:      linux-fsdevel@vger.kernel.org
4342 S:      Maintained
4343 F:      include/linux/fcntl.h
4344 F:      include/linux/fs.h
4345 F:      include/uapi/linux/fcntl.h
4346 F:      include/uapi/linux/fs.h
4347 F:      fs/fcntl.c
4348 F:      fs/locks.c
4349
4350 FILESYSTEMS (VFS and infrastructure)
4351 M:      Alexander Viro <viro@zeniv.linux.org.uk>
4352 L:      linux-fsdevel@vger.kernel.org
4353 S:      Maintained
4354 F:      fs/*
4355
4356 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
4357 M:      Riku Voipio <riku.voipio@iki.fi>
4358 L:      lm-sensors@lm-sensors.org
4359 S:      Maintained
4360 F:      drivers/hwmon/f75375s.c
4361 F:      include/linux/f75375s.h
4362
4363 FIREWIRE AUDIO DRIVERS
4364 M:      Clemens Ladisch <clemens@ladisch.de>
4365 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4366 T:      git git://git.alsa-project.org/alsa-kernel.git
4367 S:      Maintained
4368 F:      sound/firewire/
4369
4370 FIREWIRE MEDIA DRIVERS (firedtv)
4371 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4372 L:      linux-media@vger.kernel.org
4373 L:      linux1394-devel@lists.sourceforge.net
4374 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
4375 S:      Maintained
4376 F:      drivers/media/firewire/
4377
4378 FIREWIRE SBP-2 TARGET
4379 M:      Chris Boot <bootc@bootc.net>
4380 L:      linux-scsi@vger.kernel.org
4381 L:      target-devel@vger.kernel.org
4382 L:      linux1394-devel@lists.sourceforge.net
4383 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
4384 S:      Maintained
4385 F:      drivers/target/sbp/
4386
4387 FIREWIRE SUBSYSTEM
4388 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4389 L:      linux1394-devel@lists.sourceforge.net
4390 W:      http://ieee1394.wiki.kernel.org/
4391 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
4392 S:      Maintained
4393 F:      drivers/firewire/
4394 F:      include/linux/firewire.h
4395 F:      include/uapi/linux/firewire*.h
4396 F:      tools/firewire/
4397
4398 FIRMWARE LOADER (request_firmware)
4399 M:      Ming Lei <ming.lei@canonical.com>
4400 L:      linux-kernel@vger.kernel.org
4401 S:      Maintained
4402 F:      Documentation/firmware_class/
4403 F:      drivers/base/firmware*.c
4404 F:      include/linux/firmware.h
4405
4406 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
4407 M:      Joshua Morris <josh.h.morris@us.ibm.com>
4408 M:      Philip Kelleher <pjk1939@linux.vnet.ibm.com>
4409 S:      Maintained
4410 F:      drivers/block/rsxx/
4411
4412 FLOPPY DRIVER
4413 M:      Jiri Kosina <jikos@kernel.org>
4414 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
4415 S:      Odd fixes
4416 F:      drivers/block/floppy.c
4417
4418 FMC SUBSYSTEM
4419 M:      Alessandro Rubini <rubini@gnudd.com>
4420 W:      http://www.ohwr.org/projects/fmc-bus
4421 S:      Supported
4422 F:      drivers/fmc/
4423 F:      include/linux/fmc*.h
4424 F:      include/linux/ipmi-fru.h
4425 K:      fmc_d.*register
4426
4427 FPGA MANAGER FRAMEWORK
4428 M:      Alan Tull <atull@opensource.altera.com>
4429 R:      Moritz Fischer <moritz.fischer@ettus.com>
4430 S:      Maintained
4431 F:      drivers/fpga/
4432 F:      include/linux/fpga/fpga-mgr.h
4433 W:      http://www.rocketboards.org
4434
4435 FPU EMULATOR
4436 M:      Bill Metzenthen <billm@melbpc.org.au>
4437 W:      http://floatingpoint.sourceforge.net/emulator/index.html
4438 S:      Maintained
4439 F:      arch/x86/math-emu/
4440
4441 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
4442 L:      netdev@vger.kernel.org
4443 S:      Orphan
4444 F:      drivers/net/wan/dlci.c
4445 F:      drivers/net/wan/sdla.c
4446
4447 FRAMEBUFFER LAYER
4448 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
4449 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
4450 L:      linux-fbdev@vger.kernel.org
4451 W:      http://linux-fbdev.sourceforge.net/
4452 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
4453 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git
4454 S:      Maintained
4455 F:      Documentation/fb/
4456 F:      drivers/video/
4457 F:      include/video/
4458 F:      include/linux/fb.h
4459 F:      include/uapi/video/
4460 F:      include/uapi/linux/fb.h
4461
4462 FREESCALE DIU FRAMEBUFFER DRIVER
4463 M:      Timur Tabi <timur@tabi.org>
4464 L:      linux-fbdev@vger.kernel.org
4465 S:      Maintained
4466 F:      drivers/video/fbdev/fsl-diu-fb.*
4467
4468 FREESCALE DMA DRIVER
4469 M:      Li Yang <leoli@freescale.com>
4470 M:      Zhang Wei <zw@zh-kernel.org>
4471 L:      linuxppc-dev@lists.ozlabs.org
4472 S:      Maintained
4473 F:      drivers/dma/fsldma.*
4474
4475 FREESCALE I2C CPM DRIVER
4476 M:      Jochen Friedrich <jochen@scram.de>
4477 L:      linuxppc-dev@lists.ozlabs.org
4478 L:      linux-i2c@vger.kernel.org
4479 S:      Maintained
4480 F:      drivers/i2c/busses/i2c-cpm.c
4481
4482 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
4483 M:      Sascha Hauer <kernel@pengutronix.de>
4484 L:      linux-fbdev@vger.kernel.org
4485 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4486 S:      Maintained
4487 F:      include/linux/platform_data/video-imxfb.h
4488 F:      drivers/video/fbdev/imxfb.c
4489
4490 FREESCALE QUAD SPI DRIVER
4491 M:      Han Xu <han.xu@freescale.com>
4492 L:      linux-mtd@lists.infradead.org
4493 S:      Maintained
4494 F:      drivers/mtd/spi-nor/fsl-quadspi.c
4495
4496 FREESCALE SOC FS_ENET DRIVER
4497 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
4498 M:      Vitaly Bordug <vbordug@ru.mvista.com>
4499 L:      linuxppc-dev@lists.ozlabs.org
4500 L:      netdev@vger.kernel.org
4501 S:      Maintained
4502 F:      drivers/net/ethernet/freescale/fs_enet/
4503 F:      include/linux/fs_enet_pd.h
4504
4505 FREESCALE QUICC ENGINE LIBRARY
4506 L:      linuxppc-dev@lists.ozlabs.org
4507 S:      Orphan
4508 F:      drivers/soc/fsl/qe/
4509 F:      include/soc/fsl/*qe*.h
4510 F:      include/soc/fsl/*ucc*.h
4511
4512 FREESCALE USB PERIPHERAL DRIVERS
4513 M:      Li Yang <leoli@freescale.com>
4514 L:      linux-usb@vger.kernel.org
4515 L:      linuxppc-dev@lists.ozlabs.org
4516 S:      Maintained
4517 F:      drivers/usb/gadget/udc/fsl*
4518
4519 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
4520 M:      Li Yang <leoli@freescale.com>
4521 L:      netdev@vger.kernel.org
4522 L:      linuxppc-dev@lists.ozlabs.org
4523 S:      Maintained
4524 F:      drivers/net/ethernet/freescale/ucc_geth*
4525
4526 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
4527 M:      Claudiu Manoil <claudiu.manoil@freescale.com>
4528 L:      netdev@vger.kernel.org
4529 S:      Maintained
4530 F:      drivers/net/ethernet/freescale/gianfar*
4531 X:      drivers/net/ethernet/freescale/gianfar_ptp.c
4532 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
4533
4534 FREESCALE QUICC ENGINE UCC UART DRIVER
4535 M:      Timur Tabi <timur@tabi.org>
4536 L:      linuxppc-dev@lists.ozlabs.org
4537 S:      Maintained
4538 F:      drivers/tty/serial/ucc_uart.c
4539
4540 FREESCALE SOC SOUND DRIVERS
4541 M:      Timur Tabi <timur@tabi.org>
4542 M:      Nicolin Chen <nicoleotsuka@gmail.com>
4543 M:      Xiubo Li <Xiubo.Lee@gmail.com>
4544 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4545 L:      linuxppc-dev@lists.ozlabs.org
4546 S:      Maintained
4547 F:      sound/soc/fsl/fsl*
4548 F:      sound/soc/fsl/imx*
4549 F:      sound/soc/fsl/mpc8610_hpcd.c
4550
4551 FREESCALE QORIQ MANAGEMENT COMPLEX DRIVER
4552 M:      "J. German Rivera" <German.Rivera@freescale.com>
4553 L:      linux-kernel@vger.kernel.org
4554 S:      Maintained
4555 F:      drivers/staging/fsl-mc/
4556
4557 FREEVXFS FILESYSTEM
4558 M:      Christoph Hellwig <hch@infradead.org>
4559 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
4560 S:      Maintained
4561 F:      fs/freevxfs/
4562
4563 FREEZER
4564 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4565 M:      Pavel Machek <pavel@ucw.cz>
4566 L:      linux-pm@vger.kernel.org
4567 S:      Supported
4568 F:      Documentation/power/freezing-of-tasks.txt
4569 F:      include/linux/freezer.h
4570 F:      kernel/freezer.c
4571
4572 FRONTSWAP API
4573 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4574 L:      linux-kernel@vger.kernel.org
4575 S:      Maintained
4576 F:      mm/frontswap.c
4577 F:      include/linux/frontswap.h
4578
4579 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
4580 M:      David Howells <dhowells@redhat.com>
4581 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
4582 S:      Supported
4583 F:      Documentation/filesystems/caching/
4584 F:      fs/fscache/
4585 F:      include/linux/fscache*.h
4586
4587 F2FS FILE SYSTEM
4588 M:      Jaegeuk Kim <jaegeuk@kernel.org>
4589 M:      Changman Lee <cm224.lee@samsung.com>
4590 R:      Chao Yu <chao2.yu@samsung.com>
4591 L:      linux-f2fs-devel@lists.sourceforge.net
4592 W:      http://en.wikipedia.org/wiki/F2FS
4593 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
4594 S:      Maintained
4595 F:      Documentation/filesystems/f2fs.txt
4596 F:      Documentation/ABI/testing/sysfs-fs-f2fs
4597 F:      fs/f2fs/
4598 F:      include/linux/f2fs_fs.h
4599 F:      include/trace/events/f2fs.h
4600
4601 FUJITSU FR-V (FRV) PORT
4602 M:      David Howells <dhowells@redhat.com>
4603 S:      Maintained
4604 F:      arch/frv/
4605
4606 FUJITSU LAPTOP EXTRAS
4607 M:      Jonathan Woithe <jwoithe@just42.net>
4608 L:      platform-driver-x86@vger.kernel.org
4609 S:      Maintained
4610 F:      drivers/platform/x86/fujitsu-laptop.c
4611
4612 FUJITSU M-5MO LS CAMERA ISP DRIVER
4613 M:      Kyungmin Park <kyungmin.park@samsung.com>
4614 M:      Heungjun Kim <riverful.kim@samsung.com>
4615 L:      linux-media@vger.kernel.org
4616 S:      Maintained
4617 F:      drivers/media/i2c/m5mols/
4618 F:      include/media/i2c/m5mols.h
4619
4620 FUJITSU TABLET EXTRAS
4621 M:      Robert Gerlach <khnz@gmx.de>
4622 L:      platform-driver-x86@vger.kernel.org
4623 S:      Maintained
4624 F:      drivers/platform/x86/fujitsu-tablet.c
4625
4626 FUSE: FILESYSTEM IN USERSPACE
4627 M:      Miklos Szeredi <miklos@szeredi.hu>
4628 L:      fuse-devel@lists.sourceforge.net
4629 W:      http://fuse.sourceforge.net/
4630 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
4631 S:      Maintained
4632 F:      fs/fuse/
4633 F:      include/uapi/linux/fuse.h
4634 F:      Documentation/filesystems/fuse.txt
4635
4636 FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
4637 M:      Rik Faith <faith@cs.unc.edu>
4638 L:      linux-scsi@vger.kernel.org
4639 S:      Odd Fixes (e.g., new signatures)
4640 F:      drivers/scsi/fdomain.*
4641
4642 GCOV BASED KERNEL PROFILING
4643 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
4644 S:      Maintained
4645 F:      kernel/gcov/
4646 F:      Documentation/gcov.txt
4647
4648 GDT SCSI DISK ARRAY CONTROLLER DRIVER
4649 M:      Achim Leubner <achim_leubner@adaptec.com>
4650 L:      linux-scsi@vger.kernel.org
4651 W:      http://www.icp-vortex.com/
4652 S:      Supported
4653 F:      drivers/scsi/gdt*
4654
4655 GDB KERNEL DEBUGGING HELPER SCRIPTS
4656 M:      Jan Kiszka <jan.kiszka@siemens.com>
4657 S:      Supported
4658 F:      scripts/gdb/
4659
4660 GEMTEK FM RADIO RECEIVER DRIVER
4661 M:      Hans Verkuil <hverkuil@xs4all.nl>
4662 L:      linux-media@vger.kernel.org
4663 T:      git git://linuxtv.org/media_tree.git
4664 W:      https://linuxtv.org
4665 S:      Maintained
4666 F:      drivers/media/radio/radio-gemtek*
4667
4668 GENERIC GPIO I2C DRIVER
4669 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
4670 S:      Supported
4671 F:      drivers/i2c/busses/i2c-gpio.c
4672 F:      include/linux/i2c-gpio.h
4673
4674 GENERIC GPIO I2C MULTIPLEXER DRIVER
4675 M:      Peter Korsgaard <peter.korsgaard@barco.com>
4676 L:      linux-i2c@vger.kernel.org
4677 S:      Supported
4678 F:      drivers/i2c/muxes/i2c-mux-gpio.c
4679 F:      include/linux/i2c-mux-gpio.h
4680 F:      Documentation/i2c/muxes/i2c-mux-gpio
4681
4682 GENERIC HDLC (WAN) DRIVERS
4683 M:      Krzysztof Halasa <khc@pm.waw.pl>
4684 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
4685 S:      Maintained
4686 F:      drivers/net/wan/c101.c
4687 F:      drivers/net/wan/hd6457*
4688 F:      drivers/net/wan/hdlc*
4689 F:      drivers/net/wan/n2.c
4690 F:      drivers/net/wan/pc300too.c
4691 F:      drivers/net/wan/pci200syn.c
4692 F:      drivers/net/wan/wanxl*
4693
4694 GENERIC INCLUDE/ASM HEADER FILES
4695 M:      Arnd Bergmann <arnd@arndb.de>
4696 L:      linux-arch@vger.kernel.org
4697 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
4698 S:      Maintained
4699 F:      include/asm-generic/
4700 F:      include/uapi/asm-generic/
4701
4702 GENERIC PHY FRAMEWORK
4703 M:      Kishon Vijay Abraham I <kishon@ti.com>
4704 L:      linux-kernel@vger.kernel.org
4705 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
4706 S:      Supported
4707 F:      drivers/phy/
4708 F:      include/linux/phy/
4709
4710 GENERIC PM DOMAINS
4711 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4712 M:      Kevin Hilman <khilman@kernel.org>
4713 M:      Ulf Hansson <ulf.hansson@linaro.org>
4714 L:      linux-pm@vger.kernel.org
4715 S:      Supported
4716 F:      drivers/base/power/domain*.c
4717 F:      include/linux/pm_domain.h
4718
4719 GENERIC UIO DRIVER FOR PCI DEVICES
4720 M:      "Michael S. Tsirkin" <mst@redhat.com>
4721 L:      kvm@vger.kernel.org
4722 S:      Supported
4723 F:      drivers/uio/uio_pci_generic.c
4724
4725 GET_MAINTAINER SCRIPT
4726 M:      Joe Perches <joe@perches.com>
4727 S:      Maintained
4728 F:      scripts/get_maintainer.pl
4729
4730 GFS2 FILE SYSTEM
4731 M:      Steven Whitehouse <swhiteho@redhat.com>
4732 M:      Bob Peterson <rpeterso@redhat.com>
4733 L:      cluster-devel@redhat.com
4734 W:      http://sources.redhat.com/cluster/
4735 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
4736 S:      Supported
4737 F:      Documentation/filesystems/gfs2*.txt
4738 F:      fs/gfs2/
4739 F:      include/uapi/linux/gfs2_ondisk.h
4740
4741 GIGASET ISDN DRIVERS
4742 M:      Paul Bolle <pebolle@tiscali.nl>
4743 L:      gigaset307x-common@lists.sourceforge.net
4744 W:      http://gigaset307x.sourceforge.net/
4745 S:      Odd Fixes
4746 F:      Documentation/isdn/README.gigaset
4747 F:      drivers/isdn/gigaset/
4748 F:      include/uapi/linux/gigaset_dev.h
4749
4750 GO7007 MPEG CODEC
4751 M:      Hans Verkuil <hans.verkuil@cisco.com>
4752 L:      linux-media@vger.kernel.org
4753 S:      Maintained
4754 F:      drivers/media/usb/go7007/
4755
4756 GOODIX TOUCHSCREEN
4757 M:      Bastien Nocera <hadess@hadess.net>
4758 L:      linux-input@vger.kernel.org
4759 S:      Maintained
4760 F:      drivers/input/touchscreen/goodix.c
4761
4762 GPIO SUBSYSTEM
4763 M:      Linus Walleij <linus.walleij@linaro.org>
4764 M:      Alexandre Courbot <gnurou@gmail.com>
4765 L:      linux-gpio@vger.kernel.org
4766 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
4767 S:      Maintained
4768 F:      Documentation/gpio/
4769 F:      drivers/gpio/
4770 F:      include/linux/gpio/
4771 F:      include/linux/gpio.h
4772 F:      include/asm-generic/gpio.h
4773
4774 GRE DEMULTIPLEXER DRIVER
4775 M:      Dmitry Kozlov <xeb@mail.ru>
4776 L:      netdev@vger.kernel.org
4777 S:      Maintained
4778 F:      net/ipv4/gre_demux.c
4779 F:      net/ipv4/gre_offload.c
4780 F:      include/net/gre.h
4781
4782 GRETH 10/100/1G Ethernet MAC device driver
4783 M:      Kristoffer Glembo <kristoffer@gaisler.com>
4784 L:      netdev@vger.kernel.org
4785 S:      Maintained
4786 F:      drivers/net/ethernet/aeroflex/
4787
4788 GSPCA FINEPIX SUBDRIVER
4789 M:      Frank Zago <frank@zago.net>
4790 L:      linux-media@vger.kernel.org
4791 T:      git git://linuxtv.org/media_tree.git
4792 S:      Maintained
4793 F:      drivers/media/usb/gspca/finepix.c
4794
4795 GSPCA GL860 SUBDRIVER
4796 M:      Olivier Lorin <o.lorin@laposte.net>
4797 L:      linux-media@vger.kernel.org
4798 T:      git git://linuxtv.org/media_tree.git
4799 S:      Maintained
4800 F:      drivers/media/usb/gspca/gl860/
4801
4802 GSPCA M5602 SUBDRIVER
4803 M:      Erik Andren <erik.andren@gmail.com>
4804 L:      linux-media@vger.kernel.org
4805 T:      git git://linuxtv.org/media_tree.git
4806 S:      Maintained
4807 F:      drivers/media/usb/gspca/m5602/
4808
4809 GSPCA PAC207 SONIXB SUBDRIVER
4810 M:      Hans de Goede <hdegoede@redhat.com>
4811 L:      linux-media@vger.kernel.org
4812 T:      git git://linuxtv.org/media_tree.git
4813 S:      Maintained
4814 F:      drivers/media/usb/gspca/pac207.c
4815
4816 GSPCA SN9C20X SUBDRIVER
4817 M:      Brian Johnson <brijohn@gmail.com>
4818 L:      linux-media@vger.kernel.org
4819 T:      git git://linuxtv.org/media_tree.git
4820 S:      Maintained
4821 F:      drivers/media/usb/gspca/sn9c20x.c
4822
4823 GSPCA T613 SUBDRIVER
4824 M:      Leandro Costantino <lcostantino@gmail.com>
4825 L:      linux-media@vger.kernel.org
4826 T:      git git://linuxtv.org/media_tree.git
4827 S:      Maintained
4828 F:      drivers/media/usb/gspca/t613.c
4829
4830 GSPCA USB WEBCAM DRIVER
4831 M:      Hans de Goede <hdegoede@redhat.com>
4832 L:      linux-media@vger.kernel.org
4833 T:      git git://linuxtv.org/media_tree.git
4834 S:      Maintained
4835 F:      drivers/media/usb/gspca/
4836
4837 GUID PARTITION TABLE (GPT)
4838 M:      Davidlohr Bueso <dave@stgolabs.net>
4839 L:      linux-efi@vger.kernel.org
4840 S:      Maintained
4841 F:      block/partitions/efi.*
4842
4843 STK1160 USB VIDEO CAPTURE DRIVER
4844 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
4845 L:      linux-media@vger.kernel.org
4846 T:      git git://linuxtv.org/media_tree.git
4847 S:      Maintained
4848 F:      drivers/media/usb/stk1160/
4849
4850 H8/300 ARCHITECTURE
4851 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
4852 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
4853 W:      http://uclinux-h8.sourceforge.jp
4854 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
4855 S:      Maintained
4856 F:      arch/h8300/
4857 F:      drivers/clocksource/h8300_*.c
4858 F:      drivers/clk/h8300/
4859 F:      drivers/irqchip/irq-renesas-h8*.c
4860
4861 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
4862 M:      Frank Seidel <frank@f-seidel.de>
4863 L:      platform-driver-x86@vger.kernel.org
4864 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
4865 S:      Maintained
4866 F:      drivers/platform/x86/hdaps.c
4867
4868 HDPVR USB VIDEO ENCODER DRIVER
4869 M:      Hans Verkuil <hverkuil@xs4all.nl>
4870 L:      linux-media@vger.kernel.org
4871 T:      git git://linuxtv.org/media_tree.git
4872 W:      https://linuxtv.org
4873 S:      Odd Fixes
4874 F:      drivers/media/usb/hdpvr/
4875
4876 HWPOISON MEMORY FAILURE HANDLING
4877 M:      Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
4878 L:      linux-mm@kvack.org
4879 S:      Maintained
4880 F:      mm/memory-failure.c
4881 F:      mm/hwpoison-inject.c
4882
4883 HYPERVISOR VIRTUAL CONSOLE DRIVER
4884 L:      linuxppc-dev@lists.ozlabs.org
4885 S:      Odd Fixes
4886 F:      drivers/tty/hvc/
4887
4888 HACKRF MEDIA DRIVER
4889 M:      Antti Palosaari <crope@iki.fi>
4890 L:      linux-media@vger.kernel.org
4891 W:      https://linuxtv.org
4892 W:      http://palosaari.fi/linux/
4893 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4894 T:      git git://linuxtv.org/anttip/media_tree.git
4895 S:      Maintained
4896 F:      drivers/media/usb/hackrf/
4897
4898 HARDWARE MONITORING
4899 M:      Jean Delvare <jdelvare@suse.com>
4900 M:      Guenter Roeck <linux@roeck-us.net>
4901 L:      lm-sensors@lm-sensors.org
4902 W:      http://www.lm-sensors.org/
4903 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/
4904 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
4905 S:      Maintained
4906 F:      Documentation/hwmon/
4907 F:      drivers/hwmon/
4908 F:      include/linux/hwmon*.h
4909
4910 HARDWARE RANDOM NUMBER GENERATOR CORE
4911 M:      Matt Mackall <mpm@selenic.com>
4912 M:      Herbert Xu <herbert@gondor.apana.org.au>
4913 L:      linux-crypto@vger.kernel.org
4914 S:      Odd fixes
4915 F:      Documentation/hw_random.txt
4916 F:      drivers/char/hw_random/
4917 F:      include/linux/hw_random.h
4918
4919 HARDWARE SPINLOCK CORE
4920 M:      Ohad Ben-Cohen <ohad@wizery.com>
4921 S:      Maintained
4922 F:      Documentation/hwspinlock.txt
4923 F:      drivers/hwspinlock/hwspinlock_*
4924 F:      include/linux/hwspinlock.h
4925
4926 HARMONY SOUND DRIVER
4927 L:      linux-parisc@vger.kernel.org
4928 S:      Maintained
4929 F:      sound/parisc/harmony.*
4930
4931 HD29L2 MEDIA DRIVER
4932 M:      Antti Palosaari <crope@iki.fi>
4933 L:      linux-media@vger.kernel.org
4934 W:      https://linuxtv.org
4935 W:      http://palosaari.fi/linux/
4936 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4937 T:      git git://linuxtv.org/anttip/media_tree.git
4938 S:      Maintained
4939 F:      drivers/media/dvb-frontends/hd29l2*
4940
4941 HEWLETT-PACKARD SMART2 RAID DRIVER
4942 L:      iss_storagedev@hp.com
4943 S:      Orphan
4944 F:      Documentation/blockdev/cpqarray.txt
4945 F:      drivers/block/cpqarray.*
4946
4947 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
4948 M:      Don Brace <don.brace@pmcs.com>
4949 L:      iss_storagedev@hp.com
4950 L:      storagedev@pmcs.com
4951 L:      linux-scsi@vger.kernel.org
4952 S:      Supported
4953 F:      Documentation/scsi/hpsa.txt
4954 F:      drivers/scsi/hpsa*.[ch]
4955 F:      include/linux/cciss*.h
4956 F:      include/uapi/linux/cciss*.h
4957
4958 HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
4959 M:      Don Brace <don.brace@pmcs.com>
4960 L:      iss_storagedev@hp.com
4961 L:      storagedev@pmcs.com
4962 L:      linux-scsi@vger.kernel.org
4963 S:      Supported
4964 F:      Documentation/blockdev/cciss.txt
4965 F:      drivers/block/cciss*
4966 F:      include/linux/cciss_ioctl.h
4967 F:      include/uapi/linux/cciss_ioctl.h
4968
4969 HFS FILESYSTEM
4970 L:      linux-fsdevel@vger.kernel.org
4971 S:      Orphan
4972 F:      Documentation/filesystems/hfs.txt
4973 F:      fs/hfs/
4974
4975 HFSPLUS FILESYSTEM
4976 L:      linux-fsdevel@vger.kernel.org
4977 S:      Orphan
4978 F:      Documentation/filesystems/hfsplus.txt
4979 F:      fs/hfsplus/
4980
4981 HGA FRAMEBUFFER DRIVER
4982 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
4983 L:      linux-nvidia@lists.surfsouth.com
4984 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
4985 S:      Maintained
4986 F:      drivers/video/fbdev/hgafb.c
4987
4988 HIBERNATION (aka Software Suspend, aka swsusp)
4989 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4990 M:      Pavel Machek <pavel@ucw.cz>
4991 L:      linux-pm@vger.kernel.org
4992 S:      Supported
4993 F:      arch/x86/power/
4994 F:      drivers/base/power/
4995 F:      kernel/power/
4996 F:      include/linux/suspend.h
4997 F:      include/linux/freezer.h
4998 F:      include/linux/pm.h
4999 F:      arch/*/include/asm/suspend*.h
5000
5001 HID CORE LAYER
5002 M:      Jiri Kosina <jikos@kernel.org>
5003 R:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
5004 L:      linux-input@vger.kernel.org
5005 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
5006 S:      Maintained
5007 F:      drivers/hid/
5008 F:      include/linux/hid*
5009 F:      include/uapi/linux/hid*
5010
5011 HID SENSOR HUB DRIVERS
5012 M:      Jiri Kosina <jikos@kernel.org>
5013 M:      Jonathan Cameron <jic23@kernel.org>
5014 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
5015 L:      linux-input@vger.kernel.org
5016 L:      linux-iio@vger.kernel.org
5017 S:      Maintained
5018 F:      Documentation/hid/hid-sensor*
5019 F:      drivers/hid/hid-sensor-*
5020 F:      drivers/iio/*/hid-*
5021 F:      include/linux/hid-sensor-*
5022
5023 HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
5024 M:      Thomas Gleixner <tglx@linutronix.de>
5025 L:      linux-kernel@vger.kernel.org
5026 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
5027 S:      Maintained
5028 F:      Documentation/timers/
5029 F:      kernel/time/hrtimer.c
5030 F:      kernel/time/clockevents.c
5031 F:      kernel/time/tick*.*
5032 F:      kernel/time/timer_*.c
5033 F:      include/linux/clockchips.h
5034 F:      include/linux/hrtimer.h
5035
5036 HIGH-SPEED SCC DRIVER FOR AX.25
5037 L:      linux-hams@vger.kernel.org
5038 S:      Orphan
5039 F:      drivers/net/hamradio/dmascc.c
5040 F:      drivers/net/hamradio/scc.c
5041
5042 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
5043 M:      HighPoint Linux Team <linux@highpoint-tech.com>
5044 W:      http://www.highpoint-tech.com
5045 S:      Supported
5046 F:      Documentation/scsi/hptiop.txt
5047 F:      drivers/scsi/hptiop.c
5048
5049 HIPPI
5050 M:      Jes Sorensen <jes@trained-monkey.org>
5051 L:      linux-hippi@sunsite.dk
5052 S:      Maintained
5053 F:      include/linux/hippidevice.h
5054 F:      include/uapi/linux/if_hippi.h
5055 F:      net/802/hippi.c
5056 F:      drivers/net/hippi/
5057
5058 HISILICON SAS Controller
5059 M:      John Garry <john.garry@huawei.com>
5060 W:      http://www.hisilicon.com
5061 S:      Supported
5062 F:      drivers/scsi/hisi_sas/
5063 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
5064
5065 HOST AP DRIVER
5066 M:      Jouni Malinen <j@w1.fi>
5067 L:      hostap@shmoo.com (subscribers-only)
5068 L:      linux-wireless@vger.kernel.org
5069 W:      http://hostap.epitest.fi/
5070 S:      Maintained
5071 F:      drivers/net/wireless/intersil/hostap/
5072
5073 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
5074 L:      platform-driver-x86@vger.kernel.org
5075 S:      Orphan
5076 F:      drivers/platform/x86/tc1100-wmi.c
5077
5078 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
5079 M:      Jaroslav Kysela <perex@perex.cz>
5080 S:      Maintained
5081 F:      drivers/net/ethernet/hp/hp100.*
5082
5083 HPET:   High Precision Event Timers driver
5084 M:      Clemens Ladisch <clemens@ladisch.de>
5085 S:      Maintained
5086 F:      Documentation/timers/hpet.txt
5087 F:      drivers/char/hpet.c
5088 F:      include/linux/hpet.h
5089 F:      include/uapi/linux/hpet.h
5090
5091 HPET:   x86
5092 S:      Orphan
5093 F:      arch/x86/kernel/hpet.c
5094 F:      arch/x86/include/asm/hpet.h
5095
5096 HPFS FILESYSTEM
5097 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
5098 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
5099 S:      Maintained
5100 F:      fs/hpfs/
5101
5102 HSI SUBSYSTEM
5103 M:      Sebastian Reichel <sre@kernel.org>
5104 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
5105 S:      Maintained
5106 F:      Documentation/ABI/testing/sysfs-bus-hsi
5107 F:      Documentation/hsi.txt
5108 F:      drivers/hsi/
5109 F:      include/linux/hsi/
5110 F:      include/uapi/linux/hsi/
5111
5112 HSO 3G MODEM DRIVER
5113 M:      Jan Dumon <j.dumon@option.com>
5114 W:      http://www.pharscape.org
5115 S:      Maintained
5116 F:      drivers/net/usb/hso.c
5117
5118 HSR NETWORK PROTOCOL
5119 M:      Arvid Brodin <arvid.brodin@alten.se>
5120 L:      netdev@vger.kernel.org
5121 S:      Maintained
5122 F:      net/hsr/
5123
5124 HTCPEN TOUCHSCREEN DRIVER
5125 M:      Pau Oliva Fora <pof@eslack.org>
5126 L:      linux-input@vger.kernel.org
5127 S:      Maintained
5128 F:      drivers/input/touchscreen/htcpen.c
5129
5130 HUGETLB FILESYSTEM
5131 M:      Nadia Yvette Chambers <nyc@holomorphy.com>
5132 S:      Maintained
5133 F:      fs/hugetlbfs/
5134
5135 Hyper-V CORE AND DRIVERS
5136 M:      "K. Y. Srinivasan" <kys@microsoft.com>
5137 M:      Haiyang Zhang <haiyangz@microsoft.com>
5138 L:      devel@linuxdriverproject.org
5139 S:      Maintained
5140 F:      arch/x86/include/asm/mshyperv.h
5141 F:      arch/x86/include/uapi/asm/hyperv.h
5142 F:      arch/x86/kernel/cpu/mshyperv.c
5143 F:      drivers/hid/hid-hyperv.c
5144 F:      drivers/hv/
5145 F:      drivers/input/serio/hyperv-keyboard.c
5146 F:      drivers/net/hyperv/
5147 F:      drivers/scsi/storvsc_drv.c
5148 F:      drivers/video/fbdev/hyperv_fb.c
5149 F:      include/linux/hyperv.h
5150 F:      tools/hv/
5151 F:      Documentation/ABI/stable/sysfs-bus-vmbus
5152
5153 I2C OVER PARALLEL PORT
5154 M:      Jean Delvare <jdelvare@suse.com>
5155 L:      linux-i2c@vger.kernel.org
5156 S:      Maintained
5157 F:      Documentation/i2c/busses/i2c-parport
5158 F:      Documentation/i2c/busses/i2c-parport-light
5159 F:      drivers/i2c/busses/i2c-parport.c
5160 F:      drivers/i2c/busses/i2c-parport-light.c
5161
5162 I2C/SMBUS CONTROLLER DRIVERS FOR PC
5163 M:      Jean Delvare <jdelvare@suse.com>
5164 L:      linux-i2c@vger.kernel.org
5165 S:      Maintained
5166 F:      Documentation/i2c/busses/i2c-ali1535
5167 F:      Documentation/i2c/busses/i2c-ali1563
5168 F:      Documentation/i2c/busses/i2c-ali15x3
5169 F:      Documentation/i2c/busses/i2c-amd756
5170 F:      Documentation/i2c/busses/i2c-amd8111
5171 F:      Documentation/i2c/busses/i2c-i801
5172 F:      Documentation/i2c/busses/i2c-nforce2
5173 F:      Documentation/i2c/busses/i2c-piix4
5174 F:      Documentation/i2c/busses/i2c-sis5595
5175 F:      Documentation/i2c/busses/i2c-sis630
5176 F:      Documentation/i2c/busses/i2c-sis96x
5177 F:      Documentation/i2c/busses/i2c-via
5178 F:      Documentation/i2c/busses/i2c-viapro
5179 F:      drivers/i2c/busses/i2c-ali1535.c
5180 F:      drivers/i2c/busses/i2c-ali1563.c
5181 F:      drivers/i2c/busses/i2c-ali15x3.c
5182 F:      drivers/i2c/busses/i2c-amd756.c
5183 F:      drivers/i2c/busses/i2c-amd756-s4882.c
5184 F:      drivers/i2c/busses/i2c-amd8111.c
5185 F:      drivers/i2c/busses/i2c-i801.c
5186 F:      drivers/i2c/busses/i2c-isch.c
5187 F:      drivers/i2c/busses/i2c-nforce2.c
5188 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
5189 F:      drivers/i2c/busses/i2c-piix4.c
5190 F:      drivers/i2c/busses/i2c-sis5595.c
5191 F:      drivers/i2c/busses/i2c-sis630.c
5192 F:      drivers/i2c/busses/i2c-sis96x.c
5193 F:      drivers/i2c/busses/i2c-via.c
5194 F:      drivers/i2c/busses/i2c-viapro.c
5195
5196 I2C/SMBUS ISMT DRIVER
5197 M:      Seth Heasley <seth.heasley@intel.com>
5198 M:      Neil Horman <nhorman@tuxdriver.com>
5199 L:      linux-i2c@vger.kernel.org
5200 F:      drivers/i2c/busses/i2c-ismt.c
5201 F:      Documentation/i2c/busses/i2c-ismt
5202
5203 I2C/SMBUS STUB DRIVER
5204 M:      Jean Delvare <jdelvare@suse.com>
5205 L:      linux-i2c@vger.kernel.org
5206 S:      Maintained
5207 F:      drivers/i2c/i2c-stub.c
5208
5209 I2C SUBSYSTEM
5210 M:      Wolfram Sang <wsa@the-dreams.de>
5211 L:      linux-i2c@vger.kernel.org
5212 W:      https://i2c.wiki.kernel.org/
5213 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
5214 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
5215 S:      Maintained
5216 F:      Documentation/devicetree/bindings/i2c/
5217 F:      Documentation/i2c/
5218 F:      drivers/i2c/
5219 F:      drivers/i2c/*/
5220 F:      include/linux/i2c.h
5221 F:      include/linux/i2c-*.h
5222 F:      include/uapi/linux/i2c.h
5223 F:      include/uapi/linux/i2c-*.h
5224
5225 I2C ACPI SUPPORT
5226 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
5227 L:      linux-i2c@vger.kernel.org
5228 L:      linux-acpi@vger.kernel.org
5229 S:      Maintained
5230
5231 I2C-TAOS-EVM DRIVER
5232 M:      Jean Delvare <jdelvare@suse.com>
5233 L:      linux-i2c@vger.kernel.org
5234 S:      Maintained
5235 F:      Documentation/i2c/busses/i2c-taos-evm
5236 F:      drivers/i2c/busses/i2c-taos-evm.c
5237
5238 I2C-TINY-USB DRIVER
5239 M:      Till Harbaum <till@harbaum.org>
5240 L:      linux-i2c@vger.kernel.org
5241 W:      http://www.harbaum.org/till/i2c_tiny_usb
5242 S:      Maintained
5243 F:      drivers/i2c/busses/i2c-tiny-usb.c
5244
5245 i386 BOOT CODE
5246 M:      "H. Peter Anvin" <hpa@zytor.com>
5247 S:      Maintained
5248 F:      arch/x86/boot/
5249
5250 i386 SETUP CODE / CPU ERRATA WORKAROUNDS
5251 M:      "H. Peter Anvin" <hpa@zytor.com>
5252 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
5253 S:      Maintained
5254
5255 IA64 (Itanium) PLATFORM
5256 M:      Tony Luck <tony.luck@intel.com>
5257 M:      Fenghua Yu <fenghua.yu@intel.com>
5258 L:      linux-ia64@vger.kernel.org
5259 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
5260 S:      Maintained
5261 F:      arch/ia64/
5262
5263 IBM Power VMX Cryptographic instructions
5264 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5265 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5266 L:      linux-crypto@vger.kernel.org
5267 S:      Supported
5268 F:      drivers/crypto/vmx/Makefile
5269 F:      drivers/crypto/vmx/Kconfig
5270 F:      drivers/crypto/vmx/vmx.c
5271 F:      drivers/crypto/vmx/aes*
5272 F:      drivers/crypto/vmx/ghash*
5273 F:      drivers/crypto/vmx/ppc-xlate.pl
5274
5275 IBM Power in-Nest Crypto Acceleration
5276 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5277 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5278 L:      linux-crypto@vger.kernel.org
5279 S:      Supported
5280 F:      drivers/crypto/nx/Makefile
5281 F:      drivers/crypto/nx/Kconfig
5282 F:      drivers/crypto/nx/nx-aes*
5283 F:      drivers/crypto/nx/nx-sha*
5284 F:      drivers/crypto/nx/nx.*
5285 F:      drivers/crypto/nx/nx_csbcpb.h
5286 F:      drivers/crypto/nx/nx_debugfs.h
5287
5288 IBM Power 842 compression accelerator
5289 M:      Dan Streetman <ddstreet@ieee.org>
5290 S:      Supported
5291 F:      drivers/crypto/nx/Makefile
5292 F:      drivers/crypto/nx/Kconfig
5293 F:      drivers/crypto/nx/nx-842*
5294 F:      include/linux/sw842.h
5295 F:      crypto/842.c
5296 F:      lib/842/
5297
5298 IBM Power Linux RAID adapter
5299 M:      Brian King <brking@us.ibm.com>
5300 S:      Supported
5301 F:      drivers/scsi/ipr.*
5302
5303 IBM Power Virtual Ethernet Device Driver
5304 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
5305 L:      netdev@vger.kernel.org
5306 S:      Supported
5307 F:      drivers/net/ethernet/ibm/ibmveth.*
5308
5309 IBM Power SRIOV Virtual NIC Device Driver
5310 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
5311 M:      John Allen <jallen@linux.vnet.ibm.com>
5312 L:      netdev@vger.kernel.org
5313 S:      Supported
5314 F:      drivers/net/ethernet/ibm/ibmvnic.*
5315
5316 IBM Power Virtual SCSI Device Drivers
5317 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5318 L:      linux-scsi@vger.kernel.org
5319 S:      Supported
5320 F:      drivers/scsi/ibmvscsi/ibmvscsi*
5321 F:      drivers/scsi/ibmvscsi/viosrp.h
5322
5323 IBM Power Virtual FC Device Drivers
5324 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5325 L:      linux-scsi@vger.kernel.org
5326 S:      Supported
5327 F:      drivers/scsi/ibmvscsi/ibmvfc*
5328
5329 IBM ServeRAID RAID DRIVER
5330 S:      Orphan
5331 F:      drivers/scsi/ips.*
5332
5333 ICH LPC AND GPIO DRIVER
5334 M:      Peter Tyser <ptyser@xes-inc.com>
5335 S:      Maintained
5336 F:      drivers/mfd/lpc_ich.c
5337 F:      drivers/gpio/gpio-ich.c
5338
5339 IDE SUBSYSTEM
5340 M:      "David S. Miller" <davem@davemloft.net>
5341 L:      linux-ide@vger.kernel.org
5342 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
5343 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
5344 S:      Maintained
5345 F:      Documentation/ide/
5346 F:      drivers/ide/
5347 F:      include/linux/ide.h
5348
5349 IDEAPAD LAPTOP EXTRAS DRIVER
5350 M:      Ike Panhc <ike.pan@canonical.com>
5351 L:      platform-driver-x86@vger.kernel.org
5352 W:      http://launchpad.net/ideapad-laptop
5353 S:      Maintained
5354 F:      drivers/platform/x86/ideapad-laptop.c
5355
5356 IDEAPAD LAPTOP SLIDEBAR DRIVER
5357 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
5358 L:      linux-input@vger.kernel.org
5359 W:      https://github.com/o2genum/ideapad-slidebar
5360 S:      Maintained
5361 F:      drivers/input/misc/ideapad_slidebar.c
5362
5363 IDE/ATAPI DRIVERS
5364 M:      Borislav Petkov <bp@alien8.de>
5365 L:      linux-ide@vger.kernel.org
5366 S:      Maintained
5367 F:      Documentation/cdrom/ide-cd
5368 F:      drivers/ide/ide-cd*
5369
5370 IDLE-I7300
5371 M:      Andy Henroid <andrew.d.henroid@intel.com>
5372 L:      linux-pm@vger.kernel.org
5373 S:      Supported
5374 F:      drivers/idle/i7300_idle.c
5375
5376 IEEE 802.15.4 SUBSYSTEM
5377 M:      Alexander Aring <alex.aring@gmail.com>
5378 L:      linux-wpan@vger.kernel.org
5379 W:      https://github.com/linux-wpan
5380 T:      git git://github.com/linux-wpan/linux-wpan-next.git
5381 S:      Maintained
5382 F:      net/ieee802154/
5383 F:      net/mac802154/
5384 F:      drivers/net/ieee802154/
5385 F:      include/linux/nl802154.h
5386 F:      include/linux/ieee802154.h
5387 F:      include/net/nl802154.h
5388 F:      include/net/mac802154.h
5389 F:      include/net/af_ieee802154.h
5390 F:      include/net/cfg802154.h
5391 F:      include/net/ieee802154_netdev.h
5392 F:      Documentation/networking/ieee802154.txt
5393
5394 IGORPLUG-USB IR RECEIVER
5395 M:      Sean Young <sean@mess.org>
5396 L:      linux-media@vger.kernel.org
5397 S:      Maintained
5398 F:      drivers/media/rc/igorplugusb.c
5399
5400 IGUANAWORKS USB IR TRANSCEIVER
5401 M:      Sean Young <sean@mess.org>
5402 L:      linux-media@vger.kernel.org
5403 S:      Maintained
5404 F:      drivers/media/rc/iguanair.c
5405
5406 IIO SUBSYSTEM AND DRIVERS
5407 M:      Jonathan Cameron <jic23@kernel.org>
5408 R:      Hartmut Knaack <knaack.h@gmx.de>
5409 R:      Lars-Peter Clausen <lars@metafoo.de>
5410 R:      Peter Meerwald <pmeerw@pmeerw.net>
5411 L:      linux-iio@vger.kernel.org
5412 S:      Maintained
5413 F:      drivers/iio/
5414 F:      drivers/staging/iio/
5415 F:      include/linux/iio/
5416 F:      tools/iio/
5417
5418 IKANOS/ADI EAGLE ADSL USB DRIVER
5419 M:      Matthieu Castet <castet.matthieu@free.fr>
5420 M:      Stanislaw Gruszka <stf_xl@wp.pl>
5421 S:      Maintained
5422 F:      drivers/usb/atm/ueagle-atm.c
5423
5424 INA209 HARDWARE MONITOR DRIVER
5425 M:      Guenter Roeck <linux@roeck-us.net>
5426 L:      lm-sensors@lm-sensors.org
5427 S:      Maintained
5428 F:      Documentation/hwmon/ina209
5429 F:      Documentation/devicetree/bindings/i2c/ina209.txt
5430 F:      drivers/hwmon/ina209.c
5431
5432 INA2XX HARDWARE MONITOR DRIVER
5433 M:      Guenter Roeck <linux@roeck-us.net>
5434 L:      lm-sensors@lm-sensors.org
5435 S:      Maintained
5436 F:      Documentation/hwmon/ina2xx
5437 F:      drivers/hwmon/ina2xx.c
5438 F:      include/linux/platform_data/ina2xx.h
5439
5440 INDUSTRY PACK SUBSYSTEM (IPACK)
5441 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
5442 M:      Jens Taprogge <jens.taprogge@taprogge.org>
5443 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5444 L:      industrypack-devel@lists.sourceforge.net
5445 W:      http://industrypack.sourceforge.net
5446 S:      Maintained
5447 F:      drivers/ipack/
5448
5449 INGENIC JZ4780 DMA Driver
5450 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
5451 S:      Maintained
5452 F:      drivers/dma/dma-jz4780.c
5453
5454 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
5455 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
5456 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
5457 L:      linux-ima-devel@lists.sourceforge.net
5458 L:      linux-ima-user@lists.sourceforge.net
5459 L:      linux-security-module@vger.kernel.org
5460 S:      Supported
5461 F:      security/integrity/ima/
5462
5463 IMGTEC IR DECODER DRIVER
5464 M:      James Hogan <james.hogan@imgtec.com>
5465 S:      Maintained
5466 F:      drivers/media/rc/img-ir/
5467
5468 IMS TWINTURBO FRAMEBUFFER DRIVER
5469 L:      linux-fbdev@vger.kernel.org
5470 S:      Orphan
5471 F:      drivers/video/fbdev/imsttfb.c
5472
5473 INFINIBAND SUBSYSTEM
5474 M:      Doug Ledford <dledford@redhat.com>
5475 M:      Sean Hefty <sean.hefty@intel.com>
5476 M:      Hal Rosenstock <hal.rosenstock@gmail.com>
5477 L:      linux-rdma@vger.kernel.org
5478 W:      http://www.openfabrics.org/
5479 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5480 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git
5481 S:      Supported
5482 F:      Documentation/infiniband/
5483 F:      drivers/infiniband/
5484 F:      drivers/staging/rdma/
5485 F:      include/uapi/linux/if_infiniband.h
5486 F:      include/uapi/rdma/
5487 F:      include/rdma/
5488
5489 INOTIFY
5490 M:      John McCutchan <john@johnmccutchan.com>
5491 M:      Robert Love <rlove@rlove.org>
5492 M:      Eric Paris <eparis@parisplace.org>
5493 S:      Maintained
5494 F:      Documentation/filesystems/inotify.txt
5495 F:      fs/notify/inotify/
5496 F:      include/linux/inotify.h
5497 F:      include/uapi/linux/inotify.h
5498
5499 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
5500 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
5501 L:      linux-input@vger.kernel.org
5502 Q:      http://patchwork.kernel.org/project/linux-input/list/
5503 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
5504 S:      Maintained
5505 F:      drivers/input/
5506 F:      include/linux/input.h
5507 F:      include/uapi/linux/input.h
5508 F:      include/linux/input/
5509
5510 INPUT MULTITOUCH (MT) PROTOCOL
5511 M:      Henrik Rydberg <rydberg@bitmath.org>
5512 L:      linux-input@vger.kernel.org
5513 S:      Odd fixes
5514 F:      Documentation/input/multi-touch-protocol.txt
5515 F:      drivers/input/input-mt.c
5516 K:      \b(ABS|SYN)_MT_
5517
5518 INTEL ASoC BDW/HSW DRIVERS
5519 M:      Jie Yang <yang.jie@linux.intel.com>
5520 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5521 S:      Supported
5522 F:      sound/soc/intel/common/sst-dsp*
5523 F:      sound/soc/intel/common/sst-firmware.c
5524 F:      sound/soc/intel/boards/broadwell.c
5525 F:      sound/soc/intel/haswell/
5526
5527 INTEL C600 SERIES SAS CONTROLLER DRIVER
5528 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
5529 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
5530 L:      linux-scsi@vger.kernel.org
5531 T:      git git://git.code.sf.net/p/intel-sas/isci
5532 S:      Supported
5533 F:      drivers/scsi/isci/
5534
5535 INTEL IDLE DRIVER
5536 M:      Len Brown <lenb@kernel.org>
5537 L:      linux-pm@vger.kernel.org
5538 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
5539 S:      Supported
5540 F:      drivers/idle/intel_idle.c
5541
5542 INTEL PSTATE DRIVER
5543 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
5544 M:      Len Brown <lenb@kernel.org>
5545 L:      linux-pm@vger.kernel.org
5546 S:      Supported
5547 F:      drivers/cpufreq/intel_pstate.c
5548
5549 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
5550 M:      Maik Broemme <mbroemme@plusserver.de>
5551 L:      linux-fbdev@vger.kernel.org
5552 S:      Maintained
5553 F:      Documentation/fb/intelfb.txt
5554 F:      drivers/video/fbdev/intelfb/
5555
5556 INTEL 810/815 FRAMEBUFFER DRIVER
5557 M:      Antonino Daplas <adaplas@gmail.com>
5558 L:      linux-fbdev@vger.kernel.org
5559 S:      Maintained
5560 F:      drivers/video/fbdev/i810/
5561
5562 INTEL MENLOW THERMAL DRIVER
5563 M:      Sujith Thomas <sujith.thomas@intel.com>
5564 L:      platform-driver-x86@vger.kernel.org
5565 W:      https://01.org/linux-acpi
5566 S:      Supported
5567 F:      drivers/platform/x86/intel_menlow.c
5568
5569 INTEL I/OAT DMA DRIVER
5570 M:      Dave Jiang <dave.jiang@intel.com>
5571 R:      Dan Williams <dan.j.williams@intel.com>
5572 L:      dmaengine@vger.kernel.org
5573 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5574 S:      Supported
5575 F:      drivers/dma/ioat*
5576
5577 INTEL IOMMU (VT-d)
5578 M:      David Woodhouse <dwmw2@infradead.org>
5579 L:      iommu@lists.linux-foundation.org
5580 T:      git git://git.infradead.org/iommu-2.6.git
5581 S:      Supported
5582 F:      drivers/iommu/intel-iommu.c
5583 F:      include/linux/intel-iommu.h
5584
5585 INTEL IOP-ADMA DMA DRIVER
5586 R:      Dan Williams <dan.j.williams@intel.com>
5587 S:      Odd fixes
5588 F:      drivers/dma/iop-adma.c
5589
5590 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
5591 M:      Krzysztof Halasa <khalasa@piap.pl>
5592 S:      Maintained
5593 F:      arch/arm/mach-ixp4xx/include/mach/qmgr.h
5594 F:      arch/arm/mach-ixp4xx/include/mach/npe.h
5595 F:      arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
5596 F:      arch/arm/mach-ixp4xx/ixp4xx_npe.c
5597 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
5598 F:      drivers/net/wan/ixp4xx_hss.c
5599
5600 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
5601 M:      Deepak Saxena <dsaxena@plexity.net>
5602 S:      Maintained
5603 F:      drivers/char/hw_random/ixp4xx-rng.c
5604
5605 INTEL ETHERNET DRIVERS
5606 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
5607 R:      Jesse Brandeburg <jesse.brandeburg@intel.com>
5608 R:      Shannon Nelson <shannon.nelson@intel.com>
5609 R:      Carolyn Wyborny <carolyn.wyborny@intel.com>
5610 R:      Don Skidmore <donald.c.skidmore@intel.com>
5611 R:      Bruce Allan <bruce.w.allan@intel.com>
5612 R:      John Ronciak <john.ronciak@intel.com>
5613 R:      Mitch Williams <mitch.a.williams@intel.com>
5614 L:      intel-wired-lan@lists.osuosl.org
5615 W:      http://www.intel.com/support/feedback.htm
5616 W:      http://e1000.sourceforge.net/
5617 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
5618 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
5619 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
5620 S:      Supported
5621 F:      Documentation/networking/e100.txt
5622 F:      Documentation/networking/e1000.txt
5623 F:      Documentation/networking/e1000e.txt
5624 F:      Documentation/networking/igb.txt
5625 F:      Documentation/networking/igbvf.txt
5626 F:      Documentation/networking/ixgb.txt
5627 F:      Documentation/networking/ixgbe.txt
5628 F:      Documentation/networking/ixgbevf.txt
5629 F:      Documentation/networking/i40e.txt
5630 F:      Documentation/networking/i40evf.txt
5631 F:      drivers/net/ethernet/intel/
5632 F:      drivers/net/ethernet/intel/*/
5633
5634 INTEL-MID GPIO DRIVER
5635 M:      David Cohen <david.a.cohen@linux.intel.com>
5636 L:      linux-gpio@vger.kernel.org
5637 S:      Maintained
5638 F:      drivers/gpio/gpio-intel-mid.c
5639
5640 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
5641 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
5642 L:      linux-wireless@vger.kernel.org
5643 S:      Maintained
5644 F:      Documentation/networking/README.ipw2100
5645 F:      Documentation/networking/README.ipw2200
5646 F:      drivers/net/wireless/intel/ipw2x00/
5647
5648 INTEL(R) TRACE HUB
5649 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
5650 S:      Supported
5651 F:      Documentation/trace/intel_th.txt
5652 F:      drivers/hwtracing/intel_th/
5653
5654 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
5655 M:      Ning Sun <ning.sun@intel.com>
5656 L:      tboot-devel@lists.sourceforge.net
5657 W:      http://tboot.sourceforge.net
5658 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
5659 S:      Supported
5660 F:      Documentation/intel_txt.txt
5661 F:      include/linux/tboot.h
5662 F:      arch/x86/kernel/tboot.c
5663
5664 INTEL WIRELESS WIMAX CONNECTION 2400
5665 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
5666 M:      linux-wimax@intel.com
5667 L:      wimax@linuxwimax.org (subscribers-only)
5668 S:      Supported
5669 W:      http://linuxwimax.org
5670 F:      Documentation/wimax/README.i2400m
5671 F:      drivers/net/wimax/i2400m/
5672 F:      include/uapi/linux/wimax/i2400m.h
5673
5674 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
5675 M:      Stanislaw Gruszka <sgruszka@redhat.com>
5676 L:      linux-wireless@vger.kernel.org
5677 S:      Supported
5678 F:      drivers/net/wireless/intel/iwlegacy/
5679
5680 INTEL WIRELESS WIFI LINK (iwlwifi)
5681 M:      Johannes Berg <johannes.berg@intel.com>
5682 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
5683 M:      Intel Linux Wireless <linuxwifi@intel.com>
5684 L:      linux-wireless@vger.kernel.org
5685 W:      http://intellinuxwireless.org
5686 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
5687 S:      Supported
5688 F:      drivers/net/wireless/intel/iwlwifi/
5689
5690 INTEL MANAGEMENT ENGINE (mei)
5691 M:      Tomas Winkler <tomas.winkler@intel.com>
5692 L:      linux-kernel@vger.kernel.org
5693 S:      Supported
5694 F:      include/uapi/linux/mei.h
5695 F:      include/linux/mei_cl_bus.h
5696 F:      drivers/misc/mei/*
5697 F:      Documentation/misc-devices/mei/*
5698
5699 INTEL MIC DRIVERS (mic)
5700 M:      Sudeep Dutt <sudeep.dutt@intel.com>
5701 M:      Ashutosh Dixit <ashutosh.dixit@intel.com>
5702 S:      Supported
5703 W:      https://github.com/sudeepdutt/mic
5704 W:      http://software.intel.com/en-us/mic-developer
5705 F:      include/linux/mic_bus.h
5706 F:      include/linux/scif.h
5707 F:      include/uapi/linux/mic_common.h
5708 F:      include/uapi/linux/mic_ioctl.h
5709 F       include/uapi/linux/scif_ioctl.h
5710 F:      drivers/misc/mic/
5711 F:      drivers/dma/mic_x100_dma.c
5712 F:      drivers/dma/mic_x100_dma.h
5713 F       Documentation/mic/
5714
5715 INTEL PMC IPC DRIVER
5716 M:      Zha Qipeng<qipeng.zha@intel.com>
5717 L:      platform-driver-x86@vger.kernel.org
5718 S:      Maintained
5719 F:      drivers/platform/x86/intel_pmc_ipc.c
5720 F:      arch/x86/include/asm/intel_pmc_ipc.h
5721
5722 IOC3 ETHERNET DRIVER
5723 M:      Ralf Baechle <ralf@linux-mips.org>
5724 L:      linux-mips@linux-mips.org
5725 S:      Maintained
5726 F:      drivers/net/ethernet/sgi/ioc3-eth.c
5727
5728 IOC3 SERIAL DRIVER
5729 M:      Pat Gefre <pfg@sgi.com>
5730 L:      linux-serial@vger.kernel.org
5731 S:      Maintained
5732 F:      drivers/tty/serial/ioc3_serial.c
5733
5734 IOMMU DRIVERS
5735 M:      Joerg Roedel <joro@8bytes.org>
5736 L:      iommu@lists.linux-foundation.org
5737 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
5738 S:      Maintained
5739 F:      drivers/iommu/
5740
5741 IP MASQUERADING
5742 M:      Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
5743 S:      Maintained
5744 F:      net/ipv4/netfilter/ipt_MASQUERADE.c
5745
5746 IPATH DRIVER
5747 M:      Mike Marciniszyn <infinipath@intel.com>
5748 L:      linux-rdma@vger.kernel.org
5749 S:      Maintained
5750 F:      drivers/staging/rdma/ipath/
5751
5752 IPMI SUBSYSTEM
5753 M:      Corey Minyard <minyard@acm.org>
5754 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
5755 W:      http://openipmi.sourceforge.net/
5756 S:      Supported
5757 F:      Documentation/IPMI.txt
5758 F:      drivers/char/ipmi/
5759 F:      include/linux/ipmi*
5760 F:      include/uapi/linux/ipmi*
5761
5762 QCOM AUDIO (ASoC) DRIVERS
5763 M:      Patrick Lai <plai@codeaurora.org>
5764 M:      Banajit Goswami <bgoswami@codeaurora.org>
5765 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5766 S:      Supported
5767 F:      sound/soc/qcom/
5768
5769 IPS SCSI RAID DRIVER
5770 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
5771 L:      linux-scsi@vger.kernel.org
5772 W:      http://www.adaptec.com/
5773 S:      Maintained
5774 F:      drivers/scsi/ips*
5775
5776 IPVS
5777 M:      Wensong Zhang <wensong@linux-vs.org>
5778 M:      Simon Horman <horms@verge.net.au>
5779 M:      Julian Anastasov <ja@ssi.bg>
5780 L:      netdev@vger.kernel.org
5781 L:      lvs-devel@vger.kernel.org
5782 S:      Maintained
5783 F:      Documentation/networking/ipvs-sysctl.txt
5784 F:      include/net/ip_vs.h
5785 F:      include/uapi/linux/ip_vs.h
5786 F:      net/netfilter/ipvs/
5787
5788 IPWIRELESS DRIVER
5789 M:      Jiri Kosina <jikos@kernel.org>
5790 M:      David Sterba <dsterba@suse.com>
5791 S:      Odd Fixes
5792 F:      drivers/tty/ipwireless/
5793
5794 IPX NETWORK LAYER
5795 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
5796 L:      netdev@vger.kernel.org
5797 S:      Maintained
5798 F:      include/net/ipx.h
5799 F:      include/uapi/linux/ipx.h
5800 F:      net/ipx/
5801
5802 IRDA SUBSYSTEM
5803 M:      Samuel Ortiz <samuel@sortiz.org>
5804 L:      irda-users@lists.sourceforge.net (subscribers-only)
5805 L:      netdev@vger.kernel.org
5806 W:      http://irda.sourceforge.net/
5807 S:      Maintained
5808 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
5809 F:      Documentation/networking/irda.txt
5810 F:      drivers/net/irda/
5811 F:      include/net/irda/
5812 F:      net/irda/
5813
5814 IRQ SUBSYSTEM
5815 M:      Thomas Gleixner <tglx@linutronix.de>
5816 L:      linux-kernel@vger.kernel.org
5817 S:      Maintained
5818 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5819 F:      kernel/irq/
5820
5821 IRQCHIP DRIVERS
5822 M:      Thomas Gleixner <tglx@linutronix.de>
5823 M:      Jason Cooper <jason@lakedaemon.net>
5824 M:      Marc Zyngier <marc.zyngier@arm.com>
5825 L:      linux-kernel@vger.kernel.org
5826 S:      Maintained
5827 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5828 T:      git git://git.infradead.org/users/jcooper/linux.git irqchip/core
5829 F:      Documentation/devicetree/bindings/interrupt-controller/
5830 F:      drivers/irqchip/
5831
5832 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
5833 M:      Jiang Liu <jiang.liu@linux.intel.com>
5834 M:      Marc Zyngier <marc.zyngier@arm.com>
5835 S:      Maintained
5836 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5837 F:      Documentation/IRQ-domain.txt
5838 F:      include/linux/irqdomain.h
5839 F:      kernel/irq/irqdomain.c
5840 F:      kernel/irq/msi.c
5841
5842 ISAPNP
5843 M:      Jaroslav Kysela <perex@perex.cz>
5844 S:      Maintained
5845 F:      Documentation/isapnp.txt
5846 F:      drivers/pnp/isapnp/
5847 F:      include/linux/isapnp.h
5848
5849 ISA RADIO MODULE
5850 M:      Hans Verkuil <hverkuil@xs4all.nl>
5851 L:      linux-media@vger.kernel.org
5852 T:      git git://linuxtv.org/media_tree.git
5853 W:      https://linuxtv.org
5854 S:      Maintained
5855 F:      drivers/media/radio/radio-isa*
5856
5857 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
5858 M:      Peter Jones <pjones@redhat.com>
5859 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
5860 S:      Maintained
5861 F:      drivers/firmware/iscsi_ibft*
5862
5863 ISCSI
5864 M:      Mike Christie <michaelc@cs.wisc.edu>
5865 L:      open-iscsi@googlegroups.com
5866 W:      www.open-iscsi.org
5867 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
5868 S:      Maintained
5869 F:      drivers/scsi/*iscsi*
5870 F:      include/scsi/*iscsi*
5871
5872 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
5873 M:      Or Gerlitz <ogerlitz@mellanox.com>
5874 M:      Sagi Grimberg <sagig@mellanox.com>
5875 M:      Roi Dayan <roid@mellanox.com>
5876 L:      linux-rdma@vger.kernel.org
5877 S:      Supported
5878 W:      http://www.openfabrics.org
5879 W:      www.open-iscsi.org
5880 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5881 F:      drivers/infiniband/ulp/iser/
5882
5883 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
5884 M:      Sagi Grimberg <sagig@mellanox.com>
5885 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
5886 L:      linux-rdma@vger.kernel.org
5887 L:      target-devel@vger.kernel.org
5888 S:      Supported
5889 W:      http://www.linux-iscsi.org
5890 F:      drivers/infiniband/ulp/isert
5891
5892 ISDN SUBSYSTEM
5893 M:      Karsten Keil <isdn@linux-pingi.de>
5894 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5895 L:      netdev@vger.kernel.org
5896 W:      http://www.isdn4linux.de
5897 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
5898 S:      Maintained
5899 F:      Documentation/isdn/
5900 F:      drivers/isdn/
5901 F:      include/linux/isdn.h
5902 F:      include/linux/isdn/
5903 F:      include/uapi/linux/isdn.h
5904 F:      include/uapi/linux/isdn/
5905
5906 ISDN SUBSYSTEM (Eicon active card driver)
5907 M:      Armin Schindler <mac@melware.de>
5908 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5909 W:      http://www.melware.de
5910 S:      Maintained
5911 F:      drivers/isdn/hardware/eicon/
5912
5913 IT87 HARDWARE MONITORING DRIVER
5914 M:      Jean Delvare <jdelvare@suse.com>
5915 L:      lm-sensors@lm-sensors.org
5916 S:      Maintained
5917 F:      Documentation/hwmon/it87
5918 F:      drivers/hwmon/it87.c
5919
5920 IT913X MEDIA DRIVER
5921 M:      Antti Palosaari <crope@iki.fi>
5922 L:      linux-media@vger.kernel.org
5923 W:      https://linuxtv.org
5924 W:      http://palosaari.fi/linux/
5925 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5926 T:      git git://linuxtv.org/anttip/media_tree.git
5927 S:      Maintained
5928 F:      drivers/media/tuners/it913x*
5929
5930 IVTV VIDEO4LINUX DRIVER
5931 M:      Andy Walls <awalls@md.metrocast.net>
5932 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
5933 L:      linux-media@vger.kernel.org
5934 T:      git git://linuxtv.org/media_tree.git
5935 W:      http://www.ivtvdriver.org
5936 S:      Maintained
5937 F:      Documentation/video4linux/*.ivtv
5938 F:      drivers/media/pci/ivtv/
5939 F:      include/uapi/linux/ivtv*
5940
5941 IX2505V MEDIA DRIVER
5942 M:      Malcolm Priestley <tvboxspy@gmail.com>
5943 L:      linux-media@vger.kernel.org
5944 W:      https://linuxtv.org
5945 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5946 S:      Maintained
5947 F:      drivers/media/dvb-frontends/ix2505v*
5948
5949 JC42.4 TEMPERATURE SENSOR DRIVER
5950 M:      Guenter Roeck <linux@roeck-us.net>
5951 L:      lm-sensors@lm-sensors.org
5952 S:      Maintained
5953 F:      drivers/hwmon/jc42.c
5954 F:      Documentation/hwmon/jc42
5955
5956 JFS FILESYSTEM
5957 M:      Dave Kleikamp <shaggy@kernel.org>
5958 L:      jfs-discussion@lists.sourceforge.net
5959 W:      http://jfs.sourceforge.net/
5960 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
5961 S:      Maintained
5962 F:      Documentation/filesystems/jfs.txt
5963 F:      fs/jfs/
5964
5965 JME NETWORK DRIVER
5966 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
5967 L:      netdev@vger.kernel.org
5968 S:      Maintained
5969 F:      drivers/net/ethernet/jme.*
5970
5971 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
5972 M:      David Woodhouse <dwmw2@infradead.org>
5973 L:      linux-mtd@lists.infradead.org
5974 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
5975 S:      Maintained
5976 F:      fs/jffs2/
5977 F:      include/uapi/linux/jffs2.h
5978
5979 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
5980 M:      "Theodore Ts'o" <tytso@mit.edu>
5981 M:      Jan Kara <jack@suse.com>
5982 L:      linux-ext4@vger.kernel.org
5983 S:      Maintained
5984 F:      fs/jbd2/
5985 F:      include/linux/jbd2.h
5986
5987 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
5988 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
5989 L:      linux-media@vger.kernel.org
5990 S:      Maintained
5991 F:      drivers/media/platform/rcar_jpu.c
5992
5993 JSM Neo PCI based serial card
5994 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
5995 L:      linux-serial@vger.kernel.org
5996 S:      Maintained
5997 F:      drivers/tty/serial/jsm/
5998
5999 K10TEMP HARDWARE MONITORING DRIVER
6000 M:      Clemens Ladisch <clemens@ladisch.de>
6001 L:      lm-sensors@lm-sensors.org
6002 S:      Maintained
6003 F:      Documentation/hwmon/k10temp
6004 F:      drivers/hwmon/k10temp.c
6005
6006 K8TEMP HARDWARE MONITORING DRIVER
6007 M:      Rudolf Marek <r.marek@assembler.cz>
6008 L:      lm-sensors@lm-sensors.org
6009 S:      Maintained
6010 F:      Documentation/hwmon/k8temp
6011 F:      drivers/hwmon/k8temp.c
6012
6013 KCONFIG
6014 M:      "Yann E. MORIN" <yann.morin.1998@free.fr>
6015 L:      linux-kbuild@vger.kernel.org
6016 T:      git git://gitorious.org/linux-kconfig/linux-kconfig
6017 S:      Maintained
6018 F:      Documentation/kbuild/kconfig-language.txt
6019 F:      scripts/kconfig/
6020
6021 KDUMP
6022 M:      Vivek Goyal <vgoyal@redhat.com>
6023 M:      Haren Myneni <hbabu@us.ibm.com>
6024 L:      kexec@lists.infradead.org
6025 W:      http://lse.sourceforge.net/kdump/
6026 S:      Maintained
6027 F:      Documentation/kdump/
6028
6029 KEENE FM RADIO TRANSMITTER DRIVER
6030 M:      Hans Verkuil <hverkuil@xs4all.nl>
6031 L:      linux-media@vger.kernel.org
6032 T:      git git://linuxtv.org/media_tree.git
6033 W:      https://linuxtv.org
6034 S:      Maintained
6035 F:      drivers/media/radio/radio-keene*
6036
6037 KERNEL AUTOMOUNTER v4 (AUTOFS4)
6038 M:      Ian Kent <raven@themaw.net>
6039 L:      autofs@vger.kernel.org
6040 S:      Maintained
6041 F:      fs/autofs4/
6042
6043 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
6044 M:      Michal Marek <mmarek@suse.com>
6045 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
6046 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
6047 L:      linux-kbuild@vger.kernel.org
6048 S:      Maintained
6049 F:      Documentation/kbuild/
6050 F:      Makefile
6051 F:      scripts/Makefile.*
6052 F:      scripts/basic/
6053 F:      scripts/mk*
6054 F:      scripts/package/
6055
6056 KERNEL JANITORS
6057 L:      kernel-janitors@vger.kernel.org
6058 W:      http://kernelnewbies.org/KernelJanitors
6059 S:      Odd Fixes
6060
6061 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
6062 M:      "J. Bruce Fields" <bfields@fieldses.org>
6063 M:      Jeff Layton <jlayton@poochiereds.net>
6064 L:      linux-nfs@vger.kernel.org
6065 W:      http://nfs.sourceforge.net/
6066 S:      Supported
6067 F:      fs/nfsd/
6068 F:      include/uapi/linux/nfsd/
6069 F:      fs/lockd/
6070 F:      fs/nfs_common/
6071 F:      net/sunrpc/
6072 F:      include/linux/lockd/
6073 F:      include/linux/sunrpc/
6074 F:      include/uapi/linux/sunrpc/
6075
6076 KERNEL SELFTEST FRAMEWORK
6077 M:      Shuah Khan <shuahkh@osg.samsung.com>
6078 L:      linux-api@vger.kernel.org
6079 T:      git git://git.kernel.org/pub/scm/shuah/linux-kselftest
6080 S:      Maintained
6081 F:      tools/testing/selftests
6082
6083 KERNEL VIRTUAL MACHINE (KVM)
6084 M:      Gleb Natapov <gleb@kernel.org>
6085 M:      Paolo Bonzini <pbonzini@redhat.com>
6086 L:      kvm@vger.kernel.org
6087 W:      http://www.linux-kvm.org
6088 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
6089 S:      Supported
6090 F:      Documentation/*/kvm*.txt
6091 F:      Documentation/virtual/kvm/
6092 F:      arch/*/kvm/
6093 F:      arch/x86/kernel/kvm.c
6094 F:      arch/x86/kernel/kvmclock.c
6095 F:      arch/*/include/asm/kvm*
6096 F:      include/linux/kvm*
6097 F:      include/uapi/linux/kvm*
6098 F:      virt/kvm/
6099
6100 KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
6101 M:      Joerg Roedel <joro@8bytes.org>
6102 L:      kvm@vger.kernel.org
6103 W:      http://www.linux-kvm.org/
6104 S:      Maintained
6105 F:      arch/x86/include/asm/svm.h
6106 F:      arch/x86/kvm/svm.c
6107
6108 KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
6109 M:      Alexander Graf <agraf@suse.com>
6110 L:      kvm-ppc@vger.kernel.org
6111 W:      http://www.linux-kvm.org/
6112 T:      git git://github.com/agraf/linux-2.6.git
6113 S:      Supported
6114 F:      arch/powerpc/include/asm/kvm*
6115 F:      arch/powerpc/kvm/
6116
6117 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
6118 M:      Christian Borntraeger <borntraeger@de.ibm.com>
6119 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
6120 L:      linux-s390@vger.kernel.org
6121 W:      http://www.ibm.com/developerworks/linux/linux390/
6122 S:      Supported
6123 F:      Documentation/s390/kvm.txt
6124 F:      arch/s390/include/asm/kvm*
6125 F:      arch/s390/kvm/
6126
6127 KERNEL VIRTUAL MACHINE (KVM) FOR ARM
6128 M:      Christoffer Dall <christoffer.dall@linaro.org>
6129 M:      Marc Zyngier <marc.zyngier@arm.com>
6130 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6131 L:      kvmarm@lists.cs.columbia.edu
6132 W:      http://systems.cs.columbia.edu/projects/kvm-arm
6133 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
6134 S:      Supported
6135 F:      arch/arm/include/uapi/asm/kvm*
6136 F:      arch/arm/include/asm/kvm*
6137 F:      arch/arm/kvm/
6138 F:      virt/kvm/arm/
6139 F:      include/kvm/arm_*
6140
6141 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
6142 M:      Christoffer Dall <christoffer.dall@linaro.org>
6143 M:      Marc Zyngier <marc.zyngier@arm.com>
6144 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6145 L:      kvmarm@lists.cs.columbia.edu
6146 S:      Maintained
6147 F:      arch/arm64/include/uapi/asm/kvm*
6148 F:      arch/arm64/include/asm/kvm*
6149 F:      arch/arm64/kvm/
6150
6151 KEXEC
6152 M:      Eric Biederman <ebiederm@xmission.com>
6153 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
6154 L:      kexec@lists.infradead.org
6155 S:      Maintained
6156 F:      include/linux/kexec.h
6157 F:      include/uapi/linux/kexec.h
6158 F:      kernel/kexec.c
6159
6160 KEYS/KEYRINGS:
6161 M:      David Howells <dhowells@redhat.com>
6162 L:      keyrings@vger.kernel.org
6163 S:      Maintained
6164 F:      Documentation/security/keys.txt
6165 F:      include/linux/key.h
6166 F:      include/linux/key-type.h
6167 F:      include/keys/
6168 F:      security/keys/
6169
6170 KEYS-TRUSTED
6171 M:      David Safford <safford@us.ibm.com>
6172 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6173 L:      linux-security-module@vger.kernel.org
6174 L:      keyrings@vger.kernel.org
6175 S:      Supported
6176 F:      Documentation/security/keys-trusted-encrypted.txt
6177 F:      include/keys/trusted-type.h
6178 F:      security/keys/trusted.c
6179 F:      security/keys/trusted.h
6180
6181 KEYS-ENCRYPTED
6182 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6183 M:      David Safford <safford@us.ibm.com>
6184 L:      linux-security-module@vger.kernel.org
6185 L:      keyrings@vger.kernel.org
6186 S:      Supported
6187 F:      Documentation/security/keys-trusted-encrypted.txt
6188 F:      include/keys/encrypted-type.h
6189 F:      security/keys/encrypted-keys/
6190
6191 KGDB / KDB /debug_core
6192 M:      Jason Wessel <jason.wessel@windriver.com>
6193 W:      http://kgdb.wiki.kernel.org/
6194 L:      kgdb-bugreport@lists.sourceforge.net
6195 S:      Maintained
6196 F:      Documentation/DocBook/kgdb.tmpl
6197 F:      drivers/misc/kgdbts.c
6198 F:      drivers/tty/serial/kgdboc.c
6199 F:      include/linux/kdb.h
6200 F:      include/linux/kgdb.h
6201 F:      kernel/debug/
6202
6203 KMEMCHECK
6204 M:      Vegard Nossum <vegardno@ifi.uio.no>
6205 M:      Pekka Enberg <penberg@kernel.org>
6206 S:      Maintained
6207 F:      Documentation/kmemcheck.txt
6208 F:      arch/x86/include/asm/kmemcheck.h
6209 F:      arch/x86/mm/kmemcheck/
6210 F:      include/linux/kmemcheck.h
6211 F:      mm/kmemcheck.c
6212
6213 KMEMLEAK
6214 M:      Catalin Marinas <catalin.marinas@arm.com>
6215 S:      Maintained
6216 F:      Documentation/kmemleak.txt
6217 F:      include/linux/kmemleak.h
6218 F:      mm/kmemleak.c
6219 F:      mm/kmemleak-test.c
6220
6221 KPROBES
6222 M:      Ananth N Mavinakayanahalli <ananth@in.ibm.com>
6223 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
6224 M:      "David S. Miller" <davem@davemloft.net>
6225 M:      Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
6226 S:      Maintained
6227 F:      Documentation/kprobes.txt
6228 F:      include/linux/kprobes.h
6229 F:      kernel/kprobes.c
6230
6231 KS0108 LCD CONTROLLER DRIVER
6232 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
6233 W:      http://miguelojeda.es/auxdisplay.htm
6234 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
6235 S:      Maintained
6236 F:      Documentation/auxdisplay/ks0108
6237 F:      drivers/auxdisplay/ks0108.c
6238 F:      include/linux/ks0108.h
6239
6240 L3MDEV
6241 M:      David Ahern <dsa@cumulusnetworks.com>
6242 L:      netdev@vger.kernel.org
6243 S:      Maintained
6244 F:      net/l3mdev
6245 F:      include/net/l3mdev.h
6246
6247 LAPB module
6248 L:      linux-x25@vger.kernel.org
6249 S:      Orphan
6250 F:      Documentation/networking/lapb-module.txt
6251 F:      include/*/lapb.h
6252 F:      net/lapb/
6253
6254 LASI 53c700 driver for PARISC
6255 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
6256 L:      linux-scsi@vger.kernel.org
6257 S:      Maintained
6258 F:      Documentation/scsi/53c700.txt
6259 F:      drivers/scsi/53c700*
6260
6261 LED SUBSYSTEM
6262 M:      Richard Purdie <rpurdie@rpsys.net>
6263 M:      Jacek Anaszewski <j.anaszewski@samsung.com>
6264 L:      linux-leds@vger.kernel.org
6265 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
6266 S:      Maintained
6267 F:      drivers/leds/
6268 F:      include/linux/leds.h
6269
6270 LEGACY EEPROM DRIVER
6271 M:      Jean Delvare <jdelvare@suse.com>
6272 S:      Maintained
6273 F:      Documentation/misc-devices/eeprom
6274 F:      drivers/misc/eeprom/eeprom.c
6275
6276 LEGO USB Tower driver
6277 M:      Juergen Stuber <starblue@users.sourceforge.net>
6278 L:      legousb-devel@lists.sourceforge.net
6279 W:      http://legousb.sourceforge.net/
6280 S:      Maintained
6281 F:      drivers/usb/misc/legousbtower.c
6282
6283 LG2160 MEDIA DRIVER
6284 M:      Michael Krufky <mkrufky@linuxtv.org>
6285 L:      linux-media@vger.kernel.org
6286 W:      https://linuxtv.org
6287 W:      http://github.com/mkrufky
6288 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6289 T:      git git://linuxtv.org/mkrufky/tuners.git
6290 S:      Maintained
6291 F:      drivers/media/dvb-frontends/lg2160.*
6292
6293 LGDT3305 MEDIA DRIVER
6294 M:      Michael Krufky <mkrufky@linuxtv.org>
6295 L:      linux-media@vger.kernel.org
6296 W:      https://linuxtv.org
6297 W:      http://github.com/mkrufky
6298 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6299 T:      git git://linuxtv.org/mkrufky/tuners.git
6300 S:      Maintained
6301 F:      drivers/media/dvb-frontends/lgdt3305.*
6302
6303 LGUEST
6304 M:      Rusty Russell <rusty@rustcorp.com.au>
6305 L:      lguest@lists.ozlabs.org
6306 W:      http://lguest.ozlabs.org/
6307 S:      Odd Fixes
6308 F:      arch/x86/include/asm/lguest*.h
6309 F:      arch/x86/lguest/
6310 F:      drivers/lguest/
6311 F:      include/linux/lguest*.h
6312 F:      tools/lguest/
6313
6314 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
6315 M:      Tejun Heo <tj@kernel.org>
6316 L:      linux-ide@vger.kernel.org
6317 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6318 S:      Maintained
6319 F:      drivers/ata/
6320 F:      include/linux/ata.h
6321 F:      include/linux/libata.h
6322
6323 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
6324 M:      Viresh Kumar <vireshk@kernel.org>
6325 L:      linux-ide@vger.kernel.org
6326 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6327 S:      Maintained
6328 F:      include/linux/pata_arasan_cf_data.h
6329 F:      drivers/ata/pata_arasan_cf.c
6330
6331 LIBATA PATA DRIVERS
6332 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6333 M:      Tejun Heo <tj@kernel.org>
6334 L:      linux-ide@vger.kernel.org
6335 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6336 S:      Maintained
6337 F:      drivers/ata/pata_*.c
6338 F:      drivers/ata/ata_generic.c
6339
6340 LIBATA SATA AHCI PLATFORM devices support
6341 M:      Hans de Goede <hdegoede@redhat.com>
6342 M:      Tejun Heo <tj@kernel.org>
6343 L:      linux-ide@vger.kernel.org
6344 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6345 S:      Maintained
6346 F:      drivers/ata/ahci_platform.c
6347 F:      drivers/ata/libahci_platform.c
6348 F:      include/linux/ahci_platform.h
6349
6350 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
6351 M:      Mikael Pettersson <mikpelinux@gmail.com>
6352 L:      linux-ide@vger.kernel.org
6353 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6354 S:      Maintained
6355 F:      drivers/ata/sata_promise.*
6356
6357 LIBLOCKDEP
6358 M:      Sasha Levin <sasha.levin@oracle.com>
6359 S:      Maintained
6360 F:      tools/lib/lockdep/
6361
6362 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
6363 M:      Dan Williams <dan.j.williams@intel.com>
6364 L:      linux-nvdimm@lists.01.org
6365 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6366 S:      Supported
6367 F:      drivers/nvdimm/*
6368 F:      include/linux/nd.h
6369 F:      include/linux/libnvdimm.h
6370 F:      include/uapi/linux/ndctl.h
6371
6372 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
6373 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6374 L:      linux-nvdimm@lists.01.org
6375 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6376 S:      Supported
6377 F:      drivers/nvdimm/blk.c
6378 F:      drivers/nvdimm/region_devs.c
6379 F:      drivers/acpi/nfit*
6380
6381 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
6382 M:      Vishal Verma <vishal.l.verma@intel.com>
6383 L:      linux-nvdimm@lists.01.org
6384 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6385 S:      Supported
6386 F:      drivers/nvdimm/btt*
6387
6388 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
6389 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6390 L:      linux-nvdimm@lists.01.org
6391 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6392 S:      Supported
6393 F:      drivers/nvdimm/pmem.c
6394 F:      include/linux/pmem.h
6395 F:      arch/*/include/asm/pmem.h
6396
6397 LIGHTNVM PLATFORM SUPPORT
6398 M:      Matias Bjorling <mb@lightnvm.io>
6399 W:      http://github/OpenChannelSSD
6400 L:      linux-block@vger.kernel.org
6401 S:      Maintained
6402 F:      drivers/lightnvm/
6403 F:      include/linux/lightnvm.h
6404 F:      include/uapi/linux/lightnvm.h
6405
6406 LINUX FOR IBM pSERIES (RS/6000)
6407 M:      Paul Mackerras <paulus@au.ibm.com>
6408 W:      http://www.ibm.com/linux/ltc/projects/ppc
6409 S:      Supported
6410 F:      arch/powerpc/boot/rs6000.h
6411
6412 LINUX FOR POWERPC (32-BIT AND 64-BIT)
6413 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6414 M:      Paul Mackerras <paulus@samba.org>
6415 M:      Michael Ellerman <mpe@ellerman.id.au>
6416 W:      http://www.penguinppc.org/
6417 L:      linuxppc-dev@lists.ozlabs.org
6418 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
6419 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
6420 S:      Supported
6421 F:      Documentation/powerpc/
6422 F:      arch/powerpc/
6423
6424 LINUX FOR POWER MACINTOSH
6425 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6426 W:      http://www.penguinppc.org/
6427 L:      linuxppc-dev@lists.ozlabs.org
6428 S:      Maintained
6429 F:      arch/powerpc/platforms/powermac/
6430 F:      drivers/macintosh/
6431
6432 LINUX FOR POWERPC EMBEDDED MPC5XXX
6433 M:      Anatolij Gustschin <agust@denx.de>
6434 L:      linuxppc-dev@lists.ozlabs.org
6435 T:      git git://git.denx.de/linux-denx-agust.git
6436 S:      Maintained
6437 F:      arch/powerpc/platforms/512x/
6438 F:      arch/powerpc/platforms/52xx/
6439
6440 LINUX FOR POWERPC EMBEDDED PPC4XX
6441 M:      Alistair Popple <alistair@popple.id.au>
6442 M:      Matt Porter <mporter@kernel.crashing.org>
6443 W:      http://www.penguinppc.org/
6444 L:      linuxppc-dev@lists.ozlabs.org
6445 S:      Maintained
6446 F:      arch/powerpc/platforms/40x/
6447 F:      arch/powerpc/platforms/44x/
6448
6449 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
6450 L:      linuxppc-dev@lists.ozlabs.org
6451 S:      Orphan
6452 F:      arch/powerpc/*/*virtex*
6453 F:      arch/powerpc/*/*/*virtex*
6454
6455 LINUX FOR POWERPC EMBEDDED PPC8XX
6456 M:      Vitaly Bordug <vitb@kernel.crashing.org>
6457 W:      http://www.penguinppc.org/
6458 L:      linuxppc-dev@lists.ozlabs.org
6459 S:      Maintained
6460 F:      arch/powerpc/platforms/8xx/
6461
6462 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
6463 M:      Scott Wood <oss@buserror.net>
6464 M:      Kumar Gala <galak@kernel.crashing.org>
6465 W:      http://www.penguinppc.org/
6466 L:      linuxppc-dev@lists.ozlabs.org
6467 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
6468 S:      Maintained
6469 F:      arch/powerpc/platforms/83xx/
6470 F:      arch/powerpc/platforms/85xx/
6471
6472 LINUX FOR POWERPC PA SEMI PWRFICIENT
6473 M:      Olof Johansson <olof@lixom.net>
6474 L:      linuxppc-dev@lists.ozlabs.org
6475 S:      Maintained
6476 F:      arch/powerpc/platforms/pasemi/
6477 F:      drivers/*/*pasemi*
6478 F:      drivers/*/*/*pasemi*
6479
6480 LINUX SECURITY MODULE (LSM) FRAMEWORK
6481 M:      Chris Wright <chrisw@sous-sol.org>
6482 L:      linux-security-module@vger.kernel.org
6483 S:      Supported
6484
6485 LIS3LV02D ACCELEROMETER DRIVER
6486 M:      Eric Piel <eric.piel@tremplin-utc.net>
6487 S:      Maintained
6488 F:      Documentation/misc-devices/lis3lv02d
6489 F:      drivers/misc/lis3lv02d/
6490 F:      drivers/platform/x86/hp_accel.c
6491
6492 LIVE PATCHING
6493 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6494 M:      Seth Jennings <sjenning@redhat.com>
6495 M:      Jiri Kosina <jikos@kernel.org>
6496 M:      Vojtech Pavlik <vojtech@suse.com>
6497 S:      Maintained
6498 F:      kernel/livepatch/
6499 F:      include/linux/livepatch.h
6500 F:      arch/x86/include/asm/livepatch.h
6501 F:      arch/x86/kernel/livepatch.c
6502 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
6503 F:      samples/livepatch/
6504 L:      live-patching@vger.kernel.org
6505 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
6506
6507 LLC (802.2)
6508 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
6509 S:      Maintained
6510 F:      include/linux/llc.h
6511 F:      include/uapi/linux/llc.h
6512 F:      include/net/llc*
6513 F:      net/llc/
6514
6515 LM73 HARDWARE MONITOR DRIVER
6516 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
6517 L:      lm-sensors@lm-sensors.org
6518 S:      Maintained
6519 F:      drivers/hwmon/lm73.c
6520
6521 LM78 HARDWARE MONITOR DRIVER
6522 M:      Jean Delvare <jdelvare@suse.com>
6523 L:      lm-sensors@lm-sensors.org
6524 S:      Maintained
6525 F:      Documentation/hwmon/lm78
6526 F:      drivers/hwmon/lm78.c
6527
6528 LM83 HARDWARE MONITOR DRIVER
6529 M:      Jean Delvare <jdelvare@suse.com>
6530 L:      lm-sensors@lm-sensors.org
6531 S:      Maintained
6532 F:      Documentation/hwmon/lm83
6533 F:      drivers/hwmon/lm83.c
6534
6535 LM90 HARDWARE MONITOR DRIVER
6536 M:      Jean Delvare <jdelvare@suse.com>
6537 L:      lm-sensors@lm-sensors.org
6538 S:      Maintained
6539 F:      Documentation/hwmon/lm90
6540 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
6541 F:      drivers/hwmon/lm90.c
6542
6543 LM95234 HARDWARE MONITOR DRIVER
6544 M:      Guenter Roeck <linux@roeck-us.net>
6545 L:      lm-sensors@lm-sensors.org
6546 S:      Maintained
6547 F:      Documentation/hwmon/lm95234
6548 F:      drivers/hwmon/lm95234.c
6549
6550 LME2510 MEDIA DRIVER
6551 M:      Malcolm Priestley <tvboxspy@gmail.com>
6552 L:      linux-media@vger.kernel.org
6553 W:      https://linuxtv.org
6554 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6555 S:      Maintained
6556 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
6557
6558 LOCKDEP AND LOCKSTAT
6559 M:      Peter Zijlstra <peterz@infradead.org>
6560 M:      Ingo Molnar <mingo@redhat.com>
6561 L:      linux-kernel@vger.kernel.org
6562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
6563 S:      Maintained
6564 F:      Documentation/locking/lockdep*.txt
6565 F:      Documentation/locking/lockstat.txt
6566 F:      include/linux/lockdep.h
6567 F:      kernel/locking/
6568
6569 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
6570 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
6571 L:      linux-ntfs-dev@lists.sourceforge.net
6572 W:      http://www.linux-ntfs.org/content/view/19/37/
6573 S:      Maintained
6574 F:      Documentation/ldm.txt
6575 F:      block/partitions/ldm.*
6576
6577 LogFS
6578 M:      Joern Engel <joern@logfs.org>
6579 M:      Prasad Joshi <prasadjoshi.linux@gmail.com>
6580 L:      logfs@logfs.org
6581 W:      logfs.org
6582 S:      Maintained
6583 F:      fs/logfs/
6584
6585 LPC32XX MACHINE SUPPORT
6586 M:      Roland Stigge <stigge@antcom.de>
6587 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6588 S:      Maintained
6589 F:      arch/arm/mach-lpc32xx/
6590
6591 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
6592 M:      Nagalakshmi Nandigama <nagalakshmi.nandigama@avagotech.com>
6593 M:      Praveen Krishnamoorthy <praveen.krishnamoorthy@avagotech.com>
6594 M:      Sreekanth Reddy <sreekanth.reddy@avagotech.com>
6595 M:      Abhijit Mahajan <abhijit.mahajan@avagotech.com>
6596 L:      MPT-FusionLinux.pdl@avagotech.com
6597 L:      linux-scsi@vger.kernel.org
6598 W:      http://www.lsilogic.com/support
6599 S:      Supported
6600 F:      drivers/message/fusion/
6601 F:      drivers/scsi/mpt2sas/
6602 F:      drivers/scsi/mpt3sas/
6603
6604 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
6605 M:      Matthew Wilcox <matthew@wil.cx>
6606 L:      linux-scsi@vger.kernel.org
6607 S:      Maintained
6608 F:      drivers/scsi/sym53c8xx_2/
6609
6610 LTC4261 HARDWARE MONITOR DRIVER
6611 M:      Guenter Roeck <linux@roeck-us.net>
6612 L:      lm-sensors@lm-sensors.org
6613 S:      Maintained
6614 F:      Documentation/hwmon/ltc4261
6615 F:      drivers/hwmon/ltc4261.c
6616
6617 LTP (Linux Test Project)
6618 M:      Mike Frysinger <vapier@gentoo.org>
6619 M:      Cyril Hrubis <chrubis@suse.cz>
6620 M:      Wanlong Gao <wanlong.gao@gmail.com>
6621 M:      Jan Stancek <jstancek@redhat.com>
6622 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
6623 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
6624 L:      ltp@lists.linux.it (subscribers-only)
6625 W:      http://linux-test-project.github.io/
6626 T:      git git://github.com/linux-test-project/ltp.git
6627 S:      Maintained
6628
6629 M32R ARCHITECTURE
6630 W:      http://www.linux-m32r.org/
6631 S:      Orphan
6632 F:      arch/m32r/
6633
6634 M68K ARCHITECTURE
6635 M:      Geert Uytterhoeven <geert@linux-m68k.org>
6636 L:      linux-m68k@lists.linux-m68k.org
6637 W:      http://www.linux-m68k.org/
6638 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
6639 S:      Maintained
6640 F:      arch/m68k/
6641 F:      drivers/zorro/
6642
6643 M68K ON APPLE MACINTOSH
6644 M:      Joshua Thompson <funaho@jurai.org>
6645 W:      http://www.mac.linux-m68k.org/
6646 L:      linux-m68k@lists.linux-m68k.org
6647 S:      Maintained
6648 F:      arch/m68k/mac/
6649
6650 M68K ON HP9000/300
6651 M:      Philip Blundell <philb@gnu.org>
6652 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
6653 S:      Maintained
6654 F:      arch/m68k/hp300/
6655
6656 M88DS3103 MEDIA DRIVER
6657 M:      Antti Palosaari <crope@iki.fi>
6658 L:      linux-media@vger.kernel.org
6659 W:      https://linuxtv.org
6660 W:      http://palosaari.fi/linux/
6661 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6662 T:      git git://linuxtv.org/anttip/media_tree.git
6663 S:      Maintained
6664 F:      drivers/media/dvb-frontends/m88ds3103*
6665
6666 M88RS2000 MEDIA DRIVER
6667 M:      Malcolm Priestley <tvboxspy@gmail.com>
6668 L:      linux-media@vger.kernel.org
6669 W:      https://linuxtv.org
6670 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6671 S:      Maintained
6672 F:      drivers/media/dvb-frontends/m88rs2000*
6673
6674 MA901 MASTERKIT USB FM RADIO DRIVER
6675 M:      Alexey Klimov <klimov.linux@gmail.com>
6676 L:      linux-media@vger.kernel.org
6677 T:      git git://linuxtv.org/media_tree.git
6678 S:      Maintained
6679 F:      drivers/media/radio/radio-ma901.c
6680
6681 MAC80211
6682 M:      Johannes Berg <johannes@sipsolutions.net>
6683 L:      linux-wireless@vger.kernel.org
6684 W:      http://wireless.kernel.org/
6685 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6686 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
6687 S:      Maintained
6688 F:      Documentation/networking/mac80211-injection.txt
6689 F:      include/net/mac80211.h
6690 F:      net/mac80211/
6691
6692 MACVLAN DRIVER
6693 M:      Patrick McHardy <kaber@trash.net>
6694 L:      netdev@vger.kernel.org
6695 S:      Maintained
6696 F:      drivers/net/macvlan.c
6697 F:      include/linux/if_macvlan.h
6698
6699 MAILBOX API
6700 M:      Jassi Brar <jassisinghbrar@gmail.com>
6701 L:      linux-kernel@vger.kernel.org
6702 S:      Maintained
6703 F:      drivers/mailbox/
6704 F:      include/linux/mailbox_client.h
6705 F:      include/linux/mailbox_controller.h
6706
6707 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
6708 M:      Michael Kerrisk <mtk.manpages@gmail.com>
6709 W:      http://www.kernel.org/doc/man-pages
6710 L:      linux-man@vger.kernel.org
6711 S:      Maintained
6712
6713 MARVELL ARMADA DRM SUPPORT
6714 M:      Russell King <rmk+kernel@arm.linux.org.uk>
6715 S:      Maintained
6716 F:      drivers/gpu/drm/armada/
6717
6718 MARVELL 88E6352 DSA support
6719 M:      Guenter Roeck <linux@roeck-us.net>
6720 S:      Maintained
6721 F:      drivers/net/dsa/mv88e6352.c
6722
6723 MARVELL CRYPTO DRIVER
6724 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
6725 M:      Arnaud Ebalard <arno@natisbad.org>
6726 F:      drivers/crypto/marvell/
6727 S:      Maintained
6728 L:      linux-crypto@vger.kernel.org
6729
6730 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
6731 M:      Mirko Lindner <mlindner@marvell.com>
6732 M:      Stephen Hemminger <stephen@networkplumber.org>
6733 L:      netdev@vger.kernel.org
6734 S:      Maintained
6735 F:      drivers/net/ethernet/marvell/sk*
6736
6737 MARVELL LIBERTAS WIRELESS DRIVER
6738 L:      libertas-dev@lists.infradead.org
6739 S:      Orphan
6740 F:      drivers/net/wireless/marvell/libertas/
6741
6742 MARVELL MV643XX ETHERNET DRIVER
6743 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
6744 L:      netdev@vger.kernel.org
6745 S:      Maintained
6746 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
6747 F:      include/linux/mv643xx.h
6748
6749 MARVELL MVNETA ETHERNET DRIVER
6750 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
6751 L:      netdev@vger.kernel.org
6752 S:      Maintained
6753 F:      drivers/net/ethernet/marvell/mvneta.*
6754
6755 MARVELL MWIFIEX WIRELESS DRIVER
6756 M:      Amitkumar Karwar <akarwar@marvell.com>
6757 M:      Nishant Sarmukadam <nishants@marvell.com>
6758 L:      linux-wireless@vger.kernel.org
6759 S:      Maintained
6760 F:      drivers/net/wireless/marvell/mwifiex/
6761
6762 MARVELL MWL8K WIRELESS DRIVER
6763 M:      Lennert Buytenhek <buytenh@wantstofly.org>
6764 L:      linux-wireless@vger.kernel.org
6765 S:      Odd Fixes
6766 F:      drivers/net/wireless/marvell/mwl8k.c
6767
6768 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
6769 M:      Nicolas Pitre <nico@fluxnic.net>
6770 S:      Odd Fixes
6771 F:      drivers/mmc/host/mvsdio.*
6772
6773 MATROX FRAMEBUFFER DRIVER
6774 L:      linux-fbdev@vger.kernel.org
6775 S:      Orphan
6776 F:      drivers/video/fbdev/matrox/matroxfb_*
6777 F:      include/uapi/linux/matroxfb.h
6778
6779 MAX16065 HARDWARE MONITOR DRIVER
6780 M:      Guenter Roeck <linux@roeck-us.net>
6781 L:      lm-sensors@lm-sensors.org
6782 S:      Maintained
6783 F:      Documentation/hwmon/max16065
6784 F:      drivers/hwmon/max16065.c
6785
6786 MAX20751 HARDWARE MONITOR DRIVER
6787 M:      Guenter Roeck <linux@roeck-us.net>
6788 L:      lm-sensors@lm-sensors.org
6789 S:      Maintained
6790 F:      Documentation/hwmon/max20751
6791 F:      drivers/hwmon/max20751.c
6792
6793 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6794 M:      "Hans J. Koch" <hjk@hansjkoch.de>
6795 L:      lm-sensors@lm-sensors.org
6796 S:      Maintained
6797 F:      Documentation/hwmon/max6650
6798 F:      drivers/hwmon/max6650.c
6799
6800 MAX6697 HARDWARE MONITOR DRIVER
6801 M:      Guenter Roeck <linux@roeck-us.net>
6802 L:      lm-sensors@lm-sensors.org
6803 S:      Maintained
6804 F:      Documentation/hwmon/max6697
6805 F:      Documentation/devicetree/bindings/i2c/max6697.txt
6806 F:      drivers/hwmon/max6697.c
6807 F:      include/linux/platform_data/max6697.h
6808
6809 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
6810 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6811 L:      linux-pm@vger.kernel.org
6812 S:      Supported
6813 F:      drivers/power/max14577_charger.c
6814 F:      drivers/power/max77693_charger.c
6815
6816 MAXIM MAX77802 MULTIFUNCTION PMIC DEVICE DRIVERS
6817 M:      Javier Martinez Canillas <javier@osg.samsung.com>
6818 L:      linux-kernel@vger.kernel.org
6819 S:      Supported
6820 F:      drivers/*/*max77802.c
6821 F:      Documentation/devicetree/bindings/*/*max77802.txt
6822 F:      include/dt-bindings/*/*max77802.h
6823
6824 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
6825 M:      Chanwoo Choi <cw00.choi@samsung.com>
6826 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6827 L:      linux-kernel@vger.kernel.org
6828 S:      Supported
6829 F:      drivers/*/max14577.c
6830 F:      drivers/*/max77686.c
6831 F:      drivers/*/max77693.c
6832 F:      drivers/extcon/extcon-max14577.c
6833 F:      drivers/extcon/extcon-max77693.c
6834 F:      drivers/rtc/rtc-max77686.c
6835 F:      drivers/clk/clk-max77686.c
6836 F:      Documentation/devicetree/bindings/mfd/max14577.txt
6837 F:      Documentation/devicetree/bindings/*/max77686.txt
6838 F:      Documentation/devicetree/bindings/mfd/max77693.txt
6839 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
6840 F:      include/linux/mfd/max14577*.h
6841 F:      include/linux/mfd/max77686*.h
6842 F:      include/linux/mfd/max77693*.h
6843
6844 MAXIRADIO FM RADIO RECEIVER DRIVER
6845 M:      Hans Verkuil <hverkuil@xs4all.nl>
6846 L:      linux-media@vger.kernel.org
6847 T:      git git://linuxtv.org/media_tree.git
6848 W:      https://linuxtv.org
6849 S:      Maintained
6850 F:      drivers/media/radio/radio-maxiradio*
6851
6852 MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVER
6853 M:      Peter Rosin <peda@axentia.se>
6854 L:      linux-iio@vger.kernel.org
6855 S:      Maintained
6856 F:      drivers/iio/potentiometer/mcp4531.c
6857
6858 MEDIA DRIVERS FOR RENESAS - VSP1
6859 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6860 L:      linux-media@vger.kernel.org
6861 L:      linux-sh@vger.kernel.org
6862 T:      git git://linuxtv.org/media_tree.git
6863 S:      Supported
6864 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
6865 F:      drivers/media/platform/vsp1/
6866
6867 MEDIA DRIVERS FOR ASCOT2E
6868 M:      Sergey Kozlov <serjk@netup.ru>
6869 L:      linux-media@vger.kernel.org
6870 W:      https://linuxtv.org
6871 W:      http://netup.tv/
6872 T:      git git://linuxtv.org/media_tree.git
6873 S:      Supported
6874 F:      drivers/media/dvb-frontends/ascot2e*
6875
6876 MEDIA DRIVERS FOR CXD2841ER
6877 M:      Sergey Kozlov <serjk@netup.ru>
6878 L:      linux-media@vger.kernel.org
6879 W:      https://linuxtv.org
6880 W:      http://netup.tv/
6881 T:      git git://linuxtv.org/media_tree.git
6882 S:      Supported
6883 F:      drivers/media/dvb-frontends/cxd2841er*
6884
6885 MEDIA DRIVERS FOR HORUS3A
6886 M:      Sergey Kozlov <serjk@netup.ru>
6887 L:      linux-media@vger.kernel.org
6888 W:      https://linuxtv.org
6889 W:      http://netup.tv/
6890 T:      git git://linuxtv.org/media_tree.git
6891 S:      Supported
6892 F:      drivers/media/dvb-frontends/horus3a*
6893
6894 MEDIA DRIVERS FOR LNBH25
6895 M:      Sergey Kozlov <serjk@netup.ru>
6896 L:      linux-media@vger.kernel.org
6897 W:      https://linuxtv.org
6898 W:      http://netup.tv/
6899 T:      git git://linuxtv.org/media_tree.git
6900 S:      Supported
6901 F:      drivers/media/dvb-frontends/lnbh25*
6902
6903 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
6904 M:      Sergey Kozlov <serjk@netup.ru>
6905 L:      linux-media@vger.kernel.org
6906 W:      https://linuxtv.org
6907 W:      http://netup.tv/
6908 T:      git git://linuxtv.org/media_tree.git
6909 S:      Supported
6910 F:      drivers/media/pci/netup_unidvb/*
6911
6912 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
6913 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
6914 P:      LinuxTV.org Project
6915 L:      linux-media@vger.kernel.org
6916 W:      https://linuxtv.org
6917 Q:      http://patchwork.kernel.org/project/linux-media/list/
6918 T:      git git://linuxtv.org/media_tree.git
6919 S:      Maintained
6920 F:      Documentation/dvb/
6921 F:      Documentation/video4linux/
6922 F:      Documentation/DocBook/media/
6923 F:      drivers/media/
6924 F:      drivers/staging/media/
6925 F:      include/linux/platform_data/media/
6926 F:      include/media/
6927 F:      include/uapi/linux/dvb/
6928 F:      include/uapi/linux/videodev2.h
6929 F:      include/uapi/linux/media.h
6930 F:      include/uapi/linux/v4l2-*
6931 F:      include/uapi/linux/meye.h
6932 F:      include/uapi/linux/ivtv*
6933 F:      include/uapi/linux/uvcvideo.h
6934
6935 MEDIATEK MT7601U WIRELESS LAN DRIVER
6936 M:      Jakub Kicinski <kubakici@wp.pl>
6937 L:      linux-wireless@vger.kernel.org
6938 S:      Maintained
6939 F:      drivers/net/wireless/mediatek/mt7601u/
6940
6941 MEGARAID SCSI/SAS DRIVERS
6942 M:      Kashyap Desai <kashyap.desai@avagotech.com>
6943 M:      Sumit Saxena <sumit.saxena@avagotech.com>
6944 M:      Uday Lingala <uday.lingala@avagotech.com>
6945 L:      megaraidlinux.pdl@avagotech.com
6946 L:      linux-scsi@vger.kernel.org
6947 W:      http://www.lsi.com
6948 S:      Maintained
6949 F:      Documentation/scsi/megaraid.txt
6950 F:      drivers/scsi/megaraid.*
6951 F:      drivers/scsi/megaraid/
6952
6953 MELLANOX ETHERNET DRIVER (mlx4_en)
6954 M:      Eugenia Emantayev <eugenia@mellanox.com>
6955 L:      netdev@vger.kernel.org
6956 S:      Supported
6957 W:      http://www.mellanox.com
6958 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6959 F:      drivers/net/ethernet/mellanox/mlx4/en_*
6960
6961 MELLANOX ETHERNET DRIVER (mlx5e)
6962 M:      Saeed Mahameed <saeedm@mellanox.com>
6963 L:      netdev@vger.kernel.org
6964 S:      Supported
6965 W:      http://www.mellanox.com
6966 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6967 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
6968
6969 MELLANOX ETHERNET SWITCH DRIVERS
6970 M:      Jiri Pirko <jiri@mellanox.com>
6971 M:      Ido Schimmel <idosch@mellanox.com>
6972 L:      netdev@vger.kernel.org
6973 S:      Supported
6974 W:      http://www.mellanox.com
6975 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6976 F:      drivers/net/ethernet/mellanox/mlxsw/
6977
6978 MEMBARRIER SUPPORT
6979 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
6980 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
6981 L:      linux-kernel@vger.kernel.org
6982 S:      Supported
6983 F:      kernel/membarrier.c
6984 F:      include/uapi/linux/membarrier.h
6985
6986 MEMORY MANAGEMENT
6987 L:      linux-mm@kvack.org
6988 W:      http://www.linux-mm.org
6989 S:      Maintained
6990 F:      include/linux/mm.h
6991 F:      include/linux/gfp.h
6992 F:      include/linux/mmzone.h
6993 F:      include/linux/memory_hotplug.h
6994 F:      include/linux/vmalloc.h
6995 F:      mm/
6996
6997 MEMORY TECHNOLOGY DEVICES (MTD)
6998 M:      David Woodhouse <dwmw2@infradead.org>
6999 M:      Brian Norris <computersforpeace@gmail.com>
7000 L:      linux-mtd@lists.infradead.org
7001 W:      http://www.linux-mtd.infradead.org/
7002 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
7003 T:      git git://git.infradead.org/linux-mtd.git
7004 T:      git git://git.infradead.org/l2-mtd.git
7005 S:      Maintained
7006 F:      drivers/mtd/
7007 F:      include/linux/mtd/
7008 F:      include/uapi/mtd/
7009
7010 MEN A21 WATCHDOG DRIVER
7011 M:      Johannes Thumshirn <morbidrsa@gmail.com>
7012 L:      linux-watchdog@vger.kernel.org
7013 S:      Maintained
7014 F:      drivers/watchdog/mena21_wdt.c
7015
7016 MEN CHAMELEON BUS (mcb)
7017 M:      Johannes Thumshirn <morbidrsa@gmail.com>
7018 S:      Maintained
7019 F:      drivers/mcb/
7020 F:      include/linux/mcb.h
7021 F:      Documentation/men-chameleon-bus.txt
7022
7023 MEN F21BMC (Board Management Controller)
7024 M:      Andreas Werner <andreas.werner@men.de>
7025 S:      Supported
7026 F:      drivers/mfd/menf21bmc.c
7027 F:      drivers/watchdog/menf21bmc_wdt.c
7028 F:      drivers/leds/leds-menf21bmc.c
7029 F:      drivers/hwmon/menf21bmc_hwmon.c
7030 F:      Documentation/hwmon/menf21bmc
7031
7032 METAG ARCHITECTURE
7033 M:      James Hogan <james.hogan@imgtec.com>
7034 L:      linux-metag@vger.kernel.org
7035 S:      Odd Fixes
7036 F:      arch/metag/
7037 F:      Documentation/metag/
7038 F:      Documentation/devicetree/bindings/metag/
7039 F:      Documentation/devicetree/bindings/interrupt-controller/img,*
7040 F:      drivers/clocksource/metag_generic.c
7041 F:      drivers/irqchip/irq-metag.c
7042 F:      drivers/irqchip/irq-metag-ext.c
7043 F:      drivers/tty/metag_da.c
7044
7045 MICROBLAZE ARCHITECTURE
7046 M:      Michal Simek <monstr@monstr.eu>
7047 W:      http://www.monstr.eu/fdt/
7048 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
7049 S:      Supported
7050 F:      arch/microblaze/
7051
7052 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
7053 M:      Chen Yu <yu.c.chen@intel.com>
7054 L:      platform-driver-x86@vger.kernel.org
7055 S:      Supported
7056 F:      drivers/platform/x86/surfacepro3_button.c
7057
7058 MICROTEK X6 SCANNER
7059 M:      Oliver Neukum <oliver@neukum.org>
7060 S:      Maintained
7061 F:      drivers/usb/image/microtek.*
7062
7063 MIPS
7064 M:      Ralf Baechle <ralf@linux-mips.org>
7065 L:      linux-mips@linux-mips.org
7066 W:      http://www.linux-mips.org/
7067 T:      git git://git.linux-mips.org/pub/scm/ralf/linux.git
7068 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
7069 S:      Supported
7070 F:      Documentation/mips/
7071 F:      arch/mips/
7072
7073 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
7074 M:      Hans Verkuil <hverkuil@xs4all.nl>
7075 L:      linux-media@vger.kernel.org
7076 T:      git git://linuxtv.org/media_tree.git
7077 W:      https://linuxtv.org
7078 S:      Odd Fixes
7079 F:      drivers/media/radio/radio-miropcm20*
7080
7081 Mellanox MLX5 core VPI driver
7082 M:      Eli Cohen <eli@mellanox.com>
7083 L:      netdev@vger.kernel.org
7084 L:      linux-rdma@vger.kernel.org
7085 W:      http://www.mellanox.com
7086 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7087 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
7088 T:      git git://openfabrics.org/~eli/connect-ib.git
7089 S:      Supported
7090 F:      drivers/net/ethernet/mellanox/mlx5/core/
7091 F:      include/linux/mlx5/
7092
7093 Mellanox MLX5 IB driver
7094 M:      Eli Cohen <eli@mellanox.com>
7095 L:      linux-rdma@vger.kernel.org
7096 W:      http://www.mellanox.com
7097 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
7098 T:      git git://openfabrics.org/~eli/connect-ib.git
7099 S:      Supported
7100 F:      include/linux/mlx5/
7101 F:      drivers/infiniband/hw/mlx5/
7102
7103 MELEXIS MLX90614 DRIVER
7104 M:      Crt Mori <cmo@melexis.com>
7105 L:      linux-iio@vger.kernel.org
7106 W:      http://www.melexis.com
7107 S:      Supported
7108 F:      drivers/iio/temperature/mlx90614.c
7109
7110 MN88472 MEDIA DRIVER
7111 M:      Antti Palosaari <crope@iki.fi>
7112 L:      linux-media@vger.kernel.org
7113 W:      https://linuxtv.org
7114 W:      http://palosaari.fi/linux/
7115 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7116 T:      git git://linuxtv.org/anttip/media_tree.git
7117 S:      Maintained
7118 F:      drivers/staging/media/mn88472/
7119 F:      drivers/media/dvb-frontends/mn88472.h
7120
7121 MN88473 MEDIA DRIVER
7122 M:      Antti Palosaari <crope@iki.fi>
7123 L:      linux-media@vger.kernel.org
7124 W:      https://linuxtv.org
7125 W:      http://palosaari.fi/linux/
7126 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7127 T:      git git://linuxtv.org/anttip/media_tree.git
7128 S:      Maintained
7129 F:      drivers/staging/media/mn88473/
7130 F:      drivers/media/dvb-frontends/mn88473.h
7131
7132 MODULE SUPPORT
7133 M:      Rusty Russell <rusty@rustcorp.com.au>
7134 S:      Maintained
7135 F:      include/linux/module.h
7136 F:      kernel/module.c
7137
7138 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
7139 W:      http://popies.net/meye/
7140 S:      Orphan
7141 F:      Documentation/video4linux/meye.txt
7142 F:      drivers/media/pci/meye/
7143 F:      include/uapi/linux/meye.h
7144
7145 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
7146 M:      Jiri Slaby <jirislaby@gmail.com>
7147 S:      Maintained
7148 F:      Documentation/serial/moxa-smartio
7149 F:      drivers/tty/mxser.*
7150
7151 MR800 AVERMEDIA USB FM RADIO DRIVER
7152 M:      Alexey Klimov <klimov.linux@gmail.com>
7153 L:      linux-media@vger.kernel.org
7154 T:      git git://linuxtv.org/media_tree.git
7155 S:      Maintained
7156 F:      drivers/media/radio/radio-mr800.c
7157
7158 MRF24J40 IEEE 802.15.4 RADIO DRIVER
7159 M:      Alan Ott <alan@signal11.us>
7160 L:      linux-wpan@vger.kernel.org
7161 S:      Maintained
7162 F:      drivers/net/ieee802154/mrf24j40.c
7163 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
7164
7165 MSI LAPTOP SUPPORT
7166 M:      "Lee, Chun-Yi" <jlee@suse.com>
7167 L:      platform-driver-x86@vger.kernel.org
7168 S:      Maintained
7169 F:      drivers/platform/x86/msi-laptop.c
7170
7171 MSI WMI SUPPORT
7172 L:      platform-driver-x86@vger.kernel.org
7173 S:      Orphan
7174 F:      drivers/platform/x86/msi-wmi.c
7175
7176 MSI001 MEDIA DRIVER
7177 M:      Antti Palosaari <crope@iki.fi>
7178 L:      linux-media@vger.kernel.org
7179 W:      https://linuxtv.org
7180 W:      http://palosaari.fi/linux/
7181 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7182 T:      git git://linuxtv.org/anttip/media_tree.git
7183 S:      Maintained
7184 F:      drivers/media/tuners/msi001*
7185
7186 MSI2500 MEDIA DRIVER
7187 M:      Antti Palosaari <crope@iki.fi>
7188 L:      linux-media@vger.kernel.org
7189 W:      https://linuxtv.org
7190 W:      http://palosaari.fi/linux/
7191 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7192 T:      git git://linuxtv.org/anttip/media_tree.git
7193 S:      Maintained
7194 F:      drivers/media/usb/msi2500/
7195
7196 MSYSTEMS DISKONCHIP G3 MTD DRIVER
7197 M:      Robert Jarzmik <robert.jarzmik@free.fr>
7198 L:      linux-mtd@lists.infradead.org
7199 S:      Maintained
7200 F:      drivers/mtd/devices/docg3*
7201
7202 MT9M032 APTINA SENSOR DRIVER
7203 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7204 L:      linux-media@vger.kernel.org
7205 T:      git git://linuxtv.org/media_tree.git
7206 S:      Maintained
7207 F:      drivers/media/i2c/mt9m032.c
7208 F:      include/media/i2c/mt9m032.h
7209
7210 MT9P031 APTINA CAMERA SENSOR
7211 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7212 L:      linux-media@vger.kernel.org
7213 T:      git git://linuxtv.org/media_tree.git
7214 S:      Maintained
7215 F:      drivers/media/i2c/mt9p031.c
7216 F:      include/media/i2c/mt9p031.h
7217
7218 MT9T001 APTINA CAMERA SENSOR
7219 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7220 L:      linux-media@vger.kernel.org
7221 T:      git git://linuxtv.org/media_tree.git
7222 S:      Maintained
7223 F:      drivers/media/i2c/mt9t001.c
7224 F:      include/media/i2c/mt9t001.h
7225
7226 MT9V032 APTINA CAMERA SENSOR
7227 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7228 L:      linux-media@vger.kernel.org
7229 T:      git git://linuxtv.org/media_tree.git
7230 S:      Maintained
7231 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
7232 F:      drivers/media/i2c/mt9v032.c
7233 F:      include/media/i2c/mt9v032.h
7234
7235 MULTIFUNCTION DEVICES (MFD)
7236 M:      Lee Jones <lee.jones@linaro.org>
7237 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
7238 S:      Supported
7239 F:      drivers/mfd/
7240 F:      include/linux/mfd/
7241
7242 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
7243 M:      Ulf Hansson <ulf.hansson@linaro.org>
7244 L:      linux-mmc@vger.kernel.org
7245 T:      git git://git.linaro.org/people/ulf.hansson/mmc.git
7246 S:      Maintained
7247 F:      drivers/mmc/
7248 F:      include/linux/mmc/
7249 F:      include/uapi/linux/mmc/
7250
7251 MULTIMEDIA CARD (MMC) ETC. OVER SPI
7252 S:      Orphan
7253 F:      drivers/mmc/host/mmc_spi.c
7254 F:      include/linux/spi/mmc_spi.h
7255
7256 MULTISOUND SOUND DRIVER
7257 M:      Andrew Veliath <andrewtv@usa.net>
7258 S:      Maintained
7259 F:      Documentation/sound/oss/MultiSound
7260 F:      sound/oss/msnd*
7261
7262 MULTITECH MULTIPORT CARD (ISICOM)
7263 S:      Orphan
7264 F:      drivers/tty/isicom.c
7265 F:      include/linux/isicom.h
7266
7267 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
7268 M:      Felipe Balbi <balbi@ti.com>
7269 L:      linux-usb@vger.kernel.org
7270 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7271 S:      Maintained
7272 F:      drivers/usb/musb/
7273
7274 MXL5007T MEDIA DRIVER
7275 M:      Michael Krufky <mkrufky@linuxtv.org>
7276 L:      linux-media@vger.kernel.org
7277 W:      https://linuxtv.org
7278 W:      http://github.com/mkrufky
7279 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7280 T:      git git://linuxtv.org/mkrufky/tuners.git
7281 S:      Maintained
7282 F:      drivers/media/tuners/mxl5007t.*
7283
7284 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
7285 M:      Hyong-Youb Kim <hykim@myri.com>
7286 L:      netdev@vger.kernel.org
7287 W:      https://www.myricom.com/support/downloads/myri10ge.html
7288 S:      Supported
7289 F:      drivers/net/ethernet/myricom/myri10ge/
7290
7291 NATSEMI ETHERNET DRIVER (DP8381x)
7292 S:      Orphan
7293 F:      drivers/net/ethernet/natsemi/natsemi.c
7294
7295 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
7296 M:      Daniel Mack <zonque@gmail.com>
7297 S:      Maintained
7298 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7299 W:      http://www.native-instruments.com
7300 F:      sound/usb/caiaq/
7301
7302 NCP FILESYSTEM
7303 M:      Petr Vandrovec <petr@vandrovec.name>
7304 S:      Odd Fixes
7305 F:      fs/ncpfs/
7306
7307 NCR 5380 SCSI DRIVERS
7308 M:      Finn Thain <fthain@telegraphics.com.au>
7309 M:      Michael Schmitz <schmitzmic@gmail.com>
7310 L:      linux-scsi@vger.kernel.org
7311 S:      Maintained
7312 F:      Documentation/scsi/g_NCR5380.txt
7313 F:      drivers/scsi/NCR5380.*
7314 F:      drivers/scsi/arm/cumana_1.c
7315 F:      drivers/scsi/arm/oak.c
7316 F:      drivers/scsi/atari_NCR5380.c
7317 F:      drivers/scsi/atari_scsi.*
7318 F:      drivers/scsi/dmx3191d.c
7319 F:      drivers/scsi/dtc.*
7320 F:      drivers/scsi/g_NCR5380.*
7321 F:      drivers/scsi/g_NCR5380_mmio.c
7322 F:      drivers/scsi/mac_scsi.*
7323 F:      drivers/scsi/pas16.*
7324 F:      drivers/scsi/sun3_scsi.*
7325 F:      drivers/scsi/sun3_scsi_vme.c
7326 F:      drivers/scsi/t128.*
7327
7328 NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
7329 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
7330 L:      linux-scsi@vger.kernel.org
7331 S:      Maintained
7332 F:      drivers/scsi/NCR_D700.*
7333
7334 NCT6775 HARDWARE MONITOR DRIVER
7335 M:      Guenter Roeck <linux@roeck-us.net>
7336 L:      lm-sensors@lm-sensors.org
7337 S:      Maintained
7338 F:      Documentation/hwmon/nct6775
7339 F:      drivers/hwmon/nct6775.c
7340
7341 NETEFFECT IWARP RNIC DRIVER (IW_NES)
7342 M:      Faisal Latif <faisal.latif@intel.com>
7343 L:      linux-rdma@vger.kernel.org
7344 W:      http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
7345 S:      Supported
7346 F:      drivers/infiniband/hw/nes/
7347
7348 NETEM NETWORK EMULATOR
7349 M:      Stephen Hemminger <stephen@networkplumber.org>
7350 L:      netem@lists.linux-foundation.org
7351 S:      Maintained
7352 F:      net/sched/sch_netem.c
7353
7354 NETERION 10GbE DRIVERS (s2io/vxge)
7355 M:      Jon Mason <jdmason@kudzu.us>
7356 L:      netdev@vger.kernel.org
7357 S:      Supported
7358 F:      Documentation/networking/s2io.txt
7359 F:      Documentation/networking/vxge.txt
7360 F:      drivers/net/ethernet/neterion/
7361
7362 NETFILTER ({IP,IP6,ARP,EB,NF}TABLES)
7363 M:      Pablo Neira Ayuso <pablo@netfilter.org>
7364 M:      Patrick McHardy <kaber@trash.net>
7365 M:      Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
7366 L:      netfilter-devel@vger.kernel.org
7367 L:      coreteam@netfilter.org
7368 W:      http://www.netfilter.org/
7369 W:      http://www.iptables.org/
7370 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
7371 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
7372 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
7373 S:      Supported
7374 F:      include/linux/netfilter*
7375 F:      include/linux/netfilter/
7376 F:      include/net/netfilter/
7377 F:      include/uapi/linux/netfilter*
7378 F:      include/uapi/linux/netfilter/
7379 F:      net/*/netfilter.c
7380 F:      net/*/netfilter/
7381 F:      net/netfilter/
7382 F:      net/bridge/br_netfilter*.c
7383
7384 NETLABEL
7385 M:      Paul Moore <paul@paul-moore.com>
7386 W:      http://netlabel.sf.net
7387 L:      netdev@vger.kernel.org
7388 S:      Maintained
7389 F:      Documentation/netlabel/
7390 F:      include/net/netlabel.h
7391 F:      net/netlabel/
7392
7393 NETROM NETWORK LAYER
7394 M:      Ralf Baechle <ralf@linux-mips.org>
7395 L:      linux-hams@vger.kernel.org
7396 W:      http://www.linux-ax25.org/
7397 S:      Maintained
7398 F:      include/net/netrom.h
7399 F:      include/uapi/linux/netrom.h
7400 F:      net/netrom/
7401
7402 NETRONOME ETHERNET DRIVERS
7403 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
7404 M:      Rolf Neugebauer <rolf.neugebauer@netronome.com>
7405 L:      oss-drivers@netronome.com
7406 S:      Maintained
7407 F:      drivers/net/ethernet/netronome/
7408
7409 NETWORK BLOCK DEVICE (NBD)
7410 M:      Markus Pargmann <mpa@pengutronix.de>
7411 S:      Maintained
7412 L:      nbd-general@lists.sourceforge.net
7413 T:      git git://git.pengutronix.de/git/mpa/linux-nbd.git
7414 F:      Documentation/blockdev/nbd.txt
7415 F:      drivers/block/nbd.c
7416 F:      include/uapi/linux/nbd.h
7417
7418 NETWORK DROP MONITOR
7419 M:      Neil Horman <nhorman@tuxdriver.com>
7420 L:      netdev@vger.kernel.org
7421 S:      Maintained
7422 W:      https://fedorahosted.org/dropwatch/
7423 F:      net/core/drop_monitor.c
7424
7425 NETWORKING [GENERAL]
7426 M:      "David S. Miller" <davem@davemloft.net>
7427 L:      netdev@vger.kernel.org
7428 W:      http://www.linuxfoundation.org/en/Net
7429 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7430 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7431 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7432 S:      Maintained
7433 F:      net/
7434 F:      include/net/
7435 F:      include/linux/in.h
7436 F:      include/linux/net.h
7437 F:      include/linux/netdevice.h
7438 F:      include/uapi/linux/in.h
7439 F:      include/uapi/linux/net.h
7440 F:      include/uapi/linux/netdevice.h
7441 F:      include/uapi/linux/net_namespace.h
7442 F:      tools/net/
7443 F:      tools/testing/selftests/net/
7444 F:      lib/random32.c
7445 F:      lib/test_bpf.c
7446
7447 NETWORKING [IPv4/IPv6]
7448 M:      "David S. Miller" <davem@davemloft.net>
7449 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
7450 M:      James Morris <jmorris@namei.org>
7451 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
7452 M:      Patrick McHardy <kaber@trash.net>
7453 L:      netdev@vger.kernel.org
7454 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7455 S:      Maintained
7456 F:      net/ipv4/
7457 F:      net/ipv6/
7458 F:      include/net/ip*
7459 F:      arch/x86/net/*
7460
7461 NETWORKING [IPSEC]
7462 M:      Steffen Klassert <steffen.klassert@secunet.com>
7463 M:      Herbert Xu <herbert@gondor.apana.org.au>
7464 M:      "David S. Miller" <davem@davemloft.net>
7465 L:      netdev@vger.kernel.org
7466 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
7467 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
7468 S:      Maintained
7469 F:      net/core/flow.c
7470 F:      net/xfrm/
7471 F:      net/key/
7472 F:      net/ipv4/xfrm*
7473 F:      net/ipv4/esp4.c
7474 F:      net/ipv4/ah4.c
7475 F:      net/ipv4/ipcomp.c
7476 F:      net/ipv4/ip_vti.c
7477 F:      net/ipv6/xfrm*
7478 F:      net/ipv6/esp6.c
7479 F:      net/ipv6/ah6.c
7480 F:      net/ipv6/ipcomp6.c
7481 F:      net/ipv6/ip6_vti.c
7482 F:      include/uapi/linux/xfrm.h
7483 F:      include/net/xfrm.h
7484
7485 NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
7486 M:      Paul Moore <paul@paul-moore.com>
7487 L:      netdev@vger.kernel.org
7488 S:      Maintained
7489
7490 NETWORKING [WIRELESS]
7491 L:      linux-wireless@vger.kernel.org
7492 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7493
7494 NETWORKING DRIVERS
7495 L:      netdev@vger.kernel.org
7496 W:      http://www.linuxfoundation.org/en/Net
7497 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7498 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7499 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7500 S:      Odd Fixes
7501 F:      drivers/net/
7502 F:      include/linux/if_*
7503 F:      include/linux/netdevice.h
7504 F:      include/linux/etherdevice.h
7505 F:      include/linux/fcdevice.h
7506 F:      include/linux/fddidevice.h
7507 F:      include/linux/hippidevice.h
7508 F:      include/linux/inetdevice.h
7509 F:      include/uapi/linux/if_*
7510 F:      include/uapi/linux/netdevice.h
7511
7512 NETWORKING DRIVERS (WIRELESS)
7513 M:      Kalle Valo <kvalo@codeaurora.org>
7514 L:      linux-wireless@vger.kernel.org
7515 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7516 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git/
7517 S:      Maintained
7518 F:      drivers/net/wireless/
7519
7520 NETXEN (1/10) GbE SUPPORT
7521 M:      Manish Chopra <manish.chopra@qlogic.com>
7522 M:      Sony Chacko <sony.chacko@qlogic.com>
7523 M:      Rajesh Borundia <rajesh.borundia@qlogic.com>
7524 L:      netdev@vger.kernel.org
7525 W:      http://www.qlogic.com
7526 S:      Supported
7527 F:      drivers/net/ethernet/qlogic/netxen/
7528
7529 NFC SUBSYSTEM
7530 M:      Lauro Ramos Venancio <lauro.venancio@openbossa.org>
7531 M:      Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
7532 M:      Samuel Ortiz <sameo@linux.intel.com>
7533 L:      linux-wireless@vger.kernel.org
7534 L:      linux-nfc@lists.01.org (subscribers-only)
7535 S:      Supported
7536 F:      net/nfc/
7537 F:      include/net/nfc/
7538 F:      include/uapi/linux/nfc.h
7539 F:      drivers/nfc/
7540 F:      include/linux/platform_data/microread.h
7541 F:      include/linux/platform_data/nfcmrvl.h
7542 F:      include/linux/platform_data/nxp-nci.h
7543 F:      include/linux/platform_data/pn544.h
7544 F:      include/linux/platform_data/st21nfca.h
7545 F:      include/linux/platform_data/st-nci.h
7546 F:      Documentation/devicetree/bindings/net/nfc/
7547
7548 NFS, SUNRPC, AND LOCKD CLIENTS
7549 M:      Trond Myklebust <trond.myklebust@primarydata.com>
7550 M:      Anna Schumaker <anna.schumaker@netapp.com>
7551 L:      linux-nfs@vger.kernel.org
7552 W:      http://client.linux-nfs.org
7553 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
7554 S:      Maintained
7555 F:      fs/lockd/
7556 F:      fs/nfs/
7557 F:      fs/nfs_common/
7558 F:      net/sunrpc/
7559 F:      include/linux/lockd/
7560 F:      include/linux/nfs*
7561 F:      include/linux/sunrpc/
7562 F:      include/uapi/linux/nfs*
7563 F:      include/uapi/linux/sunrpc/
7564
7565 NILFS2 FILESYSTEM
7566 M:      Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
7567 L:      linux-nilfs@vger.kernel.org
7568 W:      http://nilfs.sourceforge.net/
7569 T:      git git://github.com/konis/nilfs2.git
7570 S:      Supported
7571 F:      Documentation/filesystems/nilfs2.txt
7572 F:      fs/nilfs2/
7573 F:      include/linux/nilfs2_fs.h
7574 F:      include/trace/events/nilfs2.h
7575
7576 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
7577 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7578 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7579 S:      Maintained
7580 F:      Documentation/scsi/NinjaSCSI.txt
7581 F:      drivers/scsi/pcmcia/nsp_*
7582
7583 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
7584 M:      GOTO Masanori <gotom@debian.or.jp>
7585 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7586 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7587 S:      Maintained
7588 F:      Documentation/scsi/NinjaSCSI.txt
7589 F:      drivers/scsi/nsp32*
7590
7591 NIOS2 ARCHITECTURE
7592 M:      Ley Foon Tan <lftan@altera.com>
7593 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
7594 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
7595 S:      Maintained
7596 F:      arch/nios2/
7597
7598 NOKIA N900 POWER SUPPLY DRIVERS
7599 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
7600 S:      Maintained
7601 F:      include/linux/power/bq2415x_charger.h
7602 F:      include/linux/power/bq27xxx_battery.h
7603 F:      include/linux/power/isp1704_charger.h
7604 F:      drivers/power/bq2415x_charger.c
7605 F:      drivers/power/bq27xxx_battery.c
7606 F:      drivers/power/isp1704_charger.c
7607 F:      drivers/power/rx51_battery.c
7608
7609 NTB DRIVER CORE
7610 M:      Jon Mason <jdmason@kudzu.us>
7611 M:      Dave Jiang <dave.jiang@intel.com>
7612 M:      Allen Hubbe <Allen.Hubbe@emc.com>
7613 L:      linux-ntb@googlegroups.com
7614 S:      Supported
7615 W:      https://github.com/jonmason/ntb/wiki
7616 T:      git git://github.com/jonmason/ntb.git
7617 F:      drivers/ntb/
7618 F:      drivers/net/ntb_netdev.c
7619 F:      include/linux/ntb.h
7620 F:      include/linux/ntb_transport.h
7621
7622 NTB INTEL DRIVER
7623 M:      Jon Mason <jdmason@kudzu.us>
7624 M:      Dave Jiang <dave.jiang@intel.com>
7625 L:      linux-ntb@googlegroups.com
7626 S:      Supported
7627 W:      https://github.com/jonmason/ntb/wiki
7628 T:      git git://github.com/jonmason/ntb.git
7629 F:      drivers/ntb/hw/intel/
7630
7631 NTFS FILESYSTEM
7632 M:      Anton Altaparmakov <anton@tuxera.com>
7633 L:      linux-ntfs-dev@lists.sourceforge.net
7634 W:      http://www.tuxera.com/
7635 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
7636 S:      Supported
7637 F:      Documentation/filesystems/ntfs.txt
7638 F:      fs/ntfs/
7639
7640 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
7641 M:      Antonino Daplas <adaplas@gmail.com>
7642 L:      linux-fbdev@vger.kernel.org
7643 S:      Maintained
7644 F:      drivers/video/fbdev/riva/
7645 F:      drivers/video/fbdev/nvidia/
7646
7647 NVM EXPRESS DRIVER
7648 M:      Keith Busch <keith.busch@intel.com>
7649 M:      Jens Axboe <axboe@fb.com>
7650 L:      linux-nvme@lists.infradead.org
7651 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
7652 W:      https://kernel.googlesource.com/pub/scm/linux/kernel/git/axboe/linux-block/
7653 S:      Supported
7654 F:      drivers/nvme/host/
7655 F:      include/linux/nvme.h
7656
7657 NVMEM FRAMEWORK
7658 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
7659 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
7660 S:      Maintained
7661 F:      drivers/nvmem/
7662 F:      Documentation/devicetree/bindings/nvmem/
7663 F:      include/linux/nvmem-consumer.h
7664 F:      include/linux/nvmem-provider.h
7665
7666 NXP-NCI NFC DRIVER
7667 M:      ClĂ©ment Perrochaud <clement.perrochaud@effinnov.com>
7668 R:      Charles Gorand <charles.gorand@effinnov.com>
7669 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
7670 S:      Supported
7671 F:      drivers/nfc/nxp-nci
7672
7673 NXP TDA998X DRM DRIVER
7674 M:      Russell King <rmk+kernel@arm.linux.org.uk>
7675 S:      Supported
7676 F:      drivers/gpu/drm/i2c/tda998x_drv.c
7677 F:      include/drm/i2c/tda998x.h
7678
7679 NXP TFA9879 DRIVER
7680 M:      Peter Rosin <peda@axentia.se>
7681 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7682 S:      Maintained
7683 F:      sound/soc/codecs/tfa9879*
7684
7685 OMAP SUPPORT
7686 M:      Tony Lindgren <tony@atomide.com>
7687 L:      linux-omap@vger.kernel.org
7688 W:      http://www.muru.com/linux/omap/
7689 W:      http://linux.omap.com/
7690 Q:      http://patchwork.kernel.org/project/linux-omap/list/
7691 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
7692 S:      Maintained
7693 F:      arch/arm/*omap*/
7694 F:      arch/arm/configs/omap1_defconfig
7695 F:      arch/arm/configs/omap2plus_defconfig
7696 F:      drivers/i2c/busses/i2c-omap.c
7697 F:      drivers/irqchip/irq-omap-intc.c
7698 F:      drivers/mfd/*omap*.c
7699 F:      drivers/mfd/menelaus.c
7700 F:      drivers/mfd/palmas.c
7701 F:      drivers/mfd/tps65217.c
7702 F:      drivers/mfd/tps65218.c
7703 F:      drivers/mfd/tps65910.c
7704 F:      drivers/mfd/twl-core.[ch]
7705 F:      drivers/mfd/twl4030*.c
7706 F:      drivers/mfd/twl6030*.c
7707 F:      drivers/mfd/twl6040*.c
7708 F:      drivers/regulator/palmas-regulator*.c
7709 F:      drivers/regulator/pbias-regulator.c
7710 F:      drivers/regulator/tps65217-regulator.c
7711 F:      drivers/regulator/tps65218-regulator.c
7712 F:      drivers/regulator/tps65910-regulator.c
7713 F:      drivers/regulator/twl-regulator.c
7714 F:      include/linux/i2c-omap.h
7715
7716 OMAP DEVICE TREE SUPPORT
7717 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7718 M:      Tony Lindgren <tony@atomide.com>
7719 L:      linux-omap@vger.kernel.org
7720 L:      devicetree@vger.kernel.org
7721 S:      Maintained
7722 F:      arch/arm/boot/dts/*omap*
7723 F:      arch/arm/boot/dts/*am3*
7724 F:      arch/arm/boot/dts/*am4*
7725 F:      arch/arm/boot/dts/*am5*
7726 F:      arch/arm/boot/dts/*dra7*
7727
7728 OMAP CLOCK FRAMEWORK SUPPORT
7729 M:      Paul Walmsley <paul@pwsan.com>
7730 L:      linux-omap@vger.kernel.org
7731 S:      Maintained
7732 F:      arch/arm/*omap*/*clock*
7733
7734 OMAP POWER MANAGEMENT SUPPORT
7735 M:      Kevin Hilman <khilman@deeprootsystems.com>
7736 L:      linux-omap@vger.kernel.org
7737 S:      Maintained
7738 F:      arch/arm/*omap*/*pm*
7739 F:      drivers/cpufreq/omap-cpufreq.c
7740
7741 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
7742 M:      Rajendra Nayak <rnayak@ti.com>
7743 M:      Paul Walmsley <paul@pwsan.com>
7744 L:      linux-omap@vger.kernel.org
7745 S:      Maintained
7746 F:      arch/arm/mach-omap2/prm*
7747
7748 OMAP AUDIO SUPPORT
7749 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
7750 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
7751 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7752 L:      linux-omap@vger.kernel.org
7753 S:      Maintained
7754 F:      sound/soc/omap/
7755
7756 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
7757 M:      Roger Quadros <rogerq@ti.com>
7758 M:      Tony Lindgren <tony@atomide.com>
7759 L:      linux-omap@vger.kernel.org
7760 S:      Maintained
7761 F:      drivers/memory/omap-gpmc.c
7762 F:      arch/arm/mach-omap2/*gpmc*
7763
7764 OMAP FRAMEBUFFER SUPPORT
7765 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
7766 L:      linux-fbdev@vger.kernel.org
7767 L:      linux-omap@vger.kernel.org
7768 S:      Maintained
7769 F:      drivers/video/fbdev/omap/
7770
7771 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
7772 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
7773 L:      linux-omap@vger.kernel.org
7774 L:      linux-fbdev@vger.kernel.org
7775 S:      Maintained
7776 F:      drivers/video/fbdev/omap2/
7777 F:      Documentation/arm/OMAP/DSS
7778
7779 OMAP HARDWARE SPINLOCK SUPPORT
7780 M:      Ohad Ben-Cohen <ohad@wizery.com>
7781 L:      linux-omap@vger.kernel.org
7782 S:      Maintained
7783 F:      drivers/hwspinlock/omap_hwspinlock.c
7784
7785 OMAP MMC SUPPORT
7786 M:      Jarkko Lavinen <jarkko.lavinen@nokia.com>
7787 L:      linux-omap@vger.kernel.org
7788 S:      Maintained
7789 F:      drivers/mmc/host/omap.c
7790
7791 OMAP HS MMC SUPPORT
7792 L:      linux-mmc@vger.kernel.org
7793 L:      linux-omap@vger.kernel.org
7794 S:      Orphan
7795 F:      drivers/mmc/host/omap_hsmmc.c
7796
7797 OMAP RANDOM NUMBER GENERATOR SUPPORT
7798 M:      Deepak Saxena <dsaxena@plexity.net>
7799 S:      Maintained
7800 F:      drivers/char/hw_random/omap-rng.c
7801
7802 OMAP HWMOD SUPPORT
7803 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7804 M:      Paul Walmsley <paul@pwsan.com>
7805 L:      linux-omap@vger.kernel.org
7806 S:      Maintained
7807 F:      arch/arm/mach-omap2/omap_hwmod.*
7808
7809 OMAP HWMOD DATA
7810 M:      Paul Walmsley <paul@pwsan.com>
7811 L:      linux-omap@vger.kernel.org
7812 S:      Maintained
7813 F:      arch/arm/mach-omap2/omap_hwmod*data*
7814
7815 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
7816 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7817 L:      linux-omap@vger.kernel.org
7818 S:      Maintained
7819 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
7820
7821 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
7822 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7823 L:      linux-media@vger.kernel.org
7824 S:      Maintained
7825 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
7826 F:      drivers/media/platform/omap3isp/
7827 F:      drivers/staging/media/omap4iss/
7828
7829 OMAP USB SUPPORT
7830 M:      Felipe Balbi <balbi@ti.com>
7831 L:      linux-usb@vger.kernel.org
7832 L:      linux-omap@vger.kernel.org
7833 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7834 S:      Maintained
7835 F:      drivers/usb/*/*omap*
7836 F:      arch/arm/*omap*/usb*
7837
7838 OMAP GPIO DRIVER
7839 M:      Grygorii Strashko <grygorii.strashko@ti.com>
7840 M:      Santosh Shilimkar <ssantosh@kernel.org>
7841 M:      Kevin Hilman <khilman@deeprootsystems.com>
7842 L:      linux-omap@vger.kernel.org
7843 S:      Maintained
7844 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
7845 F:      drivers/gpio/gpio-omap.c
7846
7847 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
7848 M:      Mark Jackson <mpfj@newflow.co.uk>
7849 L:      linux-omap@vger.kernel.org
7850 S:      Maintained
7851 F:      arch/arm/boot/dts/am335x-nano.dts
7852
7853 OMFS FILESYSTEM
7854 M:      Bob Copeland <me@bobcopeland.com>
7855 L:      linux-karma-devel@lists.sourceforge.net
7856 S:      Maintained
7857 F:      Documentation/filesystems/omfs.txt
7858 F:      fs/omfs/
7859
7860 OMNIKEY CARDMAN 4000 DRIVER
7861 M:      Harald Welte <laforge@gnumonks.org>
7862 S:      Maintained
7863 F:      drivers/char/pcmcia/cm4000_cs.c
7864 F:      include/linux/cm4000_cs.h
7865 F:      include/uapi/linux/cm4000_cs.h
7866
7867 OMNIKEY CARDMAN 4040 DRIVER
7868 M:      Harald Welte <laforge@gnumonks.org>
7869 S:      Maintained
7870 F:      drivers/char/pcmcia/cm4040_cs.*
7871
7872 OMNIVISION OV7670 SENSOR DRIVER
7873 M:      Jonathan Corbet <corbet@lwn.net>
7874 L:      linux-media@vger.kernel.org
7875 T:      git git://linuxtv.org/media_tree.git
7876 S:      Maintained
7877 F:      drivers/media/i2c/ov7670.c
7878
7879 ONENAND FLASH DRIVER
7880 M:      Kyungmin Park <kyungmin.park@samsung.com>
7881 L:      linux-mtd@lists.infradead.org
7882 S:      Maintained
7883 F:      drivers/mtd/onenand/
7884 F:      include/linux/mtd/onenand*.h
7885
7886 ONSTREAM SCSI TAPE DRIVER
7887 M:      Willem Riede <osst@riede.org>
7888 L:      osst-users@lists.sourceforge.net
7889 L:      linux-scsi@vger.kernel.org
7890 S:      Maintained
7891 F:      Documentation/scsi/osst.txt
7892 F:      drivers/scsi/osst.*
7893 F:      drivers/scsi/osst_*.h
7894 F:      drivers/scsi/st.h
7895
7896 OPENCORES I2C BUS DRIVER
7897 M:      Peter Korsgaard <jacmet@sunsite.dk>
7898 L:      linux-i2c@vger.kernel.org
7899 S:      Maintained
7900 F:      Documentation/i2c/busses/i2c-ocores
7901 F:      drivers/i2c/busses/i2c-ocores.c
7902
7903 OPEN FIRMWARE AND FLATTENED DEVICE TREE
7904 M:      Rob Herring <robh+dt@kernel.org>
7905 M:      Frank Rowand <frowand.list@gmail.com>
7906 M:      Grant Likely <grant.likely@linaro.org>
7907 L:      devicetree@vger.kernel.org
7908 W:      http://www.devicetree.org/
7909 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/glikely/linux.git
7910 S:      Maintained
7911 F:      drivers/of/
7912 F:      include/linux/of*.h
7913 F:      scripts/dtc/
7914
7915 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
7916 M:      Rob Herring <robh+dt@kernel.org>
7917 M:      Pawel Moll <pawel.moll@arm.com>
7918 M:      Mark Rutland <mark.rutland@arm.com>
7919 M:      Ian Campbell <ijc+devicetree@hellion.org.uk>
7920 M:      Kumar Gala <galak@codeaurora.org>
7921 L:      devicetree@vger.kernel.org
7922 S:      Maintained
7923 F:      Documentation/devicetree/
7924 F:      arch/*/boot/dts/
7925 F:      include/dt-bindings/
7926
7927 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
7928 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
7929 L:      devicetree@vger.kernel.org
7930 S:      Maintained
7931 F:      Documentation/devicetree/dynamic-resolution-notes.txt
7932 F:      Documentation/devicetree/overlay-notes.txt
7933 F:      drivers/of/overlay.c
7934 F:      drivers/of/resolver.c
7935
7936 OPENRISC ARCHITECTURE
7937 M:      Jonas Bonn <jonas@southpole.se>
7938 W:      http://openrisc.net
7939 L:      linux@lists.openrisc.net (moderated for non-subscribers)
7940 S:      Maintained
7941 T:      git git://openrisc.net/~jonas/linux
7942 F:      arch/openrisc/
7943
7944 OPENVSWITCH
7945 M:      Pravin Shelar <pshelar@nicira.com>
7946 L:      netdev@vger.kernel.org
7947 L:      dev@openvswitch.org
7948 W:      http://openvswitch.org
7949 S:      Maintained
7950 F:      net/openvswitch/
7951 F:      include/uapi/linux/openvswitch.h
7952
7953 OPERATING PERFORMANCE POINTS (OPP)
7954 M:      Viresh Kumar <vireshk@kernel.org>
7955 M:      Nishanth Menon <nm@ti.com>
7956 M:      Stephen Boyd <sboyd@codeaurora.org>
7957 L:      linux-pm@vger.kernel.org
7958 S:      Maintained
7959 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
7960 F:      drivers/base/power/opp/
7961 F:      include/linux/pm_opp.h
7962 F:      Documentation/power/opp.txt
7963 F:      Documentation/devicetree/bindings/opp/
7964
7965 OPL4 DRIVER
7966 M:      Clemens Ladisch <clemens@ladisch.de>
7967 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7968 T:      git git://git.alsa-project.org/alsa-kernel.git
7969 S:      Maintained
7970 F:      sound/drivers/opl4/
7971
7972 OPROFILE
7973 M:      Robert Richter <rric@kernel.org>
7974 L:      oprofile-list@lists.sf.net
7975 S:      Maintained
7976 F:      arch/*/include/asm/oprofile*.h
7977 F:      arch/*/oprofile/
7978 F:      drivers/oprofile/
7979 F:      include/linux/oprofile.h
7980
7981 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
7982 M:      Mark Fasheh <mfasheh@suse.com>
7983 M:      Joel Becker <jlbec@evilplan.org>
7984 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
7985 W:      http://ocfs2.wiki.kernel.org
7986 S:      Supported
7987 F:      Documentation/filesystems/ocfs2.txt
7988 F:      Documentation/filesystems/dlmfs.txt
7989 F:      fs/ocfs2/
7990
7991 ORINOCO DRIVER
7992 L:      linux-wireless@vger.kernel.org
7993 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
7994 W:      http://www.nongnu.org/orinoco/
7995 S:      Orphan
7996 F:      drivers/net/wireless/intersil/orinoco/
7997
7998 OSD LIBRARY and FILESYSTEM
7999 M:      Boaz Harrosh <ooo@electrozaur.com>
8000 M:      Benny Halevy <bhalevy@primarydata.com>
8001 L:      osd-dev@open-osd.org
8002 W:      http://open-osd.org
8003 T:      git git://git.open-osd.org/open-osd.git
8004 S:      Maintained
8005 F:      drivers/scsi/osd/
8006 F:      include/scsi/osd_*
8007 F:      fs/exofs/
8008
8009 OVERLAY FILESYSTEM
8010 M:      Miklos Szeredi <miklos@szeredi.hu>
8011 L:      linux-unionfs@vger.kernel.org
8012 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
8013 S:      Supported
8014 F:      fs/overlayfs/
8015 F:      Documentation/filesystems/overlayfs.txt
8016
8017 P54 WIRELESS DRIVER
8018 M:      Christian Lamparter <chunkeey@googlemail.com>
8019 L:      linux-wireless@vger.kernel.org
8020 W:      http://wireless.kernel.org/en/users/Drivers/p54
8021 S:      Maintained
8022 F:      drivers/net/wireless/intersil/p54/
8023
8024 PA SEMI ETHERNET DRIVER
8025 M:      Olof Johansson <olof@lixom.net>
8026 L:      netdev@vger.kernel.org
8027 S:      Maintained
8028 F:      drivers/net/ethernet/pasemi/*
8029
8030 PA SEMI SMBUS DRIVER
8031 M:      Olof Johansson <olof@lixom.net>
8032 L:      linux-i2c@vger.kernel.org
8033 S:      Maintained
8034 F:      drivers/i2c/busses/i2c-pasemi.c
8035
8036 PADATA PARALLEL EXECUTION MECHANISM
8037 M:      Steffen Klassert <steffen.klassert@secunet.com>
8038 L:      linux-crypto@vger.kernel.org
8039 S:      Maintained
8040 F:      kernel/padata.c
8041 F:      include/linux/padata.h
8042 F:      Documentation/padata.txt
8043
8044 PANASONIC LAPTOP ACPI EXTRAS DRIVER
8045 M:      Harald Welte <laforge@gnumonks.org>
8046 L:      platform-driver-x86@vger.kernel.org
8047 S:      Maintained
8048 F:      drivers/platform/x86/panasonic-laptop.c
8049
8050 PANASONIC MN10300/AM33/AM34 PORT
8051 M:      David Howells <dhowells@redhat.com>
8052 M:      Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
8053 L:      linux-am33-list@redhat.com (moderated for non-subscribers)
8054 W:      ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
8055 S:      Maintained
8056 F:      Documentation/mn10300/
8057 F:      arch/mn10300/
8058
8059 PARALLEL PORT SUBSYSTEM
8060 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
8061 M:      Sudip Mukherjee <sudip@vectorindia.org>
8062 L:      linux-parport@lists.infradead.org (subscribers-only)
8063 S:      Maintained
8064 F:      drivers/parport/
8065 F:      include/linux/parport*.h
8066 F:      drivers/char/ppdev.c
8067 F:      include/uapi/linux/ppdev.h
8068 F:      Documentation/parport*.txt
8069
8070 PARAVIRT_OPS INTERFACE
8071 M:      Jeremy Fitzhardinge <jeremy@goop.org>
8072 M:      Chris Wright <chrisw@sous-sol.org>
8073 M:      Alok Kataria <akataria@vmware.com>
8074 M:      Rusty Russell <rusty@rustcorp.com.au>
8075 L:      virtualization@lists.linux-foundation.org
8076 S:      Supported
8077 F:      Documentation/virtual/paravirt_ops.txt
8078 F:      arch/*/kernel/paravirt*
8079 F:      arch/*/include/asm/paravirt.h
8080
8081 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
8082 M:      Tim Waugh <tim@cyberelk.net>
8083 L:      linux-parport@lists.infradead.org (subscribers-only)
8084 S:      Maintained
8085 F:      Documentation/blockdev/paride.txt
8086 F:      drivers/block/paride/
8087
8088 PARISC ARCHITECTURE
8089 M:      "James E.J. Bottomley" <jejb@parisc-linux.org>
8090 M:      Helge Deller <deller@gmx.de>
8091 L:      linux-parisc@vger.kernel.org
8092 W:      http://www.parisc-linux.org/
8093 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
8094 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
8095 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
8096 S:      Maintained
8097 F:      arch/parisc/
8098 F:      Documentation/parisc/
8099 F:      drivers/parisc/
8100 F:      drivers/char/agp/parisc-agp.c
8101 F:      drivers/input/serio/gscps2.c
8102 F:      drivers/parport/parport_gsc.*
8103 F:      drivers/tty/serial/8250/8250_gsc.c
8104 F:      drivers/video/fbdev/sti*
8105 F:      drivers/video/console/sti*
8106 F:      drivers/video/logo/logo_parisc*
8107
8108 PC87360 HARDWARE MONITORING DRIVER
8109 M:      Jim Cromie <jim.cromie@gmail.com>
8110 L:      lm-sensors@lm-sensors.org
8111 S:      Maintained
8112 F:      Documentation/hwmon/pc87360
8113 F:      drivers/hwmon/pc87360.c
8114
8115 PC8736x GPIO DRIVER
8116 M:      Jim Cromie <jim.cromie@gmail.com>
8117 S:      Maintained
8118 F:      drivers/char/pc8736x_gpio.c
8119
8120 PC87427 HARDWARE MONITORING DRIVER
8121 M:      Jean Delvare <jdelvare@suse.com>
8122 L:      lm-sensors@lm-sensors.org
8123 S:      Maintained
8124 F:      Documentation/hwmon/pc87427
8125 F:      drivers/hwmon/pc87427.c
8126
8127 PCA9532 LED DRIVER
8128 M:      Riku Voipio <riku.voipio@iki.fi>
8129 S:      Maintained
8130 F:      drivers/leds/leds-pca9532.c
8131 F:      include/linux/leds-pca9532.h
8132
8133 PCA9541 I2C BUS MASTER SELECTOR DRIVER
8134 M:      Guenter Roeck <linux@roeck-us.net>
8135 L:      linux-i2c@vger.kernel.org
8136 S:      Maintained
8137 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
8138
8139 PCDP - PRIMARY CONSOLE AND DEBUG PORT
8140 M:      Khalid Aziz <khalid@gonehiking.org>
8141 S:      Maintained
8142 F:      drivers/firmware/pcdp.*
8143
8144 PCI ERROR RECOVERY
8145 M:      Linas Vepstas <linasvepstas@gmail.com>
8146 L:      linux-pci@vger.kernel.org
8147 S:      Supported
8148 F:      Documentation/PCI/pci-error-recovery.txt
8149
8150 PCI SUBSYSTEM
8151 M:      Bjorn Helgaas <bhelgaas@google.com>
8152 L:      linux-pci@vger.kernel.org
8153 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
8154 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
8155 S:      Supported
8156 F:      Documentation/PCI/
8157 F:      drivers/pci/
8158 F:      include/linux/pci*
8159 F:      arch/x86/pci/
8160 F:      arch/x86/kernel/quirks.c
8161
8162 PCI DRIVER FOR ALTERA PCIE IP
8163 M:      Ley Foon Tan <lftan@altera.com>
8164 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
8165 L:      linux-pci@vger.kernel.org
8166 S:      Supported
8167 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
8168 F:      drivers/pci/host/pcie-altera.c
8169
8170 PCI DRIVER FOR ARM VERSATILE PLATFORM
8171 M:      Rob Herring <robh@kernel.org>
8172 L:      linux-pci@vger.kernel.org
8173 L:      linux-arm-kernel@lists.infradead.org
8174 S:      Maintained
8175 F:      Documentation/devicetree/bindings/pci/versatile.txt
8176 F:      drivers/pci/host/pci-versatile.c
8177
8178 PCI DRIVER FOR APPLIEDMICRO XGENE
8179 M:      Tanmay Inamdar <tinamdar@apm.com>
8180 L:      linux-pci@vger.kernel.org
8181 L:      linux-arm-kernel@lists.infradead.org
8182 S:      Maintained
8183 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
8184 F:      drivers/pci/host/pci-xgene.c
8185
8186 PCI DRIVER FOR FREESCALE LAYERSCAPE
8187 M:      Minghuan Lian <minghuan.Lian@freescale.com>
8188 M:      Mingkai Hu <mingkai.hu@freescale.com>
8189 M:      Roy Zang <tie-fei.zang@freescale.com>
8190 L:      linuxppc-dev@lists.ozlabs.org
8191 L:      linux-pci@vger.kernel.org
8192 L:      linux-arm-kernel@lists.infradead.org
8193 S:      Maintained
8194 F:      drivers/pci/host/*layerscape*
8195
8196 PCI DRIVER FOR IMX6
8197 M:      Richard Zhu <Richard.Zhu@freescale.com>
8198 M:      Lucas Stach <l.stach@pengutronix.de>
8199 L:      linux-pci@vger.kernel.org
8200 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8201 S:      Maintained
8202 F:      drivers/pci/host/*imx6*
8203
8204 PCI DRIVER FOR TI KEYSTONE
8205 M:      Murali Karicheri <m-karicheri2@ti.com>
8206 L:      linux-pci@vger.kernel.org
8207 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8208 S:      Maintained
8209 F:      drivers/pci/host/*keystone*
8210
8211 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
8212 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8213 M:      Jason Cooper <jason@lakedaemon.net>
8214 L:      linux-pci@vger.kernel.org
8215 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8216 S:      Maintained
8217 F:      drivers/pci/host/*mvebu*
8218
8219 PCI DRIVER FOR NVIDIA TEGRA
8220 M:      Thierry Reding <thierry.reding@gmail.com>
8221 L:      linux-tegra@vger.kernel.org
8222 L:      linux-pci@vger.kernel.org
8223 S:      Supported
8224 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
8225 F:      drivers/pci/host/pci-tegra.c
8226
8227 PCI DRIVER FOR TI DRA7XX
8228 M:      Kishon Vijay Abraham I <kishon@ti.com>
8229 L:      linux-omap@vger.kernel.org
8230 L:      linux-pci@vger.kernel.org
8231 S:      Supported
8232 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
8233 F:      drivers/pci/host/pci-dra7xx.c
8234
8235 PCI DRIVER FOR RENESAS R-CAR
8236 M:      Simon Horman <horms@verge.net.au>
8237 L:      linux-pci@vger.kernel.org
8238 L:      linux-sh@vger.kernel.org
8239 S:      Maintained
8240 F:      drivers/pci/host/*rcar*
8241
8242 PCI DRIVER FOR SAMSUNG EXYNOS
8243 M:      Jingoo Han <jingoohan1@gmail.com>
8244 L:      linux-pci@vger.kernel.org
8245 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8246 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8247 S:      Maintained
8248 F:      drivers/pci/host/pci-exynos.c
8249
8250 PCI DRIVER FOR SYNOPSIS DESIGNWARE
8251 M:      Jingoo Han <jingoohan1@gmail.com>
8252 M:      Pratyush Anand <pratyush.anand@gmail.com>
8253 L:      linux-pci@vger.kernel.org
8254 S:      Maintained
8255 F:      drivers/pci/host/*designware*
8256
8257 PCI DRIVER FOR GENERIC OF HOSTS
8258 M:      Will Deacon <will.deacon@arm.com>
8259 L:      linux-pci@vger.kernel.org
8260 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8261 S:      Maintained
8262 F:      Documentation/devicetree/bindings/pci/host-generic-pci.txt
8263 F:      drivers/pci/host/pci-host-generic.c
8264
8265 PCIE DRIVER FOR ST SPEAR13XX
8266 M:      Pratyush Anand <pratyush.anand@gmail.com>
8267 L:      linux-pci@vger.kernel.org
8268 S:      Maintained
8269 F:      drivers/pci/host/*spear*
8270
8271 PCI MSI DRIVER FOR ALTERA MSI IP
8272 M:      Ley Foon Tan <lftan@altera.com>
8273 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
8274 L:      linux-pci@vger.kernel.org
8275 S:      Supported
8276 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
8277 F:      drivers/pci/host/pcie-altera-msi.c
8278
8279 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
8280 M:      Duc Dang <dhdang@apm.com>
8281 L:      linux-pci@vger.kernel.org
8282 L:      linux-arm-kernel@lists.infradead.org
8283 S:      Maintained
8284 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
8285 F:      drivers/pci/host/pci-xgene-msi.c
8286
8287 PCIE DRIVER FOR HISILICON
8288 M:      Zhou Wang <wangzhou1@hisilicon.com>
8289 L:      linux-pci@vger.kernel.org
8290 S:      Maintained
8291 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
8292 F:      drivers/pci/host/pcie-hisi.c
8293
8294 PCMCIA SUBSYSTEM
8295 P:      Linux PCMCIA Team
8296 L:      linux-pcmcia@lists.infradead.org
8297 W:      http://lists.infradead.org/mailman/listinfo/linux-pcmcia
8298 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
8299 S:      Maintained
8300 F:      Documentation/pcmcia/
8301 F:      drivers/pcmcia/
8302 F:      include/pcmcia/
8303
8304 PCNET32 NETWORK DRIVER
8305 M:      Don Fry <pcnet32@frontier.com>
8306 L:      netdev@vger.kernel.org
8307 S:      Maintained
8308 F:      drivers/net/ethernet/amd/pcnet32.c
8309
8310 PCRYPT PARALLEL CRYPTO ENGINE
8311 M:      Steffen Klassert <steffen.klassert@secunet.com>
8312 L:      linux-crypto@vger.kernel.org
8313 S:      Maintained
8314 F:      crypto/pcrypt.c
8315 F:      include/crypto/pcrypt.h
8316
8317 PER-CPU MEMORY ALLOCATOR
8318 M:      Tejun Heo <tj@kernel.org>
8319 M:      Christoph Lameter <cl@linux-foundation.org>
8320 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
8321 S:      Maintained
8322 F:      include/linux/percpu*.h
8323 F:      mm/percpu*.c
8324 F:      arch/*/include/asm/percpu.h
8325
8326 PER-TASK DELAY ACCOUNTING
8327 M:      Balbir Singh <bsingharora@gmail.com>
8328 S:      Maintained
8329 F:      include/linux/delayacct.h
8330 F:      kernel/delayacct.c
8331
8332 PERFORMANCE EVENTS SUBSYSTEM
8333 M:      Peter Zijlstra <peterz@infradead.org>
8334 M:      Ingo Molnar <mingo@redhat.com>
8335 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
8336 L:      linux-kernel@vger.kernel.org
8337 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
8338 S:      Supported
8339 F:      kernel/events/*
8340 F:      include/linux/perf_event.h
8341 F:      include/uapi/linux/perf_event.h
8342 F:      arch/*/kernel/perf_event*.c
8343 F:      arch/*/kernel/*/perf_event*.c
8344 F:      arch/*/kernel/*/*/perf_event*.c
8345 F:      arch/*/include/asm/perf_event.h
8346 F:      arch/*/kernel/perf_callchain.c
8347 F:      tools/perf/
8348
8349 PERSONALITY HANDLING
8350 M:      Christoph Hellwig <hch@infradead.org>
8351 L:      linux-abi-devel@lists.sourceforge.net
8352 S:      Maintained
8353 F:      include/linux/personality.h
8354 F:      include/uapi/linux/personality.h
8355
8356 PHONET PROTOCOL
8357 M:      Remi Denis-Courmont <courmisch@gmail.com>
8358 S:      Supported
8359 F:      Documentation/networking/phonet.txt
8360 F:      include/linux/phonet.h
8361 F:      include/net/phonet/
8362 F:      include/uapi/linux/phonet.h
8363 F:      net/phonet/
8364
8365 PHRAM MTD DRIVER
8366 M:      Joern Engel <joern@lazybastard.org>
8367 L:      linux-mtd@lists.infradead.org
8368 S:      Maintained
8369 F:      drivers/mtd/devices/phram.c
8370
8371 PICOLCD HID DRIVER
8372 M:      Bruno PrĂ©mont <bonbons@linux-vserver.org>
8373 L:      linux-input@vger.kernel.org
8374 S:      Maintained
8375 F:      drivers/hid/hid-picolcd*
8376
8377 PICOXCELL SUPPORT
8378 M:      Jamie Iles <jamie@jamieiles.com>
8379 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8380 T:      git git://github.com/jamieiles/linux-2.6-ji.git
8381 S:      Supported
8382 F:      arch/arm/boot/dts/picoxcell*
8383 F:      arch/arm/mach-picoxcell/
8384 F:      drivers/crypto/picoxcell*
8385
8386 PIN CONTROL SUBSYSTEM
8387 M:      Linus Walleij <linus.walleij@linaro.org>
8388 L:      linux-gpio@vger.kernel.org
8389 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
8390 S:      Maintained
8391 F:      drivers/pinctrl/
8392 F:      include/linux/pinctrl/
8393
8394 PIN CONTROLLER - ATMEL AT91
8395 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
8396 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8397 S:      Maintained
8398 F:      drivers/pinctrl/pinctrl-at91.*
8399
8400 PIN CONTROLLER - ATMEL AT91 PIO4
8401 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
8402 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8403 L:      linux-gpio@vger.kernel.org
8404 S:      Supported
8405 F:      drivers/pinctrl/pinctrl-at91-pio4.*
8406
8407 PIN CONTROLLER - INTEL
8408 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8409 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
8410 S:      Maintained
8411 F:      drivers/pinctrl/intel/
8412
8413 PIN CONTROLLER - RENESAS
8414 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8415 M:      Geert Uytterhoeven <geert+renesas@glider.be>
8416 L:      linux-sh@vger.kernel.org
8417 S:      Maintained
8418 F:      drivers/pinctrl/sh-pfc/
8419
8420 PIN CONTROLLER - SAMSUNG
8421 M:      Tomasz Figa <tomasz.figa@gmail.com>
8422 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8423 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8424 S:      Maintained
8425 F:      drivers/pinctrl/samsung/
8426
8427 PIN CONTROLLER - SINGLE
8428 M:      Tony Lindgren <tony@atomide.com>
8429 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
8430 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8431 L:      linux-omap@vger.kernel.org
8432 S:      Maintained
8433 F:      drivers/pinctrl/pinctrl-single.c
8434
8435 PIN CONTROLLER - ST SPEAR
8436 M:      Viresh Kumar <vireshk@kernel.org>
8437 L:      spear-devel@list.st.com
8438 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8439 W:      http://www.st.com/spear
8440 S:      Maintained
8441 F:      drivers/pinctrl/spear/
8442
8443 PKTCDVD DRIVER
8444 M:      Jiri Kosina <jikos@kernel.org>
8445 S:      Maintained
8446 F:      drivers/block/pktcdvd.c
8447 F:      include/linux/pktcdvd.h
8448 F:      include/uapi/linux/pktcdvd.h
8449
8450 PKUNITY SOC DRIVERS
8451 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
8452 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
8453 S:      Maintained
8454 T:      git git://github.com/gxt/linux.git
8455 F:      drivers/input/serio/i8042-unicore32io.h
8456 F:      drivers/i2c/busses/i2c-puv3.c
8457 F:      drivers/video/fbdev/fb-puv3.c
8458 F:      drivers/rtc/rtc-puv3.c
8459
8460 PMBUS HARDWARE MONITORING DRIVERS
8461 M:      Guenter Roeck <linux@roeck-us.net>
8462 L:      lm-sensors@lm-sensors.org
8463 W:      http://www.lm-sensors.org/
8464 W:      http://www.roeck-us.net/linux/drivers/
8465 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8466 S:      Maintained
8467 F:      Documentation/hwmon/pmbus
8468 F:      drivers/hwmon/pmbus/
8469 F:      include/linux/i2c/pmbus.h
8470
8471 PMC SIERRA MaxRAID DRIVER
8472 L:      linux-scsi@vger.kernel.org
8473 W:      http://www.pmc-sierra.com/
8474 S:      Orphan
8475 F:      drivers/scsi/pmcraid.*
8476
8477 PMC SIERRA PM8001 DRIVER
8478 M:      Jack Wang <jinpu.wang@profitbricks.com>
8479 M:      lindar_liu@usish.com
8480 L:      pmchba@pmcs.com
8481 L:      linux-scsi@vger.kernel.org
8482 S:      Supported
8483 F:      drivers/scsi/pm8001/
8484
8485 POSIX CLOCKS and TIMERS
8486 M:      Thomas Gleixner <tglx@linutronix.de>
8487 L:      linux-kernel@vger.kernel.org
8488 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8489 S:      Maintained
8490 F:      fs/timerfd.c
8491 F:      include/linux/timer*
8492 F:      kernel/time/*timer*
8493
8494 POWER MANAGEMENT CORE
8495 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
8496 L:      linux-pm@vger.kernel.org
8497 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
8498 S:      Supported
8499 F:      drivers/base/power/
8500 F:      include/linux/pm.h
8501 F:      include/linux/pm_*
8502 F:      include/linux/powercap.h
8503 F:      drivers/powercap/
8504
8505 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
8506 M:      Sebastian Reichel <sre@kernel.org>
8507 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
8508 M:      David Woodhouse <dwmw2@infradead.org>
8509 L:      linux-pm@vger.kernel.org
8510 T:      git git://git.infradead.org/battery-2.6.git
8511 S:      Maintained
8512 F:      include/linux/power_supply.h
8513 F:      drivers/power/
8514 X:      drivers/power/avs/
8515
8516 POWER STATE COORDINATION INTERFACE (PSCI)
8517 M:      Mark Rutland <mark.rutland@arm.com>
8518 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
8519 L:      linux-arm-kernel@lists.infradead.org
8520 S:      Maintained
8521 F:      drivers/firmware/psci.c
8522 F:      include/linux/psci.h
8523 F:      include/uapi/linux/psci.h
8524
8525 PNP SUPPORT
8526 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
8527 S:      Maintained
8528 F:      drivers/pnp/
8529
8530 PPP PROTOCOL DRIVERS AND COMPRESSORS
8531 M:      Paul Mackerras <paulus@samba.org>
8532 L:      linux-ppp@vger.kernel.org
8533 S:      Maintained
8534 F:      drivers/net/ppp/ppp_*
8535
8536 PPP OVER ATM (RFC 2364)
8537 M:      Mitchell Blank Jr <mitch@sfgoth.com>
8538 S:      Maintained
8539 F:      net/atm/pppoatm.c
8540 F:      include/uapi/linux/atmppp.h
8541
8542 PPP OVER ETHERNET
8543 M:      Michal Ostrowski <mostrows@earthlink.net>
8544 S:      Maintained
8545 F:      drivers/net/ppp/pppoe.c
8546 F:      drivers/net/ppp/pppox.c
8547
8548 PPP OVER L2TP
8549 M:      James Chapman <jchapman@katalix.com>
8550 S:      Maintained
8551 F:      net/l2tp/l2tp_ppp.c
8552 F:      include/linux/if_pppol2tp.h
8553 F:      include/uapi/linux/if_pppol2tp.h
8554
8555 PPS SUPPORT
8556 M:      Rodolfo Giometti <giometti@enneenne.com>
8557 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
8558 L:      linuxpps@ml.enneenne.com (subscribers-only)
8559 S:      Maintained
8560 F:      Documentation/pps/
8561 F:      drivers/pps/
8562 F:      include/linux/pps*.h
8563
8564 PPTP DRIVER
8565 M:      Dmitry Kozlov <xeb@mail.ru>
8566 L:      netdev@vger.kernel.org
8567 S:      Maintained
8568 F:      drivers/net/ppp/pptp.c
8569 W:      http://sourceforge.net/projects/accel-pptp
8570
8571 PREEMPTIBLE KERNEL
8572 M:      Robert Love <rml@tech9.net>
8573 L:      kpreempt-tech@lists.sourceforge.net
8574 W:      ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
8575 S:      Supported
8576 F:      Documentation/preempt-locking.txt
8577 F:      include/linux/preempt.h
8578
8579 PRISM54 WIRELESS DRIVER
8580 M:      "Luis R. Rodriguez" <mcgrof@gmail.com>
8581 L:      linux-wireless@vger.kernel.org
8582 W:      http://wireless.kernel.org/en/users/Drivers/p54
8583 S:      Obsolete
8584 F:      drivers/net/wireless/intersil/prism54/
8585
8586 PS3 NETWORK SUPPORT
8587 M:      Geoff Levand <geoff@infradead.org>
8588 L:      netdev@vger.kernel.org
8589 L:      linuxppc-dev@lists.ozlabs.org
8590 S:      Maintained
8591 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
8592
8593 PS3 PLATFORM SUPPORT
8594 M:      Geoff Levand <geoff@infradead.org>
8595 L:      linuxppc-dev@lists.ozlabs.org
8596 S:      Maintained
8597 F:      arch/powerpc/boot/ps3*
8598 F:      arch/powerpc/include/asm/lv1call.h
8599 F:      arch/powerpc/include/asm/ps3*.h
8600 F:      arch/powerpc/platforms/ps3/
8601 F:      drivers/*/ps3*
8602 F:      drivers/ps3/
8603 F:      drivers/rtc/rtc-ps3.c
8604 F:      drivers/usb/host/*ps3.c
8605 F:      sound/ppc/snd_ps3*
8606
8607 PS3VRAM DRIVER
8608 M:      Jim Paris <jim@jtan.com>
8609 M:      Geoff Levand <geoff@infradead.org>
8610 L:      linuxppc-dev@lists.ozlabs.org
8611 S:      Maintained
8612 F:      drivers/block/ps3vram.c
8613
8614 PSTORE FILESYSTEM
8615 M:      Anton Vorontsov <anton@enomsg.org>
8616 M:      Colin Cross <ccross@android.com>
8617 M:      Kees Cook <keescook@chromium.org>
8618 M:      Tony Luck <tony.luck@intel.com>
8619 S:      Maintained
8620 T:      git git://git.infradead.org/users/cbou/linux-pstore.git
8621 F:      fs/pstore/
8622 F:      include/linux/pstore*
8623 F:      drivers/firmware/efi/efi-pstore.c
8624 F:      drivers/acpi/apei/erst.c
8625
8626 PTP HARDWARE CLOCK SUPPORT
8627 M:      Richard Cochran <richardcochran@gmail.com>
8628 L:      netdev@vger.kernel.org
8629 S:      Maintained
8630 W:      http://linuxptp.sourceforge.net/
8631 F:      Documentation/ABI/testing/sysfs-ptp
8632 F:      Documentation/ptp/*
8633 F:      drivers/net/ethernet/freescale/gianfar_ptp.c
8634 F:      drivers/net/phy/dp83640*
8635 F:      drivers/ptp/*
8636 F:      include/linux/ptp_cl*
8637
8638 PTRACE SUPPORT
8639 M:      Roland McGrath <roland@hack.frob.com>
8640 M:      Oleg Nesterov <oleg@redhat.com>
8641 S:      Maintained
8642 F:      include/asm-generic/syscall.h
8643 F:      include/linux/ptrace.h
8644 F:      include/linux/regset.h
8645 F:      include/linux/tracehook.h
8646 F:      include/uapi/linux/ptrace.h
8647 F:      kernel/ptrace.c
8648
8649 PVRUSB2 VIDEO4LINUX DRIVER
8650 M:      Mike Isely <isely@pobox.com>
8651 L:      pvrusb2@isely.net       (subscribers-only)
8652 L:      linux-media@vger.kernel.org
8653 W:      http://www.isely.net/pvrusb2/
8654 T:      git git://linuxtv.org/media_tree.git
8655 S:      Maintained
8656 F:      Documentation/video4linux/README.pvrusb2
8657 F:      drivers/media/usb/pvrusb2/
8658
8659 PWC WEBCAM DRIVER
8660 M:      Hans de Goede <hdegoede@redhat.com>
8661 L:      linux-media@vger.kernel.org
8662 T:      git git://linuxtv.org/media_tree.git
8663 S:      Maintained
8664 F:      drivers/media/usb/pwc/*
8665
8666 PWM FAN DRIVER
8667 M:      Kamil Debski <k.debski@samsung.com>
8668 L:      lm-sensors@lm-sensors.org
8669 S:      Supported
8670 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
8671 F:      Documentation/hwmon/pwm-fan
8672 F:      drivers/hwmon/pwm-fan.c
8673
8674 PWM SUBSYSTEM
8675 M:      Thierry Reding <thierry.reding@gmail.com>
8676 L:      linux-pwm@vger.kernel.org
8677 S:      Maintained
8678 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
8679 F:      Documentation/pwm.txt
8680 F:      Documentation/devicetree/bindings/pwm/
8681 F:      include/linux/pwm.h
8682 F:      drivers/pwm/
8683 F:      drivers/video/backlight/pwm_bl.c
8684 F:      include/linux/pwm_backlight.h
8685
8686 PXA2xx/PXA3xx SUPPORT
8687 M:      Daniel Mack <daniel@zonque.org>
8688 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
8689 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8690 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8691 T:      git git://github.com/hzhuang1/linux.git
8692 T:      git git://github.com/rjarzmik/linux.git
8693 S:      Maintained
8694 F:      arch/arm/mach-pxa/
8695 F:      drivers/dma/pxa*
8696 F:      drivers/pcmcia/pxa2xx*
8697 F:      drivers/pinctrl/pxa/
8698 F:      drivers/spi/spi-pxa2xx*
8699 F:      drivers/usb/gadget/udc/pxa2*
8700 F:      include/sound/pxa2xx-lib.h
8701 F:      sound/arm/pxa*
8702 F:      sound/soc/pxa/
8703
8704 PXA GPIO DRIVER
8705 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8706 L:      linux-gpio@vger.kernel.org
8707 S:      Maintained
8708 F:      drivers/gpio/gpio-pxa.c
8709
8710 PXA3xx NAND FLASH DRIVER
8711 M:      Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
8712 L:      linux-mtd@lists.infradead.org
8713 S:      Maintained
8714 F:      drivers/mtd/nand/pxa3xx_nand.c
8715
8716 MMP SUPPORT
8717 M:      Eric Miao <eric.y.miao@gmail.com>
8718 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
8719 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8720 T:      git git://github.com/hzhuang1/linux.git
8721 T:      git git://git.linaro.org/people/ycmiao/pxa-linux.git
8722 S:      Maintained
8723 F:      arch/arm/mach-mmp/
8724
8725 PXA MMCI DRIVER
8726 S:      Orphan
8727
8728 PXA RTC DRIVER
8729 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8730 L:      rtc-linux@googlegroups.com
8731 S:      Maintained
8732
8733 QAT DRIVER
8734 M:      Tadeusz Struk <tadeusz.struk@intel.com>
8735 L:      qat-linux@intel.com
8736 S:      Supported
8737 F:      drivers/crypto/qat/
8738
8739 QIB DRIVER
8740 M:      Mike Marciniszyn <infinipath@intel.com>
8741 L:      linux-rdma@vger.kernel.org
8742 S:      Supported
8743 F:      drivers/infiniband/hw/qib/
8744
8745 QLOGIC QLA1280 SCSI DRIVER
8746 M:      Michael Reed <mdr@sgi.com>
8747 L:      linux-scsi@vger.kernel.org
8748 S:      Maintained
8749 F:      drivers/scsi/qla1280.[ch]
8750
8751 QLOGIC QLA2XXX FC-SCSI DRIVER
8752 M:      qla2xxx-upstream@qlogic.com
8753 L:      linux-scsi@vger.kernel.org
8754 S:      Supported
8755 F:      Documentation/scsi/LICENSE.qla2xxx
8756 F:      drivers/scsi/qla2xxx/
8757
8758 QLOGIC QLA4XXX iSCSI DRIVER
8759 M:      QLogic-Storage-Upstream@qlogic.com
8760 L:      linux-scsi@vger.kernel.org
8761 S:      Supported
8762 F:      Documentation/scsi/LICENSE.qla4xxx
8763 F:      drivers/scsi/qla4xxx/
8764
8765 QLOGIC QLA3XXX NETWORK DRIVER
8766 M:      Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
8767 M:      Ron Mercer <ron.mercer@qlogic.com>
8768 M:      linux-driver@qlogic.com
8769 L:      netdev@vger.kernel.org
8770 S:      Supported
8771 F:      Documentation/networking/LICENSE.qla3xxx
8772 F:      drivers/net/ethernet/qlogic/qla3xxx.*
8773
8774 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
8775 M:      Dept-GELinuxNICDev@qlogic.com
8776 L:      netdev@vger.kernel.org
8777 S:      Supported
8778 F:      drivers/net/ethernet/qlogic/qlcnic/
8779
8780 QLOGIC QLGE 10Gb ETHERNET DRIVER
8781 M:      Harish Patil <harish.patil@qlogic.com>
8782 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
8783 M:      Dept-GELinuxNICDev@qlogic.com
8784 M:      linux-driver@qlogic.com
8785 L:      netdev@vger.kernel.org
8786 S:      Supported
8787 F:      drivers/net/ethernet/qlogic/qlge/
8788
8789 QLOGIC QL4xxx ETHERNET DRIVER
8790 M:      Yuval Mintz <Yuval.Mintz@qlogic.com>
8791 M:      Ariel Elior <Ariel.Elior@qlogic.com>
8792 M:      everest-linux-l2@qlogic.com
8793 L:      netdev@vger.kernel.org
8794 S:      Supported
8795 F:      drivers/net/ethernet/qlogic/qed/
8796 F:      include/linux/qed/
8797 F:      drivers/net/ethernet/qlogic/qede/
8798
8799 QNX4 FILESYSTEM
8800 M:      Anders Larsen <al@alarsen.net>
8801 W:      http://www.alarsen.net/linux/qnx4fs/
8802 S:      Maintained
8803 F:      fs/qnx4/
8804 F:      include/uapi/linux/qnx4_fs.h
8805 F:      include/uapi/linux/qnxtypes.h
8806
8807 QT1010 MEDIA DRIVER
8808 M:      Antti Palosaari <crope@iki.fi>
8809 L:      linux-media@vger.kernel.org
8810 W:      https://linuxtv.org
8811 W:      http://palosaari.fi/linux/
8812 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8813 T:      git git://linuxtv.org/anttip/media_tree.git
8814 S:      Maintained
8815 F:      drivers/media/tuners/qt1010*
8816
8817 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
8818 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
8819 L:      linux-wireless@vger.kernel.org
8820 L:      ath9k-devel@lists.ath9k.org
8821 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
8822 S:      Supported
8823 F:      drivers/net/wireless/ath/ath9k/
8824
8825 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
8826 M:      Kalle Valo <kvalo@qca.qualcomm.com>
8827 L:      ath10k@lists.infradead.org
8828 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
8829 T:      git git://github.com/kvalo/ath.git
8830 S:      Supported
8831 F:      drivers/net/wireless/ath/ath10k/
8832
8833 QUALCOMM HEXAGON ARCHITECTURE
8834 M:      Richard Kuo <rkuo@codeaurora.org>
8835 L:      linux-hexagon@vger.kernel.org
8836 S:      Supported
8837 F:      arch/hexagon/
8838
8839 QUALCOMM WCN36XX WIRELESS DRIVER
8840 M:      Eugene Krasnikov <k.eugene.e@gmail.com>
8841 L:      wcn36xx@lists.infradead.org
8842 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
8843 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
8844 S:      Supported
8845 F:      drivers/net/wireless/ath/wcn36xx/
8846
8847 RADOS BLOCK DEVICE (RBD)
8848 M:      Ilya Dryomov <idryomov@gmail.com>
8849 M:      Sage Weil <sage@redhat.com>
8850 M:      Alex Elder <elder@kernel.org>
8851 L:      ceph-devel@vger.kernel.org
8852 W:      http://ceph.com/
8853 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
8854 T:      git git://github.com/ceph/ceph-client.git
8855 S:      Supported
8856 F:      Documentation/ABI/testing/sysfs-bus-rbd
8857 F:      drivers/block/rbd.c
8858 F:      drivers/block/rbd_types.h
8859
8860 RADEON FRAMEBUFFER DISPLAY DRIVER
8861 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
8862 L:      linux-fbdev@vger.kernel.org
8863 S:      Maintained
8864 F:      drivers/video/fbdev/aty/radeon*
8865 F:      include/uapi/linux/radeonfb.h
8866
8867 RADIOSHARK RADIO DRIVER
8868 M:      Hans de Goede <hdegoede@redhat.com>
8869 L:      linux-media@vger.kernel.org
8870 T:      git git://linuxtv.org/media_tree.git
8871 S:      Maintained
8872 F:      drivers/media/radio/radio-shark.c
8873
8874 RADIOSHARK2 RADIO DRIVER
8875 M:      Hans de Goede <hdegoede@redhat.com>
8876 L:      linux-media@vger.kernel.org
8877 T:      git git://linuxtv.org/media_tree.git
8878 S:      Maintained
8879 F:      drivers/media/radio/radio-shark2.c
8880 F:      drivers/media/radio/radio-tea5777.c
8881
8882 RAGE128 FRAMEBUFFER DISPLAY DRIVER
8883 M:      Paul Mackerras <paulus@samba.org>
8884 L:      linux-fbdev@vger.kernel.org
8885 S:      Maintained
8886 F:      drivers/video/fbdev/aty/aty128fb.c
8887
8888 RALINK RT2X00 WIRELESS LAN DRIVER
8889 P:      rt2x00 project
8890 M:      Stanislaw Gruszka <sgruszka@redhat.com>
8891 M:      Helmut Schaa <helmut.schaa@googlemail.com>
8892 L:      linux-wireless@vger.kernel.org
8893 S:      Maintained
8894 F:      drivers/net/wireless/ralink/rt2x00/
8895
8896 RAMDISK RAM BLOCK DEVICE DRIVER
8897 M:      Jens Axboe <axboe@kernel.dk>
8898 S:      Maintained
8899 F:      Documentation/blockdev/ramdisk.txt
8900 F:      drivers/block/brd.c
8901
8902 RANDOM NUMBER DRIVER
8903 M:      "Theodore Ts'o" <tytso@mit.edu>
8904 S:      Maintained
8905 F:      drivers/char/random.c
8906
8907 RAPIDIO SUBSYSTEM
8908 M:      Matt Porter <mporter@kernel.crashing.org>
8909 M:      Alexandre Bounine <alexandre.bounine@idt.com>
8910 S:      Maintained
8911 F:      drivers/rapidio/
8912
8913 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
8914 L:      linux-wireless@vger.kernel.org
8915 S:      Orphan
8916 F:      drivers/net/wireless/ray*
8917
8918 RCUTORTURE MODULE
8919 M:      Josh Triplett <josh@joshtriplett.org>
8920 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8921 L:      linux-kernel@vger.kernel.org
8922 S:      Supported
8923 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8924 F:      Documentation/RCU/torture.txt
8925 F:      kernel/rcu/rcutorture.c
8926
8927 RCUTORTURE TEST FRAMEWORK
8928 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8929 M:      Josh Triplett <josh@joshtriplett.org>
8930 R:      Steven Rostedt <rostedt@goodmis.org>
8931 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8932 R:      Lai Jiangshan <jiangshanlai@gmail.com>
8933 L:      linux-kernel@vger.kernel.org
8934 S:      Supported
8935 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8936 F:      tools/testing/selftests/rcutorture
8937
8938 RDC R-321X SoC
8939 M:      Florian Fainelli <florian@openwrt.org>
8940 S:      Maintained
8941
8942 RDC R6040 FAST ETHERNET DRIVER
8943 M:      Florian Fainelli <florian@openwrt.org>
8944 L:      netdev@vger.kernel.org
8945 S:      Maintained
8946 F:      drivers/net/ethernet/rdc/r6040.c
8947
8948 RDS - RELIABLE DATAGRAM SOCKETS
8949 M:      Chien Yen <chien.yen@oracle.com>
8950 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
8951 S:      Supported
8952 F:      net/rds/
8953
8954 READ-COPY UPDATE (RCU)
8955 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8956 M:      Josh Triplett <josh@joshtriplett.org>
8957 R:      Steven Rostedt <rostedt@goodmis.org>
8958 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8959 R:      Lai Jiangshan <jiangshanlai@gmail.com>
8960 L:      linux-kernel@vger.kernel.org
8961 W:      http://www.rdrop.com/users/paulmck/RCU/
8962 S:      Supported
8963 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8964 F:      Documentation/RCU/
8965 X:      Documentation/RCU/torture.txt
8966 F:      include/linux/rcu*
8967 X:      include/linux/srcu.h
8968 F:      kernel/rcu/
8969 X:      kernel/torture.c
8970
8971 REAL TIME CLOCK (RTC) SUBSYSTEM
8972 M:      Alessandro Zummo <a.zummo@towertech.it>
8973 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
8974 L:      rtc-linux@googlegroups.com
8975 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
8976 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
8977 S:      Maintained
8978 F:      Documentation/rtc.txt
8979 F:      drivers/rtc/
8980 F:      include/linux/rtc.h
8981 F:      include/uapi/linux/rtc.h
8982
8983 REALTEK AUDIO CODECS
8984 M:      Bard Liao <bardliao@realtek.com>
8985 M:      Oder Chiou <oder_chiou@realtek.com>
8986 S:      Maintained
8987 F:      sound/soc/codecs/rt*
8988 F:      include/sound/rt*.h
8989
8990 REISERFS FILE SYSTEM
8991 L:      reiserfs-devel@vger.kernel.org
8992 S:      Supported
8993 F:      fs/reiserfs/
8994
8995 REGISTER MAP ABSTRACTION
8996 M:      Mark Brown <broonie@kernel.org>
8997 L:      linux-kernel@vger.kernel.org
8998 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
8999 S:      Supported
9000 F:      drivers/base/regmap/
9001 F:      include/linux/regmap.h
9002
9003 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
9004 M:      Ohad Ben-Cohen <ohad@wizery.com>
9005 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
9006 S:      Maintained
9007 F:      drivers/remoteproc/
9008 F:      Documentation/remoteproc.txt
9009 F:      include/linux/remoteproc.h
9010
9011 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
9012 M:      Ohad Ben-Cohen <ohad@wizery.com>
9013 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
9014 S:      Maintained
9015 F:      drivers/rpmsg/
9016 F:      Documentation/rpmsg.txt
9017 F:      include/linux/rpmsg.h
9018
9019 RENESAS ETHERNET DRIVERS
9020 R:      Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
9021 L:      netdev@vger.kernel.org
9022 L:      linux-sh@vger.kernel.org
9023 F:      drivers/net/ethernet/renesas/
9024 F:      include/linux/sh_eth.h
9025
9026 RENESAS USB2 PHY DRIVER
9027 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
9028 L:      linux-sh@vger.kernel.org
9029 S:      Maintained
9030 F:      drivers/phy/phy-rcar-gen3-usb2.c
9031
9032 RESET CONTROLLER FRAMEWORK
9033 M:      Philipp Zabel <p.zabel@pengutronix.de>
9034 S:      Maintained
9035 F:      drivers/reset/
9036 F:      Documentation/devicetree/bindings/reset/
9037 F:      include/dt-bindings/reset/
9038 F:      include/linux/reset.h
9039 F:      include/linux/reset-controller.h
9040
9041 RFKILL
9042 M:      Johannes Berg <johannes@sipsolutions.net>
9043 L:      linux-wireless@vger.kernel.org
9044 W:      http://wireless.kernel.org/
9045 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
9046 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
9047 S:      Maintained
9048 F:      Documentation/rfkill.txt
9049 F:      net/rfkill/
9050
9051 RHASHTABLE
9052 M:      Thomas Graf <tgraf@suug.ch>
9053 L:      netdev@vger.kernel.org
9054 S:      Maintained
9055 F:      lib/rhashtable.c
9056 F:      include/linux/rhashtable.h
9057
9058 RICOH SMARTMEDIA/XD DRIVER
9059 M:      Maxim Levitsky <maximlevitsky@gmail.com>
9060 S:      Maintained
9061 F:      drivers/mtd/nand/r852.c
9062 F:      drivers/mtd/nand/r852.h
9063
9064 RICOH R5C592 MEMORYSTICK DRIVER
9065 M:      Maxim Levitsky <maximlevitsky@gmail.com>
9066 S:      Maintained
9067 F:      drivers/memstick/host/r592.*
9068
9069 ROCCAT DRIVERS
9070 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
9071 W:      http://sourceforge.net/projects/roccat/
9072 S:      Maintained
9073 F:      drivers/hid/hid-roccat*
9074 F:      include/linux/hid-roccat*
9075 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
9076
9077 ROCKER DRIVER
9078 M:      Jiri Pirko <jiri@resnulli.us>
9079 M:      Scott Feldman <sfeldma@gmail.com>
9080 L:      netdev@vger.kernel.org
9081 S:      Supported
9082 F:      drivers/net/ethernet/rocker/
9083
9084 ROCKETPORT DRIVER
9085 P:      Comtrol Corp.
9086 W:      http://www.comtrol.com
9087 S:      Maintained
9088 F:      Documentation/serial/rocket.txt
9089 F:      drivers/tty/rocket*
9090
9091 ROCKETPORT EXPRESS/INFINITY DRIVER
9092 M:      Kevin Cernekee <cernekee@gmail.com>
9093 L:      linux-serial@vger.kernel.org
9094 S:      Odd Fixes
9095 F:      drivers/tty/serial/rp2.*
9096
9097 ROSE NETWORK LAYER
9098 M:      Ralf Baechle <ralf@linux-mips.org>
9099 L:      linux-hams@vger.kernel.org
9100 W:      http://www.linux-ax25.org/
9101 S:      Maintained
9102 F:      include/net/rose.h
9103 F:      include/uapi/linux/rose.h
9104 F:      net/rose/
9105
9106 RTL2830 MEDIA DRIVER
9107 M:      Antti Palosaari <crope@iki.fi>
9108 L:      linux-media@vger.kernel.org
9109 W:      https://linuxtv.org
9110 W:      http://palosaari.fi/linux/
9111 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9112 T:      git git://linuxtv.org/anttip/media_tree.git
9113 S:      Maintained
9114 F:      drivers/media/dvb-frontends/rtl2830*
9115
9116 RTL2832 MEDIA DRIVER
9117 M:      Antti Palosaari <crope@iki.fi>
9118 L:      linux-media@vger.kernel.org
9119 W:      https://linuxtv.org
9120 W:      http://palosaari.fi/linux/
9121 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9122 T:      git git://linuxtv.org/anttip/media_tree.git
9123 S:      Maintained
9124 F:      drivers/media/dvb-frontends/rtl2832*
9125
9126 RTL2832_SDR MEDIA DRIVER
9127 M:      Antti Palosaari <crope@iki.fi>
9128 L:      linux-media@vger.kernel.org
9129 W:      https://linuxtv.org
9130 W:      http://palosaari.fi/linux/
9131 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9132 T:      git git://linuxtv.org/anttip/media_tree.git
9133 S:      Maintained
9134 F:      drivers/media/dvb-frontends/rtl2832_sdr*
9135
9136 RTL8180 WIRELESS DRIVER
9137 L:      linux-wireless@vger.kernel.org
9138 W:      http://wireless.kernel.org/
9139 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9140 S:      Orphan
9141 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
9142
9143 RTL8187 WIRELESS DRIVER
9144 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
9145 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
9146 M:      Larry Finger <Larry.Finger@lwfinger.net>
9147 L:      linux-wireless@vger.kernel.org
9148 W:      http://wireless.kernel.org/
9149 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9150 S:      Maintained
9151 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
9152
9153 RTL8192CE WIRELESS DRIVER
9154 M:      Larry Finger <Larry.Finger@lwfinger.net>
9155 M:      Chaoming Li <chaoming_li@realsil.com.cn>
9156 L:      linux-wireless@vger.kernel.org
9157 W:      http://wireless.kernel.org/
9158 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9159 S:      Maintained
9160 F:      drivers/net/wireless/realtek/rtlwifi/
9161 F:      drivers/net/wireless/realtek/rtlwifi/rtl8192ce/
9162
9163 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
9164 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
9165 L:      linux-wireless@vger.kernel.org
9166 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8723au-mac80211
9167 S:      Maintained
9168 F:      drivers/net/wireless/realtek/rtl8xxxu/
9169
9170 S3 SAVAGE FRAMEBUFFER DRIVER
9171 M:      Antonino Daplas <adaplas@gmail.com>
9172 L:      linux-fbdev@vger.kernel.org
9173 S:      Maintained
9174 F:      drivers/video/fbdev/savage/
9175
9176 S390
9177 M:      Martin Schwidefsky <schwidefsky@de.ibm.com>
9178 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
9179 L:      linux-s390@vger.kernel.org
9180 W:      http://www.ibm.com/developerworks/linux/linux390/
9181 S:      Supported
9182 F:      arch/s390/
9183 F:      drivers/s390/
9184 F:      Documentation/s390/
9185 F:      Documentation/DocBook/s390*
9186
9187 S390 COMMON I/O LAYER
9188 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
9189 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
9190 L:      linux-s390@vger.kernel.org
9191 W:      http://www.ibm.com/developerworks/linux/linux390/
9192 S:      Supported
9193 F:      drivers/s390/cio/
9194
9195 S390 DASD DRIVER
9196 M:      Stefan Weinhuber <wein@de.ibm.com>
9197 M:      Stefan Haberland <stefan.haberland@de.ibm.com>
9198 L:      linux-s390@vger.kernel.org
9199 W:      http://www.ibm.com/developerworks/linux/linux390/
9200 S:      Supported
9201 F:      drivers/s390/block/dasd*
9202 F:      block/partitions/ibm.c
9203
9204 S390 NETWORK DRIVERS
9205 M:      Ursula Braun <ubraun@linux.vnet.ibm.com>
9206 L:      linux-s390@vger.kernel.org
9207 W:      http://www.ibm.com/developerworks/linux/linux390/
9208 S:      Supported
9209 F:      drivers/s390/net/
9210
9211 S390 PCI SUBSYSTEM
9212 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
9213 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
9214 L:      linux-s390@vger.kernel.org
9215 W:      http://www.ibm.com/developerworks/linux/linux390/
9216 S:      Supported
9217 F:      arch/s390/pci/
9218 F:      drivers/pci/hotplug/s390_pci_hpc.c
9219
9220 S390 ZCRYPT DRIVER
9221 M:      Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
9222 L:      linux-s390@vger.kernel.org
9223 W:      http://www.ibm.com/developerworks/linux/linux390/
9224 S:      Supported
9225 F:      drivers/s390/crypto/
9226
9227 S390 ZFCP DRIVER
9228 M:      Steffen Maier <maier@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/scsi/zfcp_*
9233
9234 S390 IUCV NETWORK LAYER
9235 M:      Ursula Braun <ubraun@linux.vnet.ibm.com>
9236 L:      linux-s390@vger.kernel.org
9237 W:      http://www.ibm.com/developerworks/linux/linux390/
9238 S:      Supported
9239 F:      drivers/s390/net/*iucv*
9240 F:      include/net/iucv/
9241 F:      net/iucv/
9242
9243 S390 IOMMU (PCI)
9244 M:      Gerald Schaefer <gerald.schaefer@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/iommu/s390-iommu.c
9249
9250 S3C24XX SD/MMC Driver
9251 M:      Ben Dooks <ben-linux@fluff.org>
9252 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9253 S:      Supported
9254 F:      drivers/mmc/host/s3cmci.*
9255
9256 SAA6588 RDS RECEIVER DRIVER
9257 M:      Hans Verkuil <hverkuil@xs4all.nl>
9258 L:      linux-media@vger.kernel.org
9259 T:      git git://linuxtv.org/media_tree.git
9260 W:      https://linuxtv.org
9261 S:      Odd Fixes
9262 F:      drivers/media/i2c/saa6588*
9263
9264 SAA7134 VIDEO4LINUX DRIVER
9265 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9266 L:      linux-media@vger.kernel.org
9267 W:      https://linuxtv.org
9268 T:      git git://linuxtv.org/media_tree.git
9269 S:      Odd fixes
9270 F:      Documentation/video4linux/*.saa7134
9271 F:      drivers/media/pci/saa7134/
9272
9273 SAA7146 VIDEO4LINUX-2 DRIVER
9274 M:      Hans Verkuil <hverkuil@xs4all.nl>
9275 L:      linux-media@vger.kernel.org
9276 T:      git git://linuxtv.org/media_tree.git
9277 S:      Maintained
9278 F:      drivers/media/common/saa7146/
9279 F:      drivers/media/pci/saa7146/
9280 F:      include/media/saa7146*
9281
9282 SAMSUNG LAPTOP DRIVER
9283 M:      Corentin Chary <corentin.chary@gmail.com>
9284 L:      platform-driver-x86@vger.kernel.org
9285 S:      Maintained
9286 F:      drivers/platform/x86/samsung-laptop.c
9287
9288 SAMSUNG AUDIO (ASoC) DRIVERS
9289 M:      Sangbeom Kim <sbkim73@samsung.com>
9290 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9291 S:      Supported
9292 F:      sound/soc/samsung/
9293
9294 SAMSUNG FRAMEBUFFER DRIVER
9295 M:      Jingoo Han <jingoohan1@gmail.com>
9296 L:      linux-fbdev@vger.kernel.org
9297 S:      Maintained
9298 F:      drivers/video/fbdev/s3c-fb.c
9299
9300 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
9301 M:      Sangbeom Kim <sbkim73@samsung.com>
9302 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
9303 L:      linux-kernel@vger.kernel.org
9304 L:      linux-samsung-soc@vger.kernel.org
9305 S:      Supported
9306 F:      drivers/mfd/sec*.c
9307 F:      drivers/regulator/s2m*.c
9308 F:      drivers/regulator/s5m*.c
9309 F:      drivers/clk/clk-s2mps11.c
9310 F:      drivers/rtc/rtc-s5m.c
9311 F:      include/linux/mfd/samsung/
9312 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
9313 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
9314 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
9315 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
9316
9317 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
9318 M:      Kyungmin Park <kyungmin.park@samsung.com>
9319 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
9320 L:      linux-media@vger.kernel.org
9321 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
9322 S:      Supported
9323 F:      drivers/media/platform/exynos4-is/
9324
9325 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
9326 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
9327 L:      linux-media@vger.kernel.org
9328 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9329 S:      Maintained
9330 F:      drivers/media/platform/s3c-camif/
9331 F:      include/media/drv-intf/s3c_camif.h
9332
9333 SAMSUNG S5C73M3 CAMERA DRIVER
9334 M:      Kyungmin Park <kyungmin.park@samsung.com>
9335 M:      Andrzej Hajda <a.hajda@samsung.com>
9336 L:      linux-media@vger.kernel.org
9337 S:      Supported
9338 F:      drivers/media/i2c/s5c73m3/*
9339
9340 SAMSUNG S5K5BAF CAMERA DRIVER
9341 M:      Kyungmin Park <kyungmin.park@samsung.com>
9342 M:      Andrzej Hajda <a.hajda@samsung.com>
9343 L:      linux-media@vger.kernel.org
9344 S:      Supported
9345 F:      drivers/media/i2c/s5k5baf.c
9346
9347 SAMSUNG S3FWRN5 NFC DRIVER
9348 M:      Robert Baldyga <r.baldyga@samsung.com>
9349 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
9350 S:      Supported
9351 F:      drivers/nfc/s3fwrn5
9352
9353 SAMSUNG SOC CLOCK DRIVERS
9354 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
9355 M:      Tomasz Figa <tomasz.figa@gmail.com>
9356 S:      Supported
9357 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9358 F:      drivers/clk/samsung/
9359
9360 SAMSUNG SXGBE DRIVERS
9361 M:      Byungho An <bh74.an@samsung.com>
9362 M:      Girish K S <ks.giri@samsung.com>
9363 M:      Vipul Pandya <vipul.pandya@samsung.com>
9364 S:      Supported
9365 L:      netdev@vger.kernel.org
9366 F:      drivers/net/ethernet/samsung/sxgbe/
9367
9368 SAMSUNG THERMAL DRIVER
9369 M:      Lukasz Majewski <l.majewski@samsung.com>
9370 L:      linux-pm@vger.kernel.org
9371 L:      linux-samsung-soc@vger.kernel.org
9372 S:      Supported
9373 T:      https://github.com/lmajewski/linux-samsung-thermal.git
9374 F:      drivers/thermal/samsung/
9375
9376 SAMSUNG USB2 PHY DRIVER
9377 M:      Kamil Debski <k.debski@samsung.com>
9378 L:      linux-kernel@vger.kernel.org
9379 S:      Supported
9380 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
9381 F:      Documentation/phy/samsung-usb2.txt
9382 F:      drivers/phy/phy-exynos4210-usb2.c
9383 F:      drivers/phy/phy-exynos4x12-usb2.c
9384 F:      drivers/phy/phy-exynos5250-usb2.c
9385 F:      drivers/phy/phy-s5pv210-usb2.c
9386 F:      drivers/phy/phy-samsung-usb2.c
9387 F:      drivers/phy/phy-samsung-usb2.h
9388
9389 SERIAL DRIVERS
9390 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9391 L:      linux-serial@vger.kernel.org
9392 S:      Maintained
9393 F:      drivers/tty/serial/
9394
9395 SYNOPSYS DESIGNWARE DMAC DRIVER
9396 M:      Viresh Kumar <vireshk@kernel.org>
9397 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9398 S:      Maintained
9399 F:      include/linux/dma/dw.h
9400 F:      include/linux/platform_data/dma-dw.h
9401 F:      drivers/dma/dw/
9402
9403 SYNOPSYS DESIGNWARE ETHERNET QOS 4.10a driver
9404 M: Lars Persson <lars.persson@axis.com>
9405 L: netdev@vger.kernel.org
9406 S: Supported
9407 F: Documentation/devicetree/bindings/net/snps,dwc-qos-ethernet.txt
9408 F: drivers/net/ethernet/synopsys/dwc_eth_qos.c
9409
9410 SYNOPSYS DESIGNWARE I2C DRIVER
9411 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9412 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
9413 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9414 L:      linux-i2c@vger.kernel.org
9415 S:      Maintained
9416 F:      drivers/i2c/busses/i2c-designware-*
9417 F:      include/linux/platform_data/i2c-designware.h
9418
9419 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
9420 M:      Jaehoon Chung <jh80.chung@samsung.com>
9421 L:      linux-mmc@vger.kernel.org
9422 S:      Maintained
9423 F:      include/linux/mmc/dw_mmc.h
9424 F:      drivers/mmc/host/dw_mmc*
9425
9426 SYSTEM TRACE MODULE CLASS
9427 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
9428 S:      Maintained
9429 F:      Documentation/trace/stm.txt
9430 F:      drivers/hwtracing/stm/
9431 F:      include/linux/stm.h
9432 F:      include/uapi/linux/stm.h
9433
9434 THUNDERBOLT DRIVER
9435 M:      Andreas Noever <andreas.noever@gmail.com>
9436 S:      Maintained
9437 F:      drivers/thunderbolt/
9438
9439 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
9440 M:      John Stultz <john.stultz@linaro.org>
9441 M:      Thomas Gleixner <tglx@linutronix.de>
9442 L:      linux-kernel@vger.kernel.org
9443 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
9444 S:      Supported
9445 F:      include/linux/clocksource.h
9446 F:      include/linux/time.h
9447 F:      include/linux/timex.h
9448 F:      include/uapi/linux/time.h
9449 F:      include/uapi/linux/timex.h
9450 F:      kernel/time/clocksource.c
9451 F:      kernel/time/time*.c
9452 F:      kernel/time/alarmtimer.c
9453 F:      kernel/time/ntp.c
9454 F:      tools/testing/selftests/timers/
9455
9456 SC1200 WDT DRIVER
9457 M:      Zwane Mwaikambo <zwanem@gmail.com>
9458 S:      Maintained
9459 F:      drivers/watchdog/sc1200wdt.c
9460
9461 SCHEDULER
9462 M:      Ingo Molnar <mingo@redhat.com>
9463 M:      Peter Zijlstra <peterz@infradead.org>
9464 L:      linux-kernel@vger.kernel.org
9465 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
9466 S:      Maintained
9467 F:      kernel/sched/
9468 F:      include/linux/sched.h
9469 F:      include/uapi/linux/sched.h
9470 F:      include/linux/wait.h
9471
9472 SCORE ARCHITECTURE
9473 M:      Chen Liqin <liqin.linux@gmail.com>
9474 M:      Lennox Wu <lennox.wu@gmail.com>
9475 W:      http://www.sunplus.com
9476 S:      Supported
9477 F:      arch/score/
9478
9479 SYSTEM CONTROL & POWER INTERFACE (SCPI) Message Protocol drivers
9480 M:      Sudeep Holla <sudeep.holla@arm.com>
9481 L:      linux-arm-kernel@lists.infradead.org
9482 S:      Maintained
9483 F:      Documentation/devicetree/bindings/arm/arm,scpi.txt
9484 F:      drivers/clk/clk-scpi.c
9485 F:      drivers/cpufreq/scpi-cpufreq.c
9486 F:      drivers/firmware/arm_scpi.c
9487 F:      include/linux/scpi_protocol.h
9488
9489 SCSI CDROM DRIVER
9490 M:      Jens Axboe <axboe@kernel.dk>
9491 L:      linux-scsi@vger.kernel.org
9492 W:      http://www.kernel.dk
9493 S:      Maintained
9494 F:      drivers/scsi/sr*
9495
9496 SCSI RDMA PROTOCOL (SRP) INITIATOR
9497 M:      Bart Van Assche <bart.vanassche@sandisk.com>
9498 L:      linux-rdma@vger.kernel.org
9499 S:      Supported
9500 W:      http://www.openfabrics.org
9501 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9502 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
9503 F:      drivers/infiniband/ulp/srp/
9504 F:      include/scsi/srp.h
9505
9506 SCSI SG DRIVER
9507 M:      Doug Gilbert <dgilbert@interlog.com>
9508 L:      linux-scsi@vger.kernel.org
9509 W:      http://sg.danny.cz/sg
9510 S:      Maintained
9511 F:      Documentation/scsi/scsi-generic.txt
9512 F:      drivers/scsi/sg.c
9513 F:      include/scsi/sg.h
9514
9515 SCSI SUBSYSTEM
9516 M:      "James E.J. Bottomley" <JBottomley@odin.com>
9517 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
9518 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
9519 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
9520 L:      linux-scsi@vger.kernel.org
9521 S:      Maintained
9522 F:      drivers/scsi/
9523 F:      include/scsi/
9524
9525 SCSI TAPE DRIVER
9526 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
9527 L:      linux-scsi@vger.kernel.org
9528 S:      Maintained
9529 F:      Documentation/scsi/st.txt
9530 F:      drivers/scsi/st.*
9531 F:      drivers/scsi/st_*.h
9532
9533 SCTP PROTOCOL
9534 M:      Vlad Yasevich <vyasevich@gmail.com>
9535 M:      Neil Horman <nhorman@tuxdriver.com>
9536 L:      linux-sctp@vger.kernel.org
9537 W:      http://lksctp.sourceforge.net
9538 S:      Maintained
9539 F:      Documentation/networking/sctp.txt
9540 F:      include/linux/sctp.h
9541 F:      include/uapi/linux/sctp.h
9542 F:      include/net/sctp/
9543 F:      net/sctp/
9544
9545 SCx200 CPU SUPPORT
9546 M:      Jim Cromie <jim.cromie@gmail.com>
9547 S:      Odd Fixes
9548 F:      Documentation/i2c/busses/scx200_acb
9549 F:      arch/x86/platform/scx200/
9550 F:      drivers/watchdog/scx200_wdt.c
9551 F:      drivers/i2c/busses/scx200*
9552 F:      drivers/mtd/maps/scx200_docflash.c
9553 F:      include/linux/scx200.h
9554
9555 SCx200 GPIO DRIVER
9556 M:      Jim Cromie <jim.cromie@gmail.com>
9557 S:      Maintained
9558 F:      drivers/char/scx200_gpio.c
9559 F:      include/linux/scx200_gpio.h
9560
9561 SCx200 HRT CLOCKSOURCE DRIVER
9562 M:      Jim Cromie <jim.cromie@gmail.com>
9563 S:      Maintained
9564 F:      drivers/clocksource/scx200_hrt.c
9565
9566 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
9567 M:      Sascha Sommer <saschasommer@freenet.de>
9568 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
9569 S:      Maintained
9570 F:      drivers/mmc/host/sdricoh_cs.c
9571
9572 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
9573 L:      linux-mmc@vger.kernel.org
9574 S:      Orphan
9575 F:      drivers/mmc/host/sdhci.*
9576 F:      drivers/mmc/host/sdhci-pltfm.[ch]
9577
9578 SECURE COMPUTING
9579 M:      Kees Cook <keescook@chromium.org>
9580 R:      Andy Lutomirski <luto@amacapital.net>
9581 R:      Will Drewry <wad@chromium.org>
9582 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
9583 S:      Supported
9584 F:      kernel/seccomp.c
9585 F:      include/uapi/linux/seccomp.h
9586 F:      include/linux/seccomp.h
9587 F:      tools/testing/selftests/seccomp/*
9588 K:      \bsecure_computing
9589 K:      \bTIF_SECCOMP\b
9590
9591 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
9592 M:      Ben Dooks <ben-linux@fluff.org>
9593 M:      Jaehoon Chung <jh80.chung@samsung.com>
9594 L:      linux-mmc@vger.kernel.org
9595 S:      Maintained
9596 F:      drivers/mmc/host/sdhci-s3c*
9597
9598 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
9599 M:      Viresh Kumar <vireshk@kernel.org>
9600 L:      spear-devel@list.st.com
9601 L:      linux-mmc@vger.kernel.org
9602 S:      Maintained
9603 F:      drivers/mmc/host/sdhci-spear.c
9604
9605 SECURITY SUBSYSTEM
9606 M:      James Morris <james.l.morris@oracle.com>
9607 M:      "Serge E. Hallyn" <serge@hallyn.com>
9608 L:      linux-security-module@vger.kernel.org (suggested Cc:)
9609 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
9610 W:      http://kernsec.org/
9611 S:      Supported
9612 F:      security/
9613
9614 SECURITY CONTACT
9615 M:      Security Officers <security@kernel.org>
9616 S:      Supported
9617
9618 SELINUX SECURITY MODULE
9619 M:      Paul Moore <paul@paul-moore.com>
9620 M:      Stephen Smalley <sds@tycho.nsa.gov>
9621 M:      Eric Paris <eparis@parisplace.org>
9622 L:      selinux@tycho.nsa.gov (moderated for non-subscribers)
9623 W:      http://selinuxproject.org
9624 T:      git git://git.infradead.org/users/pcmoore/selinux
9625 S:      Supported
9626 F:      include/linux/selinux*
9627 F:      security/selinux/
9628 F:      scripts/selinux/
9629
9630 APPARMOR SECURITY MODULE
9631 M:      John Johansen <john.johansen@canonical.com>
9632 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
9633 W:      apparmor.wiki.kernel.org
9634 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
9635 S:      Supported
9636 F:      security/apparmor/
9637
9638 YAMA SECURITY MODULE
9639 M:      Kees Cook <keescook@chromium.org>
9640 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
9641 S:      Supported
9642 F:      security/yama/
9643
9644 SENSABLE PHANTOM
9645 M:      Jiri Slaby <jirislaby@gmail.com>
9646 S:      Maintained
9647 F:      drivers/misc/phantom.c
9648 F:      include/uapi/linux/phantom.h
9649
9650 SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
9651 M:      Jayamohan Kallickal <jayamohan.kallickal@avagotech.com>
9652 M:      Ketan Mukadam <ketan.mukadam@avagotech.com>
9653 M:      John Soni Jose <sony.john@avagotech.com>
9654 L:      linux-scsi@vger.kernel.org
9655 W:      http://www.avagotech.com
9656 S:      Supported
9657 F:      drivers/scsi/be2iscsi/
9658
9659 Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER
9660 M:      Sathya Perla <sathya.perla@avagotech.com>
9661 M:      Ajit Khaparde <ajit.khaparde@avagotech.com>
9662 M:      Padmanabh Ratnakar <padmanabh.ratnakar@avagotech.com>
9663 M:      Sriharsha Basavapatna <sriharsha.basavapatna@avagotech.com>
9664 L:      netdev@vger.kernel.org
9665 W:      http://www.emulex.com
9666 S:      Supported
9667 F:      drivers/net/ethernet/emulex/benet/
9668
9669 EMULEX ONECONNECT ROCE DRIVER
9670 M:      Selvin Xavier <selvin.xavier@avagotech.com>
9671 M:      Devesh Sharma <devesh.sharma@avagotech.com>
9672 M:      Mitesh Ahuja <mitesh.ahuja@avagotech.com>
9673 L:      linux-rdma@vger.kernel.org
9674 W:      http://www.emulex.com
9675 S:      Supported
9676 F:      drivers/infiniband/hw/ocrdma/
9677
9678 SFC NETWORK DRIVER
9679 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
9680 M:      Shradha Shah <sshah@solarflare.com>
9681 L:      netdev@vger.kernel.org
9682 S:      Supported
9683 F:      drivers/net/ethernet/sfc/
9684
9685 SGI GRU DRIVER
9686 M:      Dimitri Sivanich <sivanich@sgi.com>
9687 S:      Maintained
9688 F:      drivers/misc/sgi-gru/
9689
9690 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
9691 M:      Pat Gefre <pfg@sgi.com>
9692 L:      linux-ia64@vger.kernel.org
9693 S:      Supported
9694 F:      Documentation/ia64/serial.txt
9695 F:      drivers/tty/serial/ioc?_serial.c
9696 F:      include/linux/ioc?.h
9697
9698 SGI XP/XPC/XPNET DRIVER
9699 M:      Cliff Whickman <cpw@sgi.com>
9700 M:      Robin Holt <robinmholt@gmail.com>
9701 S:      Maintained
9702 F:      drivers/misc/sgi-xp/
9703
9704 SI2157 MEDIA DRIVER
9705 M:      Antti Palosaari <crope@iki.fi>
9706 L:      linux-media@vger.kernel.org
9707 W:      https://linuxtv.org
9708 W:      http://palosaari.fi/linux/
9709 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9710 T:      git git://linuxtv.org/anttip/media_tree.git
9711 S:      Maintained
9712 F:      drivers/media/tuners/si2157*
9713
9714 SI2168 MEDIA DRIVER
9715 M:      Antti Palosaari <crope@iki.fi>
9716 L:      linux-media@vger.kernel.org
9717 W:      https://linuxtv.org
9718 W:      http://palosaari.fi/linux/
9719 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9720 T:      git git://linuxtv.org/anttip/media_tree.git
9721 S:      Maintained
9722 F:      drivers/media/dvb-frontends/si2168*
9723
9724 SI470X FM RADIO RECEIVER I2C DRIVER
9725 M:      Hans Verkuil <hverkuil@xs4all.nl>
9726 L:      linux-media@vger.kernel.org
9727 T:      git git://linuxtv.org/media_tree.git
9728 W:      https://linuxtv.org
9729 S:      Odd Fixes
9730 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
9731
9732 SI470X FM RADIO RECEIVER USB DRIVER
9733 M:      Hans Verkuil <hverkuil@xs4all.nl>
9734 L:      linux-media@vger.kernel.org
9735 T:      git git://linuxtv.org/media_tree.git
9736 W:      https://linuxtv.org
9737 S:      Maintained
9738 F:      drivers/media/radio/si470x/radio-si470x-common.c
9739 F:      drivers/media/radio/si470x/radio-si470x.h
9740 F:      drivers/media/radio/si470x/radio-si470x-usb.c
9741
9742 SI4713 FM RADIO TRANSMITTER I2C DRIVER
9743 M:      Eduardo Valentin <edubezval@gmail.com>
9744 L:      linux-media@vger.kernel.org
9745 T:      git git://linuxtv.org/media_tree.git
9746 W:      https://linuxtv.org
9747 S:      Odd Fixes
9748 F:      drivers/media/radio/si4713/si4713.?
9749
9750 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
9751 M:      Eduardo Valentin <edubezval@gmail.com>
9752 L:      linux-media@vger.kernel.org
9753 T:      git git://linuxtv.org/media_tree.git
9754 W:      https://linuxtv.org
9755 S:      Odd Fixes
9756 F:      drivers/media/radio/si4713/radio-platform-si4713.c
9757
9758 SI4713 FM RADIO TRANSMITTER USB DRIVER
9759 M:      Hans Verkuil <hverkuil@xs4all.nl>
9760 L:      linux-media@vger.kernel.org
9761 T:      git git://linuxtv.org/media_tree.git
9762 W:      https://linuxtv.org
9763 S:      Maintained
9764 F:      drivers/media/radio/si4713/radio-usb-si4713.c
9765
9766 SIANO DVB DRIVER
9767 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9768 L:      linux-media@vger.kernel.org
9769 W:      https://linuxtv.org
9770 T:      git git://linuxtv.org/media_tree.git
9771 S:      Odd fixes
9772 F:      drivers/media/common/siano/
9773 F:      drivers/media/usb/siano/
9774 F:      drivers/media/usb/siano/
9775 F:      drivers/media/mmc/siano/
9776
9777 SIMPLEFB FB DRIVER
9778 M:      Hans de Goede <hdegoede@redhat.com>
9779 L:      linux-fbdev@vger.kernel.org
9780 S:      Maintained
9781 F:      Documentation/devicetree/bindings/display/simple-framebuffer.txt
9782 F:      drivers/video/fbdev/simplefb.c
9783 F:      include/linux/platform_data/simplefb.h
9784
9785 SH_VEU V4L2 MEM2MEM DRIVER
9786 L:      linux-media@vger.kernel.org
9787 S:      Orphan
9788 F:      drivers/media/platform/sh_veu.c
9789
9790 SH_VOU V4L2 OUTPUT DRIVER
9791 L:      linux-media@vger.kernel.org
9792 S:      Orphan
9793 F:      drivers/media/platform/sh_vou.c
9794 F:      include/media/drv-intf/sh_vou.h
9795
9796 SIMPLE FIRMWARE INTERFACE (SFI)
9797 M:      Len Brown <lenb@kernel.org>
9798 L:      sfi-devel@simplefirmware.org
9799 W:      http://simplefirmware.org/
9800 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
9801 S:      Supported
9802 F:      arch/x86/platform/sfi/
9803 F:      drivers/sfi/
9804 F:      include/linux/sfi*.h
9805
9806 SIMTEC EB110ATX (Chalice CATS)
9807 P:      Ben Dooks
9808 P:      Vincent Sanders <vince@simtec.co.uk>
9809 M:      Simtec Linux Team <linux@simtec.co.uk>
9810 W:      http://www.simtec.co.uk/products/EB110ATX/
9811 S:      Supported
9812
9813 SIMTEC EB2410ITX (BAST)
9814 P:      Ben Dooks
9815 P:      Vincent Sanders <vince@simtec.co.uk>
9816 M:      Simtec Linux Team <linux@simtec.co.uk>
9817 W:      http://www.simtec.co.uk/products/EB2410ITX/
9818 S:      Supported
9819 F:      arch/arm/mach-s3c24xx/mach-bast.c
9820 F:      arch/arm/mach-s3c24xx/bast-ide.c
9821 F:      arch/arm/mach-s3c24xx/bast-irq.c
9822
9823 TI DAVINCI MACHINE SUPPORT
9824 M:      Sekhar Nori <nsekhar@ti.com>
9825 M:      Kevin Hilman <khilman@deeprootsystems.com>
9826 T:      git git://gitorious.org/linux-davinci/linux-davinci.git
9827 Q:      http://patchwork.kernel.org/project/linux-davinci/list/
9828 S:      Supported
9829 F:      arch/arm/mach-davinci/
9830 F:      drivers/i2c/busses/i2c-davinci.c
9831
9832 TI DAVINCI SERIES MEDIA DRIVER
9833 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9834 L:      linux-media@vger.kernel.org
9835 W:      https://linuxtv.org
9836 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9837 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9838 S:      Maintained
9839 F:      drivers/media/platform/davinci/
9840 F:      include/media/davinci/
9841
9842 TI AM437X VPFE DRIVER
9843 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9844 L:      linux-media@vger.kernel.org
9845 W:      https://linuxtv.org
9846 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9847 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9848 S:      Maintained
9849 F:      drivers/media/platform/am437x/
9850
9851 OV2659 OMNIVISION SENSOR DRIVER
9852 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9853 L:      linux-media@vger.kernel.org
9854 W:      https://linuxtv.org
9855 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9856 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9857 S:      Maintained
9858 F:      drivers/media/i2c/ov2659.c
9859 F:      include/media/i2c/ov2659.h
9860
9861 SILICON MOTION SM712 FRAME BUFFER DRIVER
9862 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
9863 M:      Teddy Wang <teddy.wang@siliconmotion.com>
9864 M:      Sudip Mukherjee <sudip@vectorindia.org>
9865 L:      linux-fbdev@vger.kernel.org
9866 S:      Maintained
9867 F:      drivers/video/fbdev/sm712*
9868 F:      Documentation/fb/sm712fb.txt
9869
9870 SIS 190 ETHERNET DRIVER
9871 M:      Francois Romieu <romieu@fr.zoreil.com>
9872 L:      netdev@vger.kernel.org
9873 S:      Maintained
9874 F:      drivers/net/ethernet/sis/sis190.c
9875
9876 SIS 900/7016 FAST ETHERNET DRIVER
9877 M:      Daniele Venzano <venza@brownhat.org>
9878 W:      http://www.brownhat.org/sis900.html
9879 L:      netdev@vger.kernel.org
9880 S:      Maintained
9881 F:      drivers/net/ethernet/sis/sis900.*
9882
9883 SIS FRAMEBUFFER DRIVER
9884 M:      Thomas Winischhofer <thomas@winischhofer.net>
9885 W:      http://www.winischhofer.net/linuxsisvga.shtml
9886 S:      Maintained
9887 F:      Documentation/fb/sisfb.txt
9888 F:      drivers/video/fbdev/sis/
9889 F:      include/video/sisfb.h
9890
9891 SIS USB2VGA DRIVER
9892 M:      Thomas Winischhofer <thomas@winischhofer.net>
9893 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
9894 S:      Maintained
9895 F:      drivers/usb/misc/sisusbvga/
9896
9897 SLAB ALLOCATOR
9898 M:      Christoph Lameter <cl@linux.com>
9899 M:      Pekka Enberg <penberg@kernel.org>
9900 M:      David Rientjes <rientjes@google.com>
9901 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
9902 M:      Andrew Morton <akpm@linux-foundation.org>
9903 L:      linux-mm@kvack.org
9904 S:      Maintained
9905 F:      include/linux/sl?b*.h
9906 F:      mm/sl?b*
9907
9908 SLEEPABLE READ-COPY UPDATE (SRCU)
9909 M:      Lai Jiangshan <jiangshanlai@gmail.com>
9910 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9911 M:      Josh Triplett <josh@joshtriplett.org>
9912 R:      Steven Rostedt <rostedt@goodmis.org>
9913 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9914 L:      linux-kernel@vger.kernel.org
9915 W:      http://www.rdrop.com/users/paulmck/RCU/
9916 S:      Supported
9917 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9918 F:      include/linux/srcu.h
9919 F:      kernel/rcu/srcu.c
9920
9921 SMACK SECURITY MODULE
9922 M:      Casey Schaufler <casey@schaufler-ca.com>
9923 L:      linux-security-module@vger.kernel.org
9924 W:      http://schaufler-ca.com
9925 T:      git git://git.gitorious.org/smack-next/kernel.git
9926 S:      Maintained
9927 F:      Documentation/security/Smack.txt
9928 F:      security/smack/
9929
9930 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
9931 M:      Kevin Hilman <khilman@kernel.org>
9932 M:      Nishanth Menon <nm@ti.com>
9933 S:      Maintained
9934 F:      drivers/power/avs/
9935 F:      include/linux/power/smartreflex.h
9936 L:      linux-pm@vger.kernel.org
9937
9938 SMC91x ETHERNET DRIVER
9939 M:      Nicolas Pitre <nico@fluxnic.net>
9940 S:      Odd Fixes
9941 F:      drivers/net/ethernet/smsc/smc91x.*
9942
9943 SMIA AND SMIA++ IMAGE SENSOR DRIVER
9944 M:      Sakari Ailus <sakari.ailus@iki.fi>
9945 L:      linux-media@vger.kernel.org
9946 S:      Maintained
9947 F:      drivers/media/i2c/smiapp/
9948 F:      include/media/i2c/smiapp.h
9949 F:      drivers/media/i2c/smiapp-pll.c
9950 F:      drivers/media/i2c/smiapp-pll.h
9951 F:      include/uapi/linux/smiapp.h
9952 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
9953
9954 SMM665 HARDWARE MONITOR DRIVER
9955 M:      Guenter Roeck <linux@roeck-us.net>
9956 L:      lm-sensors@lm-sensors.org
9957 S:      Maintained
9958 F:      Documentation/hwmon/smm665
9959 F:      drivers/hwmon/smm665.c
9960
9961 SMSC EMC2103 HARDWARE MONITOR DRIVER
9962 M:      Steve Glendinning <steve.glendinning@shawell.net>
9963 L:      lm-sensors@lm-sensors.org
9964 S:      Maintained
9965 F:      Documentation/hwmon/emc2103
9966 F:      drivers/hwmon/emc2103.c
9967
9968 SMSC SCH5627 HARDWARE MONITOR DRIVER
9969 M:      Hans de Goede <hdegoede@redhat.com>
9970 L:      lm-sensors@lm-sensors.org
9971 S:      Supported
9972 F:      Documentation/hwmon/sch5627
9973 F:      drivers/hwmon/sch5627.c
9974
9975 SMSC47B397 HARDWARE MONITOR DRIVER
9976 M:      Jean Delvare <jdelvare@suse.com>
9977 L:      lm-sensors@lm-sensors.org
9978 S:      Maintained
9979 F:      Documentation/hwmon/smsc47b397
9980 F:      drivers/hwmon/smsc47b397.c
9981
9982 SMSC911x ETHERNET DRIVER
9983 M:      Steve Glendinning <steve.glendinning@shawell.net>
9984 L:      netdev@vger.kernel.org
9985 S:      Maintained
9986 F:      include/linux/smsc911x.h
9987 F:      drivers/net/ethernet/smsc/smsc911x.*
9988
9989 SMSC9420 PCI ETHERNET DRIVER
9990 M:      Steve Glendinning <steve.glendinning@shawell.net>
9991 L:      netdev@vger.kernel.org
9992 S:      Maintained
9993 F:      drivers/net/ethernet/smsc/smsc9420.*
9994
9995 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
9996 M:      Steve Glendinning <steve.glendinning@shawell.net>
9997 L:      linux-fbdev@vger.kernel.org
9998 S:      Maintained
9999 F:      drivers/video/fbdev/smscufx.c
10000
10001 SOC-CAMERA V4L2 SUBSYSTEM
10002 M:      Guennadi Liakhovetski <g.liakhovetski@gmx.de>
10003 L:      linux-media@vger.kernel.org
10004 T:      git git://linuxtv.org/media_tree.git
10005 S:      Maintained
10006 F:      include/media/soc*
10007 F:      drivers/media/i2c/soc_camera/
10008 F:      drivers/media/platform/soc_camera/
10009
10010 SOEKRIS NET48XX LED SUPPORT
10011 M:      Chris Boot <bootc@bootc.net>
10012 S:      Maintained
10013 F:      drivers/leds/leds-net48xx.c
10014
10015 SOFTLOGIC 6x10 MPEG CODEC
10016 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
10017 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
10018 M:      Andrey Utkin <andrey.krieger.utkin@gmail.com>
10019 M:      Ismael Luceno <ismael@iodev.co.uk>
10020 L:      linux-media@vger.kernel.org
10021 S:      Supported
10022 F:      drivers/media/pci/solo6x10/
10023
10024 SOFTWARE RAID (Multiple Disks) SUPPORT
10025 L:      linux-raid@vger.kernel.org
10026 S:      Supported
10027 F:      drivers/md/
10028 F:      include/linux/raid/
10029 F:      include/uapi/linux/raid/
10030
10031 SONIC NETWORK DRIVER
10032 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
10033 L:      netdev@vger.kernel.org
10034 S:      Maintained
10035 F:      drivers/net/ethernet/natsemi/sonic.*
10036
10037 SONICS SILICON BACKPLANE DRIVER (SSB)
10038 M:      Michael Buesch <m@bues.ch>
10039 L:      netdev@vger.kernel.org
10040 S:      Maintained
10041 F:      drivers/ssb/
10042 F:      include/linux/ssb/
10043
10044 SONY VAIO CONTROL DEVICE DRIVER
10045 M:      Mattia Dongili <malattia@linux.it>
10046 L:      platform-driver-x86@vger.kernel.org
10047 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
10048 S:      Maintained
10049 F:      Documentation/laptops/sony-laptop.txt
10050 F:      drivers/char/sonypi.c
10051 F:      drivers/platform/x86/sony-laptop.c
10052 F:      include/linux/sony-laptop.h
10053
10054 SONY MEMORYSTICK CARD SUPPORT
10055 M:      Alex Dubov <oakad@yahoo.com>
10056 W:      http://tifmxx.berlios.de/
10057 S:      Maintained
10058 F:      drivers/memstick/host/tifm_ms.c
10059
10060 SONY MEMORYSTICK STANDARD SUPPORT
10061 M:      Maxim Levitsky <maximlevitsky@gmail.com>
10062 S:      Maintained
10063 F:      drivers/memstick/core/ms_block.*
10064
10065 SOUND
10066 M:      Jaroslav Kysela <perex@perex.cz>
10067 M:      Takashi Iwai <tiwai@suse.com>
10068 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10069 W:      http://www.alsa-project.org/
10070 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
10071 T:      git git://git.alsa-project.org/alsa-kernel.git
10072 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
10073 S:      Maintained
10074 F:      Documentation/sound/
10075 F:      include/sound/
10076 F:      include/uapi/sound/
10077 F:      sound/
10078
10079 SOUND - COMPRESSED AUDIO
10080 M:      Vinod Koul <vinod.koul@intel.com>
10081 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10082 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
10083 S:      Supported
10084 F:      Documentation/sound/alsa/compress_offload.txt
10085 F:      include/sound/compress_driver.h
10086 F:      include/uapi/sound/compress_*
10087 F:      sound/core/compress_offload.c
10088 F:      sound/soc/soc-compress.c
10089
10090 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
10091 M:      Liam Girdwood <lgirdwood@gmail.com>
10092 M:      Mark Brown <broonie@kernel.org>
10093 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
10094 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10095 W:      http://alsa-project.org/main/index.php/ASoC
10096 S:      Supported
10097 F:      Documentation/sound/alsa/soc/
10098 F:      sound/soc/
10099 F:      include/sound/soc*
10100
10101 SOUND - DMAENGINE HELPERS
10102 M:      Lars-Peter Clausen <lars@metafoo.de>
10103 S:      Supported
10104 F:      include/sound/dmaengine_pcm.h
10105 F:      sound/core/pcm_dmaengine.c
10106 F:      sound/soc/soc-generic-dmaengine-pcm.c
10107
10108 SP2 MEDIA DRIVER
10109 M:      Olli Salonen <olli.salonen@iki.fi>
10110 L:      linux-media@vger.kernel.org
10111 W:      https://linuxtv.org
10112 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10113 S:      Maintained
10114 F:      drivers/media/dvb-frontends/sp2*
10115
10116 SPARC + UltraSPARC (sparc/sparc64)
10117 M:      "David S. Miller" <davem@davemloft.net>
10118 L:      sparclinux@vger.kernel.org
10119 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
10120 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
10121 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
10122 S:      Maintained
10123 F:      arch/sparc/
10124 F:      drivers/sbus/
10125
10126 SPARC SERIAL DRIVERS
10127 M:      "David S. Miller" <davem@davemloft.net>
10128 L:      sparclinux@vger.kernel.org
10129 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
10130 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
10131 S:      Maintained
10132 F:      include/linux/sunserialcore.h
10133 F:      drivers/tty/serial/suncore.c
10134 F:      drivers/tty/serial/sunhv.c
10135 F:      drivers/tty/serial/sunsab.c
10136 F:      drivers/tty/serial/sunsab.h
10137 F:      drivers/tty/serial/sunsu.c
10138 F:      drivers/tty/serial/sunzilog.c
10139 F:      drivers/tty/serial/sunzilog.h
10140
10141 SPARSE CHECKER
10142 M:      "Christopher Li" <sparse@chrisli.org>
10143 L:      linux-sparse@vger.kernel.org
10144 W:      https://sparse.wiki.kernel.org/
10145 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
10146 T:      git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
10147 S:      Maintained
10148 F:      include/linux/compiler.h
10149
10150 SPEAR PLATFORM SUPPORT
10151 M:      Viresh Kumar <vireshk@kernel.org>
10152 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
10153 L:      spear-devel@list.st.com
10154 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10155 W:      http://www.st.com/spear
10156 S:      Maintained
10157 F:      arch/arm/mach-spear/
10158
10159 SPEAR CLOCK FRAMEWORK SUPPORT
10160 M:      Viresh Kumar <vireshk@kernel.org>
10161 L:      spear-devel@list.st.com
10162 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10163 W:      http://www.st.com/spear
10164 S:      Maintained
10165 F:      drivers/clk/spear/
10166
10167 SPI SUBSYSTEM
10168 M:      Mark Brown <broonie@kernel.org>
10169 L:      linux-spi@vger.kernel.org
10170 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
10171 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
10172 S:      Maintained
10173 F:      Documentation/spi/
10174 F:      drivers/spi/
10175 F:      include/linux/spi/
10176 F:      include/uapi/linux/spi/
10177
10178 SPIDERNET NETWORK DRIVER for CELL
10179 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
10180 L:      netdev@vger.kernel.org
10181 S:      Supported
10182 F:      Documentation/networking/spider_net.txt
10183 F:      drivers/net/ethernet/toshiba/spider_net*
10184
10185 SPU FILE SYSTEM
10186 M:      Jeremy Kerr <jk@ozlabs.org>
10187 L:      linuxppc-dev@lists.ozlabs.org
10188 W:      http://www.ibm.com/developerworks/power/cell/
10189 S:      Supported
10190 F:      Documentation/filesystems/spufs.txt
10191 F:      arch/powerpc/platforms/cell/spufs/
10192
10193 SQUASHFS FILE SYSTEM
10194 M:      Phillip Lougher <phillip@squashfs.org.uk>
10195 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
10196 W:      http://squashfs.org.uk
10197 S:      Maintained
10198 F:      Documentation/filesystems/squashfs.txt
10199 F:      fs/squashfs/
10200
10201 SRM (Alpha) environment access
10202 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
10203 S:      Maintained
10204 F:      arch/alpha/kernel/srm_env.c
10205
10206 STABLE BRANCH
10207 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10208 L:      stable@vger.kernel.org
10209 S:      Supported
10210 F:      Documentation/stable_kernel_rules.txt
10211
10212 STAGING SUBSYSTEM
10213 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10214 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
10215 L:      devel@driverdev.osuosl.org
10216 S:      Supported
10217 F:      drivers/staging/
10218
10219 STAGING - COMEDI
10220 M:      Ian Abbott <abbotti@mev.co.uk>
10221 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
10222 S:      Odd Fixes
10223 F:      drivers/staging/comedi/
10224
10225 STAGING - FLARION FT1000 DRIVERS
10226 M:      Marek Belisko <marek.belisko@gmail.com>
10227 S:      Odd Fixes
10228 F:      drivers/staging/ft1000/
10229
10230 STAGING - INDUSTRIAL IO
10231 M:      Jonathan Cameron <jic23@kernel.org>
10232 L:      linux-iio@vger.kernel.org
10233 S:      Odd Fixes
10234 F:      drivers/staging/iio/
10235
10236 STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
10237 M:      Jarod Wilson <jarod@wilsonet.com>
10238 W:      http://www.lirc.org/
10239 S:      Odd Fixes
10240 F:      drivers/staging/media/lirc/
10241
10242 STAGING - LUSTRE PARALLEL FILESYSTEM
10243 M:      Oleg Drokin <oleg.drokin@intel.com>
10244 M:      Andreas Dilger <andreas.dilger@intel.com>
10245 L:      lustre-devel@lists.lustre.org (moderated for non-subscribers)
10246 W:      http://wiki.lustre.org/
10247 S:      Maintained
10248 F:      drivers/staging/lustre
10249
10250 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
10251 M:      Marc Dietrich <marvin24@gmx.de>
10252 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
10253 L:      linux-tegra@vger.kernel.org
10254 S:      Maintained
10255 F:      drivers/staging/nvec/
10256
10257 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
10258 M:      Jens Frederich <jfrederich@gmail.com>
10259 M:      Daniel Drake <dsd@laptop.org>
10260 M:      Jon Nettleton <jon.nettleton@gmail.com>
10261 W:      http://wiki.laptop.org/go/DCON
10262 S:      Maintained
10263 F:      drivers/staging/olpc_dcon/
10264
10265 STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
10266 M:      Willy Tarreau <willy@meta-x.org>
10267 S:      Odd Fixes
10268 F:      drivers/staging/panel/
10269
10270 STAGING - REALTEK RTL8712U DRIVERS
10271 M:      Larry Finger <Larry.Finger@lwfinger.net>
10272 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
10273 S:      Odd Fixes
10274 F:      drivers/staging/rtl8712/
10275
10276 STAGING - REALTEK RTL8723U WIRELESS DRIVER
10277 M:      Larry Finger <Larry.Finger@lwfinger.net>
10278 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
10279 L:      linux-wireless@vger.kernel.org
10280 S:      Maintained
10281 F:      drivers/staging/rtl8723au/
10282
10283 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
10284 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
10285 M:      Teddy Wang <teddy.wang@siliconmotion.com>
10286 M:      Sudip Mukherjee <sudip@vectorindia.org>
10287 L:      linux-fbdev@vger.kernel.org
10288 S:      Maintained
10289 F:      drivers/staging/sm750fb/
10290
10291 STAGING - SLICOSS
10292 M:      Lior Dotan <liodot@gmail.com>
10293 M:      Christopher Harrer <charrer@alacritech.com>
10294 S:      Odd Fixes
10295 F:      drivers/staging/slicoss/
10296
10297 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
10298 M:      William Hubbs <w.d.hubbs@gmail.com>
10299 M:      Chris Brannon <chris@the-brannons.com>
10300 M:      Kirk Reiser <kirk@reisers.ca>
10301 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
10302 L:      speakup@linux-speakup.org
10303 W:      http://www.linux-speakup.org/
10304 S:      Odd Fixes
10305 F:      drivers/staging/speakup/
10306
10307 STAGING - VIA VT665X DRIVERS
10308 M:      Forest Bond <forest@alittletooquiet.net>
10309 S:      Odd Fixes
10310 F:      drivers/staging/vt665?/
10311
10312 STAGING - WILC1000 WIFI DRIVER
10313 M:      Johnny Kim <johnny.kim@atmel.com>
10314 M:      Austin Shin <austin.shin@atmel.com>
10315 M:      Chris Park <chris.park@atmel.com>
10316 M:      Tony Cho <tony.cho@atmel.com>
10317 M:      Glen Lee <glen.lee@atmel.com>
10318 M:      Leo Kim <leo.kim@atmel.com>
10319 L:      linux-wireless@vger.kernel.org
10320 S:      Supported
10321 F:      drivers/staging/wilc1000/
10322
10323 STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
10324 M:      Arnaud Patard <arnaud.patard@rtp-net.org>
10325 S:      Odd Fixes
10326 F:      drivers/staging/xgifb/
10327
10328 HFI1 DRIVER
10329 M:      Mike Marciniszyn <infinipath@intel.com>
10330 L:      linux-rdma@vger.kernel.org
10331 S:      Supported
10332 F:      drivers/staging/rdma/hfi1
10333
10334 STARFIRE/DURALAN NETWORK DRIVER
10335 M:      Ion Badulescu <ionut@badula.org>
10336 S:      Odd Fixes
10337 F:      drivers/net/ethernet/adaptec/starfire*
10338
10339 SUN3/3X
10340 M:      Sam Creasey <sammy@sammy.net>
10341 W:      http://sammy.net/sun3/
10342 S:      Maintained
10343 F:      arch/m68k/kernel/*sun3*
10344 F:      arch/m68k/sun3*/
10345 F:      arch/m68k/include/asm/sun3*
10346 F:      drivers/net/ethernet/i825xx/sun3*
10347
10348 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
10349 M:      Hans de Goede <hdegoede@redhat.com>
10350 L:      linux-input@vger.kernel.org
10351 S:      Maintained
10352 F:      Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
10353 F:      drivers/input/keyboard/sun4i-lradc-keys.c
10354
10355 SUNDANCE NETWORK DRIVER
10356 M:      Denis Kirjanov <kda@linux-powerpc.org>
10357 L:      netdev@vger.kernel.org
10358 S:      Maintained
10359 F:      drivers/net/ethernet/dlink/sundance.c
10360
10361 SUPERH
10362 L:      linux-sh@vger.kernel.org
10363 Q:      http://patchwork.kernel.org/project/linux-sh/list/
10364 S:      Orphan
10365 F:      Documentation/sh/
10366 F:      arch/sh/
10367 F:      drivers/sh/
10368
10369 SUSPEND TO RAM
10370 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
10371 M:      Len Brown <len.brown@intel.com>
10372 M:      Pavel Machek <pavel@ucw.cz>
10373 L:      linux-pm@vger.kernel.org
10374 S:      Supported
10375 F:      Documentation/power/
10376 F:      arch/x86/kernel/acpi/
10377 F:      drivers/base/power/
10378 F:      kernel/power/
10379 F:      include/linux/suspend.h
10380 F:      include/linux/freezer.h
10381 F:      include/linux/pm.h
10382
10383 SVGA HANDLING
10384 M:      Martin Mares <mj@ucw.cz>
10385 L:      linux-video@atrey.karlin.mff.cuni.cz
10386 S:      Maintained
10387 F:      Documentation/svga.txt
10388 F:      arch/x86/boot/video*
10389
10390 SWIOTLB SUBSYSTEM
10391 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10392 L:      linux-kernel@vger.kernel.org
10393 S:      Supported
10394 F:      lib/swiotlb.c
10395 F:      arch/*/kernel/pci-swiotlb.c
10396 F:      include/linux/swiotlb.h
10397
10398 SWITCHDEV
10399 M:      Jiri Pirko <jiri@resnulli.us>
10400 L:      netdev@vger.kernel.org
10401 S:      Supported
10402 F:      net/switchdev/
10403 F:      include/net/switchdev.h
10404
10405 SYNOPSYS ARC ARCHITECTURE
10406 M:      Vineet Gupta <vgupta@synopsys.com>
10407 L:      linux-snps-arc@lists.infradead.org
10408 S:      Supported
10409 F:      arch/arc/
10410 F:      Documentation/devicetree/bindings/arc/*
10411 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
10412 F:      drivers/tty/serial/arc_uart.c
10413 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
10414
10415 SYNOPSYS ARC SDP platform support
10416 M:      Alexey Brodkin <abrodkin@synopsys.com>
10417 S:      Supported
10418 F:      arch/arc/plat-axs10x
10419 F:      arch/arc/boot/dts/ax*
10420 F:      Documentation/devicetree/bindings/arc/axs10*
10421
10422 SYSTEM CONFIGURATION (SYSCON)
10423 M:      Lee Jones <lee.jones@linaro.org>
10424 M:      Arnd Bergmann <arnd@arndb.de>
10425 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
10426 S:      Supported
10427 F:      drivers/mfd/syscon.c
10428
10429 SYSV FILESYSTEM
10430 M:      Christoph Hellwig <hch@infradead.org>
10431 S:      Maintained
10432 F:      Documentation/filesystems/sysv-fs.txt
10433 F:      fs/sysv/
10434 F:      include/linux/sysv_fs.h
10435
10436 TARGET SUBSYSTEM
10437 M:      "Nicholas A. Bellinger" <nab@linux-iscsi.org>
10438 L:      linux-scsi@vger.kernel.org
10439 L:      target-devel@vger.kernel.org
10440 W:      http://www.linux-iscsi.org
10441 W:      http://groups.google.com/group/linux-iscsi-target-dev
10442 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10443 S:      Supported
10444 F:      drivers/target/
10445 F:      include/target/
10446 F:      Documentation/target/
10447
10448 TASKSTATS STATISTICS INTERFACE
10449 M:      Balbir Singh <bsingharora@gmail.com>
10450 S:      Maintained
10451 F:      Documentation/accounting/taskstats*
10452 F:      include/linux/taskstats*
10453 F:      kernel/taskstats.c
10454
10455 TC CLASSIFIER
10456 M:      Jamal Hadi Salim <jhs@mojatatu.com>
10457 L:      netdev@vger.kernel.org
10458 S:      Maintained
10459 F:      include/net/pkt_cls.h
10460 F:      include/uapi/linux/pkt_cls.h
10461 F:      net/sched/
10462
10463 TCP LOW PRIORITY MODULE
10464 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
10465 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
10466 W:      http://tcp-lp-mod.sourceforge.net/
10467 S:      Maintained
10468 F:      net/ipv4/tcp_lp.c
10469
10470 TDA10071 MEDIA DRIVER
10471 M:      Antti Palosaari <crope@iki.fi>
10472 L:      linux-media@vger.kernel.org
10473 W:      https://linuxtv.org
10474 W:      http://palosaari.fi/linux/
10475 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10476 T:      git git://linuxtv.org/anttip/media_tree.git
10477 S:      Maintained
10478 F:      drivers/media/dvb-frontends/tda10071*
10479
10480 TDA18212 MEDIA DRIVER
10481 M:      Antti Palosaari <crope@iki.fi>
10482 L:      linux-media@vger.kernel.org
10483 W:      https://linuxtv.org
10484 W:      http://palosaari.fi/linux/
10485 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10486 T:      git git://linuxtv.org/anttip/media_tree.git
10487 S:      Maintained
10488 F:      drivers/media/tuners/tda18212*
10489
10490 TDA18218 MEDIA DRIVER
10491 M:      Antti Palosaari <crope@iki.fi>
10492 L:      linux-media@vger.kernel.org
10493 W:      https://linuxtv.org
10494 W:      http://palosaari.fi/linux/
10495 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10496 T:      git git://linuxtv.org/anttip/media_tree.git
10497 S:      Maintained
10498 F:      drivers/media/tuners/tda18218*
10499
10500 TDA18271 MEDIA DRIVER
10501 M:      Michael Krufky <mkrufky@linuxtv.org>
10502 L:      linux-media@vger.kernel.org
10503 W:      https://linuxtv.org
10504 W:      http://github.com/mkrufky
10505 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10506 T:      git git://linuxtv.org/mkrufky/tuners.git
10507 S:      Maintained
10508 F:      drivers/media/tuners/tda18271*
10509
10510 TDA827x MEDIA DRIVER
10511 M:      Michael Krufky <mkrufky@linuxtv.org>
10512 L:      linux-media@vger.kernel.org
10513 W:      https://linuxtv.org
10514 W:      http://github.com/mkrufky
10515 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10516 T:      git git://linuxtv.org/mkrufky/tuners.git
10517 S:      Maintained
10518 F:      drivers/media/tuners/tda8290.*
10519
10520 TDA8290 MEDIA DRIVER
10521 M:      Michael Krufky <mkrufky@linuxtv.org>
10522 L:      linux-media@vger.kernel.org
10523 W:      https://linuxtv.org
10524 W:      http://github.com/mkrufky
10525 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10526 T:      git git://linuxtv.org/mkrufky/tuners.git
10527 S:      Maintained
10528 F:      drivers/media/tuners/tda8290.*
10529
10530 TDA9840 MEDIA DRIVER
10531 M:      Hans Verkuil <hverkuil@xs4all.nl>
10532 L:      linux-media@vger.kernel.org
10533 T:      git git://linuxtv.org/media_tree.git
10534 W:      https://linuxtv.org
10535 S:      Maintained
10536 F:      drivers/media/i2c/tda9840*
10537
10538 TEA5761 TUNER DRIVER
10539 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10540 L:      linux-media@vger.kernel.org
10541 W:      https://linuxtv.org
10542 T:      git git://linuxtv.org/media_tree.git
10543 S:      Odd fixes
10544 F:      drivers/media/tuners/tea5761.*
10545
10546 TEA5767 TUNER DRIVER
10547 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10548 L:      linux-media@vger.kernel.org
10549 W:      https://linuxtv.org
10550 T:      git git://linuxtv.org/media_tree.git
10551 S:      Maintained
10552 F:      drivers/media/tuners/tea5767.*
10553
10554 TEA6415C MEDIA DRIVER
10555 M:      Hans Verkuil <hverkuil@xs4all.nl>
10556 L:      linux-media@vger.kernel.org
10557 T:      git git://linuxtv.org/media_tree.git
10558 W:      https://linuxtv.org
10559 S:      Maintained
10560 F:      drivers/media/i2c/tea6415c*
10561
10562 TEA6420 MEDIA DRIVER
10563 M:      Hans Verkuil <hverkuil@xs4all.nl>
10564 L:      linux-media@vger.kernel.org
10565 T:      git git://linuxtv.org/media_tree.git
10566 W:      https://linuxtv.org
10567 S:      Maintained
10568 F:      drivers/media/i2c/tea6420*
10569
10570 TEAM DRIVER
10571 M:      Jiri Pirko <jiri@resnulli.us>
10572 L:      netdev@vger.kernel.org
10573 S:      Supported
10574 F:      drivers/net/team/
10575 F:      include/linux/if_team.h
10576 F:      include/uapi/linux/if_team.h
10577
10578 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
10579 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
10580 S:      Maintained
10581 F:      arch/x86/platform/ts5500/
10582
10583 TECHNOTREND USB IR RECEIVER
10584 M:      Sean Young <sean@mess.org>
10585 L:      linux-media@vger.kernel.org
10586 S:      Maintained
10587 F:      drivers/media/rc/ttusbir.c
10588
10589 TEGRA ARCHITECTURE SUPPORT
10590 M:      Stephen Warren <swarren@wwwdotorg.org>
10591 M:      Thierry Reding <thierry.reding@gmail.com>
10592 M:      Alexandre Courbot <gnurou@gmail.com>
10593 L:      linux-tegra@vger.kernel.org
10594 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
10595 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
10596 S:      Supported
10597 N:      [^a-z]tegra
10598
10599 TEGRA CLOCK DRIVER
10600 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
10601 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
10602 S:      Supported
10603 F:      drivers/clk/tegra/
10604
10605 TEGRA DMA DRIVER
10606 M:      Laxman Dewangan <ldewangan@nvidia.com>
10607 S:      Supported
10608 F:      drivers/dma/tegra20-apb-dma.c
10609
10610 TEGRA I2C DRIVER
10611 M:      Laxman Dewangan <ldewangan@nvidia.com>
10612 S:      Supported
10613 F:      drivers/i2c/busses/i2c-tegra.c
10614
10615 TEGRA IOMMU DRIVERS
10616 M:      Hiroshi Doyu <hdoyu@nvidia.com>
10617 S:      Supported
10618 F:      drivers/iommu/tegra*
10619
10620 TEGRA KBC DRIVER
10621 M:      Rakesh Iyer <riyer@nvidia.com>
10622 M:      Laxman Dewangan <ldewangan@nvidia.com>
10623 S:      Supported
10624 F:      drivers/input/keyboard/tegra-kbc.c
10625
10626 TEGRA PWM DRIVER
10627 M:      Thierry Reding <thierry.reding@gmail.com>
10628 S:      Supported
10629 F:      drivers/pwm/pwm-tegra.c
10630
10631 TEGRA SERIAL DRIVER
10632 M:      Laxman Dewangan <ldewangan@nvidia.com>
10633 S:      Supported
10634 F:      drivers/tty/serial/serial-tegra.c
10635
10636 TEGRA SPI DRIVER
10637 M:      Laxman Dewangan <ldewangan@nvidia.com>
10638 S:      Supported
10639 F:      drivers/spi/spi-tegra*
10640
10641 TEHUTI ETHERNET DRIVER
10642 M:      Andy Gospodarek <andy@greyhouse.net>
10643 L:      netdev@vger.kernel.org
10644 S:      Supported
10645 F:      drivers/net/ethernet/tehuti/*
10646
10647 Telecom Clock Driver for MCPL0010
10648 M:      Mark Gross <mark.gross@intel.com>
10649 S:      Supported
10650 F:      drivers/char/tlclk.c
10651
10652 TENSILICA XTENSA PORT (xtensa)
10653 M:      Chris Zankel <chris@zankel.net>
10654 M:      Max Filippov <jcmvbkbc@gmail.com>
10655 L:      linux-xtensa@linux-xtensa.org
10656 S:      Maintained
10657 F:      arch/xtensa/
10658 F:      drivers/irqchip/irq-xtensa-*
10659
10660 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
10661 M:      Hans Verkuil <hverkuil@xs4all.nl>
10662 L:      linux-media@vger.kernel.org
10663 T:      git git://linuxtv.org/media_tree.git
10664 W:      https://linuxtv.org
10665 S:      Maintained
10666 F:      drivers/media/radio/radio-raremono.c
10667
10668 THERMAL
10669 M:      Zhang Rui <rui.zhang@intel.com>
10670 M:      Eduardo Valentin <edubezval@gmail.com>
10671 L:      linux-pm@vger.kernel.org
10672 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
10673 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
10674 Q:      https://patchwork.kernel.org/project/linux-pm/list/
10675 S:      Supported
10676 F:      drivers/thermal/
10677 F:      include/linux/thermal.h
10678 F:      include/uapi/linux/thermal.h
10679 F:      include/linux/cpu_cooling.h
10680 F:      Documentation/devicetree/bindings/thermal/
10681
10682 THERMAL/CPU_COOLING
10683 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
10684 M:      Viresh Kumar <viresh.kumar@linaro.org>
10685 M:      Javi Merino <javi.merino@arm.com>
10686 L:      linux-pm@vger.kernel.org
10687 S:      Supported
10688 F:      Documentation/thermal/cpu-cooling-api.txt
10689 F:      drivers/thermal/cpu_cooling.c
10690 F:      include/linux/cpu_cooling.h
10691
10692 THINGM BLINK(1) USB RGB LED DRIVER
10693 M:      Vivien Didelot <vivien.didelot@savoirfairelinux.com>
10694 S:      Maintained
10695 F:      drivers/hid/hid-thingm.c
10696
10697 THINKPAD ACPI EXTRAS DRIVER
10698 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
10699 L:      ibm-acpi-devel@lists.sourceforge.net
10700 L:      platform-driver-x86@vger.kernel.org
10701 W:      http://ibm-acpi.sourceforge.net
10702 W:      http://thinkwiki.org/wiki/Ibm-acpi
10703 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
10704 S:      Maintained
10705 F:      drivers/platform/x86/thinkpad_acpi.c
10706
10707 TI BANDGAP AND THERMAL DRIVER
10708 M:      Eduardo Valentin <edubezval@gmail.com>
10709 L:      linux-pm@vger.kernel.org
10710 L:      linux-omap@vger.kernel.org
10711 S:      Maintained
10712 F:      drivers/thermal/ti-soc-thermal/
10713
10714 TI CDCE706 CLOCK DRIVER
10715 M:      Max Filippov <jcmvbkbc@gmail.com>
10716 S:      Maintained
10717 F:      drivers/clk/clk-cdce706.c
10718
10719 TI CLOCK DRIVER
10720 M:      Tero Kristo <t-kristo@ti.com>
10721 L:      linux-omap@vger.kernel.org
10722 S:      Maintained
10723 F:      drivers/clk/ti/
10724 F:      include/linux/clk/ti.h
10725
10726 TI FLASH MEDIA INTERFACE DRIVER
10727 M:      Alex Dubov <oakad@yahoo.com>
10728 S:      Maintained
10729 F:      drivers/misc/tifm*
10730 F:      drivers/mmc/host/tifm_sd.c
10731 F:      include/linux/tifm.h
10732
10733 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
10734 M:      Santosh Shilimkar <ssantosh@kernel.org>
10735 L:      linux-kernel@vger.kernel.org
10736 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10737 S:      Maintained
10738 F:      drivers/soc/ti/*
10739 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
10740
10741
10742 TI LM49xxx FAMILY ASoC CODEC DRIVERS
10743 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
10744 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
10745 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10746 S:      Maintained
10747 F:      sound/soc/codecs/lm49453*
10748 F:      sound/soc/codecs/isabelle*
10749
10750 TI LP855x BACKLIGHT DRIVER
10751 M:      Milo Kim <milo.kim@ti.com>
10752 S:      Maintained
10753 F:      Documentation/backlight/lp855x-driver.txt
10754 F:      drivers/video/backlight/lp855x_bl.c
10755 F:      include/linux/platform_data/lp855x.h
10756
10757 TI LP8727 CHARGER DRIVER
10758 M:      Milo Kim <milo.kim@ti.com>
10759 S:      Maintained
10760 F:      drivers/power/lp8727_charger.c
10761 F:      include/linux/platform_data/lp8727.h
10762
10763 TI LP8788 MFD DRIVER
10764 M:      Milo Kim <milo.kim@ti.com>
10765 S:      Maintained
10766 F:      drivers/iio/adc/lp8788_adc.c
10767 F:      drivers/leds/leds-lp8788.c
10768 F:      drivers/mfd/lp8788*.c
10769 F:      drivers/power/lp8788-charger.c
10770 F:      drivers/regulator/lp8788-*.c
10771 F:      include/linux/mfd/lp8788*.h
10772
10773 TI NETCP ETHERNET DRIVER
10774 M:      Wingman Kwok <w-kwok2@ti.com>
10775 M:      Murali Karicheri <m-karicheri2@ti.com>
10776 L:      netdev@vger.kernel.org
10777 S:      Maintained
10778 F:      drivers/net/ethernet/ti/netcp*
10779
10780 TI TAS571X FAMILY ASoC CODEC DRIVER
10781 M:      Kevin Cernekee <cernekee@chromium.org>
10782 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10783 S:      Odd Fixes
10784 F:      sound/soc/codecs/tas571x*
10785
10786 TI TWL4030 SERIES SOC CODEC DRIVER
10787 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
10788 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10789 S:      Maintained
10790 F:      sound/soc/codecs/twl4030*
10791
10792 TI WILINK WIRELESS DRIVERS
10793 L:      linux-wireless@vger.kernel.org
10794 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
10795 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
10796 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
10797 S:      Orphan
10798 F:      drivers/net/wireless/ti/
10799 F:      include/linux/wl12xx.h
10800
10801 TIPC NETWORK LAYER
10802 M:      Jon Maloy <jon.maloy@ericsson.com>
10803 M:      Ying Xue <ying.xue@windriver.com>
10804 L:      netdev@vger.kernel.org (core kernel code)
10805 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
10806 W:      http://tipc.sourceforge.net/
10807 S:      Maintained
10808 F:      include/uapi/linux/tipc*.h
10809 F:      net/tipc/
10810
10811 TILE ARCHITECTURE
10812 M:      Chris Metcalf <cmetcalf@ezchip.com>
10813 W:      http://www.ezchip.com/scm/
10814 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cmetcalf/linux-tile.git
10815 S:      Supported
10816 F:      arch/tile/
10817 F:      drivers/char/tile-srom.c
10818 F:      drivers/edac/tile_edac.c
10819 F:      drivers/net/ethernet/tile/
10820 F:      drivers/rtc/rtc-tile.c
10821 F:      drivers/tty/hvc/hvc_tile.c
10822 F:      drivers/tty/serial/tilegx.c
10823 F:      drivers/usb/host/*-tilegx.c
10824 F:      include/linux/usb/tilegx.h
10825
10826 TLAN NETWORK DRIVER
10827 M:      Samuel Chessman <chessman@tux.org>
10828 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
10829 W:      http://sourceforge.net/projects/tlan/
10830 S:      Maintained
10831 F:      Documentation/networking/tlan.txt
10832 F:      drivers/net/ethernet/ti/tlan.*
10833
10834 TOMOYO SECURITY MODULE
10835 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
10836 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
10837 L:      tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
10838 L:      tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
10839 L:      tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
10840 L:      tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
10841 W:      http://tomoyo.sourceforge.jp/
10842 T:      quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
10843 S:      Maintained
10844 F:      security/tomoyo/
10845
10846 TOPSTAR LAPTOP EXTRAS DRIVER
10847 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
10848 L:      platform-driver-x86@vger.kernel.org
10849 S:      Maintained
10850 F:      drivers/platform/x86/topstar-laptop.c
10851
10852 TOSHIBA ACPI EXTRAS DRIVER
10853 M:      Azael Avalos <coproscefalo@gmail.com>
10854 L:      platform-driver-x86@vger.kernel.org
10855 S:      Maintained
10856 F:      drivers/platform/x86/toshiba_acpi.c
10857
10858 TOSHIBA BLUETOOTH DRIVER
10859 M:      Azael Avalos <coproscefalo@gmail.com>
10860 L:      platform-driver-x86@vger.kernel.org
10861 S:      Maintained
10862 F:      drivers/platform/x86/toshiba_bluetooth.c
10863
10864 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
10865 M:      Azael Avalos <coproscefalo@gmail.com>
10866 L:      platform-driver-x86@vger.kernel.org
10867 S:      Maintained
10868 F:      drivers/platform/x86/toshiba_haps.c
10869
10870 TOSHIBA WMI HOTKEYS DRIVER
10871 M:      Azael Avalos <coproscefalo@gmail.com>
10872 L:      platform-driver-x86@vger.kernel.org
10873 S:      Maintained
10874 F:      drivers/platform/x86/toshiba-wmi.c
10875
10876 TOSHIBA SMM DRIVER
10877 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
10878 W:      http://www.buzzard.org.uk/toshiba/
10879 S:      Maintained
10880 F:      drivers/char/toshiba.c
10881 F:      include/linux/toshiba.h
10882 F:      include/uapi/linux/toshiba.h
10883
10884 TOSHIBA TC358743 DRIVER
10885 M:      Mats Randgaard <matrandg@cisco.com>
10886 L:      linux-media@vger.kernel.org
10887 S:      Maintained
10888 F:      drivers/media/i2c/tc358743*
10889 F:      include/media/i2c/tc358743.h
10890
10891 TMIO MMC DRIVER
10892 M:      Ian Molton <ian@mnementh.co.uk>
10893 L:      linux-mmc@vger.kernel.org
10894 S:      Maintained
10895 F:      drivers/mmc/host/tmio_mmc*
10896 F:      drivers/mmc/host/sh_mobile_sdhi.c
10897 F:      include/linux/mmc/tmio.h
10898 F:      include/linux/mmc/sh_mobile_sdhi.h
10899
10900 TMP401 HARDWARE MONITOR DRIVER
10901 M:      Guenter Roeck <linux@roeck-us.net>
10902 L:      lm-sensors@lm-sensors.org
10903 S:      Maintained
10904 F:      Documentation/hwmon/tmp401
10905 F:      drivers/hwmon/tmp401.c
10906
10907 TMPFS (SHMEM FILESYSTEM)
10908 M:      Hugh Dickins <hughd@google.com>
10909 L:      linux-mm@kvack.org
10910 S:      Maintained
10911 F:      include/linux/shmem_fs.h
10912 F:      mm/shmem.c
10913
10914 TM6000 VIDEO4LINUX DRIVER
10915 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10916 L:      linux-media@vger.kernel.org
10917 W:      https://linuxtv.org
10918 T:      git git://linuxtv.org/media_tree.git
10919 S:      Odd fixes
10920 F:      drivers/media/usb/tm6000/
10921
10922 TW68 VIDEO4LINUX DRIVER
10923 M:      Hans Verkuil <hverkuil@xs4all.nl>
10924 L:      linux-media@vger.kernel.org
10925 T:      git git://linuxtv.org/media_tree.git
10926 W:      https://linuxtv.org
10927 S:      Odd Fixes
10928 F:      drivers/media/pci/tw68/
10929
10930 TPM DEVICE DRIVER
10931 M:      Peter Huewe <peterhuewe@gmx.de>
10932 M:      Marcel Selhorst <tpmdd@selhorst.net>
10933 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
10934 R:      Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
10935 W:      http://tpmdd.sourceforge.net
10936 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
10937 Q:      git git://github.com/PeterHuewe/linux-tpmdd.git
10938 T:      https://github.com/PeterHuewe/linux-tpmdd
10939 S:      Maintained
10940 F:      drivers/char/tpm/
10941
10942 TPM IBM_VTPM DEVICE DRIVER
10943 M:      Ashley Lai <ashleydlai@gmail.com>
10944 W:      http://tpmdd.sourceforge.net
10945 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
10946 S:      Maintained
10947 F:      drivers/char/tpm/tpm_ibmvtpm*
10948
10949 TRACING
10950 M:      Steven Rostedt <rostedt@goodmis.org>
10951 M:      Ingo Molnar <mingo@redhat.com>
10952 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
10953 S:      Maintained
10954 F:      Documentation/trace/ftrace.txt
10955 F:      arch/*/*/*/ftrace.h
10956 F:      arch/*/kernel/ftrace.c
10957 F:      include/*/ftrace.h
10958 F:      include/linux/trace*.h
10959 F:      include/trace/
10960 F:      kernel/trace/
10961 F:      tools/testing/selftests/ftrace/
10962
10963 TRIVIAL PATCHES
10964 M:      Jiri Kosina <trivial@kernel.org>
10965 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
10966 S:      Maintained
10967 K:      ^Subject:.*(?i)trivial
10968
10969 TTY LAYER
10970 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10971 M:      Jiri Slaby <jslaby@suse.com>
10972 S:      Supported
10973 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
10974 F:      Documentation/serial/
10975 F:      drivers/tty/
10976 F:      drivers/tty/serial/serial_core.c
10977 F:      include/linux/serial_core.h
10978 F:      include/linux/serial.h
10979 F:      include/linux/tty.h
10980 F:      include/uapi/linux/serial_core.h
10981 F:      include/uapi/linux/serial.h
10982 F:      include/uapi/linux/tty.h
10983
10984 TUA9001 MEDIA DRIVER
10985 M:      Antti Palosaari <crope@iki.fi>
10986 L:      linux-media@vger.kernel.org
10987 W:      https://linuxtv.org
10988 W:      http://palosaari.fi/linux/
10989 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10990 T:      git git://linuxtv.org/anttip/media_tree.git
10991 S:      Maintained
10992 F:      drivers/media/tuners/tua9001*
10993
10994 TULIP NETWORK DRIVERS
10995 L:      netdev@vger.kernel.org
10996 L:      linux-parisc@vger.kernel.org
10997 S:      Orphan
10998 F:      drivers/net/ethernet/dec/tulip/
10999
11000 TUN/TAP driver
11001 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
11002 W:      http://vtun.sourceforge.net/tun
11003 S:      Maintained
11004 F:      Documentation/networking/tuntap.txt
11005 F:      arch/um/os-Linux/drivers/
11006
11007 TURBOCHANNEL SUBSYSTEM
11008 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
11009 M:      Ralf Baechle <ralf@linux-mips.org>
11010 L:      linux-mips@linux-mips.org
11011 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
11012 S:      Maintained
11013 F:      drivers/tc/
11014 F:      include/linux/tc.h
11015
11016 U14-34F SCSI DRIVER
11017 M:      Dario Ballabio <ballabio_dario@emc.com>
11018 L:      linux-scsi@vger.kernel.org
11019 S:      Maintained
11020 F:      drivers/scsi/u14-34f.c
11021
11022 UBI FILE SYSTEM (UBIFS)
11023 M:      Artem Bityutskiy <dedekind1@gmail.com>
11024 M:      Adrian Hunter <adrian.hunter@intel.com>
11025 L:      linux-mtd@lists.infradead.org
11026 T:      git git://git.infradead.org/ubifs-2.6.git
11027 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
11028 S:      Maintained
11029 F:      Documentation/filesystems/ubifs.txt
11030 F:      fs/ubifs/
11031
11032 UCLINUX (M68KNOMMU AND COLDFIRE)
11033 M:      Greg Ungerer <gerg@uclinux.org>
11034 W:      http://www.uclinux.org/
11035 L:      linux-m68k@lists.linux-m68k.org
11036 L:      uclinux-dev@uclinux.org  (subscribers-only)
11037 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
11038 S:      Maintained
11039 F:      arch/m68k/coldfire/
11040 F:      arch/m68k/68*/
11041 F:      arch/m68k/*/*_no.*
11042 F:      arch/m68k/include/asm/*_no.*
11043
11044 UDF FILESYSTEM
11045 M:      Jan Kara <jack@suse.com>
11046 S:      Maintained
11047 F:      Documentation/filesystems/udf.txt
11048 F:      fs/udf/
11049
11050 UFS FILESYSTEM
11051 M:      Evgeniy Dushistov <dushistov@mail.ru>
11052 S:      Maintained
11053 F:      Documentation/filesystems/ufs.txt
11054 F:      fs/ufs/
11055
11056 UHID USERSPACE HID IO DRIVER:
11057 M:      David Herrmann <dh.herrmann@googlemail.com>
11058 L:      linux-input@vger.kernel.org
11059 S:      Maintained
11060 F:      drivers/hid/uhid.c
11061 F:      include/uapi/linux/uhid.h
11062
11063 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
11064 L:      linux-usb@vger.kernel.org
11065 S:      Orphan
11066 F:      drivers/uwb/
11067 F:      include/linux/uwb.h
11068 F:      include/linux/uwb/
11069
11070 UNICORE32 ARCHITECTURE:
11071 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
11072 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
11073 S:      Maintained
11074 T:      git git://github.com/gxt/linux.git
11075 F:      arch/unicore32/
11076
11077 UNIFDEF
11078 M:      Tony Finch <dot@dotat.at>
11079 W:      http://dotat.at/prog/unifdef
11080 S:      Maintained
11081 F:      scripts/unifdef.c
11082
11083 UNIFORM CDROM DRIVER
11084 M:      Jens Axboe <axboe@kernel.dk>
11085 W:      http://www.kernel.dk
11086 S:      Maintained
11087 F:      Documentation/cdrom/
11088 F:      drivers/cdrom/cdrom.c
11089 F:      include/linux/cdrom.h
11090 F:      include/uapi/linux/cdrom.h
11091
11092 UNISYS S-PAR DRIVERS
11093 M:      Benjamin Romer <benjamin.romer@unisys.com>
11094 M:      David Kershner <david.kershner@unisys.com>
11095 L:      sparmaintainer@unisys.com (Unisys internal)
11096 S:      Supported
11097 F:      drivers/staging/unisys/
11098
11099 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
11100 M:      Vinayak Holikatti <vinholikatti@gmail.com>
11101 L:      linux-scsi@vger.kernel.org
11102 S:      Supported
11103 F:      Documentation/scsi/ufs.txt
11104 F:      drivers/scsi/ufs/
11105
11106 UNSORTED BLOCK IMAGES (UBI)
11107 M:      Artem Bityutskiy <dedekind1@gmail.com>
11108 M:      Richard Weinberger <richard@nod.at>
11109 W:      http://www.linux-mtd.infradead.org/
11110 L:      linux-mtd@lists.infradead.org
11111 T:      git git://git.infradead.org/ubifs-2.6.git
11112 S:      Supported
11113 F:      drivers/mtd/ubi/
11114 F:      include/linux/mtd/ubi.h
11115 F:      include/uapi/mtd/ubi-user.h
11116
11117 USB ACM DRIVER
11118 M:      Oliver Neukum <oliver@neukum.org>
11119 L:      linux-usb@vger.kernel.org
11120 S:      Maintained
11121 F:      Documentation/usb/acm.txt
11122 F:      drivers/usb/class/cdc-acm.*
11123
11124 USB AR5523 WIRELESS DRIVER
11125 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
11126 L:      linux-wireless@vger.kernel.org
11127 S:      Maintained
11128 F:      drivers/net/wireless/ath/ar5523/
11129
11130 USB ATTACHED SCSI
11131 M:      Hans de Goede <hdegoede@redhat.com>
11132 M:      Gerd Hoffmann <kraxel@redhat.com>
11133 L:      linux-usb@vger.kernel.org
11134 L:      linux-scsi@vger.kernel.org
11135 S:      Maintained
11136 F:      drivers/usb/storage/uas.c
11137
11138 USB CDC ETHERNET DRIVER
11139 M:      Oliver Neukum <oliver@neukum.org>
11140 L:      linux-usb@vger.kernel.org
11141 S:      Maintained
11142 F:      drivers/net/usb/cdc_*.c
11143 F:      include/uapi/linux/usb/cdc.h
11144
11145 USB CHAOSKEY DRIVER
11146 M:      Keith Packard <keithp@keithp.com>
11147 L:      linux-usb@vger.kernel.org
11148 S:      Maintained
11149 F:      drivers/usb/misc/chaoskey.c
11150
11151 USB CYPRESS C67X00 DRIVER
11152 M:      Peter Korsgaard <jacmet@sunsite.dk>
11153 L:      linux-usb@vger.kernel.org
11154 S:      Maintained
11155 F:      drivers/usb/c67x00/
11156
11157 USB DAVICOM DM9601 DRIVER
11158 M:      Peter Korsgaard <jacmet@sunsite.dk>
11159 L:      netdev@vger.kernel.org
11160 W:      http://www.linux-usb.org/usbnet
11161 S:      Maintained
11162 F:      drivers/net/usb/dm9601.c
11163
11164 USB DIAMOND RIO500 DRIVER
11165 M:      Cesar Miquel <miquel@df.uba.ar>
11166 L:      rio500-users@lists.sourceforge.net
11167 W:      http://rio500.sourceforge.net
11168 S:      Maintained
11169 F:      drivers/usb/misc/rio500*
11170
11171 USB EHCI DRIVER
11172 M:      Alan Stern <stern@rowland.harvard.edu>
11173 L:      linux-usb@vger.kernel.org
11174 S:      Maintained
11175 F:      Documentation/usb/ehci.txt
11176 F:      drivers/usb/host/ehci*
11177
11178 USB GADGET/PERIPHERAL SUBSYSTEM
11179 M:      Felipe Balbi <balbi@ti.com>
11180 L:      linux-usb@vger.kernel.org
11181 W:      http://www.linux-usb.org/gadget
11182 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
11183 S:      Maintained
11184 F:      drivers/usb/gadget/
11185 F:      include/linux/usb/gadget*
11186
11187 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
11188 M:      Jiri Kosina <jikos@kernel.org>
11189 R:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
11190 L:      linux-usb@vger.kernel.org
11191 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
11192 S:      Maintained
11193 F:      Documentation/hid/hiddev.txt
11194 F:      drivers/hid/usbhid/
11195
11196 USB ISP116X DRIVER
11197 M:      Olav Kongas <ok@artecdesign.ee>
11198 L:      linux-usb@vger.kernel.org
11199 S:      Maintained
11200 F:      drivers/usb/host/isp116x*
11201 F:      include/linux/usb/isp116x.h
11202
11203 USB MASS STORAGE DRIVER
11204 M:      Matthew Dharm <mdharm-usb@one-eyed-alien.net>
11205 L:      linux-usb@vger.kernel.org
11206 L:      usb-storage@lists.one-eyed-alien.net
11207 S:      Maintained
11208 W:      http://www.one-eyed-alien.net/~mdharm/linux-usb/
11209 F:      drivers/usb/storage/
11210
11211 USB MIDI DRIVER
11212 M:      Clemens Ladisch <clemens@ladisch.de>
11213 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11214 T:      git git://git.alsa-project.org/alsa-kernel.git
11215 S:      Maintained
11216 F:      sound/usb/midi.*
11217
11218 USB NETWORKING DRIVERS
11219 L:      linux-usb@vger.kernel.org
11220 S:      Odd Fixes
11221 F:      drivers/net/usb/
11222
11223 USB OHCI DRIVER
11224 M:      Alan Stern <stern@rowland.harvard.edu>
11225 L:      linux-usb@vger.kernel.org
11226 S:      Maintained
11227 F:      Documentation/usb/ohci.txt
11228 F:      drivers/usb/host/ohci*
11229
11230 USB OTG FSM (Finite State Machine)
11231 M:      Peter Chen <Peter.Chen@nxp.com>
11232 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
11233 L:      linux-usb@vger.kernel.org
11234 S:      Maintained
11235 F:      drivers/usb/common/usb-otg-fsm.c
11236
11237 USB OVER IP DRIVER
11238 M:      Valentina Manea <valentina.manea.m@gmail.com>
11239 M:      Shuah Khan <shuah.kh@samsung.com>
11240 L:      linux-usb@vger.kernel.org
11241 S:      Maintained
11242 F:      drivers/usb/usbip/
11243 F:      tools/usb/usbip/
11244
11245 USB PEGASUS DRIVER
11246 M:      Petko Manolov <petkan@nucleusys.com>
11247 L:      linux-usb@vger.kernel.org
11248 L:      netdev@vger.kernel.org
11249 T:      git git://github.com/petkan/pegasus.git
11250 W:      https://github.com/petkan/pegasus
11251 S:      Maintained
11252 F:      drivers/net/usb/pegasus.*
11253
11254 USB PHY LAYER
11255 M:      Felipe Balbi <balbi@ti.com>
11256 L:      linux-usb@vger.kernel.org
11257 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
11258 S:      Maintained
11259 F:      drivers/usb/phy/
11260
11261 USB PRINTER DRIVER (usblp)
11262 M:      Pete Zaitcev <zaitcev@redhat.com>
11263 L:      linux-usb@vger.kernel.org
11264 S:      Supported
11265 F:      drivers/usb/class/usblp.c
11266
11267 USB QMI WWAN NETWORK DRIVER
11268 M:      Bjørn Mork <bjorn@mork.no>
11269 L:      netdev@vger.kernel.org
11270 S:      Maintained
11271 F:      Documentation/ABI/testing/sysfs-class-net-qmi
11272 F:      drivers/net/usb/qmi_wwan.c
11273
11274 USB RTL8150 DRIVER
11275 M:      Petko Manolov <petkan@nucleusys.com>
11276 L:      linux-usb@vger.kernel.org
11277 L:      netdev@vger.kernel.org
11278 T:      git git://github.com/petkan/rtl8150.git
11279 W:      https://github.com/petkan/rtl8150
11280 S:      Maintained
11281 F:      drivers/net/usb/rtl8150.c
11282
11283 USB SERIAL SUBSYSTEM
11284 M:      Johan Hovold <johan@kernel.org>
11285 L:      linux-usb@vger.kernel.org
11286 S:      Maintained
11287 F:      Documentation/usb/usb-serial.txt
11288 F:      drivers/usb/serial/
11289 F:      include/linux/usb/serial.h
11290
11291 USB SMSC75XX ETHERNET DRIVER
11292 M:      Steve Glendinning <steve.glendinning@shawell.net>
11293 L:      netdev@vger.kernel.org
11294 S:      Maintained
11295 F:      drivers/net/usb/smsc75xx.*
11296
11297 USB SMSC95XX ETHERNET DRIVER
11298 M:      Steve Glendinning <steve.glendinning@shawell.net>
11299 L:      netdev@vger.kernel.org
11300 S:      Maintained
11301 F:      drivers/net/usb/smsc95xx.*
11302
11303 USB SUBSYSTEM
11304 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11305 L:      linux-usb@vger.kernel.org
11306 W:      http://www.linux-usb.org
11307 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
11308 S:      Supported
11309 F:      Documentation/usb/
11310 F:      drivers/usb/
11311 F:      include/linux/usb.h
11312 F:      include/linux/usb/
11313
11314 USB UHCI DRIVER
11315 M:      Alan Stern <stern@rowland.harvard.edu>
11316 L:      linux-usb@vger.kernel.org
11317 S:      Maintained
11318 F:      drivers/usb/host/uhci*
11319
11320 USB "USBNET" DRIVER FRAMEWORK
11321 M:      Oliver Neukum <oneukum@suse.com>
11322 L:      netdev@vger.kernel.org
11323 W:      http://www.linux-usb.org/usbnet
11324 S:      Maintained
11325 F:      drivers/net/usb/usbnet.c
11326 F:      include/linux/usb/usbnet.h
11327
11328 USB VIDEO CLASS
11329 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11330 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
11331 L:      linux-media@vger.kernel.org
11332 T:      git git://linuxtv.org/media_tree.git
11333 W:      http://www.ideasonboard.org/uvc/
11334 S:      Maintained
11335 F:      drivers/media/usb/uvc/
11336 F:      include/uapi/linux/uvcvideo.h
11337
11338 USB VISION DRIVER
11339 M:      Hans Verkuil <hverkuil@xs4all.nl>
11340 L:      linux-media@vger.kernel.org
11341 T:      git git://linuxtv.org/media_tree.git
11342 W:      https://linuxtv.org
11343 S:      Odd Fixes
11344 F:      drivers/media/usb/usbvision/
11345
11346 USB WEBCAM GADGET
11347 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11348 L:      linux-usb@vger.kernel.org
11349 S:      Maintained
11350 F:      drivers/usb/gadget/function/*uvc*
11351 F:      drivers/usb/gadget/legacy/webcam.c
11352
11353 USB WIRELESS RNDIS DRIVER (rndis_wlan)
11354 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
11355 L:      linux-wireless@vger.kernel.org
11356 S:      Maintained
11357 F:      drivers/net/wireless/rndis_wlan.c
11358
11359 USB XHCI DRIVER
11360 M:      Mathias Nyman <mathias.nyman@intel.com>
11361 L:      linux-usb@vger.kernel.org
11362 S:      Supported
11363 F:      drivers/usb/host/xhci*
11364 F:      drivers/usb/host/pci-quirks*
11365
11366 USB ZD1201 DRIVER
11367 L:      linux-wireless@vger.kernel.org
11368 W:      http://linux-lc100020.sourceforge.net
11369 S:      Orphan
11370 F:      drivers/net/wireless/zydas/zd1201.*
11371
11372 USB ZR364XX DRIVER
11373 M:      Antoine Jacquet <royale@zerezo.com>
11374 L:      linux-usb@vger.kernel.org
11375 L:      linux-media@vger.kernel.org
11376 T:      git git://linuxtv.org/media_tree.git
11377 W:      http://royale.zerezo.com/zr364xx/
11378 S:      Maintained
11379 F:      Documentation/video4linux/zr364xx.txt
11380 F:      drivers/media/usb/zr364xx/
11381
11382 ULPI BUS
11383 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
11384 L:      linux-usb@vger.kernel.org
11385 S:      Maintained
11386 F:      drivers/usb/common/ulpi.c
11387 F:      include/linux/ulpi/
11388
11389 USER-MODE LINUX (UML)
11390 M:      Jeff Dike <jdike@addtoit.com>
11391 M:      Richard Weinberger <richard@nod.at>
11392 L:      user-mode-linux-devel@lists.sourceforge.net
11393 L:      user-mode-linux-user@lists.sourceforge.net
11394 W:      http://user-mode-linux.sourceforge.net
11395 S:      Maintained
11396 F:      Documentation/virtual/uml/
11397 F:      arch/um/
11398 F:      arch/x86/um/
11399 F:      fs/hostfs/
11400 F:      fs/hppfs/
11401
11402 USERSPACE I/O (UIO)
11403 M:      "Hans J. Koch" <hjk@hansjkoch.de>
11404 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11405 S:      Maintained
11406 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
11407 F:      Documentation/DocBook/uio-howto.tmpl
11408 F:      drivers/uio/
11409 F:      include/linux/uio*.h
11410
11411 UTIL-LINUX PACKAGE
11412 M:      Karel Zak <kzak@redhat.com>
11413 L:      util-linux@vger.kernel.org
11414 W:      http://en.wikipedia.org/wiki/Util-linux
11415 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
11416 S:      Maintained
11417
11418 UVESAFB DRIVER
11419 M:      Michal Januszewski <spock@gentoo.org>
11420 L:      linux-fbdev@vger.kernel.org
11421 W:      http://dev.gentoo.org/~spock/projects/uvesafb/
11422 S:      Maintained
11423 F:      Documentation/fb/uvesafb.txt
11424 F:      drivers/video/fbdev/uvesafb.*
11425
11426 VF610 NAND DRIVER
11427 M:      Stefan Agner <stefan@agner.ch>
11428 L:      linux-mtd@lists.infradead.org
11429 S:      Supported
11430 F:      drivers/mtd/nand/vf610_nfc.c
11431
11432 VFAT/FAT/MSDOS FILESYSTEM
11433 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
11434 S:      Maintained
11435 F:      Documentation/filesystems/vfat.txt
11436 F:      fs/fat/
11437
11438 VFIO DRIVER
11439 M:      Alex Williamson <alex.williamson@redhat.com>
11440 L:      kvm@vger.kernel.org
11441 S:      Maintained
11442 F:      Documentation/vfio.txt
11443 F:      drivers/vfio/
11444 F:      include/linux/vfio.h
11445 F:      include/uapi/linux/vfio.h
11446
11447 VFIO PLATFORM DRIVER
11448 M:      Baptiste Reynal <b.reynal@virtualopensystems.com>
11449 L:      kvm@vger.kernel.org
11450 S:      Maintained
11451 F:      drivers/vfio/platform/
11452
11453 VIDEOBUF2 FRAMEWORK
11454 M:      Pawel Osciak <pawel@osciak.com>
11455 M:      Marek Szyprowski <m.szyprowski@samsung.com>
11456 M:      Kyungmin Park <kyungmin.park@samsung.com>
11457 L:      linux-media@vger.kernel.org
11458 S:      Maintained
11459 F:      drivers/media/v4l2-core/videobuf2-*
11460 F:      include/media/videobuf2-*
11461
11462 VIRTUAL SERIO DEVICE DRIVER
11463 M:      Stephen Chandler Paul <thatslyude@gmail.com>
11464 S:      Maintained
11465 F:      drivers/input/serio/userio.c
11466 F:      include/uapi/linux/userio.h
11467
11468 VIRTIO CONSOLE DRIVER
11469 M:      Amit Shah <amit.shah@redhat.com>
11470 L:      virtualization@lists.linux-foundation.org
11471 S:      Maintained
11472 F:      drivers/char/virtio_console.c
11473 F:      include/linux/virtio_console.h
11474 F:      include/uapi/linux/virtio_console.h
11475
11476 VIRTIO CORE, NET AND BLOCK DRIVERS
11477 M:      "Michael S. Tsirkin" <mst@redhat.com>
11478 L:      virtualization@lists.linux-foundation.org
11479 S:      Maintained
11480 F:      drivers/virtio/
11481 F:      tools/virtio/
11482 F:      drivers/net/virtio_net.c
11483 F:      drivers/block/virtio_blk.c
11484 F:      include/linux/virtio_*.h
11485 F:      include/uapi/linux/virtio_*.h
11486
11487 VIRTIO DRIVERS FOR S390
11488 M:      Christian Borntraeger <borntraeger@de.ibm.com>
11489 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
11490 L:      linux-s390@vger.kernel.org
11491 L:      virtualization@lists.linux-foundation.org
11492 L:      kvm@vger.kernel.org
11493 S:      Supported
11494 F:      drivers/s390/virtio/
11495
11496 VIRTIO GPU DRIVER
11497 M:      David Airlie <airlied@linux.ie>
11498 M:      Gerd Hoffmann <kraxel@redhat.com>
11499 L:      dri-devel@lists.freedesktop.org
11500 L:      virtualization@lists.linux-foundation.org
11501 S:      Maintained
11502 F:      drivers/gpu/drm/virtio/
11503 F:      include/uapi/linux/virtio_gpu.h
11504
11505 VIRTIO HOST (VHOST)
11506 M:      "Michael S. Tsirkin" <mst@redhat.com>
11507 L:      kvm@vger.kernel.org
11508 L:      virtualization@lists.linux-foundation.org
11509 L:      netdev@vger.kernel.org
11510 S:      Maintained
11511 F:      drivers/vhost/
11512 F:      include/uapi/linux/vhost.h
11513
11514 VIRTIO INPUT DRIVER
11515 M:      Gerd Hoffmann <kraxel@redhat.com>
11516 S:      Maintained
11517 F:      drivers/virtio/virtio_input.c
11518 F:      include/uapi/linux/virtio_input.h
11519
11520 VIA RHINE NETWORK DRIVER
11521 S:      Orphan
11522 F:      drivers/net/ethernet/via/via-rhine.c
11523
11524 VIA SD/MMC CARD CONTROLLER DRIVER
11525 M:      Bruce Chang <brucechang@via.com.tw>
11526 M:      Harald Welte <HaraldWelte@viatech.com>
11527 S:      Maintained
11528 F:      drivers/mmc/host/via-sdmmc.c
11529
11530 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
11531 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
11532 L:      linux-fbdev@vger.kernel.org
11533 S:      Maintained
11534 F:      include/linux/via-core.h
11535 F:      include/linux/via-gpio.h
11536 F:      include/linux/via_i2c.h
11537 F:      drivers/video/fbdev/via/
11538
11539 VIA VELOCITY NETWORK DRIVER
11540 M:      Francois Romieu <romieu@fr.zoreil.com>
11541 L:      netdev@vger.kernel.org
11542 S:      Maintained
11543 F:      drivers/net/ethernet/via/via-velocity.*
11544
11545 VIRT LIB
11546 M:      Alex Williamson <alex.williamson@redhat.com>
11547 M:      Paolo Bonzini <pbonzini@redhat.com>
11548 L:      kvm@vger.kernel.org
11549 S:      Supported
11550 F:      virt/lib/
11551
11552 VIVID VIRTUAL VIDEO DRIVER
11553 M:      Hans Verkuil <hverkuil@xs4all.nl>
11554 L:      linux-media@vger.kernel.org
11555 T:      git git://linuxtv.org/media_tree.git
11556 W:      https://linuxtv.org
11557 S:      Maintained
11558 F:      drivers/media/platform/vivid/*
11559
11560 VLAN (802.1Q)
11561 M:      Patrick McHardy <kaber@trash.net>
11562 L:      netdev@vger.kernel.org
11563 S:      Maintained
11564 F:      drivers/net/macvlan.c
11565 F:      include/linux/if_*vlan.h
11566 F:      net/8021q/
11567
11568 VLYNQ BUS
11569 M:      Florian Fainelli <florian@openwrt.org>
11570 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
11571 S:      Maintained
11572 F:      drivers/vlynq/vlynq.c
11573 F:      include/linux/vlynq.h
11574
11575 VME SUBSYSTEM
11576 M:      Martyn Welch <martyn@welchs.me.uk>
11577 M:      Manohar Vanga <manohar.vanga@gmail.com>
11578 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11579 L:      devel@driverdev.osuosl.org
11580 S:      Maintained
11581 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
11582 F:      Documentation/vme_api.txt
11583 F:      drivers/staging/vme/
11584 F:      drivers/vme/
11585 F:      include/linux/vme*
11586
11587 VMWARE HYPERVISOR INTERFACE
11588 M:      Alok Kataria <akataria@vmware.com>
11589 L:      virtualization@lists.linux-foundation.org
11590 S:      Supported
11591 F:      arch/x86/kernel/cpu/vmware.c
11592
11593 VMWARE BALLOON DRIVER
11594 M:      Xavier Deguillard <xdeguillard@vmware.com>
11595 M:      Philip Moltmann <moltmann@vmware.com>
11596 M:      "VMware, Inc." <pv-drivers@vmware.com>
11597 L:      linux-kernel@vger.kernel.org
11598 S:      Maintained
11599 F:      drivers/misc/vmw_balloon.c
11600
11601 VMWARE VMMOUSE SUBDRIVER
11602 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
11603 M:      "VMware, Inc." <pv-drivers@vmware.com>
11604 L:      linux-input@vger.kernel.org
11605 S:      Maintained
11606 F:      drivers/input/mouse/vmmouse.c
11607 F:      drivers/input/mouse/vmmouse.h
11608
11609 VMWARE VMXNET3 ETHERNET DRIVER
11610 M:      Shrikrishna Khare <skhare@vmware.com>
11611 M:      "VMware, Inc." <pv-drivers@vmware.com>
11612 L:      netdev@vger.kernel.org
11613 S:      Maintained
11614 F:      drivers/net/vmxnet3/
11615
11616 VMware PVSCSI driver
11617 M:      Arvind Kumar <arvindkumar@vmware.com>
11618 M:      VMware PV-Drivers <pv-drivers@vmware.com>
11619 L:      linux-scsi@vger.kernel.org
11620 S:      Maintained
11621 F:      drivers/scsi/vmw_pvscsi.c
11622 F:      drivers/scsi/vmw_pvscsi.h
11623
11624 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
11625 M:      Liam Girdwood <lgirdwood@gmail.com>
11626 M:      Mark Brown <broonie@kernel.org>
11627 L:      linux-kernel@vger.kernel.org
11628 W:      http://www.slimlogic.co.uk/?p=48
11629 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
11630 S:      Supported
11631 F:      drivers/regulator/
11632 F:      include/linux/regulator/
11633
11634 VRF
11635 M:      David Ahern <dsa@cumulusnetworks.com>
11636 M:      Shrijeet Mukherjee <shm@cumulusnetworks.com>
11637 L:      netdev@vger.kernel.org
11638 S:      Maintained
11639 F:      drivers/net/vrf.c
11640 F:      Documentation/networking/vrf.txt
11641
11642 VT1211 HARDWARE MONITOR DRIVER
11643 M:      Juerg Haefliger <juergh@gmail.com>
11644 L:      lm-sensors@lm-sensors.org
11645 S:      Maintained
11646 F:      Documentation/hwmon/vt1211
11647 F:      drivers/hwmon/vt1211.c
11648
11649 VT8231 HARDWARE MONITOR DRIVER
11650 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
11651 L:      lm-sensors@lm-sensors.org
11652 S:      Maintained
11653 F:      drivers/hwmon/vt8231.c
11654
11655 VUB300 USB to SDIO/SD/MMC bridge chip
11656 M:      Tony Olech <tony.olech@elandigitalsystems.com>
11657 L:      linux-mmc@vger.kernel.org
11658 L:      linux-usb@vger.kernel.org
11659 S:      Supported
11660 F:      drivers/mmc/host/vub300.c
11661
11662 W1 DALLAS'S 1-WIRE BUS
11663 M:      Evgeniy Polyakov <zbr@ioremap.net>
11664 S:      Maintained
11665 F:      Documentation/w1/
11666 F:      drivers/w1/
11667
11668 W83791D HARDWARE MONITORING DRIVER
11669 M:      Marc Hulsman <m.hulsman@tudelft.nl>
11670 L:      lm-sensors@lm-sensors.org
11671 S:      Maintained
11672 F:      Documentation/hwmon/w83791d
11673 F:      drivers/hwmon/w83791d.c
11674
11675 W83793 HARDWARE MONITORING DRIVER
11676 M:      Rudolf Marek <r.marek@assembler.cz>
11677 L:      lm-sensors@lm-sensors.org
11678 S:      Maintained
11679 F:      Documentation/hwmon/w83793
11680 F:      drivers/hwmon/w83793.c
11681
11682 W83795 HARDWARE MONITORING DRIVER
11683 M:      Jean Delvare <jdelvare@suse.com>
11684 L:      lm-sensors@lm-sensors.org
11685 S:      Maintained
11686 F:      drivers/hwmon/w83795.c
11687
11688 W83L51xD SD/MMC CARD INTERFACE DRIVER
11689 M:      Pierre Ossman <pierre@ossman.eu>
11690 S:      Maintained
11691 F:      drivers/mmc/host/wbsd.*
11692
11693 WACOM PROTOCOL 4 SERIAL TABLETS
11694 M:      Julian Squires <julian@cipht.net>
11695 M:      Hans de Goede <hdegoede@redhat.com>
11696 L:      linux-input@vger.kernel.org
11697 S:      Maintained
11698 F:      drivers/input/tablet/wacom_serial4.c
11699
11700 WATCHDOG DEVICE DRIVERS
11701 M:      Wim Van Sebroeck <wim@iguana.be>
11702 R:      Guenter Roeck <linux@roeck-us.net>
11703 L:      linux-watchdog@vger.kernel.org
11704 W:      http://www.linux-watchdog.org/
11705 T:      git git://www.linux-watchdog.org/linux-watchdog.git
11706 S:      Maintained
11707 F:      Documentation/watchdog/
11708 F:      drivers/watchdog/
11709 F:      include/linux/watchdog.h
11710 F:      include/uapi/linux/watchdog.h
11711
11712 WD7000 SCSI DRIVER
11713 M:      Miroslav Zagorac <zaga@fly.cc.fer.hr>
11714 L:      linux-scsi@vger.kernel.org
11715 S:      Maintained
11716 F:      drivers/scsi/wd7000.c
11717
11718 WIIMOTE HID DRIVER
11719 M:      David Herrmann <dh.herrmann@googlemail.com>
11720 L:      linux-input@vger.kernel.org
11721 S:      Maintained
11722 F:      drivers/hid/hid-wiimote*
11723
11724 WINBOND CIR DRIVER
11725 M:      David Härdeman <david@hardeman.nu>
11726 S:      Maintained
11727 F:      drivers/media/rc/winbond-cir.c
11728
11729 WIMAX STACK
11730 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
11731 M:      linux-wimax@intel.com
11732 L:      wimax@linuxwimax.org (subscribers-only)
11733 S:      Supported
11734 W:      http://linuxwimax.org
11735 F:      Documentation/wimax/README.wimax
11736 F:      include/linux/wimax/debug.h
11737 F:      include/net/wimax.h
11738 F:      include/uapi/linux/wimax.h
11739 F:      net/wimax/
11740
11741 WISTRON LAPTOP BUTTON DRIVER
11742 M:      Miloslav Trmac <mitr@volny.cz>
11743 S:      Maintained
11744 F:      drivers/input/misc/wistron_btns.c
11745
11746 WL3501 WIRELESS PCMCIA CARD DRIVER
11747 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
11748 L:      linux-wireless@vger.kernel.org
11749 W:      http://oops.ghostprotocols.net:81/blog
11750 S:      Maintained
11751 F:      drivers/net/wireless/wl3501*
11752
11753 WOLFSON MICROELECTRONICS DRIVERS
11754 L:      patches@opensource.wolfsonmicro.com
11755 T:      git https://github.com/CirrusLogic/linux-drivers.git
11756 W:      https://github.com/CirrusLogic/linux-drivers/wiki
11757 S:      Supported
11758 F:      Documentation/hwmon/wm83??
11759 F:      Documentation/devicetree/bindings/extcon/extcon-arizona.txt
11760 F:      Documentation/devicetree/bindings/regulator/arizona-regulator.txt
11761 F:      Documentation/devicetree/bindings/mfd/arizona.txt
11762 F:      arch/arm/mach-s3c64xx/mach-crag6410*
11763 F:      drivers/clk/clk-wm83*.c
11764 F:      drivers/extcon/extcon-arizona.c
11765 F:      drivers/leds/leds-wm83*.c
11766 F:      drivers/gpio/gpio-*wm*.c
11767 F:      drivers/gpio/gpio-arizona.c
11768 F:      drivers/hwmon/wm83??-hwmon.c
11769 F:      drivers/input/misc/wm831x-on.c
11770 F:      drivers/input/touchscreen/wm831x-ts.c
11771 F:      drivers/input/touchscreen/wm97*.c
11772 F:      drivers/mfd/arizona*
11773 F:      drivers/mfd/wm*.c
11774 F:      drivers/mfd/cs47l24*
11775 F:      drivers/power/wm83*.c
11776 F:      drivers/rtc/rtc-wm83*.c
11777 F:      drivers/regulator/wm8*.c
11778 F:      drivers/video/backlight/wm83*_bl.c
11779 F:      drivers/watchdog/wm83*_wdt.c
11780 F:      include/linux/mfd/arizona/
11781 F:      include/linux/mfd/wm831x/
11782 F:      include/linux/mfd/wm8350/
11783 F:      include/linux/mfd/wm8400*
11784 F:      include/linux/wm97xx.h
11785 F:      include/sound/wm????.h
11786 F:      sound/soc/codecs/arizona.?
11787 F:      sound/soc/codecs/wm*
11788 F:      sound/soc/codecs/cs47l24*
11789
11790 WORKQUEUE
11791 M:      Tejun Heo <tj@kernel.org>
11792 R:      Lai Jiangshan <jiangshanlai@gmail.com>
11793 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
11794 S:      Maintained
11795 F:      include/linux/workqueue.h
11796 F:      kernel/workqueue.c
11797 F:      Documentation/workqueue.txt
11798
11799 X.25 NETWORK LAYER
11800 M:      Andrew Hendry <andrew.hendry@gmail.com>
11801 L:      linux-x25@vger.kernel.org
11802 S:      Odd Fixes
11803 F:      Documentation/networking/x25*
11804 F:      include/net/x25*
11805 F:      net/x25/
11806
11807 X86 ARCHITECTURE (32-BIT AND 64-BIT)
11808 M:      Thomas Gleixner <tglx@linutronix.de>
11809 M:      Ingo Molnar <mingo@redhat.com>
11810 M:      "H. Peter Anvin" <hpa@zytor.com>
11811 M:      x86@kernel.org
11812 L:      linux-kernel@vger.kernel.org
11813 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
11814 S:      Maintained
11815 F:      Documentation/x86/
11816 F:      arch/x86/
11817
11818 X86 PLATFORM DRIVERS
11819 M:      Darren Hart <dvhart@infradead.org>
11820 L:      platform-driver-x86@vger.kernel.org
11821 T:      git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git
11822 S:      Maintained
11823 F:      drivers/platform/x86/
11824 F:      drivers/platform/olpc/
11825
11826 X86 MCE INFRASTRUCTURE
11827 M:      Tony Luck <tony.luck@intel.com>
11828 M:      Borislav Petkov <bp@alien8.de>
11829 L:      linux-edac@vger.kernel.org
11830 S:      Maintained
11831 F:      arch/x86/kernel/cpu/mcheck/*
11832
11833 X86 MICROCODE UPDATE SUPPORT
11834 M:      Borislav Petkov <bp@alien8.de>
11835 S:      Maintained
11836 F:      arch/x86/kernel/cpu/microcode/*
11837
11838 X86 VDSO
11839 M:      Andy Lutomirski <luto@amacapital.net>
11840 L:      linux-kernel@vger.kernel.org
11841 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
11842 S:      Maintained
11843 F:      arch/x86/entry/vdso/
11844
11845 XC2028/3028 TUNER DRIVER
11846 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
11847 L:      linux-media@vger.kernel.org
11848 W:      https://linuxtv.org
11849 T:      git git://linuxtv.org/media_tree.git
11850 S:      Maintained
11851 F:      drivers/media/tuners/tuner-xc2028.*
11852
11853 XEN HYPERVISOR INTERFACE
11854 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11855 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
11856 M:      David Vrabel <david.vrabel@citrix.com>
11857 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11858 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
11859 S:      Supported
11860 F:      arch/x86/xen/
11861 F:      drivers/*/xen-*front.c
11862 F:      drivers/xen/
11863 F:      arch/x86/include/asm/xen/
11864 F:      include/xen/
11865 F:      include/uapi/xen/
11866
11867 XEN HYPERVISOR ARM
11868 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
11869 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11870 S:      Supported
11871 F:      arch/arm/xen/
11872 F:      arch/arm/include/asm/xen/
11873
11874 XEN HYPERVISOR ARM64
11875 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
11876 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11877 S:      Supported
11878 F:      arch/arm64/xen/
11879 F:      arch/arm64/include/asm/xen/
11880
11881 XEN NETWORK BACKEND DRIVER
11882 M:      Ian Campbell <ian.campbell@citrix.com>
11883 M:      Wei Liu <wei.liu2@citrix.com>
11884 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11885 L:      netdev@vger.kernel.org
11886 S:      Supported
11887 F:      drivers/net/xen-netback/*
11888
11889 XEN PCI SUBSYSTEM
11890 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11891 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11892 S:      Supported
11893 F:      arch/x86/pci/*xen*
11894 F:      drivers/pci/*xen*
11895
11896 XEN BLOCK SUBSYSTEM
11897 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11898 M:      Roger Pau MonnĂ© <roger.pau@citrix.com>
11899 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11900 S:      Supported
11901 F:      drivers/block/xen-blkback/*
11902 F:      drivers/block/xen*
11903
11904 XEN PVSCSI DRIVERS
11905 M:      Juergen Gross <jgross@suse.com>
11906 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11907 L:      linux-scsi@vger.kernel.org
11908 S:      Supported
11909 F:      drivers/scsi/xen-scsifront.c
11910 F:      drivers/xen/xen-scsiback.c
11911 F:      include/xen/interface/io/vscsiif.h
11912
11913 XEN SWIOTLB SUBSYSTEM
11914 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11915 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11916 S:      Supported
11917 F:      arch/x86/xen/*swiotlb*
11918 F:      drivers/xen/*swiotlb*
11919
11920 XFS FILESYSTEM
11921 P:      Silicon Graphics Inc
11922 M:      Dave Chinner <david@fromorbit.com>
11923 M:      xfs@oss.sgi.com
11924 L:      xfs@oss.sgi.com
11925 W:      http://oss.sgi.com/projects/xfs
11926 T:      git git://oss.sgi.com/xfs/xfs.git
11927 S:      Supported
11928 F:      Documentation/filesystems/xfs.txt
11929 F:      fs/xfs/
11930
11931 XILINX AXI ETHERNET DRIVER
11932 M:      Anirudha Sarangi <anirudh@xilinx.com>
11933 M:      John Linn <John.Linn@xilinx.com>
11934 S:      Maintained
11935 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
11936
11937 XILINX UARTLITE SERIAL DRIVER
11938 M:      Peter Korsgaard <jacmet@sunsite.dk>
11939 L:      linux-serial@vger.kernel.org
11940 S:      Maintained
11941 F:      drivers/tty/serial/uartlite.c
11942
11943 XILINX VIDEO IP CORES
11944 M:      Hyun Kwon <hyun.kwon@xilinx.com>
11945 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11946 L:      linux-media@vger.kernel.org
11947 T:      git git://linuxtv.org/media_tree.git
11948 S:      Supported
11949 F:      Documentation/devicetree/bindings/media/xilinx/
11950 F:      drivers/media/platform/xilinx/
11951 F:      include/uapi/linux/xilinx-v4l2-controls.h
11952
11953 XILLYBUS DRIVER
11954 M:      Eli Billauer <eli.billauer@gmail.com>
11955 L:      linux-kernel@vger.kernel.org
11956 S:      Supported
11957 F:      drivers/char/xillybus/
11958
11959 XTENSA XTFPGA PLATFORM SUPPORT
11960 M:      Max Filippov <jcmvbkbc@gmail.com>
11961 L:      linux-xtensa@linux-xtensa.org
11962 S:      Maintained
11963 F:      drivers/spi/spi-xtensa-xtfpga.c
11964 F:      sound/soc/xtensa/xtfpga-i2s.c
11965
11966 YAM DRIVER FOR AX.25
11967 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
11968 L:      linux-hams@vger.kernel.org
11969 S:      Maintained
11970 F:      drivers/net/hamradio/yam*
11971 F:      include/linux/yam.h
11972
11973 YEALINK PHONE DRIVER
11974 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
11975 L:      usbb2k-api-dev@nongnu.org
11976 S:      Maintained
11977 F:      Documentation/input/yealink.txt
11978 F:      drivers/input/misc/yealink.*
11979
11980 Z8530 DRIVER FOR AX.25
11981 M:      Joerg Reuter <jreuter@yaina.de>
11982 W:      http://yaina.de/jreuter/
11983 W:      http://www.qsl.net/dl1bke/
11984 L:      linux-hams@vger.kernel.org
11985 S:      Maintained
11986 F:      Documentation/networking/z8530drv.txt
11987 F:      drivers/net/hamradio/*scc.c
11988 F:      drivers/net/hamradio/z8530.h
11989
11990 ZBUD COMPRESSED PAGE ALLOCATOR
11991 M:      Seth Jennings <sjennings@variantweb.net>
11992 L:      linux-mm@kvack.org
11993 S:      Maintained
11994 F:      mm/zbud.c
11995 F:      include/linux/zbud.h
11996
11997 ZD1211RW WIRELESS DRIVER
11998 M:      Daniel Drake <dsd@gentoo.org>
11999 M:      Ulrich Kunitz <kune@deine-taler.de>
12000 W:      http://zd1211.ath.cx/wiki/DriverRewrite
12001 L:      linux-wireless@vger.kernel.org
12002 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
12003 S:      Maintained
12004 F:      drivers/net/wireless/zydas/zd1211rw/
12005
12006 ZPOOL COMPRESSED PAGE STORAGE API
12007 M:      Dan Streetman <ddstreet@ieee.org>
12008 L:      linux-mm@kvack.org
12009 S:      Maintained
12010 F:      mm/zpool.c
12011 F:      include/linux/zpool.h
12012
12013 ZR36067 VIDEO FOR LINUX DRIVER
12014 L:      mjpeg-users@lists.sourceforge.net
12015 L:      linux-media@vger.kernel.org
12016 W:      http://mjpeg.sourceforge.net/driver-zoran/
12017 T:      hg https://linuxtv.org/hg/v4l-dvb
12018 S:      Odd Fixes
12019 F:      drivers/media/pci/zoran/
12020
12021 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
12022 M:      Minchan Kim <minchan@kernel.org>
12023 M:      Nitin Gupta <ngupta@vflare.org>
12024 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
12025 L:      linux-kernel@vger.kernel.org
12026 S:      Maintained
12027 F:      drivers/block/zram/
12028 F:      Documentation/blockdev/zram.txt
12029
12030 ZS DECSTATION Z85C30 SERIAL DRIVER
12031 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
12032 S:      Maintained
12033 F:      drivers/tty/serial/zs.*
12034
12035 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
12036 M:      Minchan Kim <minchan@kernel.org>
12037 M:      Nitin Gupta <ngupta@vflare.org>
12038 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
12039 L:      linux-mm@kvack.org
12040 S:      Maintained
12041 F:      mm/zsmalloc.c
12042 F:      include/linux/zsmalloc.h
12043 F:      Documentation/vm/zsmalloc.txt
12044
12045 ZSWAP COMPRESSED SWAP CACHING
12046 M:      Seth Jennings <sjennings@variantweb.net>
12047 L:      linux-mm@kvack.org
12048 S:      Maintained
12049 F:      mm/zswap.c
12050
12051 THE REST
12052 M:      Linus Torvalds <torvalds@linux-foundation.org>
12053 L:      linux-kernel@vger.kernel.org
12054 Q:      http://patchwork.kernel.org/project/LKML/list/
12055 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
12056 S:      Buried alive in reporters
12057 F:      *
12058 F:      */