]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - MAINTAINERS
Merge remote-tracking branch 'pinctrl/for-next'
[karo-tx-linux.git] / MAINTAINERS
1
2
3         List of maintainers and how to submit kernel changes
4
5 Please try to follow the guidelines below.  This will make things
6 easier on the maintainers.  Not all of these guidelines matter for every
7 trivial patch so apply some common sense.
8
9 1.      Always _test_ your changes, however small, on at least 4 or
10         5 people, preferably many more.
11
12 2.      Try to release a few ALPHA test versions to the net. Announce
13         them onto the kernel channel and await results. This is especially
14         important for device drivers, because often that's the only way
15         you will find things like the fact version 3 firmware needs
16         a magic fix you didn't know about, or some clown changed the
17         chips on a board and not its name.  (Don't laugh!  Look at the
18         SMC etherpower for that.)
19
20 3.      Make sure your changes compile correctly in multiple
21         configurations. In particular check that changes work both as a
22         module and built into the kernel.
23
24 4.      When you are happy with a change make it generally available for
25         testing and await feedback.
26
27 5.      Make a patch available to the relevant maintainer in the list. Use
28         'diff -u' to make the patch easy to merge. Be prepared to get your
29         changes sent back with seemingly silly requests about formatting
30         and variable names.  These aren't as silly as they seem. One
31         job the maintainers (and especially Linus) do is to keep things
32         looking the same. Sometimes this means that the clever hack in
33         your driver to get around a problem actually needs to become a
34         generalized kernel feature ready for next time.
35
36         PLEASE check your patch with the automated style checker
37         (scripts/checkpatch.pl) to catch trivial style violations.
38         See Documentation/CodingStyle for guidance here.
39
40         PLEASE CC: the maintainers and mailing lists that are generated
41         by scripts/get_maintainer.pl.  The results returned by the
42         script will be best if you have git installed and are making
43         your changes in a branch derived from Linus' latest git tree.
44         See Documentation/SubmittingPatches for details.
45
46         PLEASE try to include any credit lines you want added with the
47         patch. It avoids people being missed off by mistake and makes
48         it easier to know who wants adding and who doesn't.
49
50         PLEASE document known bugs. If it doesn't work for everything
51         or does something very odd once a month document it.
52
53         PLEASE remember that submissions must be made under the terms
54         of the Linux Foundation certificate of contribution and should
55         include a Signed-off-by: line.  The current version of this
56         "Developer's Certificate of Origin" (DCO) is listed in the file
57         Documentation/SubmittingPatches.
58
59 6.      Make sure you have the right to send any changes you make. If you
60         do changes at work you may find your employer owns the patch
61         not you.
62
63 7.      When sending security related changes or reports to a maintainer
64         please Cc: security@kernel.org, especially if the maintainer
65         does not respond.
66
67 8.      Happy hacking.
68
69 Descriptions of section entries:
70
71         P: Person (obsolete)
72         M: Mail patches to: FullName <address@domain>
73         R: Designated reviewer: FullName <address@domain>
74            These reviewers should be CCed on patches.
75         L: Mailing list that is relevant to this area
76         W: Web-page with status/info
77         Q: Patchwork web based patch tracking system site
78         T: SCM tree type and location.
79            Type is one of: git, hg, quilt, stgit, topgit
80         S: Status, one of the following:
81            Supported:   Someone is actually paid to look after this.
82            Maintained:  Someone actually looks after it.
83            Odd Fixes:   It has a maintainer but they don't have time to do
84                         much other than throw the odd patch in. See below..
85            Orphan:      No current maintainer [but maybe you could take the
86                         role as you write your new code].
87            Obsolete:    Old code. Something tagged obsolete generally means
88                         it has been replaced by a better system and you
89                         should be using that.
90         F: Files and directories with wildcard patterns.
91            A trailing slash includes all files and subdirectory files.
92            F:   drivers/net/    all files in and below drivers/net
93            F:   drivers/net/*   all files in drivers/net, but not below
94            F:   */net/*         all files in "any top level directory"/net
95            One pattern per line.  Multiple F: lines acceptable.
96         N: Files and directories with regex patterns.
97            N:   [^a-z]tegra     all files whose path contains the word tegra
98            One pattern per line.  Multiple N: lines acceptable.
99            scripts/get_maintainer.pl has different behavior for files that
100            match F: pattern and matches of N: patterns.  By default,
101            get_maintainer will not look at git log history when an F: pattern
102            match occurs.  When an N: match occurs, git log history is used
103            to also notify the people that have git commit signatures.
104         X: Files and directories that are NOT maintained, same rules as F:
105            Files exclusions are tested before file matches.
106            Can be useful for excluding a specific subdirectory, for instance:
107            F:   net/
108            X:   net/ipv6/
109            matches all files in and below net excluding net/ipv6/
110         K: Keyword perl extended regex pattern to match content in a
111            patch or file.  For instance:
112            K: of_get_profile
113               matches patches or files that contain "of_get_profile"
114            K: \b(printk|pr_(info|err))\b
115               matches patches or files that contain one or more of the words
116               printk, pr_info or pr_err
117            One regex pattern per line.  Multiple K: lines acceptable.
118
119 Note: For the hard of thinking, this list is meant to remain in alphabetical
120 order. If you could add yourselves to it in alphabetical order that would be
121 so much easier [Ed]
122
123 Maintainers List (try to look for most precise areas first)
124
125                 -----------------------------------
126
127 3C59X NETWORK DRIVER
128 M:      Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
129 L:      netdev@vger.kernel.org
130 S:      Maintained
131 F:      Documentation/networking/vortex.txt
132 F:      drivers/net/ethernet/3com/3c59x.c
133
134 3CR990 NETWORK DRIVER
135 M:      David Dillow <dave@thedillows.org>
136 L:      netdev@vger.kernel.org
137 S:      Maintained
138 F:      drivers/net/ethernet/3com/typhoon*
139
140 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
141 M:      Adam Radford <linuxraid@lsi.com>
142 L:      linux-scsi@vger.kernel.org
143 W:      http://www.lsi.com
144 S:      Supported
145 F:      drivers/scsi/3w-*
146
147 53C700 AND 53C700-66 SCSI DRIVER
148 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
149 L:      linux-scsi@vger.kernel.org
150 S:      Maintained
151 F:      drivers/scsi/53c700*
152
153 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
154 M:      Alexander Aring <alex.aring@gmail.com>
155 M:      Jukka Rissanen <jukka.rissanen@linux.intel.com>
156 L:      linux-bluetooth@vger.kernel.org
157 L:      linux-wpan@vger.kernel.org
158 S:      Maintained
159 F:      net/6lowpan/
160 F:      include/net/6lowpan.h
161 F:      Documentation/networking/6lowpan.txt
162
163 6PACK NETWORK DRIVER FOR AX.25
164 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
165 L:      linux-hams@vger.kernel.org
166 S:      Maintained
167 F:      drivers/net/hamradio/6pack.c
168
169 8169 10/100/1000 GIGABIT ETHERNET DRIVER
170 M:      Realtek linux nic maintainers <nic_swsd@realtek.com>
171 L:      netdev@vger.kernel.org
172 S:      Maintained
173 F:      drivers/net/ethernet/realtek/r8169.c
174
175 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
176 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
177 L:      linux-serial@vger.kernel.org
178 W:      http://serial.sourceforge.net
179 S:      Maintained
180 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
181 F:      drivers/tty/serial/8250*
182 F:      include/linux/serial_8250.h
183
184 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
185 L:      netdev@vger.kernel.org
186 S:      Orphan / Obsolete
187 F:      drivers/net/ethernet/8390/
188
189 9P FILE SYSTEM
190 M:      Eric Van Hensbergen <ericvh@gmail.com>
191 M:      Ron Minnich <rminnich@sandia.gov>
192 M:      Latchesar Ionkov <lucho@ionkov.net>
193 L:      v9fs-developer@lists.sourceforge.net
194 W:      http://swik.net/v9fs
195 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
196 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
197 S:      Maintained
198 F:      Documentation/filesystems/9p.txt
199 F:      fs/9p/
200 F:      net/9p/
201 F:      include/net/9p/
202 F:      include/uapi/linux/virtio_9p.h
203 F:      include/trace/events/9p.h
204
205
206 A8293 MEDIA DRIVER
207 M:      Antti Palosaari <crope@iki.fi>
208 L:      linux-media@vger.kernel.org
209 W:      https://linuxtv.org
210 W:      http://palosaari.fi/linux/
211 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
212 T:      git git://linuxtv.org/anttip/media_tree.git
213 S:      Maintained
214 F:      drivers/media/dvb-frontends/a8293*
215
216 AACRAID SCSI RAID DRIVER
217 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
218 L:      linux-scsi@vger.kernel.org
219 W:      http://www.adaptec.com/
220 S:      Supported
221 F:      Documentation/scsi/aacraid.txt
222 F:      drivers/scsi/aacraid/
223
224 ABI/API
225 L:      linux-api@vger.kernel.org
226 F:      include/linux/syscalls.h
227 F:      kernel/sys_ni.c
228
229 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
230 M:      Hans de Goede <hdegoede@redhat.com>
231 L:      lm-sensors@lm-sensors.org
232 S:      Maintained
233 F:      drivers/hwmon/abituguru.c
234
235 ABIT UGURU 3 HARDWARE MONITOR DRIVER
236 M:      Alistair John Strachan <alistair@devzero.co.uk>
237 L:      lm-sensors@lm-sensors.org
238 S:      Maintained
239 F:      drivers/hwmon/abituguru3.c
240
241 ACCES 104-IDI-48 GPIO DRIVER
242 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
243 L:      linux-gpio@vger.kernel.org
244 S:      Maintained
245 F:      drivers/gpio/gpio-104-idi-48.c
246
247 ACCES 104-IDIO-16 GPIO DRIVER
248 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
249 L:      linux-gpio@vger.kernel.org
250 S:      Maintained
251 F:      drivers/gpio/gpio-104-idio-16.c
252
253 ACENIC DRIVER
254 M:      Jes Sorensen <jes@trained-monkey.org>
255 L:      linux-acenic@sunsite.dk
256 S:      Maintained
257 F:      drivers/net/ethernet/alteon/acenic*
258
259 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
260 M:      Peter Feuerer <peter@piie.net>
261 L:      platform-driver-x86@vger.kernel.org
262 W:      http://piie.net/?section=acerhdf
263 S:      Maintained
264 F:      drivers/platform/x86/acerhdf.c
265
266 ACER WMI LAPTOP EXTRAS
267 M:      "Lee, Chun-Yi" <jlee@suse.com>
268 L:      platform-driver-x86@vger.kernel.org
269 S:      Maintained
270 F:      drivers/platform/x86/acer-wmi.c
271
272 ACPI
273 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
274 M:      Len Brown <lenb@kernel.org>
275 L:      linux-acpi@vger.kernel.org
276 W:      https://01.org/linux-acpi
277 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
278 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
279 S:      Supported
280 F:      drivers/acpi/
281 F:      drivers/pnp/pnpacpi/
282 F:      include/linux/acpi.h
283 F:      include/acpi/
284 F:      Documentation/acpi/
285 F:      Documentation/ABI/testing/sysfs-bus-acpi
286 F:      drivers/pci/*acpi*
287 F:      drivers/pci/*/*acpi*
288 F:      drivers/pci/*/*/*acpi*
289 F:      tools/power/acpi/
290
291 ACPI COMPONENT ARCHITECTURE (ACPICA)
292 M:      Robert Moore <robert.moore@intel.com>
293 M:      Lv Zheng <lv.zheng@intel.com>
294 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
295 L:      linux-acpi@vger.kernel.org
296 L:      devel@acpica.org
297 W:      https://acpica.org/
298 W:      https://github.com/acpica/acpica/
299 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
300 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
301 S:      Supported
302 F:      drivers/acpi/acpica/
303 F:      include/acpi/
304 F:      tools/power/acpi/
305
306 ACPI FAN DRIVER
307 M:      Zhang Rui <rui.zhang@intel.com>
308 L:      linux-acpi@vger.kernel.org
309 W:      https://01.org/linux-acpi
310 S:      Supported
311 F:      drivers/acpi/fan.c
312
313 ACPI THERMAL DRIVER
314 M:      Zhang Rui <rui.zhang@intel.com>
315 L:      linux-acpi@vger.kernel.org
316 W:      https://01.org/linux-acpi
317 S:      Supported
318 F:      drivers/acpi/*thermal*
319
320 ACPI VIDEO DRIVER
321 M:      Zhang Rui <rui.zhang@intel.com>
322 L:      linux-acpi@vger.kernel.org
323 W:      https://01.org/linux-acpi
324 S:      Supported
325 F:      drivers/acpi/acpi_video.c
326
327 ACPI WMI DRIVER
328 L:      platform-driver-x86@vger.kernel.org
329 S:      Orphan
330 F:      drivers/platform/x86/wmi.c
331
332 AD1889 ALSA SOUND DRIVER
333 M:      Thibaut Varene <T-Bone@parisc-linux.org>
334 W:      http://wiki.parisc-linux.org/AD1889
335 L:      linux-parisc@vger.kernel.org
336 S:      Maintained
337 F:      sound/pci/ad1889.*
338
339 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
340 M:      Michael Hennerich <michael.hennerich@analog.com>
341 W:      http://wiki.analog.com/AD5254
342 W:      http://ez.analog.com/community/linux-device-drivers
343 S:      Supported
344 F:      drivers/misc/ad525x_dpot.c
345
346 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
347 M:      Michael Hennerich <michael.hennerich@analog.com>
348 W:      http://wiki.analog.com/AD5398
349 W:      http://ez.analog.com/community/linux-device-drivers
350 S:      Supported
351 F:      drivers/regulator/ad5398.c
352
353 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
354 M:      Michael Hennerich <michael.hennerich@analog.com>
355 W:      http://wiki.analog.com/AD7142
356 W:      http://ez.analog.com/community/linux-device-drivers
357 S:      Supported
358 F:      drivers/input/misc/ad714x.c
359
360 AD7877 TOUCHSCREEN DRIVER
361 M:      Michael Hennerich <michael.hennerich@analog.com>
362 W:      http://wiki.analog.com/AD7877
363 W:      http://ez.analog.com/community/linux-device-drivers
364 S:      Supported
365 F:      drivers/input/touchscreen/ad7877.c
366
367 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
368 M:      Michael Hennerich <michael.hennerich@analog.com>
369 W:      http://wiki.analog.com/AD7879
370 W:      http://ez.analog.com/community/linux-device-drivers
371 S:      Supported
372 F:      drivers/input/touchscreen/ad7879.c
373
374 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
375 M:      Jiri Kosina <jikos@kernel.org>
376 S:      Maintained
377
378 ADF7242 IEEE 802.15.4 RADIO DRIVER
379 M:      Michael Hennerich <michael.hennerich@analog.com>
380 W:      https://wiki.analog.com/ADF7242
381 W:      http://ez.analog.com/community/linux-device-drivers
382 L:      linux-wpan@vger.kernel.org
383 S:      Supported
384 F:      drivers/net/ieee802154/adf7242.c
385 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
386
387 ADM1025 HARDWARE MONITOR DRIVER
388 M:      Jean Delvare <jdelvare@suse.com>
389 L:      lm-sensors@lm-sensors.org
390 S:      Maintained
391 F:      Documentation/hwmon/adm1025
392 F:      drivers/hwmon/adm1025.c
393
394 ADM1029 HARDWARE MONITOR DRIVER
395 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
396 L:      lm-sensors@lm-sensors.org
397 S:      Maintained
398 F:      drivers/hwmon/adm1029.c
399
400 ADM8211 WIRELESS DRIVER
401 L:      linux-wireless@vger.kernel.org
402 W:      http://wireless.kernel.org/
403 S:      Orphan
404 F:      drivers/net/wireless/admtek/adm8211.*
405
406 ADP1653 FLASH CONTROLLER DRIVER
407 M:      Sakari Ailus <sakari.ailus@iki.fi>
408 L:      linux-media@vger.kernel.org
409 S:      Maintained
410 F:      drivers/media/i2c/adp1653.c
411 F:      include/media/i2c/adp1653.h
412
413 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
414 M:      Michael Hennerich <michael.hennerich@analog.com>
415 W:      http://wiki.analog.com/ADP5520
416 W:      http://ez.analog.com/community/linux-device-drivers
417 S:      Supported
418 F:      drivers/mfd/adp5520.c
419 F:      drivers/video/backlight/adp5520_bl.c
420 F:      drivers/leds/leds-adp5520.c
421 F:      drivers/gpio/gpio-adp5520.c
422 F:      drivers/input/keyboard/adp5520-keys.c
423
424 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
425 M:      Michael Hennerich <michael.hennerich@analog.com>
426 W:      http://wiki.analog.com/ADP5588
427 W:      http://ez.analog.com/community/linux-device-drivers
428 S:      Supported
429 F:      drivers/input/keyboard/adp5588-keys.c
430 F:      drivers/gpio/gpio-adp5588.c
431
432 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
433 M:      Michael Hennerich <michael.hennerich@analog.com>
434 W:      http://wiki.analog.com/ADP8860
435 W:      http://ez.analog.com/community/linux-device-drivers
436 S:      Supported
437 F:      drivers/video/backlight/adp8860_bl.c
438
439 ADS1015 HARDWARE MONITOR DRIVER
440 M:      Dirk Eibach <eibach@gdsys.de>
441 L:      lm-sensors@lm-sensors.org
442 S:      Maintained
443 F:      Documentation/hwmon/ads1015
444 F:      drivers/hwmon/ads1015.c
445 F:      include/linux/i2c/ads1015.h
446
447 ADT746X FAN DRIVER
448 M:      Colin Leroy <colin@colino.net>
449 S:      Maintained
450 F:      drivers/macintosh/therm_adt746x.c
451
452 ADT7475 HARDWARE MONITOR DRIVER
453 M:      Jean Delvare <jdelvare@suse.com>
454 L:      lm-sensors@lm-sensors.org
455 S:      Maintained
456 F:      Documentation/hwmon/adt7475
457 F:      drivers/hwmon/adt7475.c
458
459 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
460 M:      Michael Hennerich <michael.hennerich@analog.com>
461 W:      http://wiki.analog.com/ADXL345
462 W:      http://ez.analog.com/community/linux-device-drivers
463 S:      Supported
464 F:      drivers/input/misc/adxl34x.c
465
466 ADVANSYS SCSI DRIVER
467 M:      Matthew Wilcox <matthew@wil.cx>
468 M:      Hannes Reinecke <hare@suse.com>
469 L:      linux-scsi@vger.kernel.org
470 S:      Maintained
471 F:      Documentation/scsi/advansys.txt
472 F:      drivers/scsi/advansys.c
473
474 AEDSP16 DRIVER
475 M:      Riccardo Facchetti <fizban@tin.it>
476 S:      Maintained
477 F:      sound/oss/aedsp16.c
478
479 AF9013 MEDIA DRIVER
480 M:      Antti Palosaari <crope@iki.fi>
481 L:      linux-media@vger.kernel.org
482 W:      https://linuxtv.org
483 W:      http://palosaari.fi/linux/
484 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
485 T:      git git://linuxtv.org/anttip/media_tree.git
486 S:      Maintained
487 F:      drivers/media/dvb-frontends/af9013*
488
489 AF9033 MEDIA DRIVER
490 M:      Antti Palosaari <crope@iki.fi>
491 L:      linux-media@vger.kernel.org
492 W:      https://linuxtv.org
493 W:      http://palosaari.fi/linux/
494 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
495 T:      git git://linuxtv.org/anttip/media_tree.git
496 S:      Maintained
497 F:      drivers/media/dvb-frontends/af9033*
498
499 AFFS FILE SYSTEM
500 L:      linux-fsdevel@vger.kernel.org
501 S:      Orphan
502 F:      Documentation/filesystems/affs.txt
503 F:      fs/affs/
504
505 AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
506 M:      David Howells <dhowells@redhat.com>
507 L:      linux-afs@lists.infradead.org
508 S:      Supported
509 F:      fs/afs/
510 F:      include/net/af_rxrpc.h
511 F:      net/rxrpc/af_rxrpc.c
512
513 AGPGART DRIVER
514 M:      David Airlie <airlied@linux.ie>
515 T:      git git://people.freedesktop.org/~airlied/linux (part of drm maint)
516 S:      Maintained
517 F:      drivers/char/agp/
518 F:      include/linux/agp*
519 F:      include/uapi/linux/agp*
520
521 AHA152X SCSI DRIVER
522 M:      "Juergen E. Fischer" <fischer@norbit.de>
523 L:      linux-scsi@vger.kernel.org
524 S:      Maintained
525 F:      drivers/scsi/aha152x*
526 F:      drivers/scsi/pcmcia/aha152x*
527
528 AIC7XXX / AIC79XX SCSI DRIVER
529 M:      Hannes Reinecke <hare@suse.com>
530 L:      linux-scsi@vger.kernel.org
531 S:      Maintained
532 F:      drivers/scsi/aic7xxx/
533
534 AIMSLAB FM RADIO RECEIVER DRIVER
535 M:      Hans Verkuil <hverkuil@xs4all.nl>
536 L:      linux-media@vger.kernel.org
537 T:      git git://linuxtv.org/media_tree.git
538 W:      https://linuxtv.org
539 S:      Maintained
540 F:      drivers/media/radio/radio-aimslab*
541
542 AIO
543 M:      Benjamin LaHaise <bcrl@kvack.org>
544 L:      linux-aio@kvack.org
545 S:      Supported
546 F:      fs/aio.c
547 F:      include/linux/*aio*.h
548
549 AIRSPY MEDIA DRIVER
550 M:      Antti Palosaari <crope@iki.fi>
551 L:      linux-media@vger.kernel.org
552 W:      https://linuxtv.org
553 W:      http://palosaari.fi/linux/
554 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
555 T:      git git://linuxtv.org/anttip/media_tree.git
556 S:      Maintained
557 F:      drivers/media/usb/airspy/
558
559 ALCATEL SPEEDTOUCH USB DRIVER
560 M:      Duncan Sands <duncan.sands@free.fr>
561 L:      linux-usb@vger.kernel.org
562 W:      http://www.linux-usb.org/SpeedTouch/
563 S:      Maintained
564 F:      drivers/usb/atm/speedtch.c
565 F:      drivers/usb/atm/usbatm.c
566
567 ALCHEMY AU1XX0 MMC DRIVER
568 M:      Manuel Lauss <manuel.lauss@gmail.com>
569 S:      Maintained
570 F:      drivers/mmc/host/au1xmmc.c
571
572 ALI1563 I2C DRIVER
573 M:      Rudolf Marek <r.marek@assembler.cz>
574 L:      linux-i2c@vger.kernel.org
575 S:      Maintained
576 F:      Documentation/i2c/busses/i2c-ali1563
577 F:      drivers/i2c/busses/i2c-ali1563.c
578
579 ALLWINNER SECURITY SYSTEM
580 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
581 L:      linux-crypto@vger.kernel.org
582 S:      Maintained
583 F:      drivers/crypto/sunxi-ss/
584
585 ALPHA PORT
586 M:      Richard Henderson <rth@twiddle.net>
587 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
588 M:      Matt Turner <mattst88@gmail.com>
589 S:      Odd Fixes
590 L:      linux-alpha@vger.kernel.org
591 F:      arch/alpha/
592
593 ALTERA MAILBOX DRIVER
594 M:      Ley Foon Tan <lftan@altera.com>
595 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
596 S:      Maintained
597 F:      drivers/mailbox/mailbox-altera.c
598
599 ALTERA PIO DRIVER
600 M:      Tien Hock Loh <thloh@altera.com>
601 L:      linux-gpio@vger.kernel.org
602 S:      Maintained
603 F:      drivers/gpio/gpio-altera.c
604
605 ALTERA TRIPLE SPEED ETHERNET DRIVER
606 M:      Vince Bridgers <vbridger@opensource.altera.com>
607 L:      netdev@vger.kernel.org
608 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
609 S:      Maintained
610 F:      drivers/net/ethernet/altera/
611
612 ALTERA UART/JTAG UART SERIAL DRIVERS
613 M:      Tobias Klauser <tklauser@distanz.ch>
614 L:      linux-serial@vger.kernel.org
615 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
616 S:      Maintained
617 F:      drivers/tty/serial/altera_uart.c
618 F:      drivers/tty/serial/altera_jtaguart.c
619 F:      include/linux/altera_uart.h
620 F:      include/linux/altera_jtaguart.h
621
622 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
623 M:      Tom Lendacky <thomas.lendacky@amd.com>
624 L:      linux-crypto@vger.kernel.org
625 S:      Supported
626 F:      drivers/crypto/ccp/
627 F:      include/linux/ccp.h
628
629 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
630 M:      Huang Rui <ray.huang@amd.com>
631 L:      lm-sensors@lm-sensors.org
632 S:      Supported
633 F:      Documentation/hwmon/fam15h_power
634 F:      drivers/hwmon/fam15h_power.c
635
636 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
637 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
638 S:      Orphan
639 F:      drivers/usb/gadget/udc/amd5536udc.*
640
641 AMD GEODE PROCESSOR/CHIPSET SUPPORT
642 P:      Andres Salomon <dilinger@queued.net>
643 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
644 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
645 S:      Supported
646 F:      drivers/char/hw_random/geode-rng.c
647 F:      drivers/crypto/geode*
648 F:      drivers/video/fbdev/geode/
649 F:      arch/x86/include/asm/geode.h
650
651 AMD IOMMU (AMD-VI)
652 M:      Joerg Roedel <joro@8bytes.org>
653 L:      iommu@lists.linux-foundation.org
654 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
655 S:      Maintained
656 F:      drivers/iommu/amd_iommu*.[ch]
657 F:      include/linux/amd-iommu.h
658
659 AMD KFD
660 M:      Oded Gabbay <oded.gabbay@gmail.com>
661 L:      dri-devel@lists.freedesktop.org
662 T:      git git://people.freedesktop.org/~gabbayo/linux.git
663 S:      Supported
664 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c
665 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
666 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
667 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
668 F:      drivers/gpu/drm/amd/amdkfd/
669 F:      drivers/gpu/drm/amd/include/cik_structs.h
670 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
671 F:      drivers/gpu/drm/amd/include/vi_structs.h
672 F:      drivers/gpu/drm/radeon/radeon_kfd.c
673 F:      drivers/gpu/drm/radeon/radeon_kfd.h
674 F:      include/uapi/linux/kfd_ioctl.h
675
676 AMD SEATTLE DEVICE TREE SUPPORT
677 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
678 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
679 M:      Tom Lendacky <thomas.lendacky@amd.com>
680 S:      Supported
681 F:      arch/arm64/boot/dts/amd/
682
683 AMD XGBE DRIVER
684 M:      Tom Lendacky <thomas.lendacky@amd.com>
685 L:      netdev@vger.kernel.org
686 S:      Supported
687 F:      drivers/net/ethernet/amd/xgbe/
688 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
689
690 AMS (Apple Motion Sensor) DRIVER
691 M:      Michael Hanselmann <linux-kernel@hansmi.ch>
692 S:      Supported
693 F:      drivers/macintosh/ams/
694
695 ANALOG DEVICES INC AD9389B DRIVER
696 M:      Hans Verkuil <hans.verkuil@cisco.com>
697 L:      linux-media@vger.kernel.org
698 S:      Maintained
699 F:      drivers/media/i2c/ad9389b*
700
701 ANALOG DEVICES INC ADV7180 DRIVER
702 M:      Lars-Peter Clausen <lars@metafoo.de>
703 L:      linux-media@vger.kernel.org
704 W:      http://ez.analog.com/community/linux-device-drivers
705 S:      Supported
706 F:      drivers/media/i2c/adv7180.c
707
708 ANALOG DEVICES INC ADV7511 DRIVER
709 M:      Hans Verkuil <hans.verkuil@cisco.com>
710 L:      linux-media@vger.kernel.org
711 S:      Maintained
712 F:      drivers/media/i2c/adv7511*
713
714 ANALOG DEVICES INC ADV7604 DRIVER
715 M:      Hans Verkuil <hans.verkuil@cisco.com>
716 L:      linux-media@vger.kernel.org
717 S:      Maintained
718 F:      drivers/media/i2c/adv7604*
719
720 ANALOG DEVICES INC ADV7842 DRIVER
721 M:      Hans Verkuil <hans.verkuil@cisco.com>
722 L:      linux-media@vger.kernel.org
723 S:      Maintained
724 F:      drivers/media/i2c/adv7842*
725
726 ANALOG DEVICES INC ASOC CODEC DRIVERS
727 M:      Lars-Peter Clausen <lars@metafoo.de>
728 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
729 W:      http://wiki.analog.com/
730 W:      http://ez.analog.com/community/linux-device-drivers
731 S:      Supported
732 F:      sound/soc/codecs/adau*
733 F:      sound/soc/codecs/adav*
734 F:      sound/soc/codecs/ad1*
735 F:      sound/soc/codecs/ad7*
736 F:      sound/soc/codecs/ssm*
737 F:      sound/soc/codecs/sigmadsp.*
738
739 ANALOG DEVICES INC ASOC DRIVERS
740 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
741 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
742 W:      http://blackfin.uclinux.org/
743 S:      Supported
744 F:      sound/soc/blackfin/*
745
746 ANALOG DEVICES INC IIO DRIVERS
747 M:      Lars-Peter Clausen <lars@metafoo.de>
748 M:      Michael Hennerich <Michael.Hennerich@analog.com>
749 W:      http://wiki.analog.com/
750 W:      http://ez.analog.com/community/linux-device-drivers
751 S:      Supported
752 F:      drivers/iio/*/ad*
753 X:      drivers/iio/*/adjd*
754 F:      drivers/staging/iio/*/ad*
755 F:      staging/iio/trigger/iio-trig-bfin-timer.c
756
757 ANALOG DEVICES INC DMA DRIVERS
758 M:      Lars-Peter Clausen <lars@metafoo.de>
759 W:      http://ez.analog.com/community/linux-device-drivers
760 S:      Supported
761 F:      drivers/dma/dma-axi-dmac.c
762
763 ANDROID DRIVERS
764 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
765 M:      Arve HjønnevĂ¥g <arve@android.com>
766 M:      Riley Andrews <riandrews@android.com>
767 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
768 L:      devel@driverdev.osuosl.org
769 S:      Supported
770 F:      drivers/android/
771 F:      drivers/staging/android/
772
773 AOA (Apple Onboard Audio) ALSA DRIVER
774 M:      Johannes Berg <johannes@sipsolutions.net>
775 L:      linuxppc-dev@lists.ozlabs.org
776 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
777 S:      Maintained
778 F:      sound/aoa/
779
780 APM DRIVER
781 M:      Jiri Kosina <jikos@kernel.org>
782 S:      Odd fixes
783 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
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 HDLCD DRM DRIVER
839 M:      Liviu Dudau <liviu.dudau@arm.com>
840 S:      Supported
841 F:      drivers/gpu/drm/arm/
842 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
843
844 ARM MFM AND FLOPPY DRIVERS
845 M:      Ian Molton <spyro@f2s.com>
846 S:      Maintained
847 F:      arch/arm/lib/floppydma.S
848 F:      arch/arm/include/asm/floppy.h
849
850 ARM PMU PROFILING AND DEBUGGING
851 M:      Will Deacon <will.deacon@arm.com>
852 R:      Mark Rutland <mark.rutland@arm.com>
853 S:      Maintained
854 F:      arch/arm*/kernel/perf_*
855 F:      arch/arm/oprofile/common.c
856 F:      arch/arm*/kernel/hw_breakpoint.c
857 F:      arch/arm*/include/asm/hw_breakpoint.h
858 F:      arch/arm*/include/asm/perf_event.h
859 F:      drivers/perf/arm_pmu.c
860 F:      include/linux/perf/arm_pmu.h
861
862 ARM PORT
863 M:      Russell King <linux@arm.linux.org.uk>
864 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
865 W:      http://www.arm.linux.org.uk/
866 S:      Maintained
867 F:      arch/arm/
868
869 ARM SUB-ARCHITECTURES
870 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
871 S:      Maintained
872 F:      arch/arm/mach-*/
873 F:      arch/arm/plat-*/
874 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
875
876 ARM PRIMECELL AACI PL041 DRIVER
877 M:      Russell King <linux@arm.linux.org.uk>
878 S:      Maintained
879 F:      sound/arm/aaci.*
880
881 ARM PRIMECELL CLCD PL110 DRIVER
882 M:      Russell King <linux@arm.linux.org.uk>
883 S:      Maintained
884 F:      drivers/video/fbdev/amba-clcd.*
885
886 ARM PRIMECELL KMI PL050 DRIVER
887 M:      Russell King <linux@arm.linux.org.uk>
888 S:      Maintained
889 F:      drivers/input/serio/ambakmi.*
890 F:      include/linux/amba/kmi.h
891
892 ARM PRIMECELL MMCI PL180/1 DRIVER
893 M:      Russell King <linux@arm.linux.org.uk>
894 S:      Maintained
895 F:      drivers/mmc/host/mmci.*
896 F:      include/linux/amba/mmci.h
897
898 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
899 M:      Russell King <linux@arm.linux.org.uk>
900 S:      Maintained
901 F:      drivers/tty/serial/amba-pl01*.c
902 F:      include/linux/amba/serial.h
903
904 ARM PRIMECELL BUS SUPPORT
905 M:      Russell King <linux@arm.linux.org.uk>
906 S:      Maintained
907 F:      drivers/amba/
908 F:      include/linux/amba/bus.h
909
910 ARM/ADS SPHERE MACHINE SUPPORT
911 M:      Lennert Buytenhek <kernel@wantstofly.org>
912 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
913 S:      Maintained
914
915 ARM/AFEB9260 MACHINE SUPPORT
916 M:      Sergey Lapin <slapin@ossfans.org>
917 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
918 S:      Maintained
919
920 ARM/AJECO 1ARM MACHINE SUPPORT
921 M:      Lennert Buytenhek <kernel@wantstofly.org>
922 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
923 S:      Maintained
924
925 ARM/Allwinner sunXi SoC support
926 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
927 M:      Chen-Yu Tsai <wens@csie.org>
928 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
929 S:      Maintained
930 N:      sun[x456789]i
931
932 ARM/Allwinner SoC Clock Support
933 M:      Emilio LĂ³pez <emilio@elopez.com.ar>
934 S:      Maintained
935 F:      drivers/clk/sunxi/
936
937 ARM/Amlogic MesonX SoC support
938 M:      Carlo Caione <carlo@caione.org>
939 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
940 S:      Maintained
941 F:      drivers/media/rc/meson-ir.c
942 N:      meson[x68]
943
944 ARM/Annapurna Labs ALPINE ARCHITECTURE
945 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
946 S:      Maintained
947 F:      arch/arm/mach-alpine/
948
949 ARM/ATMEL AT91RM9200, AT91SAM9 AND SAMA5 SOC SUPPORT
950 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
951 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
952 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
953 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
954 W:      http://www.linux4sam.org
955 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nferre/linux-at91.git
956 S:      Supported
957 F:      arch/arm/mach-at91/
958 F:      include/soc/at91/
959 F:      arch/arm/boot/dts/at91*.dts
960 F:      arch/arm/boot/dts/at91*.dtsi
961 F:      arch/arm/boot/dts/sama*.dts
962 F:      arch/arm/boot/dts/sama*.dtsi
963 F:      arch/arm/include/debug/at91.S
964
965 ARM/ATMEL AT91 Clock Support
966 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
967 S:      Maintained
968 F:      drivers/clk/at91
969
970 ARM/CALXEDA HIGHBANK ARCHITECTURE
971 M:      Rob Herring <robh@kernel.org>
972 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
973 S:      Maintained
974 F:      arch/arm/mach-highbank/
975 F:      arch/arm/boot/dts/highbank.dts
976 F:      arch/arm/boot/dts/ecx-*.dts*
977
978 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
979 M:      Krzysztof Halasa <khalasa@piap.pl>
980 S:      Maintained
981 F:      arch/arm/mach-cns3xxx/
982
983 ARM/CAVIUM THUNDER NETWORK DRIVER
984 M:      Sunil Goutham <sgoutham@cavium.com>
985 M:      Robert Richter <rric@kernel.org>
986 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
987 S:      Supported
988 F:      drivers/net/ethernet/cavium/thunder/
989
990 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
991 M:      Alexander Shiyan <shc_work@mail.ru>
992 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
993 S:      Odd Fixes
994 N:      clps711x
995
996 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
997 M:      Hartley Sweeten <hsweeten@visionengravers.com>
998 M:      Ryan Mallon <rmallon@gmail.com>
999 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1000 S:      Maintained
1001 F:      arch/arm/mach-ep93xx/
1002 F:      arch/arm/mach-ep93xx/include/mach/
1003
1004 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1005 M:      Lennert Buytenhek <kernel@wantstofly.org>
1006 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1007 S:      Maintained
1008
1009 ARM/CLKDEV SUPPORT
1010 M:      Russell King <linux@arm.linux.org.uk>
1011 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1012 S:      Maintained
1013 F:      arch/arm/include/asm/clkdev.h
1014 F:      drivers/clk/clkdev.c
1015
1016 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
1017 M:      Mike Rapoport <mike@compulab.co.il>
1018 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1019 S:      Maintained
1020
1021 ARM/CONTEC MICRO9 MACHINE SUPPORT
1022 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1023 S:      Maintained
1024 F:      arch/arm/mach-ep93xx/micro9.c
1025
1026 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1027 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1028 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1029 S:      Maintained
1030 F:      drivers/hwtracing/coresight/*
1031 F:      Documentation/trace/coresight.txt
1032 F:      Documentation/devicetree/bindings/arm/coresight.txt
1033 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1034
1035 ARM/CORGI MACHINE SUPPORT
1036 M:      Richard Purdie <rpurdie@rpsys.net>
1037 S:      Maintained
1038
1039 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1040 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1041 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1042 T:      git git://github.com/ulli-kroll/linux.git
1043 S:      Maintained
1044 F:      arch/arm/mach-gemini/
1045 F:      drivers/rtc/rtc-gemini.c
1046
1047 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1048 M:      Barry Song <baohua@kernel.org>
1049 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1050 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1051 S:      Maintained
1052 F:      arch/arm/boot/dts/prima2*
1053 F:      arch/arm/mach-prima2/
1054 F:      drivers/clk/sirf/
1055 F:      drivers/clocksource/timer-prima2.c
1056 F:      drivers/clocksource/timer-atlas7.c
1057 N:      [^a-z]sirf
1058
1059 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1060 M:      Baruch Siach <baruch@tkos.co.il>
1061 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1062 S:      Maintained
1063 F:      arch/arm/boot/dts/cx92755*
1064 N:      digicolor
1065
1066 ARM/EBSA110 MACHINE SUPPORT
1067 M:      Russell King <linux@arm.linux.org.uk>
1068 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1069 W:      http://www.arm.linux.org.uk/
1070 S:      Maintained
1071 F:      arch/arm/mach-ebsa110/
1072 F:      drivers/net/ethernet/amd/am79c961a.*
1073
1074 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1075 M:      Uwe Kleine-König <kernel@pengutronix.de>
1076 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1077 S:      Maintained
1078 N:      efm32
1079
1080 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1081 M:      Daniel Ribeiro <drwyrm@gmail.com>
1082 M:      Stefan Schmidt <stefan@openezx.org>
1083 M:      Harald Welte <laforge@openezx.org>
1084 L:      openezx-devel@lists.openezx.org (moderated for non-subscribers)
1085 W:      http://www.openezx.org/
1086 S:      Maintained
1087 T:      topgit git://git.openezx.org/openezx.git
1088 F:      arch/arm/mach-pxa/ezx.c
1089
1090 ARM/FARADAY FA526 PORT
1091 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1092 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1093 S:      Maintained
1094 T:      git git://git.berlios.de/gemini-board
1095 F:      arch/arm/mm/*-fa*
1096
1097 ARM/FOOTBRIDGE ARCHITECTURE
1098 M:      Russell King <linux@arm.linux.org.uk>
1099 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1100 W:      http://www.arm.linux.org.uk/
1101 S:      Maintained
1102 F:      arch/arm/include/asm/hardware/dec21285.h
1103 F:      arch/arm/mach-footbridge/
1104
1105 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1106 M:      Shawn Guo <shawnguo@kernel.org>
1107 M:      Sascha Hauer <kernel@pengutronix.de>
1108 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1109 S:      Maintained
1110 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1111 F:      arch/arm/mach-imx/
1112 F:      arch/arm/mach-mxs/
1113 F:      arch/arm/boot/dts/imx*
1114 F:      arch/arm/configs/imx*_defconfig
1115 F:      drivers/clk/imx/
1116 F:      include/soc/imx/
1117
1118 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1119 M:      Shawn Guo <shawnguo@kernel.org>
1120 M:      Sascha Hauer <kernel@pengutronix.de>
1121 R:      Stefan Agner <stefan@agner.ch>
1122 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1123 S:      Maintained
1124 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1125 F:      arch/arm/mach-imx/*vf610*
1126 F:      arch/arm/boot/dts/vf*
1127
1128 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1129 M:      Lennert Buytenhek <kernel@wantstofly.org>
1130 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1131 S:      Maintained
1132
1133 ARM/GUMSTIX MACHINE SUPPORT
1134 M:      Steve Sakoman <sakoman@gmail.com>
1135 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1136 S:      Maintained
1137
1138 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1139 M:      Philipp Zabel <philipp.zabel@gmail.com>
1140 M:      Paul Parsons <lost.distance@yahoo.com>
1141 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1142 S:      Maintained
1143 F:      arch/arm/mach-pxa/hx4700.c
1144 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1145 F:      sound/soc/pxa/hx4700.c
1146
1147 ARM/HISILICON SOC SUPPORT
1148 M:      Wei Xu <xuwei5@hisilicon.com>
1149 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1150 W:      http://www.hisilicon.com
1151 S:      Supported
1152 T:      git git://github.com/hisilicon/linux-hisi.git
1153 F:      arch/arm/mach-hisi/
1154 F:      arch/arm/boot/dts/hi3*
1155 F:      arch/arm/boot/dts/hip*
1156 F:      arch/arm/boot/dts/hisi*
1157 F:      arch/arm64/boot/dts/hisilicon/
1158
1159 ARM/HP JORNADA 7XX MACHINE SUPPORT
1160 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1161 W:      www.jlime.com
1162 S:      Maintained
1163 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1164 F:      arch/arm/mach-sa1100/jornada720.c
1165 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1166
1167 ARM/IGEP MACHINE SUPPORT
1168 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1169 M:      Javier Martinez Canillas <javier@dowhile0.org>
1170 L:      linux-omap@vger.kernel.org
1171 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1172 S:      Maintained
1173 F:      arch/arm/boot/dts/omap3-igep*
1174
1175 ARM/INCOME PXA270 SUPPORT
1176 M:      Marek Vasut <marek.vasut@gmail.com>
1177 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1178 S:      Maintained
1179 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1180
1181 ARM/INTEL IOP32X ARM ARCHITECTURE
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 IOP33X ARM ARCHITECTURE
1187 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1188 S:      Orphan
1189
1190 ARM/INTEL IOP13XX ARM ARCHITECTURE
1191 M:      Lennert Buytenhek <kernel@wantstofly.org>
1192 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1193 S:      Maintained
1194
1195 ARM/INTEL IQ81342EX MACHINE SUPPORT
1196 M:      Lennert Buytenhek <kernel@wantstofly.org>
1197 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1198 S:      Maintained
1199
1200 ARM/INTEL IXDP2850 MACHINE SUPPORT
1201 M:      Lennert Buytenhek <kernel@wantstofly.org>
1202 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1203 S:      Maintained
1204
1205 ARM/INTEL IXP4XX ARM ARCHITECTURE
1206 M:      Imre Kaloz <kaloz@openwrt.org>
1207 M:      Krzysztof Halasa <khalasa@piap.pl>
1208 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1209 S:      Maintained
1210 F:      arch/arm/mach-ixp4xx/
1211
1212 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1213 M:      Jonathan Cameron <jic23@cam.ac.uk>
1214 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1215 S:      Maintained
1216 F:      arch/arm/mach-pxa/stargate2.c
1217 F:      drivers/pcmcia/pxa2xx_stargate2.c
1218
1219 ARM/INTEL XSC3 (MANZANO) ARM CORE
1220 M:      Lennert Buytenhek <kernel@wantstofly.org>
1221 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1222 S:      Maintained
1223
1224 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1225 M:      Lennert Buytenhek <kernel@wantstofly.org>
1226 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1227 S:      Maintained
1228
1229 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
1230 M:      Santosh Shilimkar <ssantosh@kernel.org>
1231 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1232 S:      Maintained
1233 F:      arch/arm/mach-keystone/
1234 F:      arch/arm/boot/dts/k2*
1235 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
1236
1237 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
1238 M:      Santosh Shilimkar <ssantosh@kernel.org>
1239 L:      linux-kernel@vger.kernel.org
1240 S:      Maintained
1241 F:      drivers/clk/keystone/
1242
1243 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
1244 M:      Santosh Shilimkar <ssantosh@kernel.org>
1245 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1246 L:      linux-kernel@vger.kernel.org
1247 S:      Maintained
1248 F:      drivers/clocksource/timer-keystone.c
1249
1250 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
1251 M:      Santosh Shilimkar <ssantosh@kernel.org>
1252 L:      linux-kernel@vger.kernel.org
1253 S:      Maintained
1254 F:      drivers/power/reset/keystone-reset.c
1255
1256 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
1257 M:      Santosh Shilimkar <ssantosh@kernel.org>
1258 L:      linux-kernel@vger.kernel.org
1259 S:      Maintained
1260 F:      drivers/memory/*emif*
1261
1262 ARM/LOGICPD PXA270 MACHINE SUPPORT
1263 M:      Lennert Buytenhek <kernel@wantstofly.org>
1264 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1265 S:      Maintained
1266
1267 ARM/LPC18XX ARCHITECTURE
1268 M:      Joachim Eastwood <manabian@gmail.com>
1269 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1270 S:      Maintained
1271 F:      arch/arm/boot/dts/lpc43*
1272 F:      drivers/clk/nxp/clk-lpc18xx*
1273 F:      drivers/clocksource/time-lpc32xx.c
1274 F:      drivers/i2c/busses/i2c-lpc2k.c
1275 F:      drivers/memory/pl172.c
1276 F:      drivers/mtd/spi-nor/nxp-spifi.c
1277 F:      drivers/rtc/rtc-lpc24xx.c
1278 N:      lpc18xx
1279
1280 ARM/MAGICIAN MACHINE SUPPORT
1281 M:      Philipp Zabel <philipp.zabel@gmail.com>
1282 S:      Maintained
1283
1284 ARM/Marvell Kirkwood and Armada 370, 375, 38x, XP SOC support
1285 M:      Jason Cooper <jason@lakedaemon.net>
1286 M:      Andrew Lunn <andrew@lunn.ch>
1287 M:      Gregory Clement <gregory.clement@free-electrons.com>
1288 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1289 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1290 S:      Maintained
1291 F:      arch/arm/mach-mvebu/
1292 F:      drivers/rtc/rtc-armada38x.c
1293 F:      arch/arm/boot/dts/armada*
1294 F:      arch/arm/boot/dts/kirkwood*
1295
1296
1297 ARM/Marvell Berlin SoC support
1298 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1299 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1300 S:      Maintained
1301 F:      arch/arm/mach-berlin/
1302 F:      arch/arm/boot/dts/berlin*
1303 F:      arch/arm64/boot/dts/marvell/berlin*
1304
1305
1306 ARM/Marvell Dove/MV78xx0/Orion SOC support
1307 M:      Jason Cooper <jason@lakedaemon.net>
1308 M:      Andrew Lunn <andrew@lunn.ch>
1309 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1310 M:      Gregory Clement <gregory.clement@free-electrons.com>
1311 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1312 S:      Maintained
1313 F:      arch/arm/mach-dove/
1314 F:      arch/arm/mach-mv78xx0/
1315 F:      arch/arm/mach-orion5x/
1316 F:      arch/arm/plat-orion/
1317 F:      arch/arm/boot/dts/dove*
1318 F:      arch/arm/boot/dts/orion5x*
1319
1320
1321 ARM/Orion SoC/Technologic Systems TS-78xx platform support
1322 M:      Alexander Clouter <alex@digriz.org.uk>
1323 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1324 W:      http://www.digriz.org.uk/ts78xx/kernel
1325 S:      Maintained
1326 F:      arch/arm/mach-orion5x/ts78xx-*
1327
1328 ARM/Mediatek RTC DRIVER
1329 M:      Eddie Huang <eddie.huang@mediatek.com>
1330 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1331 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1332 S:      Maintained
1333 F:      drivers/rtc/rtc-mt6397.c
1334
1335 ARM/Mediatek SoC support
1336 M:      Matthias Brugger <matthias.bgg@gmail.com>
1337 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1338 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1339 S:      Maintained
1340 F:      arch/arm/boot/dts/mt6*
1341 F:      arch/arm/boot/dts/mt8*
1342 F:      arch/arm/mach-mediatek/
1343 N:      mtk
1344 K:      mediatek
1345
1346 ARM/Mediatek USB3 PHY DRIVER
1347 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
1348 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1349 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1350 S:      Maintained
1351 F:      drivers/phy/phy-mt65xx-usb3.c
1352
1353 ARM/MICREL KS8695 ARCHITECTURE
1354 M:      Greg Ungerer <gerg@uclinux.org>
1355 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1356 F:      arch/arm/mach-ks8695/
1357 S:      Odd Fixes
1358
1359 ARM/MIOA701 MACHINE SUPPORT
1360 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1361 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1362 F:      arch/arm/mach-pxa/mioa701.c
1363 S:      Maintained
1364
1365 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1366 M:      Michael Petchkovsky <mkpetch@internode.on.net>
1367 S:      Maintained
1368
1369 ARM/NOMADIK ARCHITECTURE
1370 M:      Alessandro Rubini <rubini@unipv.it>
1371 M:      Linus Walleij <linus.walleij@linaro.org>
1372 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1373 S:      Maintained
1374 F:      arch/arm/mach-nomadik/
1375 F:      drivers/pinctrl/nomadik/
1376 F:      drivers/i2c/busses/i2c-nomadik.c
1377 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
1378
1379 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
1380 M:      Nelson Castillo <arhuaco@freaks-unidos.net>
1381 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
1382 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
1383 S:      Supported
1384
1385 ARM/TOSA MACHINE SUPPORT
1386 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1387 M:      Dirk Opfer <dirk@opfer-online.de>
1388 S:      Maintained
1389
1390 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
1391 M:      Marek Vasut <marek.vasut@gmail.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/palmtx.h
1396 F:      arch/arm/mach-pxa/palmtx.c
1397 F:      arch/arm/mach-pxa/include/mach/palmt5.h
1398 F:      arch/arm/mach-pxa/palmt5.c
1399 F:      arch/arm/mach-pxa/include/mach/palmld.h
1400 F:      arch/arm/mach-pxa/palmld.c
1401 F:      arch/arm/mach-pxa/include/mach/palmte2.h
1402 F:      arch/arm/mach-pxa/palmte2.c
1403 F:      arch/arm/mach-pxa/include/mach/palmtc.h
1404 F:      arch/arm/mach-pxa/palmtc.c
1405
1406 ARM/PALM TREO SUPPORT
1407 M:      Tomas Cech <sleep_walker@suse.com>
1408 L:      linux-arm-kernel@lists.infradead.org
1409 W:      http://hackndev.com
1410 S:      Maintained
1411 F:      arch/arm/mach-pxa/include/mach/palmtreo.h
1412 F:      arch/arm/mach-pxa/palmtreo.c
1413
1414 ARM/PALMZ72 SUPPORT
1415 M:      Sergey Lapin <slapin@ossfans.org>
1416 L:      linux-arm-kernel@lists.infradead.org
1417 W:      http://hackndev.com
1418 S:      Maintained
1419 F:      arch/arm/mach-pxa/include/mach/palmz72.h
1420 F:      arch/arm/mach-pxa/palmz72.c
1421
1422 ARM/PLEB SUPPORT
1423 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
1424 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1425 S:      Maintained
1426
1427 ARM/PT DIGITAL BOARD PORT
1428 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
1429 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1430 W:      http://www.arm.linux.org.uk/
1431 S:      Maintained
1432
1433 ARM/QUALCOMM SUPPORT
1434 M:      Andy Gross <andy.gross@linaro.org>
1435 M:      David Brown <david.brown@linaro.org>
1436 L:      linux-arm-msm@vger.kernel.org
1437 L:      linux-soc@vger.kernel.org
1438 S:      Maintained
1439 F:      arch/arm/boot/dts/qcom-*.dts
1440 F:      arch/arm/boot/dts/qcom-*.dtsi
1441 F:      arch/arm/mach-qcom/
1442 F:      arch/arm64/boot/dts/qcom/*
1443 F:      drivers/i2c/busses/i2c-qup.c
1444 F:      drivers/soc/qcom/
1445 F:      drivers/spi/spi-qup.c
1446 F:      drivers/tty/serial/msm_serial.h
1447 F:      drivers/tty/serial/msm_serial.c
1448 F:      drivers/*/pm8???-*
1449 F:      drivers/mfd/ssbi.c
1450 F:      drivers/firmware/qcom_scm.c
1451 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/agross/linux.git
1452
1453 ARM/RADISYS ENP2611 MACHINE SUPPORT
1454 M:      Lennert Buytenhek <kernel@wantstofly.org>
1455 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1456 S:      Maintained
1457
1458 ARM/RENESAS ARM64 ARCHITECTURE
1459 M:      Simon Horman <horms@verge.net.au>
1460 M:      Magnus Damm <magnus.damm@gmail.com>
1461 L:      linux-sh@vger.kernel.org
1462 Q:      http://patchwork.kernel.org/project/linux-sh/list/
1463 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1464 S:      Supported
1465 F:      arch/arm64/boot/dts/renesas/
1466
1467 ARM/RISCPC ARCHITECTURE
1468 M:      Russell King <linux@arm.linux.org.uk>
1469 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1470 W:      http://www.arm.linux.org.uk/
1471 S:      Maintained
1472 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
1473 F:      arch/arm/include/asm/hardware/ioc.h
1474 F:      arch/arm/include/asm/hardware/iomd.h
1475 F:      arch/arm/include/asm/hardware/memc.h
1476 F:      arch/arm/mach-rpc/
1477 F:      drivers/net/ethernet/8390/etherh.c
1478 F:      drivers/net/ethernet/i825xx/ether1*
1479 F:      drivers/net/ethernet/seeq/ether3*
1480 F:      drivers/scsi/arm/
1481
1482 ARM/Rockchip SoC support
1483 M:      Heiko Stuebner <heiko@sntech.de>
1484 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1485 L:      linux-rockchip@lists.infradead.org
1486 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
1487 S:      Maintained
1488 F:      arch/arm/boot/dts/rk3*
1489 F:      arch/arm/mach-rockchip/
1490 F:      drivers/clk/rockchip/
1491 F:      drivers/i2c/busses/i2c-rk3x.c
1492 F:      drivers/*/*rockchip*
1493 F:      drivers/*/*/*rockchip*
1494 F:      sound/soc/rockchip/
1495 N:      rockchip
1496
1497 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
1498 M:      Kukjin Kim <kgene@kernel.org>
1499 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
1500 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1501 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1502 S:      Maintained
1503 F:      arch/arm/boot/dts/s3c*
1504 F:      arch/arm/boot/dts/s5p*
1505 F:      arch/arm/boot/dts/samsung*
1506 F:      arch/arm/boot/dts/exynos*
1507 F:      arch/arm64/boot/dts/exynos/
1508 F:      arch/arm/plat-samsung/
1509 F:      arch/arm/mach-s3c24*/
1510 F:      arch/arm/mach-s3c64xx/
1511 F:      arch/arm/mach-s5p*/
1512 F:      arch/arm/mach-exynos*/
1513 F:      drivers/*/*s3c2410*
1514 F:      drivers/*/*/*s3c2410*
1515 F:      drivers/soc/samsung/*
1516 F:      drivers/spi/spi-s3c*
1517 F:      sound/soc/samsung/*
1518 F:      Documentation/arm/Samsung/
1519 F:      Documentation/devicetree/bindings/arm/samsung/
1520 F:      Documentation/devicetree/bindings/sram/samsung-sram.txt
1521 F:      Documentation/devicetree/bindings/power/pd-samsung.txt
1522 N:      exynos
1523
1524 ARM/SAMSUNG MOBILE MACHINE SUPPORT
1525 M:      Kyungmin Park <kyungmin.park@samsung.com>
1526 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1527 S:      Maintained
1528 F:      arch/arm/mach-s5pv210/
1529
1530 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1531 M:      Kyungmin Park <kyungmin.park@samsung.com>
1532 M:      Kamil Debski <k.debski@samsung.com>
1533 L:      linux-arm-kernel@lists.infradead.org
1534 L:      linux-media@vger.kernel.org
1535 S:      Maintained
1536 F:      drivers/media/platform/s5p-g2d/
1537
1538 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1539 M:      Kyungmin Park <kyungmin.park@samsung.com>
1540 M:      Kamil Debski <k.debski@samsung.com>
1541 M:      Jeongtae Park <jtp.park@samsung.com>
1542 L:      linux-arm-kernel@lists.infradead.org
1543 L:      linux-media@vger.kernel.org
1544 S:      Maintained
1545 F:      arch/arm/plat-samsung/s5p-dev-mfc.c
1546 F:      drivers/media/platform/s5p-mfc/
1547
1548 ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1549 M:      Kyungmin Park <kyungmin.park@samsung.com>
1550 M:      Tomasz Stanislawski <t.stanislaws@samsung.com>
1551 L:      linux-arm-kernel@lists.infradead.org
1552 L:      linux-media@vger.kernel.org
1553 S:      Maintained
1554 F:      drivers/media/platform/s5p-tv/
1555
1556 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
1557 M:      Andrzej Pietrasiewicz <andrzej.p@samsung.com>
1558 M:      Jacek Anaszewski <j.anaszewski@samsung.com>
1559 L:      linux-arm-kernel@lists.infradead.org
1560 L:      linux-media@vger.kernel.org
1561 S:      Maintained
1562 F:      drivers/media/platform/s5p-jpeg/
1563
1564 ARM/SHMOBILE ARM ARCHITECTURE
1565 M:      Simon Horman <horms@verge.net.au>
1566 M:      Magnus Damm <magnus.damm@gmail.com>
1567 L:      linux-renesas-soc@vger.kernel.org
1568 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
1569 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1570 S:      Supported
1571 F:      arch/arm/boot/dts/emev2*
1572 F:      arch/arm/boot/dts/r7s*
1573 F:      arch/arm/boot/dts/r8a*
1574 F:      arch/arm/boot/dts/sh*
1575 F:      arch/arm/configs/shmobile_defconfig
1576 F:      arch/arm/include/debug/renesas-scif.S
1577 F:      arch/arm/mach-shmobile/
1578 F:      drivers/sh/
1579
1580 ARM/SOCFPGA ARCHITECTURE
1581 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1582 S:      Maintained
1583 F:      arch/arm/mach-socfpga/
1584 F:      arch/arm/boot/dts/socfpga*
1585 F:      arch/arm/configs/socfpga_defconfig
1586 F:      arch/arm64/boot/dts/altera/
1587 W:      http://www.rocketboards.org
1588 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
1589
1590 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1591 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1592 S:      Maintained
1593 F:      drivers/clk/socfpga/
1594
1595 ARM/SOCFPGA EDAC SUPPORT
1596 M:      Thor Thayer <tthayer@opensource.altera.com>
1597 S:      Maintained
1598 F:      drivers/edac/altera_edac.
1599
1600 ARM/STI ARCHITECTURE
1601 M:      Srinivas Kandagatla <srinivas.kandagatla@gmail.com>
1602 M:      Maxime Coquelin <maxime.coquelin@st.com>
1603 M:      Patrice Chotard <patrice.chotard@st.com>
1604 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1605 L:      kernel@stlinux.com
1606 W:      http://www.stlinux.com
1607 S:      Maintained
1608 F:      arch/arm/mach-sti/
1609 F:      arch/arm/boot/dts/sti*
1610 F:      drivers/char/hw_random/st-rng.c
1611 F:      drivers/clocksource/arm_global_timer.c
1612 F:      drivers/clocksource/clksrc_st_lpc.c
1613 F:      drivers/i2c/busses/i2c-st.c
1614 F:      drivers/media/rc/st_rc.c
1615 F:      drivers/media/platform/sti/c8sectpfe/
1616 F:      drivers/mmc/host/sdhci-st.c
1617 F:      drivers/phy/phy-miphy28lp.c
1618 F:      drivers/phy/phy-miphy365x.c
1619 F:      drivers/phy/phy-stih407-usb.c
1620 F:      drivers/phy/phy-stih41x-usb.c
1621 F:      drivers/pinctrl/pinctrl-st.c
1622 F:      drivers/reset/sti/
1623 F:      drivers/rtc/rtc-st-lpc.c
1624 F:      drivers/tty/serial/st-asc.c
1625 F:      drivers/usb/dwc3/dwc3-st.c
1626 F:      drivers/usb/host/ehci-st.c
1627 F:      drivers/usb/host/ohci-st.c
1628 F:      drivers/watchdog/st_lpc_wdt.c
1629 F:      drivers/ata/ahci_st.c
1630
1631 ARM/STM32 ARCHITECTURE
1632 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
1633 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1634 S:      Maintained
1635 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git
1636 N:      stm32
1637 F:      drivers/clocksource/armv7m_systick.c
1638
1639 ARM/TANGO ARCHITECTURE
1640 M:      Marc Gonzalez <marc_gonzalez@sigmadesigns.com>
1641 L:      linux-arm-kernel@lists.infradead.org
1642 S:      Maintained
1643 F:      arch/arm/mach-tango/
1644 F:      arch/arm/boot/dts/tango*
1645
1646 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
1647 M:      Lennert Buytenhek <kernel@wantstofly.org>
1648 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1649 S:      Maintained
1650
1651 ARM/TETON BGA MACHINE SUPPORT
1652 M:      "Mark F. Brown" <mark.brown314@gmail.com>
1653 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1654 S:      Maintained
1655
1656 ARM/THECUS N2100 MACHINE SUPPORT
1657 M:      Lennert Buytenhek <kernel@wantstofly.org>
1658 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1659 S:      Maintained
1660
1661 ARM/NUVOTON W90X900 ARM ARCHITECTURE
1662 M:      Wan ZongShun <mcuos.com@gmail.com>
1663 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1664 W:      http://www.mcuos.com
1665 S:      Maintained
1666 F:      arch/arm/mach-w90x900/
1667 F:      drivers/input/keyboard/w90p910_keypad.c
1668 F:      drivers/input/touchscreen/w90p910_ts.c
1669 F:      drivers/watchdog/nuc900_wdt.c
1670 F:      drivers/net/ethernet/nuvoton/w90p910_ether.c
1671 F:      drivers/mtd/nand/nuc900_nand.c
1672 F:      drivers/rtc/rtc-nuc900.c
1673 F:      drivers/spi/spi-nuc900.c
1674 F:      drivers/usb/host/ehci-w90x900.c
1675 F:      drivers/video/fbdev/nuc900fb.c
1676
1677 ARM/U300 MACHINE SUPPORT
1678 M:      Linus Walleij <linus.walleij@linaro.org>
1679 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1680 S:      Supported
1681 F:      arch/arm/mach-u300/
1682 F:      drivers/clocksource/timer-u300.c
1683 F:      drivers/i2c/busses/i2c-stu300.c
1684 F:      drivers/rtc/rtc-coh901331.c
1685 F:      drivers/watchdog/coh901327_wdt.c
1686 F:      drivers/dma/coh901318*
1687 F:      drivers/mfd/ab3100*
1688 F:      drivers/rtc/rtc-ab3100.c
1689 F:      drivers/rtc/rtc-coh901331.c
1690 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1691
1692 ARM/UNIPHIER ARCHITECTURE
1693 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
1694 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1695 S:      Maintained
1696 F:      arch/arm/boot/dts/uniphier*
1697 F:      arch/arm/include/asm/hardware/cache-uniphier.h
1698 F:      arch/arm/mach-uniphier/
1699 F:      arch/arm/mm/cache-uniphier.c
1700 F:      arch/arm64/boot/dts/socionext/
1701 F:      drivers/bus/uniphier-system-bus.c
1702 F:      drivers/i2c/busses/i2c-uniphier*
1703 F:      drivers/pinctrl/uniphier/
1704 F:      drivers/tty/serial/8250/8250_uniphier.c
1705 N:      uniphier
1706
1707 ARM/Ux500 ARM ARCHITECTURE
1708 M:      Linus Walleij <linus.walleij@linaro.org>
1709 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1710 S:      Maintained
1711 F:      arch/arm/mach-ux500/
1712 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
1713 F:      drivers/dma/ste_dma40*
1714 F:      drivers/hwspinlock/u8500_hsem.c
1715 F:      drivers/mfd/abx500*
1716 F:      drivers/mfd/ab8500*
1717 F:      drivers/mfd/dbx500*
1718 F:      drivers/mfd/db8500*
1719 F:      drivers/pinctrl/nomadik/pinctrl-ab*
1720 F:      drivers/pinctrl/nomadik/pinctrl-nomadik*
1721 F:      drivers/rtc/rtc-ab8500.c
1722 F:      drivers/rtc/rtc-pl031.c
1723 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1724
1725 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
1726 M:      Ulf Hansson <ulf.hansson@linaro.org>
1727 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1728 T:      git git://git.linaro.org/people/ulfh/clk.git
1729 S:      Maintained
1730 F:      drivers/clk/ux500/
1731 F:      include/linux/platform_data/clk-ux500.h
1732
1733 ARM/VERSATILE EXPRESS PLATFORM
1734 M:      Liviu Dudau <liviu.dudau@arm.com>
1735 M:      Sudeep Holla <sudeep.holla@arm.com>
1736 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
1737 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1738 S:      Maintained
1739 F:      arch/arm/boot/dts/vexpress*
1740 F:      arch/arm64/boot/dts/arm/
1741 F:      arch/arm/mach-vexpress/
1742 F:      */*/vexpress*
1743 F:      */*/*/vexpress*
1744 F:      drivers/clk/versatile/clk-vexpress-osc.c
1745 F:      drivers/clocksource/versatile.c
1746
1747 ARM/VFP SUPPORT
1748 M:      Russell King <linux@arm.linux.org.uk>
1749 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1750 W:      http://www.arm.linux.org.uk/
1751 S:      Maintained
1752 F:      arch/arm/vfp/
1753
1754 ARM/VOIPAC PXA270 SUPPORT
1755 M:      Marek Vasut <marek.vasut@gmail.com>
1756 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1757 S:      Maintained
1758 F:      arch/arm/mach-pxa/vpac270.c
1759 F:      arch/arm/mach-pxa/include/mach/vpac270.h
1760
1761 ARM/VT8500 ARM ARCHITECTURE
1762 M:      Tony Prisk <linux@prisktech.co.nz>
1763 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1764 S:      Maintained
1765 F:      arch/arm/mach-vt8500/
1766 F:      drivers/clocksource/vt8500_timer.c
1767 F:      drivers/i2c/busses/i2c-wmt.c
1768 F:      drivers/mmc/host/wmt-sdmmc.c
1769 F:      drivers/pwm/pwm-vt8500.c
1770 F:      drivers/rtc/rtc-vt8500.c
1771 F:      drivers/tty/serial/vt8500_serial.c
1772 F:      drivers/usb/host/ehci-platform.c
1773 F:      drivers/usb/host/uhci-platform.c
1774 F:      drivers/video/fbdev/vt8500lcdfb.*
1775 F:      drivers/video/fbdev/wm8505fb*
1776 F:      drivers/video/fbdev/wmt_ge_rops.*
1777
1778 ARM/ZIPIT Z2 SUPPORT
1779 M:      Marek Vasut <marek.vasut@gmail.com>
1780 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1781 S:      Maintained
1782 F:      arch/arm/mach-pxa/z2.c
1783 F:      arch/arm/mach-pxa/include/mach/z2.h
1784
1785 ARM/ZTE ARCHITECTURE
1786 M:      Jun Nie <jun.nie@linaro.org>
1787 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1788 S:      Maintained
1789 F:      arch/arm/mach-zx/
1790 F:      drivers/clk/zte/
1791 F:      Documentation/devicetree/bindings/arm/zte.txt
1792 F:      Documentation/devicetree/bindings/clock/zx296702-clk.txt
1793
1794 ARM/ZYNQ ARCHITECTURE
1795 M:      Michal Simek <michal.simek@xilinx.com>
1796 R:      Sören Brinkmann <soren.brinkmann@xilinx.com>
1797 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1798 W:      http://wiki.xilinx.com
1799 T:      git https://github.com/Xilinx/linux-xlnx.git
1800 S:      Supported
1801 F:      arch/arm/mach-zynq/
1802 F:      drivers/cpuidle/cpuidle-zynq.c
1803 F:      drivers/block/xsysace.c
1804 N:      zynq
1805 N:      xilinx
1806 F:      drivers/clocksource/cadence_ttc_timer.c
1807 F:      drivers/i2c/busses/i2c-cadence.c
1808 F:      drivers/mmc/host/sdhci-of-arasan.c
1809 F:      drivers/edac/synopsys_edac.c
1810
1811 ARM SMMU DRIVERS
1812 M:      Will Deacon <will.deacon@arm.com>
1813 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1814 S:      Maintained
1815 F:      drivers/iommu/arm-smmu.c
1816 F:      drivers/iommu/arm-smmu-v3.c
1817 F:      drivers/iommu/io-pgtable-arm.c
1818
1819 ARM64 PORT (AARCH64 ARCHITECTURE)
1820 M:      Catalin Marinas <catalin.marinas@arm.com>
1821 M:      Will Deacon <will.deacon@arm.com>
1822 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1823 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
1824 S:      Maintained
1825 F:      arch/arm64/
1826 F:      Documentation/arm64/
1827
1828 AS3645A LED FLASH CONTROLLER DRIVER
1829 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1830 L:      linux-media@vger.kernel.org
1831 T:      git git://linuxtv.org/media_tree.git
1832 S:      Maintained
1833 F:      drivers/media/i2c/as3645a.c
1834 F:      include/media/i2c/as3645a.h
1835
1836 ASC7621 HARDWARE MONITOR DRIVER
1837 M:      George Joseph <george.joseph@fairview5.com>
1838 L:      lm-sensors@lm-sensors.org
1839 S:      Maintained
1840 F:      Documentation/hwmon/asc7621
1841 F:      drivers/hwmon/asc7621.c
1842
1843 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
1844 M:      Corentin Chary <corentin.chary@gmail.com>
1845 L:      acpi4asus-user@lists.sourceforge.net
1846 L:      platform-driver-x86@vger.kernel.org
1847 W:      http://acpi4asus.sf.net
1848 S:      Maintained
1849 F:      drivers/platform/x86/asus*.c
1850 F:      drivers/platform/x86/eeepc*.c
1851
1852 ASUS WIRELESS RADIO CONTROL DRIVER
1853 M:      JoĂ£o Paulo Rechi Vita <jprvita@gmail.com>
1854 L:      platform-driver-x86@vger.kernel.org
1855 S:      Maintained
1856 F:      drivers/platform/x86/asus-wireless.c
1857
1858 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
1859 R:      Dan Williams <dan.j.williams@intel.com>
1860 W:      http://sourceforge.net/projects/xscaleiop
1861 S:      Odd fixes
1862 F:      Documentation/crypto/async-tx-api.txt
1863 F:      crypto/async_tx/
1864 F:      drivers/dma/
1865 F:      include/linux/dmaengine.h
1866 F:      include/linux/async_tx.h
1867
1868 AT24 EEPROM DRIVER
1869 M:      Wolfram Sang <wsa@the-dreams.de>
1870 L:      linux-i2c@vger.kernel.org
1871 S:      Maintained
1872 F:      drivers/misc/eeprom/at24.c
1873 F:      include/linux/platform_data/at24.h
1874
1875 ATA OVER ETHERNET (AOE) DRIVER
1876 M:      "Ed L. Cashin" <ed.cashin@acm.org>
1877 W:      http://www.openaoe.org/
1878 S:      Supported
1879 F:      Documentation/aoe/
1880 F:      drivers/block/aoe/
1881
1882 ATHEROS 71XX/9XXX GPIO DRIVER
1883 M:      Alban Bedel <albeu@free.fr>
1884 W:      https://github.com/AlbanBedel/linux
1885 T:      git git://github.com/AlbanBedel/linux
1886 S:      Maintained
1887 F:      drivers/gpio/gpio-ath79.c
1888 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
1889
1890 ATHEROS ATH GENERIC UTILITIES
1891 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1892 L:      linux-wireless@vger.kernel.org
1893 S:      Supported
1894 F:      drivers/net/wireless/ath/*
1895
1896 ATHEROS ATH5K WIRELESS DRIVER
1897 M:      Jiri Slaby <jirislaby@gmail.com>
1898 M:      Nick Kossifidis <mickflemm@gmail.com>
1899 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1900 L:      linux-wireless@vger.kernel.org
1901 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
1902 S:      Maintained
1903 F:      drivers/net/wireless/ath/ath5k/
1904
1905 ATHEROS ATH6KL WIRELESS DRIVER
1906 M:      Kalle Valo <kvalo@qca.qualcomm.com>
1907 L:      linux-wireless@vger.kernel.org
1908 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
1909 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
1910 S:      Supported
1911 F:      drivers/net/wireless/ath/ath6kl/
1912
1913 WILOCITY WIL6210 WIRELESS DRIVER
1914 M:      Maya Erez <qca_merez@qca.qualcomm.com>
1915 L:      linux-wireless@vger.kernel.org
1916 L:      wil6210@qca.qualcomm.com
1917 S:      Supported
1918 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
1919 F:      drivers/net/wireless/ath/wil6210/
1920 F:      include/uapi/linux/wil6210_uapi.h
1921
1922 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1923 M:      Christian Lamparter <chunkeey@googlemail.com>
1924 L:      linux-wireless@vger.kernel.org
1925 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
1926 S:      Maintained
1927 F:      drivers/net/wireless/ath/carl9170/
1928
1929 ATK0110 HWMON DRIVER
1930 M:      Luca Tettamanti <kronos.it@gmail.com>
1931 L:      lm-sensors@lm-sensors.org
1932 S:      Maintained
1933 F:      drivers/hwmon/asus_atk0110.c
1934
1935 ATI_REMOTE2 DRIVER
1936 M:      Ville Syrjala <syrjala@sci.fi>
1937 S:      Maintained
1938 F:      drivers/input/misc/ati_remote2.c
1939
1940 ATLX ETHERNET DRIVERS
1941 M:      Jay Cliburn <jcliburn@gmail.com>
1942 M:      Chris Snook <chris.snook@gmail.com>
1943 L:      netdev@vger.kernel.org
1944 W:      http://sourceforge.net/projects/atl1
1945 W:      http://atl1.sourceforge.net
1946 S:      Maintained
1947 F:      drivers/net/ethernet/atheros/
1948
1949 ATM
1950 M:      Chas Williams <3chas3@gmail.com>
1951 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
1952 L:      netdev@vger.kernel.org
1953 W:      http://linux-atm.sourceforge.net
1954 S:      Maintained
1955 F:      drivers/atm/
1956 F:      include/linux/atm*
1957 F:      include/uapi/linux/atm*
1958
1959 ATMEL AT91 / AT32 MCI DRIVER
1960 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1961 S:      Maintained
1962 F:      drivers/mmc/host/atmel-mci.c
1963
1964 ATMEL AT91 / AT32 SERIAL DRIVER
1965 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1966 S:      Supported
1967 F:      drivers/tty/serial/atmel_serial.c
1968
1969 ATMEL SAMA5D2 ADC DRIVER
1970 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1971 L:      linux-iio@vger.kernel.org
1972 S:      Supported
1973 F:      drivers/iio/adc/at91-sama5d2_adc.c
1974
1975 ATMEL Audio ALSA driver
1976 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1977 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1978 S:      Supported
1979 F:      sound/soc/atmel
1980
1981 ATMEL DMA DRIVER
1982 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1983 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1984 S:      Supported
1985 F:      drivers/dma/at_hdmac.c
1986 F:      drivers/dma/at_hdmac_regs.h
1987 F:      include/linux/platform_data/dma-atmel.h
1988
1989 ATMEL XDMA DRIVER
1990 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1991 L:      linux-arm-kernel@lists.infradead.org
1992 L:      dmaengine@vger.kernel.org
1993 S:      Supported
1994 F:      drivers/dma/at_xdmac.c
1995
1996 ATMEL I2C DRIVER
1997 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1998 L:      linux-i2c@vger.kernel.org
1999 S:      Supported
2000 F:      drivers/i2c/busses/i2c-at91.c
2001
2002 ATMEL ISI DRIVER
2003 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
2004 L:      linux-media@vger.kernel.org
2005 S:      Supported
2006 F:      drivers/media/platform/soc_camera/atmel-isi.c
2007 F:      include/media/atmel-isi.h
2008
2009 ATMEL LCDFB DRIVER
2010 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2011 L:      linux-fbdev@vger.kernel.org
2012 S:      Maintained
2013 F:      drivers/video/fbdev/atmel_lcdfb.c
2014 F:      include/video/atmel_lcdc.h
2015
2016 ATMEL MACB ETHERNET DRIVER
2017 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2018 S:      Supported
2019 F:      drivers/net/ethernet/cadence/
2020
2021 ATMEL NAND DRIVER
2022 M:      Wenyou Yang <wenyou.yang@atmel.com>
2023 M:      Josh Wu <rainyfeeling@outlook.com>
2024 L:      linux-mtd@lists.infradead.org
2025 S:      Supported
2026 F:      drivers/mtd/nand/atmel_nand*
2027
2028 ATMEL SDMMC DRIVER
2029 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
2030 L:      linux-mmc@vger.kernel.org
2031 S:      Supported
2032 F:      drivers/mmc/host/sdhci-of-at91.c
2033
2034 ATMEL SPI DRIVER
2035 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2036 S:      Supported
2037 F:      drivers/spi/spi-atmel.*
2038
2039 ATMEL SSC DRIVER
2040 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2041 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2042 S:      Supported
2043 F:      drivers/misc/atmel-ssc.c
2044 F:      include/linux/atmel-ssc.h
2045
2046 ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
2047 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2048 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2049 S:      Supported
2050 F:      drivers/misc/atmel_tclib.c
2051 F:      drivers/clocksource/tcb_clksrc.c
2052
2053 ATMEL USBA UDC DRIVER
2054 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2055 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2056 S:      Supported
2057 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
2058
2059 ATMEL WIRELESS DRIVER
2060 M:      Simon Kelley <simon@thekelleys.org.uk>
2061 L:      linux-wireless@vger.kernel.org
2062 W:      http://www.thekelleys.org.uk/atmel
2063 W:      http://atmelwlandriver.sourceforge.net/
2064 S:      Maintained
2065 F:      drivers/net/wireless/atmel/atmel*
2066
2067 ATMEL MAXTOUCH DRIVER
2068 M:      Nick Dyer <nick.dyer@itdev.co.uk>
2069 T:      git git://github.com/atmel-maxtouch/linux.git
2070 S:      Supported
2071 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2072 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2073 F:      include/linux/platform_data/atmel_mxt_ts.h
2074
2075 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2076 M:      Bradley Grove <linuxdrivers@attotech.com>
2077 L:      linux-scsi@vger.kernel.org
2078 W:      http://www.attotech.com
2079 S:      Supported
2080 F:      drivers/scsi/esas2r
2081
2082 ATUSB IEEE 802.15.4 RADIO DRIVER
2083 M:      Stefan Schmidt <stefan@osg.samsung.com>
2084 L:      linux-wpan@vger.kernel.org
2085 S:      Maintained
2086 F:      drivers/net/ieee802154/atusb.c
2087 F:      drivers/net/ieee802154/atusb.h
2088 F:      drivers/net/ieee802154/at86rf230.h
2089
2090 AUDIT SUBSYSTEM
2091 M:      Paul Moore <paul@paul-moore.com>
2092 M:      Eric Paris <eparis@redhat.com>
2093 L:      linux-audit@redhat.com (moderated for non-subscribers)
2094 W:      http://people.redhat.com/sgrubb/audit/
2095 T:      git git://git.infradead.org/users/pcmoore/audit
2096 S:      Maintained
2097 F:      include/linux/audit.h
2098 F:      include/uapi/linux/audit.h
2099 F:      kernel/audit*
2100
2101 AUXILIARY DISPLAY DRIVERS
2102 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2103 W:      http://miguelojeda.es/auxdisplay.htm
2104 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2105 S:      Maintained
2106 F:      drivers/auxdisplay/
2107 F:      include/linux/cfag12864b.h
2108
2109 AVR32 ARCHITECTURE
2110 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
2111 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
2112 W:      http://www.atmel.com/products/AVR32/
2113 W:      http://mirror.egtvedt.no/avr32linux.org/
2114 W:      http://avrfreaks.net/
2115 S:      Maintained
2116 F:      arch/avr32/
2117
2118 AVR32/AT32AP MACHINE SUPPORT
2119 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
2120 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
2121 S:      Maintained
2122 F:      arch/avr32/mach-at32ap/
2123
2124 AX.25 NETWORK LAYER
2125 M:      Ralf Baechle <ralf@linux-mips.org>
2126 L:      linux-hams@vger.kernel.org
2127 W:      http://www.linux-ax25.org/
2128 S:      Maintained
2129 F:      include/uapi/linux/ax25.h
2130 F:      include/net/ax25.h
2131 F:      net/ax25/
2132
2133 AZ6007 DVB DRIVER
2134 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2135 L:      linux-media@vger.kernel.org
2136 W:      https://linuxtv.org
2137 T:      git git://linuxtv.org/media_tree.git
2138 S:      Maintained
2139 F:      drivers/media/usb/dvb-usb-v2/az6007.c
2140
2141 AZTECH FM RADIO RECEIVER DRIVER
2142 M:      Hans Verkuil <hverkuil@xs4all.nl>
2143 L:      linux-media@vger.kernel.org
2144 T:      git git://linuxtv.org/media_tree.git
2145 W:      https://linuxtv.org
2146 S:      Maintained
2147 F:      drivers/media/radio/radio-aztech*
2148
2149 B43 WIRELESS DRIVER
2150 L:      linux-wireless@vger.kernel.org
2151 L:      b43-dev@lists.infradead.org
2152 W:      http://wireless.kernel.org/en/users/Drivers/b43
2153 S:      Odd Fixes
2154 F:      drivers/net/wireless/broadcom/b43/
2155
2156 B43LEGACY WIRELESS DRIVER
2157 M:      Larry Finger <Larry.Finger@lwfinger.net>
2158 L:      linux-wireless@vger.kernel.org
2159 L:      b43-dev@lists.infradead.org
2160 W:      http://wireless.kernel.org/en/users/Drivers/b43
2161 S:      Maintained
2162 F:      drivers/net/wireless/broadcom/b43legacy/
2163
2164 BACKLIGHT CLASS/SUBSYSTEM
2165 M:      Jingoo Han <jingoohan1@gmail.com>
2166 M:      Lee Jones <lee.jones@linaro.org>
2167 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
2168 S:      Maintained
2169 F:      drivers/video/backlight/
2170 F:      include/linux/backlight.h
2171
2172 BATMAN ADVANCED
2173 M:      Marek Lindner <mareklindner@neomailbox.ch>
2174 M:      Simon Wunderlich <sw@simonwunderlich.de>
2175 M:      Antonio Quartulli <a@unstable.cc>
2176 L:      b.a.t.m.a.n@lists.open-mesh.org
2177 W:      https://www.open-mesh.org/
2178 S:      Maintained
2179 F:      net/batman-adv/
2180
2181 BAYCOM/HDLCDRV DRIVERS FOR AX.25
2182 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
2183 L:      linux-hams@vger.kernel.org
2184 W:      http://www.baycom.org/~tom/ham/ham.html
2185 S:      Maintained
2186 F:      drivers/net/hamradio/baycom*
2187
2188 BCACHE (BLOCK LAYER CACHE)
2189 M:      Kent Overstreet <kent.overstreet@gmail.com>
2190 L:      linux-bcache@vger.kernel.org
2191 W:      http://bcache.evilpiepirate.org
2192 S:      Maintained
2193 F:      drivers/md/bcache/
2194
2195 BDISP ST MEDIA DRIVER
2196 M:      Fabien Dessenne <fabien.dessenne@st.com>
2197 L:      linux-media@vger.kernel.org
2198 T:      git git://linuxtv.org/media_tree.git
2199 W:      https://linuxtv.org
2200 S:      Supported
2201 F:      drivers/media/platform/sti/bdisp
2202
2203 BEFS FILE SYSTEM
2204 S:      Orphan
2205 F:      Documentation/filesystems/befs.txt
2206 F:      fs/befs/
2207
2208 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
2209 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
2210 L:      netdev@vger.kernel.org
2211 S:      Maintained
2212 F:      drivers/net/ethernet/ec_bhf.c
2213
2214 BFS FILE SYSTEM
2215 M:      "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
2216 S:      Maintained
2217 F:      Documentation/filesystems/bfs.txt
2218 F:      fs/bfs/
2219 F:      include/uapi/linux/bfs_fs.h
2220
2221 BLACKFIN ARCHITECTURE
2222 M:      Steven Miao <realmz6@gmail.com>
2223 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2224 T:      git git://git.code.sf.net/p/adi-linux/code
2225 W:      http://blackfin.uclinux.org
2226 S:      Supported
2227 F:      arch/blackfin/
2228
2229 BLACKFIN EMAC DRIVER
2230 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2231 W:      http://blackfin.uclinux.org
2232 S:      Supported
2233 F:      drivers/net/ethernet/adi/
2234
2235 BLACKFIN RTC DRIVER
2236 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2237 W:      http://blackfin.uclinux.org
2238 S:      Supported
2239 F:      drivers/rtc/rtc-bfin.c
2240
2241 BLACKFIN SDH DRIVER
2242 M:      Sonic Zhang <sonic.zhang@analog.com>
2243 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2244 W:      http://blackfin.uclinux.org
2245 S:      Supported
2246 F:      drivers/mmc/host/bfin_sdh.c
2247
2248 BLACKFIN SERIAL DRIVER
2249 M:      Sonic Zhang <sonic.zhang@analog.com>
2250 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2251 W:      http://blackfin.uclinux.org
2252 S:      Supported
2253 F:      drivers/tty/serial/bfin_uart.c
2254
2255 BLACKFIN WATCHDOG DRIVER
2256 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2257 W:      http://blackfin.uclinux.org
2258 S:      Supported
2259 F:      drivers/watchdog/bfin_wdt.c
2260
2261 BLACKFIN I2C TWI DRIVER
2262 M:      Sonic Zhang <sonic.zhang@analog.com>
2263 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2264 W:      http://blackfin.uclinux.org/
2265 S:      Supported
2266 F:      drivers/i2c/busses/i2c-bfin-twi.c
2267
2268 BLACKFIN MEDIA DRIVER
2269 M:      Scott Jiang <scott.jiang.linux@gmail.com>
2270 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2271 W:      http://blackfin.uclinux.org/
2272 S:      Supported
2273 F:      drivers/media/platform/blackfin/
2274 F:      drivers/media/i2c/adv7183*
2275 F:      drivers/media/i2c/vs6624*
2276
2277 BLINKM RGB LED DRIVER
2278 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
2279 S:      Maintained
2280 F:      drivers/leds/leds-blinkm.c
2281
2282 BLOCK LAYER
2283 M:      Jens Axboe <axboe@kernel.dk>
2284 L:      linux-block@vger.kernel.org
2285 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
2286 S:      Maintained
2287 F:      block/
2288 F:      kernel/trace/blktrace.c
2289
2290 BLOCK2MTD DRIVER
2291 M:      Joern Engel <joern@lazybastard.org>
2292 L:      linux-mtd@lists.infradead.org
2293 S:      Maintained
2294 F:      drivers/mtd/devices/block2mtd.c
2295
2296 BLUETOOTH DRIVERS
2297 M:      Marcel Holtmann <marcel@holtmann.org>
2298 M:      Gustavo Padovan <gustavo@padovan.org>
2299 M:      Johan Hedberg <johan.hedberg@gmail.com>
2300 L:      linux-bluetooth@vger.kernel.org
2301 W:      http://www.bluez.org/
2302 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2303 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2304 S:      Maintained
2305 F:      drivers/bluetooth/
2306
2307 BLUETOOTH SUBSYSTEM
2308 M:      Marcel Holtmann <marcel@holtmann.org>
2309 M:      Gustavo Padovan <gustavo@padovan.org>
2310 M:      Johan Hedberg <johan.hedberg@gmail.com>
2311 L:      linux-bluetooth@vger.kernel.org
2312 W:      http://www.bluez.org/
2313 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2314 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2315 S:      Maintained
2316 F:      net/bluetooth/
2317 F:      include/net/bluetooth/
2318
2319 BONDING DRIVER
2320 M:      Jay Vosburgh <j.vosburgh@gmail.com>
2321 M:      Veaceslav Falico <vfalico@gmail.com>
2322 M:      Andy Gospodarek <gospo@cumulusnetworks.com>
2323 L:      netdev@vger.kernel.org
2324 W:      http://sourceforge.net/projects/bonding/
2325 S:      Supported
2326 F:      drivers/net/bonding/
2327 F:      include/uapi/linux/if_bonding.h
2328
2329 BPF (Safe dynamic programs and tools)
2330 M:      Alexei Starovoitov <ast@kernel.org>
2331 L:      netdev@vger.kernel.org
2332 L:      linux-kernel@vger.kernel.org
2333 S:      Supported
2334 F:      kernel/bpf/
2335
2336 BROADCOM B44 10/100 ETHERNET DRIVER
2337 M:      Gary Zambrano <zambrano@broadcom.com>
2338 L:      netdev@vger.kernel.org
2339 S:      Supported
2340 F:      drivers/net/ethernet/broadcom/b44.*
2341
2342 BROADCOM GENET ETHERNET DRIVER
2343 M:      Florian Fainelli <f.fainelli@gmail.com>
2344 L:      netdev@vger.kernel.org
2345 S:      Supported
2346 F:      drivers/net/ethernet/broadcom/genet/
2347
2348 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
2349 M:      Sony Chacko <sony.chacko@qlogic.com>
2350 M:      Dept-HSGLinuxNICDev@qlogic.com
2351 L:      netdev@vger.kernel.org
2352 S:      Supported
2353 F:      drivers/net/ethernet/broadcom/bnx2.*
2354 F:      drivers/net/ethernet/broadcom/bnx2_*
2355
2356 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
2357 M:      Ariel Elior <ariel.elior@qlogic.com>
2358 L:      netdev@vger.kernel.org
2359 S:      Supported
2360 F:      drivers/net/ethernet/broadcom/bnx2x/
2361
2362 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
2363 M:      Florian Fainelli <f.fainelli@gmail.com>
2364 M:      Ray Jui <rjui@broadcom.com>
2365 M:      Scott Branden <sbranden@broadcom.com>
2366 L:      bcm-kernel-feedback-list@broadcom.com
2367 T:      git git://github.com/broadcom/mach-bcm
2368 S:      Maintained
2369 F:      arch/arm/mach-bcm/
2370 F:      arch/arm/boot/dts/bcm113*
2371 F:      arch/arm/boot/dts/bcm216*
2372 F:      arch/arm/boot/dts/bcm281*
2373 F:      arch/arm64/boot/dts/broadcom/
2374 F:      arch/arm/configs/bcm_defconfig
2375 F:      drivers/mmc/host/sdhci-bcm-kona.c
2376 F:      drivers/clocksource/bcm_kona_timer.c
2377
2378 BROADCOM BCM2835 ARM ARCHITECTURE
2379 M:      Stephen Warren <swarren@wwwdotorg.org>
2380 M:      Lee Jones <lee@kernel.org>
2381 M:      Eric Anholt <eric@anholt.net>
2382 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
2383 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2384 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rpi/linux-rpi.git
2385 S:      Maintained
2386 N:      bcm2835
2387
2388 BROADCOM BCM33XX MIPS ARCHITECTURE
2389 M:      Kevin Cernekee <cernekee@gmail.com>
2390 L:      linux-mips@linux-mips.org
2391 S:      Maintained
2392 F:      arch/mips/bcm3384/*
2393 F:      arch/mips/include/asm/mach-bcm3384/*
2394 F:      arch/mips/kernel/*bmips*
2395
2396 BROADCOM BCM47XX MIPS ARCHITECTURE
2397 M:      Hauke Mehrtens <hauke@hauke-m.de>
2398 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2399 L:      linux-mips@linux-mips.org
2400 S:      Maintained
2401 F:      arch/mips/bcm47xx/*
2402 F:      arch/mips/include/asm/mach-bcm47xx/*
2403
2404 BROADCOM BCM5301X ARM ARCHITECTURE
2405 M:      Hauke Mehrtens <hauke@hauke-m.de>
2406 L:      linux-arm-kernel@lists.infradead.org
2407 S:      Maintained
2408 F:      arch/arm/mach-bcm/bcm_5301x.c
2409 F:      arch/arm/boot/dts/bcm5301x.dtsi
2410 F:      arch/arm/boot/dts/bcm470*
2411
2412 BROADCOM BCM63XX ARM ARCHITECTURE
2413 M:      Florian Fainelli <f.fainelli@gmail.com>
2414 L:      linux-arm-kernel@lists.infradead.org
2415 T:      git git://github.com/broadcom/arm-bcm63xx.git
2416 S:      Maintained
2417 F:      arch/arm/mach-bcm/bcm63xx.c
2418 F:      arch/arm/include/debug/bcm63xx.S
2419
2420 BROADCOM BCM63XX/BCM33XX UDC DRIVER
2421 M:      Kevin Cernekee <cernekee@gmail.com>
2422 L:      linux-usb@vger.kernel.org
2423 S:      Maintained
2424 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
2425
2426 BROADCOM BCM7XXX ARM ARCHITECTURE
2427 M:      Brian Norris <computersforpeace@gmail.com>
2428 M:      Gregory Fong <gregory.0xf0@gmail.com>
2429 M:      Florian Fainelli <f.fainelli@gmail.com>
2430 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2431 L:      bcm-kernel-feedback-list@broadcom.com
2432 T:      git git://github.com/broadcom/stblinux.git
2433 S:      Maintained
2434 F:      arch/arm/mach-bcm/*brcmstb*
2435 F:      arch/arm/boot/dts/bcm7*.dts*
2436 F:      drivers/bus/brcmstb_gisb.c
2437 N:      brcmstb
2438
2439 BROADCOM BMIPS MIPS ARCHITECTURE
2440 M:      Kevin Cernekee <cernekee@gmail.com>
2441 M:      Florian Fainelli <f.fainelli@gmail.com>
2442 L:      linux-mips@linux-mips.org
2443 T:      git git://github.com/broadcom/stblinux.git
2444 S:      Maintained
2445 F:      arch/mips/bmips/*
2446 F:      arch/mips/include/asm/mach-bmips/*
2447 F:      arch/mips/kernel/*bmips*
2448 F:      arch/mips/boot/dts/brcm/bcm*.dts*
2449 F:      drivers/irqchip/irq-bcm63*
2450 F:      drivers/irqchip/irq-bcm7*
2451 F:      drivers/irqchip/irq-brcmstb*
2452 F:      include/linux/bcm963xx_nvram.h
2453 F:      include/linux/bcm963xx_tag.h
2454
2455 BROADCOM TG3 GIGABIT ETHERNET DRIVER
2456 M:      Prashant Sreedharan <prashant@broadcom.com>
2457 M:      Michael Chan <mchan@broadcom.com>
2458 L:      netdev@vger.kernel.org
2459 S:      Supported
2460 F:      drivers/net/ethernet/broadcom/tg3.*
2461
2462 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2463 M:      Brett Rudley <brudley@broadcom.com>
2464 M:      Arend van Spriel <arend@broadcom.com>
2465 M:      Franky (Zhenhui) Lin <frankyl@broadcom.com>
2466 M:      Hante Meuleman <meuleman@broadcom.com>
2467 L:      linux-wireless@vger.kernel.org
2468 L:      brcm80211-dev-list@broadcom.com
2469 S:      Supported
2470 F:      drivers/net/wireless/broadcom/brcm80211/
2471
2472 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
2473 M:      QLogic-Storage-Upstream@qlogic.com
2474 L:      linux-scsi@vger.kernel.org
2475 S:      Supported
2476 F:      drivers/scsi/bnx2fc/
2477
2478 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
2479 M:      QLogic-Storage-Upstream@qlogic.com
2480 L:      linux-scsi@vger.kernel.org
2481 S:      Supported
2482 F:      drivers/scsi/bnx2i/
2483
2484 BROADCOM IPROC ARM ARCHITECTURE
2485 M:      Ray Jui <rjui@broadcom.com>
2486 M:      Scott Branden <sbranden@broadcom.com>
2487 M:      Jon Mason <jonmason@broadcom.com>
2488 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2489 L:      bcm-kernel-feedback-list@broadcom.com
2490 T:      git git://github.com/broadcom/cygnus-linux.git
2491 S:      Maintained
2492 N:      iproc
2493 N:      cygnus
2494 N:      nsp
2495 N:      bcm9113*
2496 N:      bcm9583*
2497 N:      bcm9585*
2498 N:      bcm9586*
2499 N:      bcm988312
2500 N:      bcm113*
2501 N:      bcm583*
2502 N:      bcm585*
2503 N:      bcm586*
2504 N:      bcm88312
2505
2506 BROADCOM BRCMSTB GPIO DRIVER
2507 M:      Gregory Fong <gregory.0xf0@gmail.com>
2508 L:      bcm-kernel-feedback-list@broadcom.com
2509 S:      Supported
2510 F:      drivers/gpio/gpio-brcmstb.c
2511 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
2512
2513 BROADCOM KONA GPIO DRIVER
2514 M:      Ray Jui <rjui@broadcom.com>
2515 L:      bcm-kernel-feedback-list@broadcom.com
2516 S:      Supported
2517 F:      drivers/gpio/gpio-bcm-kona.c
2518 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
2519
2520 BROADCOM NVRAM DRIVER
2521 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2522 L:      linux-mips@linux-mips.org
2523 S:      Maintained
2524 F:      drivers/firmware/broadcom/*
2525
2526 BROADCOM STB NAND FLASH DRIVER
2527 M:      Brian Norris <computersforpeace@gmail.com>
2528 M:      Kamal Dasu <kdasu.kdev@gmail.com>
2529 L:      linux-mtd@lists.infradead.org
2530 L:      bcm-kernel-feedback-list@broadcom.com
2531 S:      Maintained
2532 F:      drivers/mtd/nand/brcmnand/
2533
2534 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2535 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2536 L:      linux-wireless@vger.kernel.org
2537 S:      Maintained
2538 F:      drivers/bcma/
2539 F:      include/linux/bcma/
2540
2541 BROADCOM SYSTEMPORT ETHERNET DRIVER
2542 M:      Florian Fainelli <f.fainelli@gmail.com>
2543 L:      netdev@vger.kernel.org
2544 S:      Supported
2545 F:      drivers/net/ethernet/broadcom/bcmsysport.*
2546
2547 BROCADE BFA FC SCSI DRIVER
2548 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
2549 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
2550 L:      linux-scsi@vger.kernel.org
2551 S:      Supported
2552 F:      drivers/scsi/bfa/
2553
2554 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
2555 M:      Rasesh Mody <rasesh.mody@qlogic.com>
2556 L:      netdev@vger.kernel.org
2557 S:      Supported
2558 F:      drivers/net/ethernet/brocade/bna/
2559
2560 BSG (block layer generic sg v4 driver)
2561 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
2562 L:      linux-scsi@vger.kernel.org
2563 S:      Supported
2564 F:      block/bsg.c
2565 F:      include/linux/bsg.h
2566 F:      include/uapi/linux/bsg.h
2567
2568 BT87X AUDIO DRIVER
2569 M:      Clemens Ladisch <clemens@ladisch.de>
2570 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2571 T:      git git://git.alsa-project.org/alsa-kernel.git
2572 S:      Maintained
2573 F:      Documentation/sound/alsa/Bt87x.txt
2574 F:      sound/pci/bt87x.c
2575
2576 BT8XXGPIO DRIVER
2577 M:      Michael Buesch <m@bues.ch>
2578 W:      http://bu3sch.de/btgpio.php
2579 S:      Maintained
2580 F:      drivers/gpio/gpio-bt8xx.c
2581
2582 BTRFS FILE SYSTEM
2583 M:      Chris Mason <clm@fb.com>
2584 M:      Josef Bacik <jbacik@fb.com>
2585 M:      David Sterba <dsterba@suse.com>
2586 L:      linux-btrfs@vger.kernel.org
2587 W:      http://btrfs.wiki.kernel.org/
2588 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
2589 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
2590 S:      Maintained
2591 F:      Documentation/filesystems/btrfs.txt
2592 F:      fs/btrfs/
2593
2594 BTTV VIDEO4LINUX DRIVER
2595 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2596 L:      linux-media@vger.kernel.org
2597 W:      https://linuxtv.org
2598 T:      git git://linuxtv.org/media_tree.git
2599 S:      Odd fixes
2600 F:      Documentation/video4linux/bttv/
2601 F:      drivers/media/pci/bt8xx/bttv*
2602
2603 BUSLOGIC SCSI DRIVER
2604 M:      Khalid Aziz <khalid@gonehiking.org>
2605 L:      linux-scsi@vger.kernel.org
2606 S:      Maintained
2607 F:      drivers/scsi/BusLogic.*
2608 F:      drivers/scsi/FlashPoint.*
2609
2610 C-MEDIA CMI8788 DRIVER
2611 M:      Clemens Ladisch <clemens@ladisch.de>
2612 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2613 T:      git git://git.alsa-project.org/alsa-kernel.git
2614 S:      Maintained
2615 F:      sound/pci/oxygen/
2616
2617 C6X ARCHITECTURE
2618 M:      Mark Salter <msalter@redhat.com>
2619 M:      Aurelien Jacquiot <a-jacquiot@ti.com>
2620 L:      linux-c6x-dev@linux-c6x.org
2621 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
2622 S:      Maintained
2623 F:      arch/c6x/
2624
2625 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
2626 M:      David Howells <dhowells@redhat.com>
2627 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
2628 S:      Supported
2629 F:      Documentation/filesystems/caching/cachefiles.txt
2630 F:      fs/cachefiles/
2631
2632 CADET FM/AM RADIO RECEIVER DRIVER
2633 M:      Hans Verkuil <hverkuil@xs4all.nl>
2634 L:      linux-media@vger.kernel.org
2635 T:      git git://linuxtv.org/media_tree.git
2636 W:      https://linuxtv.org
2637 S:      Maintained
2638 F:      drivers/media/radio/radio-cadet*
2639
2640 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
2641 M:      Jonathan Corbet <corbet@lwn.net>
2642 L:      linux-media@vger.kernel.org
2643 T:      git git://linuxtv.org/media_tree.git
2644 S:      Maintained
2645 F:      Documentation/video4linux/cafe_ccic
2646 F:      drivers/media/platform/marvell-ccic/
2647
2648 CAIF NETWORK LAYER
2649 M:      Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
2650 L:      netdev@vger.kernel.org
2651 S:      Supported
2652 F:      Documentation/networking/caif/
2653 F:      drivers/net/caif/
2654 F:      include/uapi/linux/caif/
2655 F:      include/net/caif/
2656 F:      net/caif/
2657
2658 CALGARY x86-64 IOMMU
2659 M:      Muli Ben-Yehuda <muli@il.ibm.com>
2660 M:      "Jon D. Mason" <jdmason@kudzu.us>
2661 L:      discuss@x86-64.org
2662 S:      Maintained
2663 F:      arch/x86/kernel/pci-calgary_64.c
2664 F:      arch/x86/kernel/tce_64.c
2665 F:      arch/x86/include/asm/calgary.h
2666 F:      arch/x86/include/asm/tce.h
2667
2668 CAN NETWORK LAYER
2669 M:      Oliver Hartkopp <socketcan@hartkopp.net>
2670 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2671 L:      linux-can@vger.kernel.org
2672 W:      https://github.com/linux-can
2673 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2674 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2675 S:      Maintained
2676 F:      Documentation/networking/can.txt
2677 F:      net/can/
2678 F:      include/linux/can/core.h
2679 F:      include/uapi/linux/can.h
2680 F:      include/uapi/linux/can/bcm.h
2681 F:      include/uapi/linux/can/raw.h
2682 F:      include/uapi/linux/can/gw.h
2683
2684 CAN NETWORK DRIVERS
2685 M:      Wolfgang Grandegger <wg@grandegger.com>
2686 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2687 L:      linux-can@vger.kernel.org
2688 W:      https://github.com/linux-can
2689 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2690 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2691 S:      Maintained
2692 F:      drivers/net/can/
2693 F:      include/linux/can/dev.h
2694 F:      include/linux/can/platform/
2695 F:      include/uapi/linux/can/error.h
2696 F:      include/uapi/linux/can/netlink.h
2697
2698 CAPABILITIES
2699 M:      Serge Hallyn <serge.hallyn@canonical.com>
2700 L:      linux-security-module@vger.kernel.org
2701 S:      Supported
2702 F:      include/linux/capability.h
2703 F:      include/uapi/linux/capability.h
2704 F:      security/commoncap.c
2705 F:      kernel/capability.c
2706
2707 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
2708 M:      Kevin Tsai <ktsai@capellamicro.com>
2709 S:      Maintained
2710 F:      drivers/iio/light/cm*
2711 F:      Documentation/devicetree/bindings/i2c/trivial-devices.txt
2712
2713 CAVIUM LIQUIDIO NETWORK DRIVER
2714 M:     Derek Chickles <derek.chickles@caviumnetworks.com>
2715 M:     Satanand Burla <satananda.burla@caviumnetworks.com>
2716 M:     Felix Manlunas <felix.manlunas@caviumnetworks.com>
2717 M:     Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com>
2718 L:     netdev@vger.kernel.org
2719 W:     http://www.cavium.com
2720 S:     Supported
2721 F:     drivers/net/ethernet/cavium/liquidio/
2722
2723 CC2520 IEEE-802.15.4 RADIO DRIVER
2724 M:      Varka Bhadram <varkabhadram@gmail.com>
2725 L:      linux-wpan@vger.kernel.org
2726 S:      Maintained
2727 F:      drivers/net/ieee802154/cc2520.c
2728 F:      include/linux/spi/cc2520.h
2729 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
2730
2731 CELL BROADBAND ENGINE ARCHITECTURE
2732 M:      Arnd Bergmann <arnd@arndb.de>
2733 L:      linuxppc-dev@lists.ozlabs.org
2734 W:      http://www.ibm.com/developerworks/power/cell/
2735 S:      Supported
2736 F:      arch/powerpc/include/asm/cell*.h
2737 F:      arch/powerpc/include/asm/spu*.h
2738 F:      arch/powerpc/include/uapi/asm/spu*.h
2739 F:      arch/powerpc/oprofile/*cell*
2740 F:      arch/powerpc/platforms/cell/
2741
2742 CEPH COMMON CODE (LIBCEPH)
2743 M:      Ilya Dryomov <idryomov@gmail.com>
2744 M:      "Yan, Zheng" <zyan@redhat.com>
2745 M:      Sage Weil <sage@redhat.com>
2746 L:      ceph-devel@vger.kernel.org
2747 W:      http://ceph.com/
2748 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2749 T:      git git://github.com/ceph/ceph-client.git
2750 S:      Supported
2751 F:      net/ceph/
2752 F:      include/linux/ceph/
2753 F:      include/linux/crush/
2754
2755 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
2756 M:      "Yan, Zheng" <zyan@redhat.com>
2757 M:      Sage Weil <sage@redhat.com>
2758 M:      Ilya Dryomov <idryomov@gmail.com>
2759 L:      ceph-devel@vger.kernel.org
2760 W:      http://ceph.com/
2761 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2762 T:      git git://github.com/ceph/ceph-client.git
2763 S:      Supported
2764 F:      Documentation/filesystems/ceph.txt
2765 F:      fs/ceph/
2766
2767 CERTIFICATE HANDLING:
2768 M:      David Howells <dhowells@redhat.com>
2769 M:      David Woodhouse <dwmw2@infradead.org>
2770 L:      keyrings@vger.kernel.org
2771 S:      Maintained
2772 F:      Documentation/module-signing.txt
2773 F:      certs/
2774 F:      scripts/sign-file.c
2775 F:      scripts/extract-cert.c
2776
2777 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
2778 L:      linux-usb@vger.kernel.org
2779 S:      Orphan
2780 F:      Documentation/usb/WUSB-Design-overview.txt
2781 F:      Documentation/usb/wusb-cbaf
2782 F:      drivers/usb/host/hwa-hc.c
2783 F:      drivers/usb/host/whci/
2784 F:      drivers/usb/wusbcore/
2785 F:      include/linux/usb/wusb*
2786
2787 CFAG12864B LCD DRIVER
2788 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2789 W:      http://miguelojeda.es/auxdisplay.htm
2790 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2791 S:      Maintained
2792 F:      drivers/auxdisplay/cfag12864b.c
2793 F:      include/linux/cfag12864b.h
2794
2795 CFAG12864BFB LCD FRAMEBUFFER DRIVER
2796 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2797 W:      http://miguelojeda.es/auxdisplay.htm
2798 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2799 S:      Maintained
2800 F:      drivers/auxdisplay/cfag12864bfb.c
2801 F:      include/linux/cfag12864b.h
2802
2803 CFG80211 and NL80211
2804 M:      Johannes Berg <johannes@sipsolutions.net>
2805 L:      linux-wireless@vger.kernel.org
2806 W:      http://wireless.kernel.org/
2807 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2808 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
2809 S:      Maintained
2810 F:      include/uapi/linux/nl80211.h
2811 F:      include/net/cfg80211.h
2812 F:      net/wireless/*
2813 X:      net/wireless/wext*
2814
2815 CHAR and MISC DRIVERS
2816 M:      Arnd Bergmann <arnd@arndb.de>
2817 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2818 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
2819 S:      Supported
2820 F:      drivers/char/*
2821 F:      drivers/misc/*
2822 F:      include/linux/miscdevice.h
2823
2824 CHECKPATCH
2825 M:      Andy Whitcroft <apw@canonical.com>
2826 M:      Joe Perches <joe@perches.com>
2827 S:      Maintained
2828 F:      scripts/checkpatch.pl
2829
2830 CHINESE DOCUMENTATION
2831 M:      Harry Wei <harryxiyou@gmail.com>
2832 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
2833 L:      linux-kernel@zh-kernel.org (moderated for non-subscribers)
2834 S:      Maintained
2835 F:      Documentation/zh_CN/
2836
2837 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
2838 M:      Peter Chen <Peter.Chen@nxp.com>
2839 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
2840 L:      linux-usb@vger.kernel.org
2841 S:      Maintained
2842 F:      drivers/usb/chipidea/
2843
2844 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
2845 M:      Hans de Goede <hdegoede@redhat.com>
2846 L:      linux-input@vger.kernel.org
2847 S:      Maintained
2848 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
2849 F:      drivers/input/touchscreen/chipone_icn8318.c
2850
2851 CHROME HARDWARE PLATFORM SUPPORT
2852 M:      Olof Johansson <olof@lixom.net>
2853 S:      Maintained
2854 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/olof/chrome-platform.git
2855 F:      drivers/platform/chrome/
2856
2857 CISCO VIC ETHERNET NIC DRIVER
2858 M:      Christian Benvenuti <benve@cisco.com>
2859 M:      Sujith Sankar <ssujith@cisco.com>
2860 M:      Govindarajulu Varadarajan <_govind@gmx.com>
2861 M:      Neel Patel <neepatel@cisco.com>
2862 S:      Supported
2863 F:      drivers/net/ethernet/cisco/enic/
2864
2865 CISCO VIC LOW LATENCY NIC DRIVER
2866 M:      Christian Benvenuti <benve@cisco.com>
2867 M:      Dave Goodell <dgoodell@cisco.com>
2868 S:      Supported
2869 F:      drivers/infiniband/hw/usnic/
2870
2871 CIRRUS LOGIC EP93XX ETHERNET DRIVER
2872 M:      Hartley Sweeten <hsweeten@visionengravers.com>
2873 L:      netdev@vger.kernel.org
2874 S:      Maintained
2875 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
2876
2877 CIRRUS LOGIC AUDIO CODEC DRIVERS
2878 M:      Brian Austin <brian.austin@cirrus.com>
2879 M:      Paul Handrigan <Paul.Handrigan@cirrus.com>
2880 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2881 S:      Maintained
2882 F:      sound/soc/codecs/cs*
2883
2884 CLEANCACHE API
2885 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2886 L:      linux-kernel@vger.kernel.org
2887 S:      Maintained
2888 F:      mm/cleancache.c
2889 F:      include/linux/cleancache.h
2890
2891 CLK API
2892 M:      Russell King <linux@arm.linux.org.uk>
2893 L:      linux-clk@vger.kernel.org
2894 S:      Maintained
2895 F:      include/linux/clk.h
2896
2897 CLOCKSOURCE, CLOCKEVENT DRIVERS
2898 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2899 M:      Thomas Gleixner <tglx@linutronix.de>
2900 L:      linux-kernel@vger.kernel.org
2901 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
2902 S:      Supported
2903 F:      drivers/clocksource
2904
2905 CISCO FCOE HBA DRIVER
2906 M:      Hiral Patel <hiralpat@cisco.com>
2907 M:      Suma Ramars <sramars@cisco.com>
2908 M:      Brian Uchino <buchino@cisco.com>
2909 L:      linux-scsi@vger.kernel.org
2910 S:      Supported
2911 F:      drivers/scsi/fnic/
2912
2913 CISCO SCSI HBA DRIVER
2914 M:      Narsimhulu Musini <nmusini@cisco.com>
2915 M:      Sesidhar Baddela <sebaddel@cisco.com>
2916 L:      linux-scsi@vger.kernel.org
2917 S:      Supported
2918 F:      drivers/scsi/snic/
2919
2920 CMPC ACPI DRIVER
2921 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2922 M:      Daniel Oliveira Nascimento <don@syst.com.br>
2923 L:      platform-driver-x86@vger.kernel.org
2924 S:      Supported
2925 F:      drivers/platform/x86/classmate-laptop.c
2926
2927 COBALT MEDIA DRIVER
2928 M:      Hans Verkuil <hans.verkuil@cisco.com>
2929 L:      linux-media@vger.kernel.org
2930 T:      git git://linuxtv.org/media_tree.git
2931 W:      https://linuxtv.org
2932 S:      Supported
2933 F:      drivers/media/pci/cobalt/
2934
2935 COCCINELLE/Semantic Patches (SmPL)
2936 M:      Julia Lawall <Julia.Lawall@lip6.fr>
2937 M:      Gilles Muller <Gilles.Muller@lip6.fr>
2938 M:      Nicolas Palix <nicolas.palix@imag.fr>
2939 M:      Michal Marek <mmarek@suse.com>
2940 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
2941 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
2942 W:      http://coccinelle.lip6.fr/
2943 S:      Supported
2944 F:      Documentation/coccinelle.txt
2945 F:      scripts/coccinelle/
2946 F:      scripts/coccicheck
2947
2948 CODA FILE SYSTEM
2949 M:      Jan Harkes <jaharkes@cs.cmu.edu>
2950 M:      coda@cs.cmu.edu
2951 L:      codalist@coda.cs.cmu.edu
2952 W:      http://www.coda.cs.cmu.edu/
2953 S:      Maintained
2954 F:      Documentation/filesystems/coda.txt
2955 F:      fs/coda/
2956 F:      include/linux/coda*.h
2957 F:      include/uapi/linux/coda*.h
2958
2959 CODA V4L2 MEM2MEM DRIVER
2960 M:      Philipp Zabel <p.zabel@pengutronix.de>
2961 L:      linux-media@vger.kernel.org
2962 S:      Maintained
2963 F:      Documentation/devicetree/bindings/media/coda.txt
2964 F:      drivers/media/platform/coda/
2965
2966 COMMON CLK FRAMEWORK
2967 M:      Michael Turquette <mturquette@baylibre.com>
2968 M:      Stephen Boyd <sboyd@codeaurora.org>
2969 L:      linux-clk@vger.kernel.org
2970 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
2971 S:      Maintained
2972 F:      drivers/clk/
2973 X:      drivers/clk/clkdev.c
2974 F:      include/linux/clk-pr*
2975 F:      include/linux/clk/
2976
2977 COMMON INTERNET FILE SYSTEM (CIFS)
2978 M:      Steve French <sfrench@samba.org>
2979 L:      linux-cifs@vger.kernel.org
2980 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
2981 W:      http://linux-cifs.samba.org/
2982 T:      git git://git.samba.org/sfrench/cifs-2.6.git
2983 S:      Supported
2984 F:      Documentation/filesystems/cifs/
2985 F:      fs/cifs/
2986
2987 COMPACTPCI HOTPLUG CORE
2988 M:      Scott Murray <scott@spiteful.org>
2989 L:      linux-pci@vger.kernel.org
2990 S:      Maintained
2991 F:      drivers/pci/hotplug/cpci_hotplug*
2992
2993 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
2994 M:      Scott Murray <scott@spiteful.org>
2995 L:      linux-pci@vger.kernel.org
2996 S:      Maintained
2997 F:      drivers/pci/hotplug/cpcihp_zt5550.*
2998
2999 COMPACTPCI HOTPLUG GENERIC DRIVER
3000 M:      Scott Murray <scott@spiteful.org>
3001 L:      linux-pci@vger.kernel.org
3002 S:      Maintained
3003 F:      drivers/pci/hotplug/cpcihp_generic.c
3004
3005 COMPAL LAPTOP SUPPORT
3006 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
3007 L:      platform-driver-x86@vger.kernel.org
3008 S:      Maintained
3009 F:      drivers/platform/x86/compal-laptop.c
3010
3011 CONEXANT ACCESSRUNNER USB DRIVER
3012 L:      accessrunner-general@lists.sourceforge.net
3013 W:      http://accessrunner.sourceforge.net/
3014 S:      Orphan
3015 F:      drivers/usb/atm/cxacru.c
3016
3017 CONFIGFS
3018 M:      Joel Becker <jlbec@evilplan.org>
3019 M:      Christoph Hellwig <hch@lst.de>
3020 T:      git git://git.infradead.org/users/hch/configfs.git
3021 S:      Supported
3022 F:      fs/configfs/
3023 F:      include/linux/configfs.h
3024
3025 CONNECTOR
3026 M:      Evgeniy Polyakov <zbr@ioremap.net>
3027 L:      netdev@vger.kernel.org
3028 S:      Maintained
3029 F:      drivers/connector/
3030
3031 CONTROL GROUP (CGROUP)
3032 M:      Tejun Heo <tj@kernel.org>
3033 M:      Li Zefan <lizefan@huawei.com>
3034 M:      Johannes Weiner <hannes@cmpxchg.org>
3035 L:      cgroups@vger.kernel.org
3036 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3037 S:      Maintained
3038 F:      Documentation/cgroups/
3039 F:      include/linux/cgroup*
3040 F:      kernel/cgroup*
3041
3042 CONTROL GROUP - CPUSET
3043 M:      Li Zefan <lizefan@huawei.com>
3044 L:      cgroups@vger.kernel.org
3045 W:      http://www.bullopensource.org/cpuset/
3046 W:      http://oss.sgi.com/projects/cpusets/
3047 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3048 S:      Maintained
3049 F:      Documentation/cgroups/cpusets.txt
3050 F:      include/linux/cpuset.h
3051 F:      kernel/cpuset.c
3052
3053 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
3054 M:      Johannes Weiner <hannes@cmpxchg.org>
3055 M:      Michal Hocko <mhocko@kernel.org>
3056 M:      Vladimir Davydov <vdavydov@virtuozzo.com>
3057 L:      cgroups@vger.kernel.org
3058 L:      linux-mm@kvack.org
3059 S:      Maintained
3060 F:      mm/memcontrol.c
3061 F:      mm/swap_cgroup.c
3062
3063 CORETEMP HARDWARE MONITORING DRIVER
3064 M:      Fenghua Yu <fenghua.yu@intel.com>
3065 L:      lm-sensors@lm-sensors.org
3066 S:      Maintained
3067 F:      Documentation/hwmon/coretemp
3068 F:      drivers/hwmon/coretemp.c
3069
3070 COSA/SRP SYNC SERIAL DRIVER
3071 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
3072 W:      http://www.fi.muni.cz/~kas/cosa/
3073 S:      Maintained
3074 F:      drivers/net/wan/cosa*
3075
3076 CPMAC ETHERNET DRIVER
3077 M:      Florian Fainelli <florian@openwrt.org>
3078 L:      netdev@vger.kernel.org
3079 S:      Maintained
3080 F:      drivers/net/ethernet/ti/cpmac.c
3081
3082 CPU FREQUENCY DRIVERS
3083 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
3084 M:      Viresh Kumar <viresh.kumar@linaro.org>
3085 L:      linux-pm@vger.kernel.org
3086 S:      Maintained
3087 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3088 T:      git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
3089 F:      drivers/cpufreq/
3090 F:      include/linux/cpufreq.h
3091
3092 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
3093 M:      Viresh Kumar <viresh.kumar@linaro.org>
3094 M:      Sudeep Holla <sudeep.holla@arm.com>
3095 L:      linux-pm@vger.kernel.org
3096 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
3097 S:      Maintained
3098 F:      drivers/cpufreq/arm_big_little.h
3099 F:      drivers/cpufreq/arm_big_little.c
3100 F:      drivers/cpufreq/arm_big_little_dt.c
3101
3102 CPUIDLE DRIVER - ARM BIG LITTLE
3103 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
3104 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3105 L:      linux-pm@vger.kernel.org
3106 L:      linux-arm-kernel@lists.infradead.org
3107 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3108 S:      Maintained
3109 F:      drivers/cpuidle/cpuidle-big_little.c
3110
3111 CPUIDLE DRIVER - ARM EXYNOS
3112 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
3113 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3114 M:      Kukjin Kim <kgene@kernel.org>
3115 L:      linux-pm@vger.kernel.org
3116 L:      linux-samsung-soc@vger.kernel.org
3117 S:      Supported
3118 F:      drivers/cpuidle/cpuidle-exynos.c
3119 F:      arch/arm/mach-exynos/pm.c
3120
3121 CPUIDLE DRIVERS
3122 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
3123 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3124 L:      linux-pm@vger.kernel.org
3125 S:      Maintained
3126 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3127 F:      drivers/cpuidle/*
3128 F:      include/linux/cpuidle.h
3129
3130 CPUID/MSR DRIVER
3131 M:      "H. Peter Anvin" <hpa@zytor.com>
3132 S:      Maintained
3133 F:      arch/x86/kernel/cpuid.c
3134 F:      arch/x86/kernel/msr.c
3135
3136 CPU POWER MONITORING SUBSYSTEM
3137 M:      Thomas Renninger <trenn@suse.com>
3138 L:      linux-pm@vger.kernel.org
3139 S:      Maintained
3140 F:      tools/power/cpupower/
3141
3142 CRAMFS FILESYSTEM
3143 W:      http://sourceforge.net/projects/cramfs/
3144 S:      Orphan / Obsolete
3145 F:      Documentation/filesystems/cramfs.txt
3146 F:      fs/cramfs/
3147
3148 CRIS PORT
3149 M:      Mikael Starvik <starvik@axis.com>
3150 M:      Jesper Nilsson <jesper.nilsson@axis.com>
3151 L:      linux-cris-kernel@axis.com
3152 W:      http://developer.axis.com
3153 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jesper/cris.git
3154 S:      Maintained
3155 F:      arch/cris/
3156 F:      drivers/tty/serial/crisv10.*
3157
3158 CRYPTO API
3159 M:      Herbert Xu <herbert@gondor.apana.org.au>
3160 M:      "David S. Miller" <davem@davemloft.net>
3161 L:      linux-crypto@vger.kernel.org
3162 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
3163 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
3164 S:      Maintained
3165 F:      Documentation/crypto/
3166 F:      Documentation/DocBook/crypto-API.tmpl
3167 F:      arch/*/crypto/
3168 F:      crypto/
3169 F:      drivers/crypto/
3170 F:      include/crypto/
3171
3172 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
3173 M:      Neil Horman <nhorman@tuxdriver.com>
3174 L:      linux-crypto@vger.kernel.org
3175 S:      Maintained
3176 F:      crypto/ansi_cprng.c
3177 F:      crypto/rng.c
3178
3179 CS3308 MEDIA DRIVER
3180 M:      Hans Verkuil <hverkuil@xs4all.nl>
3181 L:      linux-media@vger.kernel.org
3182 T:      git git://linuxtv.org/media_tree.git
3183 W:      http://linuxtv.org
3184 S:      Odd Fixes
3185 F:      drivers/media/i2c/cs3308.c
3186 F:      drivers/media/i2c/cs3308.h
3187
3188 CS5535 Audio ALSA driver
3189 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
3190 S:      Maintained
3191 F:      sound/pci/cs5535audio/
3192
3193 CW1200 WLAN driver
3194 M:      Solomon Peachy <pizza@shaftnet.org>
3195 S:      Maintained
3196 F:      drivers/net/wireless/st/cw1200/
3197
3198 CX18 VIDEO4LINUX DRIVER
3199 M:      Andy Walls <awalls@md.metrocast.net>
3200 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
3201 L:      linux-media@vger.kernel.org
3202 T:      git git://linuxtv.org/media_tree.git
3203 W:      https://linuxtv.org
3204 W:      http://www.ivtvdriver.org/index.php/Cx18
3205 S:      Maintained
3206 F:      Documentation/video4linux/cx18.txt
3207 F:      drivers/media/pci/cx18/
3208 F:      include/uapi/linux/ivtv*
3209
3210 CX2341X MPEG ENCODER HELPER MODULE
3211 M:      Hans Verkuil <hverkuil@xs4all.nl>
3212 L:      linux-media@vger.kernel.org
3213 T:      git git://linuxtv.org/media_tree.git
3214 W:      https://linuxtv.org
3215 S:      Maintained
3216 F:      drivers/media/common/cx2341x*
3217 F:      include/media/cx2341x*
3218
3219 CX24120 MEDIA DRIVER
3220 M:      Jemma Denson <jdenson@gmail.com>
3221 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
3222 L:      linux-media@vger.kernel.org
3223 W:      https://linuxtv.org
3224 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3225 S:      Maintained
3226 F:      drivers/media/dvb-frontends/cx24120*
3227
3228 CX88 VIDEO4LINUX DRIVER
3229 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3230 L:      linux-media@vger.kernel.org
3231 W:      https://linuxtv.org
3232 T:      git git://linuxtv.org/media_tree.git
3233 S:      Odd fixes
3234 F:      Documentation/video4linux/cx88/
3235 F:      drivers/media/pci/cx88/
3236
3237 CXD2820R MEDIA DRIVER
3238 M:      Antti Palosaari <crope@iki.fi>
3239 L:      linux-media@vger.kernel.org
3240 W:      https://linuxtv.org
3241 W:      http://palosaari.fi/linux/
3242 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3243 T:      git git://linuxtv.org/anttip/media_tree.git
3244 S:      Maintained
3245 F:      drivers/media/dvb-frontends/cxd2820r*
3246
3247 CXGB3 ETHERNET DRIVER (CXGB3)
3248 M:      Santosh Raspatur <santosh@chelsio.com>
3249 L:      netdev@vger.kernel.org
3250 W:      http://www.chelsio.com
3251 S:      Supported
3252 F:      drivers/net/ethernet/chelsio/cxgb3/
3253
3254 CXGB3 ISCSI DRIVER (CXGB3I)
3255 M:      Karen Xie <kxie@chelsio.com>
3256 L:      linux-scsi@vger.kernel.org
3257 W:      http://www.chelsio.com
3258 S:      Supported
3259 F:      drivers/scsi/cxgbi/cxgb3i
3260
3261 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
3262 M:      Steve Wise <swise@chelsio.com>
3263 L:      linux-rdma@vger.kernel.org
3264 W:      http://www.openfabrics.org
3265 S:      Supported
3266 F:      drivers/infiniband/hw/cxgb3/
3267
3268 CXGB4 ETHERNET DRIVER (CXGB4)
3269 M:      Hariprasad S <hariprasad@chelsio.com>
3270 L:      netdev@vger.kernel.org
3271 W:      http://www.chelsio.com
3272 S:      Supported
3273 F:      drivers/net/ethernet/chelsio/cxgb4/
3274
3275 CXGB4 ISCSI DRIVER (CXGB4I)
3276 M:      Karen Xie <kxie@chelsio.com>
3277 L:      linux-scsi@vger.kernel.org
3278 W:      http://www.chelsio.com
3279 S:      Supported
3280 F:      drivers/scsi/cxgbi/cxgb4i
3281
3282 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
3283 M:      Steve Wise <swise@chelsio.com>
3284 L:      linux-rdma@vger.kernel.org
3285 W:      http://www.openfabrics.org
3286 S:      Supported
3287 F:      drivers/infiniband/hw/cxgb4/
3288
3289 CXGB4VF ETHERNET DRIVER (CXGB4VF)
3290 M:      Casey Leedom <leedom@chelsio.com>
3291 L:      netdev@vger.kernel.org
3292 W:      http://www.chelsio.com
3293 S:      Supported
3294 F:      drivers/net/ethernet/chelsio/cxgb4vf/
3295
3296 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
3297 M:      Ian Munsie <imunsie@au1.ibm.com>
3298 M:      Michael Neuling <mikey@neuling.org>
3299 L:      linuxppc-dev@lists.ozlabs.org
3300 S:      Supported
3301 F:      drivers/misc/cxl/
3302 F:      include/misc/cxl*
3303 F:      include/uapi/misc/cxl.h
3304 F:      Documentation/powerpc/cxl.txt
3305 F:      Documentation/powerpc/cxl.txt
3306 F:      Documentation/ABI/testing/sysfs-class-cxl
3307
3308 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
3309 M:      Manoj N. Kumar <manoj@linux.vnet.ibm.com>
3310 M:      Matthew R. Ochs <mrochs@linux.vnet.ibm.com>
3311 L:      linux-scsi@vger.kernel.org
3312 S:      Supported
3313 F:      drivers/scsi/cxlflash/
3314 F:      include/uapi/scsi/cxlflash_ioctls.h
3315 F:      Documentation/powerpc/cxlflash.txt
3316
3317 STMMAC ETHERNET DRIVER
3318 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
3319 L:      netdev@vger.kernel.org
3320 W:      http://www.stlinux.com
3321 S:      Supported
3322 F:      drivers/net/ethernet/stmicro/stmmac/
3323
3324 CYBERPRO FB DRIVER
3325 M:      Russell King <linux@arm.linux.org.uk>
3326 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3327 W:      http://www.arm.linux.org.uk/
3328 S:      Maintained
3329 F:      drivers/video/fbdev/cyber2000fb.*
3330
3331 CYCLADES ASYNC MUX DRIVER
3332 W:      http://www.cyclades.com/
3333 S:      Orphan
3334 F:      drivers/tty/cyclades.c
3335 F:      include/linux/cyclades.h
3336 F:      include/uapi/linux/cyclades.h
3337
3338 CYCLADES PC300 DRIVER
3339 W:      http://www.cyclades.com/
3340 S:      Orphan
3341 F:      drivers/net/wan/pc300*
3342
3343 CYPRESS_FIRMWARE MEDIA DRIVER
3344 M:      Antti Palosaari <crope@iki.fi>
3345 L:      linux-media@vger.kernel.org
3346 W:      https://linuxtv.org
3347 W:      http://palosaari.fi/linux/
3348 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3349 T:      git git://linuxtv.org/anttip/media_tree.git
3350 S:      Maintained
3351 F:      drivers/media/common/cypress_firmware*
3352
3353 CYTTSP TOUCHSCREEN DRIVER
3354 M:      Ferruh Yigit <fery@cypress.com>
3355 L:      linux-input@vger.kernel.org
3356 S:      Supported
3357 F:      drivers/input/touchscreen/cyttsp*
3358 F:      include/linux/input/cyttsp.h
3359
3360 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
3361 M:      Joshua Kinard <kumba@gentoo.org>
3362 S:      Maintained
3363 F:      drivers/rtc/rtc-ds1685.c
3364 F:      include/linux/rtc/ds1685.h
3365
3366 DAMA SLAVE for AX.25
3367 M:      Joerg Reuter <jreuter@yaina.de>
3368 W:      http://yaina.de/jreuter/
3369 W:      http://www.qsl.net/dl1bke/
3370 L:      linux-hams@vger.kernel.org
3371 S:      Maintained
3372 F:      net/ax25/af_ax25.c
3373 F:      net/ax25/ax25_dev.c
3374 F:      net/ax25/ax25_ds_*
3375 F:      net/ax25/ax25_in.c
3376 F:      net/ax25/ax25_out.c
3377 F:      net/ax25/ax25_timer.c
3378 F:      net/ax25/sysctl_net_ax25.c
3379
3380 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
3381 L:      netdev@vger.kernel.org
3382 S:      Orphan
3383 F:      Documentation/networking/dmfe.txt
3384 F:      drivers/net/ethernet/dec/tulip/dmfe.c
3385
3386 DC390/AM53C974 SCSI driver
3387 M:      Hannes Reinecke <hare@suse.com>
3388 L:      linux-scsi@vger.kernel.org
3389 S:      Maintained
3390 F:      drivers/scsi/am53c974.c
3391
3392 DC395x SCSI driver
3393 M:      Oliver Neukum <oliver@neukum.org>
3394 M:      Ali Akcaagac <aliakc@web.de>
3395 M:      Jamie Lenehan <lenehan@twibble.org>
3396 L:      dc395x@twibble.org
3397 W:      http://twibble.org/dist/dc395x/
3398 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
3399 S:      Maintained
3400 F:      Documentation/scsi/dc395x.txt
3401 F:      drivers/scsi/dc395x.*
3402
3403 DCCP PROTOCOL
3404 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
3405 L:      dccp@vger.kernel.org
3406 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
3407 S:      Maintained
3408 F:      include/linux/dccp.h
3409 F:      include/uapi/linux/dccp.h
3410 F:      include/linux/tfrc.h
3411 F:      net/dccp/
3412
3413 DECnet NETWORK LAYER
3414 W:      http://linux-decnet.sourceforge.net
3415 L:      linux-decnet-user@lists.sourceforge.net
3416 S:      Orphan
3417 F:      Documentation/networking/decnet.txt
3418 F:      net/decnet/
3419
3420 DECSTATION PLATFORM SUPPORT
3421 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3422 L:      linux-mips@linux-mips.org
3423 W:      http://www.linux-mips.org/wiki/DECstation
3424 S:      Maintained
3425 F:      arch/mips/dec/
3426 F:      arch/mips/include/asm/dec/
3427 F:      arch/mips/include/asm/mach-dec/
3428
3429 DEFXX FDDI NETWORK DRIVER
3430 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3431 S:      Maintained
3432 F:      drivers/net/fddi/defxx.*
3433
3434 DELL LAPTOP DRIVER
3435 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3436 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3437 L:      platform-driver-x86@vger.kernel.org
3438 S:      Maintained
3439 F:      drivers/platform/x86/dell-laptop.c
3440
3441 DELL LAPTOP RBTN DRIVER
3442 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3443 S:      Maintained
3444 F:      drivers/platform/x86/dell-rbtn.*
3445
3446 DELL LAPTOP FREEFALL DRIVER
3447 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3448 S:      Maintained
3449 F:      drivers/platform/x86/dell-smo8800.c
3450
3451 DELL LAPTOP SMM DRIVER
3452 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3453 S:      Maintained
3454 F:      drivers/hwmon/dell-smm-hwmon.c
3455 F:      include/uapi/linux/i8k.h
3456
3457 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
3458 M:      Doug Warzecha <Douglas_Warzecha@dell.com>
3459 S:      Maintained
3460 F:      Documentation/dcdbas.txt
3461 F:      drivers/firmware/dcdbas.*
3462
3463 DELL WMI EXTRAS DRIVER
3464 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3465 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3466 S:      Maintained
3467 F:      drivers/platform/x86/dell-wmi.c
3468
3469 DESIGNWARE USB2 DRD IP DRIVER
3470 M:      John Youn <johnyoun@synopsys.com>
3471 L:      linux-usb@vger.kernel.org
3472 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3473 S:      Maintained
3474 F:      drivers/usb/dwc2/
3475
3476 DESIGNWARE USB3 DRD IP DRIVER
3477 M:      Felipe Balbi <balbi@kernel.org>
3478 L:      linux-usb@vger.kernel.org
3479 L:      linux-omap@vger.kernel.org
3480 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3481 S:      Maintained
3482 F:      drivers/usb/dwc3/
3483
3484 DEVICE COREDUMP (DEV_COREDUMP)
3485 M:      Johannes Berg <johannes@sipsolutions.net>
3486 L:      linux-kernel@vger.kernel.org
3487 S:      Maintained
3488 F:      drivers/base/devcoredump.c
3489 F:      include/linux/devcoredump.h
3490
3491 DEVICE FREQUENCY (DEVFREQ)
3492 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
3493 M:      Kyungmin Park <kyungmin.park@samsung.com>
3494 L:      linux-pm@vger.kernel.org
3495 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3496 S:      Maintained
3497 F:      drivers/devfreq/
3498 F:      include/linux/devfreq.h
3499 F:      Documentation/devicetree/bindings/devfreq/
3500
3501 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
3502 M:      Chanwoo Choi <cw00.choi@samsung.com>
3503 L:      linux-pm@vger.kernel.org
3504 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3505 S:      Supported
3506 F:      drivers/devfreq/event/
3507 F:      drivers/devfreq/devfreq-event.c
3508 F:      include/linux/devfreq-event.h
3509 F:      Documentation/devicetree/bindings/devfreq/event/
3510
3511 DEVICE NUMBER REGISTRY
3512 M:      Torben Mathiasen <device@lanana.org>
3513 W:      http://lanana.org/docs/device-list/index.html
3514 S:      Maintained
3515
3516 DEVICE-MAPPER  (LVM)
3517 M:      Alasdair Kergon <agk@redhat.com>
3518 M:      Mike Snitzer <snitzer@redhat.com>
3519 M:      dm-devel@redhat.com
3520 L:      dm-devel@redhat.com
3521 W:      http://sources.redhat.com/dm
3522 Q:      http://patchwork.kernel.org/project/dm-devel/list/
3523 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
3524 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
3525 S:      Maintained
3526 F:      Documentation/device-mapper/
3527 F:      drivers/md/dm*
3528 F:      drivers/md/persistent-data/
3529 F:      include/linux/device-mapper.h
3530 F:      include/linux/dm-*.h
3531 F:      include/uapi/linux/dm-*.h
3532
3533 DIALOG SEMICONDUCTOR DRIVERS
3534 M:      Support Opensource <support.opensource@diasemi.com>
3535 W:      http://www.dialog-semiconductor.com/products
3536 S:      Supported
3537 F:      Documentation/hwmon/da90??
3538 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
3539 F:      drivers/gpio/gpio-da90??.c
3540 F:      drivers/hwmon/da90??-hwmon.c
3541 F:      drivers/iio/adc/da91??-*.c
3542 F:      drivers/input/misc/da90??_onkey.c
3543 F:      drivers/input/touchscreen/da9052_tsi.c
3544 F:      drivers/leds/leds-da90??.c
3545 F:      drivers/mfd/da903x.c
3546 F:      drivers/mfd/da90??-*.c
3547 F:      drivers/mfd/da91??-*.c
3548 F:      drivers/power/da9052-battery.c
3549 F:      drivers/power/da91??-*.c
3550 F:      drivers/regulator/da903x.c
3551 F:      drivers/regulator/da9???-regulator.[ch]
3552 F:      drivers/rtc/rtc-da90??.c
3553 F:      drivers/video/backlight/da90??_bl.c
3554 F:      drivers/watchdog/da90??_wdt.c
3555 F:      include/linux/mfd/da903x.h
3556 F:      include/linux/mfd/da9052/
3557 F:      include/linux/mfd/da9055/
3558 F:      include/linux/mfd/da9063/
3559 F:      include/linux/mfd/da9150/
3560 F:      include/sound/da[79]*.h
3561 F:      sound/soc/codecs/da[79]*.[ch]
3562
3563 DIGI NEO AND CLASSIC PCI PRODUCTS
3564 M:      Lidza Louina <lidza.louina@gmail.com>
3565 M:      Mark Hounschell <markh@compro.net>
3566 L:      driverdev-devel@linuxdriverproject.org
3567 S:      Maintained
3568 F:      drivers/staging/dgnc/
3569
3570 DIOLAN U2C-12 I2C DRIVER
3571 M:      Guenter Roeck <linux@roeck-us.net>
3572 L:      linux-i2c@vger.kernel.org
3573 S:      Maintained
3574 F:      drivers/i2c/busses/i2c-diolan-u2c.c
3575
3576 DIRECT ACCESS (DAX)
3577 M:      Matthew Wilcox <willy@linux.intel.com>
3578 L:      linux-fsdevel@vger.kernel.org
3579 S:      Supported
3580 F:      fs/dax.c
3581
3582 DIRECTORY NOTIFICATION (DNOTIFY)
3583 M:      Eric Paris <eparis@parisplace.org>
3584 S:      Maintained
3585 F:      Documentation/filesystems/dnotify.txt
3586 F:      fs/notify/dnotify/
3587 F:      include/linux/dnotify.h
3588
3589 DISK GEOMETRY AND PARTITION HANDLING
3590 M:      Andries Brouwer <aeb@cwi.nl>
3591 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
3592 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
3593 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
3594 S:      Maintained
3595
3596 DISKQUOTA
3597 M:      Jan Kara <jack@suse.com>
3598 S:      Maintained
3599 F:      Documentation/filesystems/quota.txt
3600 F:      fs/quota/
3601 F:      include/linux/quota*.h
3602 F:      include/uapi/linux/quota*.h
3603
3604 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
3605 M:      Bernie Thompson <bernie@plugable.com>
3606 L:      linux-fbdev@vger.kernel.org
3607 S:      Maintained
3608 W:      http://plugable.com/category/projects/udlfb/
3609 F:      drivers/video/fbdev/udlfb.c
3610 F:      include/video/udlfb.h
3611 F:      Documentation/fb/udlfb.txt
3612
3613 DISTRIBUTED LOCK MANAGER (DLM)
3614 M:      Christine Caulfield <ccaulfie@redhat.com>
3615 M:      David Teigland <teigland@redhat.com>
3616 L:      cluster-devel@redhat.com
3617 W:      http://sources.redhat.com/cluster/
3618 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
3619 S:      Supported
3620 F:      fs/dlm/
3621
3622 DMA BUFFER SHARING FRAMEWORK
3623 M:      Sumit Semwal <sumit.semwal@linaro.org>
3624 S:      Maintained
3625 L:      linux-media@vger.kernel.org
3626 L:      dri-devel@lists.freedesktop.org
3627 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
3628 F:      drivers/dma-buf/
3629 F:      include/linux/dma-buf*
3630 F:      include/linux/reservation.h
3631 F:      include/linux/*fence.h
3632 F:      Documentation/dma-buf-sharing.txt
3633 T:      git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
3634
3635 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
3636 M:      Vinod Koul <vinod.koul@intel.com>
3637 L:      dmaengine@vger.kernel.org
3638 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
3639 S:      Maintained
3640 F:      drivers/dma/
3641 F:      include/linux/dmaengine.h
3642 F:      Documentation/dmaengine/
3643 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
3644
3645 DME1737 HARDWARE MONITOR DRIVER
3646 M:      Juerg Haefliger <juergh@gmail.com>
3647 L:      lm-sensors@lm-sensors.org
3648 S:      Maintained
3649 F:      Documentation/hwmon/dme1737
3650 F:      drivers/hwmon/dme1737.c
3651
3652 DMI/SMBIOS SUPPORT
3653 M:      Jean Delvare <jdelvare@suse.com>
3654 S:      Maintained
3655 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
3656 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
3657 F:      drivers/firmware/dmi-id.c
3658 F:      drivers/firmware/dmi_scan.c
3659 F:      include/linux/dmi.h
3660
3661 DOCUMENTATION
3662 M:      Jonathan Corbet <corbet@lwn.net>
3663 L:      linux-doc@vger.kernel.org
3664 S:      Maintained
3665 F:      Documentation/
3666 F:      scripts/docproc.c
3667 F:      scripts/kernel-doc*
3668 X:      Documentation/ABI/
3669 X:      Documentation/devicetree/
3670 X:      Documentation/acpi
3671 X:      Documentation/power
3672 X:      Documentation/spi
3673 X:      Documentation/DocBook/media
3674 T:      git git://git.lwn.net/linux.git docs-next
3675
3676 DOUBLETALK DRIVER
3677 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
3678 L:      blinux-list@redhat.com
3679 S:      Maintained
3680 F:      drivers/char/dtlk.c
3681 F:      include/linux/dtlk.h
3682
3683 DPT_I2O SCSI RAID DRIVER
3684 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
3685 L:      linux-scsi@vger.kernel.org
3686 W:      http://www.adaptec.com/
3687 S:      Maintained
3688 F:      drivers/scsi/dpt*
3689 F:      drivers/scsi/dpt/
3690
3691 DRBD DRIVER
3692 M:      Philipp Reisner <philipp.reisner@linbit.com>
3693 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
3694 L:      drbd-dev@lists.linbit.com
3695 W:      http://www.drbd.org
3696 T:      git git://git.linbit.com/linux-drbd.git
3697 T:      git git://git.linbit.com/drbd-8.4.git
3698 S:      Supported
3699 F:      drivers/block/drbd/
3700 F:      lib/lru_cache.c
3701 F:      Documentation/blockdev/drbd/
3702
3703 DRIVER CORE, KOBJECTS, DEBUGFS, KERNFS AND SYSFS
3704 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3705 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
3706 S:      Supported
3707 F:      Documentation/kobject.txt
3708 F:      drivers/base/
3709 F:      fs/debugfs/
3710 F:      fs/kernfs/
3711 F:      fs/sysfs/
3712 F:      include/linux/debugfs.h
3713 F:      include/linux/kobj*
3714 F:      lib/kobj*
3715
3716 DRM DRIVERS
3717 M:      David Airlie <airlied@linux.ie>
3718 L:      dri-devel@lists.freedesktop.org
3719 T:      git git://people.freedesktop.org/~airlied/linux
3720 S:      Maintained
3721 F:      drivers/gpu/drm/
3722 F:      drivers/gpu/vga/
3723 F:      include/drm/
3724 F:      include/uapi/drm/
3725
3726 RADEON DRM DRIVERS
3727 M:      Alex Deucher <alexander.deucher@amd.com>
3728 M:      Christian König <christian.koenig@amd.com>
3729 L:      dri-devel@lists.freedesktop.org
3730 T:      git git://people.freedesktop.org/~agd5f/linux
3731 S:      Supported
3732 F:      drivers/gpu/drm/radeon/
3733 F:      include/uapi/drm/radeon*
3734
3735 DRM PANEL DRIVERS
3736 M:      Thierry Reding <thierry.reding@gmail.com>
3737 L:      dri-devel@lists.freedesktop.org
3738 T:      git git://anongit.freedesktop.org/tegra/linux.git
3739 S:      Maintained
3740 F:      drivers/gpu/drm/drm_panel.c
3741 F:      drivers/gpu/drm/panel/
3742 F:      include/drm/drm_panel.h
3743 F:      Documentation/devicetree/bindings/display/panel/
3744
3745 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
3746 M:      Daniel Vetter <daniel.vetter@intel.com>
3747 M:      Jani Nikula <jani.nikula@linux.intel.com>
3748 L:      intel-gfx@lists.freedesktop.org
3749 L:      dri-devel@lists.freedesktop.org
3750 W:      https://01.org/linuxgraphics/
3751 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
3752 T:      git git://anongit.freedesktop.org/drm-intel
3753 S:      Supported
3754 F:      drivers/gpu/drm/i915/
3755 F:      include/drm/i915*
3756 F:      include/uapi/drm/i915*
3757
3758 DRM DRIVERS FOR ATMEL HLCDC
3759 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
3760 L:      dri-devel@lists.freedesktop.org
3761 S:      Supported
3762 F:      drivers/gpu/drm/atmel-hlcdc/
3763 F:      Documentation/devicetree/bindings/drm/atmel/
3764
3765 DRM DRIVERS FOR EXYNOS
3766 M:      Inki Dae <inki.dae@samsung.com>
3767 M:      Joonyoung Shim <jy0922.shim@samsung.com>
3768 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
3769 M:      Kyungmin Park <kyungmin.park@samsung.com>
3770 L:      dri-devel@lists.freedesktop.org
3771 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
3772 S:      Supported
3773 F:      drivers/gpu/drm/exynos/
3774 F:      include/drm/exynos*
3775 F:      include/uapi/drm/exynos*
3776
3777 DRM DRIVERS FOR FREESCALE DCU
3778 M:      Jianwei Wang <jianwei.wang.chn@gmail.com>
3779 M:      Alison Wang <alison.wang@freescale.com>
3780 L:      dri-devel@lists.freedesktop.org
3781 S:      Supported
3782 F:      drivers/gpu/drm/fsl-dcu/
3783 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
3784 F:      Documentation/devicetree/bindings/display/panel/nec,nl4827hc19_05b.txt
3785
3786 DRM DRIVERS FOR FREESCALE IMX
3787 M:      Philipp Zabel <p.zabel@pengutronix.de>
3788 L:      dri-devel@lists.freedesktop.org
3789 S:      Maintained
3790 F:      drivers/gpu/drm/imx/
3791 F:      drivers/gpu/ipu-v3/
3792 F:      Documentation/devicetree/bindings/display/imx/
3793
3794 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
3795 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
3796 L:      dri-devel@lists.freedesktop.org
3797 T:      git git://github.com/patjak/drm-gma500
3798 S:      Maintained
3799 F:      drivers/gpu/drm/gma500
3800 F:      include/drm/gma500*
3801
3802 DRM DRIVERS FOR NVIDIA TEGRA
3803 M:      Thierry Reding <thierry.reding@gmail.com>
3804 M:      Terje Bergström <tbergstrom@nvidia.com>
3805 L:      dri-devel@lists.freedesktop.org
3806 L:      linux-tegra@vger.kernel.org
3807 T:      git git://anongit.freedesktop.org/tegra/linux.git
3808 S:      Supported
3809 F:      drivers/gpu/drm/tegra/
3810 F:      drivers/gpu/host1x/
3811 F:      include/linux/host1x.h
3812 F:      include/uapi/drm/tegra_drm.h
3813 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
3814
3815 DRM DRIVERS FOR RENESAS
3816 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
3817 L:      dri-devel@lists.freedesktop.org
3818 L:      linux-renesas-soc@vger.kernel.org
3819 T:      git git://people.freedesktop.org/~airlied/linux
3820 S:      Supported
3821 F:      drivers/gpu/drm/rcar-du/
3822 F:      drivers/gpu/drm/shmobile/
3823 F:      include/linux/platform_data/shmob_drm.h
3824
3825 DRM DRIVERS FOR ROCKCHIP
3826 M:      Mark Yao <mark.yao@rock-chips.com>
3827 L:      dri-devel@lists.freedesktop.org
3828 S:      Maintained
3829 F:      drivers/gpu/drm/rockchip/
3830 F:      Documentation/devicetree/bindings/display/rockchip*
3831
3832 DRM DRIVERS FOR STI
3833 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
3834 M:      Vincent Abriou <vincent.abriou@st.com>
3835 L:      dri-devel@lists.freedesktop.org
3836 T:      git http://git.linaro.org/people/benjamin.gaignard/kernel.git
3837 S:      Maintained
3838 F:      drivers/gpu/drm/sti
3839 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
3840
3841 DRM DRIVERS FOR VIVANTE GPU IP
3842 M:      Lucas Stach <l.stach@pengutronix.de>
3843 R:      Russell King <linux+etnaviv@arm.linux.org.uk>
3844 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
3845 L:      dri-devel@lists.freedesktop.org
3846 S:      Maintained
3847 F:      drivers/gpu/drm/etnaviv
3848 F:      Documentation/devicetree/bindings/display/etnaviv
3849
3850 DSBR100 USB FM RADIO DRIVER
3851 M:      Alexey Klimov <klimov.linux@gmail.com>
3852 L:      linux-media@vger.kernel.org
3853 T:      git git://linuxtv.org/media_tree.git
3854 S:      Maintained
3855 F:      drivers/media/radio/dsbr100.c
3856
3857 DSCC4 DRIVER
3858 M:      Francois Romieu <romieu@fr.zoreil.com>
3859 L:      netdev@vger.kernel.org
3860 S:      Maintained
3861 F:      drivers/net/wan/dscc4.c
3862
3863 DT3155 MEDIA DRIVER
3864 M:      Hans Verkuil <hverkuil@xs4all.nl>
3865 L:      linux-media@vger.kernel.org
3866 T:      git git://linuxtv.org/media_tree.git
3867 W:      https://linuxtv.org
3868 S:      Odd Fixes
3869 F:      drivers/media/pci/dt3155/
3870
3871 DVB_USB_AF9015 MEDIA DRIVER
3872 M:      Antti Palosaari <crope@iki.fi>
3873 L:      linux-media@vger.kernel.org
3874 W:      https://linuxtv.org
3875 W:      http://palosaari.fi/linux/
3876 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3877 T:      git git://linuxtv.org/anttip/media_tree.git
3878 S:      Maintained
3879 F:      drivers/media/usb/dvb-usb-v2/af9015*
3880
3881 DVB_USB_AF9035 MEDIA DRIVER
3882 M:      Antti Palosaari <crope@iki.fi>
3883 L:      linux-media@vger.kernel.org
3884 W:      https://linuxtv.org
3885 W:      http://palosaari.fi/linux/
3886 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3887 T:      git git://linuxtv.org/anttip/media_tree.git
3888 S:      Maintained
3889 F:      drivers/media/usb/dvb-usb-v2/af9035*
3890
3891 DVB_USB_ANYSEE MEDIA DRIVER
3892 M:      Antti Palosaari <crope@iki.fi>
3893 L:      linux-media@vger.kernel.org
3894 W:      https://linuxtv.org
3895 W:      http://palosaari.fi/linux/
3896 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3897 T:      git git://linuxtv.org/anttip/media_tree.git
3898 S:      Maintained
3899 F:      drivers/media/usb/dvb-usb-v2/anysee*
3900
3901 DVB_USB_AU6610 MEDIA DRIVER
3902 M:      Antti Palosaari <crope@iki.fi>
3903 L:      linux-media@vger.kernel.org
3904 W:      https://linuxtv.org
3905 W:      http://palosaari.fi/linux/
3906 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3907 T:      git git://linuxtv.org/anttip/media_tree.git
3908 S:      Maintained
3909 F:      drivers/media/usb/dvb-usb-v2/au6610*
3910
3911 DVB_USB_CE6230 MEDIA DRIVER
3912 M:      Antti Palosaari <crope@iki.fi>
3913 L:      linux-media@vger.kernel.org
3914 W:      https://linuxtv.org
3915 W:      http://palosaari.fi/linux/
3916 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3917 T:      git git://linuxtv.org/anttip/media_tree.git
3918 S:      Maintained
3919 F:      drivers/media/usb/dvb-usb-v2/ce6230*
3920
3921 DVB_USB_CXUSB MEDIA DRIVER
3922 M:      Michael Krufky <mkrufky@linuxtv.org>
3923 L:      linux-media@vger.kernel.org
3924 W:      https://linuxtv.org
3925 W:      http://github.com/mkrufky
3926 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3927 T:      git git://linuxtv.org/media_tree.git
3928 S:      Maintained
3929 F:      drivers/media/usb/dvb-usb/cxusb*
3930
3931 DVB_USB_EC168 MEDIA DRIVER
3932 M:      Antti Palosaari <crope@iki.fi>
3933 L:      linux-media@vger.kernel.org
3934 W:      https://linuxtv.org
3935 W:      http://palosaari.fi/linux/
3936 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3937 T:      git git://linuxtv.org/anttip/media_tree.git
3938 S:      Maintained
3939 F:      drivers/media/usb/dvb-usb-v2/ec168*
3940
3941 DVB_USB_GL861 MEDIA DRIVER
3942 M:      Antti Palosaari <crope@iki.fi>
3943 L:      linux-media@vger.kernel.org
3944 W:      https://linuxtv.org
3945 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3946 T:      git git://linuxtv.org/anttip/media_tree.git
3947 S:      Maintained
3948 F:      drivers/media/usb/dvb-usb-v2/gl861*
3949
3950 DVB_USB_MXL111SF MEDIA DRIVER
3951 M:      Michael Krufky <mkrufky@linuxtv.org>
3952 L:      linux-media@vger.kernel.org
3953 W:      https://linuxtv.org
3954 W:      http://github.com/mkrufky
3955 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3956 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
3957 S:      Maintained
3958 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
3959
3960 DVB_USB_RTL28XXU MEDIA DRIVER
3961 M:      Antti Palosaari <crope@iki.fi>
3962 L:      linux-media@vger.kernel.org
3963 W:      https://linuxtv.org
3964 W:      http://palosaari.fi/linux/
3965 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3966 T:      git git://linuxtv.org/anttip/media_tree.git
3967 S:      Maintained
3968 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
3969
3970 DVB_USB_V2 MEDIA DRIVER
3971 M:      Antti Palosaari <crope@iki.fi>
3972 L:      linux-media@vger.kernel.org
3973 W:      https://linuxtv.org
3974 W:      http://palosaari.fi/linux/
3975 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3976 T:      git git://linuxtv.org/anttip/media_tree.git
3977 S:      Maintained
3978 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
3979 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
3980
3981 DYNAMIC DEBUG
3982 M:      Jason Baron <jbaron@akamai.com>
3983 S:      Maintained
3984 F:      lib/dynamic_debug.c
3985 F:      include/linux/dynamic_debug.h
3986
3987 DZ DECSTATION DZ11 SERIAL DRIVER
3988 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3989 S:      Maintained
3990 F:      drivers/tty/serial/dz.*
3991
3992 E3X0 POWER BUTTON DRIVER
3993 M:      Moritz Fischer <moritz.fischer@ettus.com>
3994 L:      usrp-users@lists.ettus.com
3995 W:      http://www.ettus.com
3996 S:      Supported
3997 F:      drivers/input/misc/e3x0-button.c
3998 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
3999
4000 E4000 MEDIA DRIVER
4001 M:      Antti Palosaari <crope@iki.fi>
4002 L:      linux-media@vger.kernel.org
4003 W:      https://linuxtv.org
4004 W:      http://palosaari.fi/linux/
4005 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4006 T:      git git://linuxtv.org/anttip/media_tree.git
4007 S:      Maintained
4008 F:      drivers/media/tuners/e4000*
4009
4010 EATA ISA/EISA/PCI SCSI DRIVER
4011 M:      Dario Ballabio <ballabio_dario@emc.com>
4012 L:      linux-scsi@vger.kernel.org
4013 S:      Maintained
4014 F:      drivers/scsi/eata.c
4015
4016 EC100 MEDIA DRIVER
4017 M:      Antti Palosaari <crope@iki.fi>
4018 L:      linux-media@vger.kernel.org
4019 W:      https://linuxtv.org
4020 W:      http://palosaari.fi/linux/
4021 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4022 T:      git git://linuxtv.org/anttip/media_tree.git
4023 S:      Maintained
4024 F:      drivers/media/dvb-frontends/ec100*
4025
4026 ECRYPT FILE SYSTEM
4027 M:      Tyler Hicks <tyhicks@canonical.com>
4028 L:      ecryptfs@vger.kernel.org
4029 W:      http://ecryptfs.org
4030 W:      https://launchpad.net/ecryptfs
4031 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
4032 S:      Supported
4033 F:      Documentation/filesystems/ecryptfs.txt
4034 F:      fs/ecryptfs/
4035
4036 EDAC-CORE
4037 M:      Doug Thompson <dougthompson@xmission.com>
4038 M:      Borislav Petkov <bp@alien8.de>
4039 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4040 L:      linux-edac@vger.kernel.org
4041 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git for-next
4042 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-edac.git linux_next
4043 S:      Supported
4044 F:      Documentation/edac.txt
4045 F:      drivers/edac/
4046 F:      include/linux/edac.h
4047
4048 EDAC-AMD64
4049 M:      Doug Thompson <dougthompson@xmission.com>
4050 M:      Borislav Petkov <bp@alien8.de>
4051 L:      linux-edac@vger.kernel.org
4052 S:      Maintained
4053 F:      drivers/edac/amd64_edac*
4054
4055 EDAC-CALXEDA
4056 M:      Doug Thompson <dougthompson@xmission.com>
4057 M:      Robert Richter <rric@kernel.org>
4058 L:      linux-edac@vger.kernel.org
4059 S:      Maintained
4060 F:      drivers/edac/highbank*
4061
4062 EDAC-CAVIUM
4063 M:      Ralf Baechle <ralf@linux-mips.org>
4064 M:      David Daney <david.daney@cavium.com>
4065 L:      linux-edac@vger.kernel.org
4066 L:      linux-mips@linux-mips.org
4067 S:      Supported
4068 F:      drivers/edac/octeon_edac*
4069
4070 EDAC-E752X
4071 M:      Mark Gross <mark.gross@intel.com>
4072 M:      Doug Thompson <dougthompson@xmission.com>
4073 L:      linux-edac@vger.kernel.org
4074 S:      Maintained
4075 F:      drivers/edac/e752x_edac.c
4076
4077 EDAC-E7XXX
4078 M:      Doug Thompson <dougthompson@xmission.com>
4079 L:      linux-edac@vger.kernel.org
4080 S:      Maintained
4081 F:      drivers/edac/e7xxx_edac.c
4082
4083 EDAC-GHES
4084 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4085 L:      linux-edac@vger.kernel.org
4086 S:      Maintained
4087 F:      drivers/edac/ghes_edac.c
4088
4089 EDAC-I82443BXGX
4090 M:      Tim Small <tim@buttersideup.com>
4091 L:      linux-edac@vger.kernel.org
4092 S:      Maintained
4093 F:      drivers/edac/i82443bxgx_edac.c
4094
4095 EDAC-I3000
4096 M:      Jason Uhlenkott <juhlenko@akamai.com>
4097 L:      linux-edac@vger.kernel.org
4098 S:      Maintained
4099 F:      drivers/edac/i3000_edac.c
4100
4101 EDAC-I5000
4102 M:      Doug Thompson <dougthompson@xmission.com>
4103 L:      linux-edac@vger.kernel.org
4104 S:      Maintained
4105 F:      drivers/edac/i5000_edac.c
4106
4107 EDAC-I5400
4108 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4109 L:      linux-edac@vger.kernel.org
4110 S:      Maintained
4111 F:      drivers/edac/i5400_edac.c
4112
4113 EDAC-I7300
4114 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4115 L:      linux-edac@vger.kernel.org
4116 S:      Maintained
4117 F:      drivers/edac/i7300_edac.c
4118
4119 EDAC-I7CORE
4120 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4121 L:      linux-edac@vger.kernel.org
4122 S:      Maintained
4123 F:      drivers/edac/i7core_edac.c
4124
4125 EDAC-I82975X
4126 M:      Ranganathan Desikan <ravi@jetztechnologies.com>
4127 M:      "Arvind R." <arvino55@gmail.com>
4128 L:      linux-edac@vger.kernel.org
4129 S:      Maintained
4130 F:      drivers/edac/i82975x_edac.c
4131
4132 EDAC-IE31200
4133 M:      Jason Baron <jbaron@akamai.com>
4134 L:      linux-edac@vger.kernel.org
4135 S:      Maintained
4136 F:      drivers/edac/ie31200_edac.c
4137
4138 EDAC-MPC85XX
4139 M:      Johannes Thumshirn <morbidrsa@gmail.com>
4140 L:      linux-edac@vger.kernel.org
4141 S:      Maintained
4142 F:      drivers/edac/mpc85xx_edac.[ch]
4143
4144 EDAC-PASEMI
4145 M:      Egor Martovetsky <egor@pasemi.com>
4146 L:      linux-edac@vger.kernel.org
4147 S:      Maintained
4148 F:      drivers/edac/pasemi_edac.c
4149
4150 EDAC-R82600
4151 M:      Tim Small <tim@buttersideup.com>
4152 L:      linux-edac@vger.kernel.org
4153 S:      Maintained
4154 F:      drivers/edac/r82600_edac.c
4155
4156 EDAC-SBRIDGE
4157 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4158 L:      linux-edac@vger.kernel.org
4159 S:      Maintained
4160 F:      drivers/edac/sb_edac.c
4161
4162 EDAC-XGENE
4163 APPLIED MICRO (APM) X-GENE SOC EDAC
4164 M:     Loc Ho <lho@apm.com>
4165 S:     Supported
4166 F:     drivers/edac/xgene_edac.c
4167 F:     Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
4168
4169 EDIROL UA-101/UA-1000 DRIVER
4170 M:      Clemens Ladisch <clemens@ladisch.de>
4171 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4172 T:      git git://git.alsa-project.org/alsa-kernel.git
4173 S:      Maintained
4174 F:      sound/usb/misc/ua101.c
4175
4176 EXTENSIBLE FIRMWARE INTERFACE (EFI)
4177 M:      Matt Fleming <matt@codeblueprint.co.uk>
4178 L:      linux-efi@vger.kernel.org
4179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4180 S:      Maintained
4181 F:      Documentation/efi-stub.txt
4182 F:      arch/ia64/kernel/efi.c
4183 F:      arch/x86/boot/compressed/eboot.[ch]
4184 F:      arch/x86/include/asm/efi.h
4185 F:      arch/x86/platform/efi/*
4186 F:      drivers/firmware/efi/*
4187 F:      include/linux/efi*.h
4188
4189 EFI VARIABLE FILESYSTEM
4190 M:      Matthew Garrett <matthew.garrett@nebula.com>
4191 M:      Jeremy Kerr <jk@ozlabs.org>
4192 M:      Matt Fleming <matt@codeblueprint.co.uk>
4193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4194 L:      linux-efi@vger.kernel.org
4195 S:      Maintained
4196 F:      fs/efivarfs/
4197
4198 EFIFB FRAMEBUFFER DRIVER
4199 L:      linux-fbdev@vger.kernel.org
4200 M:      Peter Jones <pjones@redhat.com>
4201 S:      Maintained
4202 F:      drivers/video/fbdev/efifb.c
4203
4204 EFS FILESYSTEM
4205 W:      http://aeschi.ch.eu.org/efs/
4206 S:      Orphan
4207 F:      fs/efs/
4208
4209 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
4210 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
4211 L:      netdev@vger.kernel.org
4212 S:      Maintained
4213 F:      drivers/net/ethernet/ibm/ehea/
4214
4215 EM28XX VIDEO4LINUX DRIVER
4216 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4217 L:      linux-media@vger.kernel.org
4218 W:      https://linuxtv.org
4219 T:      git git://linuxtv.org/media_tree.git
4220 S:      Maintained
4221 F:      drivers/media/usb/em28xx/
4222
4223 EMBEDDED LINUX
4224 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
4225 M:      Matt Mackall <mpm@selenic.com>
4226 M:      David Woodhouse <dwmw2@infradead.org>
4227 L:      linux-embedded@vger.kernel.org
4228 S:      Maintained
4229
4230 EMULEX/AVAGO LPFC FC/FCOE SCSI DRIVER
4231 M:      James Smart <james.smart@avagotech.com>
4232 M:      Dick Kennedy <dick.kennedy@avagotech.com>
4233 L:      linux-scsi@vger.kernel.org
4234 W:      http://www.avagotech.com
4235 S:      Supported
4236 F:      drivers/scsi/lpfc/
4237
4238 ENE CB710 FLASH CARD READER DRIVER
4239 M:      MichaÅ‚ MirosÅ‚aw <mirq-linux@rere.qmqm.pl>
4240 S:      Maintained
4241 F:      drivers/misc/cb710/
4242 F:      drivers/mmc/host/cb710-mmc.*
4243 F:      include/linux/cb710.h
4244
4245 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
4246 M:      Maxim Levitsky <maximlevitsky@gmail.com>
4247 S:      Maintained
4248 F:      drivers/media/rc/ene_ir.*
4249
4250 ENHANCED ERROR HANDLING (EEH)
4251 M:      Gavin Shan <shangw@linux.vnet.ibm.com>
4252 L:      linuxppc-dev@lists.ozlabs.org
4253 S:      Supported
4254 F:      Documentation/powerpc/eeh-pci-error-recovery.txt
4255 F:      arch/powerpc/kernel/eeh*.c
4256
4257 EPSON S1D13XXX FRAMEBUFFER DRIVER
4258 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
4259 S:      Maintained
4260 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
4261 F:      drivers/video/fbdev/s1d13xxxfb.c
4262 F:      include/video/s1d13xxxfb.h
4263
4264 ET131X NETWORK DRIVER
4265 M:      Mark Einon <mark.einon@gmail.com>
4266 S:      Odd Fixes
4267 F:      drivers/net/ethernet/agere/
4268
4269 ETHERNET BRIDGE
4270 M:      Stephen Hemminger <stephen@networkplumber.org>
4271 L:      bridge@lists.linux-foundation.org
4272 L:      netdev@vger.kernel.org
4273 W:      http://www.linuxfoundation.org/en/Net:Bridge
4274 S:      Maintained
4275 F:      include/linux/netfilter_bridge/
4276 F:      net/bridge/
4277
4278 ETHERNET PHY LIBRARY
4279 M:      Florian Fainelli <f.fainelli@gmail.com>
4280 L:      netdev@vger.kernel.org
4281 S:      Maintained
4282 F:      include/linux/phy.h
4283 F:      include/linux/phy_fixed.h
4284 F:      drivers/net/phy/
4285 F:      Documentation/networking/phy.txt
4286 F:      drivers/of/of_mdio.c
4287 F:      drivers/of/of_net.c
4288
4289 EXT2 FILE SYSTEM
4290 M:      Jan Kara <jack@suse.com>
4291 L:      linux-ext4@vger.kernel.org
4292 S:      Maintained
4293 F:      Documentation/filesystems/ext2.txt
4294 F:      fs/ext2/
4295 F:      include/linux/ext2*
4296
4297 EXT4 FILE SYSTEM
4298 M:      "Theodore Ts'o" <tytso@mit.edu>
4299 M:      Andreas Dilger <adilger.kernel@dilger.ca>
4300 L:      linux-ext4@vger.kernel.org
4301 W:      http://ext4.wiki.kernel.org
4302 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
4303 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
4304 S:      Maintained
4305 F:      Documentation/filesystems/ext4.txt
4306 F:      fs/ext4/
4307
4308 Extended Verification Module (EVM)
4309 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
4310 L:      linux-ima-devel@lists.sourceforge.net
4311 L:      linux-security-module@vger.kernel.org
4312 S:      Supported
4313 F:      security/integrity/evm/
4314
4315 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
4316 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
4317 M:      Chanwoo Choi <cw00.choi@samsung.com>
4318 L:      linux-kernel@vger.kernel.org
4319 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
4320 S:      Maintained
4321 F:      drivers/extcon/
4322 F:      include/linux/extcon/
4323 F:      include/linux/extcon.h
4324 F:      Documentation/extcon/
4325 F:      Documentation/devicetree/bindings/extcon/
4326
4327 EXYNOS DP DRIVER
4328 M:      Jingoo Han <jingoohan1@gmail.com>
4329 L:      dri-devel@lists.freedesktop.org
4330 S:      Maintained
4331 F:      drivers/gpu/drm/exynos/exynos_dp*
4332
4333 EXYNOS MIPI DISPLAY DRIVERS
4334 M:      Inki Dae <inki.dae@samsung.com>
4335 M:      Donghwa Lee <dh09.lee@samsung.com>
4336 M:      Kyungmin Park <kyungmin.park@samsung.com>
4337 L:      linux-fbdev@vger.kernel.org
4338 S:      Maintained
4339 F:      drivers/video/fbdev/exynos/exynos_mipi*
4340 F:      include/video/exynos_mipi*
4341
4342 F71805F HARDWARE MONITORING DRIVER
4343 M:      Jean Delvare <jdelvare@suse.com>
4344 L:      lm-sensors@lm-sensors.org
4345 S:      Maintained
4346 F:      Documentation/hwmon/f71805f
4347 F:      drivers/hwmon/f71805f.c
4348
4349 FC0011 TUNER DRIVER
4350 M:      Michael Buesch <m@bues.ch>
4351 L:      linux-media@vger.kernel.org
4352 S:      Maintained
4353 F:      drivers/media/tuners/fc0011.h
4354 F:      drivers/media/tuners/fc0011.c
4355
4356 FC2580 MEDIA DRIVER
4357 M:      Antti Palosaari <crope@iki.fi>
4358 L:      linux-media@vger.kernel.org
4359 W:      https://linuxtv.org
4360 W:      http://palosaari.fi/linux/
4361 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4362 T:      git git://linuxtv.org/anttip/media_tree.git
4363 S:      Maintained
4364 F:      drivers/media/tuners/fc2580*
4365
4366 FANOTIFY
4367 M:      Eric Paris <eparis@redhat.com>
4368 S:      Maintained
4369 F:      fs/notify/fanotify/
4370 F:      include/linux/fanotify.h
4371 F:      include/uapi/linux/fanotify.h
4372
4373 FARSYNC SYNCHRONOUS DRIVER
4374 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
4375 W:      http://www.farsite.co.uk/
4376 S:      Supported
4377 F:      drivers/net/wan/farsync.*
4378
4379 FAULT INJECTION SUPPORT
4380 M:      Akinobu Mita <akinobu.mita@gmail.com>
4381 S:      Supported
4382 F:      Documentation/fault-injection/
4383 F:      lib/fault-inject.c
4384
4385 FBTFT Framebuffer drivers
4386 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
4387 M:      Noralf Trønnes <noralf@tronnes.org>
4388 S:      Maintained
4389 F:      drivers/staging/fbtft/
4390
4391 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
4392 M:      Vasu Dev <vasu.dev@intel.com>
4393 L:      fcoe-devel@open-fcoe.org
4394 W:      www.Open-FCoE.org
4395 S:      Supported
4396 F:      drivers/scsi/libfc/
4397 F:      drivers/scsi/fcoe/
4398 F:      include/scsi/fc/
4399 F:      include/scsi/libfc.h
4400 F:      include/scsi/libfcoe.h
4401 F:      include/uapi/scsi/fc/
4402
4403 FILE LOCKING (flock() and fcntl()/lockf())
4404 M:      Jeff Layton <jlayton@poochiereds.net>
4405 M:      "J. Bruce Fields" <bfields@fieldses.org>
4406 L:      linux-fsdevel@vger.kernel.org
4407 S:      Maintained
4408 F:      include/linux/fcntl.h
4409 F:      include/linux/fs.h
4410 F:      include/uapi/linux/fcntl.h
4411 F:      include/uapi/linux/fs.h
4412 F:      fs/fcntl.c
4413 F:      fs/locks.c
4414
4415 FILESYSTEMS (VFS and infrastructure)
4416 M:      Alexander Viro <viro@zeniv.linux.org.uk>
4417 L:      linux-fsdevel@vger.kernel.org
4418 S:      Maintained
4419 F:      fs/*
4420
4421 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
4422 M:      Riku Voipio <riku.voipio@iki.fi>
4423 L:      lm-sensors@lm-sensors.org
4424 S:      Maintained
4425 F:      drivers/hwmon/f75375s.c
4426 F:      include/linux/f75375s.h
4427
4428 FIREWIRE AUDIO DRIVERS
4429 M:      Clemens Ladisch <clemens@ladisch.de>
4430 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4431 T:      git git://git.alsa-project.org/alsa-kernel.git
4432 S:      Maintained
4433 F:      sound/firewire/
4434
4435 FIREWIRE MEDIA DRIVERS (firedtv)
4436 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4437 L:      linux-media@vger.kernel.org
4438 L:      linux1394-devel@lists.sourceforge.net
4439 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
4440 S:      Maintained
4441 F:      drivers/media/firewire/
4442
4443 FIREWIRE SBP-2 TARGET
4444 M:      Chris Boot <bootc@bootc.net>
4445 L:      linux-scsi@vger.kernel.org
4446 L:      target-devel@vger.kernel.org
4447 L:      linux1394-devel@lists.sourceforge.net
4448 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
4449 S:      Maintained
4450 F:      drivers/target/sbp/
4451
4452 FIREWIRE SUBSYSTEM
4453 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4454 L:      linux1394-devel@lists.sourceforge.net
4455 W:      http://ieee1394.wiki.kernel.org/
4456 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
4457 S:      Maintained
4458 F:      drivers/firewire/
4459 F:      include/linux/firewire.h
4460 F:      include/uapi/linux/firewire*.h
4461 F:      tools/firewire/
4462
4463 FIRMWARE LOADER (request_firmware)
4464 M:      Ming Lei <ming.lei@canonical.com>
4465 L:      linux-kernel@vger.kernel.org
4466 S:      Maintained
4467 F:      Documentation/firmware_class/
4468 F:      drivers/base/firmware*.c
4469 F:      include/linux/firmware.h
4470
4471 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
4472 M:      Joshua Morris <josh.h.morris@us.ibm.com>
4473 M:      Philip Kelleher <pjk1939@linux.vnet.ibm.com>
4474 S:      Maintained
4475 F:      drivers/block/rsxx/
4476
4477 FLOPPY DRIVER
4478 M:      Jiri Kosina <jikos@kernel.org>
4479 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
4480 S:      Odd fixes
4481 F:      drivers/block/floppy.c
4482
4483 FMC SUBSYSTEM
4484 M:      Alessandro Rubini <rubini@gnudd.com>
4485 W:      http://www.ohwr.org/projects/fmc-bus
4486 S:      Supported
4487 F:      drivers/fmc/
4488 F:      include/linux/fmc*.h
4489 F:      include/linux/ipmi-fru.h
4490 K:      fmc_d.*register
4491
4492 FPGA MANAGER FRAMEWORK
4493 M:      Alan Tull <atull@opensource.altera.com>
4494 R:      Moritz Fischer <moritz.fischer@ettus.com>
4495 S:      Maintained
4496 F:      drivers/fpga/
4497 F:      include/linux/fpga/fpga-mgr.h
4498 W:      http://www.rocketboards.org
4499
4500 FPU EMULATOR
4501 M:      Bill Metzenthen <billm@melbpc.org.au>
4502 W:      http://floatingpoint.sourceforge.net/emulator/index.html
4503 S:      Maintained
4504 F:      arch/x86/math-emu/
4505
4506 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
4507 L:      netdev@vger.kernel.org
4508 S:      Orphan
4509 F:      drivers/net/wan/dlci.c
4510 F:      drivers/net/wan/sdla.c
4511
4512 FRAMEBUFFER LAYER
4513 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
4514 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
4515 L:      linux-fbdev@vger.kernel.org
4516 W:      http://linux-fbdev.sourceforge.net/
4517 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
4518 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git
4519 S:      Maintained
4520 F:      Documentation/fb/
4521 F:      drivers/video/
4522 F:      include/video/
4523 F:      include/linux/fb.h
4524 F:      include/uapi/video/
4525 F:      include/uapi/linux/fb.h
4526
4527 FREESCALE DIU FRAMEBUFFER DRIVER
4528 M:      Timur Tabi <timur@tabi.org>
4529 L:      linux-fbdev@vger.kernel.org
4530 S:      Maintained
4531 F:      drivers/video/fbdev/fsl-diu-fb.*
4532
4533 FREESCALE DMA DRIVER
4534 M:      Li Yang <leoli@freescale.com>
4535 M:      Zhang Wei <zw@zh-kernel.org>
4536 L:      linuxppc-dev@lists.ozlabs.org
4537 S:      Maintained
4538 F:      drivers/dma/fsldma.*
4539
4540 FREESCALE I2C CPM DRIVER
4541 M:      Jochen Friedrich <jochen@scram.de>
4542 L:      linuxppc-dev@lists.ozlabs.org
4543 L:      linux-i2c@vger.kernel.org
4544 S:      Maintained
4545 F:      drivers/i2c/busses/i2c-cpm.c
4546
4547 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
4548 M:      Sascha Hauer <kernel@pengutronix.de>
4549 L:      linux-fbdev@vger.kernel.org
4550 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4551 S:      Maintained
4552 F:      include/linux/platform_data/video-imxfb.h
4553 F:      drivers/video/fbdev/imxfb.c
4554
4555 FREESCALE QUAD SPI DRIVER
4556 M:      Han Xu <han.xu@freescale.com>
4557 L:      linux-mtd@lists.infradead.org
4558 S:      Maintained
4559 F:      drivers/mtd/spi-nor/fsl-quadspi.c
4560
4561 FREESCALE SOC FS_ENET DRIVER
4562 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
4563 M:      Vitaly Bordug <vbordug@ru.mvista.com>
4564 L:      linuxppc-dev@lists.ozlabs.org
4565 L:      netdev@vger.kernel.org
4566 S:      Maintained
4567 F:      drivers/net/ethernet/freescale/fs_enet/
4568 F:      include/linux/fs_enet_pd.h
4569
4570 FREESCALE QUICC ENGINE LIBRARY
4571 L:      linuxppc-dev@lists.ozlabs.org
4572 S:      Orphan
4573 F:      drivers/soc/fsl/qe/
4574 F:      include/soc/fsl/*qe*.h
4575 F:      include/soc/fsl/*ucc*.h
4576
4577 FREESCALE USB PERIPHERAL DRIVERS
4578 M:      Li Yang <leoli@freescale.com>
4579 L:      linux-usb@vger.kernel.org
4580 L:      linuxppc-dev@lists.ozlabs.org
4581 S:      Maintained
4582 F:      drivers/usb/gadget/udc/fsl*
4583
4584 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
4585 M:      Li Yang <leoli@freescale.com>
4586 L:      netdev@vger.kernel.org
4587 L:      linuxppc-dev@lists.ozlabs.org
4588 S:      Maintained
4589 F:      drivers/net/ethernet/freescale/ucc_geth*
4590
4591 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
4592 M:      Claudiu Manoil <claudiu.manoil@freescale.com>
4593 L:      netdev@vger.kernel.org
4594 S:      Maintained
4595 F:      drivers/net/ethernet/freescale/gianfar*
4596 X:      drivers/net/ethernet/freescale/gianfar_ptp.c
4597 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
4598
4599 FREESCALE QUICC ENGINE UCC UART DRIVER
4600 M:      Timur Tabi <timur@tabi.org>
4601 L:      linuxppc-dev@lists.ozlabs.org
4602 S:      Maintained
4603 F:      drivers/tty/serial/ucc_uart.c
4604
4605 FREESCALE SOC SOUND DRIVERS
4606 M:      Timur Tabi <timur@tabi.org>
4607 M:      Nicolin Chen <nicoleotsuka@gmail.com>
4608 M:      Xiubo Li <Xiubo.Lee@gmail.com>
4609 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4610 L:      linuxppc-dev@lists.ozlabs.org
4611 S:      Maintained
4612 F:      sound/soc/fsl/fsl*
4613 F:      sound/soc/fsl/imx*
4614 F:      sound/soc/fsl/mpc8610_hpcd.c
4615
4616 FREESCALE QORIQ MANAGEMENT COMPLEX DRIVER
4617 M:      "J. German Rivera" <German.Rivera@freescale.com>
4618 L:      linux-kernel@vger.kernel.org
4619 S:      Maintained
4620 F:      drivers/staging/fsl-mc/
4621
4622 FREEVXFS FILESYSTEM
4623 M:      Christoph Hellwig <hch@infradead.org>
4624 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
4625 S:      Maintained
4626 F:      fs/freevxfs/
4627
4628 FREEZER
4629 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4630 M:      Pavel Machek <pavel@ucw.cz>
4631 L:      linux-pm@vger.kernel.org
4632 S:      Supported
4633 F:      Documentation/power/freezing-of-tasks.txt
4634 F:      include/linux/freezer.h
4635 F:      kernel/freezer.c
4636
4637 FRONTSWAP API
4638 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4639 L:      linux-kernel@vger.kernel.org
4640 S:      Maintained
4641 F:      mm/frontswap.c
4642 F:      include/linux/frontswap.h
4643
4644 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
4645 M:      David Howells <dhowells@redhat.com>
4646 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
4647 S:      Supported
4648 F:      Documentation/filesystems/caching/
4649 F:      fs/fscache/
4650 F:      include/linux/fscache*.h
4651
4652 F2FS FILE SYSTEM
4653 M:      Jaegeuk Kim <jaegeuk@kernel.org>
4654 M:      Changman Lee <cm224.lee@samsung.com>
4655 R:      Chao Yu <chao2.yu@samsung.com>
4656 L:      linux-f2fs-devel@lists.sourceforge.net
4657 W:      http://en.wikipedia.org/wiki/F2FS
4658 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
4659 S:      Maintained
4660 F:      Documentation/filesystems/f2fs.txt
4661 F:      Documentation/ABI/testing/sysfs-fs-f2fs
4662 F:      fs/f2fs/
4663 F:      include/linux/f2fs_fs.h
4664 F:      include/trace/events/f2fs.h
4665
4666 FUJITSU FR-V (FRV) PORT
4667 S:      Orphan
4668 F:      arch/frv/
4669
4670 FUJITSU LAPTOP EXTRAS
4671 M:      Jonathan Woithe <jwoithe@just42.net>
4672 L:      platform-driver-x86@vger.kernel.org
4673 S:      Maintained
4674 F:      drivers/platform/x86/fujitsu-laptop.c
4675
4676 FUJITSU M-5MO LS CAMERA ISP DRIVER
4677 M:      Kyungmin Park <kyungmin.park@samsung.com>
4678 M:      Heungjun Kim <riverful.kim@samsung.com>
4679 L:      linux-media@vger.kernel.org
4680 S:      Maintained
4681 F:      drivers/media/i2c/m5mols/
4682 F:      include/media/i2c/m5mols.h
4683
4684 FUJITSU TABLET EXTRAS
4685 M:      Robert Gerlach <khnz@gmx.de>
4686 L:      platform-driver-x86@vger.kernel.org
4687 S:      Maintained
4688 F:      drivers/platform/x86/fujitsu-tablet.c
4689
4690 FUSE: FILESYSTEM IN USERSPACE
4691 M:      Miklos Szeredi <miklos@szeredi.hu>
4692 L:      fuse-devel@lists.sourceforge.net
4693 W:      http://fuse.sourceforge.net/
4694 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
4695 S:      Maintained
4696 F:      fs/fuse/
4697 F:      include/uapi/linux/fuse.h
4698 F:      Documentation/filesystems/fuse.txt
4699
4700 FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
4701 M:      Rik Faith <faith@cs.unc.edu>
4702 L:      linux-scsi@vger.kernel.org
4703 S:      Odd Fixes (e.g., new signatures)
4704 F:      drivers/scsi/fdomain.*
4705
4706 GCOV BASED KERNEL PROFILING
4707 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
4708 S:      Maintained
4709 F:      kernel/gcov/
4710 F:      Documentation/gcov.txt
4711
4712 GDT SCSI DISK ARRAY CONTROLLER DRIVER
4713 M:      Achim Leubner <achim_leubner@adaptec.com>
4714 L:      linux-scsi@vger.kernel.org
4715 W:      http://www.icp-vortex.com/
4716 S:      Supported
4717 F:      drivers/scsi/gdt*
4718
4719 GDB KERNEL DEBUGGING HELPER SCRIPTS
4720 M:      Jan Kiszka <jan.kiszka@siemens.com>
4721 S:      Supported
4722 F:      scripts/gdb/
4723
4724 GEMTEK FM RADIO RECEIVER DRIVER
4725 M:      Hans Verkuil <hverkuil@xs4all.nl>
4726 L:      linux-media@vger.kernel.org
4727 T:      git git://linuxtv.org/media_tree.git
4728 W:      https://linuxtv.org
4729 S:      Maintained
4730 F:      drivers/media/radio/radio-gemtek*
4731
4732 GENERIC GPIO I2C DRIVER
4733 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
4734 S:      Supported
4735 F:      drivers/i2c/busses/i2c-gpio.c
4736 F:      include/linux/i2c-gpio.h
4737
4738 GENERIC GPIO I2C MULTIPLEXER DRIVER
4739 M:      Peter Korsgaard <peter.korsgaard@barco.com>
4740 L:      linux-i2c@vger.kernel.org
4741 S:      Supported
4742 F:      drivers/i2c/muxes/i2c-mux-gpio.c
4743 F:      include/linux/i2c-mux-gpio.h
4744 F:      Documentation/i2c/muxes/i2c-mux-gpio
4745
4746 GENERIC HDLC (WAN) DRIVERS
4747 M:      Krzysztof Halasa <khc@pm.waw.pl>
4748 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
4749 S:      Maintained
4750 F:      drivers/net/wan/c101.c
4751 F:      drivers/net/wan/hd6457*
4752 F:      drivers/net/wan/hdlc*
4753 F:      drivers/net/wan/n2.c
4754 F:      drivers/net/wan/pc300too.c
4755 F:      drivers/net/wan/pci200syn.c
4756 F:      drivers/net/wan/wanxl*
4757
4758 GENERIC INCLUDE/ASM HEADER FILES
4759 M:      Arnd Bergmann <arnd@arndb.de>
4760 L:      linux-arch@vger.kernel.org
4761 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
4762 S:      Maintained
4763 F:      include/asm-generic/
4764 F:      include/uapi/asm-generic/
4765
4766 GENERIC PHY FRAMEWORK
4767 M:      Kishon Vijay Abraham I <kishon@ti.com>
4768 L:      linux-kernel@vger.kernel.org
4769 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
4770 S:      Supported
4771 F:      drivers/phy/
4772 F:      include/linux/phy/
4773
4774 GENERIC PM DOMAINS
4775 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4776 M:      Kevin Hilman <khilman@kernel.org>
4777 M:      Ulf Hansson <ulf.hansson@linaro.org>
4778 L:      linux-pm@vger.kernel.org
4779 S:      Supported
4780 F:      drivers/base/power/domain*.c
4781 F:      include/linux/pm_domain.h
4782
4783 GENERIC UIO DRIVER FOR PCI DEVICES
4784 M:      "Michael S. Tsirkin" <mst@redhat.com>
4785 L:      kvm@vger.kernel.org
4786 S:      Supported
4787 F:      drivers/uio/uio_pci_generic.c
4788
4789 GET_MAINTAINER SCRIPT
4790 M:      Joe Perches <joe@perches.com>
4791 S:      Maintained
4792 F:      scripts/get_maintainer.pl
4793
4794 GFS2 FILE SYSTEM
4795 M:      Steven Whitehouse <swhiteho@redhat.com>
4796 M:      Bob Peterson <rpeterso@redhat.com>
4797 L:      cluster-devel@redhat.com
4798 W:      http://sources.redhat.com/cluster/
4799 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
4800 S:      Supported
4801 F:      Documentation/filesystems/gfs2*.txt
4802 F:      fs/gfs2/
4803 F:      include/uapi/linux/gfs2_ondisk.h
4804
4805 GIGASET ISDN DRIVERS
4806 M:      Paul Bolle <pebolle@tiscali.nl>
4807 L:      gigaset307x-common@lists.sourceforge.net
4808 W:      http://gigaset307x.sourceforge.net/
4809 S:      Odd Fixes
4810 F:      Documentation/isdn/README.gigaset
4811 F:      drivers/isdn/gigaset/
4812 F:      include/uapi/linux/gigaset_dev.h
4813
4814 GO7007 MPEG CODEC
4815 M:      Hans Verkuil <hans.verkuil@cisco.com>
4816 L:      linux-media@vger.kernel.org
4817 S:      Maintained
4818 F:      drivers/media/usb/go7007/
4819
4820 GOODIX TOUCHSCREEN
4821 M:      Bastien Nocera <hadess@hadess.net>
4822 L:      linux-input@vger.kernel.org
4823 S:      Maintained
4824 F:      drivers/input/touchscreen/goodix.c
4825
4826 GPIO SUBSYSTEM
4827 M:      Linus Walleij <linus.walleij@linaro.org>
4828 M:      Alexandre Courbot <gnurou@gmail.com>
4829 L:      linux-gpio@vger.kernel.org
4830 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
4831 S:      Maintained
4832 F:      Documentation/gpio/
4833 F:      drivers/gpio/
4834 F:      include/linux/gpio/
4835 F:      include/linux/gpio.h
4836 F:      include/asm-generic/gpio.h
4837
4838 GRE DEMULTIPLEXER DRIVER
4839 M:      Dmitry Kozlov <xeb@mail.ru>
4840 L:      netdev@vger.kernel.org
4841 S:      Maintained
4842 F:      net/ipv4/gre_demux.c
4843 F:      net/ipv4/gre_offload.c
4844 F:      include/net/gre.h
4845
4846 GRETH 10/100/1G Ethernet MAC device driver
4847 M:      Kristoffer Glembo <kristoffer@gaisler.com>
4848 L:      netdev@vger.kernel.org
4849 S:      Maintained
4850 F:      drivers/net/ethernet/aeroflex/
4851
4852 GSPCA FINEPIX SUBDRIVER
4853 M:      Frank Zago <frank@zago.net>
4854 L:      linux-media@vger.kernel.org
4855 T:      git git://linuxtv.org/media_tree.git
4856 S:      Maintained
4857 F:      drivers/media/usb/gspca/finepix.c
4858
4859 GSPCA GL860 SUBDRIVER
4860 M:      Olivier Lorin <o.lorin@laposte.net>
4861 L:      linux-media@vger.kernel.org
4862 T:      git git://linuxtv.org/media_tree.git
4863 S:      Maintained
4864 F:      drivers/media/usb/gspca/gl860/
4865
4866 GSPCA M5602 SUBDRIVER
4867 M:      Erik Andren <erik.andren@gmail.com>
4868 L:      linux-media@vger.kernel.org
4869 T:      git git://linuxtv.org/media_tree.git
4870 S:      Maintained
4871 F:      drivers/media/usb/gspca/m5602/
4872
4873 GSPCA PAC207 SONIXB SUBDRIVER
4874 M:      Hans de Goede <hdegoede@redhat.com>
4875 L:      linux-media@vger.kernel.org
4876 T:      git git://linuxtv.org/media_tree.git
4877 S:      Maintained
4878 F:      drivers/media/usb/gspca/pac207.c
4879
4880 GSPCA SN9C20X SUBDRIVER
4881 M:      Brian Johnson <brijohn@gmail.com>
4882 L:      linux-media@vger.kernel.org
4883 T:      git git://linuxtv.org/media_tree.git
4884 S:      Maintained
4885 F:      drivers/media/usb/gspca/sn9c20x.c
4886
4887 GSPCA T613 SUBDRIVER
4888 M:      Leandro Costantino <lcostantino@gmail.com>
4889 L:      linux-media@vger.kernel.org
4890 T:      git git://linuxtv.org/media_tree.git
4891 S:      Maintained
4892 F:      drivers/media/usb/gspca/t613.c
4893
4894 GSPCA USB WEBCAM DRIVER
4895 M:      Hans de Goede <hdegoede@redhat.com>
4896 L:      linux-media@vger.kernel.org
4897 T:      git git://linuxtv.org/media_tree.git
4898 S:      Maintained
4899 F:      drivers/media/usb/gspca/
4900
4901 GUID PARTITION TABLE (GPT)
4902 M:      Davidlohr Bueso <dave@stgolabs.net>
4903 L:      linux-efi@vger.kernel.org
4904 S:      Maintained
4905 F:      block/partitions/efi.*
4906
4907 STK1160 USB VIDEO CAPTURE DRIVER
4908 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
4909 L:      linux-media@vger.kernel.org
4910 T:      git git://linuxtv.org/media_tree.git
4911 S:      Maintained
4912 F:      drivers/media/usb/stk1160/
4913
4914 H8/300 ARCHITECTURE
4915 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
4916 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
4917 W:      http://uclinux-h8.sourceforge.jp
4918 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
4919 S:      Maintained
4920 F:      arch/h8300/
4921 F:      drivers/clocksource/h8300_*.c
4922 F:      drivers/clk/h8300/
4923 F:      drivers/irqchip/irq-renesas-h8*.c
4924
4925 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
4926 M:      Frank Seidel <frank@f-seidel.de>
4927 L:      platform-driver-x86@vger.kernel.org
4928 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
4929 S:      Maintained
4930 F:      drivers/platform/x86/hdaps.c
4931
4932 HDPVR USB VIDEO ENCODER DRIVER
4933 M:      Hans Verkuil <hverkuil@xs4all.nl>
4934 L:      linux-media@vger.kernel.org
4935 T:      git git://linuxtv.org/media_tree.git
4936 W:      https://linuxtv.org
4937 S:      Odd Fixes
4938 F:      drivers/media/usb/hdpvr/
4939
4940 HWPOISON MEMORY FAILURE HANDLING
4941 M:      Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
4942 L:      linux-mm@kvack.org
4943 S:      Maintained
4944 F:      mm/memory-failure.c
4945 F:      mm/hwpoison-inject.c
4946
4947 HYPERVISOR VIRTUAL CONSOLE DRIVER
4948 L:      linuxppc-dev@lists.ozlabs.org
4949 S:      Odd Fixes
4950 F:      drivers/tty/hvc/
4951
4952 HACKRF MEDIA DRIVER
4953 M:      Antti Palosaari <crope@iki.fi>
4954 L:      linux-media@vger.kernel.org
4955 W:      https://linuxtv.org
4956 W:      http://palosaari.fi/linux/
4957 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4958 T:      git git://linuxtv.org/anttip/media_tree.git
4959 S:      Maintained
4960 F:      drivers/media/usb/hackrf/
4961
4962 HARDWARE MONITORING
4963 M:      Jean Delvare <jdelvare@suse.com>
4964 M:      Guenter Roeck <linux@roeck-us.net>
4965 L:      lm-sensors@lm-sensors.org
4966 W:      http://www.lm-sensors.org/
4967 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/
4968 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
4969 S:      Maintained
4970 F:      Documentation/hwmon/
4971 F:      drivers/hwmon/
4972 F:      include/linux/hwmon*.h
4973
4974 HARDWARE RANDOM NUMBER GENERATOR CORE
4975 M:      Matt Mackall <mpm@selenic.com>
4976 M:      Herbert Xu <herbert@gondor.apana.org.au>
4977 L:      linux-crypto@vger.kernel.org
4978 S:      Odd fixes
4979 F:      Documentation/hw_random.txt
4980 F:      drivers/char/hw_random/
4981 F:      include/linux/hw_random.h
4982
4983 HARDWARE SPINLOCK CORE
4984 M:      Ohad Ben-Cohen <ohad@wizery.com>
4985 S:      Maintained
4986 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/hwspinlock.git
4987 F:      Documentation/hwspinlock.txt
4988 F:      drivers/hwspinlock/hwspinlock_*
4989 F:      include/linux/hwspinlock.h
4990
4991 HARMONY SOUND DRIVER
4992 L:      linux-parisc@vger.kernel.org
4993 S:      Maintained
4994 F:      sound/parisc/harmony.*
4995
4996 HD29L2 MEDIA DRIVER
4997 M:      Antti Palosaari <crope@iki.fi>
4998 L:      linux-media@vger.kernel.org
4999 W:      https://linuxtv.org
5000 W:      http://palosaari.fi/linux/
5001 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5002 T:      git git://linuxtv.org/anttip/media_tree.git
5003 S:      Maintained
5004 F:      drivers/media/dvb-frontends/hd29l2*
5005
5006 HEWLETT-PACKARD SMART2 RAID DRIVER
5007 L:      iss_storagedev@hp.com
5008 S:      Orphan
5009 F:      Documentation/blockdev/cpqarray.txt
5010 F:      drivers/block/cpqarray.*
5011
5012 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
5013 M:      Don Brace <don.brace@pmcs.com>
5014 L:      iss_storagedev@hp.com
5015 L:      storagedev@pmcs.com
5016 L:      linux-scsi@vger.kernel.org
5017 S:      Supported
5018 F:      Documentation/scsi/hpsa.txt
5019 F:      drivers/scsi/hpsa*.[ch]
5020 F:      include/linux/cciss*.h
5021 F:      include/uapi/linux/cciss*.h
5022
5023 HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
5024 M:      Don Brace <don.brace@pmcs.com>
5025 L:      iss_storagedev@hp.com
5026 L:      storagedev@pmcs.com
5027 L:      linux-scsi@vger.kernel.org
5028 S:      Supported
5029 F:      Documentation/blockdev/cciss.txt
5030 F:      drivers/block/cciss*
5031 F:      include/linux/cciss_ioctl.h
5032 F:      include/uapi/linux/cciss_ioctl.h
5033
5034 HFS FILESYSTEM
5035 L:      linux-fsdevel@vger.kernel.org
5036 S:      Orphan
5037 F:      Documentation/filesystems/hfs.txt
5038 F:      fs/hfs/
5039
5040 HFSPLUS FILESYSTEM
5041 L:      linux-fsdevel@vger.kernel.org
5042 S:      Orphan
5043 F:      Documentation/filesystems/hfsplus.txt
5044 F:      fs/hfsplus/
5045
5046 HGA FRAMEBUFFER DRIVER
5047 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
5048 L:      linux-nvidia@lists.surfsouth.com
5049 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
5050 S:      Maintained
5051 F:      drivers/video/fbdev/hgafb.c
5052
5053 HIBERNATION (aka Software Suspend, aka swsusp)
5054 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
5055 M:      Pavel Machek <pavel@ucw.cz>
5056 L:      linux-pm@vger.kernel.org
5057 S:      Supported
5058 F:      arch/x86/power/
5059 F:      drivers/base/power/
5060 F:      kernel/power/
5061 F:      include/linux/suspend.h
5062 F:      include/linux/freezer.h
5063 F:      include/linux/pm.h
5064 F:      arch/*/include/asm/suspend*.h
5065
5066 HID CORE LAYER
5067 M:      Jiri Kosina <jikos@kernel.org>
5068 R:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
5069 L:      linux-input@vger.kernel.org
5070 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
5071 S:      Maintained
5072 F:      drivers/hid/
5073 F:      include/linux/hid*
5074 F:      include/uapi/linux/hid*
5075
5076 HID SENSOR HUB DRIVERS
5077 M:      Jiri Kosina <jikos@kernel.org>
5078 M:      Jonathan Cameron <jic23@kernel.org>
5079 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
5080 L:      linux-input@vger.kernel.org
5081 L:      linux-iio@vger.kernel.org
5082 S:      Maintained
5083 F:      Documentation/hid/hid-sensor*
5084 F:      drivers/hid/hid-sensor-*
5085 F:      drivers/iio/*/hid-*
5086 F:      include/linux/hid-sensor-*
5087
5088 HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
5089 M:      Thomas Gleixner <tglx@linutronix.de>
5090 L:      linux-kernel@vger.kernel.org
5091 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
5092 S:      Maintained
5093 F:      Documentation/timers/
5094 F:      kernel/time/hrtimer.c
5095 F:      kernel/time/clockevents.c
5096 F:      kernel/time/tick*.*
5097 F:      kernel/time/timer_*.c
5098 F:      include/linux/clockchips.h
5099 F:      include/linux/hrtimer.h
5100
5101 HIGH-SPEED SCC DRIVER FOR AX.25
5102 L:      linux-hams@vger.kernel.org
5103 S:      Orphan
5104 F:      drivers/net/hamradio/dmascc.c
5105 F:      drivers/net/hamradio/scc.c
5106
5107 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
5108 M:      HighPoint Linux Team <linux@highpoint-tech.com>
5109 W:      http://www.highpoint-tech.com
5110 S:      Supported
5111 F:      Documentation/scsi/hptiop.txt
5112 F:      drivers/scsi/hptiop.c
5113
5114 HIPPI
5115 M:      Jes Sorensen <jes@trained-monkey.org>
5116 L:      linux-hippi@sunsite.dk
5117 S:      Maintained
5118 F:      include/linux/hippidevice.h
5119 F:      include/uapi/linux/if_hippi.h
5120 F:      net/802/hippi.c
5121 F:      drivers/net/hippi/
5122
5123 HISILICON SAS Controller
5124 M:      John Garry <john.garry@huawei.com>
5125 W:      http://www.hisilicon.com
5126 S:      Supported
5127 F:      drivers/scsi/hisi_sas/
5128 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
5129
5130 HOST AP DRIVER
5131 M:      Jouni Malinen <j@w1.fi>
5132 L:      hostap@shmoo.com (subscribers-only)
5133 L:      linux-wireless@vger.kernel.org
5134 W:      http://hostap.epitest.fi/
5135 S:      Maintained
5136 F:      drivers/net/wireless/intersil/hostap/
5137
5138 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
5139 L:      platform-driver-x86@vger.kernel.org
5140 S:      Orphan
5141 F:      drivers/platform/x86/tc1100-wmi.c
5142
5143 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
5144 M:      Jaroslav Kysela <perex@perex.cz>
5145 S:      Maintained
5146 F:      drivers/net/ethernet/hp/hp100.*
5147
5148 HPET:   High Precision Event Timers driver
5149 M:      Clemens Ladisch <clemens@ladisch.de>
5150 S:      Maintained
5151 F:      Documentation/timers/hpet.txt
5152 F:      drivers/char/hpet.c
5153 F:      include/linux/hpet.h
5154 F:      include/uapi/linux/hpet.h
5155
5156 HPET:   x86
5157 S:      Orphan
5158 F:      arch/x86/kernel/hpet.c
5159 F:      arch/x86/include/asm/hpet.h
5160
5161 HPFS FILESYSTEM
5162 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
5163 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
5164 S:      Maintained
5165 F:      fs/hpfs/
5166
5167 HSI SUBSYSTEM
5168 M:      Sebastian Reichel <sre@kernel.org>
5169 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
5170 S:      Maintained
5171 F:      Documentation/ABI/testing/sysfs-bus-hsi
5172 F:      Documentation/hsi.txt
5173 F:      drivers/hsi/
5174 F:      include/linux/hsi/
5175 F:      include/uapi/linux/hsi/
5176
5177 HSO 3G MODEM DRIVER
5178 M:      Jan Dumon <j.dumon@option.com>
5179 W:      http://www.pharscape.org
5180 S:      Maintained
5181 F:      drivers/net/usb/hso.c
5182
5183 HSR NETWORK PROTOCOL
5184 M:      Arvid Brodin <arvid.brodin@alten.se>
5185 L:      netdev@vger.kernel.org
5186 S:      Maintained
5187 F:      net/hsr/
5188
5189 HTCPEN TOUCHSCREEN DRIVER
5190 M:      Pau Oliva Fora <pof@eslack.org>
5191 L:      linux-input@vger.kernel.org
5192 S:      Maintained
5193 F:      drivers/input/touchscreen/htcpen.c
5194
5195 HUGETLB FILESYSTEM
5196 M:      Nadia Yvette Chambers <nyc@holomorphy.com>
5197 S:      Maintained
5198 F:      fs/hugetlbfs/
5199
5200 Hyper-V CORE AND DRIVERS
5201 M:      "K. Y. Srinivasan" <kys@microsoft.com>
5202 M:      Haiyang Zhang <haiyangz@microsoft.com>
5203 L:      devel@linuxdriverproject.org
5204 S:      Maintained
5205 F:      arch/x86/include/asm/mshyperv.h
5206 F:      arch/x86/include/uapi/asm/hyperv.h
5207 F:      arch/x86/kernel/cpu/mshyperv.c
5208 F:      drivers/hid/hid-hyperv.c
5209 F:      drivers/hv/
5210 F:      drivers/input/serio/hyperv-keyboard.c
5211 F:      drivers/net/hyperv/
5212 F:      drivers/scsi/storvsc_drv.c
5213 F:      drivers/video/fbdev/hyperv_fb.c
5214 F:      include/linux/hyperv.h
5215 F:      tools/hv/
5216 F:      Documentation/ABI/stable/sysfs-bus-vmbus
5217
5218 I2C OVER PARALLEL PORT
5219 M:      Jean Delvare <jdelvare@suse.com>
5220 L:      linux-i2c@vger.kernel.org
5221 S:      Maintained
5222 F:      Documentation/i2c/busses/i2c-parport
5223 F:      Documentation/i2c/busses/i2c-parport-light
5224 F:      drivers/i2c/busses/i2c-parport.c
5225 F:      drivers/i2c/busses/i2c-parport-light.c
5226
5227 I2C/SMBUS CONTROLLER DRIVERS FOR PC
5228 M:      Jean Delvare <jdelvare@suse.com>
5229 L:      linux-i2c@vger.kernel.org
5230 S:      Maintained
5231 F:      Documentation/i2c/busses/i2c-ali1535
5232 F:      Documentation/i2c/busses/i2c-ali1563
5233 F:      Documentation/i2c/busses/i2c-ali15x3
5234 F:      Documentation/i2c/busses/i2c-amd756
5235 F:      Documentation/i2c/busses/i2c-amd8111
5236 F:      Documentation/i2c/busses/i2c-i801
5237 F:      Documentation/i2c/busses/i2c-nforce2
5238 F:      Documentation/i2c/busses/i2c-piix4
5239 F:      Documentation/i2c/busses/i2c-sis5595
5240 F:      Documentation/i2c/busses/i2c-sis630
5241 F:      Documentation/i2c/busses/i2c-sis96x
5242 F:      Documentation/i2c/busses/i2c-via
5243 F:      Documentation/i2c/busses/i2c-viapro
5244 F:      drivers/i2c/busses/i2c-ali1535.c
5245 F:      drivers/i2c/busses/i2c-ali1563.c
5246 F:      drivers/i2c/busses/i2c-ali15x3.c
5247 F:      drivers/i2c/busses/i2c-amd756.c
5248 F:      drivers/i2c/busses/i2c-amd756-s4882.c
5249 F:      drivers/i2c/busses/i2c-amd8111.c
5250 F:      drivers/i2c/busses/i2c-i801.c
5251 F:      drivers/i2c/busses/i2c-isch.c
5252 F:      drivers/i2c/busses/i2c-nforce2.c
5253 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
5254 F:      drivers/i2c/busses/i2c-piix4.c
5255 F:      drivers/i2c/busses/i2c-sis5595.c
5256 F:      drivers/i2c/busses/i2c-sis630.c
5257 F:      drivers/i2c/busses/i2c-sis96x.c
5258 F:      drivers/i2c/busses/i2c-via.c
5259 F:      drivers/i2c/busses/i2c-viapro.c
5260
5261 I2C/SMBUS ISMT DRIVER
5262 M:      Seth Heasley <seth.heasley@intel.com>
5263 M:      Neil Horman <nhorman@tuxdriver.com>
5264 L:      linux-i2c@vger.kernel.org
5265 F:      drivers/i2c/busses/i2c-ismt.c
5266 F:      Documentation/i2c/busses/i2c-ismt
5267
5268 I2C/SMBUS STUB DRIVER
5269 M:      Jean Delvare <jdelvare@suse.com>
5270 L:      linux-i2c@vger.kernel.org
5271 S:      Maintained
5272 F:      drivers/i2c/i2c-stub.c
5273
5274 I2C SUBSYSTEM
5275 M:      Wolfram Sang <wsa@the-dreams.de>
5276 L:      linux-i2c@vger.kernel.org
5277 W:      https://i2c.wiki.kernel.org/
5278 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
5279 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
5280 S:      Maintained
5281 F:      Documentation/devicetree/bindings/i2c/
5282 F:      Documentation/i2c/
5283 F:      drivers/i2c/
5284 F:      drivers/i2c/*/
5285 F:      include/linux/i2c.h
5286 F:      include/linux/i2c-*.h
5287 F:      include/uapi/linux/i2c.h
5288 F:      include/uapi/linux/i2c-*.h
5289
5290 I2C ACPI SUPPORT
5291 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
5292 L:      linux-i2c@vger.kernel.org
5293 L:      linux-acpi@vger.kernel.org
5294 S:      Maintained
5295
5296 I2C-TAOS-EVM DRIVER
5297 M:      Jean Delvare <jdelvare@suse.com>
5298 L:      linux-i2c@vger.kernel.org
5299 S:      Maintained
5300 F:      Documentation/i2c/busses/i2c-taos-evm
5301 F:      drivers/i2c/busses/i2c-taos-evm.c
5302
5303 I2C-TINY-USB DRIVER
5304 M:      Till Harbaum <till@harbaum.org>
5305 L:      linux-i2c@vger.kernel.org
5306 W:      http://www.harbaum.org/till/i2c_tiny_usb
5307 S:      Maintained
5308 F:      drivers/i2c/busses/i2c-tiny-usb.c
5309
5310 i386 BOOT CODE
5311 M:      "H. Peter Anvin" <hpa@zytor.com>
5312 S:      Maintained
5313 F:      arch/x86/boot/
5314
5315 i386 SETUP CODE / CPU ERRATA WORKAROUNDS
5316 M:      "H. Peter Anvin" <hpa@zytor.com>
5317 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
5318 S:      Maintained
5319
5320 IA64 (Itanium) PLATFORM
5321 M:      Tony Luck <tony.luck@intel.com>
5322 M:      Fenghua Yu <fenghua.yu@intel.com>
5323 L:      linux-ia64@vger.kernel.org
5324 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
5325 S:      Maintained
5326 F:      arch/ia64/
5327
5328 IBM Power VMX Cryptographic instructions
5329 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5330 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5331 L:      linux-crypto@vger.kernel.org
5332 S:      Supported
5333 F:      drivers/crypto/vmx/Makefile
5334 F:      drivers/crypto/vmx/Kconfig
5335 F:      drivers/crypto/vmx/vmx.c
5336 F:      drivers/crypto/vmx/aes*
5337 F:      drivers/crypto/vmx/ghash*
5338 F:      drivers/crypto/vmx/ppc-xlate.pl
5339
5340 IBM Power in-Nest Crypto Acceleration
5341 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5342 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5343 L:      linux-crypto@vger.kernel.org
5344 S:      Supported
5345 F:      drivers/crypto/nx/Makefile
5346 F:      drivers/crypto/nx/Kconfig
5347 F:      drivers/crypto/nx/nx-aes*
5348 F:      drivers/crypto/nx/nx-sha*
5349 F:      drivers/crypto/nx/nx.*
5350 F:      drivers/crypto/nx/nx_csbcpb.h
5351 F:      drivers/crypto/nx/nx_debugfs.h
5352
5353 IBM Power 842 compression accelerator
5354 M:      Dan Streetman <ddstreet@ieee.org>
5355 S:      Supported
5356 F:      drivers/crypto/nx/Makefile
5357 F:      drivers/crypto/nx/Kconfig
5358 F:      drivers/crypto/nx/nx-842*
5359 F:      include/linux/sw842.h
5360 F:      crypto/842.c
5361 F:      lib/842/
5362
5363 IBM Power Linux RAID adapter
5364 M:      Brian King <brking@us.ibm.com>
5365 S:      Supported
5366 F:      drivers/scsi/ipr.*
5367
5368 IBM Power Virtual Ethernet Device Driver
5369 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
5370 L:      netdev@vger.kernel.org
5371 S:      Supported
5372 F:      drivers/net/ethernet/ibm/ibmveth.*
5373
5374 IBM Power SRIOV Virtual NIC Device Driver
5375 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
5376 M:      John Allen <jallen@linux.vnet.ibm.com>
5377 L:      netdev@vger.kernel.org
5378 S:      Supported
5379 F:      drivers/net/ethernet/ibm/ibmvnic.*
5380
5381 IBM Power Virtual SCSI Device Drivers
5382 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5383 L:      linux-scsi@vger.kernel.org
5384 S:      Supported
5385 F:      drivers/scsi/ibmvscsi/ibmvscsi*
5386 F:      drivers/scsi/ibmvscsi/viosrp.h
5387
5388 IBM Power Virtual FC Device Drivers
5389 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5390 L:      linux-scsi@vger.kernel.org
5391 S:      Supported
5392 F:      drivers/scsi/ibmvscsi/ibmvfc*
5393
5394 IBM ServeRAID RAID DRIVER
5395 S:      Orphan
5396 F:      drivers/scsi/ips.*
5397
5398 ICH LPC AND GPIO DRIVER
5399 M:      Peter Tyser <ptyser@xes-inc.com>
5400 S:      Maintained
5401 F:      drivers/mfd/lpc_ich.c
5402 F:      drivers/gpio/gpio-ich.c
5403
5404 IDE SUBSYSTEM
5405 M:      "David S. Miller" <davem@davemloft.net>
5406 L:      linux-ide@vger.kernel.org
5407 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
5408 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
5409 S:      Maintained
5410 F:      Documentation/ide/
5411 F:      drivers/ide/
5412 F:      include/linux/ide.h
5413
5414 IDEAPAD LAPTOP EXTRAS DRIVER
5415 M:      Ike Panhc <ike.pan@canonical.com>
5416 L:      platform-driver-x86@vger.kernel.org
5417 W:      http://launchpad.net/ideapad-laptop
5418 S:      Maintained
5419 F:      drivers/platform/x86/ideapad-laptop.c
5420
5421 IDEAPAD LAPTOP SLIDEBAR DRIVER
5422 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
5423 L:      linux-input@vger.kernel.org
5424 W:      https://github.com/o2genum/ideapad-slidebar
5425 S:      Maintained
5426 F:      drivers/input/misc/ideapad_slidebar.c
5427
5428 IDE/ATAPI DRIVERS
5429 M:      Borislav Petkov <bp@alien8.de>
5430 L:      linux-ide@vger.kernel.org
5431 S:      Maintained
5432 F:      Documentation/cdrom/ide-cd
5433 F:      drivers/ide/ide-cd*
5434
5435 IDLE-I7300
5436 M:      Andy Henroid <andrew.d.henroid@intel.com>
5437 L:      linux-pm@vger.kernel.org
5438 S:      Supported
5439 F:      drivers/idle/i7300_idle.c
5440
5441 IEEE 802.15.4 SUBSYSTEM
5442 M:      Alexander Aring <alex.aring@gmail.com>
5443 L:      linux-wpan@vger.kernel.org
5444 W:      https://github.com/linux-wpan
5445 T:      git git://github.com/linux-wpan/linux-wpan-next.git
5446 S:      Maintained
5447 F:      net/ieee802154/
5448 F:      net/mac802154/
5449 F:      drivers/net/ieee802154/
5450 F:      include/linux/nl802154.h
5451 F:      include/linux/ieee802154.h
5452 F:      include/net/nl802154.h
5453 F:      include/net/mac802154.h
5454 F:      include/net/af_ieee802154.h
5455 F:      include/net/cfg802154.h
5456 F:      include/net/ieee802154_netdev.h
5457 F:      Documentation/networking/ieee802154.txt
5458
5459 IGORPLUG-USB IR RECEIVER
5460 M:      Sean Young <sean@mess.org>
5461 L:      linux-media@vger.kernel.org
5462 S:      Maintained
5463 F:      drivers/media/rc/igorplugusb.c
5464
5465 IGUANAWORKS USB IR TRANSCEIVER
5466 M:      Sean Young <sean@mess.org>
5467 L:      linux-media@vger.kernel.org
5468 S:      Maintained
5469 F:      drivers/media/rc/iguanair.c
5470
5471 IIO SUBSYSTEM AND DRIVERS
5472 M:      Jonathan Cameron <jic23@kernel.org>
5473 R:      Hartmut Knaack <knaack.h@gmx.de>
5474 R:      Lars-Peter Clausen <lars@metafoo.de>
5475 R:      Peter Meerwald <pmeerw@pmeerw.net>
5476 L:      linux-iio@vger.kernel.org
5477 S:      Maintained
5478 F:      drivers/iio/
5479 F:      drivers/staging/iio/
5480 F:      include/linux/iio/
5481 F:      tools/iio/
5482
5483 IKANOS/ADI EAGLE ADSL USB DRIVER
5484 M:      Matthieu Castet <castet.matthieu@free.fr>
5485 M:      Stanislaw Gruszka <stf_xl@wp.pl>
5486 S:      Maintained
5487 F:      drivers/usb/atm/ueagle-atm.c
5488
5489 INA209 HARDWARE MONITOR DRIVER
5490 M:      Guenter Roeck <linux@roeck-us.net>
5491 L:      lm-sensors@lm-sensors.org
5492 S:      Maintained
5493 F:      Documentation/hwmon/ina209
5494 F:      Documentation/devicetree/bindings/i2c/ina209.txt
5495 F:      drivers/hwmon/ina209.c
5496
5497 INA2XX HARDWARE MONITOR DRIVER
5498 M:      Guenter Roeck <linux@roeck-us.net>
5499 L:      lm-sensors@lm-sensors.org
5500 S:      Maintained
5501 F:      Documentation/hwmon/ina2xx
5502 F:      drivers/hwmon/ina2xx.c
5503 F:      include/linux/platform_data/ina2xx.h
5504
5505 INDUSTRY PACK SUBSYSTEM (IPACK)
5506 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
5507 M:      Jens Taprogge <jens.taprogge@taprogge.org>
5508 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5509 L:      industrypack-devel@lists.sourceforge.net
5510 W:      http://industrypack.sourceforge.net
5511 S:      Maintained
5512 F:      drivers/ipack/
5513
5514 INGENIC JZ4780 DMA Driver
5515 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
5516 S:      Maintained
5517 F:      drivers/dma/dma-jz4780.c
5518
5519 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
5520 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
5521 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
5522 L:      linux-ima-devel@lists.sourceforge.net
5523 L:      linux-ima-user@lists.sourceforge.net
5524 L:      linux-security-module@vger.kernel.org
5525 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
5526 S:      Supported
5527 F:      security/integrity/ima/
5528
5529 IMGTEC IR DECODER DRIVER
5530 M:      James Hogan <james.hogan@imgtec.com>
5531 S:      Maintained
5532 F:      drivers/media/rc/img-ir/
5533
5534 IMS TWINTURBO FRAMEBUFFER DRIVER
5535 L:      linux-fbdev@vger.kernel.org
5536 S:      Orphan
5537 F:      drivers/video/fbdev/imsttfb.c
5538
5539 INFINIBAND SUBSYSTEM
5540 M:      Doug Ledford <dledford@redhat.com>
5541 M:      Sean Hefty <sean.hefty@intel.com>
5542 M:      Hal Rosenstock <hal.rosenstock@gmail.com>
5543 L:      linux-rdma@vger.kernel.org
5544 W:      http://www.openfabrics.org/
5545 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5546 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git
5547 S:      Supported
5548 F:      Documentation/infiniband/
5549 F:      drivers/infiniband/
5550 F:      drivers/staging/rdma/
5551 F:      include/uapi/linux/if_infiniband.h
5552 F:      include/uapi/rdma/
5553 F:      include/rdma/
5554
5555 INOTIFY
5556 M:      John McCutchan <john@johnmccutchan.com>
5557 M:      Robert Love <rlove@rlove.org>
5558 M:      Eric Paris <eparis@parisplace.org>
5559 S:      Maintained
5560 F:      Documentation/filesystems/inotify.txt
5561 F:      fs/notify/inotify/
5562 F:      include/linux/inotify.h
5563 F:      include/uapi/linux/inotify.h
5564
5565 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
5566 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
5567 L:      linux-input@vger.kernel.org
5568 Q:      http://patchwork.kernel.org/project/linux-input/list/
5569 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
5570 S:      Maintained
5571 F:      drivers/input/
5572 F:      include/linux/input.h
5573 F:      include/uapi/linux/input.h
5574 F:      include/linux/input/
5575
5576 INPUT MULTITOUCH (MT) PROTOCOL
5577 M:      Henrik Rydberg <rydberg@bitmath.org>
5578 L:      linux-input@vger.kernel.org
5579 S:      Odd fixes
5580 F:      Documentation/input/multi-touch-protocol.txt
5581 F:      drivers/input/input-mt.c
5582 K:      \b(ABS|SYN)_MT_
5583
5584 INTEL ASoC BDW/HSW DRIVERS
5585 M:      Jie Yang <yang.jie@linux.intel.com>
5586 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5587 S:      Supported
5588 F:      sound/soc/intel/common/sst-dsp*
5589 F:      sound/soc/intel/common/sst-firmware.c
5590 F:      sound/soc/intel/boards/broadwell.c
5591 F:      sound/soc/intel/haswell/
5592
5593 INTEL C600 SERIES SAS CONTROLLER DRIVER
5594 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
5595 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
5596 L:      linux-scsi@vger.kernel.org
5597 T:      git git://git.code.sf.net/p/intel-sas/isci
5598 S:      Supported
5599 F:      drivers/scsi/isci/
5600
5601 INTEL HID EVENT DRIVER
5602 M:      Alex Hung <alex.hung@canonical.com>
5603 L:      platform-driver-x86@vger.kernel.org
5604 S:      Maintained
5605 F:      drivers/platform/x86/intel-hid.c
5606
5607 INTEL IDLE DRIVER
5608 M:      Len Brown <lenb@kernel.org>
5609 L:      linux-pm@vger.kernel.org
5610 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
5611 S:      Supported
5612 F:      drivers/idle/intel_idle.c
5613
5614 INTEL PSTATE DRIVER
5615 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
5616 M:      Len Brown <lenb@kernel.org>
5617 L:      linux-pm@vger.kernel.org
5618 S:      Supported
5619 F:      drivers/cpufreq/intel_pstate.c
5620
5621 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
5622 M:      Maik Broemme <mbroemme@plusserver.de>
5623 L:      linux-fbdev@vger.kernel.org
5624 S:      Maintained
5625 F:      Documentation/fb/intelfb.txt
5626 F:      drivers/video/fbdev/intelfb/
5627
5628 INTEL 810/815 FRAMEBUFFER DRIVER
5629 M:      Antonino Daplas <adaplas@gmail.com>
5630 L:      linux-fbdev@vger.kernel.org
5631 S:      Maintained
5632 F:      drivers/video/fbdev/i810/
5633
5634 INTEL MENLOW THERMAL DRIVER
5635 M:      Sujith Thomas <sujith.thomas@intel.com>
5636 L:      platform-driver-x86@vger.kernel.org
5637 W:      https://01.org/linux-acpi
5638 S:      Supported
5639 F:      drivers/platform/x86/intel_menlow.c
5640
5641 INTEL I/OAT DMA DRIVER
5642 M:      Dave Jiang <dave.jiang@intel.com>
5643 R:      Dan Williams <dan.j.williams@intel.com>
5644 L:      dmaengine@vger.kernel.org
5645 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5646 S:      Supported
5647 F:      drivers/dma/ioat*
5648
5649 INTEL IOMMU (VT-d)
5650 M:      David Woodhouse <dwmw2@infradead.org>
5651 L:      iommu@lists.linux-foundation.org
5652 T:      git git://git.infradead.org/iommu-2.6.git
5653 S:      Supported
5654 F:      drivers/iommu/intel-iommu.c
5655 F:      include/linux/intel-iommu.h
5656
5657 INTEL IOP-ADMA DMA DRIVER
5658 R:      Dan Williams <dan.j.williams@intel.com>
5659 S:      Odd fixes
5660 F:      drivers/dma/iop-adma.c
5661
5662 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
5663 M:      Krzysztof Halasa <khalasa@piap.pl>
5664 S:      Maintained
5665 F:      arch/arm/mach-ixp4xx/include/mach/qmgr.h
5666 F:      arch/arm/mach-ixp4xx/include/mach/npe.h
5667 F:      arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
5668 F:      arch/arm/mach-ixp4xx/ixp4xx_npe.c
5669 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
5670 F:      drivers/net/wan/ixp4xx_hss.c
5671
5672 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
5673 M:      Deepak Saxena <dsaxena@plexity.net>
5674 S:      Maintained
5675 F:      drivers/char/hw_random/ixp4xx-rng.c
5676
5677 INTEL ETHERNET DRIVERS
5678 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
5679 R:      Jesse Brandeburg <jesse.brandeburg@intel.com>
5680 R:      Shannon Nelson <shannon.nelson@intel.com>
5681 R:      Carolyn Wyborny <carolyn.wyborny@intel.com>
5682 R:      Don Skidmore <donald.c.skidmore@intel.com>
5683 R:      Bruce Allan <bruce.w.allan@intel.com>
5684 R:      John Ronciak <john.ronciak@intel.com>
5685 R:      Mitch Williams <mitch.a.williams@intel.com>
5686 L:      intel-wired-lan@lists.osuosl.org
5687 W:      http://www.intel.com/support/feedback.htm
5688 W:      http://e1000.sourceforge.net/
5689 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
5690 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
5691 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
5692 S:      Supported
5693 F:      Documentation/networking/e100.txt
5694 F:      Documentation/networking/e1000.txt
5695 F:      Documentation/networking/e1000e.txt
5696 F:      Documentation/networking/igb.txt
5697 F:      Documentation/networking/igbvf.txt
5698 F:      Documentation/networking/ixgb.txt
5699 F:      Documentation/networking/ixgbe.txt
5700 F:      Documentation/networking/ixgbevf.txt
5701 F:      Documentation/networking/i40e.txt
5702 F:      Documentation/networking/i40evf.txt
5703 F:      drivers/net/ethernet/intel/
5704 F:      drivers/net/ethernet/intel/*/
5705
5706 INTEL-MID GPIO DRIVER
5707 M:      David Cohen <david.a.cohen@linux.intel.com>
5708 L:      linux-gpio@vger.kernel.org
5709 S:      Maintained
5710 F:      drivers/gpio/gpio-intel-mid.c
5711
5712 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
5713 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
5714 L:      linux-wireless@vger.kernel.org
5715 S:      Maintained
5716 F:      Documentation/networking/README.ipw2100
5717 F:      Documentation/networking/README.ipw2200
5718 F:      drivers/net/wireless/intel/ipw2x00/
5719
5720 INTEL(R) TRACE HUB
5721 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
5722 S:      Supported
5723 F:      Documentation/trace/intel_th.txt
5724 F:      drivers/hwtracing/intel_th/
5725
5726 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
5727 M:      Ning Sun <ning.sun@intel.com>
5728 L:      tboot-devel@lists.sourceforge.net
5729 W:      http://tboot.sourceforge.net
5730 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
5731 S:      Supported
5732 F:      Documentation/intel_txt.txt
5733 F:      include/linux/tboot.h
5734 F:      arch/x86/kernel/tboot.c
5735
5736 INTEL WIRELESS WIMAX CONNECTION 2400
5737 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
5738 M:      linux-wimax@intel.com
5739 L:      wimax@linuxwimax.org (subscribers-only)
5740 S:      Supported
5741 W:      http://linuxwimax.org
5742 F:      Documentation/wimax/README.i2400m
5743 F:      drivers/net/wimax/i2400m/
5744 F:      include/uapi/linux/wimax/i2400m.h
5745
5746 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
5747 M:      Stanislaw Gruszka <sgruszka@redhat.com>
5748 L:      linux-wireless@vger.kernel.org
5749 S:      Supported
5750 F:      drivers/net/wireless/intel/iwlegacy/
5751
5752 INTEL WIRELESS WIFI LINK (iwlwifi)
5753 M:      Johannes Berg <johannes.berg@intel.com>
5754 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
5755 M:      Intel Linux Wireless <linuxwifi@intel.com>
5756 L:      linux-wireless@vger.kernel.org
5757 W:      http://intellinuxwireless.org
5758 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
5759 S:      Supported
5760 F:      drivers/net/wireless/intel/iwlwifi/
5761
5762 INTEL MANAGEMENT ENGINE (mei)
5763 M:      Tomas Winkler <tomas.winkler@intel.com>
5764 L:      linux-kernel@vger.kernel.org
5765 S:      Supported
5766 F:      include/uapi/linux/mei.h
5767 F:      include/linux/mei_cl_bus.h
5768 F:      drivers/misc/mei/*
5769 F:      drivers/watchdog/mei_wdt.c
5770 F:      Documentation/misc-devices/mei/*
5771
5772 INTEL MIC DRIVERS (mic)
5773 M:      Sudeep Dutt <sudeep.dutt@intel.com>
5774 M:      Ashutosh Dixit <ashutosh.dixit@intel.com>
5775 S:      Supported
5776 W:      https://github.com/sudeepdutt/mic
5777 W:      http://software.intel.com/en-us/mic-developer
5778 F:      include/linux/mic_bus.h
5779 F:      include/linux/scif.h
5780 F:      include/uapi/linux/mic_common.h
5781 F:      include/uapi/linux/mic_ioctl.h
5782 F:      include/uapi/linux/scif_ioctl.h
5783 F:      drivers/misc/mic/
5784 F:      drivers/dma/mic_x100_dma.c
5785 F:      drivers/dma/mic_x100_dma.h
5786 F:      Documentation/mic/
5787
5788 INTEL PMC/P-Unit IPC DRIVER
5789 M:      Zha Qipeng<qipeng.zha@intel.com>
5790 L:      platform-driver-x86@vger.kernel.org
5791 S:      Maintained
5792 F:      drivers/platform/x86/intel_pmc_ipc.c
5793 F:      drivers/platform/x86/intel_punit_ipc.c
5794 F:      arch/x86/include/asm/intel_pmc_ipc.h
5795 F:      arch/x86/include/asm/intel_punit_ipc.h
5796
5797 INTEL TELEMETRY DRIVER
5798 M:      Souvik Kumar Chakravarty <souvik.k.chakravarty@intel.com>
5799 L:      platform-driver-x86@vger.kernel.org
5800 S:      Maintained
5801 F:      arch/x86/include/asm/intel_telemetry.h
5802 F:      drivers/platform/x86/intel_telemetry*
5803
5804 IOC3 ETHERNET DRIVER
5805 M:      Ralf Baechle <ralf@linux-mips.org>
5806 L:      linux-mips@linux-mips.org
5807 S:      Maintained
5808 F:      drivers/net/ethernet/sgi/ioc3-eth.c
5809
5810 IOC3 SERIAL DRIVER
5811 M:      Pat Gefre <pfg@sgi.com>
5812 L:      linux-serial@vger.kernel.org
5813 S:      Maintained
5814 F:      drivers/tty/serial/ioc3_serial.c
5815
5816 IOMMU DRIVERS
5817 M:      Joerg Roedel <joro@8bytes.org>
5818 L:      iommu@lists.linux-foundation.org
5819 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
5820 S:      Maintained
5821 F:      drivers/iommu/
5822
5823 IP MASQUERADING
5824 M:      Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
5825 S:      Maintained
5826 F:      net/ipv4/netfilter/ipt_MASQUERADE.c
5827
5828 IPMI SUBSYSTEM
5829 M:      Corey Minyard <minyard@acm.org>
5830 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
5831 W:      http://openipmi.sourceforge.net/
5832 S:      Supported
5833 F:      Documentation/IPMI.txt
5834 F:      drivers/char/ipmi/
5835 F:      include/linux/ipmi*
5836 F:      include/uapi/linux/ipmi*
5837
5838 QCOM AUDIO (ASoC) DRIVERS
5839 M:      Patrick Lai <plai@codeaurora.org>
5840 M:      Banajit Goswami <bgoswami@codeaurora.org>
5841 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5842 S:      Supported
5843 F:      sound/soc/qcom/
5844
5845 IPS SCSI RAID DRIVER
5846 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
5847 L:      linux-scsi@vger.kernel.org
5848 W:      http://www.adaptec.com/
5849 S:      Maintained
5850 F:      drivers/scsi/ips*
5851
5852 IPVS
5853 M:      Wensong Zhang <wensong@linux-vs.org>
5854 M:      Simon Horman <horms@verge.net.au>
5855 M:      Julian Anastasov <ja@ssi.bg>
5856 L:      netdev@vger.kernel.org
5857 L:      lvs-devel@vger.kernel.org
5858 S:      Maintained
5859 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
5860 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
5861 F:      Documentation/networking/ipvs-sysctl.txt
5862 F:      include/net/ip_vs.h
5863 F:      include/uapi/linux/ip_vs.h
5864 F:      net/netfilter/ipvs/
5865
5866 IPWIRELESS DRIVER
5867 M:      Jiri Kosina <jikos@kernel.org>
5868 M:      David Sterba <dsterba@suse.com>
5869 S:      Odd Fixes
5870 F:      drivers/tty/ipwireless/
5871
5872 IPX NETWORK LAYER
5873 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
5874 L:      netdev@vger.kernel.org
5875 S:      Maintained
5876 F:      include/net/ipx.h
5877 F:      include/uapi/linux/ipx.h
5878 F:      net/ipx/
5879
5880 IRDA SUBSYSTEM
5881 M:      Samuel Ortiz <samuel@sortiz.org>
5882 L:      irda-users@lists.sourceforge.net (subscribers-only)
5883 L:      netdev@vger.kernel.org
5884 W:      http://irda.sourceforge.net/
5885 S:      Maintained
5886 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
5887 F:      Documentation/networking/irda.txt
5888 F:      drivers/net/irda/
5889 F:      include/net/irda/
5890 F:      net/irda/
5891
5892 IRQ SUBSYSTEM
5893 M:      Thomas Gleixner <tglx@linutronix.de>
5894 L:      linux-kernel@vger.kernel.org
5895 S:      Maintained
5896 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5897 F:      kernel/irq/
5898
5899 IRQCHIP DRIVERS
5900 M:      Thomas Gleixner <tglx@linutronix.de>
5901 M:      Jason Cooper <jason@lakedaemon.net>
5902 M:      Marc Zyngier <marc.zyngier@arm.com>
5903 L:      linux-kernel@vger.kernel.org
5904 S:      Maintained
5905 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5906 T:      git git://git.infradead.org/users/jcooper/linux.git irqchip/core
5907 F:      Documentation/devicetree/bindings/interrupt-controller/
5908 F:      drivers/irqchip/
5909
5910 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
5911 M:      Jiang Liu <jiang.liu@linux.intel.com>
5912 M:      Marc Zyngier <marc.zyngier@arm.com>
5913 S:      Maintained
5914 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5915 F:      Documentation/IRQ-domain.txt
5916 F:      include/linux/irqdomain.h
5917 F:      kernel/irq/irqdomain.c
5918 F:      kernel/irq/msi.c
5919
5920 ISAPNP
5921 M:      Jaroslav Kysela <perex@perex.cz>
5922 S:      Maintained
5923 F:      Documentation/isapnp.txt
5924 F:      drivers/pnp/isapnp/
5925 F:      include/linux/isapnp.h
5926
5927 ISA RADIO MODULE
5928 M:      Hans Verkuil <hverkuil@xs4all.nl>
5929 L:      linux-media@vger.kernel.org
5930 T:      git git://linuxtv.org/media_tree.git
5931 W:      https://linuxtv.org
5932 S:      Maintained
5933 F:      drivers/media/radio/radio-isa*
5934
5935 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
5936 M:      Peter Jones <pjones@redhat.com>
5937 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
5938 S:      Maintained
5939 F:      drivers/firmware/iscsi_ibft*
5940
5941 ISCSI
5942 M:      Mike Christie <michaelc@cs.wisc.edu>
5943 L:      open-iscsi@googlegroups.com
5944 W:      www.open-iscsi.org
5945 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
5946 S:      Maintained
5947 F:      drivers/scsi/*iscsi*
5948 F:      include/scsi/*iscsi*
5949
5950 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
5951 M:      Or Gerlitz <ogerlitz@mellanox.com>
5952 M:      Sagi Grimberg <sagig@mellanox.com>
5953 M:      Roi Dayan <roid@mellanox.com>
5954 L:      linux-rdma@vger.kernel.org
5955 S:      Supported
5956 W:      http://www.openfabrics.org
5957 W:      www.open-iscsi.org
5958 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5959 F:      drivers/infiniband/ulp/iser/
5960
5961 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
5962 M:      Sagi Grimberg <sagig@mellanox.com>
5963 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
5964 L:      linux-rdma@vger.kernel.org
5965 L:      target-devel@vger.kernel.org
5966 S:      Supported
5967 W:      http://www.linux-iscsi.org
5968 F:      drivers/infiniband/ulp/isert
5969
5970 ISDN SUBSYSTEM
5971 M:      Karsten Keil <isdn@linux-pingi.de>
5972 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5973 L:      netdev@vger.kernel.org
5974 W:      http://www.isdn4linux.de
5975 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
5976 S:      Maintained
5977 F:      Documentation/isdn/
5978 F:      drivers/isdn/
5979 F:      include/linux/isdn.h
5980 F:      include/linux/isdn/
5981 F:      include/uapi/linux/isdn.h
5982 F:      include/uapi/linux/isdn/
5983
5984 ISDN SUBSYSTEM (Eicon active card driver)
5985 M:      Armin Schindler <mac@melware.de>
5986 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5987 W:      http://www.melware.de
5988 S:      Maintained
5989 F:      drivers/isdn/hardware/eicon/
5990
5991 IT87 HARDWARE MONITORING DRIVER
5992 M:      Jean Delvare <jdelvare@suse.com>
5993 L:      lm-sensors@lm-sensors.org
5994 S:      Maintained
5995 F:      Documentation/hwmon/it87
5996 F:      drivers/hwmon/it87.c
5997
5998 IT913X MEDIA DRIVER
5999 M:      Antti Palosaari <crope@iki.fi>
6000 L:      linux-media@vger.kernel.org
6001 W:      https://linuxtv.org
6002 W:      http://palosaari.fi/linux/
6003 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6004 T:      git git://linuxtv.org/anttip/media_tree.git
6005 S:      Maintained
6006 F:      drivers/media/tuners/it913x*
6007
6008 IVTV VIDEO4LINUX DRIVER
6009 M:      Andy Walls <awalls@md.metrocast.net>
6010 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
6011 L:      linux-media@vger.kernel.org
6012 T:      git git://linuxtv.org/media_tree.git
6013 W:      http://www.ivtvdriver.org
6014 S:      Maintained
6015 F:      Documentation/video4linux/*.ivtv
6016 F:      drivers/media/pci/ivtv/
6017 F:      include/uapi/linux/ivtv*
6018
6019 IX2505V MEDIA DRIVER
6020 M:      Malcolm Priestley <tvboxspy@gmail.com>
6021 L:      linux-media@vger.kernel.org
6022 W:      https://linuxtv.org
6023 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6024 S:      Maintained
6025 F:      drivers/media/dvb-frontends/ix2505v*
6026
6027 JC42.4 TEMPERATURE SENSOR DRIVER
6028 M:      Guenter Roeck <linux@roeck-us.net>
6029 L:      lm-sensors@lm-sensors.org
6030 S:      Maintained
6031 F:      drivers/hwmon/jc42.c
6032 F:      Documentation/hwmon/jc42
6033
6034 JFS FILESYSTEM
6035 M:      Dave Kleikamp <shaggy@kernel.org>
6036 L:      jfs-discussion@lists.sourceforge.net
6037 W:      http://jfs.sourceforge.net/
6038 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
6039 S:      Maintained
6040 F:      Documentation/filesystems/jfs.txt
6041 F:      fs/jfs/
6042
6043 JME NETWORK DRIVER
6044 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
6045 L:      netdev@vger.kernel.org
6046 S:      Maintained
6047 F:      drivers/net/ethernet/jme.*
6048
6049 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
6050 M:      David Woodhouse <dwmw2@infradead.org>
6051 L:      linux-mtd@lists.infradead.org
6052 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
6053 S:      Maintained
6054 F:      fs/jffs2/
6055 F:      include/uapi/linux/jffs2.h
6056
6057 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
6058 M:      "Theodore Ts'o" <tytso@mit.edu>
6059 M:      Jan Kara <jack@suse.com>
6060 L:      linux-ext4@vger.kernel.org
6061 S:      Maintained
6062 F:      fs/jbd2/
6063 F:      include/linux/jbd2.h
6064
6065 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
6066 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
6067 L:      linux-media@vger.kernel.org
6068 S:      Maintained
6069 F:      drivers/media/platform/rcar_jpu.c
6070
6071 JSM Neo PCI based serial card
6072 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
6073 L:      linux-serial@vger.kernel.org
6074 S:      Maintained
6075 F:      drivers/tty/serial/jsm/
6076
6077 K10TEMP HARDWARE MONITORING DRIVER
6078 M:      Clemens Ladisch <clemens@ladisch.de>
6079 L:      lm-sensors@lm-sensors.org
6080 S:      Maintained
6081 F:      Documentation/hwmon/k10temp
6082 F:      drivers/hwmon/k10temp.c
6083
6084 K8TEMP HARDWARE MONITORING DRIVER
6085 M:      Rudolf Marek <r.marek@assembler.cz>
6086 L:      lm-sensors@lm-sensors.org
6087 S:      Maintained
6088 F:      Documentation/hwmon/k8temp
6089 F:      drivers/hwmon/k8temp.c
6090
6091 KCONFIG
6092 M:      "Yann E. MORIN" <yann.morin.1998@free.fr>
6093 L:      linux-kbuild@vger.kernel.org
6094 T:      git git://gitorious.org/linux-kconfig/linux-kconfig
6095 S:      Maintained
6096 F:      Documentation/kbuild/kconfig-language.txt
6097 F:      scripts/kconfig/
6098
6099 KDUMP
6100 M:      Vivek Goyal <vgoyal@redhat.com>
6101 M:      Haren Myneni <hbabu@us.ibm.com>
6102 L:      kexec@lists.infradead.org
6103 W:      http://lse.sourceforge.net/kdump/
6104 S:      Maintained
6105 F:      Documentation/kdump/
6106
6107 KEENE FM RADIO TRANSMITTER DRIVER
6108 M:      Hans Verkuil <hverkuil@xs4all.nl>
6109 L:      linux-media@vger.kernel.org
6110 T:      git git://linuxtv.org/media_tree.git
6111 W:      https://linuxtv.org
6112 S:      Maintained
6113 F:      drivers/media/radio/radio-keene*
6114
6115 KERNEL AUTOMOUNTER v4 (AUTOFS4)
6116 M:      Ian Kent <raven@themaw.net>
6117 L:      autofs@vger.kernel.org
6118 S:      Maintained
6119 F:      fs/autofs4/
6120
6121 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
6122 M:      Michal Marek <mmarek@suse.com>
6123 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
6124 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
6125 L:      linux-kbuild@vger.kernel.org
6126 S:      Maintained
6127 F:      Documentation/kbuild/
6128 F:      Makefile
6129 F:      scripts/Makefile.*
6130 F:      scripts/basic/
6131 F:      scripts/mk*
6132 F:      scripts/package/
6133
6134 KERNEL JANITORS
6135 L:      kernel-janitors@vger.kernel.org
6136 W:      http://kernelnewbies.org/KernelJanitors
6137 S:      Odd Fixes
6138
6139 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
6140 M:      "J. Bruce Fields" <bfields@fieldses.org>
6141 M:      Jeff Layton <jlayton@poochiereds.net>
6142 L:      linux-nfs@vger.kernel.org
6143 W:      http://nfs.sourceforge.net/
6144 T:      git git://linux-nfs.org/~bfields/linux.git
6145 S:      Supported
6146 F:      fs/nfsd/
6147 F:      include/uapi/linux/nfsd/
6148 F:      fs/lockd/
6149 F:      fs/nfs_common/
6150 F:      net/sunrpc/
6151 F:      include/linux/lockd/
6152 F:      include/linux/sunrpc/
6153 F:      include/uapi/linux/sunrpc/
6154
6155 KERNEL SELFTEST FRAMEWORK
6156 M:      Shuah Khan <shuahkh@osg.samsung.com>
6157 L:      linux-api@vger.kernel.org
6158 T:      git git://git.kernel.org/pub/scm/shuah/linux-kselftest
6159 S:      Maintained
6160 F:      tools/testing/selftests
6161
6162 KERNEL VIRTUAL MACHINE (KVM)
6163 M:      Gleb Natapov <gleb@kernel.org>
6164 M:      Paolo Bonzini <pbonzini@redhat.com>
6165 L:      kvm@vger.kernel.org
6166 W:      http://www.linux-kvm.org
6167 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
6168 S:      Supported
6169 F:      Documentation/*/kvm*.txt
6170 F:      Documentation/virtual/kvm/
6171 F:      arch/*/kvm/
6172 F:      arch/x86/kernel/kvm.c
6173 F:      arch/x86/kernel/kvmclock.c
6174 F:      arch/*/include/asm/kvm*
6175 F:      include/linux/kvm*
6176 F:      include/uapi/linux/kvm*
6177 F:      virt/kvm/
6178
6179 KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
6180 M:      Joerg Roedel <joro@8bytes.org>
6181 L:      kvm@vger.kernel.org
6182 W:      http://www.linux-kvm.org/
6183 S:      Maintained
6184 F:      arch/x86/include/asm/svm.h
6185 F:      arch/x86/kvm/svm.c
6186
6187 KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
6188 M:      Alexander Graf <agraf@suse.com>
6189 L:      kvm-ppc@vger.kernel.org
6190 W:      http://www.linux-kvm.org/
6191 T:      git git://github.com/agraf/linux-2.6.git
6192 S:      Supported
6193 F:      arch/powerpc/include/asm/kvm*
6194 F:      arch/powerpc/kvm/
6195
6196 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
6197 M:      Christian Borntraeger <borntraeger@de.ibm.com>
6198 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
6199 L:      linux-s390@vger.kernel.org
6200 W:      http://www.ibm.com/developerworks/linux/linux390/
6201 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
6202 S:      Supported
6203 F:      Documentation/s390/kvm.txt
6204 F:      arch/s390/include/asm/kvm*
6205 F:      arch/s390/kvm/
6206
6207 KERNEL VIRTUAL MACHINE (KVM) FOR ARM
6208 M:      Christoffer Dall <christoffer.dall@linaro.org>
6209 M:      Marc Zyngier <marc.zyngier@arm.com>
6210 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6211 L:      kvmarm@lists.cs.columbia.edu
6212 W:      http://systems.cs.columbia.edu/projects/kvm-arm
6213 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
6214 S:      Supported
6215 F:      arch/arm/include/uapi/asm/kvm*
6216 F:      arch/arm/include/asm/kvm*
6217 F:      arch/arm/kvm/
6218 F:      virt/kvm/arm/
6219 F:      include/kvm/arm_*
6220
6221 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
6222 M:      Christoffer Dall <christoffer.dall@linaro.org>
6223 M:      Marc Zyngier <marc.zyngier@arm.com>
6224 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6225 L:      kvmarm@lists.cs.columbia.edu
6226 S:      Maintained
6227 F:      arch/arm64/include/uapi/asm/kvm*
6228 F:      arch/arm64/include/asm/kvm*
6229 F:      arch/arm64/kvm/
6230
6231 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
6232 M:      James Hogan <james.hogan@imgtec.com>
6233 L:      linux-mips@linux-mips.org
6234 S:      Supported
6235 F:      arch/mips/include/uapi/asm/kvm*
6236 F:      arch/mips/include/asm/kvm*
6237 F:      arch/mips/kvm/
6238
6239 KEXEC
6240 M:      Eric Biederman <ebiederm@xmission.com>
6241 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
6242 L:      kexec@lists.infradead.org
6243 S:      Maintained
6244 F:      include/linux/kexec.h
6245 F:      include/uapi/linux/kexec.h
6246 F:      kernel/kexec.c
6247
6248 KEYS/KEYRINGS:
6249 M:      David Howells <dhowells@redhat.com>
6250 L:      keyrings@vger.kernel.org
6251 S:      Maintained
6252 F:      Documentation/security/keys.txt
6253 F:      include/linux/key.h
6254 F:      include/linux/key-type.h
6255 F:      include/keys/
6256 F:      security/keys/
6257
6258 KEYS-TRUSTED
6259 M:      David Safford <safford@us.ibm.com>
6260 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6261 L:      linux-security-module@vger.kernel.org
6262 L:      keyrings@vger.kernel.org
6263 S:      Supported
6264 F:      Documentation/security/keys-trusted-encrypted.txt
6265 F:      include/keys/trusted-type.h
6266 F:      security/keys/trusted.c
6267 F:      security/keys/trusted.h
6268
6269 KEYS-ENCRYPTED
6270 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6271 M:      David Safford <safford@us.ibm.com>
6272 L:      linux-security-module@vger.kernel.org
6273 L:      keyrings@vger.kernel.org
6274 S:      Supported
6275 F:      Documentation/security/keys-trusted-encrypted.txt
6276 F:      include/keys/encrypted-type.h
6277 F:      security/keys/encrypted-keys/
6278
6279 KGDB / KDB /debug_core
6280 M:      Jason Wessel <jason.wessel@windriver.com>
6281 W:      http://kgdb.wiki.kernel.org/
6282 L:      kgdb-bugreport@lists.sourceforge.net
6283 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
6284 S:      Maintained
6285 F:      Documentation/DocBook/kgdb.tmpl
6286 F:      drivers/misc/kgdbts.c
6287 F:      drivers/tty/serial/kgdboc.c
6288 F:      include/linux/kdb.h
6289 F:      include/linux/kgdb.h
6290 F:      kernel/debug/
6291
6292 KMEMCHECK
6293 M:      Vegard Nossum <vegardno@ifi.uio.no>
6294 M:      Pekka Enberg <penberg@kernel.org>
6295 S:      Maintained
6296 F:      Documentation/kmemcheck.txt
6297 F:      arch/x86/include/asm/kmemcheck.h
6298 F:      arch/x86/mm/kmemcheck/
6299 F:      include/linux/kmemcheck.h
6300 F:      mm/kmemcheck.c
6301
6302 KMEMLEAK
6303 M:      Catalin Marinas <catalin.marinas@arm.com>
6304 S:      Maintained
6305 F:      Documentation/kmemleak.txt
6306 F:      include/linux/kmemleak.h
6307 F:      mm/kmemleak.c
6308 F:      mm/kmemleak-test.c
6309
6310 KPROBES
6311 M:      Ananth N Mavinakayanahalli <ananth@in.ibm.com>
6312 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
6313 M:      "David S. Miller" <davem@davemloft.net>
6314 M:      Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
6315 S:      Maintained
6316 F:      Documentation/kprobes.txt
6317 F:      include/linux/kprobes.h
6318 F:      kernel/kprobes.c
6319
6320 KS0108 LCD CONTROLLER DRIVER
6321 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
6322 W:      http://miguelojeda.es/auxdisplay.htm
6323 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
6324 S:      Maintained
6325 F:      Documentation/auxdisplay/ks0108
6326 F:      drivers/auxdisplay/ks0108.c
6327 F:      include/linux/ks0108.h
6328
6329 L3MDEV
6330 M:      David Ahern <dsa@cumulusnetworks.com>
6331 L:      netdev@vger.kernel.org
6332 S:      Maintained
6333 F:      net/l3mdev
6334 F:      include/net/l3mdev.h
6335
6336 LANTIQ MIPS ARCHITECTURE
6337 M:      John Crispin <blogic@openwrt.org>
6338 L:      linux-mips@linux-mips.org
6339 S:      Maintained
6340 F:      arch/mips/lantiq
6341
6342 LAPB module
6343 L:      linux-x25@vger.kernel.org
6344 S:      Orphan
6345 F:      Documentation/networking/lapb-module.txt
6346 F:      include/*/lapb.h
6347 F:      net/lapb/
6348
6349 LASI 53c700 driver for PARISC
6350 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
6351 L:      linux-scsi@vger.kernel.org
6352 S:      Maintained
6353 F:      Documentation/scsi/53c700.txt
6354 F:      drivers/scsi/53c700*
6355
6356 LED SUBSYSTEM
6357 M:      Richard Purdie <rpurdie@rpsys.net>
6358 M:      Jacek Anaszewski <j.anaszewski@samsung.com>
6359 L:      linux-leds@vger.kernel.org
6360 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
6361 S:      Maintained
6362 F:      drivers/leds/
6363 F:      include/linux/leds.h
6364
6365 LEGACY EEPROM DRIVER
6366 M:      Jean Delvare <jdelvare@suse.com>
6367 S:      Maintained
6368 F:      Documentation/misc-devices/eeprom
6369 F:      drivers/misc/eeprom/eeprom.c
6370
6371 LEGO USB Tower driver
6372 M:      Juergen Stuber <starblue@users.sourceforge.net>
6373 L:      legousb-devel@lists.sourceforge.net
6374 W:      http://legousb.sourceforge.net/
6375 S:      Maintained
6376 F:      drivers/usb/misc/legousbtower.c
6377
6378 LG2160 MEDIA DRIVER
6379 M:      Michael Krufky <mkrufky@linuxtv.org>
6380 L:      linux-media@vger.kernel.org
6381 W:      https://linuxtv.org
6382 W:      http://github.com/mkrufky
6383 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6384 T:      git git://linuxtv.org/mkrufky/tuners.git
6385 S:      Maintained
6386 F:      drivers/media/dvb-frontends/lg2160.*
6387
6388 LGDT3305 MEDIA DRIVER
6389 M:      Michael Krufky <mkrufky@linuxtv.org>
6390 L:      linux-media@vger.kernel.org
6391 W:      https://linuxtv.org
6392 W:      http://github.com/mkrufky
6393 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6394 T:      git git://linuxtv.org/mkrufky/tuners.git
6395 S:      Maintained
6396 F:      drivers/media/dvb-frontends/lgdt3305.*
6397
6398 LGUEST
6399 M:      Rusty Russell <rusty@rustcorp.com.au>
6400 L:      lguest@lists.ozlabs.org
6401 W:      http://lguest.ozlabs.org/
6402 S:      Odd Fixes
6403 F:      arch/x86/include/asm/lguest*.h
6404 F:      arch/x86/lguest/
6405 F:      drivers/lguest/
6406 F:      include/linux/lguest*.h
6407 F:      tools/lguest/
6408
6409 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
6410 M:      Tejun Heo <tj@kernel.org>
6411 L:      linux-ide@vger.kernel.org
6412 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6413 S:      Maintained
6414 F:      drivers/ata/
6415 F:      include/linux/ata.h
6416 F:      include/linux/libata.h
6417
6418 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
6419 M:      Viresh Kumar <vireshk@kernel.org>
6420 L:      linux-ide@vger.kernel.org
6421 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6422 S:      Maintained
6423 F:      include/linux/pata_arasan_cf_data.h
6424 F:      drivers/ata/pata_arasan_cf.c
6425
6426 LIBATA PATA DRIVERS
6427 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6428 M:      Tejun Heo <tj@kernel.org>
6429 L:      linux-ide@vger.kernel.org
6430 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6431 S:      Maintained
6432 F:      drivers/ata/pata_*.c
6433 F:      drivers/ata/ata_generic.c
6434
6435 LIBATA SATA AHCI PLATFORM devices support
6436 M:      Hans de Goede <hdegoede@redhat.com>
6437 M:      Tejun Heo <tj@kernel.org>
6438 L:      linux-ide@vger.kernel.org
6439 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6440 S:      Maintained
6441 F:      drivers/ata/ahci_platform.c
6442 F:      drivers/ata/libahci_platform.c
6443 F:      include/linux/ahci_platform.h
6444
6445 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
6446 M:      Mikael Pettersson <mikpelinux@gmail.com>
6447 L:      linux-ide@vger.kernel.org
6448 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6449 S:      Maintained
6450 F:      drivers/ata/sata_promise.*
6451
6452 LIBLOCKDEP
6453 M:      Sasha Levin <sasha.levin@oracle.com>
6454 S:      Maintained
6455 F:      tools/lib/lockdep/
6456
6457 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
6458 M:      Dan Williams <dan.j.williams@intel.com>
6459 L:      linux-nvdimm@lists.01.org
6460 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6461 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
6462 S:      Supported
6463 F:      drivers/nvdimm/*
6464 F:      include/linux/nd.h
6465 F:      include/linux/libnvdimm.h
6466 F:      include/uapi/linux/ndctl.h
6467
6468 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
6469 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6470 L:      linux-nvdimm@lists.01.org
6471 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6472 S:      Supported
6473 F:      drivers/nvdimm/blk.c
6474 F:      drivers/nvdimm/region_devs.c
6475 F:      drivers/acpi/nfit*
6476
6477 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
6478 M:      Vishal Verma <vishal.l.verma@intel.com>
6479 L:      linux-nvdimm@lists.01.org
6480 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6481 S:      Supported
6482 F:      drivers/nvdimm/btt*
6483
6484 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
6485 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6486 L:      linux-nvdimm@lists.01.org
6487 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6488 S:      Supported
6489 F:      drivers/nvdimm/pmem.c
6490 F:      include/linux/pmem.h
6491 F:      arch/*/include/asm/pmem.h
6492
6493 LIGHTNVM PLATFORM SUPPORT
6494 M:      Matias Bjorling <mb@lightnvm.io>
6495 W:      http://github/OpenChannelSSD
6496 L:      linux-block@vger.kernel.org
6497 S:      Maintained
6498 F:      drivers/lightnvm/
6499 F:      include/linux/lightnvm.h
6500 F:      include/uapi/linux/lightnvm.h
6501
6502 LINUX FOR IBM pSERIES (RS/6000)
6503 M:      Paul Mackerras <paulus@au.ibm.com>
6504 W:      http://www.ibm.com/linux/ltc/projects/ppc
6505 S:      Supported
6506 F:      arch/powerpc/boot/rs6000.h
6507
6508 LINUX FOR POWERPC (32-BIT AND 64-BIT)
6509 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6510 M:      Paul Mackerras <paulus@samba.org>
6511 M:      Michael Ellerman <mpe@ellerman.id.au>
6512 W:      http://www.penguinppc.org/
6513 L:      linuxppc-dev@lists.ozlabs.org
6514 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
6515 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
6516 S:      Supported
6517 F:      Documentation/powerpc/
6518 F:      arch/powerpc/
6519
6520 LINUX FOR POWER MACINTOSH
6521 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6522 W:      http://www.penguinppc.org/
6523 L:      linuxppc-dev@lists.ozlabs.org
6524 S:      Maintained
6525 F:      arch/powerpc/platforms/powermac/
6526 F:      drivers/macintosh/
6527
6528 LINUX FOR POWERPC EMBEDDED MPC5XXX
6529 M:      Anatolij Gustschin <agust@denx.de>
6530 L:      linuxppc-dev@lists.ozlabs.org
6531 T:      git git://git.denx.de/linux-denx-agust.git
6532 S:      Maintained
6533 F:      arch/powerpc/platforms/512x/
6534 F:      arch/powerpc/platforms/52xx/
6535
6536 LINUX FOR POWERPC EMBEDDED PPC4XX
6537 M:      Alistair Popple <alistair@popple.id.au>
6538 M:      Matt Porter <mporter@kernel.crashing.org>
6539 W:      http://www.penguinppc.org/
6540 L:      linuxppc-dev@lists.ozlabs.org
6541 S:      Maintained
6542 F:      arch/powerpc/platforms/40x/
6543 F:      arch/powerpc/platforms/44x/
6544
6545 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
6546 L:      linuxppc-dev@lists.ozlabs.org
6547 S:      Orphan
6548 F:      arch/powerpc/*/*virtex*
6549 F:      arch/powerpc/*/*/*virtex*
6550
6551 LINUX FOR POWERPC EMBEDDED PPC8XX
6552 M:      Vitaly Bordug <vitb@kernel.crashing.org>
6553 W:      http://www.penguinppc.org/
6554 L:      linuxppc-dev@lists.ozlabs.org
6555 S:      Maintained
6556 F:      arch/powerpc/platforms/8xx/
6557
6558 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
6559 M:      Scott Wood <oss@buserror.net>
6560 M:      Kumar Gala <galak@kernel.crashing.org>
6561 W:      http://www.penguinppc.org/
6562 L:      linuxppc-dev@lists.ozlabs.org
6563 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
6564 S:      Maintained
6565 F:      arch/powerpc/platforms/83xx/
6566 F:      arch/powerpc/platforms/85xx/
6567
6568 LINUX FOR POWERPC PA SEMI PWRFICIENT
6569 M:      Olof Johansson <olof@lixom.net>
6570 L:      linuxppc-dev@lists.ozlabs.org
6571 S:      Maintained
6572 F:      arch/powerpc/platforms/pasemi/
6573 F:      drivers/*/*pasemi*
6574 F:      drivers/*/*/*pasemi*
6575
6576 LINUX SECURITY MODULE (LSM) FRAMEWORK
6577 M:      Chris Wright <chrisw@sous-sol.org>
6578 L:      linux-security-module@vger.kernel.org
6579 S:      Supported
6580
6581 LIS3LV02D ACCELEROMETER DRIVER
6582 M:      Eric Piel <eric.piel@tremplin-utc.net>
6583 S:      Maintained
6584 F:      Documentation/misc-devices/lis3lv02d
6585 F:      drivers/misc/lis3lv02d/
6586 F:      drivers/platform/x86/hp_accel.c
6587
6588 LIVE PATCHING
6589 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6590 M:      Seth Jennings <sjenning@redhat.com>
6591 M:      Jiri Kosina <jikos@kernel.org>
6592 M:      Vojtech Pavlik <vojtech@suse.com>
6593 S:      Maintained
6594 F:      kernel/livepatch/
6595 F:      include/linux/livepatch.h
6596 F:      arch/x86/include/asm/livepatch.h
6597 F:      arch/x86/kernel/livepatch.c
6598 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
6599 F:      samples/livepatch/
6600 L:      live-patching@vger.kernel.org
6601 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
6602
6603 LLC (802.2)
6604 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
6605 S:      Maintained
6606 F:      include/linux/llc.h
6607 F:      include/uapi/linux/llc.h
6608 F:      include/net/llc*
6609 F:      net/llc/
6610
6611 LM73 HARDWARE MONITOR DRIVER
6612 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
6613 L:      lm-sensors@lm-sensors.org
6614 S:      Maintained
6615 F:      drivers/hwmon/lm73.c
6616
6617 LM78 HARDWARE MONITOR DRIVER
6618 M:      Jean Delvare <jdelvare@suse.com>
6619 L:      lm-sensors@lm-sensors.org
6620 S:      Maintained
6621 F:      Documentation/hwmon/lm78
6622 F:      drivers/hwmon/lm78.c
6623
6624 LM83 HARDWARE MONITOR DRIVER
6625 M:      Jean Delvare <jdelvare@suse.com>
6626 L:      lm-sensors@lm-sensors.org
6627 S:      Maintained
6628 F:      Documentation/hwmon/lm83
6629 F:      drivers/hwmon/lm83.c
6630
6631 LM90 HARDWARE MONITOR DRIVER
6632 M:      Jean Delvare <jdelvare@suse.com>
6633 L:      lm-sensors@lm-sensors.org
6634 S:      Maintained
6635 F:      Documentation/hwmon/lm90
6636 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
6637 F:      drivers/hwmon/lm90.c
6638
6639 LM95234 HARDWARE MONITOR DRIVER
6640 M:      Guenter Roeck <linux@roeck-us.net>
6641 L:      lm-sensors@lm-sensors.org
6642 S:      Maintained
6643 F:      Documentation/hwmon/lm95234
6644 F:      drivers/hwmon/lm95234.c
6645
6646 LME2510 MEDIA DRIVER
6647 M:      Malcolm Priestley <tvboxspy@gmail.com>
6648 L:      linux-media@vger.kernel.org
6649 W:      https://linuxtv.org
6650 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6651 S:      Maintained
6652 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
6653
6654 LOCKDEP AND LOCKSTAT
6655 M:      Peter Zijlstra <peterz@infradead.org>
6656 M:      Ingo Molnar <mingo@redhat.com>
6657 L:      linux-kernel@vger.kernel.org
6658 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
6659 S:      Maintained
6660 F:      Documentation/locking/lockdep*.txt
6661 F:      Documentation/locking/lockstat.txt
6662 F:      include/linux/lockdep.h
6663 F:      kernel/locking/
6664
6665 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
6666 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
6667 L:      linux-ntfs-dev@lists.sourceforge.net
6668 W:      http://www.linux-ntfs.org/content/view/19/37/
6669 S:      Maintained
6670 F:      Documentation/ldm.txt
6671 F:      block/partitions/ldm.*
6672
6673 LogFS
6674 M:      Joern Engel <joern@logfs.org>
6675 M:      Prasad Joshi <prasadjoshi.linux@gmail.com>
6676 L:      logfs@logfs.org
6677 W:      logfs.org
6678 S:      Maintained
6679 F:      fs/logfs/
6680
6681 LPC32XX MACHINE SUPPORT
6682 M:      Roland Stigge <stigge@antcom.de>
6683 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6684 S:      Maintained
6685 F:      arch/arm/mach-lpc32xx/
6686
6687 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
6688 M:      Nagalakshmi Nandigama <nagalakshmi.nandigama@avagotech.com>
6689 M:      Praveen Krishnamoorthy <praveen.krishnamoorthy@avagotech.com>
6690 M:      Sreekanth Reddy <sreekanth.reddy@avagotech.com>
6691 M:      Abhijit Mahajan <abhijit.mahajan@avagotech.com>
6692 L:      MPT-FusionLinux.pdl@avagotech.com
6693 L:      linux-scsi@vger.kernel.org
6694 W:      http://www.lsilogic.com/support
6695 S:      Supported
6696 F:      drivers/message/fusion/
6697 F:      drivers/scsi/mpt2sas/
6698 F:      drivers/scsi/mpt3sas/
6699
6700 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
6701 M:      Matthew Wilcox <matthew@wil.cx>
6702 L:      linux-scsi@vger.kernel.org
6703 S:      Maintained
6704 F:      drivers/scsi/sym53c8xx_2/
6705
6706 LTC4261 HARDWARE MONITOR DRIVER
6707 M:      Guenter Roeck <linux@roeck-us.net>
6708 L:      lm-sensors@lm-sensors.org
6709 S:      Maintained
6710 F:      Documentation/hwmon/ltc4261
6711 F:      drivers/hwmon/ltc4261.c
6712
6713 LTP (Linux Test Project)
6714 M:      Mike Frysinger <vapier@gentoo.org>
6715 M:      Cyril Hrubis <chrubis@suse.cz>
6716 M:      Wanlong Gao <wanlong.gao@gmail.com>
6717 M:      Jan Stancek <jstancek@redhat.com>
6718 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
6719 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
6720 L:      ltp@lists.linux.it (subscribers-only)
6721 W:      http://linux-test-project.github.io/
6722 T:      git git://github.com/linux-test-project/ltp.git
6723 S:      Maintained
6724
6725 M32R ARCHITECTURE
6726 W:      http://www.linux-m32r.org/
6727 S:      Orphan
6728 F:      arch/m32r/
6729
6730 M68K ARCHITECTURE
6731 M:      Geert Uytterhoeven <geert@linux-m68k.org>
6732 L:      linux-m68k@lists.linux-m68k.org
6733 W:      http://www.linux-m68k.org/
6734 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
6735 S:      Maintained
6736 F:      arch/m68k/
6737 F:      drivers/zorro/
6738
6739 M68K ON APPLE MACINTOSH
6740 M:      Joshua Thompson <funaho@jurai.org>
6741 W:      http://www.mac.linux-m68k.org/
6742 L:      linux-m68k@lists.linux-m68k.org
6743 S:      Maintained
6744 F:      arch/m68k/mac/
6745
6746 M68K ON HP9000/300
6747 M:      Philip Blundell <philb@gnu.org>
6748 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
6749 S:      Maintained
6750 F:      arch/m68k/hp300/
6751
6752 M88DS3103 MEDIA DRIVER
6753 M:      Antti Palosaari <crope@iki.fi>
6754 L:      linux-media@vger.kernel.org
6755 W:      https://linuxtv.org
6756 W:      http://palosaari.fi/linux/
6757 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6758 T:      git git://linuxtv.org/anttip/media_tree.git
6759 S:      Maintained
6760 F:      drivers/media/dvb-frontends/m88ds3103*
6761
6762 M88RS2000 MEDIA DRIVER
6763 M:      Malcolm Priestley <tvboxspy@gmail.com>
6764 L:      linux-media@vger.kernel.org
6765 W:      https://linuxtv.org
6766 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6767 S:      Maintained
6768 F:      drivers/media/dvb-frontends/m88rs2000*
6769
6770 MA901 MASTERKIT USB FM RADIO DRIVER
6771 M:      Alexey Klimov <klimov.linux@gmail.com>
6772 L:      linux-media@vger.kernel.org
6773 T:      git git://linuxtv.org/media_tree.git
6774 S:      Maintained
6775 F:      drivers/media/radio/radio-ma901.c
6776
6777 MAC80211
6778 M:      Johannes Berg <johannes@sipsolutions.net>
6779 L:      linux-wireless@vger.kernel.org
6780 W:      http://wireless.kernel.org/
6781 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6782 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
6783 S:      Maintained
6784 F:      Documentation/networking/mac80211-injection.txt
6785 F:      include/net/mac80211.h
6786 F:      net/mac80211/
6787
6788 MACVLAN DRIVER
6789 M:      Patrick McHardy <kaber@trash.net>
6790 L:      netdev@vger.kernel.org
6791 S:      Maintained
6792 F:      drivers/net/macvlan.c
6793 F:      include/linux/if_macvlan.h
6794
6795 MAILBOX API
6796 M:      Jassi Brar <jassisinghbrar@gmail.com>
6797 L:      linux-kernel@vger.kernel.org
6798 S:      Maintained
6799 F:      drivers/mailbox/
6800 F:      include/linux/mailbox_client.h
6801 F:      include/linux/mailbox_controller.h
6802
6803 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
6804 M:      Michael Kerrisk <mtk.manpages@gmail.com>
6805 W:      http://www.kernel.org/doc/man-pages
6806 L:      linux-man@vger.kernel.org
6807 S:      Maintained
6808
6809 MARVELL ARMADA DRM SUPPORT
6810 M:      Russell King <rmk+kernel@arm.linux.org.uk>
6811 S:      Maintained
6812 F:      drivers/gpu/drm/armada/
6813
6814 MARVELL 88E6352 DSA support
6815 M:      Guenter Roeck <linux@roeck-us.net>
6816 S:      Maintained
6817 F:      drivers/net/dsa/mv88e6352.c
6818
6819 MARVELL CRYPTO DRIVER
6820 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
6821 M:      Arnaud Ebalard <arno@natisbad.org>
6822 F:      drivers/crypto/marvell/
6823 S:      Maintained
6824 L:      linux-crypto@vger.kernel.org
6825
6826 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
6827 M:      Mirko Lindner <mlindner@marvell.com>
6828 M:      Stephen Hemminger <stephen@networkplumber.org>
6829 L:      netdev@vger.kernel.org
6830 S:      Maintained
6831 F:      drivers/net/ethernet/marvell/sk*
6832
6833 MARVELL LIBERTAS WIRELESS DRIVER
6834 L:      libertas-dev@lists.infradead.org
6835 S:      Orphan
6836 F:      drivers/net/wireless/marvell/libertas/
6837
6838 MARVELL MV643XX ETHERNET DRIVER
6839 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
6840 L:      netdev@vger.kernel.org
6841 S:      Maintained
6842 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
6843 F:      include/linux/mv643xx.h
6844
6845 MARVELL MVNETA ETHERNET DRIVER
6846 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
6847 L:      netdev@vger.kernel.org
6848 S:      Maintained
6849 F:      drivers/net/ethernet/marvell/mvneta.*
6850
6851 MARVELL MWIFIEX WIRELESS DRIVER
6852 M:      Amitkumar Karwar <akarwar@marvell.com>
6853 M:      Nishant Sarmukadam <nishants@marvell.com>
6854 L:      linux-wireless@vger.kernel.org
6855 S:      Maintained
6856 F:      drivers/net/wireless/marvell/mwifiex/
6857
6858 MARVELL MWL8K WIRELESS DRIVER
6859 M:      Lennert Buytenhek <buytenh@wantstofly.org>
6860 L:      linux-wireless@vger.kernel.org
6861 S:      Odd Fixes
6862 F:      drivers/net/wireless/marvell/mwl8k.c
6863
6864 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
6865 M:      Nicolas Pitre <nico@fluxnic.net>
6866 S:      Odd Fixes
6867 F:      drivers/mmc/host/mvsdio.*
6868
6869 MATROX FRAMEBUFFER DRIVER
6870 L:      linux-fbdev@vger.kernel.org
6871 S:      Orphan
6872 F:      drivers/video/fbdev/matrox/matroxfb_*
6873 F:      include/uapi/linux/matroxfb.h
6874
6875 MAX16065 HARDWARE MONITOR DRIVER
6876 M:      Guenter Roeck <linux@roeck-us.net>
6877 L:      lm-sensors@lm-sensors.org
6878 S:      Maintained
6879 F:      Documentation/hwmon/max16065
6880 F:      drivers/hwmon/max16065.c
6881
6882 MAX20751 HARDWARE MONITOR DRIVER
6883 M:      Guenter Roeck <linux@roeck-us.net>
6884 L:      lm-sensors@lm-sensors.org
6885 S:      Maintained
6886 F:      Documentation/hwmon/max20751
6887 F:      drivers/hwmon/max20751.c
6888
6889 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6890 M:      "Hans J. Koch" <hjk@hansjkoch.de>
6891 L:      lm-sensors@lm-sensors.org
6892 S:      Maintained
6893 F:      Documentation/hwmon/max6650
6894 F:      drivers/hwmon/max6650.c
6895
6896 MAX6697 HARDWARE MONITOR DRIVER
6897 M:      Guenter Roeck <linux@roeck-us.net>
6898 L:      lm-sensors@lm-sensors.org
6899 S:      Maintained
6900 F:      Documentation/hwmon/max6697
6901 F:      Documentation/devicetree/bindings/i2c/max6697.txt
6902 F:      drivers/hwmon/max6697.c
6903 F:      include/linux/platform_data/max6697.h
6904
6905 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
6906 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6907 L:      linux-pm@vger.kernel.org
6908 S:      Supported
6909 F:      drivers/power/max14577_charger.c
6910 F:      drivers/power/max77693_charger.c
6911
6912 MAXIM MAX77802 MULTIFUNCTION PMIC DEVICE DRIVERS
6913 M:      Javier Martinez Canillas <javier@osg.samsung.com>
6914 L:      linux-kernel@vger.kernel.org
6915 S:      Supported
6916 F:      drivers/*/*max77802.c
6917 F:      Documentation/devicetree/bindings/*/*max77802.txt
6918 F:      include/dt-bindings/*/*max77802.h
6919
6920 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
6921 M:      Chanwoo Choi <cw00.choi@samsung.com>
6922 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6923 L:      linux-kernel@vger.kernel.org
6924 S:      Supported
6925 F:      drivers/*/max14577.c
6926 F:      drivers/*/max77686.c
6927 F:      drivers/*/max77693.c
6928 F:      drivers/extcon/extcon-max14577.c
6929 F:      drivers/extcon/extcon-max77693.c
6930 F:      drivers/rtc/rtc-max77686.c
6931 F:      drivers/clk/clk-max77686.c
6932 F:      Documentation/devicetree/bindings/mfd/max14577.txt
6933 F:      Documentation/devicetree/bindings/*/max77686.txt
6934 F:      Documentation/devicetree/bindings/mfd/max77693.txt
6935 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
6936 F:      include/linux/mfd/max14577*.h
6937 F:      include/linux/mfd/max77686*.h
6938 F:      include/linux/mfd/max77693*.h
6939
6940 MAXIRADIO FM RADIO RECEIVER DRIVER
6941 M:      Hans Verkuil <hverkuil@xs4all.nl>
6942 L:      linux-media@vger.kernel.org
6943 T:      git git://linuxtv.org/media_tree.git
6944 W:      https://linuxtv.org
6945 S:      Maintained
6946 F:      drivers/media/radio/radio-maxiradio*
6947
6948 MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVER
6949 M:      Peter Rosin <peda@axentia.se>
6950 L:      linux-iio@vger.kernel.org
6951 S:      Maintained
6952 F:      drivers/iio/potentiometer/mcp4531.c
6953
6954 MEDIA DRIVERS FOR RENESAS - VSP1
6955 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6956 L:      linux-media@vger.kernel.org
6957 L:      linux-renesas-soc@vger.kernel.org
6958 T:      git git://linuxtv.org/media_tree.git
6959 S:      Supported
6960 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
6961 F:      drivers/media/platform/vsp1/
6962
6963 MEDIA DRIVERS FOR ASCOT2E
6964 M:      Sergey Kozlov <serjk@netup.ru>
6965 L:      linux-media@vger.kernel.org
6966 W:      https://linuxtv.org
6967 W:      http://netup.tv/
6968 T:      git git://linuxtv.org/media_tree.git
6969 S:      Supported
6970 F:      drivers/media/dvb-frontends/ascot2e*
6971
6972 MEDIA DRIVERS FOR CXD2841ER
6973 M:      Sergey Kozlov <serjk@netup.ru>
6974 L:      linux-media@vger.kernel.org
6975 W:      https://linuxtv.org
6976 W:      http://netup.tv/
6977 T:      git git://linuxtv.org/media_tree.git
6978 S:      Supported
6979 F:      drivers/media/dvb-frontends/cxd2841er*
6980
6981 MEDIA DRIVERS FOR HORUS3A
6982 M:      Sergey Kozlov <serjk@netup.ru>
6983 L:      linux-media@vger.kernel.org
6984 W:      https://linuxtv.org
6985 W:      http://netup.tv/
6986 T:      git git://linuxtv.org/media_tree.git
6987 S:      Supported
6988 F:      drivers/media/dvb-frontends/horus3a*
6989
6990 MEDIA DRIVERS FOR LNBH25
6991 M:      Sergey Kozlov <serjk@netup.ru>
6992 L:      linux-media@vger.kernel.org
6993 W:      https://linuxtv.org
6994 W:      http://netup.tv/
6995 T:      git git://linuxtv.org/media_tree.git
6996 S:      Supported
6997 F:      drivers/media/dvb-frontends/lnbh25*
6998
6999 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
7000 M:      Sergey Kozlov <serjk@netup.ru>
7001 L:      linux-media@vger.kernel.org
7002 W:      https://linuxtv.org
7003 W:      http://netup.tv/
7004 T:      git git://linuxtv.org/media_tree.git
7005 S:      Supported
7006 F:      drivers/media/pci/netup_unidvb/*
7007
7008 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
7009 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
7010 P:      LinuxTV.org Project
7011 L:      linux-media@vger.kernel.org
7012 W:      https://linuxtv.org
7013 Q:      http://patchwork.kernel.org/project/linux-media/list/
7014 T:      git git://linuxtv.org/media_tree.git
7015 S:      Maintained
7016 F:      Documentation/dvb/
7017 F:      Documentation/video4linux/
7018 F:      Documentation/DocBook/media/
7019 F:      drivers/media/
7020 F:      drivers/staging/media/
7021 F:      include/linux/platform_data/media/
7022 F:      include/media/
7023 F:      include/uapi/linux/dvb/
7024 F:      include/uapi/linux/videodev2.h
7025 F:      include/uapi/linux/media.h
7026 F:      include/uapi/linux/v4l2-*
7027 F:      include/uapi/linux/meye.h
7028 F:      include/uapi/linux/ivtv*
7029 F:      include/uapi/linux/uvcvideo.h
7030
7031 MEDIATEK MT7601U WIRELESS LAN DRIVER
7032 M:      Jakub Kicinski <kubakici@wp.pl>
7033 L:      linux-wireless@vger.kernel.org
7034 S:      Maintained
7035 F:      drivers/net/wireless/mediatek/mt7601u/
7036
7037 MEGARAID SCSI/SAS DRIVERS
7038 M:      Kashyap Desai <kashyap.desai@avagotech.com>
7039 M:      Sumit Saxena <sumit.saxena@avagotech.com>
7040 M:      Uday Lingala <uday.lingala@avagotech.com>
7041 L:      megaraidlinux.pdl@avagotech.com
7042 L:      linux-scsi@vger.kernel.org
7043 W:      http://www.lsi.com
7044 S:      Maintained
7045 F:      Documentation/scsi/megaraid.txt
7046 F:      drivers/scsi/megaraid.*
7047 F:      drivers/scsi/megaraid/
7048
7049 MELLANOX ETHERNET DRIVER (mlx4_en)
7050 M:      Eugenia Emantayev <eugenia@mellanox.com>
7051 L:      netdev@vger.kernel.org
7052 S:      Supported
7053 W:      http://www.mellanox.com
7054 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7055 F:      drivers/net/ethernet/mellanox/mlx4/en_*
7056
7057 MELLANOX ETHERNET DRIVER (mlx5e)
7058 M:      Saeed Mahameed <saeedm@mellanox.com>
7059 L:      netdev@vger.kernel.org
7060 S:      Supported
7061 W:      http://www.mellanox.com
7062 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7063 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
7064
7065 MELLANOX ETHERNET SWITCH DRIVERS
7066 M:      Jiri Pirko <jiri@mellanox.com>
7067 M:      Ido Schimmel <idosch@mellanox.com>
7068 L:      netdev@vger.kernel.org
7069 S:      Supported
7070 W:      http://www.mellanox.com
7071 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7072 F:      drivers/net/ethernet/mellanox/mlxsw/
7073
7074 MEMBARRIER SUPPORT
7075 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7076 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
7077 L:      linux-kernel@vger.kernel.org
7078 S:      Supported
7079 F:      kernel/membarrier.c
7080 F:      include/uapi/linux/membarrier.h
7081
7082 MEMORY MANAGEMENT
7083 L:      linux-mm@kvack.org
7084 W:      http://www.linux-mm.org
7085 S:      Maintained
7086 F:      include/linux/mm.h
7087 F:      include/linux/gfp.h
7088 F:      include/linux/mmzone.h
7089 F:      include/linux/memory_hotplug.h
7090 F:      include/linux/vmalloc.h
7091 F:      mm/
7092
7093 MEMORY TECHNOLOGY DEVICES (MTD)
7094 M:      David Woodhouse <dwmw2@infradead.org>
7095 M:      Brian Norris <computersforpeace@gmail.com>
7096 L:      linux-mtd@lists.infradead.org
7097 W:      http://www.linux-mtd.infradead.org/
7098 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
7099 T:      git git://git.infradead.org/linux-mtd.git
7100 T:      git git://git.infradead.org/l2-mtd.git
7101 S:      Maintained
7102 F:      drivers/mtd/
7103 F:      include/linux/mtd/
7104 F:      include/uapi/mtd/
7105
7106 MEN A21 WATCHDOG DRIVER
7107 M:      Johannes Thumshirn <morbidrsa@gmail.com>
7108 L:      linux-watchdog@vger.kernel.org
7109 S:      Maintained
7110 F:      drivers/watchdog/mena21_wdt.c
7111
7112 MEN CHAMELEON BUS (mcb)
7113 M:      Johannes Thumshirn <morbidrsa@gmail.com>
7114 S:      Maintained
7115 F:      drivers/mcb/
7116 F:      include/linux/mcb.h
7117 F:      Documentation/men-chameleon-bus.txt
7118
7119 MEN F21BMC (Board Management Controller)
7120 M:      Andreas Werner <andreas.werner@men.de>
7121 S:      Supported
7122 F:      drivers/mfd/menf21bmc.c
7123 F:      drivers/watchdog/menf21bmc_wdt.c
7124 F:      drivers/leds/leds-menf21bmc.c
7125 F:      drivers/hwmon/menf21bmc_hwmon.c
7126 F:      Documentation/hwmon/menf21bmc
7127
7128 METAG ARCHITECTURE
7129 M:      James Hogan <james.hogan@imgtec.com>
7130 L:      linux-metag@vger.kernel.org
7131 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jhogan/metag.git
7132 S:      Odd Fixes
7133 F:      arch/metag/
7134 F:      Documentation/metag/
7135 F:      Documentation/devicetree/bindings/metag/
7136 F:      Documentation/devicetree/bindings/interrupt-controller/img,*
7137 F:      drivers/clocksource/metag_generic.c
7138 F:      drivers/irqchip/irq-metag.c
7139 F:      drivers/irqchip/irq-metag-ext.c
7140 F:      drivers/tty/metag_da.c
7141
7142 MICROBLAZE ARCHITECTURE
7143 M:      Michal Simek <monstr@monstr.eu>
7144 W:      http://www.monstr.eu/fdt/
7145 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
7146 S:      Supported
7147 F:      arch/microblaze/
7148
7149 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
7150 M:      Chen Yu <yu.c.chen@intel.com>
7151 L:      platform-driver-x86@vger.kernel.org
7152 S:      Supported
7153 F:      drivers/platform/x86/surfacepro3_button.c
7154
7155 MICROTEK X6 SCANNER
7156 M:      Oliver Neukum <oliver@neukum.org>
7157 S:      Maintained
7158 F:      drivers/usb/image/microtek.*
7159
7160 MIPS
7161 M:      Ralf Baechle <ralf@linux-mips.org>
7162 L:      linux-mips@linux-mips.org
7163 W:      http://www.linux-mips.org/
7164 T:      git git://git.linux-mips.org/pub/scm/ralf/linux.git
7165 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
7166 S:      Supported
7167 F:      Documentation/mips/
7168 F:      arch/mips/
7169
7170 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
7171 M:      Hans Verkuil <hverkuil@xs4all.nl>
7172 L:      linux-media@vger.kernel.org
7173 T:      git git://linuxtv.org/media_tree.git
7174 W:      https://linuxtv.org
7175 S:      Odd Fixes
7176 F:      drivers/media/radio/radio-miropcm20*
7177
7178 MELLANOX MLX4 core VPI driver
7179 M:      Yishai Hadas <yishaih@mellanox.com>
7180 L:      netdev@vger.kernel.org
7181 L:      linux-rdma@vger.kernel.org
7182 W:      http://www.mellanox.com
7183 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7184 S:      Supported
7185 F:      drivers/net/ethernet/mellanox/mlx4/
7186 F:      include/linux/mlx4/
7187
7188 MELLANOX MLX4 IB driver
7189 M:      Yishai Hadas <yishaih@mellanox.com>
7190 L:      linux-rdma@vger.kernel.org
7191 W:      http://www.mellanox.com
7192 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
7193 S:      Supported
7194 F:      drivers/infiniband/hw/mlx4/
7195 F:      include/linux/mlx4/
7196
7197 MELLANOX MLX5 core VPI driver
7198 M:      Matan Barak <matanb@mellanox.com>
7199 M:      Leon Romanovsky <leonro@mellanox.com>
7200 L:      netdev@vger.kernel.org
7201 L:      linux-rdma@vger.kernel.org
7202 W:      http://www.mellanox.com
7203 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7204 S:      Supported
7205 F:      drivers/net/ethernet/mellanox/mlx5/core/
7206 F:      include/linux/mlx5/
7207
7208 MELLANOX MLX5 IB driver
7209 M:      Matan Barak <matanb@mellanox.com>
7210 M:      Leon Romanovsky <leonro@mellanox.com>
7211 L:      linux-rdma@vger.kernel.org
7212 W:      http://www.mellanox.com
7213 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
7214 S:      Supported
7215 F:      drivers/infiniband/hw/mlx5/
7216 F:      include/linux/mlx5/
7217
7218 MELEXIS MLX90614 DRIVER
7219 M:      Crt Mori <cmo@melexis.com>
7220 L:      linux-iio@vger.kernel.org
7221 W:      http://www.melexis.com
7222 S:      Supported
7223 F:      drivers/iio/temperature/mlx90614.c
7224
7225 MN88472 MEDIA DRIVER
7226 M:      Antti Palosaari <crope@iki.fi>
7227 L:      linux-media@vger.kernel.org
7228 W:      https://linuxtv.org
7229 W:      http://palosaari.fi/linux/
7230 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7231 T:      git git://linuxtv.org/anttip/media_tree.git
7232 S:      Maintained
7233 F:      drivers/staging/media/mn88472/
7234 F:      drivers/media/dvb-frontends/mn88472.h
7235
7236 MN88473 MEDIA DRIVER
7237 M:      Antti Palosaari <crope@iki.fi>
7238 L:      linux-media@vger.kernel.org
7239 W:      https://linuxtv.org
7240 W:      http://palosaari.fi/linux/
7241 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7242 T:      git git://linuxtv.org/anttip/media_tree.git
7243 S:      Maintained
7244 F:      drivers/staging/media/mn88473/
7245 F:      drivers/media/dvb-frontends/mn88473.h
7246
7247 MODULE SUPPORT
7248 M:      Rusty Russell <rusty@rustcorp.com.au>
7249 S:      Maintained
7250 F:      include/linux/module.h
7251 F:      kernel/module.c
7252
7253 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
7254 W:      http://popies.net/meye/
7255 S:      Orphan
7256 F:      Documentation/video4linux/meye.txt
7257 F:      drivers/media/pci/meye/
7258 F:      include/uapi/linux/meye.h
7259
7260 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
7261 M:      Jiri Slaby <jirislaby@gmail.com>
7262 S:      Maintained
7263 F:      Documentation/serial/moxa-smartio
7264 F:      drivers/tty/mxser.*
7265
7266 MR800 AVERMEDIA USB FM RADIO DRIVER
7267 M:      Alexey Klimov <klimov.linux@gmail.com>
7268 L:      linux-media@vger.kernel.org
7269 T:      git git://linuxtv.org/media_tree.git
7270 S:      Maintained
7271 F:      drivers/media/radio/radio-mr800.c
7272
7273 MRF24J40 IEEE 802.15.4 RADIO DRIVER
7274 M:      Alan Ott <alan@signal11.us>
7275 L:      linux-wpan@vger.kernel.org
7276 S:      Maintained
7277 F:      drivers/net/ieee802154/mrf24j40.c
7278 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
7279
7280 MSI LAPTOP SUPPORT
7281 M:      "Lee, Chun-Yi" <jlee@suse.com>
7282 L:      platform-driver-x86@vger.kernel.org
7283 S:      Maintained
7284 F:      drivers/platform/x86/msi-laptop.c
7285
7286 MSI WMI SUPPORT
7287 L:      platform-driver-x86@vger.kernel.org
7288 S:      Orphan
7289 F:      drivers/platform/x86/msi-wmi.c
7290
7291 MSI001 MEDIA DRIVER
7292 M:      Antti Palosaari <crope@iki.fi>
7293 L:      linux-media@vger.kernel.org
7294 W:      https://linuxtv.org
7295 W:      http://palosaari.fi/linux/
7296 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7297 T:      git git://linuxtv.org/anttip/media_tree.git
7298 S:      Maintained
7299 F:      drivers/media/tuners/msi001*
7300
7301 MSI2500 MEDIA DRIVER
7302 M:      Antti Palosaari <crope@iki.fi>
7303 L:      linux-media@vger.kernel.org
7304 W:      https://linuxtv.org
7305 W:      http://palosaari.fi/linux/
7306 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7307 T:      git git://linuxtv.org/anttip/media_tree.git
7308 S:      Maintained
7309 F:      drivers/media/usb/msi2500/
7310
7311 MSYSTEMS DISKONCHIP G3 MTD DRIVER
7312 M:      Robert Jarzmik <robert.jarzmik@free.fr>
7313 L:      linux-mtd@lists.infradead.org
7314 S:      Maintained
7315 F:      drivers/mtd/devices/docg3*
7316
7317 MT9M032 APTINA SENSOR DRIVER
7318 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7319 L:      linux-media@vger.kernel.org
7320 T:      git git://linuxtv.org/media_tree.git
7321 S:      Maintained
7322 F:      drivers/media/i2c/mt9m032.c
7323 F:      include/media/i2c/mt9m032.h
7324
7325 MT9P031 APTINA CAMERA SENSOR
7326 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7327 L:      linux-media@vger.kernel.org
7328 T:      git git://linuxtv.org/media_tree.git
7329 S:      Maintained
7330 F:      drivers/media/i2c/mt9p031.c
7331 F:      include/media/i2c/mt9p031.h
7332
7333 MT9T001 APTINA CAMERA SENSOR
7334 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7335 L:      linux-media@vger.kernel.org
7336 T:      git git://linuxtv.org/media_tree.git
7337 S:      Maintained
7338 F:      drivers/media/i2c/mt9t001.c
7339 F:      include/media/i2c/mt9t001.h
7340
7341 MT9V032 APTINA CAMERA SENSOR
7342 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7343 L:      linux-media@vger.kernel.org
7344 T:      git git://linuxtv.org/media_tree.git
7345 S:      Maintained
7346 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
7347 F:      drivers/media/i2c/mt9v032.c
7348 F:      include/media/i2c/mt9v032.h
7349
7350 MULTIFUNCTION DEVICES (MFD)
7351 M:      Lee Jones <lee.jones@linaro.org>
7352 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
7353 S:      Supported
7354 F:      drivers/mfd/
7355 F:      include/linux/mfd/
7356
7357 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
7358 M:      Ulf Hansson <ulf.hansson@linaro.org>
7359 L:      linux-mmc@vger.kernel.org
7360 T:      git git://git.linaro.org/people/ulf.hansson/mmc.git
7361 S:      Maintained
7362 F:      drivers/mmc/
7363 F:      include/linux/mmc/
7364 F:      include/uapi/linux/mmc/
7365
7366 MULTIMEDIA CARD (MMC) ETC. OVER SPI
7367 S:      Orphan
7368 F:      drivers/mmc/host/mmc_spi.c
7369 F:      include/linux/spi/mmc_spi.h
7370
7371 MULTISOUND SOUND DRIVER
7372 M:      Andrew Veliath <andrewtv@usa.net>
7373 S:      Maintained
7374 F:      Documentation/sound/oss/MultiSound
7375 F:      sound/oss/msnd*
7376
7377 MULTITECH MULTIPORT CARD (ISICOM)
7378 S:      Orphan
7379 F:      drivers/tty/isicom.c
7380 F:      include/linux/isicom.h
7381
7382 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
7383 M:      Felipe Balbi <balbi@kernel.org>
7384 L:      linux-usb@vger.kernel.org
7385 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7386 S:      Maintained
7387 F:      drivers/usb/musb/
7388
7389 MXL5007T MEDIA DRIVER
7390 M:      Michael Krufky <mkrufky@linuxtv.org>
7391 L:      linux-media@vger.kernel.org
7392 W:      https://linuxtv.org
7393 W:      http://github.com/mkrufky
7394 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7395 T:      git git://linuxtv.org/mkrufky/tuners.git
7396 S:      Maintained
7397 F:      drivers/media/tuners/mxl5007t.*
7398
7399 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
7400 M:      Hyong-Youb Kim <hykim@myri.com>
7401 L:      netdev@vger.kernel.org
7402 W:      https://www.myricom.com/support/downloads/myri10ge.html
7403 S:      Supported
7404 F:      drivers/net/ethernet/myricom/myri10ge/
7405
7406 NATSEMI ETHERNET DRIVER (DP8381x)
7407 S:      Orphan
7408 F:      drivers/net/ethernet/natsemi/natsemi.c
7409
7410 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
7411 M:      Daniel Mack <zonque@gmail.com>
7412 S:      Maintained
7413 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7414 W:      http://www.native-instruments.com
7415 F:      sound/usb/caiaq/
7416
7417 NCP FILESYSTEM
7418 M:      Petr Vandrovec <petr@vandrovec.name>
7419 S:      Odd Fixes
7420 F:      fs/ncpfs/
7421
7422 NCR 5380 SCSI DRIVERS
7423 M:      Finn Thain <fthain@telegraphics.com.au>
7424 M:      Michael Schmitz <schmitzmic@gmail.com>
7425 L:      linux-scsi@vger.kernel.org
7426 S:      Maintained
7427 F:      Documentation/scsi/g_NCR5380.txt
7428 F:      drivers/scsi/NCR5380.*
7429 F:      drivers/scsi/arm/cumana_1.c
7430 F:      drivers/scsi/arm/oak.c
7431 F:      drivers/scsi/atari_NCR5380.c
7432 F:      drivers/scsi/atari_scsi.*
7433 F:      drivers/scsi/dmx3191d.c
7434 F:      drivers/scsi/dtc.*
7435 F:      drivers/scsi/g_NCR5380.*
7436 F:      drivers/scsi/g_NCR5380_mmio.c
7437 F:      drivers/scsi/mac_scsi.*
7438 F:      drivers/scsi/pas16.*
7439 F:      drivers/scsi/sun3_scsi.*
7440 F:      drivers/scsi/sun3_scsi_vme.c
7441 F:      drivers/scsi/t128.*
7442
7443 NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
7444 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
7445 L:      linux-scsi@vger.kernel.org
7446 S:      Maintained
7447 F:      drivers/scsi/NCR_D700.*
7448
7449 NCT6775 HARDWARE MONITOR DRIVER
7450 M:      Guenter Roeck <linux@roeck-us.net>
7451 L:      lm-sensors@lm-sensors.org
7452 S:      Maintained
7453 F:      Documentation/hwmon/nct6775
7454 F:      drivers/hwmon/nct6775.c
7455
7456 NETEFFECT IWARP RNIC DRIVER (IW_NES)
7457 M:      Faisal Latif <faisal.latif@intel.com>
7458 L:      linux-rdma@vger.kernel.org
7459 W:      http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
7460 S:      Supported
7461 F:      drivers/infiniband/hw/nes/
7462
7463 NETEM NETWORK EMULATOR
7464 M:      Stephen Hemminger <stephen@networkplumber.org>
7465 L:      netem@lists.linux-foundation.org
7466 S:      Maintained
7467 F:      net/sched/sch_netem.c
7468
7469 NETERION 10GbE DRIVERS (s2io/vxge)
7470 M:      Jon Mason <jdmason@kudzu.us>
7471 L:      netdev@vger.kernel.org
7472 S:      Supported
7473 F:      Documentation/networking/s2io.txt
7474 F:      Documentation/networking/vxge.txt
7475 F:      drivers/net/ethernet/neterion/
7476
7477 NETFILTER ({IP,IP6,ARP,EB,NF}TABLES)
7478 M:      Pablo Neira Ayuso <pablo@netfilter.org>
7479 M:      Patrick McHardy <kaber@trash.net>
7480 M:      Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
7481 L:      netfilter-devel@vger.kernel.org
7482 L:      coreteam@netfilter.org
7483 W:      http://www.netfilter.org/
7484 W:      http://www.iptables.org/
7485 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
7486 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
7487 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
7488 S:      Supported
7489 F:      include/linux/netfilter*
7490 F:      include/linux/netfilter/
7491 F:      include/net/netfilter/
7492 F:      include/uapi/linux/netfilter*
7493 F:      include/uapi/linux/netfilter/
7494 F:      net/*/netfilter.c
7495 F:      net/*/netfilter/
7496 F:      net/netfilter/
7497 F:      net/bridge/br_netfilter*.c
7498
7499 NETLABEL
7500 M:      Paul Moore <paul@paul-moore.com>
7501 W:      http://netlabel.sf.net
7502 L:      netdev@vger.kernel.org
7503 S:      Maintained
7504 F:      Documentation/netlabel/
7505 F:      include/net/netlabel.h
7506 F:      net/netlabel/
7507
7508 NETROM NETWORK LAYER
7509 M:      Ralf Baechle <ralf@linux-mips.org>
7510 L:      linux-hams@vger.kernel.org
7511 W:      http://www.linux-ax25.org/
7512 S:      Maintained
7513 F:      include/net/netrom.h
7514 F:      include/uapi/linux/netrom.h
7515 F:      net/netrom/
7516
7517 NETRONOME ETHERNET DRIVERS
7518 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
7519 M:      Rolf Neugebauer <rolf.neugebauer@netronome.com>
7520 L:      oss-drivers@netronome.com
7521 S:      Maintained
7522 F:      drivers/net/ethernet/netronome/
7523
7524 NETWORK BLOCK DEVICE (NBD)
7525 M:      Markus Pargmann <mpa@pengutronix.de>
7526 S:      Maintained
7527 L:      nbd-general@lists.sourceforge.net
7528 T:      git git://git.pengutronix.de/git/mpa/linux-nbd.git
7529 F:      Documentation/blockdev/nbd.txt
7530 F:      drivers/block/nbd.c
7531 F:      include/uapi/linux/nbd.h
7532
7533 NETWORK DROP MONITOR
7534 M:      Neil Horman <nhorman@tuxdriver.com>
7535 L:      netdev@vger.kernel.org
7536 S:      Maintained
7537 W:      https://fedorahosted.org/dropwatch/
7538 F:      net/core/drop_monitor.c
7539
7540 NETWORKING [GENERAL]
7541 M:      "David S. Miller" <davem@davemloft.net>
7542 L:      netdev@vger.kernel.org
7543 W:      http://www.linuxfoundation.org/en/Net
7544 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7545 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7546 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7547 S:      Maintained
7548 F:      net/
7549 F:      include/net/
7550 F:      include/linux/in.h
7551 F:      include/linux/net.h
7552 F:      include/linux/netdevice.h
7553 F:      include/uapi/linux/in.h
7554 F:      include/uapi/linux/net.h
7555 F:      include/uapi/linux/netdevice.h
7556 F:      include/uapi/linux/net_namespace.h
7557 F:      tools/net/
7558 F:      tools/testing/selftests/net/
7559 F:      lib/random32.c
7560 F:      lib/test_bpf.c
7561
7562 NETWORKING [IPv4/IPv6]
7563 M:      "David S. Miller" <davem@davemloft.net>
7564 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
7565 M:      James Morris <jmorris@namei.org>
7566 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
7567 M:      Patrick McHardy <kaber@trash.net>
7568 L:      netdev@vger.kernel.org
7569 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7570 S:      Maintained
7571 F:      net/ipv4/
7572 F:      net/ipv6/
7573 F:      include/net/ip*
7574 F:      arch/x86/net/*
7575
7576 NETWORKING [IPSEC]
7577 M:      Steffen Klassert <steffen.klassert@secunet.com>
7578 M:      Herbert Xu <herbert@gondor.apana.org.au>
7579 M:      "David S. Miller" <davem@davemloft.net>
7580 L:      netdev@vger.kernel.org
7581 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
7582 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
7583 S:      Maintained
7584 F:      net/core/flow.c
7585 F:      net/xfrm/
7586 F:      net/key/
7587 F:      net/ipv4/xfrm*
7588 F:      net/ipv4/esp4.c
7589 F:      net/ipv4/ah4.c
7590 F:      net/ipv4/ipcomp.c
7591 F:      net/ipv4/ip_vti.c
7592 F:      net/ipv6/xfrm*
7593 F:      net/ipv6/esp6.c
7594 F:      net/ipv6/ah6.c
7595 F:      net/ipv6/ipcomp6.c
7596 F:      net/ipv6/ip6_vti.c
7597 F:      include/uapi/linux/xfrm.h
7598 F:      include/net/xfrm.h
7599
7600 NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
7601 M:      Paul Moore <paul@paul-moore.com>
7602 L:      netdev@vger.kernel.org
7603 S:      Maintained
7604
7605 NETWORKING [WIRELESS]
7606 L:      linux-wireless@vger.kernel.org
7607 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7608
7609 NETWORKING DRIVERS
7610 L:      netdev@vger.kernel.org
7611 W:      http://www.linuxfoundation.org/en/Net
7612 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7613 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7614 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7615 S:      Odd Fixes
7616 F:      drivers/net/
7617 F:      include/linux/if_*
7618 F:      include/linux/netdevice.h
7619 F:      include/linux/etherdevice.h
7620 F:      include/linux/fcdevice.h
7621 F:      include/linux/fddidevice.h
7622 F:      include/linux/hippidevice.h
7623 F:      include/linux/inetdevice.h
7624 F:      include/uapi/linux/if_*
7625 F:      include/uapi/linux/netdevice.h
7626
7627 NETWORKING DRIVERS (WIRELESS)
7628 M:      Kalle Valo <kvalo@codeaurora.org>
7629 L:      linux-wireless@vger.kernel.org
7630 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7631 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
7632 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
7633 S:      Maintained
7634 F:      drivers/net/wireless/
7635
7636 NETXEN (1/10) GbE SUPPORT
7637 M:      Manish Chopra <manish.chopra@qlogic.com>
7638 M:      Sony Chacko <sony.chacko@qlogic.com>
7639 M:      Rajesh Borundia <rajesh.borundia@qlogic.com>
7640 L:      netdev@vger.kernel.org
7641 W:      http://www.qlogic.com
7642 S:      Supported
7643 F:      drivers/net/ethernet/qlogic/netxen/
7644
7645 NFC SUBSYSTEM
7646 M:      Lauro Ramos Venancio <lauro.venancio@openbossa.org>
7647 M:      Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
7648 M:      Samuel Ortiz <sameo@linux.intel.com>
7649 L:      linux-wireless@vger.kernel.org
7650 L:      linux-nfc@lists.01.org (subscribers-only)
7651 S:      Supported
7652 F:      net/nfc/
7653 F:      include/net/nfc/
7654 F:      include/uapi/linux/nfc.h
7655 F:      drivers/nfc/
7656 F:      include/linux/platform_data/microread.h
7657 F:      include/linux/platform_data/nfcmrvl.h
7658 F:      include/linux/platform_data/nxp-nci.h
7659 F:      include/linux/platform_data/pn544.h
7660 F:      include/linux/platform_data/st21nfca.h
7661 F:      include/linux/platform_data/st-nci.h
7662 F:      Documentation/devicetree/bindings/net/nfc/
7663
7664 NFS, SUNRPC, AND LOCKD CLIENTS
7665 M:      Trond Myklebust <trond.myklebust@primarydata.com>
7666 M:      Anna Schumaker <anna.schumaker@netapp.com>
7667 L:      linux-nfs@vger.kernel.org
7668 W:      http://client.linux-nfs.org
7669 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
7670 S:      Maintained
7671 F:      fs/lockd/
7672 F:      fs/nfs/
7673 F:      fs/nfs_common/
7674 F:      net/sunrpc/
7675 F:      include/linux/lockd/
7676 F:      include/linux/nfs*
7677 F:      include/linux/sunrpc/
7678 F:      include/uapi/linux/nfs*
7679 F:      include/uapi/linux/sunrpc/
7680
7681 NILFS2 FILESYSTEM
7682 M:      Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
7683 L:      linux-nilfs@vger.kernel.org
7684 W:      http://nilfs.sourceforge.net/
7685 T:      git git://github.com/konis/nilfs2.git
7686 S:      Supported
7687 F:      Documentation/filesystems/nilfs2.txt
7688 F:      fs/nilfs2/
7689 F:      include/linux/nilfs2_fs.h
7690 F:      include/trace/events/nilfs2.h
7691
7692 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
7693 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7694 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7695 S:      Maintained
7696 F:      Documentation/scsi/NinjaSCSI.txt
7697 F:      drivers/scsi/pcmcia/nsp_*
7698
7699 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
7700 M:      GOTO Masanori <gotom@debian.or.jp>
7701 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7702 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7703 S:      Maintained
7704 F:      Documentation/scsi/NinjaSCSI.txt
7705 F:      drivers/scsi/nsp32*
7706
7707 NIOS2 ARCHITECTURE
7708 M:      Ley Foon Tan <lftan@altera.com>
7709 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
7710 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
7711 S:      Maintained
7712 F:      arch/nios2/
7713
7714 NOKIA N900 POWER SUPPLY DRIVERS
7715 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
7716 S:      Maintained
7717 F:      include/linux/power/bq2415x_charger.h
7718 F:      include/linux/power/bq27xxx_battery.h
7719 F:      include/linux/power/isp1704_charger.h
7720 F:      drivers/power/bq2415x_charger.c
7721 F:      drivers/power/bq27xxx_battery.c
7722 F:      drivers/power/isp1704_charger.c
7723 F:      drivers/power/rx51_battery.c
7724
7725 NTB DRIVER CORE
7726 M:      Jon Mason <jdmason@kudzu.us>
7727 M:      Dave Jiang <dave.jiang@intel.com>
7728 M:      Allen Hubbe <Allen.Hubbe@emc.com>
7729 L:      linux-ntb@googlegroups.com
7730 S:      Supported
7731 W:      https://github.com/jonmason/ntb/wiki
7732 T:      git git://github.com/jonmason/ntb.git
7733 F:      drivers/ntb/
7734 F:      drivers/net/ntb_netdev.c
7735 F:      include/linux/ntb.h
7736 F:      include/linux/ntb_transport.h
7737
7738 NTB INTEL DRIVER
7739 M:      Jon Mason <jdmason@kudzu.us>
7740 M:      Dave Jiang <dave.jiang@intel.com>
7741 L:      linux-ntb@googlegroups.com
7742 S:      Supported
7743 W:      https://github.com/jonmason/ntb/wiki
7744 T:      git git://github.com/jonmason/ntb.git
7745 F:      drivers/ntb/hw/intel/
7746
7747 NTB AMD DRIVER
7748 M:      Xiangliang Yu <Xiangliang.Yu@amd.com>
7749 L:      linux-ntb@googlegroups.com
7750 S:      Supported
7751 F:      drivers/ntb/hw/amd/
7752
7753 NTFS FILESYSTEM
7754 M:      Anton Altaparmakov <anton@tuxera.com>
7755 L:      linux-ntfs-dev@lists.sourceforge.net
7756 W:      http://www.tuxera.com/
7757 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
7758 S:      Supported
7759 F:      Documentation/filesystems/ntfs.txt
7760 F:      fs/ntfs/
7761
7762 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
7763 M:      Antonino Daplas <adaplas@gmail.com>
7764 L:      linux-fbdev@vger.kernel.org
7765 S:      Maintained
7766 F:      drivers/video/fbdev/riva/
7767 F:      drivers/video/fbdev/nvidia/
7768
7769 NVM EXPRESS DRIVER
7770 M:      Keith Busch <keith.busch@intel.com>
7771 M:      Jens Axboe <axboe@fb.com>
7772 L:      linux-nvme@lists.infradead.org
7773 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
7774 W:      https://kernel.googlesource.com/pub/scm/linux/kernel/git/axboe/linux-block/
7775 S:      Supported
7776 F:      drivers/nvme/host/
7777 F:      include/linux/nvme.h
7778
7779 NVMEM FRAMEWORK
7780 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
7781 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
7782 S:      Maintained
7783 F:      drivers/nvmem/
7784 F:      Documentation/devicetree/bindings/nvmem/
7785 F:      include/linux/nvmem-consumer.h
7786 F:      include/linux/nvmem-provider.h
7787
7788 NXP-NCI NFC DRIVER
7789 M:      ClĂ©ment Perrochaud <clement.perrochaud@effinnov.com>
7790 R:      Charles Gorand <charles.gorand@effinnov.com>
7791 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
7792 S:      Supported
7793 F:      drivers/nfc/nxp-nci
7794
7795 NXP TDA998X DRM DRIVER
7796 M:      Russell King <rmk+kernel@arm.linux.org.uk>
7797 S:      Supported
7798 F:      drivers/gpu/drm/i2c/tda998x_drv.c
7799 F:      include/drm/i2c/tda998x.h
7800
7801 NXP TFA9879 DRIVER
7802 M:      Peter Rosin <peda@axentia.se>
7803 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7804 S:      Maintained
7805 F:      sound/soc/codecs/tfa9879*
7806
7807 OMAP SUPPORT
7808 M:      Tony Lindgren <tony@atomide.com>
7809 L:      linux-omap@vger.kernel.org
7810 W:      http://www.muru.com/linux/omap/
7811 W:      http://linux.omap.com/
7812 Q:      http://patchwork.kernel.org/project/linux-omap/list/
7813 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
7814 S:      Maintained
7815 F:      arch/arm/*omap*/
7816 F:      arch/arm/configs/omap1_defconfig
7817 F:      arch/arm/configs/omap2plus_defconfig
7818 F:      drivers/i2c/busses/i2c-omap.c
7819 F:      drivers/irqchip/irq-omap-intc.c
7820 F:      drivers/mfd/*omap*.c
7821 F:      drivers/mfd/menelaus.c
7822 F:      drivers/mfd/palmas.c
7823 F:      drivers/mfd/tps65217.c
7824 F:      drivers/mfd/tps65218.c
7825 F:      drivers/mfd/tps65910.c
7826 F:      drivers/mfd/twl-core.[ch]
7827 F:      drivers/mfd/twl4030*.c
7828 F:      drivers/mfd/twl6030*.c
7829 F:      drivers/mfd/twl6040*.c
7830 F:      drivers/regulator/palmas-regulator*.c
7831 F:      drivers/regulator/pbias-regulator.c
7832 F:      drivers/regulator/tps65217-regulator.c
7833 F:      drivers/regulator/tps65218-regulator.c
7834 F:      drivers/regulator/tps65910-regulator.c
7835 F:      drivers/regulator/twl-regulator.c
7836 F:      include/linux/i2c-omap.h
7837
7838 OMAP DEVICE TREE SUPPORT
7839 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7840 M:      Tony Lindgren <tony@atomide.com>
7841 L:      linux-omap@vger.kernel.org
7842 L:      devicetree@vger.kernel.org
7843 S:      Maintained
7844 F:      arch/arm/boot/dts/*omap*
7845 F:      arch/arm/boot/dts/*am3*
7846 F:      arch/arm/boot/dts/*am4*
7847 F:      arch/arm/boot/dts/*am5*
7848 F:      arch/arm/boot/dts/*dra7*
7849
7850 OMAP CLOCK FRAMEWORK SUPPORT
7851 M:      Paul Walmsley <paul@pwsan.com>
7852 L:      linux-omap@vger.kernel.org
7853 S:      Maintained
7854 F:      arch/arm/*omap*/*clock*
7855
7856 OMAP POWER MANAGEMENT SUPPORT
7857 M:      Kevin Hilman <khilman@deeprootsystems.com>
7858 L:      linux-omap@vger.kernel.org
7859 S:      Maintained
7860 F:      arch/arm/*omap*/*pm*
7861 F:      drivers/cpufreq/omap-cpufreq.c
7862
7863 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
7864 M:      Rajendra Nayak <rnayak@ti.com>
7865 M:      Paul Walmsley <paul@pwsan.com>
7866 L:      linux-omap@vger.kernel.org
7867 S:      Maintained
7868 F:      arch/arm/mach-omap2/prm*
7869
7870 OMAP AUDIO SUPPORT
7871 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
7872 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
7873 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7874 L:      linux-omap@vger.kernel.org
7875 S:      Maintained
7876 F:      sound/soc/omap/
7877
7878 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
7879 M:      Roger Quadros <rogerq@ti.com>
7880 M:      Tony Lindgren <tony@atomide.com>
7881 L:      linux-omap@vger.kernel.org
7882 S:      Maintained
7883 F:      drivers/memory/omap-gpmc.c
7884 F:      arch/arm/mach-omap2/*gpmc*
7885
7886 OMAP FRAMEBUFFER SUPPORT
7887 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
7888 L:      linux-fbdev@vger.kernel.org
7889 L:      linux-omap@vger.kernel.org
7890 S:      Maintained
7891 F:      drivers/video/fbdev/omap/
7892
7893 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
7894 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
7895 L:      linux-omap@vger.kernel.org
7896 L:      linux-fbdev@vger.kernel.org
7897 S:      Maintained
7898 F:      drivers/video/fbdev/omap2/
7899 F:      Documentation/arm/OMAP/DSS
7900
7901 OMAP HARDWARE SPINLOCK SUPPORT
7902 M:      Ohad Ben-Cohen <ohad@wizery.com>
7903 L:      linux-omap@vger.kernel.org
7904 S:      Maintained
7905 F:      drivers/hwspinlock/omap_hwspinlock.c
7906
7907 OMAP MMC SUPPORT
7908 M:      Jarkko Lavinen <jarkko.lavinen@nokia.com>
7909 L:      linux-omap@vger.kernel.org
7910 S:      Maintained
7911 F:      drivers/mmc/host/omap.c
7912
7913 OMAP HS MMC SUPPORT
7914 L:      linux-mmc@vger.kernel.org
7915 L:      linux-omap@vger.kernel.org
7916 S:      Orphan
7917 F:      drivers/mmc/host/omap_hsmmc.c
7918
7919 OMAP RANDOM NUMBER GENERATOR SUPPORT
7920 M:      Deepak Saxena <dsaxena@plexity.net>
7921 S:      Maintained
7922 F:      drivers/char/hw_random/omap-rng.c
7923
7924 OMAP HWMOD SUPPORT
7925 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7926 M:      Paul Walmsley <paul@pwsan.com>
7927 L:      linux-omap@vger.kernel.org
7928 S:      Maintained
7929 F:      arch/arm/mach-omap2/omap_hwmod.*
7930
7931 OMAP HWMOD DATA
7932 M:      Paul Walmsley <paul@pwsan.com>
7933 L:      linux-omap@vger.kernel.org
7934 S:      Maintained
7935 F:      arch/arm/mach-omap2/omap_hwmod*data*
7936
7937 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
7938 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7939 L:      linux-omap@vger.kernel.org
7940 S:      Maintained
7941 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
7942
7943 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
7944 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7945 L:      linux-media@vger.kernel.org
7946 S:      Maintained
7947 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
7948 F:      drivers/media/platform/omap3isp/
7949 F:      drivers/staging/media/omap4iss/
7950
7951 OMAP USB SUPPORT
7952 M:      Felipe Balbi <balbi@kernel.org>
7953 L:      linux-usb@vger.kernel.org
7954 L:      linux-omap@vger.kernel.org
7955 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7956 S:      Maintained
7957 F:      drivers/usb/*/*omap*
7958 F:      arch/arm/*omap*/usb*
7959
7960 OMAP GPIO DRIVER
7961 M:      Grygorii Strashko <grygorii.strashko@ti.com>
7962 M:      Santosh Shilimkar <ssantosh@kernel.org>
7963 M:      Kevin Hilman <khilman@deeprootsystems.com>
7964 L:      linux-omap@vger.kernel.org
7965 S:      Maintained
7966 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
7967 F:      drivers/gpio/gpio-omap.c
7968
7969 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
7970 M:      Mark Jackson <mpfj@newflow.co.uk>
7971 L:      linux-omap@vger.kernel.org
7972 S:      Maintained
7973 F:      arch/arm/boot/dts/am335x-nano.dts
7974
7975 OMFS FILESYSTEM
7976 M:      Bob Copeland <me@bobcopeland.com>
7977 L:      linux-karma-devel@lists.sourceforge.net
7978 S:      Maintained
7979 F:      Documentation/filesystems/omfs.txt
7980 F:      fs/omfs/
7981
7982 OMNIKEY CARDMAN 4000 DRIVER
7983 M:      Harald Welte <laforge@gnumonks.org>
7984 S:      Maintained
7985 F:      drivers/char/pcmcia/cm4000_cs.c
7986 F:      include/linux/cm4000_cs.h
7987 F:      include/uapi/linux/cm4000_cs.h
7988
7989 OMNIKEY CARDMAN 4040 DRIVER
7990 M:      Harald Welte <laforge@gnumonks.org>
7991 S:      Maintained
7992 F:      drivers/char/pcmcia/cm4040_cs.*
7993
7994 OMNIVISION OV7670 SENSOR DRIVER
7995 M:      Jonathan Corbet <corbet@lwn.net>
7996 L:      linux-media@vger.kernel.org
7997 T:      git git://linuxtv.org/media_tree.git
7998 S:      Maintained
7999 F:      drivers/media/i2c/ov7670.c
8000
8001 ONENAND FLASH DRIVER
8002 M:      Kyungmin Park <kyungmin.park@samsung.com>
8003 L:      linux-mtd@lists.infradead.org
8004 S:      Maintained
8005 F:      drivers/mtd/onenand/
8006 F:      include/linux/mtd/onenand*.h
8007
8008 ONSTREAM SCSI TAPE DRIVER
8009 M:      Willem Riede <osst@riede.org>
8010 L:      osst-users@lists.sourceforge.net
8011 L:      linux-scsi@vger.kernel.org
8012 S:      Maintained
8013 F:      Documentation/scsi/osst.txt
8014 F:      drivers/scsi/osst.*
8015 F:      drivers/scsi/osst_*.h
8016 F:      drivers/scsi/st.h
8017
8018 OPENCORES I2C BUS DRIVER
8019 M:      Peter Korsgaard <jacmet@sunsite.dk>
8020 L:      linux-i2c@vger.kernel.org
8021 S:      Maintained
8022 F:      Documentation/i2c/busses/i2c-ocores
8023 F:      drivers/i2c/busses/i2c-ocores.c
8024
8025 OPEN FIRMWARE AND FLATTENED DEVICE TREE
8026 M:      Rob Herring <robh+dt@kernel.org>
8027 M:      Frank Rowand <frowand.list@gmail.com>
8028 M:      Grant Likely <grant.likely@linaro.org>
8029 L:      devicetree@vger.kernel.org
8030 W:      http://www.devicetree.org/
8031 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/glikely/linux.git
8032 S:      Maintained
8033 F:      drivers/of/
8034 F:      include/linux/of*.h
8035 F:      scripts/dtc/
8036
8037 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
8038 M:      Rob Herring <robh+dt@kernel.org>
8039 M:      Pawel Moll <pawel.moll@arm.com>
8040 M:      Mark Rutland <mark.rutland@arm.com>
8041 M:      Ian Campbell <ijc+devicetree@hellion.org.uk>
8042 M:      Kumar Gala <galak@codeaurora.org>
8043 L:      devicetree@vger.kernel.org
8044 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
8045 S:      Maintained
8046 F:      Documentation/devicetree/
8047 F:      arch/*/boot/dts/
8048 F:      include/dt-bindings/
8049
8050 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
8051 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
8052 L:      devicetree@vger.kernel.org
8053 S:      Maintained
8054 F:      Documentation/devicetree/dynamic-resolution-notes.txt
8055 F:      Documentation/devicetree/overlay-notes.txt
8056 F:      drivers/of/overlay.c
8057 F:      drivers/of/resolver.c
8058
8059 OPENRISC ARCHITECTURE
8060 M:      Jonas Bonn <jonas@southpole.se>
8061 W:      http://openrisc.net
8062 L:      linux@lists.openrisc.net (moderated for non-subscribers)
8063 S:      Maintained
8064 T:      git git://openrisc.net/~jonas/linux
8065 F:      arch/openrisc/
8066
8067 OPENVSWITCH
8068 M:      Pravin Shelar <pshelar@nicira.com>
8069 L:      netdev@vger.kernel.org
8070 L:      dev@openvswitch.org
8071 W:      http://openvswitch.org
8072 S:      Maintained
8073 F:      net/openvswitch/
8074 F:      include/uapi/linux/openvswitch.h
8075
8076 OPERATING PERFORMANCE POINTS (OPP)
8077 M:      Viresh Kumar <vireshk@kernel.org>
8078 M:      Nishanth Menon <nm@ti.com>
8079 M:      Stephen Boyd <sboyd@codeaurora.org>
8080 L:      linux-pm@vger.kernel.org
8081 S:      Maintained
8082 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
8083 F:      drivers/base/power/opp/
8084 F:      include/linux/pm_opp.h
8085 F:      Documentation/power/opp.txt
8086 F:      Documentation/devicetree/bindings/opp/
8087
8088 OPL4 DRIVER
8089 M:      Clemens Ladisch <clemens@ladisch.de>
8090 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8091 T:      git git://git.alsa-project.org/alsa-kernel.git
8092 S:      Maintained
8093 F:      sound/drivers/opl4/
8094
8095 OPROFILE
8096 M:      Robert Richter <rric@kernel.org>
8097 L:      oprofile-list@lists.sf.net
8098 S:      Maintained
8099 F:      arch/*/include/asm/oprofile*.h
8100 F:      arch/*/oprofile/
8101 F:      drivers/oprofile/
8102 F:      include/linux/oprofile.h
8103
8104 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
8105 M:      Mark Fasheh <mfasheh@suse.com>
8106 M:      Joel Becker <jlbec@evilplan.org>
8107 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
8108 W:      http://ocfs2.wiki.kernel.org
8109 S:      Supported
8110 F:      Documentation/filesystems/ocfs2.txt
8111 F:      Documentation/filesystems/dlmfs.txt
8112 F:      fs/ocfs2/
8113
8114 ORINOCO DRIVER
8115 L:      linux-wireless@vger.kernel.org
8116 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
8117 W:      http://www.nongnu.org/orinoco/
8118 S:      Orphan
8119 F:      drivers/net/wireless/intersil/orinoco/
8120
8121 OSD LIBRARY and FILESYSTEM
8122 M:      Boaz Harrosh <ooo@electrozaur.com>
8123 M:      Benny Halevy <bhalevy@primarydata.com>
8124 L:      osd-dev@open-osd.org
8125 W:      http://open-osd.org
8126 T:      git git://git.open-osd.org/open-osd.git
8127 S:      Maintained
8128 F:      drivers/scsi/osd/
8129 F:      include/scsi/osd_*
8130 F:      fs/exofs/
8131
8132 OVERLAY FILESYSTEM
8133 M:      Miklos Szeredi <miklos@szeredi.hu>
8134 L:      linux-unionfs@vger.kernel.org
8135 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
8136 S:      Supported
8137 F:      fs/overlayfs/
8138 F:      Documentation/filesystems/overlayfs.txt
8139
8140 ORANGEFS FILESYSTEM
8141 M:      Mike Marshall <hubcap@omnibond.com>
8142 L:      pvfs2-developers@beowulf-underground.org
8143 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
8144 S:      Supported
8145 F:      fs/orangefs/
8146 F:      Documentation/filesystems/orangefs.txt
8147
8148 P54 WIRELESS DRIVER
8149 M:      Christian Lamparter <chunkeey@googlemail.com>
8150 L:      linux-wireless@vger.kernel.org
8151 W:      http://wireless.kernel.org/en/users/Drivers/p54
8152 S:      Maintained
8153 F:      drivers/net/wireless/intersil/p54/
8154
8155 PA SEMI ETHERNET DRIVER
8156 M:      Olof Johansson <olof@lixom.net>
8157 L:      netdev@vger.kernel.org
8158 S:      Maintained
8159 F:      drivers/net/ethernet/pasemi/*
8160
8161 PA SEMI SMBUS DRIVER
8162 M:      Olof Johansson <olof@lixom.net>
8163 L:      linux-i2c@vger.kernel.org
8164 S:      Maintained
8165 F:      drivers/i2c/busses/i2c-pasemi.c
8166
8167 PADATA PARALLEL EXECUTION MECHANISM
8168 M:      Steffen Klassert <steffen.klassert@secunet.com>
8169 L:      linux-crypto@vger.kernel.org
8170 S:      Maintained
8171 F:      kernel/padata.c
8172 F:      include/linux/padata.h
8173 F:      Documentation/padata.txt
8174
8175 PANASONIC LAPTOP ACPI EXTRAS DRIVER
8176 M:      Harald Welte <laforge@gnumonks.org>
8177 L:      platform-driver-x86@vger.kernel.org
8178 S:      Maintained
8179 F:      drivers/platform/x86/panasonic-laptop.c
8180
8181 PANASONIC MN10300/AM33/AM34 PORT
8182 M:      David Howells <dhowells@redhat.com>
8183 M:      Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
8184 L:      linux-am33-list@redhat.com (moderated for non-subscribers)
8185 W:      ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
8186 S:      Maintained
8187 F:      Documentation/mn10300/
8188 F:      arch/mn10300/
8189
8190 PARALLEL LCD/KEYPAD PANEL DRIVER
8191 M:      Willy Tarreau <willy@haproxy.com>
8192 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
8193 S:      Odd Fixes
8194 F:      Documentation/misc-devices/lcd-panel-cgram.txt
8195 F:      drivers/misc/panel.c
8196
8197 PARALLEL PORT SUBSYSTEM
8198 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
8199 M:      Sudip Mukherjee <sudip@vectorindia.org>
8200 L:      linux-parport@lists.infradead.org (subscribers-only)
8201 S:      Maintained
8202 F:      drivers/parport/
8203 F:      include/linux/parport*.h
8204 F:      drivers/char/ppdev.c
8205 F:      include/uapi/linux/ppdev.h
8206 F:      Documentation/parport*.txt
8207
8208 PARAVIRT_OPS INTERFACE
8209 M:      Jeremy Fitzhardinge <jeremy@goop.org>
8210 M:      Chris Wright <chrisw@sous-sol.org>
8211 M:      Alok Kataria <akataria@vmware.com>
8212 M:      Rusty Russell <rusty@rustcorp.com.au>
8213 L:      virtualization@lists.linux-foundation.org
8214 S:      Supported
8215 F:      Documentation/virtual/paravirt_ops.txt
8216 F:      arch/*/kernel/paravirt*
8217 F:      arch/*/include/asm/paravirt.h
8218
8219 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
8220 M:      Tim Waugh <tim@cyberelk.net>
8221 L:      linux-parport@lists.infradead.org (subscribers-only)
8222 S:      Maintained
8223 F:      Documentation/blockdev/paride.txt
8224 F:      drivers/block/paride/
8225
8226 PARISC ARCHITECTURE
8227 M:      "James E.J. Bottomley" <jejb@parisc-linux.org>
8228 M:      Helge Deller <deller@gmx.de>
8229 L:      linux-parisc@vger.kernel.org
8230 W:      http://www.parisc-linux.org/
8231 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
8232 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
8233 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
8234 S:      Maintained
8235 F:      arch/parisc/
8236 F:      Documentation/parisc/
8237 F:      drivers/parisc/
8238 F:      drivers/char/agp/parisc-agp.c
8239 F:      drivers/input/serio/gscps2.c
8240 F:      drivers/parport/parport_gsc.*
8241 F:      drivers/tty/serial/8250/8250_gsc.c
8242 F:      drivers/video/fbdev/sti*
8243 F:      drivers/video/console/sti*
8244 F:      drivers/video/logo/logo_parisc*
8245
8246 PC87360 HARDWARE MONITORING DRIVER
8247 M:      Jim Cromie <jim.cromie@gmail.com>
8248 L:      lm-sensors@lm-sensors.org
8249 S:      Maintained
8250 F:      Documentation/hwmon/pc87360
8251 F:      drivers/hwmon/pc87360.c
8252
8253 PC8736x GPIO DRIVER
8254 M:      Jim Cromie <jim.cromie@gmail.com>
8255 S:      Maintained
8256 F:      drivers/char/pc8736x_gpio.c
8257
8258 PC87427 HARDWARE MONITORING DRIVER
8259 M:      Jean Delvare <jdelvare@suse.com>
8260 L:      lm-sensors@lm-sensors.org
8261 S:      Maintained
8262 F:      Documentation/hwmon/pc87427
8263 F:      drivers/hwmon/pc87427.c
8264
8265 PCA9532 LED DRIVER
8266 M:      Riku Voipio <riku.voipio@iki.fi>
8267 S:      Maintained
8268 F:      drivers/leds/leds-pca9532.c
8269 F:      include/linux/leds-pca9532.h
8270
8271 PCA9541 I2C BUS MASTER SELECTOR DRIVER
8272 M:      Guenter Roeck <linux@roeck-us.net>
8273 L:      linux-i2c@vger.kernel.org
8274 S:      Maintained
8275 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
8276
8277 PCDP - PRIMARY CONSOLE AND DEBUG PORT
8278 M:      Khalid Aziz <khalid@gonehiking.org>
8279 S:      Maintained
8280 F:      drivers/firmware/pcdp.*
8281
8282 PCI ERROR RECOVERY
8283 M:      Linas Vepstas <linasvepstas@gmail.com>
8284 L:      linux-pci@vger.kernel.org
8285 S:      Supported
8286 F:      Documentation/PCI/pci-error-recovery.txt
8287
8288 PCI SUBSYSTEM
8289 M:      Bjorn Helgaas <bhelgaas@google.com>
8290 L:      linux-pci@vger.kernel.org
8291 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
8292 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
8293 S:      Supported
8294 F:      Documentation/PCI/
8295 F:      drivers/pci/
8296 F:      include/linux/pci*
8297 F:      arch/x86/pci/
8298 F:      arch/x86/kernel/quirks.c
8299
8300 PCI DRIVER FOR ALTERA PCIE IP
8301 M:      Ley Foon Tan <lftan@altera.com>
8302 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
8303 L:      linux-pci@vger.kernel.org
8304 S:      Supported
8305 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
8306 F:      drivers/pci/host/pcie-altera.c
8307
8308 PCI DRIVER FOR ARM VERSATILE PLATFORM
8309 M:      Rob Herring <robh@kernel.org>
8310 L:      linux-pci@vger.kernel.org
8311 L:      linux-arm-kernel@lists.infradead.org
8312 S:      Maintained
8313 F:      Documentation/devicetree/bindings/pci/versatile.txt
8314 F:      drivers/pci/host/pci-versatile.c
8315
8316 PCI DRIVER FOR APPLIEDMICRO XGENE
8317 M:      Tanmay Inamdar <tinamdar@apm.com>
8318 L:      linux-pci@vger.kernel.org
8319 L:      linux-arm-kernel@lists.infradead.org
8320 S:      Maintained
8321 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
8322 F:      drivers/pci/host/pci-xgene.c
8323
8324 PCI DRIVER FOR FREESCALE LAYERSCAPE
8325 M:      Minghuan Lian <minghuan.Lian@freescale.com>
8326 M:      Mingkai Hu <mingkai.hu@freescale.com>
8327 M:      Roy Zang <tie-fei.zang@freescale.com>
8328 L:      linuxppc-dev@lists.ozlabs.org
8329 L:      linux-pci@vger.kernel.org
8330 L:      linux-arm-kernel@lists.infradead.org
8331 S:      Maintained
8332 F:      drivers/pci/host/*layerscape*
8333
8334 PCI DRIVER FOR IMX6
8335 M:      Richard Zhu <Richard.Zhu@freescale.com>
8336 M:      Lucas Stach <l.stach@pengutronix.de>
8337 L:      linux-pci@vger.kernel.org
8338 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8339 S:      Maintained
8340 F:      drivers/pci/host/*imx6*
8341
8342 PCI DRIVER FOR TI KEYSTONE
8343 M:      Murali Karicheri <m-karicheri2@ti.com>
8344 L:      linux-pci@vger.kernel.org
8345 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8346 S:      Maintained
8347 F:      drivers/pci/host/*keystone*
8348
8349 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
8350 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8351 M:      Jason Cooper <jason@lakedaemon.net>
8352 L:      linux-pci@vger.kernel.org
8353 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8354 S:      Maintained
8355 F:      drivers/pci/host/*mvebu*
8356
8357 PCI DRIVER FOR NVIDIA TEGRA
8358 M:      Thierry Reding <thierry.reding@gmail.com>
8359 L:      linux-tegra@vger.kernel.org
8360 L:      linux-pci@vger.kernel.org
8361 S:      Supported
8362 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
8363 F:      drivers/pci/host/pci-tegra.c
8364
8365 PCI DRIVER FOR TI DRA7XX
8366 M:      Kishon Vijay Abraham I <kishon@ti.com>
8367 L:      linux-omap@vger.kernel.org
8368 L:      linux-pci@vger.kernel.org
8369 S:      Supported
8370 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
8371 F:      drivers/pci/host/pci-dra7xx.c
8372
8373 PCI DRIVER FOR RENESAS R-CAR
8374 M:      Simon Horman <horms@verge.net.au>
8375 L:      linux-pci@vger.kernel.org
8376 L:      linux-renesas-soc@vger.kernel.org
8377 S:      Maintained
8378 F:      drivers/pci/host/*rcar*
8379
8380 PCI DRIVER FOR SAMSUNG EXYNOS
8381 M:      Jingoo Han <jingoohan1@gmail.com>
8382 L:      linux-pci@vger.kernel.org
8383 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8384 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8385 S:      Maintained
8386 F:      drivers/pci/host/pci-exynos.c
8387
8388 PCI DRIVER FOR SYNOPSIS DESIGNWARE
8389 M:      Jingoo Han <jingoohan1@gmail.com>
8390 M:      Pratyush Anand <pratyush.anand@gmail.com>
8391 L:      linux-pci@vger.kernel.org
8392 S:      Maintained
8393 F:      drivers/pci/host/*designware*
8394
8395 PCI DRIVER FOR GENERIC OF HOSTS
8396 M:      Will Deacon <will.deacon@arm.com>
8397 L:      linux-pci@vger.kernel.org
8398 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8399 S:      Maintained
8400 F:      Documentation/devicetree/bindings/pci/host-generic-pci.txt
8401 F:      drivers/pci/host/pci-host-generic.c
8402
8403 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
8404 M:      Keith Busch <keith.busch@intel.com>
8405 L:      linux-pci@vger.kernel.org
8406 S:      Supported
8407 F:      arch/x86/pci/vmd.c
8408
8409 PCIE DRIVER FOR ST SPEAR13XX
8410 M:      Pratyush Anand <pratyush.anand@gmail.com>
8411 L:      linux-pci@vger.kernel.org
8412 S:      Maintained
8413 F:      drivers/pci/host/*spear*
8414
8415 PCI MSI DRIVER FOR ALTERA MSI IP
8416 M:      Ley Foon Tan <lftan@altera.com>
8417 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
8418 L:      linux-pci@vger.kernel.org
8419 S:      Supported
8420 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
8421 F:      drivers/pci/host/pcie-altera-msi.c
8422
8423 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
8424 M:      Duc Dang <dhdang@apm.com>
8425 L:      linux-pci@vger.kernel.org
8426 L:      linux-arm-kernel@lists.infradead.org
8427 S:      Maintained
8428 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
8429 F:      drivers/pci/host/pci-xgene-msi.c
8430
8431 PCIE DRIVER FOR HISILICON
8432 M:      Zhou Wang <wangzhou1@hisilicon.com>
8433 M:      Gabriele Paoloni <gabriele.paoloni@huawei.com>
8434 L:      linux-pci@vger.kernel.org
8435 S:      Maintained
8436 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
8437 F:      drivers/pci/host/pcie-hisi.c
8438
8439 PCIE DRIVER FOR QUALCOMM MSM
8440 M:     Stanimir Varbanov <svarbanov@mm-sol.com>
8441 L:     linux-pci@vger.kernel.org
8442 L:     linux-arm-msm@vger.kernel.org
8443 S:     Maintained
8444 F:     drivers/pci/host/*qcom*
8445
8446 PCMCIA SUBSYSTEM
8447 P:      Linux PCMCIA Team
8448 L:      linux-pcmcia@lists.infradead.org
8449 W:      http://lists.infradead.org/mailman/listinfo/linux-pcmcia
8450 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
8451 S:      Maintained
8452 F:      Documentation/pcmcia/
8453 F:      drivers/pcmcia/
8454 F:      include/pcmcia/
8455
8456 PCNET32 NETWORK DRIVER
8457 M:      Don Fry <pcnet32@frontier.com>
8458 L:      netdev@vger.kernel.org
8459 S:      Maintained
8460 F:      drivers/net/ethernet/amd/pcnet32.c
8461
8462 PCRYPT PARALLEL CRYPTO ENGINE
8463 M:      Steffen Klassert <steffen.klassert@secunet.com>
8464 L:      linux-crypto@vger.kernel.org
8465 S:      Maintained
8466 F:      crypto/pcrypt.c
8467 F:      include/crypto/pcrypt.h
8468
8469 PER-CPU MEMORY ALLOCATOR
8470 M:      Tejun Heo <tj@kernel.org>
8471 M:      Christoph Lameter <cl@linux-foundation.org>
8472 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
8473 S:      Maintained
8474 F:      include/linux/percpu*.h
8475 F:      mm/percpu*.c
8476 F:      arch/*/include/asm/percpu.h
8477
8478 PER-TASK DELAY ACCOUNTING
8479 M:      Balbir Singh <bsingharora@gmail.com>
8480 S:      Maintained
8481 F:      include/linux/delayacct.h
8482 F:      kernel/delayacct.c
8483
8484 PERFORMANCE EVENTS SUBSYSTEM
8485 M:      Peter Zijlstra <peterz@infradead.org>
8486 M:      Ingo Molnar <mingo@redhat.com>
8487 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
8488 L:      linux-kernel@vger.kernel.org
8489 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
8490 S:      Supported
8491 F:      kernel/events/*
8492 F:      include/linux/perf_event.h
8493 F:      include/uapi/linux/perf_event.h
8494 F:      arch/*/kernel/perf_event*.c
8495 F:      arch/*/kernel/*/perf_event*.c
8496 F:      arch/*/kernel/*/*/perf_event*.c
8497 F:      arch/*/include/asm/perf_event.h
8498 F:      arch/*/kernel/perf_callchain.c
8499 F:      tools/perf/
8500
8501 PERSONALITY HANDLING
8502 M:      Christoph Hellwig <hch@infradead.org>
8503 L:      linux-abi-devel@lists.sourceforge.net
8504 S:      Maintained
8505 F:      include/linux/personality.h
8506 F:      include/uapi/linux/personality.h
8507
8508 PHONET PROTOCOL
8509 M:      Remi Denis-Courmont <courmisch@gmail.com>
8510 S:      Supported
8511 F:      Documentation/networking/phonet.txt
8512 F:      include/linux/phonet.h
8513 F:      include/net/phonet/
8514 F:      include/uapi/linux/phonet.h
8515 F:      net/phonet/
8516
8517 PHRAM MTD DRIVER
8518 M:      Joern Engel <joern@lazybastard.org>
8519 L:      linux-mtd@lists.infradead.org
8520 S:      Maintained
8521 F:      drivers/mtd/devices/phram.c
8522
8523 PICOLCD HID DRIVER
8524 M:      Bruno PrĂ©mont <bonbons@linux-vserver.org>
8525 L:      linux-input@vger.kernel.org
8526 S:      Maintained
8527 F:      drivers/hid/hid-picolcd*
8528
8529 PICOXCELL SUPPORT
8530 M:      Jamie Iles <jamie@jamieiles.com>
8531 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8532 T:      git git://github.com/jamieiles/linux-2.6-ji.git
8533 S:      Supported
8534 F:      arch/arm/boot/dts/picoxcell*
8535 F:      arch/arm/mach-picoxcell/
8536 F:      drivers/crypto/picoxcell*
8537
8538 PIN CONTROL SUBSYSTEM
8539 M:      Linus Walleij <linus.walleij@linaro.org>
8540 L:      linux-gpio@vger.kernel.org
8541 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
8542 S:      Maintained
8543 F:      drivers/pinctrl/
8544 F:      include/linux/pinctrl/
8545
8546 PIN CONTROLLER - ATMEL AT91
8547 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
8548 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8549 S:      Maintained
8550 F:      drivers/pinctrl/pinctrl-at91.*
8551
8552 PIN CONTROLLER - ATMEL AT91 PIO4
8553 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
8554 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8555 L:      linux-gpio@vger.kernel.org
8556 S:      Supported
8557 F:      drivers/pinctrl/pinctrl-at91-pio4.*
8558
8559 PIN CONTROLLER - INTEL
8560 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8561 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
8562 S:      Maintained
8563 F:      drivers/pinctrl/intel/
8564
8565 PIN CONTROLLER - RENESAS
8566 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8567 M:      Geert Uytterhoeven <geert+renesas@glider.be>
8568 L:      linux-renesas-soc@vger.kernel.org
8569 S:      Maintained
8570 F:      drivers/pinctrl/sh-pfc/
8571
8572 PIN CONTROLLER - SAMSUNG
8573 M:      Tomasz Figa <tomasz.figa@gmail.com>
8574 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8575 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8576 S:      Maintained
8577 F:      drivers/pinctrl/samsung/
8578
8579 PIN CONTROLLER - SINGLE
8580 M:      Tony Lindgren <tony@atomide.com>
8581 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
8582 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8583 L:      linux-omap@vger.kernel.org
8584 S:      Maintained
8585 F:      drivers/pinctrl/pinctrl-single.c
8586
8587 PIN CONTROLLER - ST SPEAR
8588 M:      Viresh Kumar <vireshk@kernel.org>
8589 L:      spear-devel@list.st.com
8590 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8591 W:      http://www.st.com/spear
8592 S:      Maintained
8593 F:      drivers/pinctrl/spear/
8594
8595 PKTCDVD DRIVER
8596 M:      Jiri Kosina <jikos@kernel.org>
8597 S:      Maintained
8598 F:      drivers/block/pktcdvd.c
8599 F:      include/linux/pktcdvd.h
8600 F:      include/uapi/linux/pktcdvd.h
8601
8602 PKUNITY SOC DRIVERS
8603 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
8604 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
8605 S:      Maintained
8606 T:      git git://github.com/gxt/linux.git
8607 F:      drivers/input/serio/i8042-unicore32io.h
8608 F:      drivers/i2c/busses/i2c-puv3.c
8609 F:      drivers/video/fbdev/fb-puv3.c
8610 F:      drivers/rtc/rtc-puv3.c
8611
8612 PMBUS HARDWARE MONITORING DRIVERS
8613 M:      Guenter Roeck <linux@roeck-us.net>
8614 L:      lm-sensors@lm-sensors.org
8615 W:      http://www.lm-sensors.org/
8616 W:      http://www.roeck-us.net/linux/drivers/
8617 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8618 S:      Maintained
8619 F:      Documentation/hwmon/pmbus
8620 F:      drivers/hwmon/pmbus/
8621 F:      include/linux/i2c/pmbus.h
8622
8623 PMC SIERRA MaxRAID DRIVER
8624 L:      linux-scsi@vger.kernel.org
8625 W:      http://www.pmc-sierra.com/
8626 S:      Orphan
8627 F:      drivers/scsi/pmcraid.*
8628
8629 PMC SIERRA PM8001 DRIVER
8630 M:      Jack Wang <jinpu.wang@profitbricks.com>
8631 M:      lindar_liu@usish.com
8632 L:      pmchba@pmcs.com
8633 L:      linux-scsi@vger.kernel.org
8634 S:      Supported
8635 F:      drivers/scsi/pm8001/
8636
8637 POSIX CLOCKS and TIMERS
8638 M:      Thomas Gleixner <tglx@linutronix.de>
8639 L:      linux-kernel@vger.kernel.org
8640 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8641 S:      Maintained
8642 F:      fs/timerfd.c
8643 F:      include/linux/timer*
8644 F:      kernel/time/*timer*
8645
8646 POWER MANAGEMENT CORE
8647 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
8648 L:      linux-pm@vger.kernel.org
8649 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
8650 S:      Supported
8651 F:      drivers/base/power/
8652 F:      include/linux/pm.h
8653 F:      include/linux/pm_*
8654 F:      include/linux/powercap.h
8655 F:      drivers/powercap/
8656
8657 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
8658 M:      Sebastian Reichel <sre@kernel.org>
8659 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
8660 M:      David Woodhouse <dwmw2@infradead.org>
8661 L:      linux-pm@vger.kernel.org
8662 T:      git git://git.infradead.org/battery-2.6.git
8663 S:      Maintained
8664 F:      include/linux/power_supply.h
8665 F:      drivers/power/
8666 X:      drivers/power/avs/
8667
8668 POWER STATE COORDINATION INTERFACE (PSCI)
8669 M:      Mark Rutland <mark.rutland@arm.com>
8670 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
8671 L:      linux-arm-kernel@lists.infradead.org
8672 S:      Maintained
8673 F:      drivers/firmware/psci.c
8674 F:      include/linux/psci.h
8675 F:      include/uapi/linux/psci.h
8676
8677 PNP SUPPORT
8678 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
8679 S:      Maintained
8680 F:      drivers/pnp/
8681
8682 PPP PROTOCOL DRIVERS AND COMPRESSORS
8683 M:      Paul Mackerras <paulus@samba.org>
8684 L:      linux-ppp@vger.kernel.org
8685 S:      Maintained
8686 F:      drivers/net/ppp/ppp_*
8687
8688 PPP OVER ATM (RFC 2364)
8689 M:      Mitchell Blank Jr <mitch@sfgoth.com>
8690 S:      Maintained
8691 F:      net/atm/pppoatm.c
8692 F:      include/uapi/linux/atmppp.h
8693
8694 PPP OVER ETHERNET
8695 M:      Michal Ostrowski <mostrows@earthlink.net>
8696 S:      Maintained
8697 F:      drivers/net/ppp/pppoe.c
8698 F:      drivers/net/ppp/pppox.c
8699
8700 PPP OVER L2TP
8701 M:      James Chapman <jchapman@katalix.com>
8702 S:      Maintained
8703 F:      net/l2tp/l2tp_ppp.c
8704 F:      include/linux/if_pppol2tp.h
8705 F:      include/uapi/linux/if_pppol2tp.h
8706
8707 PPS SUPPORT
8708 M:      Rodolfo Giometti <giometti@enneenne.com>
8709 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
8710 L:      linuxpps@ml.enneenne.com (subscribers-only)
8711 S:      Maintained
8712 F:      Documentation/pps/
8713 F:      drivers/pps/
8714 F:      include/linux/pps*.h
8715
8716 PPTP DRIVER
8717 M:      Dmitry Kozlov <xeb@mail.ru>
8718 L:      netdev@vger.kernel.org
8719 S:      Maintained
8720 F:      drivers/net/ppp/pptp.c
8721 W:      http://sourceforge.net/projects/accel-pptp
8722
8723 PREEMPTIBLE KERNEL
8724 M:      Robert Love <rml@tech9.net>
8725 L:      kpreempt-tech@lists.sourceforge.net
8726 W:      ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
8727 S:      Supported
8728 F:      Documentation/preempt-locking.txt
8729 F:      include/linux/preempt.h
8730
8731 PRISM54 WIRELESS DRIVER
8732 M:      "Luis R. Rodriguez" <mcgrof@gmail.com>
8733 L:      linux-wireless@vger.kernel.org
8734 W:      http://wireless.kernel.org/en/users/Drivers/p54
8735 S:      Obsolete
8736 F:      drivers/net/wireless/intersil/prism54/
8737
8738 PS3 NETWORK SUPPORT
8739 M:      Geoff Levand <geoff@infradead.org>
8740 L:      netdev@vger.kernel.org
8741 L:      linuxppc-dev@lists.ozlabs.org
8742 S:      Maintained
8743 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
8744
8745 PS3 PLATFORM SUPPORT
8746 M:      Geoff Levand <geoff@infradead.org>
8747 L:      linuxppc-dev@lists.ozlabs.org
8748 S:      Maintained
8749 F:      arch/powerpc/boot/ps3*
8750 F:      arch/powerpc/include/asm/lv1call.h
8751 F:      arch/powerpc/include/asm/ps3*.h
8752 F:      arch/powerpc/platforms/ps3/
8753 F:      drivers/*/ps3*
8754 F:      drivers/ps3/
8755 F:      drivers/rtc/rtc-ps3.c
8756 F:      drivers/usb/host/*ps3.c
8757 F:      sound/ppc/snd_ps3*
8758
8759 PS3VRAM DRIVER
8760 M:      Jim Paris <jim@jtan.com>
8761 M:      Geoff Levand <geoff@infradead.org>
8762 L:      linuxppc-dev@lists.ozlabs.org
8763 S:      Maintained
8764 F:      drivers/block/ps3vram.c
8765
8766 PSTORE FILESYSTEM
8767 M:      Anton Vorontsov <anton@enomsg.org>
8768 M:      Colin Cross <ccross@android.com>
8769 M:      Kees Cook <keescook@chromium.org>
8770 M:      Tony Luck <tony.luck@intel.com>
8771 S:      Maintained
8772 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
8773 F:      fs/pstore/
8774 F:      include/linux/pstore*
8775 F:      drivers/firmware/efi/efi-pstore.c
8776 F:      drivers/acpi/apei/erst.c
8777
8778 PTP HARDWARE CLOCK SUPPORT
8779 M:      Richard Cochran <richardcochran@gmail.com>
8780 L:      netdev@vger.kernel.org
8781 S:      Maintained
8782 W:      http://linuxptp.sourceforge.net/
8783 F:      Documentation/ABI/testing/sysfs-ptp
8784 F:      Documentation/ptp/*
8785 F:      drivers/net/ethernet/freescale/gianfar_ptp.c
8786 F:      drivers/net/phy/dp83640*
8787 F:      drivers/ptp/*
8788 F:      include/linux/ptp_cl*
8789
8790 PTRACE SUPPORT
8791 M:      Roland McGrath <roland@hack.frob.com>
8792 M:      Oleg Nesterov <oleg@redhat.com>
8793 S:      Maintained
8794 F:      include/asm-generic/syscall.h
8795 F:      include/linux/ptrace.h
8796 F:      include/linux/regset.h
8797 F:      include/linux/tracehook.h
8798 F:      include/uapi/linux/ptrace.h
8799 F:      kernel/ptrace.c
8800
8801 PVRUSB2 VIDEO4LINUX DRIVER
8802 M:      Mike Isely <isely@pobox.com>
8803 L:      pvrusb2@isely.net       (subscribers-only)
8804 L:      linux-media@vger.kernel.org
8805 W:      http://www.isely.net/pvrusb2/
8806 T:      git git://linuxtv.org/media_tree.git
8807 S:      Maintained
8808 F:      Documentation/video4linux/README.pvrusb2
8809 F:      drivers/media/usb/pvrusb2/
8810
8811 PWC WEBCAM DRIVER
8812 M:      Hans de Goede <hdegoede@redhat.com>
8813 L:      linux-media@vger.kernel.org
8814 T:      git git://linuxtv.org/media_tree.git
8815 S:      Maintained
8816 F:      drivers/media/usb/pwc/*
8817
8818 PWM FAN DRIVER
8819 M:      Kamil Debski <k.debski@samsung.com>
8820 L:      lm-sensors@lm-sensors.org
8821 S:      Supported
8822 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
8823 F:      Documentation/hwmon/pwm-fan
8824 F:      drivers/hwmon/pwm-fan.c
8825
8826 PWM SUBSYSTEM
8827 M:      Thierry Reding <thierry.reding@gmail.com>
8828 L:      linux-pwm@vger.kernel.org
8829 S:      Maintained
8830 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
8831 F:      Documentation/pwm.txt
8832 F:      Documentation/devicetree/bindings/pwm/
8833 F:      include/linux/pwm.h
8834 F:      drivers/pwm/
8835 F:      drivers/video/backlight/pwm_bl.c
8836 F:      include/linux/pwm_backlight.h
8837
8838 PXA2xx/PXA3xx SUPPORT
8839 M:      Daniel Mack <daniel@zonque.org>
8840 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
8841 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8842 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8843 T:      git git://github.com/hzhuang1/linux.git
8844 T:      git git://github.com/rjarzmik/linux.git
8845 S:      Maintained
8846 F:      arch/arm/boot/dts/pxa*
8847 F:      arch/arm/mach-pxa/
8848 F:      drivers/dma/pxa*
8849 F:      drivers/pcmcia/pxa2xx*
8850 F:      drivers/pinctrl/pxa/
8851 F:      drivers/spi/spi-pxa2xx*
8852 F:      drivers/usb/gadget/udc/pxa2*
8853 F:      include/sound/pxa2xx-lib.h
8854 F:      sound/arm/pxa*
8855 F:      sound/soc/pxa/
8856
8857 PXA GPIO DRIVER
8858 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8859 L:      linux-gpio@vger.kernel.org
8860 S:      Maintained
8861 F:      drivers/gpio/gpio-pxa.c
8862
8863 PXA3xx NAND FLASH DRIVER
8864 M:      Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
8865 L:      linux-mtd@lists.infradead.org
8866 S:      Maintained
8867 F:      drivers/mtd/nand/pxa3xx_nand.c
8868
8869 MMP SUPPORT
8870 M:      Eric Miao <eric.y.miao@gmail.com>
8871 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
8872 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8873 T:      git git://github.com/hzhuang1/linux.git
8874 T:      git git://git.linaro.org/people/ycmiao/pxa-linux.git
8875 S:      Maintained
8876 F:      arch/arm/boot/dts/mmp*
8877 F:      arch/arm/mach-mmp/
8878
8879 PXA MMCI DRIVER
8880 S:      Orphan
8881
8882 PXA RTC DRIVER
8883 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8884 L:      rtc-linux@googlegroups.com
8885 S:      Maintained
8886
8887 QAT DRIVER
8888 M:      Tadeusz Struk <tadeusz.struk@intel.com>
8889 L:      qat-linux@intel.com
8890 S:      Supported
8891 F:      drivers/crypto/qat/
8892
8893 QIB DRIVER
8894 M:      Mike Marciniszyn <infinipath@intel.com>
8895 L:      linux-rdma@vger.kernel.org
8896 S:      Supported
8897 F:      drivers/infiniband/hw/qib/
8898
8899 QLOGIC QLA1280 SCSI DRIVER
8900 M:      Michael Reed <mdr@sgi.com>
8901 L:      linux-scsi@vger.kernel.org
8902 S:      Maintained
8903 F:      drivers/scsi/qla1280.[ch]
8904
8905 QLOGIC QLA2XXX FC-SCSI DRIVER
8906 M:      qla2xxx-upstream@qlogic.com
8907 L:      linux-scsi@vger.kernel.org
8908 S:      Supported
8909 F:      Documentation/scsi/LICENSE.qla2xxx
8910 F:      drivers/scsi/qla2xxx/
8911
8912 QLOGIC QLA4XXX iSCSI DRIVER
8913 M:      QLogic-Storage-Upstream@qlogic.com
8914 L:      linux-scsi@vger.kernel.org
8915 S:      Supported
8916 F:      Documentation/scsi/LICENSE.qla4xxx
8917 F:      drivers/scsi/qla4xxx/
8918
8919 QLOGIC QLA3XXX NETWORK DRIVER
8920 M:      Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
8921 M:      Ron Mercer <ron.mercer@qlogic.com>
8922 M:      linux-driver@qlogic.com
8923 L:      netdev@vger.kernel.org
8924 S:      Supported
8925 F:      Documentation/networking/LICENSE.qla3xxx
8926 F:      drivers/net/ethernet/qlogic/qla3xxx.*
8927
8928 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
8929 M:      Dept-GELinuxNICDev@qlogic.com
8930 L:      netdev@vger.kernel.org
8931 S:      Supported
8932 F:      drivers/net/ethernet/qlogic/qlcnic/
8933
8934 QLOGIC QLGE 10Gb ETHERNET DRIVER
8935 M:      Harish Patil <harish.patil@qlogic.com>
8936 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
8937 M:      Dept-GELinuxNICDev@qlogic.com
8938 M:      linux-driver@qlogic.com
8939 L:      netdev@vger.kernel.org
8940 S:      Supported
8941 F:      drivers/net/ethernet/qlogic/qlge/
8942
8943 QLOGIC QL4xxx ETHERNET DRIVER
8944 M:      Yuval Mintz <Yuval.Mintz@qlogic.com>
8945 M:      Ariel Elior <Ariel.Elior@qlogic.com>
8946 M:      everest-linux-l2@qlogic.com
8947 L:      netdev@vger.kernel.org
8948 S:      Supported
8949 F:      drivers/net/ethernet/qlogic/qed/
8950 F:      include/linux/qed/
8951 F:      drivers/net/ethernet/qlogic/qede/
8952
8953 QNX4 FILESYSTEM
8954 M:      Anders Larsen <al@alarsen.net>
8955 W:      http://www.alarsen.net/linux/qnx4fs/
8956 S:      Maintained
8957 F:      fs/qnx4/
8958 F:      include/uapi/linux/qnx4_fs.h
8959 F:      include/uapi/linux/qnxtypes.h
8960
8961 QT1010 MEDIA DRIVER
8962 M:      Antti Palosaari <crope@iki.fi>
8963 L:      linux-media@vger.kernel.org
8964 W:      https://linuxtv.org
8965 W:      http://palosaari.fi/linux/
8966 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8967 T:      git git://linuxtv.org/anttip/media_tree.git
8968 S:      Maintained
8969 F:      drivers/media/tuners/qt1010*
8970
8971 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
8972 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
8973 L:      linux-wireless@vger.kernel.org
8974 L:      ath9k-devel@lists.ath9k.org
8975 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
8976 S:      Supported
8977 F:      drivers/net/wireless/ath/ath9k/
8978
8979 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
8980 M:      Kalle Valo <kvalo@qca.qualcomm.com>
8981 L:      ath10k@lists.infradead.org
8982 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
8983 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
8984 S:      Supported
8985 F:      drivers/net/wireless/ath/ath10k/
8986
8987 QUALCOMM HEXAGON ARCHITECTURE
8988 M:      Richard Kuo <rkuo@codeaurora.org>
8989 L:      linux-hexagon@vger.kernel.org
8990 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rkuo/linux-hexagon-kernel.git
8991 S:      Supported
8992 F:      arch/hexagon/
8993
8994 QUALCOMM WCN36XX WIRELESS DRIVER
8995 M:      Eugene Krasnikov <k.eugene.e@gmail.com>
8996 L:      wcn36xx@lists.infradead.org
8997 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
8998 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
8999 S:      Supported
9000 F:      drivers/net/wireless/ath/wcn36xx/
9001
9002 RADOS BLOCK DEVICE (RBD)
9003 M:      Ilya Dryomov <idryomov@gmail.com>
9004 M:      Sage Weil <sage@redhat.com>
9005 M:      Alex Elder <elder@kernel.org>
9006 L:      ceph-devel@vger.kernel.org
9007 W:      http://ceph.com/
9008 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
9009 T:      git git://github.com/ceph/ceph-client.git
9010 S:      Supported
9011 F:      Documentation/ABI/testing/sysfs-bus-rbd
9012 F:      drivers/block/rbd.c
9013 F:      drivers/block/rbd_types.h
9014
9015 RADEON FRAMEBUFFER DISPLAY DRIVER
9016 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
9017 L:      linux-fbdev@vger.kernel.org
9018 S:      Maintained
9019 F:      drivers/video/fbdev/aty/radeon*
9020 F:      include/uapi/linux/radeonfb.h
9021
9022 RADIOSHARK RADIO DRIVER
9023 M:      Hans de Goede <hdegoede@redhat.com>
9024 L:      linux-media@vger.kernel.org
9025 T:      git git://linuxtv.org/media_tree.git
9026 S:      Maintained
9027 F:      drivers/media/radio/radio-shark.c
9028
9029 RADIOSHARK2 RADIO DRIVER
9030 M:      Hans de Goede <hdegoede@redhat.com>
9031 L:      linux-media@vger.kernel.org
9032 T:      git git://linuxtv.org/media_tree.git
9033 S:      Maintained
9034 F:      drivers/media/radio/radio-shark2.c
9035 F:      drivers/media/radio/radio-tea5777.c
9036
9037 RAGE128 FRAMEBUFFER DISPLAY DRIVER
9038 M:      Paul Mackerras <paulus@samba.org>
9039 L:      linux-fbdev@vger.kernel.org
9040 S:      Maintained
9041 F:      drivers/video/fbdev/aty/aty128fb.c
9042
9043 RALINK MIPS ARCHITECTURE
9044 M:      John Crispin <blogic@openwrt.org>
9045 L:      linux-mips@linux-mips.org
9046 S:      Maintained
9047 F:      arch/mips/ralink
9048
9049 RALINK RT2X00 WIRELESS LAN DRIVER
9050 P:      rt2x00 project
9051 M:      Stanislaw Gruszka <sgruszka@redhat.com>
9052 M:      Helmut Schaa <helmut.schaa@googlemail.com>
9053 L:      linux-wireless@vger.kernel.org
9054 S:      Maintained
9055 F:      drivers/net/wireless/ralink/rt2x00/
9056
9057 RAMDISK RAM BLOCK DEVICE DRIVER
9058 M:      Jens Axboe <axboe@kernel.dk>
9059 S:      Maintained
9060 F:      Documentation/blockdev/ramdisk.txt
9061 F:      drivers/block/brd.c
9062
9063 RANDOM NUMBER DRIVER
9064 M:      "Theodore Ts'o" <tytso@mit.edu>
9065 S:      Maintained
9066 F:      drivers/char/random.c
9067
9068 RAPIDIO SUBSYSTEM
9069 M:      Matt Porter <mporter@kernel.crashing.org>
9070 M:      Alexandre Bounine <alexandre.bounine@idt.com>
9071 S:      Maintained
9072 F:      drivers/rapidio/
9073
9074 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
9075 L:      linux-wireless@vger.kernel.org
9076 S:      Orphan
9077 F:      drivers/net/wireless/ray*
9078
9079 RCUTORTURE MODULE
9080 M:      Josh Triplett <josh@joshtriplett.org>
9081 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9082 L:      linux-kernel@vger.kernel.org
9083 S:      Supported
9084 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9085 F:      Documentation/RCU/torture.txt
9086 F:      kernel/rcu/rcutorture.c
9087
9088 RCUTORTURE TEST FRAMEWORK
9089 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9090 M:      Josh Triplett <josh@joshtriplett.org>
9091 R:      Steven Rostedt <rostedt@goodmis.org>
9092 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9093 R:      Lai Jiangshan <jiangshanlai@gmail.com>
9094 L:      linux-kernel@vger.kernel.org
9095 S:      Supported
9096 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9097 F:      tools/testing/selftests/rcutorture
9098
9099 RDC R-321X SoC
9100 M:      Florian Fainelli <florian@openwrt.org>
9101 S:      Maintained
9102
9103 RDC R6040 FAST ETHERNET DRIVER
9104 M:      Florian Fainelli <florian@openwrt.org>
9105 L:      netdev@vger.kernel.org
9106 S:      Maintained
9107 F:      drivers/net/ethernet/rdc/r6040.c
9108
9109 RDS - RELIABLE DATAGRAM SOCKETS
9110 M:      Chien Yen <chien.yen@oracle.com>
9111 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
9112 S:      Supported
9113 F:      net/rds/
9114
9115 READ-COPY UPDATE (RCU)
9116 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9117 M:      Josh Triplett <josh@joshtriplett.org>
9118 R:      Steven Rostedt <rostedt@goodmis.org>
9119 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9120 R:      Lai Jiangshan <jiangshanlai@gmail.com>
9121 L:      linux-kernel@vger.kernel.org
9122 W:      http://www.rdrop.com/users/paulmck/RCU/
9123 S:      Supported
9124 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9125 F:      Documentation/RCU/
9126 X:      Documentation/RCU/torture.txt
9127 F:      include/linux/rcu*
9128 X:      include/linux/srcu.h
9129 F:      kernel/rcu/
9130 X:      kernel/torture.c
9131
9132 REAL TIME CLOCK (RTC) SUBSYSTEM
9133 M:      Alessandro Zummo <a.zummo@towertech.it>
9134 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
9135 L:      rtc-linux@googlegroups.com
9136 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
9137 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
9138 S:      Maintained
9139 F:      Documentation/rtc.txt
9140 F:      drivers/rtc/
9141 F:      include/linux/rtc.h
9142 F:      include/uapi/linux/rtc.h
9143
9144 REALTEK AUDIO CODECS
9145 M:      Bard Liao <bardliao@realtek.com>
9146 M:      Oder Chiou <oder_chiou@realtek.com>
9147 S:      Maintained
9148 F:      sound/soc/codecs/rt*
9149 F:      include/sound/rt*.h
9150
9151 REISERFS FILE SYSTEM
9152 L:      reiserfs-devel@vger.kernel.org
9153 S:      Supported
9154 F:      fs/reiserfs/
9155
9156 REGISTER MAP ABSTRACTION
9157 M:      Mark Brown <broonie@kernel.org>
9158 L:      linux-kernel@vger.kernel.org
9159 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
9160 S:      Supported
9161 F:      drivers/base/regmap/
9162 F:      include/linux/regmap.h
9163
9164 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
9165 M:      Ohad Ben-Cohen <ohad@wizery.com>
9166 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
9167 S:      Maintained
9168 F:      drivers/remoteproc/
9169 F:      Documentation/remoteproc.txt
9170 F:      include/linux/remoteproc.h
9171
9172 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
9173 M:      Ohad Ben-Cohen <ohad@wizery.com>
9174 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
9175 S:      Maintained
9176 F:      drivers/rpmsg/
9177 F:      Documentation/rpmsg.txt
9178 F:      include/linux/rpmsg.h
9179
9180 RENESAS ETHERNET DRIVERS
9181 R:      Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
9182 L:      netdev@vger.kernel.org
9183 L:      linux-renesas-soc@vger.kernel.org
9184 F:      drivers/net/ethernet/renesas/
9185 F:      include/linux/sh_eth.h
9186
9187 RENESAS USB2 PHY DRIVER
9188 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
9189 L:      linux-renesas-soc@vger.kernel.org
9190 S:      Maintained
9191 F:      drivers/phy/phy-rcar-gen3-usb2.c
9192
9193 RESET CONTROLLER FRAMEWORK
9194 M:      Philipp Zabel <p.zabel@pengutronix.de>
9195 T:      git git://git.pengutronix.de/git/pza/linux
9196 S:      Maintained
9197 F:      drivers/reset/
9198 F:      Documentation/devicetree/bindings/reset/
9199 F:      include/dt-bindings/reset/
9200 F:      include/linux/reset.h
9201 F:      include/linux/reset-controller.h
9202
9203 RFKILL
9204 M:      Johannes Berg <johannes@sipsolutions.net>
9205 L:      linux-wireless@vger.kernel.org
9206 W:      http://wireless.kernel.org/
9207 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
9208 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
9209 S:      Maintained
9210 F:      Documentation/rfkill.txt
9211 F:      net/rfkill/
9212
9213 RHASHTABLE
9214 M:      Thomas Graf <tgraf@suug.ch>
9215 L:      netdev@vger.kernel.org
9216 S:      Maintained
9217 F:      lib/rhashtable.c
9218 F:      include/linux/rhashtable.h
9219
9220 RICOH SMARTMEDIA/XD DRIVER
9221 M:      Maxim Levitsky <maximlevitsky@gmail.com>
9222 S:      Maintained
9223 F:      drivers/mtd/nand/r852.c
9224 F:      drivers/mtd/nand/r852.h
9225
9226 RICOH R5C592 MEMORYSTICK DRIVER
9227 M:      Maxim Levitsky <maximlevitsky@gmail.com>
9228 S:      Maintained
9229 F:      drivers/memstick/host/r592.*
9230
9231 ROCCAT DRIVERS
9232 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
9233 W:      http://sourceforge.net/projects/roccat/
9234 S:      Maintained
9235 F:      drivers/hid/hid-roccat*
9236 F:      include/linux/hid-roccat*
9237 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
9238
9239 ROCKER DRIVER
9240 M:      Jiri Pirko <jiri@resnulli.us>
9241 M:      Scott Feldman <sfeldma@gmail.com>
9242 L:      netdev@vger.kernel.org
9243 S:      Supported
9244 F:      drivers/net/ethernet/rocker/
9245
9246 ROCKETPORT DRIVER
9247 P:      Comtrol Corp.
9248 W:      http://www.comtrol.com
9249 S:      Maintained
9250 F:      Documentation/serial/rocket.txt
9251 F:      drivers/tty/rocket*
9252
9253 ROCKETPORT EXPRESS/INFINITY DRIVER
9254 M:      Kevin Cernekee <cernekee@gmail.com>
9255 L:      linux-serial@vger.kernel.org
9256 S:      Odd Fixes
9257 F:      drivers/tty/serial/rp2.*
9258
9259 ROSE NETWORK LAYER
9260 M:      Ralf Baechle <ralf@linux-mips.org>
9261 L:      linux-hams@vger.kernel.org
9262 W:      http://www.linux-ax25.org/
9263 S:      Maintained
9264 F:      include/net/rose.h
9265 F:      include/uapi/linux/rose.h
9266 F:      net/rose/
9267
9268 RTL2830 MEDIA DRIVER
9269 M:      Antti Palosaari <crope@iki.fi>
9270 L:      linux-media@vger.kernel.org
9271 W:      https://linuxtv.org
9272 W:      http://palosaari.fi/linux/
9273 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9274 T:      git git://linuxtv.org/anttip/media_tree.git
9275 S:      Maintained
9276 F:      drivers/media/dvb-frontends/rtl2830*
9277
9278 RTL2832 MEDIA DRIVER
9279 M:      Antti Palosaari <crope@iki.fi>
9280 L:      linux-media@vger.kernel.org
9281 W:      https://linuxtv.org
9282 W:      http://palosaari.fi/linux/
9283 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9284 T:      git git://linuxtv.org/anttip/media_tree.git
9285 S:      Maintained
9286 F:      drivers/media/dvb-frontends/rtl2832*
9287
9288 RTL2832_SDR MEDIA DRIVER
9289 M:      Antti Palosaari <crope@iki.fi>
9290 L:      linux-media@vger.kernel.org
9291 W:      https://linuxtv.org
9292 W:      http://palosaari.fi/linux/
9293 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9294 T:      git git://linuxtv.org/anttip/media_tree.git
9295 S:      Maintained
9296 F:      drivers/media/dvb-frontends/rtl2832_sdr*
9297
9298 RTL8180 WIRELESS DRIVER
9299 L:      linux-wireless@vger.kernel.org
9300 W:      http://wireless.kernel.org/
9301 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9302 S:      Orphan
9303 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
9304
9305 RTL8187 WIRELESS DRIVER
9306 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
9307 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
9308 M:      Larry Finger <Larry.Finger@lwfinger.net>
9309 L:      linux-wireless@vger.kernel.org
9310 W:      http://wireless.kernel.org/
9311 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9312 S:      Maintained
9313 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
9314
9315 RTL8192CE WIRELESS DRIVER
9316 M:      Larry Finger <Larry.Finger@lwfinger.net>
9317 M:      Chaoming Li <chaoming_li@realsil.com.cn>
9318 L:      linux-wireless@vger.kernel.org
9319 W:      http://wireless.kernel.org/
9320 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9321 S:      Maintained
9322 F:      drivers/net/wireless/realtek/rtlwifi/
9323 F:      drivers/net/wireless/realtek/rtlwifi/rtl8192ce/
9324
9325 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
9326 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
9327 L:      linux-wireless@vger.kernel.org
9328 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8723au-mac80211
9329 S:      Maintained
9330 F:      drivers/net/wireless/realtek/rtl8xxxu/
9331
9332 S3 SAVAGE FRAMEBUFFER DRIVER
9333 M:      Antonino Daplas <adaplas@gmail.com>
9334 L:      linux-fbdev@vger.kernel.org
9335 S:      Maintained
9336 F:      drivers/video/fbdev/savage/
9337
9338 S390
9339 M:      Martin Schwidefsky <schwidefsky@de.ibm.com>
9340 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
9341 L:      linux-s390@vger.kernel.org
9342 W:      http://www.ibm.com/developerworks/linux/linux390/
9343 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
9344 S:      Supported
9345 F:      arch/s390/
9346 F:      drivers/s390/
9347 F:      Documentation/s390/
9348 F:      Documentation/DocBook/s390*
9349
9350 S390 COMMON I/O LAYER
9351 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
9352 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
9353 L:      linux-s390@vger.kernel.org
9354 W:      http://www.ibm.com/developerworks/linux/linux390/
9355 S:      Supported
9356 F:      drivers/s390/cio/
9357
9358 S390 DASD DRIVER
9359 M:      Stefan Weinhuber <wein@de.ibm.com>
9360 M:      Stefan Haberland <stefan.haberland@de.ibm.com>
9361 L:      linux-s390@vger.kernel.org
9362 W:      http://www.ibm.com/developerworks/linux/linux390/
9363 S:      Supported
9364 F:      drivers/s390/block/dasd*
9365 F:      block/partitions/ibm.c
9366
9367 S390 NETWORK DRIVERS
9368 M:      Ursula Braun <ubraun@linux.vnet.ibm.com>
9369 L:      linux-s390@vger.kernel.org
9370 W:      http://www.ibm.com/developerworks/linux/linux390/
9371 S:      Supported
9372 F:      drivers/s390/net/
9373
9374 S390 PCI SUBSYSTEM
9375 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
9376 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
9377 L:      linux-s390@vger.kernel.org
9378 W:      http://www.ibm.com/developerworks/linux/linux390/
9379 S:      Supported
9380 F:      arch/s390/pci/
9381 F:      drivers/pci/hotplug/s390_pci_hpc.c
9382
9383 S390 ZCRYPT DRIVER
9384 M:      Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
9385 L:      linux-s390@vger.kernel.org
9386 W:      http://www.ibm.com/developerworks/linux/linux390/
9387 S:      Supported
9388 F:      drivers/s390/crypto/
9389
9390 S390 ZFCP DRIVER
9391 M:      Steffen Maier <maier@linux.vnet.ibm.com>
9392 L:      linux-s390@vger.kernel.org
9393 W:      http://www.ibm.com/developerworks/linux/linux390/
9394 S:      Supported
9395 F:      drivers/s390/scsi/zfcp_*
9396
9397 S390 IUCV NETWORK LAYER
9398 M:      Ursula Braun <ubraun@linux.vnet.ibm.com>
9399 L:      linux-s390@vger.kernel.org
9400 W:      http://www.ibm.com/developerworks/linux/linux390/
9401 S:      Supported
9402 F:      drivers/s390/net/*iucv*
9403 F:      include/net/iucv/
9404 F:      net/iucv/
9405
9406 S390 IOMMU (PCI)
9407 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
9408 L:      linux-s390@vger.kernel.org
9409 W:      http://www.ibm.com/developerworks/linux/linux390/
9410 S:      Supported
9411 F:      drivers/iommu/s390-iommu.c
9412
9413 S3C24XX SD/MMC Driver
9414 M:      Ben Dooks <ben-linux@fluff.org>
9415 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9416 S:      Supported
9417 F:      drivers/mmc/host/s3cmci.*
9418
9419 SAA6588 RDS RECEIVER DRIVER
9420 M:      Hans Verkuil <hverkuil@xs4all.nl>
9421 L:      linux-media@vger.kernel.org
9422 T:      git git://linuxtv.org/media_tree.git
9423 W:      https://linuxtv.org
9424 S:      Odd Fixes
9425 F:      drivers/media/i2c/saa6588*
9426
9427 SAA7134 VIDEO4LINUX DRIVER
9428 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9429 L:      linux-media@vger.kernel.org
9430 W:      https://linuxtv.org
9431 T:      git git://linuxtv.org/media_tree.git
9432 S:      Odd fixes
9433 F:      Documentation/video4linux/*.saa7134
9434 F:      drivers/media/pci/saa7134/
9435
9436 SAA7146 VIDEO4LINUX-2 DRIVER
9437 M:      Hans Verkuil <hverkuil@xs4all.nl>
9438 L:      linux-media@vger.kernel.org
9439 T:      git git://linuxtv.org/media_tree.git
9440 S:      Maintained
9441 F:      drivers/media/common/saa7146/
9442 F:      drivers/media/pci/saa7146/
9443 F:      include/media/saa7146*
9444
9445 SAMSUNG LAPTOP DRIVER
9446 M:      Corentin Chary <corentin.chary@gmail.com>
9447 L:      platform-driver-x86@vger.kernel.org
9448 S:      Maintained
9449 F:      drivers/platform/x86/samsung-laptop.c
9450
9451 SAMSUNG AUDIO (ASoC) DRIVERS
9452 M:      Sangbeom Kim <sbkim73@samsung.com>
9453 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9454 S:      Supported
9455 F:      sound/soc/samsung/
9456
9457 SAMSUNG FRAMEBUFFER DRIVER
9458 M:      Jingoo Han <jingoohan1@gmail.com>
9459 L:      linux-fbdev@vger.kernel.org
9460 S:      Maintained
9461 F:      drivers/video/fbdev/s3c-fb.c
9462
9463 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
9464 M:      Sangbeom Kim <sbkim73@samsung.com>
9465 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
9466 L:      linux-kernel@vger.kernel.org
9467 L:      linux-samsung-soc@vger.kernel.org
9468 S:      Supported
9469 F:      drivers/mfd/sec*.c
9470 F:      drivers/regulator/s2m*.c
9471 F:      drivers/regulator/s5m*.c
9472 F:      drivers/clk/clk-s2mps11.c
9473 F:      drivers/rtc/rtc-s5m.c
9474 F:      include/linux/mfd/samsung/
9475 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
9476 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
9477 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
9478 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
9479
9480 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
9481 M:      Kyungmin Park <kyungmin.park@samsung.com>
9482 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
9483 L:      linux-media@vger.kernel.org
9484 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
9485 S:      Supported
9486 F:      drivers/media/platform/exynos4-is/
9487
9488 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
9489 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
9490 L:      linux-media@vger.kernel.org
9491 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9492 S:      Maintained
9493 F:      drivers/media/platform/s3c-camif/
9494 F:      include/media/drv-intf/s3c_camif.h
9495
9496 SAMSUNG S5C73M3 CAMERA DRIVER
9497 M:      Kyungmin Park <kyungmin.park@samsung.com>
9498 M:      Andrzej Hajda <a.hajda@samsung.com>
9499 L:      linux-media@vger.kernel.org
9500 S:      Supported
9501 F:      drivers/media/i2c/s5c73m3/*
9502
9503 SAMSUNG S5K5BAF CAMERA DRIVER
9504 M:      Kyungmin Park <kyungmin.park@samsung.com>
9505 M:      Andrzej Hajda <a.hajda@samsung.com>
9506 L:      linux-media@vger.kernel.org
9507 S:      Supported
9508 F:      drivers/media/i2c/s5k5baf.c
9509
9510 SAMSUNG S3FWRN5 NFC DRIVER
9511 M:      Robert Baldyga <r.baldyga@samsung.com>
9512 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
9513 S:      Supported
9514 F:      drivers/nfc/s3fwrn5
9515
9516 SAMSUNG SOC CLOCK DRIVERS
9517 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
9518 M:      Tomasz Figa <tomasz.figa@gmail.com>
9519 S:      Supported
9520 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9521 F:      drivers/clk/samsung/
9522
9523 SAMSUNG SXGBE DRIVERS
9524 M:      Byungho An <bh74.an@samsung.com>
9525 M:      Girish K S <ks.giri@samsung.com>
9526 M:      Vipul Pandya <vipul.pandya@samsung.com>
9527 S:      Supported
9528 L:      netdev@vger.kernel.org
9529 F:      drivers/net/ethernet/samsung/sxgbe/
9530
9531 SAMSUNG THERMAL DRIVER
9532 M:      Lukasz Majewski <l.majewski@samsung.com>
9533 L:      linux-pm@vger.kernel.org
9534 L:      linux-samsung-soc@vger.kernel.org
9535 S:      Supported
9536 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
9537 F:      drivers/thermal/samsung/
9538
9539 SAMSUNG USB2 PHY DRIVER
9540 M:      Kamil Debski <k.debski@samsung.com>
9541 L:      linux-kernel@vger.kernel.org
9542 S:      Supported
9543 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
9544 F:      Documentation/phy/samsung-usb2.txt
9545 F:      drivers/phy/phy-exynos4210-usb2.c
9546 F:      drivers/phy/phy-exynos4x12-usb2.c
9547 F:      drivers/phy/phy-exynos5250-usb2.c
9548 F:      drivers/phy/phy-s5pv210-usb2.c
9549 F:      drivers/phy/phy-samsung-usb2.c
9550 F:      drivers/phy/phy-samsung-usb2.h
9551
9552 SERIAL DRIVERS
9553 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9554 L:      linux-serial@vger.kernel.org
9555 S:      Maintained
9556 F:      drivers/tty/serial/
9557
9558 SYNOPSYS DESIGNWARE DMAC DRIVER
9559 M:      Viresh Kumar <vireshk@kernel.org>
9560 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9561 S:      Maintained
9562 F:      include/linux/dma/dw.h
9563 F:      include/linux/platform_data/dma-dw.h
9564 F:      drivers/dma/dw/
9565
9566 SYNOPSYS DESIGNWARE ETHERNET QOS 4.10a driver
9567 M: Lars Persson <lars.persson@axis.com>
9568 L: netdev@vger.kernel.org
9569 S: Supported
9570 F: Documentation/devicetree/bindings/net/snps,dwc-qos-ethernet.txt
9571 F: drivers/net/ethernet/synopsys/dwc_eth_qos.c
9572
9573 SYNOPSYS DESIGNWARE I2C DRIVER
9574 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9575 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
9576 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9577 L:      linux-i2c@vger.kernel.org
9578 S:      Maintained
9579 F:      drivers/i2c/busses/i2c-designware-*
9580 F:      include/linux/platform_data/i2c-designware.h
9581
9582 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
9583 M:      Jaehoon Chung <jh80.chung@samsung.com>
9584 L:      linux-mmc@vger.kernel.org
9585 S:      Maintained
9586 F:      include/linux/mmc/dw_mmc.h
9587 F:      drivers/mmc/host/dw_mmc*
9588
9589 SYSTEM TRACE MODULE CLASS
9590 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
9591 S:      Maintained
9592 F:      Documentation/trace/stm.txt
9593 F:      drivers/hwtracing/stm/
9594 F:      include/linux/stm.h
9595 F:      include/uapi/linux/stm.h
9596
9597 THUNDERBOLT DRIVER
9598 M:      Andreas Noever <andreas.noever@gmail.com>
9599 S:      Maintained
9600 F:      drivers/thunderbolt/
9601
9602 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
9603 M:      John Stultz <john.stultz@linaro.org>
9604 M:      Thomas Gleixner <tglx@linutronix.de>
9605 L:      linux-kernel@vger.kernel.org
9606 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
9607 S:      Supported
9608 F:      include/linux/clocksource.h
9609 F:      include/linux/time.h
9610 F:      include/linux/timex.h
9611 F:      include/uapi/linux/time.h
9612 F:      include/uapi/linux/timex.h
9613 F:      kernel/time/clocksource.c
9614 F:      kernel/time/time*.c
9615 F:      kernel/time/alarmtimer.c
9616 F:      kernel/time/ntp.c
9617 F:      tools/testing/selftests/timers/
9618
9619 SC1200 WDT DRIVER
9620 M:      Zwane Mwaikambo <zwanem@gmail.com>
9621 S:      Maintained
9622 F:      drivers/watchdog/sc1200wdt.c
9623
9624 SCHEDULER
9625 M:      Ingo Molnar <mingo@redhat.com>
9626 M:      Peter Zijlstra <peterz@infradead.org>
9627 L:      linux-kernel@vger.kernel.org
9628 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
9629 S:      Maintained
9630 F:      kernel/sched/
9631 F:      include/linux/sched.h
9632 F:      include/uapi/linux/sched.h
9633 F:      include/linux/wait.h
9634
9635 SCORE ARCHITECTURE
9636 M:      Chen Liqin <liqin.linux@gmail.com>
9637 M:      Lennox Wu <lennox.wu@gmail.com>
9638 W:      http://www.sunplus.com
9639 S:      Supported
9640 F:      arch/score/
9641
9642 SYSTEM CONTROL & POWER INTERFACE (SCPI) Message Protocol drivers
9643 M:      Sudeep Holla <sudeep.holla@arm.com>
9644 L:      linux-arm-kernel@lists.infradead.org
9645 S:      Maintained
9646 F:      Documentation/devicetree/bindings/arm/arm,scpi.txt
9647 F:      drivers/clk/clk-scpi.c
9648 F:      drivers/cpufreq/scpi-cpufreq.c
9649 F:      drivers/firmware/arm_scpi.c
9650 F:      include/linux/scpi_protocol.h
9651
9652 SCSI CDROM DRIVER
9653 M:      Jens Axboe <axboe@kernel.dk>
9654 L:      linux-scsi@vger.kernel.org
9655 W:      http://www.kernel.dk
9656 S:      Maintained
9657 F:      drivers/scsi/sr*
9658
9659 SCSI RDMA PROTOCOL (SRP) INITIATOR
9660 M:      Bart Van Assche <bart.vanassche@sandisk.com>
9661 L:      linux-rdma@vger.kernel.org
9662 S:      Supported
9663 W:      http://www.openfabrics.org
9664 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9665 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
9666 F:      drivers/infiniband/ulp/srp/
9667 F:      include/scsi/srp.h
9668
9669 SCSI SG DRIVER
9670 M:      Doug Gilbert <dgilbert@interlog.com>
9671 L:      linux-scsi@vger.kernel.org
9672 W:      http://sg.danny.cz/sg
9673 S:      Maintained
9674 F:      Documentation/scsi/scsi-generic.txt
9675 F:      drivers/scsi/sg.c
9676 F:      include/scsi/sg.h
9677
9678 SCSI SUBSYSTEM
9679 M:      "James E.J. Bottomley" <JBottomley@odin.com>
9680 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
9681 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
9682 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
9683 L:      linux-scsi@vger.kernel.org
9684 S:      Maintained
9685 F:      drivers/scsi/
9686 F:      include/scsi/
9687
9688 SCSI TAPE DRIVER
9689 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
9690 L:      linux-scsi@vger.kernel.org
9691 S:      Maintained
9692 F:      Documentation/scsi/st.txt
9693 F:      drivers/scsi/st.*
9694 F:      drivers/scsi/st_*.h
9695
9696 SCTP PROTOCOL
9697 M:      Vlad Yasevich <vyasevich@gmail.com>
9698 M:      Neil Horman <nhorman@tuxdriver.com>
9699 L:      linux-sctp@vger.kernel.org
9700 W:      http://lksctp.sourceforge.net
9701 S:      Maintained
9702 F:      Documentation/networking/sctp.txt
9703 F:      include/linux/sctp.h
9704 F:      include/uapi/linux/sctp.h
9705 F:      include/net/sctp/
9706 F:      net/sctp/
9707
9708 SCx200 CPU SUPPORT
9709 M:      Jim Cromie <jim.cromie@gmail.com>
9710 S:      Odd Fixes
9711 F:      Documentation/i2c/busses/scx200_acb
9712 F:      arch/x86/platform/scx200/
9713 F:      drivers/watchdog/scx200_wdt.c
9714 F:      drivers/i2c/busses/scx200*
9715 F:      drivers/mtd/maps/scx200_docflash.c
9716 F:      include/linux/scx200.h
9717
9718 SCx200 GPIO DRIVER
9719 M:      Jim Cromie <jim.cromie@gmail.com>
9720 S:      Maintained
9721 F:      drivers/char/scx200_gpio.c
9722 F:      include/linux/scx200_gpio.h
9723
9724 SCx200 HRT CLOCKSOURCE DRIVER
9725 M:      Jim Cromie <jim.cromie@gmail.com>
9726 S:      Maintained
9727 F:      drivers/clocksource/scx200_hrt.c
9728
9729 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
9730 M:      Sascha Sommer <saschasommer@freenet.de>
9731 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
9732 S:      Maintained
9733 F:      drivers/mmc/host/sdricoh_cs.c
9734
9735 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
9736 L:      linux-mmc@vger.kernel.org
9737 S:      Orphan
9738 F:      drivers/mmc/host/sdhci.*
9739 F:      drivers/mmc/host/sdhci-pltfm.[ch]
9740
9741 SECURE COMPUTING
9742 M:      Kees Cook <keescook@chromium.org>
9743 R:      Andy Lutomirski <luto@amacapital.net>
9744 R:      Will Drewry <wad@chromium.org>
9745 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
9746 S:      Supported
9747 F:      kernel/seccomp.c
9748 F:      include/uapi/linux/seccomp.h
9749 F:      include/linux/seccomp.h
9750 F:      tools/testing/selftests/seccomp/*
9751 K:      \bsecure_computing
9752 K:      \bTIF_SECCOMP\b
9753
9754 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
9755 M:      Ben Dooks <ben-linux@fluff.org>
9756 M:      Jaehoon Chung <jh80.chung@samsung.com>
9757 L:      linux-mmc@vger.kernel.org
9758 S:      Maintained
9759 F:      drivers/mmc/host/sdhci-s3c*
9760
9761 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
9762 M:      Viresh Kumar <vireshk@kernel.org>
9763 L:      spear-devel@list.st.com
9764 L:      linux-mmc@vger.kernel.org
9765 S:      Maintained
9766 F:      drivers/mmc/host/sdhci-spear.c
9767
9768 SECURITY SUBSYSTEM
9769 M:      James Morris <james.l.morris@oracle.com>
9770 M:      "Serge E. Hallyn" <serge@hallyn.com>
9771 L:      linux-security-module@vger.kernel.org (suggested Cc:)
9772 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
9773 W:      http://kernsec.org/
9774 S:      Supported
9775 F:      security/
9776
9777 SECURITY CONTACT
9778 M:      Security Officers <security@kernel.org>
9779 S:      Supported
9780
9781 SELINUX SECURITY MODULE
9782 M:      Paul Moore <paul@paul-moore.com>
9783 M:      Stephen Smalley <sds@tycho.nsa.gov>
9784 M:      Eric Paris <eparis@parisplace.org>
9785 L:      selinux@tycho.nsa.gov (moderated for non-subscribers)
9786 W:      http://selinuxproject.org
9787 T:      git git://git.infradead.org/users/pcmoore/selinux
9788 S:      Supported
9789 F:      include/linux/selinux*
9790 F:      security/selinux/
9791 F:      scripts/selinux/
9792
9793 APPARMOR SECURITY MODULE
9794 M:      John Johansen <john.johansen@canonical.com>
9795 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
9796 W:      apparmor.wiki.kernel.org
9797 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
9798 S:      Supported
9799 F:      security/apparmor/
9800
9801 YAMA SECURITY MODULE
9802 M:      Kees Cook <keescook@chromium.org>
9803 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
9804 S:      Supported
9805 F:      security/yama/
9806
9807 SENSABLE PHANTOM
9808 M:      Jiri Slaby <jirislaby@gmail.com>
9809 S:      Maintained
9810 F:      drivers/misc/phantom.c
9811 F:      include/uapi/linux/phantom.h
9812
9813 SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
9814 M:      Jayamohan Kallickal <jayamohan.kallickal@avagotech.com>
9815 M:      Ketan Mukadam <ketan.mukadam@avagotech.com>
9816 M:      John Soni Jose <sony.john@avagotech.com>
9817 L:      linux-scsi@vger.kernel.org
9818 W:      http://www.avagotech.com
9819 S:      Supported
9820 F:      drivers/scsi/be2iscsi/
9821
9822 Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER
9823 M:      Sathya Perla <sathya.perla@broadcom.com>
9824 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
9825 M:      Padmanabh Ratnakar <padmanabh.ratnakar@broadcom.com>
9826 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
9827 M:      Somnath Kotur <somnath.kotur@broadcom.com>
9828 L:      netdev@vger.kernel.org
9829 W:      http://www.emulex.com
9830 S:      Supported
9831 F:      drivers/net/ethernet/emulex/benet/
9832
9833 EMULEX ONECONNECT ROCE DRIVER
9834 M:      Selvin Xavier <selvin.xavier@avagotech.com>
9835 M:      Devesh Sharma <devesh.sharma@avagotech.com>
9836 M:      Mitesh Ahuja <mitesh.ahuja@avagotech.com>
9837 L:      linux-rdma@vger.kernel.org
9838 W:      http://www.emulex.com
9839 S:      Supported
9840 F:      drivers/infiniband/hw/ocrdma/
9841
9842 SFC NETWORK DRIVER
9843 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
9844 M:      Shradha Shah <sshah@solarflare.com>
9845 L:      netdev@vger.kernel.org
9846 S:      Supported
9847 F:      drivers/net/ethernet/sfc/
9848
9849 SGI GRU DRIVER
9850 M:      Dimitri Sivanich <sivanich@sgi.com>
9851 S:      Maintained
9852 F:      drivers/misc/sgi-gru/
9853
9854 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
9855 M:      Pat Gefre <pfg@sgi.com>
9856 L:      linux-ia64@vger.kernel.org
9857 S:      Supported
9858 F:      Documentation/ia64/serial.txt
9859 F:      drivers/tty/serial/ioc?_serial.c
9860 F:      include/linux/ioc?.h
9861
9862 SGI XP/XPC/XPNET DRIVER
9863 M:      Cliff Whickman <cpw@sgi.com>
9864 M:      Robin Holt <robinmholt@gmail.com>
9865 S:      Maintained
9866 F:      drivers/misc/sgi-xp/
9867
9868 SI2157 MEDIA DRIVER
9869 M:      Antti Palosaari <crope@iki.fi>
9870 L:      linux-media@vger.kernel.org
9871 W:      https://linuxtv.org
9872 W:      http://palosaari.fi/linux/
9873 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9874 T:      git git://linuxtv.org/anttip/media_tree.git
9875 S:      Maintained
9876 F:      drivers/media/tuners/si2157*
9877
9878 SI2168 MEDIA DRIVER
9879 M:      Antti Palosaari <crope@iki.fi>
9880 L:      linux-media@vger.kernel.org
9881 W:      https://linuxtv.org
9882 W:      http://palosaari.fi/linux/
9883 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9884 T:      git git://linuxtv.org/anttip/media_tree.git
9885 S:      Maintained
9886 F:      drivers/media/dvb-frontends/si2168*
9887
9888 SI470X FM RADIO RECEIVER I2C DRIVER
9889 M:      Hans Verkuil <hverkuil@xs4all.nl>
9890 L:      linux-media@vger.kernel.org
9891 T:      git git://linuxtv.org/media_tree.git
9892 W:      https://linuxtv.org
9893 S:      Odd Fixes
9894 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
9895
9896 SI470X FM RADIO RECEIVER USB DRIVER
9897 M:      Hans Verkuil <hverkuil@xs4all.nl>
9898 L:      linux-media@vger.kernel.org
9899 T:      git git://linuxtv.org/media_tree.git
9900 W:      https://linuxtv.org
9901 S:      Maintained
9902 F:      drivers/media/radio/si470x/radio-si470x-common.c
9903 F:      drivers/media/radio/si470x/radio-si470x.h
9904 F:      drivers/media/radio/si470x/radio-si470x-usb.c
9905
9906 SI4713 FM RADIO TRANSMITTER I2C DRIVER
9907 M:      Eduardo Valentin <edubezval@gmail.com>
9908 L:      linux-media@vger.kernel.org
9909 T:      git git://linuxtv.org/media_tree.git
9910 W:      https://linuxtv.org
9911 S:      Odd Fixes
9912 F:      drivers/media/radio/si4713/si4713.?
9913
9914 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
9915 M:      Eduardo Valentin <edubezval@gmail.com>
9916 L:      linux-media@vger.kernel.org
9917 T:      git git://linuxtv.org/media_tree.git
9918 W:      https://linuxtv.org
9919 S:      Odd Fixes
9920 F:      drivers/media/radio/si4713/radio-platform-si4713.c
9921
9922 SI4713 FM RADIO TRANSMITTER USB DRIVER
9923 M:      Hans Verkuil <hverkuil@xs4all.nl>
9924 L:      linux-media@vger.kernel.org
9925 T:      git git://linuxtv.org/media_tree.git
9926 W:      https://linuxtv.org
9927 S:      Maintained
9928 F:      drivers/media/radio/si4713/radio-usb-si4713.c
9929
9930 SIANO DVB DRIVER
9931 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9932 L:      linux-media@vger.kernel.org
9933 W:      https://linuxtv.org
9934 T:      git git://linuxtv.org/media_tree.git
9935 S:      Odd fixes
9936 F:      drivers/media/common/siano/
9937 F:      drivers/media/usb/siano/
9938 F:      drivers/media/usb/siano/
9939 F:      drivers/media/mmc/siano/
9940
9941 SIMPLEFB FB DRIVER
9942 M:      Hans de Goede <hdegoede@redhat.com>
9943 L:      linux-fbdev@vger.kernel.org
9944 S:      Maintained
9945 F:      Documentation/devicetree/bindings/display/simple-framebuffer.txt
9946 F:      drivers/video/fbdev/simplefb.c
9947 F:      include/linux/platform_data/simplefb.h
9948
9949 SH_VEU V4L2 MEM2MEM DRIVER
9950 L:      linux-media@vger.kernel.org
9951 S:      Orphan
9952 F:      drivers/media/platform/sh_veu.c
9953
9954 SH_VOU V4L2 OUTPUT DRIVER
9955 L:      linux-media@vger.kernel.org
9956 S:      Orphan
9957 F:      drivers/media/platform/sh_vou.c
9958 F:      include/media/drv-intf/sh_vou.h
9959
9960 SIMPLE FIRMWARE INTERFACE (SFI)
9961 M:      Len Brown <lenb@kernel.org>
9962 L:      sfi-devel@simplefirmware.org
9963 W:      http://simplefirmware.org/
9964 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
9965 S:      Supported
9966 F:      arch/x86/platform/sfi/
9967 F:      drivers/sfi/
9968 F:      include/linux/sfi*.h
9969
9970 SIMTEC EB110ATX (Chalice CATS)
9971 P:      Ben Dooks
9972 P:      Vincent Sanders <vince@simtec.co.uk>
9973 M:      Simtec Linux Team <linux@simtec.co.uk>
9974 W:      http://www.simtec.co.uk/products/EB110ATX/
9975 S:      Supported
9976
9977 SIMTEC EB2410ITX (BAST)
9978 P:      Ben Dooks
9979 P:      Vincent Sanders <vince@simtec.co.uk>
9980 M:      Simtec Linux Team <linux@simtec.co.uk>
9981 W:      http://www.simtec.co.uk/products/EB2410ITX/
9982 S:      Supported
9983 F:      arch/arm/mach-s3c24xx/mach-bast.c
9984 F:      arch/arm/mach-s3c24xx/bast-ide.c
9985 F:      arch/arm/mach-s3c24xx/bast-irq.c
9986
9987 TI DAVINCI MACHINE SUPPORT
9988 M:      Sekhar Nori <nsekhar@ti.com>
9989 M:      Kevin Hilman <khilman@deeprootsystems.com>
9990 T:      git git://gitorious.org/linux-davinci/linux-davinci.git
9991 Q:      http://patchwork.kernel.org/project/linux-davinci/list/
9992 S:      Supported
9993 F:      arch/arm/mach-davinci/
9994 F:      drivers/i2c/busses/i2c-davinci.c
9995
9996 TI DAVINCI SERIES MEDIA DRIVER
9997 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9998 L:      linux-media@vger.kernel.org
9999 W:      https://linuxtv.org
10000 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10001 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
10002 S:      Maintained
10003 F:      drivers/media/platform/davinci/
10004 F:      include/media/davinci/
10005
10006 TI AM437X VPFE DRIVER
10007 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
10008 L:      linux-media@vger.kernel.org
10009 W:      https://linuxtv.org
10010 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10011 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
10012 S:      Maintained
10013 F:      drivers/media/platform/am437x/
10014
10015 OV2659 OMNIVISION SENSOR DRIVER
10016 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
10017 L:      linux-media@vger.kernel.org
10018 W:      https://linuxtv.org
10019 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10020 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
10021 S:      Maintained
10022 F:      drivers/media/i2c/ov2659.c
10023 F:      include/media/i2c/ov2659.h
10024
10025 SILICON MOTION SM712 FRAME BUFFER DRIVER
10026 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
10027 M:      Teddy Wang <teddy.wang@siliconmotion.com>
10028 M:      Sudip Mukherjee <sudip@vectorindia.org>
10029 L:      linux-fbdev@vger.kernel.org
10030 S:      Maintained
10031 F:      drivers/video/fbdev/sm712*
10032 F:      Documentation/fb/sm712fb.txt
10033
10034 SIS 190 ETHERNET DRIVER
10035 M:      Francois Romieu <romieu@fr.zoreil.com>
10036 L:      netdev@vger.kernel.org
10037 S:      Maintained
10038 F:      drivers/net/ethernet/sis/sis190.c
10039
10040 SIS 900/7016 FAST ETHERNET DRIVER
10041 M:      Daniele Venzano <venza@brownhat.org>
10042 W:      http://www.brownhat.org/sis900.html
10043 L:      netdev@vger.kernel.org
10044 S:      Maintained
10045 F:      drivers/net/ethernet/sis/sis900.*
10046
10047 SIS FRAMEBUFFER DRIVER
10048 M:      Thomas Winischhofer <thomas@winischhofer.net>
10049 W:      http://www.winischhofer.net/linuxsisvga.shtml
10050 S:      Maintained
10051 F:      Documentation/fb/sisfb.txt
10052 F:      drivers/video/fbdev/sis/
10053 F:      include/video/sisfb.h
10054
10055 SIS USB2VGA DRIVER
10056 M:      Thomas Winischhofer <thomas@winischhofer.net>
10057 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
10058 S:      Maintained
10059 F:      drivers/usb/misc/sisusbvga/
10060
10061 SLAB ALLOCATOR
10062 M:      Christoph Lameter <cl@linux.com>
10063 M:      Pekka Enberg <penberg@kernel.org>
10064 M:      David Rientjes <rientjes@google.com>
10065 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
10066 M:      Andrew Morton <akpm@linux-foundation.org>
10067 L:      linux-mm@kvack.org
10068 S:      Maintained
10069 F:      include/linux/sl?b*.h
10070 F:      mm/sl?b*
10071
10072 SLEEPABLE READ-COPY UPDATE (SRCU)
10073 M:      Lai Jiangshan <jiangshanlai@gmail.com>
10074 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
10075 M:      Josh Triplett <josh@joshtriplett.org>
10076 R:      Steven Rostedt <rostedt@goodmis.org>
10077 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
10078 L:      linux-kernel@vger.kernel.org
10079 W:      http://www.rdrop.com/users/paulmck/RCU/
10080 S:      Supported
10081 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
10082 F:      include/linux/srcu.h
10083 F:      kernel/rcu/srcu.c
10084
10085 SMACK SECURITY MODULE
10086 M:      Casey Schaufler <casey@schaufler-ca.com>
10087 L:      linux-security-module@vger.kernel.org
10088 W:      http://schaufler-ca.com
10089 T:      git git://git.gitorious.org/smack-next/kernel.git
10090 S:      Maintained
10091 F:      Documentation/security/Smack.txt
10092 F:      security/smack/
10093
10094 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
10095 M:      Kevin Hilman <khilman@kernel.org>
10096 M:      Nishanth Menon <nm@ti.com>
10097 S:      Maintained
10098 F:      drivers/power/avs/
10099 F:      include/linux/power/smartreflex.h
10100 L:      linux-pm@vger.kernel.org
10101
10102 SMC91x ETHERNET DRIVER
10103 M:      Nicolas Pitre <nico@fluxnic.net>
10104 S:      Odd Fixes
10105 F:      drivers/net/ethernet/smsc/smc91x.*
10106
10107 SMIA AND SMIA++ IMAGE SENSOR DRIVER
10108 M:      Sakari Ailus <sakari.ailus@iki.fi>
10109 L:      linux-media@vger.kernel.org
10110 S:      Maintained
10111 F:      drivers/media/i2c/smiapp/
10112 F:      include/media/i2c/smiapp.h
10113 F:      drivers/media/i2c/smiapp-pll.c
10114 F:      drivers/media/i2c/smiapp-pll.h
10115 F:      include/uapi/linux/smiapp.h
10116 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
10117
10118 SMM665 HARDWARE MONITOR DRIVER
10119 M:      Guenter Roeck <linux@roeck-us.net>
10120 L:      lm-sensors@lm-sensors.org
10121 S:      Maintained
10122 F:      Documentation/hwmon/smm665
10123 F:      drivers/hwmon/smm665.c
10124
10125 SMSC EMC2103 HARDWARE MONITOR DRIVER
10126 M:      Steve Glendinning <steve.glendinning@shawell.net>
10127 L:      lm-sensors@lm-sensors.org
10128 S:      Maintained
10129 F:      Documentation/hwmon/emc2103
10130 F:      drivers/hwmon/emc2103.c
10131
10132 SMSC SCH5627 HARDWARE MONITOR DRIVER
10133 M:      Hans de Goede <hdegoede@redhat.com>
10134 L:      lm-sensors@lm-sensors.org
10135 S:      Supported
10136 F:      Documentation/hwmon/sch5627
10137 F:      drivers/hwmon/sch5627.c
10138
10139 SMSC47B397 HARDWARE MONITOR DRIVER
10140 M:      Jean Delvare <jdelvare@suse.com>
10141 L:      lm-sensors@lm-sensors.org
10142 S:      Maintained
10143 F:      Documentation/hwmon/smsc47b397
10144 F:      drivers/hwmon/smsc47b397.c
10145
10146 SMSC911x ETHERNET DRIVER
10147 M:      Steve Glendinning <steve.glendinning@shawell.net>
10148 L:      netdev@vger.kernel.org
10149 S:      Maintained
10150 F:      include/linux/smsc911x.h
10151 F:      drivers/net/ethernet/smsc/smsc911x.*
10152
10153 SMSC9420 PCI ETHERNET DRIVER
10154 M:      Steve Glendinning <steve.glendinning@shawell.net>
10155 L:      netdev@vger.kernel.org
10156 S:      Maintained
10157 F:      drivers/net/ethernet/smsc/smsc9420.*
10158
10159 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
10160 M:      Steve Glendinning <steve.glendinning@shawell.net>
10161 L:      linux-fbdev@vger.kernel.org
10162 S:      Maintained
10163 F:      drivers/video/fbdev/smscufx.c
10164
10165 SOC-CAMERA V4L2 SUBSYSTEM
10166 M:      Guennadi Liakhovetski <g.liakhovetski@gmx.de>
10167 L:      linux-media@vger.kernel.org
10168 T:      git git://linuxtv.org/media_tree.git
10169 S:      Maintained
10170 F:      include/media/soc*
10171 F:      drivers/media/i2c/soc_camera/
10172 F:      drivers/media/platform/soc_camera/
10173
10174 SOEKRIS NET48XX LED SUPPORT
10175 M:      Chris Boot <bootc@bootc.net>
10176 S:      Maintained
10177 F:      drivers/leds/leds-net48xx.c
10178
10179 SOFTLOGIC 6x10 MPEG CODEC
10180 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
10181 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
10182 M:      Andrey Utkin <andrey.krieger.utkin@gmail.com>
10183 M:      Ismael Luceno <ismael@iodev.co.uk>
10184 L:      linux-media@vger.kernel.org
10185 S:      Supported
10186 F:      drivers/media/pci/solo6x10/
10187
10188 SOFTWARE RAID (Multiple Disks) SUPPORT
10189 M:      Shaohua Li <shli@kernel.org>
10190 L:      linux-raid@vger.kernel.org
10191 T:      git git://neil.brown.name/md
10192 S:      Supported
10193 F:      drivers/md/
10194 F:      include/linux/raid/
10195 F:      include/uapi/linux/raid/
10196
10197 SONIC NETWORK DRIVER
10198 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
10199 L:      netdev@vger.kernel.org
10200 S:      Maintained
10201 F:      drivers/net/ethernet/natsemi/sonic.*
10202
10203 SONICS SILICON BACKPLANE DRIVER (SSB)
10204 M:      Michael Buesch <m@bues.ch>
10205 L:      linux-wireless@vger.kernel.org
10206 S:      Maintained
10207 F:      drivers/ssb/
10208 F:      include/linux/ssb/
10209
10210 SONY VAIO CONTROL DEVICE DRIVER
10211 M:      Mattia Dongili <malattia@linux.it>
10212 L:      platform-driver-x86@vger.kernel.org
10213 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
10214 S:      Maintained
10215 F:      Documentation/laptops/sony-laptop.txt
10216 F:      drivers/char/sonypi.c
10217 F:      drivers/platform/x86/sony-laptop.c
10218 F:      include/linux/sony-laptop.h
10219
10220 SONY MEMORYSTICK CARD SUPPORT
10221 M:      Alex Dubov <oakad@yahoo.com>
10222 W:      http://tifmxx.berlios.de/
10223 S:      Maintained
10224 F:      drivers/memstick/host/tifm_ms.c
10225
10226 SONY MEMORYSTICK STANDARD SUPPORT
10227 M:      Maxim Levitsky <maximlevitsky@gmail.com>
10228 S:      Maintained
10229 F:      drivers/memstick/core/ms_block.*
10230
10231 SOUND
10232 M:      Jaroslav Kysela <perex@perex.cz>
10233 M:      Takashi Iwai <tiwai@suse.com>
10234 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10235 W:      http://www.alsa-project.org/
10236 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
10237 T:      git git://git.alsa-project.org/alsa-kernel.git
10238 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
10239 S:      Maintained
10240 F:      Documentation/sound/
10241 F:      include/sound/
10242 F:      include/uapi/sound/
10243 F:      sound/
10244
10245 SOUND - COMPRESSED AUDIO
10246 M:      Vinod Koul <vinod.koul@intel.com>
10247 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10248 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
10249 S:      Supported
10250 F:      Documentation/sound/alsa/compress_offload.txt
10251 F:      include/sound/compress_driver.h
10252 F:      include/uapi/sound/compress_*
10253 F:      sound/core/compress_offload.c
10254 F:      sound/soc/soc-compress.c
10255
10256 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
10257 M:      Liam Girdwood <lgirdwood@gmail.com>
10258 M:      Mark Brown <broonie@kernel.org>
10259 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
10260 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10261 W:      http://alsa-project.org/main/index.php/ASoC
10262 S:      Supported
10263 F:      Documentation/sound/alsa/soc/
10264 F:      sound/soc/
10265 F:      include/sound/soc*
10266
10267 SOUND - DMAENGINE HELPERS
10268 M:      Lars-Peter Clausen <lars@metafoo.de>
10269 S:      Supported
10270 F:      include/sound/dmaengine_pcm.h
10271 F:      sound/core/pcm_dmaengine.c
10272 F:      sound/soc/soc-generic-dmaengine-pcm.c
10273
10274 SP2 MEDIA DRIVER
10275 M:      Olli Salonen <olli.salonen@iki.fi>
10276 L:      linux-media@vger.kernel.org
10277 W:      https://linuxtv.org
10278 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10279 S:      Maintained
10280 F:      drivers/media/dvb-frontends/sp2*
10281
10282 SPARC + UltraSPARC (sparc/sparc64)
10283 M:      "David S. Miller" <davem@davemloft.net>
10284 L:      sparclinux@vger.kernel.org
10285 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
10286 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
10287 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
10288 S:      Maintained
10289 F:      arch/sparc/
10290 F:      drivers/sbus/
10291
10292 SPARC SERIAL DRIVERS
10293 M:      "David S. Miller" <davem@davemloft.net>
10294 L:      sparclinux@vger.kernel.org
10295 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
10296 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
10297 S:      Maintained
10298 F:      include/linux/sunserialcore.h
10299 F:      drivers/tty/serial/suncore.c
10300 F:      drivers/tty/serial/sunhv.c
10301 F:      drivers/tty/serial/sunsab.c
10302 F:      drivers/tty/serial/sunsab.h
10303 F:      drivers/tty/serial/sunsu.c
10304 F:      drivers/tty/serial/sunzilog.c
10305 F:      drivers/tty/serial/sunzilog.h
10306
10307 SPARSE CHECKER
10308 M:      "Christopher Li" <sparse@chrisli.org>
10309 L:      linux-sparse@vger.kernel.org
10310 W:      https://sparse.wiki.kernel.org/
10311 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
10312 T:      git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
10313 S:      Maintained
10314 F:      include/linux/compiler.h
10315
10316 SPEAR PLATFORM SUPPORT
10317 M:      Viresh Kumar <vireshk@kernel.org>
10318 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
10319 L:      spear-devel@list.st.com
10320 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10321 W:      http://www.st.com/spear
10322 S:      Maintained
10323 F:      arch/arm/boot/dts/spear*
10324 F:      arch/arm/mach-spear/
10325
10326 SPEAR CLOCK FRAMEWORK SUPPORT
10327 M:      Viresh Kumar <vireshk@kernel.org>
10328 L:      spear-devel@list.st.com
10329 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10330 W:      http://www.st.com/spear
10331 S:      Maintained
10332 F:      drivers/clk/spear/
10333
10334 SPI SUBSYSTEM
10335 M:      Mark Brown <broonie@kernel.org>
10336 L:      linux-spi@vger.kernel.org
10337 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
10338 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
10339 S:      Maintained
10340 F:      Documentation/spi/
10341 F:      drivers/spi/
10342 F:      include/linux/spi/
10343 F:      include/uapi/linux/spi/
10344
10345 SPIDERNET NETWORK DRIVER for CELL
10346 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
10347 L:      netdev@vger.kernel.org
10348 S:      Supported
10349 F:      Documentation/networking/spider_net.txt
10350 F:      drivers/net/ethernet/toshiba/spider_net*
10351
10352 SPU FILE SYSTEM
10353 M:      Jeremy Kerr <jk@ozlabs.org>
10354 L:      linuxppc-dev@lists.ozlabs.org
10355 W:      http://www.ibm.com/developerworks/power/cell/
10356 S:      Supported
10357 F:      Documentation/filesystems/spufs.txt
10358 F:      arch/powerpc/platforms/cell/spufs/
10359
10360 SQUASHFS FILE SYSTEM
10361 M:      Phillip Lougher <phillip@squashfs.org.uk>
10362 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
10363 W:      http://squashfs.org.uk
10364 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
10365 S:      Maintained
10366 F:      Documentation/filesystems/squashfs.txt
10367 F:      fs/squashfs/
10368
10369 SRM (Alpha) environment access
10370 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
10371 S:      Maintained
10372 F:      arch/alpha/kernel/srm_env.c
10373
10374 STABLE BRANCH
10375 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10376 L:      stable@vger.kernel.org
10377 S:      Supported
10378 F:      Documentation/stable_kernel_rules.txt
10379
10380 STAGING SUBSYSTEM
10381 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10382 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
10383 L:      devel@driverdev.osuosl.org
10384 S:      Supported
10385 F:      drivers/staging/
10386
10387 STAGING - COMEDI
10388 M:      Ian Abbott <abbotti@mev.co.uk>
10389 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
10390 S:      Odd Fixes
10391 F:      drivers/staging/comedi/
10392
10393 STAGING - FLARION FT1000 DRIVERS
10394 M:      Marek Belisko <marek.belisko@gmail.com>
10395 S:      Odd Fixes
10396 F:      drivers/staging/ft1000/
10397
10398 STAGING - INDUSTRIAL IO
10399 M:      Jonathan Cameron <jic23@kernel.org>
10400 L:      linux-iio@vger.kernel.org
10401 S:      Odd Fixes
10402 F:      drivers/staging/iio/
10403
10404 STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
10405 M:      Jarod Wilson <jarod@wilsonet.com>
10406 W:      http://www.lirc.org/
10407 S:      Odd Fixes
10408 F:      drivers/staging/media/lirc/
10409
10410 STAGING - LUSTRE PARALLEL FILESYSTEM
10411 M:      Oleg Drokin <oleg.drokin@intel.com>
10412 M:      Andreas Dilger <andreas.dilger@intel.com>
10413 L:      lustre-devel@lists.lustre.org (moderated for non-subscribers)
10414 W:      http://wiki.lustre.org/
10415 S:      Maintained
10416 F:      drivers/staging/lustre
10417
10418 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
10419 M:      Marc Dietrich <marvin24@gmx.de>
10420 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
10421 L:      linux-tegra@vger.kernel.org
10422 S:      Maintained
10423 F:      drivers/staging/nvec/
10424
10425 STAGING - REALTEK RTL8712U DRIVERS
10426 M:      Larry Finger <Larry.Finger@lwfinger.net>
10427 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
10428 S:      Odd Fixes
10429 F:      drivers/staging/rtl8712/
10430
10431 STAGING - REALTEK RTL8723U WIRELESS DRIVER
10432 M:      Larry Finger <Larry.Finger@lwfinger.net>
10433 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
10434 L:      linux-wireless@vger.kernel.org
10435 S:      Maintained
10436 F:      drivers/staging/rtl8723au/
10437
10438 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
10439 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
10440 M:      Teddy Wang <teddy.wang@siliconmotion.com>
10441 M:      Sudip Mukherjee <sudip@vectorindia.org>
10442 L:      linux-fbdev@vger.kernel.org
10443 S:      Maintained
10444 F:      drivers/staging/sm750fb/
10445
10446 STAGING - SLICOSS
10447 M:      Lior Dotan <liodot@gmail.com>
10448 M:      Christopher Harrer <charrer@alacritech.com>
10449 S:      Odd Fixes
10450 F:      drivers/staging/slicoss/
10451
10452 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
10453 M:      William Hubbs <w.d.hubbs@gmail.com>
10454 M:      Chris Brannon <chris@the-brannons.com>
10455 M:      Kirk Reiser <kirk@reisers.ca>
10456 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
10457 L:      speakup@linux-speakup.org
10458 W:      http://www.linux-speakup.org/
10459 S:      Odd Fixes
10460 F:      drivers/staging/speakup/
10461
10462 STAGING - VIA VT665X DRIVERS
10463 M:      Forest Bond <forest@alittletooquiet.net>
10464 S:      Odd Fixes
10465 F:      drivers/staging/vt665?/
10466
10467 STAGING - WILC1000 WIFI DRIVER
10468 M:      Johnny Kim <johnny.kim@atmel.com>
10469 M:      Austin Shin <austin.shin@atmel.com>
10470 M:      Chris Park <chris.park@atmel.com>
10471 M:      Tony Cho <tony.cho@atmel.com>
10472 M:      Glen Lee <glen.lee@atmel.com>
10473 M:      Leo Kim <leo.kim@atmel.com>
10474 L:      linux-wireless@vger.kernel.org
10475 S:      Supported
10476 F:      drivers/staging/wilc1000/
10477
10478 STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
10479 M:      Arnaud Patard <arnaud.patard@rtp-net.org>
10480 S:      Odd Fixes
10481 F:      drivers/staging/xgifb/
10482
10483 HFI1 DRIVER
10484 M:      Mike Marciniszyn <infinipath@intel.com>
10485 L:      linux-rdma@vger.kernel.org
10486 S:      Supported
10487 F:      drivers/staging/rdma/hfi1
10488
10489 STARFIRE/DURALAN NETWORK DRIVER
10490 M:      Ion Badulescu <ionut@badula.org>
10491 S:      Odd Fixes
10492 F:      drivers/net/ethernet/adaptec/starfire*
10493
10494 SUN3/3X
10495 M:      Sam Creasey <sammy@sammy.net>
10496 W:      http://sammy.net/sun3/
10497 S:      Maintained
10498 F:      arch/m68k/kernel/*sun3*
10499 F:      arch/m68k/sun3*/
10500 F:      arch/m68k/include/asm/sun3*
10501 F:      drivers/net/ethernet/i825xx/sun3*
10502
10503 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
10504 M:      Hans de Goede <hdegoede@redhat.com>
10505 L:      linux-input@vger.kernel.org
10506 S:      Maintained
10507 F:      Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
10508 F:      drivers/input/keyboard/sun4i-lradc-keys.c
10509
10510 SUNDANCE NETWORK DRIVER
10511 M:      Denis Kirjanov <kda@linux-powerpc.org>
10512 L:      netdev@vger.kernel.org
10513 S:      Maintained
10514 F:      drivers/net/ethernet/dlink/sundance.c
10515
10516 SUPERH
10517 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
10518 M:      Rich Felker <dalias@libc.org>
10519 L:      linux-sh@vger.kernel.org
10520 Q:      http://patchwork.kernel.org/project/linux-sh/list/
10521 S:      Maintained
10522 F:      Documentation/sh/
10523 F:      arch/sh/
10524 F:      drivers/sh/
10525
10526 SUSPEND TO RAM
10527 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
10528 M:      Len Brown <len.brown@intel.com>
10529 M:      Pavel Machek <pavel@ucw.cz>
10530 L:      linux-pm@vger.kernel.org
10531 S:      Supported
10532 F:      Documentation/power/
10533 F:      arch/x86/kernel/acpi/
10534 F:      drivers/base/power/
10535 F:      kernel/power/
10536 F:      include/linux/suspend.h
10537 F:      include/linux/freezer.h
10538 F:      include/linux/pm.h
10539
10540 SVGA HANDLING
10541 M:      Martin Mares <mj@ucw.cz>
10542 L:      linux-video@atrey.karlin.mff.cuni.cz
10543 S:      Maintained
10544 F:      Documentation/svga.txt
10545 F:      arch/x86/boot/video*
10546
10547 SWIOTLB SUBSYSTEM
10548 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10549 L:      linux-kernel@vger.kernel.org
10550 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
10551 S:      Supported
10552 F:      lib/swiotlb.c
10553 F:      arch/*/kernel/pci-swiotlb.c
10554 F:      include/linux/swiotlb.h
10555
10556 SWITCHDEV
10557 M:      Jiri Pirko <jiri@resnulli.us>
10558 L:      netdev@vger.kernel.org
10559 S:      Supported
10560 F:      net/switchdev/
10561 F:      include/net/switchdev.h
10562
10563 SYNOPSYS ARC ARCHITECTURE
10564 M:      Vineet Gupta <vgupta@synopsys.com>
10565 L:      linux-snps-arc@lists.infradead.org
10566 S:      Supported
10567 F:      arch/arc/
10568 F:      Documentation/devicetree/bindings/arc/*
10569 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
10570 F:      drivers/tty/serial/arc_uart.c
10571 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
10572
10573 SYNOPSYS ARC SDP platform support
10574 M:      Alexey Brodkin <abrodkin@synopsys.com>
10575 S:      Supported
10576 F:      arch/arc/plat-axs10x
10577 F:      arch/arc/boot/dts/ax*
10578 F:      Documentation/devicetree/bindings/arc/axs10*
10579
10580 SYSTEM CONFIGURATION (SYSCON)
10581 M:      Lee Jones <lee.jones@linaro.org>
10582 M:      Arnd Bergmann <arnd@arndb.de>
10583 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
10584 S:      Supported
10585 F:      drivers/mfd/syscon.c
10586
10587 SYSV FILESYSTEM
10588 M:      Christoph Hellwig <hch@infradead.org>
10589 S:      Maintained
10590 F:      Documentation/filesystems/sysv-fs.txt
10591 F:      fs/sysv/
10592 F:      include/linux/sysv_fs.h
10593
10594 TARGET SUBSYSTEM
10595 M:      "Nicholas A. Bellinger" <nab@linux-iscsi.org>
10596 L:      linux-scsi@vger.kernel.org
10597 L:      target-devel@vger.kernel.org
10598 W:      http://www.linux-iscsi.org
10599 W:      http://groups.google.com/group/linux-iscsi-target-dev
10600 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10601 S:      Supported
10602 F:      drivers/target/
10603 F:      include/target/
10604 F:      Documentation/target/
10605
10606 TASKSTATS STATISTICS INTERFACE
10607 M:      Balbir Singh <bsingharora@gmail.com>
10608 S:      Maintained
10609 F:      Documentation/accounting/taskstats*
10610 F:      include/linux/taskstats*
10611 F:      kernel/taskstats.c
10612
10613 TC CLASSIFIER
10614 M:      Jamal Hadi Salim <jhs@mojatatu.com>
10615 L:      netdev@vger.kernel.org
10616 S:      Maintained
10617 F:      include/net/pkt_cls.h
10618 F:      include/uapi/linux/pkt_cls.h
10619 F:      net/sched/
10620
10621 TCP LOW PRIORITY MODULE
10622 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
10623 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
10624 W:      http://tcp-lp-mod.sourceforge.net/
10625 S:      Maintained
10626 F:      net/ipv4/tcp_lp.c
10627
10628 TDA10071 MEDIA DRIVER
10629 M:      Antti Palosaari <crope@iki.fi>
10630 L:      linux-media@vger.kernel.org
10631 W:      https://linuxtv.org
10632 W:      http://palosaari.fi/linux/
10633 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10634 T:      git git://linuxtv.org/anttip/media_tree.git
10635 S:      Maintained
10636 F:      drivers/media/dvb-frontends/tda10071*
10637
10638 TDA18212 MEDIA DRIVER
10639 M:      Antti Palosaari <crope@iki.fi>
10640 L:      linux-media@vger.kernel.org
10641 W:      https://linuxtv.org
10642 W:      http://palosaari.fi/linux/
10643 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10644 T:      git git://linuxtv.org/anttip/media_tree.git
10645 S:      Maintained
10646 F:      drivers/media/tuners/tda18212*
10647
10648 TDA18218 MEDIA DRIVER
10649 M:      Antti Palosaari <crope@iki.fi>
10650 L:      linux-media@vger.kernel.org
10651 W:      https://linuxtv.org
10652 W:      http://palosaari.fi/linux/
10653 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10654 T:      git git://linuxtv.org/anttip/media_tree.git
10655 S:      Maintained
10656 F:      drivers/media/tuners/tda18218*
10657
10658 TDA18271 MEDIA DRIVER
10659 M:      Michael Krufky <mkrufky@linuxtv.org>
10660 L:      linux-media@vger.kernel.org
10661 W:      https://linuxtv.org
10662 W:      http://github.com/mkrufky
10663 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10664 T:      git git://linuxtv.org/mkrufky/tuners.git
10665 S:      Maintained
10666 F:      drivers/media/tuners/tda18271*
10667
10668 TDA827x MEDIA DRIVER
10669 M:      Michael Krufky <mkrufky@linuxtv.org>
10670 L:      linux-media@vger.kernel.org
10671 W:      https://linuxtv.org
10672 W:      http://github.com/mkrufky
10673 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10674 T:      git git://linuxtv.org/mkrufky/tuners.git
10675 S:      Maintained
10676 F:      drivers/media/tuners/tda8290.*
10677
10678 TDA8290 MEDIA DRIVER
10679 M:      Michael Krufky <mkrufky@linuxtv.org>
10680 L:      linux-media@vger.kernel.org
10681 W:      https://linuxtv.org
10682 W:      http://github.com/mkrufky
10683 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10684 T:      git git://linuxtv.org/mkrufky/tuners.git
10685 S:      Maintained
10686 F:      drivers/media/tuners/tda8290.*
10687
10688 TDA9840 MEDIA DRIVER
10689 M:      Hans Verkuil <hverkuil@xs4all.nl>
10690 L:      linux-media@vger.kernel.org
10691 T:      git git://linuxtv.org/media_tree.git
10692 W:      https://linuxtv.org
10693 S:      Maintained
10694 F:      drivers/media/i2c/tda9840*
10695
10696 TEA5761 TUNER DRIVER
10697 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10698 L:      linux-media@vger.kernel.org
10699 W:      https://linuxtv.org
10700 T:      git git://linuxtv.org/media_tree.git
10701 S:      Odd fixes
10702 F:      drivers/media/tuners/tea5761.*
10703
10704 TEA5767 TUNER DRIVER
10705 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10706 L:      linux-media@vger.kernel.org
10707 W:      https://linuxtv.org
10708 T:      git git://linuxtv.org/media_tree.git
10709 S:      Maintained
10710 F:      drivers/media/tuners/tea5767.*
10711
10712 TEA6415C MEDIA DRIVER
10713 M:      Hans Verkuil <hverkuil@xs4all.nl>
10714 L:      linux-media@vger.kernel.org
10715 T:      git git://linuxtv.org/media_tree.git
10716 W:      https://linuxtv.org
10717 S:      Maintained
10718 F:      drivers/media/i2c/tea6415c*
10719
10720 TEA6420 MEDIA DRIVER
10721 M:      Hans Verkuil <hverkuil@xs4all.nl>
10722 L:      linux-media@vger.kernel.org
10723 T:      git git://linuxtv.org/media_tree.git
10724 W:      https://linuxtv.org
10725 S:      Maintained
10726 F:      drivers/media/i2c/tea6420*
10727
10728 TEAM DRIVER
10729 M:      Jiri Pirko <jiri@resnulli.us>
10730 L:      netdev@vger.kernel.org
10731 S:      Supported
10732 F:      drivers/net/team/
10733 F:      include/linux/if_team.h
10734 F:      include/uapi/linux/if_team.h
10735
10736 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
10737 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
10738 S:      Maintained
10739 F:      arch/x86/platform/ts5500/
10740
10741 TECHNOTREND USB IR RECEIVER
10742 M:      Sean Young <sean@mess.org>
10743 L:      linux-media@vger.kernel.org
10744 S:      Maintained
10745 F:      drivers/media/rc/ttusbir.c
10746
10747 TEGRA ARCHITECTURE SUPPORT
10748 M:      Stephen Warren <swarren@wwwdotorg.org>
10749 M:      Thierry Reding <thierry.reding@gmail.com>
10750 M:      Alexandre Courbot <gnurou@gmail.com>
10751 L:      linux-tegra@vger.kernel.org
10752 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
10753 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
10754 S:      Supported
10755 N:      [^a-z]tegra
10756
10757 TEGRA CLOCK DRIVER
10758 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
10759 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
10760 S:      Supported
10761 F:      drivers/clk/tegra/
10762
10763 TEGRA DMA DRIVER
10764 M:      Laxman Dewangan <ldewangan@nvidia.com>
10765 S:      Supported
10766 F:      drivers/dma/tegra20-apb-dma.c
10767
10768 TEGRA I2C DRIVER
10769 M:      Laxman Dewangan <ldewangan@nvidia.com>
10770 S:      Supported
10771 F:      drivers/i2c/busses/i2c-tegra.c
10772
10773 TEGRA IOMMU DRIVERS
10774 M:      Hiroshi Doyu <hdoyu@nvidia.com>
10775 S:      Supported
10776 F:      drivers/iommu/tegra*
10777
10778 TEGRA KBC DRIVER
10779 M:      Rakesh Iyer <riyer@nvidia.com>
10780 M:      Laxman Dewangan <ldewangan@nvidia.com>
10781 S:      Supported
10782 F:      drivers/input/keyboard/tegra-kbc.c
10783
10784 TEGRA PWM DRIVER
10785 M:      Thierry Reding <thierry.reding@gmail.com>
10786 S:      Supported
10787 F:      drivers/pwm/pwm-tegra.c
10788
10789 TEGRA SERIAL DRIVER
10790 M:      Laxman Dewangan <ldewangan@nvidia.com>
10791 S:      Supported
10792 F:      drivers/tty/serial/serial-tegra.c
10793
10794 TEGRA SPI DRIVER
10795 M:      Laxman Dewangan <ldewangan@nvidia.com>
10796 S:      Supported
10797 F:      drivers/spi/spi-tegra*
10798
10799 TEHUTI ETHERNET DRIVER
10800 M:      Andy Gospodarek <andy@greyhouse.net>
10801 L:      netdev@vger.kernel.org
10802 S:      Supported
10803 F:      drivers/net/ethernet/tehuti/*
10804
10805 Telecom Clock Driver for MCPL0010
10806 M:      Mark Gross <mark.gross@intel.com>
10807 S:      Supported
10808 F:      drivers/char/tlclk.c
10809
10810 TENSILICA XTENSA PORT (xtensa)
10811 M:      Chris Zankel <chris@zankel.net>
10812 M:      Max Filippov <jcmvbkbc@gmail.com>
10813 L:      linux-xtensa@linux-xtensa.org
10814 T:      git git://github.com/czankel/xtensa-linux.git
10815 S:      Maintained
10816 F:      arch/xtensa/
10817 F:      drivers/irqchip/irq-xtensa-*
10818
10819 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
10820 M:      Hans Verkuil <hverkuil@xs4all.nl>
10821 L:      linux-media@vger.kernel.org
10822 T:      git git://linuxtv.org/media_tree.git
10823 W:      https://linuxtv.org
10824 S:      Maintained
10825 F:      drivers/media/radio/radio-raremono.c
10826
10827 THERMAL
10828 M:      Zhang Rui <rui.zhang@intel.com>
10829 M:      Eduardo Valentin <edubezval@gmail.com>
10830 L:      linux-pm@vger.kernel.org
10831 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
10832 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
10833 Q:      https://patchwork.kernel.org/project/linux-pm/list/
10834 S:      Supported
10835 F:      drivers/thermal/
10836 F:      include/linux/thermal.h
10837 F:      include/uapi/linux/thermal.h
10838 F:      include/linux/cpu_cooling.h
10839 F:      Documentation/devicetree/bindings/thermal/
10840
10841 THERMAL/CPU_COOLING
10842 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
10843 M:      Viresh Kumar <viresh.kumar@linaro.org>
10844 M:      Javi Merino <javi.merino@arm.com>
10845 L:      linux-pm@vger.kernel.org
10846 S:      Supported
10847 F:      Documentation/thermal/cpu-cooling-api.txt
10848 F:      drivers/thermal/cpu_cooling.c
10849 F:      include/linux/cpu_cooling.h
10850
10851 THINGM BLINK(1) USB RGB LED DRIVER
10852 M:      Vivien Didelot <vivien.didelot@savoirfairelinux.com>
10853 S:      Maintained
10854 F:      drivers/hid/hid-thingm.c
10855
10856 THINKPAD ACPI EXTRAS DRIVER
10857 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
10858 L:      ibm-acpi-devel@lists.sourceforge.net
10859 L:      platform-driver-x86@vger.kernel.org
10860 W:      http://ibm-acpi.sourceforge.net
10861 W:      http://thinkwiki.org/wiki/Ibm-acpi
10862 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
10863 S:      Maintained
10864 F:      drivers/platform/x86/thinkpad_acpi.c
10865
10866 TI BANDGAP AND THERMAL DRIVER
10867 M:      Eduardo Valentin <edubezval@gmail.com>
10868 L:      linux-pm@vger.kernel.org
10869 L:      linux-omap@vger.kernel.org
10870 S:      Maintained
10871 F:      drivers/thermal/ti-soc-thermal/
10872
10873 TI VPE/CAL DRIVERS
10874 M:      Benoit Parrot <bparrot@ti.com>
10875 L:      linux-media@vger.kernel.org
10876 W:      http://linuxtv.org/
10877 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10878 S:      Maintained
10879 F:      drivers/media/platform/ti-vpe/
10880
10881 TI CDCE706 CLOCK DRIVER
10882 M:      Max Filippov <jcmvbkbc@gmail.com>
10883 S:      Maintained
10884 F:      drivers/clk/clk-cdce706.c
10885
10886 TI CLOCK DRIVER
10887 M:      Tero Kristo <t-kristo@ti.com>
10888 L:      linux-omap@vger.kernel.org
10889 S:      Maintained
10890 F:      drivers/clk/ti/
10891 F:      include/linux/clk/ti.h
10892
10893 TI FLASH MEDIA INTERFACE DRIVER
10894 M:      Alex Dubov <oakad@yahoo.com>
10895 S:      Maintained
10896 F:      drivers/misc/tifm*
10897 F:      drivers/mmc/host/tifm_sd.c
10898 F:      include/linux/tifm.h
10899
10900 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
10901 M:      Santosh Shilimkar <ssantosh@kernel.org>
10902 L:      linux-kernel@vger.kernel.org
10903 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10904 S:      Maintained
10905 F:      drivers/soc/ti/*
10906 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
10907
10908
10909 TI LM49xxx FAMILY ASoC CODEC DRIVERS
10910 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
10911 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
10912 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10913 S:      Maintained
10914 F:      sound/soc/codecs/lm49453*
10915 F:      sound/soc/codecs/isabelle*
10916
10917 TI LP855x BACKLIGHT DRIVER
10918 M:      Milo Kim <milo.kim@ti.com>
10919 S:      Maintained
10920 F:      Documentation/backlight/lp855x-driver.txt
10921 F:      drivers/video/backlight/lp855x_bl.c
10922 F:      include/linux/platform_data/lp855x.h
10923
10924 TI LP8727 CHARGER DRIVER
10925 M:      Milo Kim <milo.kim@ti.com>
10926 S:      Maintained
10927 F:      drivers/power/lp8727_charger.c
10928 F:      include/linux/platform_data/lp8727.h
10929
10930 TI LP8788 MFD DRIVER
10931 M:      Milo Kim <milo.kim@ti.com>
10932 S:      Maintained
10933 F:      drivers/iio/adc/lp8788_adc.c
10934 F:      drivers/leds/leds-lp8788.c
10935 F:      drivers/mfd/lp8788*.c
10936 F:      drivers/power/lp8788-charger.c
10937 F:      drivers/regulator/lp8788-*.c
10938 F:      include/linux/mfd/lp8788*.h
10939
10940 TI NETCP ETHERNET DRIVER
10941 M:      Wingman Kwok <w-kwok2@ti.com>
10942 M:      Murali Karicheri <m-karicheri2@ti.com>
10943 L:      netdev@vger.kernel.org
10944 S:      Maintained
10945 F:      drivers/net/ethernet/ti/netcp*
10946
10947 TI TAS571X FAMILY ASoC CODEC DRIVER
10948 M:      Kevin Cernekee <cernekee@chromium.org>
10949 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10950 S:      Odd Fixes
10951 F:      sound/soc/codecs/tas571x*
10952
10953 TI TWL4030 SERIES SOC CODEC DRIVER
10954 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
10955 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10956 S:      Maintained
10957 F:      sound/soc/codecs/twl4030*
10958
10959 TI WILINK WIRELESS DRIVERS
10960 L:      linux-wireless@vger.kernel.org
10961 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
10962 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
10963 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
10964 S:      Orphan
10965 F:      drivers/net/wireless/ti/
10966 F:      include/linux/wl12xx.h
10967
10968 TIPC NETWORK LAYER
10969 M:      Jon Maloy <jon.maloy@ericsson.com>
10970 M:      Ying Xue <ying.xue@windriver.com>
10971 L:      netdev@vger.kernel.org (core kernel code)
10972 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
10973 W:      http://tipc.sourceforge.net/
10974 S:      Maintained
10975 F:      include/uapi/linux/tipc*.h
10976 F:      net/tipc/
10977
10978 TILE ARCHITECTURE
10979 M:      Chris Metcalf <cmetcalf@ezchip.com>
10980 W:      http://www.ezchip.com/scm/
10981 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cmetcalf/linux-tile.git
10982 S:      Supported
10983 F:      arch/tile/
10984 F:      drivers/char/tile-srom.c
10985 F:      drivers/edac/tile_edac.c
10986 F:      drivers/net/ethernet/tile/
10987 F:      drivers/rtc/rtc-tile.c
10988 F:      drivers/tty/hvc/hvc_tile.c
10989 F:      drivers/tty/serial/tilegx.c
10990 F:      drivers/usb/host/*-tilegx.c
10991 F:      include/linux/usb/tilegx.h
10992
10993 TLAN NETWORK DRIVER
10994 M:      Samuel Chessman <chessman@tux.org>
10995 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
10996 W:      http://sourceforge.net/projects/tlan/
10997 S:      Maintained
10998 F:      Documentation/networking/tlan.txt
10999 F:      drivers/net/ethernet/ti/tlan.*
11000
11001 TOMOYO SECURITY MODULE
11002 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
11003 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
11004 L:      tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
11005 L:      tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
11006 L:      tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
11007 L:      tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
11008 W:      http://tomoyo.sourceforge.jp/
11009 T:      quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
11010 S:      Maintained
11011 F:      security/tomoyo/
11012
11013 TOPSTAR LAPTOP EXTRAS DRIVER
11014 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
11015 L:      platform-driver-x86@vger.kernel.org
11016 S:      Maintained
11017 F:      drivers/platform/x86/topstar-laptop.c
11018
11019 TOSHIBA ACPI EXTRAS DRIVER
11020 M:      Azael Avalos <coproscefalo@gmail.com>
11021 L:      platform-driver-x86@vger.kernel.org
11022 S:      Maintained
11023 F:      drivers/platform/x86/toshiba_acpi.c
11024
11025 TOSHIBA BLUETOOTH DRIVER
11026 M:      Azael Avalos <coproscefalo@gmail.com>
11027 L:      platform-driver-x86@vger.kernel.org
11028 S:      Maintained
11029 F:      drivers/platform/x86/toshiba_bluetooth.c
11030
11031 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
11032 M:      Azael Avalos <coproscefalo@gmail.com>
11033 L:      platform-driver-x86@vger.kernel.org
11034 S:      Maintained
11035 F:      drivers/platform/x86/toshiba_haps.c
11036
11037 TOSHIBA WMI HOTKEYS DRIVER
11038 M:      Azael Avalos <coproscefalo@gmail.com>
11039 L:      platform-driver-x86@vger.kernel.org
11040 S:      Maintained
11041 F:      drivers/platform/x86/toshiba-wmi.c
11042
11043 TOSHIBA SMM DRIVER
11044 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
11045 W:      http://www.buzzard.org.uk/toshiba/
11046 S:      Maintained
11047 F:      drivers/char/toshiba.c
11048 F:      include/linux/toshiba.h
11049 F:      include/uapi/linux/toshiba.h
11050
11051 TOSHIBA TC358743 DRIVER
11052 M:      Mats Randgaard <matrandg@cisco.com>
11053 L:      linux-media@vger.kernel.org
11054 S:      Maintained
11055 F:      drivers/media/i2c/tc358743*
11056 F:      include/media/i2c/tc358743.h
11057
11058 TMIO MMC DRIVER
11059 M:      Ian Molton <ian@mnementh.co.uk>
11060 L:      linux-mmc@vger.kernel.org
11061 S:      Maintained
11062 F:      drivers/mmc/host/tmio_mmc*
11063 F:      drivers/mmc/host/sh_mobile_sdhi.c
11064 F:      include/linux/mmc/tmio.h
11065 F:      include/linux/mmc/sh_mobile_sdhi.h
11066
11067 TMP401 HARDWARE MONITOR DRIVER
11068 M:      Guenter Roeck <linux@roeck-us.net>
11069 L:      lm-sensors@lm-sensors.org
11070 S:      Maintained
11071 F:      Documentation/hwmon/tmp401
11072 F:      drivers/hwmon/tmp401.c
11073
11074 TMPFS (SHMEM FILESYSTEM)
11075 M:      Hugh Dickins <hughd@google.com>
11076 L:      linux-mm@kvack.org
11077 S:      Maintained
11078 F:      include/linux/shmem_fs.h
11079 F:      mm/shmem.c
11080
11081 TM6000 VIDEO4LINUX DRIVER
11082 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
11083 L:      linux-media@vger.kernel.org
11084 W:      https://linuxtv.org
11085 T:      git git://linuxtv.org/media_tree.git
11086 S:      Odd fixes
11087 F:      drivers/media/usb/tm6000/
11088
11089 TW68 VIDEO4LINUX DRIVER
11090 M:      Hans Verkuil <hverkuil@xs4all.nl>
11091 L:      linux-media@vger.kernel.org
11092 T:      git git://linuxtv.org/media_tree.git
11093 W:      https://linuxtv.org
11094 S:      Odd Fixes
11095 F:      drivers/media/pci/tw68/
11096
11097 TPM DEVICE DRIVER
11098 M:      Peter Huewe <peterhuewe@gmx.de>
11099 M:      Marcel Selhorst <tpmdd@selhorst.net>
11100 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
11101 R:      Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
11102 W:      http://tpmdd.sourceforge.net
11103 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
11104 Q:      git git://github.com/PeterHuewe/linux-tpmdd.git
11105 T:      git https://github.com/PeterHuewe/linux-tpmdd
11106 S:      Maintained
11107 F:      drivers/char/tpm/
11108
11109 TPM IBM_VTPM DEVICE DRIVER
11110 M:      Ashley Lai <ashleydlai@gmail.com>
11111 W:      http://tpmdd.sourceforge.net
11112 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
11113 S:      Maintained
11114 F:      drivers/char/tpm/tpm_ibmvtpm*
11115
11116 TRACING
11117 M:      Steven Rostedt <rostedt@goodmis.org>
11118 M:      Ingo Molnar <mingo@redhat.com>
11119 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
11120 S:      Maintained
11121 F:      Documentation/trace/ftrace.txt
11122 F:      arch/*/*/*/ftrace.h
11123 F:      arch/*/kernel/ftrace.c
11124 F:      include/*/ftrace.h
11125 F:      include/linux/trace*.h
11126 F:      include/trace/
11127 F:      kernel/trace/
11128 F:      tools/testing/selftests/ftrace/
11129
11130 TRIVIAL PATCHES
11131 M:      Jiri Kosina <trivial@kernel.org>
11132 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
11133 S:      Maintained
11134 K:      ^Subject:.*(?i)trivial
11135
11136 TTY LAYER
11137 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11138 M:      Jiri Slaby <jslaby@suse.com>
11139 S:      Supported
11140 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
11141 F:      Documentation/serial/
11142 F:      drivers/tty/
11143 F:      drivers/tty/serial/serial_core.c
11144 F:      include/linux/serial_core.h
11145 F:      include/linux/serial.h
11146 F:      include/linux/tty.h
11147 F:      include/uapi/linux/serial_core.h
11148 F:      include/uapi/linux/serial.h
11149 F:      include/uapi/linux/tty.h
11150
11151 TUA9001 MEDIA DRIVER
11152 M:      Antti Palosaari <crope@iki.fi>
11153 L:      linux-media@vger.kernel.org
11154 W:      https://linuxtv.org
11155 W:      http://palosaari.fi/linux/
11156 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11157 T:      git git://linuxtv.org/anttip/media_tree.git
11158 S:      Maintained
11159 F:      drivers/media/tuners/tua9001*
11160
11161 TULIP NETWORK DRIVERS
11162 L:      netdev@vger.kernel.org
11163 L:      linux-parisc@vger.kernel.org
11164 S:      Orphan
11165 F:      drivers/net/ethernet/dec/tulip/
11166
11167 TUN/TAP driver
11168 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
11169 W:      http://vtun.sourceforge.net/tun
11170 S:      Maintained
11171 F:      Documentation/networking/tuntap.txt
11172 F:      arch/um/os-Linux/drivers/
11173
11174 TURBOCHANNEL SUBSYSTEM
11175 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
11176 M:      Ralf Baechle <ralf@linux-mips.org>
11177 L:      linux-mips@linux-mips.org
11178 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
11179 S:      Maintained
11180 F:      drivers/tc/
11181 F:      include/linux/tc.h
11182
11183 U14-34F SCSI DRIVER
11184 M:      Dario Ballabio <ballabio_dario@emc.com>
11185 L:      linux-scsi@vger.kernel.org
11186 S:      Maintained
11187 F:      drivers/scsi/u14-34f.c
11188
11189 UBI FILE SYSTEM (UBIFS)
11190 M:      Artem Bityutskiy <dedekind1@gmail.com>
11191 M:      Adrian Hunter <adrian.hunter@intel.com>
11192 L:      linux-mtd@lists.infradead.org
11193 T:      git git://git.infradead.org/ubifs-2.6.git
11194 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
11195 S:      Maintained
11196 F:      Documentation/filesystems/ubifs.txt
11197 F:      fs/ubifs/
11198
11199 UCLINUX (M68KNOMMU AND COLDFIRE)
11200 M:      Greg Ungerer <gerg@uclinux.org>
11201 W:      http://www.uclinux.org/
11202 L:      linux-m68k@lists.linux-m68k.org
11203 L:      uclinux-dev@uclinux.org  (subscribers-only)
11204 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
11205 S:      Maintained
11206 F:      arch/m68k/coldfire/
11207 F:      arch/m68k/68*/
11208 F:      arch/m68k/*/*_no.*
11209 F:      arch/m68k/include/asm/*_no.*
11210
11211 UDF FILESYSTEM
11212 M:      Jan Kara <jack@suse.com>
11213 S:      Maintained
11214 F:      Documentation/filesystems/udf.txt
11215 F:      fs/udf/
11216
11217 UFS FILESYSTEM
11218 M:      Evgeniy Dushistov <dushistov@mail.ru>
11219 S:      Maintained
11220 F:      Documentation/filesystems/ufs.txt
11221 F:      fs/ufs/
11222
11223 UHID USERSPACE HID IO DRIVER:
11224 M:      David Herrmann <dh.herrmann@googlemail.com>
11225 L:      linux-input@vger.kernel.org
11226 S:      Maintained
11227 F:      drivers/hid/uhid.c
11228 F:      include/uapi/linux/uhid.h
11229
11230 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
11231 L:      linux-usb@vger.kernel.org
11232 S:      Orphan
11233 F:      drivers/uwb/
11234 F:      include/linux/uwb.h
11235 F:      include/linux/uwb/
11236
11237 UNICORE32 ARCHITECTURE:
11238 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
11239 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
11240 S:      Maintained
11241 T:      git git://github.com/gxt/linux.git
11242 F:      arch/unicore32/
11243
11244 UNIFDEF
11245 M:      Tony Finch <dot@dotat.at>
11246 W:      http://dotat.at/prog/unifdef
11247 S:      Maintained
11248 F:      scripts/unifdef.c
11249
11250 UNIFORM CDROM DRIVER
11251 M:      Jens Axboe <axboe@kernel.dk>
11252 W:      http://www.kernel.dk
11253 S:      Maintained
11254 F:      Documentation/cdrom/
11255 F:      drivers/cdrom/cdrom.c
11256 F:      include/linux/cdrom.h
11257 F:      include/uapi/linux/cdrom.h
11258
11259 UNISYS S-PAR DRIVERS
11260 M:      Benjamin Romer <benjamin.romer@unisys.com>
11261 M:      David Kershner <david.kershner@unisys.com>
11262 L:      sparmaintainer@unisys.com (Unisys internal)
11263 S:      Supported
11264 F:      drivers/staging/unisys/
11265
11266 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
11267 M:      Vinayak Holikatti <vinholikatti@gmail.com>
11268 L:      linux-scsi@vger.kernel.org
11269 S:      Supported
11270 F:      Documentation/scsi/ufs.txt
11271 F:      drivers/scsi/ufs/
11272
11273 UNSORTED BLOCK IMAGES (UBI)
11274 M:      Artem Bityutskiy <dedekind1@gmail.com>
11275 M:      Richard Weinberger <richard@nod.at>
11276 W:      http://www.linux-mtd.infradead.org/
11277 L:      linux-mtd@lists.infradead.org
11278 T:      git git://git.infradead.org/ubifs-2.6.git
11279 S:      Supported
11280 F:      drivers/mtd/ubi/
11281 F:      include/linux/mtd/ubi.h
11282 F:      include/uapi/mtd/ubi-user.h
11283
11284 USB ACM DRIVER
11285 M:      Oliver Neukum <oliver@neukum.org>
11286 L:      linux-usb@vger.kernel.org
11287 S:      Maintained
11288 F:      Documentation/usb/acm.txt
11289 F:      drivers/usb/class/cdc-acm.*
11290
11291 USB AR5523 WIRELESS DRIVER
11292 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
11293 L:      linux-wireless@vger.kernel.org
11294 S:      Maintained
11295 F:      drivers/net/wireless/ath/ar5523/
11296
11297 USB ATTACHED SCSI
11298 M:      Hans de Goede <hdegoede@redhat.com>
11299 M:      Gerd Hoffmann <kraxel@redhat.com>
11300 L:      linux-usb@vger.kernel.org
11301 L:      linux-scsi@vger.kernel.org
11302 S:      Maintained
11303 F:      drivers/usb/storage/uas.c
11304
11305 USB CDC ETHERNET DRIVER
11306 M:      Oliver Neukum <oliver@neukum.org>
11307 L:      linux-usb@vger.kernel.org
11308 S:      Maintained
11309 F:      drivers/net/usb/cdc_*.c
11310 F:      include/uapi/linux/usb/cdc.h
11311
11312 USB CHAOSKEY DRIVER
11313 M:      Keith Packard <keithp@keithp.com>
11314 L:      linux-usb@vger.kernel.org
11315 S:      Maintained
11316 F:      drivers/usb/misc/chaoskey.c
11317
11318 USB CYPRESS C67X00 DRIVER
11319 M:      Peter Korsgaard <jacmet@sunsite.dk>
11320 L:      linux-usb@vger.kernel.org
11321 S:      Maintained
11322 F:      drivers/usb/c67x00/
11323
11324 USB DAVICOM DM9601 DRIVER
11325 M:      Peter Korsgaard <jacmet@sunsite.dk>
11326 L:      netdev@vger.kernel.org
11327 W:      http://www.linux-usb.org/usbnet
11328 S:      Maintained
11329 F:      drivers/net/usb/dm9601.c
11330
11331 USB DIAMOND RIO500 DRIVER
11332 M:      Cesar Miquel <miquel@df.uba.ar>
11333 L:      rio500-users@lists.sourceforge.net
11334 W:      http://rio500.sourceforge.net
11335 S:      Maintained
11336 F:      drivers/usb/misc/rio500*
11337
11338 USB EHCI DRIVER
11339 M:      Alan Stern <stern@rowland.harvard.edu>
11340 L:      linux-usb@vger.kernel.org
11341 S:      Maintained
11342 F:      Documentation/usb/ehci.txt
11343 F:      drivers/usb/host/ehci*
11344
11345 USB GADGET/PERIPHERAL SUBSYSTEM
11346 M:      Felipe Balbi <balbi@kernel.org>
11347 L:      linux-usb@vger.kernel.org
11348 W:      http://www.linux-usb.org/gadget
11349 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
11350 S:      Maintained
11351 F:      drivers/usb/gadget/
11352 F:      include/linux/usb/gadget*
11353
11354 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
11355 M:      Jiri Kosina <jikos@kernel.org>
11356 R:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
11357 L:      linux-usb@vger.kernel.org
11358 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
11359 S:      Maintained
11360 F:      Documentation/hid/hiddev.txt
11361 F:      drivers/hid/usbhid/
11362
11363 USB ISP116X DRIVER
11364 M:      Olav Kongas <ok@artecdesign.ee>
11365 L:      linux-usb@vger.kernel.org
11366 S:      Maintained
11367 F:      drivers/usb/host/isp116x*
11368 F:      include/linux/usb/isp116x.h
11369
11370 USB MASS STORAGE DRIVER
11371 M:      Matthew Dharm <mdharm-usb@one-eyed-alien.net>
11372 L:      linux-usb@vger.kernel.org
11373 L:      usb-storage@lists.one-eyed-alien.net
11374 S:      Maintained
11375 W:      http://www.one-eyed-alien.net/~mdharm/linux-usb/
11376 F:      drivers/usb/storage/
11377
11378 USB MIDI DRIVER
11379 M:      Clemens Ladisch <clemens@ladisch.de>
11380 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11381 T:      git git://git.alsa-project.org/alsa-kernel.git
11382 S:      Maintained
11383 F:      sound/usb/midi.*
11384
11385 USB NETWORKING DRIVERS
11386 L:      linux-usb@vger.kernel.org
11387 S:      Odd Fixes
11388 F:      drivers/net/usb/
11389
11390 USB OHCI DRIVER
11391 M:      Alan Stern <stern@rowland.harvard.edu>
11392 L:      linux-usb@vger.kernel.org
11393 S:      Maintained
11394 F:      Documentation/usb/ohci.txt
11395 F:      drivers/usb/host/ohci*
11396
11397 USB OTG FSM (Finite State Machine)
11398 M:      Peter Chen <Peter.Chen@nxp.com>
11399 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
11400 L:      linux-usb@vger.kernel.org
11401 S:      Maintained
11402 F:      drivers/usb/common/usb-otg-fsm.c
11403
11404 USB OVER IP DRIVER
11405 M:      Valentina Manea <valentina.manea.m@gmail.com>
11406 M:      Shuah Khan <shuah.kh@samsung.com>
11407 L:      linux-usb@vger.kernel.org
11408 S:      Maintained
11409 F:      drivers/usb/usbip/
11410 F:      tools/usb/usbip/
11411
11412 USB PEGASUS DRIVER
11413 M:      Petko Manolov <petkan@nucleusys.com>
11414 L:      linux-usb@vger.kernel.org
11415 L:      netdev@vger.kernel.org
11416 T:      git git://github.com/petkan/pegasus.git
11417 W:      https://github.com/petkan/pegasus
11418 S:      Maintained
11419 F:      drivers/net/usb/pegasus.*
11420
11421 USB PHY LAYER
11422 M:      Felipe Balbi <balbi@kernel.org>
11423 L:      linux-usb@vger.kernel.org
11424 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
11425 S:      Maintained
11426 F:      drivers/usb/phy/
11427
11428 USB PRINTER DRIVER (usblp)
11429 M:      Pete Zaitcev <zaitcev@redhat.com>
11430 L:      linux-usb@vger.kernel.org
11431 S:      Supported
11432 F:      drivers/usb/class/usblp.c
11433
11434 USB QMI WWAN NETWORK DRIVER
11435 M:      Bjørn Mork <bjorn@mork.no>
11436 L:      netdev@vger.kernel.org
11437 S:      Maintained
11438 F:      Documentation/ABI/testing/sysfs-class-net-qmi
11439 F:      drivers/net/usb/qmi_wwan.c
11440
11441 USB RTL8150 DRIVER
11442 M:      Petko Manolov <petkan@nucleusys.com>
11443 L:      linux-usb@vger.kernel.org
11444 L:      netdev@vger.kernel.org
11445 T:      git git://github.com/petkan/rtl8150.git
11446 W:      https://github.com/petkan/rtl8150
11447 S:      Maintained
11448 F:      drivers/net/usb/rtl8150.c
11449
11450 USB SERIAL SUBSYSTEM
11451 M:      Johan Hovold <johan@kernel.org>
11452 L:      linux-usb@vger.kernel.org
11453 S:      Maintained
11454 F:      Documentation/usb/usb-serial.txt
11455 F:      drivers/usb/serial/
11456 F:      include/linux/usb/serial.h
11457
11458 USB SMSC75XX ETHERNET DRIVER
11459 M:      Steve Glendinning <steve.glendinning@shawell.net>
11460 L:      netdev@vger.kernel.org
11461 S:      Maintained
11462 F:      drivers/net/usb/smsc75xx.*
11463
11464 USB SMSC95XX ETHERNET DRIVER
11465 M:      Steve Glendinning <steve.glendinning@shawell.net>
11466 L:      netdev@vger.kernel.org
11467 S:      Maintained
11468 F:      drivers/net/usb/smsc95xx.*
11469
11470 USB SUBSYSTEM
11471 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11472 L:      linux-usb@vger.kernel.org
11473 W:      http://www.linux-usb.org
11474 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
11475 S:      Supported
11476 F:      Documentation/usb/
11477 F:      drivers/usb/
11478 F:      include/linux/usb.h
11479 F:      include/linux/usb/
11480
11481 USB UHCI DRIVER
11482 M:      Alan Stern <stern@rowland.harvard.edu>
11483 L:      linux-usb@vger.kernel.org
11484 S:      Maintained
11485 F:      drivers/usb/host/uhci*
11486
11487 USB "USBNET" DRIVER FRAMEWORK
11488 M:      Oliver Neukum <oneukum@suse.com>
11489 L:      netdev@vger.kernel.org
11490 W:      http://www.linux-usb.org/usbnet
11491 S:      Maintained
11492 F:      drivers/net/usb/usbnet.c
11493 F:      include/linux/usb/usbnet.h
11494
11495 USB VIDEO CLASS
11496 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11497 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
11498 L:      linux-media@vger.kernel.org
11499 T:      git git://linuxtv.org/media_tree.git
11500 W:      http://www.ideasonboard.org/uvc/
11501 S:      Maintained
11502 F:      drivers/media/usb/uvc/
11503 F:      include/uapi/linux/uvcvideo.h
11504
11505 USB VISION DRIVER
11506 M:      Hans Verkuil <hverkuil@xs4all.nl>
11507 L:      linux-media@vger.kernel.org
11508 T:      git git://linuxtv.org/media_tree.git
11509 W:      https://linuxtv.org
11510 S:      Odd Fixes
11511 F:      drivers/media/usb/usbvision/
11512
11513 USB WEBCAM GADGET
11514 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11515 L:      linux-usb@vger.kernel.org
11516 S:      Maintained
11517 F:      drivers/usb/gadget/function/*uvc*
11518 F:      drivers/usb/gadget/legacy/webcam.c
11519
11520 USB WIRELESS RNDIS DRIVER (rndis_wlan)
11521 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
11522 L:      linux-wireless@vger.kernel.org
11523 S:      Maintained
11524 F:      drivers/net/wireless/rndis_wlan.c
11525
11526 USB XHCI DRIVER
11527 M:      Mathias Nyman <mathias.nyman@intel.com>
11528 L:      linux-usb@vger.kernel.org
11529 S:      Supported
11530 F:      drivers/usb/host/xhci*
11531 F:      drivers/usb/host/pci-quirks*
11532
11533 USB ZD1201 DRIVER
11534 L:      linux-wireless@vger.kernel.org
11535 W:      http://linux-lc100020.sourceforge.net
11536 S:      Orphan
11537 F:      drivers/net/wireless/zydas/zd1201.*
11538
11539 USB ZR364XX DRIVER
11540 M:      Antoine Jacquet <royale@zerezo.com>
11541 L:      linux-usb@vger.kernel.org
11542 L:      linux-media@vger.kernel.org
11543 T:      git git://linuxtv.org/media_tree.git
11544 W:      http://royale.zerezo.com/zr364xx/
11545 S:      Maintained
11546 F:      Documentation/video4linux/zr364xx.txt
11547 F:      drivers/media/usb/zr364xx/
11548
11549 ULPI BUS
11550 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
11551 L:      linux-usb@vger.kernel.org
11552 S:      Maintained
11553 F:      drivers/usb/common/ulpi.c
11554 F:      include/linux/ulpi/
11555
11556 USER-MODE LINUX (UML)
11557 M:      Jeff Dike <jdike@addtoit.com>
11558 M:      Richard Weinberger <richard@nod.at>
11559 L:      user-mode-linux-devel@lists.sourceforge.net
11560 L:      user-mode-linux-user@lists.sourceforge.net
11561 W:      http://user-mode-linux.sourceforge.net
11562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
11563 S:      Maintained
11564 F:      Documentation/virtual/uml/
11565 F:      arch/um/
11566 F:      arch/x86/um/
11567 F:      fs/hostfs/
11568 F:      fs/hppfs/
11569
11570 USERSPACE I/O (UIO)
11571 M:      "Hans J. Koch" <hjk@hansjkoch.de>
11572 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11573 S:      Maintained
11574 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
11575 F:      Documentation/DocBook/uio-howto.tmpl
11576 F:      drivers/uio/
11577 F:      include/linux/uio*.h
11578
11579 UTIL-LINUX PACKAGE
11580 M:      Karel Zak <kzak@redhat.com>
11581 L:      util-linux@vger.kernel.org
11582 W:      http://en.wikipedia.org/wiki/Util-linux
11583 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
11584 S:      Maintained
11585
11586 UVESAFB DRIVER
11587 M:      Michal Januszewski <spock@gentoo.org>
11588 L:      linux-fbdev@vger.kernel.org
11589 W:      http://dev.gentoo.org/~spock/projects/uvesafb/
11590 S:      Maintained
11591 F:      Documentation/fb/uvesafb.txt
11592 F:      drivers/video/fbdev/uvesafb.*
11593
11594 VF610 NAND DRIVER
11595 M:      Stefan Agner <stefan@agner.ch>
11596 L:      linux-mtd@lists.infradead.org
11597 S:      Supported
11598 F:      drivers/mtd/nand/vf610_nfc.c
11599
11600 VFAT/FAT/MSDOS FILESYSTEM
11601 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
11602 S:      Maintained
11603 F:      Documentation/filesystems/vfat.txt
11604 F:      fs/fat/
11605
11606 VFIO DRIVER
11607 M:      Alex Williamson <alex.williamson@redhat.com>
11608 L:      kvm@vger.kernel.org
11609 T:      git git://github.com/awilliam/linux-vfio.git
11610 S:      Maintained
11611 F:      Documentation/vfio.txt
11612 F:      drivers/vfio/
11613 F:      include/linux/vfio.h
11614 F:      include/uapi/linux/vfio.h
11615
11616 VFIO PLATFORM DRIVER
11617 M:      Baptiste Reynal <b.reynal@virtualopensystems.com>
11618 L:      kvm@vger.kernel.org
11619 S:      Maintained
11620 F:      drivers/vfio/platform/
11621
11622 VIDEOBUF2 FRAMEWORK
11623 M:      Pawel Osciak <pawel@osciak.com>
11624 M:      Marek Szyprowski <m.szyprowski@samsung.com>
11625 M:      Kyungmin Park <kyungmin.park@samsung.com>
11626 L:      linux-media@vger.kernel.org
11627 S:      Maintained
11628 F:      drivers/media/v4l2-core/videobuf2-*
11629 F:      include/media/videobuf2-*
11630
11631 VIRTUAL SERIO DEVICE DRIVER
11632 M:      Stephen Chandler Paul <thatslyude@gmail.com>
11633 S:      Maintained
11634 F:      drivers/input/serio/userio.c
11635 F:      include/uapi/linux/userio.h
11636
11637 VIRTIO CONSOLE DRIVER
11638 M:      Amit Shah <amit.shah@redhat.com>
11639 L:      virtualization@lists.linux-foundation.org
11640 S:      Maintained
11641 F:      drivers/char/virtio_console.c
11642 F:      include/linux/virtio_console.h
11643 F:      include/uapi/linux/virtio_console.h
11644
11645 VIRTIO CORE, NET AND BLOCK DRIVERS
11646 M:      "Michael S. Tsirkin" <mst@redhat.com>
11647 L:      virtualization@lists.linux-foundation.org
11648 S:      Maintained
11649 F:      drivers/virtio/
11650 F:      tools/virtio/
11651 F:      drivers/net/virtio_net.c
11652 F:      drivers/block/virtio_blk.c
11653 F:      include/linux/virtio_*.h
11654 F:      include/uapi/linux/virtio_*.h
11655
11656 VIRTIO DRIVERS FOR S390
11657 M:      Christian Borntraeger <borntraeger@de.ibm.com>
11658 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
11659 L:      linux-s390@vger.kernel.org
11660 L:      virtualization@lists.linux-foundation.org
11661 L:      kvm@vger.kernel.org
11662 S:      Supported
11663 F:      drivers/s390/virtio/
11664
11665 VIRTIO GPU DRIVER
11666 M:      David Airlie <airlied@linux.ie>
11667 M:      Gerd Hoffmann <kraxel@redhat.com>
11668 L:      dri-devel@lists.freedesktop.org
11669 L:      virtualization@lists.linux-foundation.org
11670 S:      Maintained
11671 F:      drivers/gpu/drm/virtio/
11672 F:      include/uapi/linux/virtio_gpu.h
11673
11674 VIRTIO HOST (VHOST)
11675 M:      "Michael S. Tsirkin" <mst@redhat.com>
11676 L:      kvm@vger.kernel.org
11677 L:      virtualization@lists.linux-foundation.org
11678 L:      netdev@vger.kernel.org
11679 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
11680 S:      Maintained
11681 F:      drivers/vhost/
11682 F:      include/uapi/linux/vhost.h
11683
11684 VIRTIO INPUT DRIVER
11685 M:      Gerd Hoffmann <kraxel@redhat.com>
11686 S:      Maintained
11687 F:      drivers/virtio/virtio_input.c
11688 F:      include/uapi/linux/virtio_input.h
11689
11690 VIA RHINE NETWORK DRIVER
11691 S:      Orphan
11692 F:      drivers/net/ethernet/via/via-rhine.c
11693
11694 VIA SD/MMC CARD CONTROLLER DRIVER
11695 M:      Bruce Chang <brucechang@via.com.tw>
11696 M:      Harald Welte <HaraldWelte@viatech.com>
11697 S:      Maintained
11698 F:      drivers/mmc/host/via-sdmmc.c
11699
11700 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
11701 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
11702 L:      linux-fbdev@vger.kernel.org
11703 S:      Maintained
11704 F:      include/linux/via-core.h
11705 F:      include/linux/via-gpio.h
11706 F:      include/linux/via_i2c.h
11707 F:      drivers/video/fbdev/via/
11708
11709 VIA VELOCITY NETWORK DRIVER
11710 M:      Francois Romieu <romieu@fr.zoreil.com>
11711 L:      netdev@vger.kernel.org
11712 S:      Maintained
11713 F:      drivers/net/ethernet/via/via-velocity.*
11714
11715 VIRT LIB
11716 M:      Alex Williamson <alex.williamson@redhat.com>
11717 M:      Paolo Bonzini <pbonzini@redhat.com>
11718 L:      kvm@vger.kernel.org
11719 S:      Supported
11720 F:      virt/lib/
11721
11722 VIVID VIRTUAL VIDEO DRIVER
11723 M:      Hans Verkuil <hverkuil@xs4all.nl>
11724 L:      linux-media@vger.kernel.org
11725 T:      git git://linuxtv.org/media_tree.git
11726 W:      https://linuxtv.org
11727 S:      Maintained
11728 F:      drivers/media/platform/vivid/*
11729
11730 VLAN (802.1Q)
11731 M:      Patrick McHardy <kaber@trash.net>
11732 L:      netdev@vger.kernel.org
11733 S:      Maintained
11734 F:      drivers/net/macvlan.c
11735 F:      include/linux/if_*vlan.h
11736 F:      net/8021q/
11737
11738 VLYNQ BUS
11739 M:      Florian Fainelli <florian@openwrt.org>
11740 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
11741 S:      Maintained
11742 F:      drivers/vlynq/vlynq.c
11743 F:      include/linux/vlynq.h
11744
11745 VME SUBSYSTEM
11746 M:      Martyn Welch <martyn@welchs.me.uk>
11747 M:      Manohar Vanga <manohar.vanga@gmail.com>
11748 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11749 L:      devel@driverdev.osuosl.org
11750 S:      Maintained
11751 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
11752 F:      Documentation/vme_api.txt
11753 F:      drivers/staging/vme/
11754 F:      drivers/vme/
11755 F:      include/linux/vme*
11756
11757 VMWARE HYPERVISOR INTERFACE
11758 M:      Alok Kataria <akataria@vmware.com>
11759 L:      virtualization@lists.linux-foundation.org
11760 S:      Supported
11761 F:      arch/x86/kernel/cpu/vmware.c
11762
11763 VMWARE BALLOON DRIVER
11764 M:      Xavier Deguillard <xdeguillard@vmware.com>
11765 M:      Philip Moltmann <moltmann@vmware.com>
11766 M:      "VMware, Inc." <pv-drivers@vmware.com>
11767 L:      linux-kernel@vger.kernel.org
11768 S:      Maintained
11769 F:      drivers/misc/vmw_balloon.c
11770
11771 VMWARE VMMOUSE SUBDRIVER
11772 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
11773 M:      "VMware, Inc." <pv-drivers@vmware.com>
11774 L:      linux-input@vger.kernel.org
11775 S:      Maintained
11776 F:      drivers/input/mouse/vmmouse.c
11777 F:      drivers/input/mouse/vmmouse.h
11778
11779 VMWARE VMXNET3 ETHERNET DRIVER
11780 M:      Shrikrishna Khare <skhare@vmware.com>
11781 M:      "VMware, Inc." <pv-drivers@vmware.com>
11782 L:      netdev@vger.kernel.org
11783 S:      Maintained
11784 F:      drivers/net/vmxnet3/
11785
11786 VMware PVSCSI driver
11787 M:      Arvind Kumar <arvindkumar@vmware.com>
11788 M:      VMware PV-Drivers <pv-drivers@vmware.com>
11789 L:      linux-scsi@vger.kernel.org
11790 S:      Maintained
11791 F:      drivers/scsi/vmw_pvscsi.c
11792 F:      drivers/scsi/vmw_pvscsi.h
11793
11794 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
11795 M:      Liam Girdwood <lgirdwood@gmail.com>
11796 M:      Mark Brown <broonie@kernel.org>
11797 L:      linux-kernel@vger.kernel.org
11798 W:      http://www.slimlogic.co.uk/?p=48
11799 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
11800 S:      Supported
11801 F:      drivers/regulator/
11802 F:      include/linux/regulator/
11803
11804 VRF
11805 M:      David Ahern <dsa@cumulusnetworks.com>
11806 M:      Shrijeet Mukherjee <shm@cumulusnetworks.com>
11807 L:      netdev@vger.kernel.org
11808 S:      Maintained
11809 F:      drivers/net/vrf.c
11810 F:      Documentation/networking/vrf.txt
11811
11812 VT1211 HARDWARE MONITOR DRIVER
11813 M:      Juerg Haefliger <juergh@gmail.com>
11814 L:      lm-sensors@lm-sensors.org
11815 S:      Maintained
11816 F:      Documentation/hwmon/vt1211
11817 F:      drivers/hwmon/vt1211.c
11818
11819 VT8231 HARDWARE MONITOR DRIVER
11820 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
11821 L:      lm-sensors@lm-sensors.org
11822 S:      Maintained
11823 F:      drivers/hwmon/vt8231.c
11824
11825 VUB300 USB to SDIO/SD/MMC bridge chip
11826 M:      Tony Olech <tony.olech@elandigitalsystems.com>
11827 L:      linux-mmc@vger.kernel.org
11828 L:      linux-usb@vger.kernel.org
11829 S:      Supported
11830 F:      drivers/mmc/host/vub300.c
11831
11832 W1 DALLAS'S 1-WIRE BUS
11833 M:      Evgeniy Polyakov <zbr@ioremap.net>
11834 S:      Maintained
11835 F:      Documentation/w1/
11836 F:      drivers/w1/
11837
11838 W83791D HARDWARE MONITORING DRIVER
11839 M:      Marc Hulsman <m.hulsman@tudelft.nl>
11840 L:      lm-sensors@lm-sensors.org
11841 S:      Maintained
11842 F:      Documentation/hwmon/w83791d
11843 F:      drivers/hwmon/w83791d.c
11844
11845 W83793 HARDWARE MONITORING DRIVER
11846 M:      Rudolf Marek <r.marek@assembler.cz>
11847 L:      lm-sensors@lm-sensors.org
11848 S:      Maintained
11849 F:      Documentation/hwmon/w83793
11850 F:      drivers/hwmon/w83793.c
11851
11852 W83795 HARDWARE MONITORING DRIVER
11853 M:      Jean Delvare <jdelvare@suse.com>
11854 L:      lm-sensors@lm-sensors.org
11855 S:      Maintained
11856 F:      drivers/hwmon/w83795.c
11857
11858 W83L51xD SD/MMC CARD INTERFACE DRIVER
11859 M:      Pierre Ossman <pierre@ossman.eu>
11860 S:      Maintained
11861 F:      drivers/mmc/host/wbsd.*
11862
11863 WACOM PROTOCOL 4 SERIAL TABLETS
11864 M:      Julian Squires <julian@cipht.net>
11865 M:      Hans de Goede <hdegoede@redhat.com>
11866 L:      linux-input@vger.kernel.org
11867 S:      Maintained
11868 F:      drivers/input/tablet/wacom_serial4.c
11869
11870 WATCHDOG DEVICE DRIVERS
11871 M:      Wim Van Sebroeck <wim@iguana.be>
11872 R:      Guenter Roeck <linux@roeck-us.net>
11873 L:      linux-watchdog@vger.kernel.org
11874 W:      http://www.linux-watchdog.org/
11875 T:      git git://www.linux-watchdog.org/linux-watchdog.git
11876 S:      Maintained
11877 F:      Documentation/watchdog/
11878 F:      drivers/watchdog/
11879 F:      include/linux/watchdog.h
11880 F:      include/uapi/linux/watchdog.h
11881
11882 WD7000 SCSI DRIVER
11883 M:      Miroslav Zagorac <zaga@fly.cc.fer.hr>
11884 L:      linux-scsi@vger.kernel.org
11885 S:      Maintained
11886 F:      drivers/scsi/wd7000.c
11887
11888 WIIMOTE HID DRIVER
11889 M:      David Herrmann <dh.herrmann@googlemail.com>
11890 L:      linux-input@vger.kernel.org
11891 S:      Maintained
11892 F:      drivers/hid/hid-wiimote*
11893
11894 WINBOND CIR DRIVER
11895 M:      David Härdeman <david@hardeman.nu>
11896 S:      Maintained
11897 F:      drivers/media/rc/winbond-cir.c
11898
11899 WIMAX STACK
11900 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
11901 M:      linux-wimax@intel.com
11902 L:      wimax@linuxwimax.org (subscribers-only)
11903 S:      Supported
11904 W:      http://linuxwimax.org
11905 F:      Documentation/wimax/README.wimax
11906 F:      include/linux/wimax/debug.h
11907 F:      include/net/wimax.h
11908 F:      include/uapi/linux/wimax.h
11909 F:      net/wimax/
11910
11911 WISTRON LAPTOP BUTTON DRIVER
11912 M:      Miloslav Trmac <mitr@volny.cz>
11913 S:      Maintained
11914 F:      drivers/input/misc/wistron_btns.c
11915
11916 WL3501 WIRELESS PCMCIA CARD DRIVER
11917 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
11918 L:      linux-wireless@vger.kernel.org
11919 W:      http://oops.ghostprotocols.net:81/blog
11920 S:      Maintained
11921 F:      drivers/net/wireless/wl3501*
11922
11923 WOLFSON MICROELECTRONICS DRIVERS
11924 L:      patches@opensource.wolfsonmicro.com
11925 T:      git https://github.com/CirrusLogic/linux-drivers.git
11926 W:      https://github.com/CirrusLogic/linux-drivers/wiki
11927 S:      Supported
11928 F:      Documentation/hwmon/wm83??
11929 F:      Documentation/devicetree/bindings/extcon/extcon-arizona.txt
11930 F:      Documentation/devicetree/bindings/regulator/arizona-regulator.txt
11931 F:      Documentation/devicetree/bindings/mfd/arizona.txt
11932 F:      arch/arm/mach-s3c64xx/mach-crag6410*
11933 F:      drivers/clk/clk-wm83*.c
11934 F:      drivers/extcon/extcon-arizona.c
11935 F:      drivers/leds/leds-wm83*.c
11936 F:      drivers/gpio/gpio-*wm*.c
11937 F:      drivers/gpio/gpio-arizona.c
11938 F:      drivers/hwmon/wm83??-hwmon.c
11939 F:      drivers/input/misc/wm831x-on.c
11940 F:      drivers/input/touchscreen/wm831x-ts.c
11941 F:      drivers/input/touchscreen/wm97*.c
11942 F:      drivers/mfd/arizona*
11943 F:      drivers/mfd/wm*.c
11944 F:      drivers/mfd/cs47l24*
11945 F:      drivers/power/wm83*.c
11946 F:      drivers/rtc/rtc-wm83*.c
11947 F:      drivers/regulator/wm8*.c
11948 F:      drivers/video/backlight/wm83*_bl.c
11949 F:      drivers/watchdog/wm83*_wdt.c
11950 F:      include/linux/mfd/arizona/
11951 F:      include/linux/mfd/wm831x/
11952 F:      include/linux/mfd/wm8350/
11953 F:      include/linux/mfd/wm8400*
11954 F:      include/linux/wm97xx.h
11955 F:      include/sound/wm????.h
11956 F:      sound/soc/codecs/arizona.?
11957 F:      sound/soc/codecs/wm*
11958 F:      sound/soc/codecs/cs47l24*
11959
11960 WORKQUEUE
11961 M:      Tejun Heo <tj@kernel.org>
11962 R:      Lai Jiangshan <jiangshanlai@gmail.com>
11963 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
11964 S:      Maintained
11965 F:      include/linux/workqueue.h
11966 F:      kernel/workqueue.c
11967 F:      Documentation/workqueue.txt
11968
11969 X.25 NETWORK LAYER
11970 M:      Andrew Hendry <andrew.hendry@gmail.com>
11971 L:      linux-x25@vger.kernel.org
11972 S:      Odd Fixes
11973 F:      Documentation/networking/x25*
11974 F:      include/net/x25*
11975 F:      net/x25/
11976
11977 X86 ARCHITECTURE (32-BIT AND 64-BIT)
11978 M:      Thomas Gleixner <tglx@linutronix.de>
11979 M:      Ingo Molnar <mingo@redhat.com>
11980 M:      "H. Peter Anvin" <hpa@zytor.com>
11981 M:      x86@kernel.org
11982 L:      linux-kernel@vger.kernel.org
11983 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
11984 S:      Maintained
11985 F:      Documentation/x86/
11986 F:      arch/x86/
11987
11988 X86 PLATFORM DRIVERS
11989 M:      Darren Hart <dvhart@infradead.org>
11990 L:      platform-driver-x86@vger.kernel.org
11991 T:      git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git
11992 S:      Maintained
11993 F:      drivers/platform/x86/
11994 F:      drivers/platform/olpc/
11995
11996 X86 MCE INFRASTRUCTURE
11997 M:      Tony Luck <tony.luck@intel.com>
11998 M:      Borislav Petkov <bp@alien8.de>
11999 L:      linux-edac@vger.kernel.org
12000 S:      Maintained
12001 F:      arch/x86/kernel/cpu/mcheck/*
12002
12003 X86 MICROCODE UPDATE SUPPORT
12004 M:      Borislav Petkov <bp@alien8.de>
12005 S:      Maintained
12006 F:      arch/x86/kernel/cpu/microcode/*
12007
12008 X86 VDSO
12009 M:      Andy Lutomirski <luto@amacapital.net>
12010 L:      linux-kernel@vger.kernel.org
12011 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
12012 S:      Maintained
12013 F:      arch/x86/entry/vdso/
12014
12015 XC2028/3028 TUNER DRIVER
12016 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
12017 L:      linux-media@vger.kernel.org
12018 W:      https://linuxtv.org
12019 T:      git git://linuxtv.org/media_tree.git
12020 S:      Maintained
12021 F:      drivers/media/tuners/tuner-xc2028.*
12022
12023 XEN HYPERVISOR INTERFACE
12024 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
12025 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
12026 M:      David Vrabel <david.vrabel@citrix.com>
12027 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12028 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
12029 S:      Supported
12030 F:      arch/x86/xen/
12031 F:      drivers/*/xen-*front.c
12032 F:      drivers/xen/
12033 F:      arch/x86/include/asm/xen/
12034 F:      include/xen/
12035 F:      include/uapi/xen/
12036
12037 XEN HYPERVISOR ARM
12038 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
12039 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12040 S:      Supported
12041 F:      arch/arm/xen/
12042 F:      arch/arm/include/asm/xen/
12043
12044 XEN HYPERVISOR ARM64
12045 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
12046 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12047 S:      Supported
12048 F:      arch/arm64/xen/
12049 F:      arch/arm64/include/asm/xen/
12050
12051 XEN NETWORK BACKEND DRIVER
12052 M:      Ian Campbell <ian.campbell@citrix.com>
12053 M:      Wei Liu <wei.liu2@citrix.com>
12054 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12055 L:      netdev@vger.kernel.org
12056 S:      Supported
12057 F:      drivers/net/xen-netback/*
12058
12059 XEN PCI SUBSYSTEM
12060 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
12061 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12062 S:      Supported
12063 F:      arch/x86/pci/*xen*
12064 F:      drivers/pci/*xen*
12065
12066 XEN BLOCK SUBSYSTEM
12067 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
12068 M:      Roger Pau MonnĂ© <roger.pau@citrix.com>
12069 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12070 S:      Supported
12071 F:      drivers/block/xen-blkback/*
12072 F:      drivers/block/xen*
12073
12074 XEN PVSCSI DRIVERS
12075 M:      Juergen Gross <jgross@suse.com>
12076 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12077 L:      linux-scsi@vger.kernel.org
12078 S:      Supported
12079 F:      drivers/scsi/xen-scsifront.c
12080 F:      drivers/xen/xen-scsiback.c
12081 F:      include/xen/interface/io/vscsiif.h
12082
12083 XEN SWIOTLB SUBSYSTEM
12084 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
12085 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12086 S:      Supported
12087 F:      arch/x86/xen/*swiotlb*
12088 F:      drivers/xen/*swiotlb*
12089
12090 XFS FILESYSTEM
12091 P:      Silicon Graphics Inc
12092 M:      Dave Chinner <david@fromorbit.com>
12093 M:      xfs@oss.sgi.com
12094 L:      xfs@oss.sgi.com
12095 W:      http://oss.sgi.com/projects/xfs
12096 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dgc/linux-xfs.git
12097 S:      Supported
12098 F:      Documentation/filesystems/xfs.txt
12099 F:      fs/xfs/
12100
12101 XILINX AXI ETHERNET DRIVER
12102 M:      Anirudha Sarangi <anirudh@xilinx.com>
12103 M:      John Linn <John.Linn@xilinx.com>
12104 S:      Maintained
12105 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
12106
12107 XILINX UARTLITE SERIAL DRIVER
12108 M:      Peter Korsgaard <jacmet@sunsite.dk>
12109 L:      linux-serial@vger.kernel.org
12110 S:      Maintained
12111 F:      drivers/tty/serial/uartlite.c
12112
12113 XILINX VIDEO IP CORES
12114 M:      Hyun Kwon <hyun.kwon@xilinx.com>
12115 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12116 L:      linux-media@vger.kernel.org
12117 T:      git git://linuxtv.org/media_tree.git
12118 S:      Supported
12119 F:      Documentation/devicetree/bindings/media/xilinx/
12120 F:      drivers/media/platform/xilinx/
12121 F:      include/uapi/linux/xilinx-v4l2-controls.h
12122
12123 XILLYBUS DRIVER
12124 M:      Eli Billauer <eli.billauer@gmail.com>
12125 L:      linux-kernel@vger.kernel.org
12126 S:      Supported
12127 F:      drivers/char/xillybus/
12128
12129 XTENSA XTFPGA PLATFORM SUPPORT
12130 M:      Max Filippov <jcmvbkbc@gmail.com>
12131 L:      linux-xtensa@linux-xtensa.org
12132 S:      Maintained
12133 F:      drivers/spi/spi-xtensa-xtfpga.c
12134 F:      sound/soc/xtensa/xtfpga-i2s.c
12135
12136 YAM DRIVER FOR AX.25
12137 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
12138 L:      linux-hams@vger.kernel.org
12139 S:      Maintained
12140 F:      drivers/net/hamradio/yam*
12141 F:      include/linux/yam.h
12142
12143 YEALINK PHONE DRIVER
12144 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
12145 L:      usbb2k-api-dev@nongnu.org
12146 S:      Maintained
12147 F:      Documentation/input/yealink.txt
12148 F:      drivers/input/misc/yealink.*
12149
12150 Z8530 DRIVER FOR AX.25
12151 M:      Joerg Reuter <jreuter@yaina.de>
12152 W:      http://yaina.de/jreuter/
12153 W:      http://www.qsl.net/dl1bke/
12154 L:      linux-hams@vger.kernel.org
12155 S:      Maintained
12156 F:      Documentation/networking/z8530drv.txt
12157 F:      drivers/net/hamradio/*scc.c
12158 F:      drivers/net/hamradio/z8530.h
12159
12160 ZBUD COMPRESSED PAGE ALLOCATOR
12161 M:      Seth Jennings <sjenning@redhat.com>
12162 L:      linux-mm@kvack.org
12163 S:      Maintained
12164 F:      mm/zbud.c
12165 F:      include/linux/zbud.h
12166
12167 ZD1211RW WIRELESS DRIVER
12168 M:      Daniel Drake <dsd@gentoo.org>
12169 M:      Ulrich Kunitz <kune@deine-taler.de>
12170 W:      http://zd1211.ath.cx/wiki/DriverRewrite
12171 L:      linux-wireless@vger.kernel.org
12172 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
12173 S:      Maintained
12174 F:      drivers/net/wireless/zydas/zd1211rw/
12175
12176 ZPOOL COMPRESSED PAGE STORAGE API
12177 M:      Dan Streetman <ddstreet@ieee.org>
12178 L:      linux-mm@kvack.org
12179 S:      Maintained
12180 F:      mm/zpool.c
12181 F:      include/linux/zpool.h
12182
12183 ZR36067 VIDEO FOR LINUX DRIVER
12184 L:      mjpeg-users@lists.sourceforge.net
12185 L:      linux-media@vger.kernel.org
12186 W:      http://mjpeg.sourceforge.net/driver-zoran/
12187 T:      hg https://linuxtv.org/hg/v4l-dvb
12188 S:      Odd Fixes
12189 F:      drivers/media/pci/zoran/
12190
12191 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
12192 M:      Minchan Kim <minchan@kernel.org>
12193 M:      Nitin Gupta <ngupta@vflare.org>
12194 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
12195 L:      linux-kernel@vger.kernel.org
12196 S:      Maintained
12197 F:      drivers/block/zram/
12198 F:      Documentation/blockdev/zram.txt
12199
12200 ZS DECSTATION Z85C30 SERIAL DRIVER
12201 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
12202 S:      Maintained
12203 F:      drivers/tty/serial/zs.*
12204
12205 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
12206 M:      Minchan Kim <minchan@kernel.org>
12207 M:      Nitin Gupta <ngupta@vflare.org>
12208 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
12209 L:      linux-mm@kvack.org
12210 S:      Maintained
12211 F:      mm/zsmalloc.c
12212 F:      include/linux/zsmalloc.h
12213 F:      Documentation/vm/zsmalloc.txt
12214
12215 ZSWAP COMPRESSED SWAP CACHING
12216 M:      Seth Jennings <sjenning@redhat.com>
12217 L:      linux-mm@kvack.org
12218 S:      Maintained
12219 F:      mm/zswap.c
12220
12221 THE REST
12222 M:      Linus Torvalds <torvalds@linux-foundation.org>
12223 L:      linux-kernel@vger.kernel.org
12224 Q:      http://patchwork.kernel.org/project/LKML/list/
12225 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
12226 S:      Buried alive in reporters
12227 F:      *
12228 F:      */