]> git.karo-electronics.de Git - karo-tx-linux.git/blob - MAINTAINERS
Merge remote-tracking branch 'staging/staging-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:      Documentation/misc-devices/mei/*
5770
5771 INTEL MIC DRIVERS (mic)
5772 M:      Sudeep Dutt <sudeep.dutt@intel.com>
5773 M:      Ashutosh Dixit <ashutosh.dixit@intel.com>
5774 S:      Supported
5775 W:      https://github.com/sudeepdutt/mic
5776 W:      http://software.intel.com/en-us/mic-developer
5777 F:      include/linux/mic_bus.h
5778 F:      include/linux/scif.h
5779 F:      include/uapi/linux/mic_common.h
5780 F:      include/uapi/linux/mic_ioctl.h
5781 F:      include/uapi/linux/scif_ioctl.h
5782 F:      drivers/misc/mic/
5783 F:      drivers/dma/mic_x100_dma.c
5784 F:      drivers/dma/mic_x100_dma.h
5785 F:      Documentation/mic/
5786
5787 INTEL PMC/P-Unit IPC DRIVER
5788 M:      Zha Qipeng<qipeng.zha@intel.com>
5789 L:      platform-driver-x86@vger.kernel.org
5790 S:      Maintained
5791 F:      drivers/platform/x86/intel_pmc_ipc.c
5792 F:      drivers/platform/x86/intel_punit_ipc.c
5793 F:      arch/x86/include/asm/intel_pmc_ipc.h
5794 F:      arch/x86/include/asm/intel_punit_ipc.h
5795
5796 INTEL TELEMETRY DRIVER
5797 M:      Souvik Kumar Chakravarty <souvik.k.chakravarty@intel.com>
5798 L:      platform-driver-x86@vger.kernel.org
5799 S:      Maintained
5800 F:      arch/x86/include/asm/intel_telemetry.h
5801 F:      drivers/platform/x86/intel_telemetry*
5802
5803 IOC3 ETHERNET DRIVER
5804 M:      Ralf Baechle <ralf@linux-mips.org>
5805 L:      linux-mips@linux-mips.org
5806 S:      Maintained
5807 F:      drivers/net/ethernet/sgi/ioc3-eth.c
5808
5809 IOC3 SERIAL DRIVER
5810 M:      Pat Gefre <pfg@sgi.com>
5811 L:      linux-serial@vger.kernel.org
5812 S:      Maintained
5813 F:      drivers/tty/serial/ioc3_serial.c
5814
5815 IOMMU DRIVERS
5816 M:      Joerg Roedel <joro@8bytes.org>
5817 L:      iommu@lists.linux-foundation.org
5818 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
5819 S:      Maintained
5820 F:      drivers/iommu/
5821
5822 IP MASQUERADING
5823 M:      Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
5824 S:      Maintained
5825 F:      net/ipv4/netfilter/ipt_MASQUERADE.c
5826
5827 IPMI SUBSYSTEM
5828 M:      Corey Minyard <minyard@acm.org>
5829 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
5830 W:      http://openipmi.sourceforge.net/
5831 S:      Supported
5832 F:      Documentation/IPMI.txt
5833 F:      drivers/char/ipmi/
5834 F:      include/linux/ipmi*
5835 F:      include/uapi/linux/ipmi*
5836
5837 QCOM AUDIO (ASoC) DRIVERS
5838 M:      Patrick Lai <plai@codeaurora.org>
5839 M:      Banajit Goswami <bgoswami@codeaurora.org>
5840 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5841 S:      Supported
5842 F:      sound/soc/qcom/
5843
5844 IPS SCSI RAID DRIVER
5845 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
5846 L:      linux-scsi@vger.kernel.org
5847 W:      http://www.adaptec.com/
5848 S:      Maintained
5849 F:      drivers/scsi/ips*
5850
5851 IPVS
5852 M:      Wensong Zhang <wensong@linux-vs.org>
5853 M:      Simon Horman <horms@verge.net.au>
5854 M:      Julian Anastasov <ja@ssi.bg>
5855 L:      netdev@vger.kernel.org
5856 L:      lvs-devel@vger.kernel.org
5857 S:      Maintained
5858 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
5859 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
5860 F:      Documentation/networking/ipvs-sysctl.txt
5861 F:      include/net/ip_vs.h
5862 F:      include/uapi/linux/ip_vs.h
5863 F:      net/netfilter/ipvs/
5864
5865 IPWIRELESS DRIVER
5866 M:      Jiri Kosina <jikos@kernel.org>
5867 M:      David Sterba <dsterba@suse.com>
5868 S:      Odd Fixes
5869 F:      drivers/tty/ipwireless/
5870
5871 IPX NETWORK LAYER
5872 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
5873 L:      netdev@vger.kernel.org
5874 S:      Maintained
5875 F:      include/net/ipx.h
5876 F:      include/uapi/linux/ipx.h
5877 F:      net/ipx/
5878
5879 IRDA SUBSYSTEM
5880 M:      Samuel Ortiz <samuel@sortiz.org>
5881 L:      irda-users@lists.sourceforge.net (subscribers-only)
5882 L:      netdev@vger.kernel.org
5883 W:      http://irda.sourceforge.net/
5884 S:      Maintained
5885 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
5886 F:      Documentation/networking/irda.txt
5887 F:      drivers/net/irda/
5888 F:      include/net/irda/
5889 F:      net/irda/
5890
5891 IRQ SUBSYSTEM
5892 M:      Thomas Gleixner <tglx@linutronix.de>
5893 L:      linux-kernel@vger.kernel.org
5894 S:      Maintained
5895 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5896 F:      kernel/irq/
5897
5898 IRQCHIP DRIVERS
5899 M:      Thomas Gleixner <tglx@linutronix.de>
5900 M:      Jason Cooper <jason@lakedaemon.net>
5901 M:      Marc Zyngier <marc.zyngier@arm.com>
5902 L:      linux-kernel@vger.kernel.org
5903 S:      Maintained
5904 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5905 T:      git git://git.infradead.org/users/jcooper/linux.git irqchip/core
5906 F:      Documentation/devicetree/bindings/interrupt-controller/
5907 F:      drivers/irqchip/
5908
5909 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
5910 M:      Jiang Liu <jiang.liu@linux.intel.com>
5911 M:      Marc Zyngier <marc.zyngier@arm.com>
5912 S:      Maintained
5913 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5914 F:      Documentation/IRQ-domain.txt
5915 F:      include/linux/irqdomain.h
5916 F:      kernel/irq/irqdomain.c
5917 F:      kernel/irq/msi.c
5918
5919 ISAPNP
5920 M:      Jaroslav Kysela <perex@perex.cz>
5921 S:      Maintained
5922 F:      Documentation/isapnp.txt
5923 F:      drivers/pnp/isapnp/
5924 F:      include/linux/isapnp.h
5925
5926 ISA RADIO MODULE
5927 M:      Hans Verkuil <hverkuil@xs4all.nl>
5928 L:      linux-media@vger.kernel.org
5929 T:      git git://linuxtv.org/media_tree.git
5930 W:      https://linuxtv.org
5931 S:      Maintained
5932 F:      drivers/media/radio/radio-isa*
5933
5934 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
5935 M:      Peter Jones <pjones@redhat.com>
5936 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
5937 S:      Maintained
5938 F:      drivers/firmware/iscsi_ibft*
5939
5940 ISCSI
5941 M:      Mike Christie <michaelc@cs.wisc.edu>
5942 L:      open-iscsi@googlegroups.com
5943 W:      www.open-iscsi.org
5944 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
5945 S:      Maintained
5946 F:      drivers/scsi/*iscsi*
5947 F:      include/scsi/*iscsi*
5948
5949 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
5950 M:      Or Gerlitz <ogerlitz@mellanox.com>
5951 M:      Sagi Grimberg <sagig@mellanox.com>
5952 M:      Roi Dayan <roid@mellanox.com>
5953 L:      linux-rdma@vger.kernel.org
5954 S:      Supported
5955 W:      http://www.openfabrics.org
5956 W:      www.open-iscsi.org
5957 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5958 F:      drivers/infiniband/ulp/iser/
5959
5960 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
5961 M:      Sagi Grimberg <sagig@mellanox.com>
5962 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
5963 L:      linux-rdma@vger.kernel.org
5964 L:      target-devel@vger.kernel.org
5965 S:      Supported
5966 W:      http://www.linux-iscsi.org
5967 F:      drivers/infiniband/ulp/isert
5968
5969 ISDN SUBSYSTEM
5970 M:      Karsten Keil <isdn@linux-pingi.de>
5971 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5972 L:      netdev@vger.kernel.org
5973 W:      http://www.isdn4linux.de
5974 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
5975 S:      Maintained
5976 F:      Documentation/isdn/
5977 F:      drivers/isdn/
5978 F:      include/linux/isdn.h
5979 F:      include/linux/isdn/
5980 F:      include/uapi/linux/isdn.h
5981 F:      include/uapi/linux/isdn/
5982
5983 ISDN SUBSYSTEM (Eicon active card driver)
5984 M:      Armin Schindler <mac@melware.de>
5985 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5986 W:      http://www.melware.de
5987 S:      Maintained
5988 F:      drivers/isdn/hardware/eicon/
5989
5990 IT87 HARDWARE MONITORING DRIVER
5991 M:      Jean Delvare <jdelvare@suse.com>
5992 L:      lm-sensors@lm-sensors.org
5993 S:      Maintained
5994 F:      Documentation/hwmon/it87
5995 F:      drivers/hwmon/it87.c
5996
5997 IT913X MEDIA DRIVER
5998 M:      Antti Palosaari <crope@iki.fi>
5999 L:      linux-media@vger.kernel.org
6000 W:      https://linuxtv.org
6001 W:      http://palosaari.fi/linux/
6002 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6003 T:      git git://linuxtv.org/anttip/media_tree.git
6004 S:      Maintained
6005 F:      drivers/media/tuners/it913x*
6006
6007 IVTV VIDEO4LINUX DRIVER
6008 M:      Andy Walls <awalls@md.metrocast.net>
6009 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
6010 L:      linux-media@vger.kernel.org
6011 T:      git git://linuxtv.org/media_tree.git
6012 W:      http://www.ivtvdriver.org
6013 S:      Maintained
6014 F:      Documentation/video4linux/*.ivtv
6015 F:      drivers/media/pci/ivtv/
6016 F:      include/uapi/linux/ivtv*
6017
6018 IX2505V MEDIA DRIVER
6019 M:      Malcolm Priestley <tvboxspy@gmail.com>
6020 L:      linux-media@vger.kernel.org
6021 W:      https://linuxtv.org
6022 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6023 S:      Maintained
6024 F:      drivers/media/dvb-frontends/ix2505v*
6025
6026 JC42.4 TEMPERATURE SENSOR DRIVER
6027 M:      Guenter Roeck <linux@roeck-us.net>
6028 L:      lm-sensors@lm-sensors.org
6029 S:      Maintained
6030 F:      drivers/hwmon/jc42.c
6031 F:      Documentation/hwmon/jc42
6032
6033 JFS FILESYSTEM
6034 M:      Dave Kleikamp <shaggy@kernel.org>
6035 L:      jfs-discussion@lists.sourceforge.net
6036 W:      http://jfs.sourceforge.net/
6037 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
6038 S:      Maintained
6039 F:      Documentation/filesystems/jfs.txt
6040 F:      fs/jfs/
6041
6042 JME NETWORK DRIVER
6043 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
6044 L:      netdev@vger.kernel.org
6045 S:      Maintained
6046 F:      drivers/net/ethernet/jme.*
6047
6048 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
6049 M:      David Woodhouse <dwmw2@infradead.org>
6050 L:      linux-mtd@lists.infradead.org
6051 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
6052 S:      Maintained
6053 F:      fs/jffs2/
6054 F:      include/uapi/linux/jffs2.h
6055
6056 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
6057 M:      "Theodore Ts'o" <tytso@mit.edu>
6058 M:      Jan Kara <jack@suse.com>
6059 L:      linux-ext4@vger.kernel.org
6060 S:      Maintained
6061 F:      fs/jbd2/
6062 F:      include/linux/jbd2.h
6063
6064 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
6065 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
6066 L:      linux-media@vger.kernel.org
6067 S:      Maintained
6068 F:      drivers/media/platform/rcar_jpu.c
6069
6070 JSM Neo PCI based serial card
6071 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
6072 L:      linux-serial@vger.kernel.org
6073 S:      Maintained
6074 F:      drivers/tty/serial/jsm/
6075
6076 K10TEMP HARDWARE MONITORING DRIVER
6077 M:      Clemens Ladisch <clemens@ladisch.de>
6078 L:      lm-sensors@lm-sensors.org
6079 S:      Maintained
6080 F:      Documentation/hwmon/k10temp
6081 F:      drivers/hwmon/k10temp.c
6082
6083 K8TEMP HARDWARE MONITORING DRIVER
6084 M:      Rudolf Marek <r.marek@assembler.cz>
6085 L:      lm-sensors@lm-sensors.org
6086 S:      Maintained
6087 F:      Documentation/hwmon/k8temp
6088 F:      drivers/hwmon/k8temp.c
6089
6090 KCONFIG
6091 M:      "Yann E. MORIN" <yann.morin.1998@free.fr>
6092 L:      linux-kbuild@vger.kernel.org
6093 T:      git git://gitorious.org/linux-kconfig/linux-kconfig
6094 S:      Maintained
6095 F:      Documentation/kbuild/kconfig-language.txt
6096 F:      scripts/kconfig/
6097
6098 KDUMP
6099 M:      Vivek Goyal <vgoyal@redhat.com>
6100 M:      Haren Myneni <hbabu@us.ibm.com>
6101 L:      kexec@lists.infradead.org
6102 W:      http://lse.sourceforge.net/kdump/
6103 S:      Maintained
6104 F:      Documentation/kdump/
6105
6106 KEENE FM RADIO TRANSMITTER DRIVER
6107 M:      Hans Verkuil <hverkuil@xs4all.nl>
6108 L:      linux-media@vger.kernel.org
6109 T:      git git://linuxtv.org/media_tree.git
6110 W:      https://linuxtv.org
6111 S:      Maintained
6112 F:      drivers/media/radio/radio-keene*
6113
6114 KERNEL AUTOMOUNTER v4 (AUTOFS4)
6115 M:      Ian Kent <raven@themaw.net>
6116 L:      autofs@vger.kernel.org
6117 S:      Maintained
6118 F:      fs/autofs4/
6119
6120 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
6121 M:      Michal Marek <mmarek@suse.com>
6122 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
6123 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
6124 L:      linux-kbuild@vger.kernel.org
6125 S:      Maintained
6126 F:      Documentation/kbuild/
6127 F:      Makefile
6128 F:      scripts/Makefile.*
6129 F:      scripts/basic/
6130 F:      scripts/mk*
6131 F:      scripts/package/
6132
6133 KERNEL JANITORS
6134 L:      kernel-janitors@vger.kernel.org
6135 W:      http://kernelnewbies.org/KernelJanitors
6136 S:      Odd Fixes
6137
6138 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
6139 M:      "J. Bruce Fields" <bfields@fieldses.org>
6140 M:      Jeff Layton <jlayton@poochiereds.net>
6141 L:      linux-nfs@vger.kernel.org
6142 W:      http://nfs.sourceforge.net/
6143 T:      git git://linux-nfs.org/~bfields/linux.git
6144 S:      Supported
6145 F:      fs/nfsd/
6146 F:      include/uapi/linux/nfsd/
6147 F:      fs/lockd/
6148 F:      fs/nfs_common/
6149 F:      net/sunrpc/
6150 F:      include/linux/lockd/
6151 F:      include/linux/sunrpc/
6152 F:      include/uapi/linux/sunrpc/
6153
6154 KERNEL SELFTEST FRAMEWORK
6155 M:      Shuah Khan <shuahkh@osg.samsung.com>
6156 L:      linux-api@vger.kernel.org
6157 T:      git git://git.kernel.org/pub/scm/shuah/linux-kselftest
6158 S:      Maintained
6159 F:      tools/testing/selftests
6160
6161 KERNEL VIRTUAL MACHINE (KVM)
6162 M:      Gleb Natapov <gleb@kernel.org>
6163 M:      Paolo Bonzini <pbonzini@redhat.com>
6164 L:      kvm@vger.kernel.org
6165 W:      http://www.linux-kvm.org
6166 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
6167 S:      Supported
6168 F:      Documentation/*/kvm*.txt
6169 F:      Documentation/virtual/kvm/
6170 F:      arch/*/kvm/
6171 F:      arch/x86/kernel/kvm.c
6172 F:      arch/x86/kernel/kvmclock.c
6173 F:      arch/*/include/asm/kvm*
6174 F:      include/linux/kvm*
6175 F:      include/uapi/linux/kvm*
6176 F:      virt/kvm/
6177
6178 KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
6179 M:      Joerg Roedel <joro@8bytes.org>
6180 L:      kvm@vger.kernel.org
6181 W:      http://www.linux-kvm.org/
6182 S:      Maintained
6183 F:      arch/x86/include/asm/svm.h
6184 F:      arch/x86/kvm/svm.c
6185
6186 KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
6187 M:      Alexander Graf <agraf@suse.com>
6188 L:      kvm-ppc@vger.kernel.org
6189 W:      http://www.linux-kvm.org/
6190 T:      git git://github.com/agraf/linux-2.6.git
6191 S:      Supported
6192 F:      arch/powerpc/include/asm/kvm*
6193 F:      arch/powerpc/kvm/
6194
6195 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
6196 M:      Christian Borntraeger <borntraeger@de.ibm.com>
6197 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
6198 L:      linux-s390@vger.kernel.org
6199 W:      http://www.ibm.com/developerworks/linux/linux390/
6200 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
6201 S:      Supported
6202 F:      Documentation/s390/kvm.txt
6203 F:      arch/s390/include/asm/kvm*
6204 F:      arch/s390/kvm/
6205
6206 KERNEL VIRTUAL MACHINE (KVM) FOR ARM
6207 M:      Christoffer Dall <christoffer.dall@linaro.org>
6208 M:      Marc Zyngier <marc.zyngier@arm.com>
6209 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6210 L:      kvmarm@lists.cs.columbia.edu
6211 W:      http://systems.cs.columbia.edu/projects/kvm-arm
6212 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
6213 S:      Supported
6214 F:      arch/arm/include/uapi/asm/kvm*
6215 F:      arch/arm/include/asm/kvm*
6216 F:      arch/arm/kvm/
6217 F:      virt/kvm/arm/
6218 F:      include/kvm/arm_*
6219
6220 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
6221 M:      Christoffer Dall <christoffer.dall@linaro.org>
6222 M:      Marc Zyngier <marc.zyngier@arm.com>
6223 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6224 L:      kvmarm@lists.cs.columbia.edu
6225 S:      Maintained
6226 F:      arch/arm64/include/uapi/asm/kvm*
6227 F:      arch/arm64/include/asm/kvm*
6228 F:      arch/arm64/kvm/
6229
6230 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
6231 M:      James Hogan <james.hogan@imgtec.com>
6232 L:      linux-mips@linux-mips.org
6233 S:      Supported
6234 F:      arch/mips/include/uapi/asm/kvm*
6235 F:      arch/mips/include/asm/kvm*
6236 F:      arch/mips/kvm/
6237
6238 KEXEC
6239 M:      Eric Biederman <ebiederm@xmission.com>
6240 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
6241 L:      kexec@lists.infradead.org
6242 S:      Maintained
6243 F:      include/linux/kexec.h
6244 F:      include/uapi/linux/kexec.h
6245 F:      kernel/kexec.c
6246
6247 KEYS/KEYRINGS:
6248 M:      David Howells <dhowells@redhat.com>
6249 L:      keyrings@vger.kernel.org
6250 S:      Maintained
6251 F:      Documentation/security/keys.txt
6252 F:      include/linux/key.h
6253 F:      include/linux/key-type.h
6254 F:      include/keys/
6255 F:      security/keys/
6256
6257 KEYS-TRUSTED
6258 M:      David Safford <safford@us.ibm.com>
6259 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6260 L:      linux-security-module@vger.kernel.org
6261 L:      keyrings@vger.kernel.org
6262 S:      Supported
6263 F:      Documentation/security/keys-trusted-encrypted.txt
6264 F:      include/keys/trusted-type.h
6265 F:      security/keys/trusted.c
6266 F:      security/keys/trusted.h
6267
6268 KEYS-ENCRYPTED
6269 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6270 M:      David Safford <safford@us.ibm.com>
6271 L:      linux-security-module@vger.kernel.org
6272 L:      keyrings@vger.kernel.org
6273 S:      Supported
6274 F:      Documentation/security/keys-trusted-encrypted.txt
6275 F:      include/keys/encrypted-type.h
6276 F:      security/keys/encrypted-keys/
6277
6278 KGDB / KDB /debug_core
6279 M:      Jason Wessel <jason.wessel@windriver.com>
6280 W:      http://kgdb.wiki.kernel.org/
6281 L:      kgdb-bugreport@lists.sourceforge.net
6282 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
6283 S:      Maintained
6284 F:      Documentation/DocBook/kgdb.tmpl
6285 F:      drivers/misc/kgdbts.c
6286 F:      drivers/tty/serial/kgdboc.c
6287 F:      include/linux/kdb.h
6288 F:      include/linux/kgdb.h
6289 F:      kernel/debug/
6290
6291 KMEMCHECK
6292 M:      Vegard Nossum <vegardno@ifi.uio.no>
6293 M:      Pekka Enberg <penberg@kernel.org>
6294 S:      Maintained
6295 F:      Documentation/kmemcheck.txt
6296 F:      arch/x86/include/asm/kmemcheck.h
6297 F:      arch/x86/mm/kmemcheck/
6298 F:      include/linux/kmemcheck.h
6299 F:      mm/kmemcheck.c
6300
6301 KMEMLEAK
6302 M:      Catalin Marinas <catalin.marinas@arm.com>
6303 S:      Maintained
6304 F:      Documentation/kmemleak.txt
6305 F:      include/linux/kmemleak.h
6306 F:      mm/kmemleak.c
6307 F:      mm/kmemleak-test.c
6308
6309 KPROBES
6310 M:      Ananth N Mavinakayanahalli <ananth@in.ibm.com>
6311 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
6312 M:      "David S. Miller" <davem@davemloft.net>
6313 M:      Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
6314 S:      Maintained
6315 F:      Documentation/kprobes.txt
6316 F:      include/linux/kprobes.h
6317 F:      kernel/kprobes.c
6318
6319 KS0108 LCD CONTROLLER DRIVER
6320 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
6321 W:      http://miguelojeda.es/auxdisplay.htm
6322 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
6323 S:      Maintained
6324 F:      Documentation/auxdisplay/ks0108
6325 F:      drivers/auxdisplay/ks0108.c
6326 F:      include/linux/ks0108.h
6327
6328 L3MDEV
6329 M:      David Ahern <dsa@cumulusnetworks.com>
6330 L:      netdev@vger.kernel.org
6331 S:      Maintained
6332 F:      net/l3mdev
6333 F:      include/net/l3mdev.h
6334
6335 LANTIQ MIPS ARCHITECTURE
6336 M:      John Crispin <blogic@openwrt.org>
6337 L:      linux-mips@linux-mips.org
6338 S:      Maintained
6339 F:      arch/mips/lantiq
6340
6341 LAPB module
6342 L:      linux-x25@vger.kernel.org
6343 S:      Orphan
6344 F:      Documentation/networking/lapb-module.txt
6345 F:      include/*/lapb.h
6346 F:      net/lapb/
6347
6348 LASI 53c700 driver for PARISC
6349 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
6350 L:      linux-scsi@vger.kernel.org
6351 S:      Maintained
6352 F:      Documentation/scsi/53c700.txt
6353 F:      drivers/scsi/53c700*
6354
6355 LED SUBSYSTEM
6356 M:      Richard Purdie <rpurdie@rpsys.net>
6357 M:      Jacek Anaszewski <j.anaszewski@samsung.com>
6358 L:      linux-leds@vger.kernel.org
6359 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
6360 S:      Maintained
6361 F:      drivers/leds/
6362 F:      include/linux/leds.h
6363
6364 LEGACY EEPROM DRIVER
6365 M:      Jean Delvare <jdelvare@suse.com>
6366 S:      Maintained
6367 F:      Documentation/misc-devices/eeprom
6368 F:      drivers/misc/eeprom/eeprom.c
6369
6370 LEGO USB Tower driver
6371 M:      Juergen Stuber <starblue@users.sourceforge.net>
6372 L:      legousb-devel@lists.sourceforge.net
6373 W:      http://legousb.sourceforge.net/
6374 S:      Maintained
6375 F:      drivers/usb/misc/legousbtower.c
6376
6377 LG2160 MEDIA DRIVER
6378 M:      Michael Krufky <mkrufky@linuxtv.org>
6379 L:      linux-media@vger.kernel.org
6380 W:      https://linuxtv.org
6381 W:      http://github.com/mkrufky
6382 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6383 T:      git git://linuxtv.org/mkrufky/tuners.git
6384 S:      Maintained
6385 F:      drivers/media/dvb-frontends/lg2160.*
6386
6387 LGDT3305 MEDIA DRIVER
6388 M:      Michael Krufky <mkrufky@linuxtv.org>
6389 L:      linux-media@vger.kernel.org
6390 W:      https://linuxtv.org
6391 W:      http://github.com/mkrufky
6392 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6393 T:      git git://linuxtv.org/mkrufky/tuners.git
6394 S:      Maintained
6395 F:      drivers/media/dvb-frontends/lgdt3305.*
6396
6397 LGUEST
6398 M:      Rusty Russell <rusty@rustcorp.com.au>
6399 L:      lguest@lists.ozlabs.org
6400 W:      http://lguest.ozlabs.org/
6401 S:      Odd Fixes
6402 F:      arch/x86/include/asm/lguest*.h
6403 F:      arch/x86/lguest/
6404 F:      drivers/lguest/
6405 F:      include/linux/lguest*.h
6406 F:      tools/lguest/
6407
6408 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
6409 M:      Tejun Heo <tj@kernel.org>
6410 L:      linux-ide@vger.kernel.org
6411 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6412 S:      Maintained
6413 F:      drivers/ata/
6414 F:      include/linux/ata.h
6415 F:      include/linux/libata.h
6416
6417 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
6418 M:      Viresh Kumar <vireshk@kernel.org>
6419 L:      linux-ide@vger.kernel.org
6420 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6421 S:      Maintained
6422 F:      include/linux/pata_arasan_cf_data.h
6423 F:      drivers/ata/pata_arasan_cf.c
6424
6425 LIBATA PATA DRIVERS
6426 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6427 M:      Tejun Heo <tj@kernel.org>
6428 L:      linux-ide@vger.kernel.org
6429 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6430 S:      Maintained
6431 F:      drivers/ata/pata_*.c
6432 F:      drivers/ata/ata_generic.c
6433
6434 LIBATA SATA AHCI PLATFORM devices support
6435 M:      Hans de Goede <hdegoede@redhat.com>
6436 M:      Tejun Heo <tj@kernel.org>
6437 L:      linux-ide@vger.kernel.org
6438 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6439 S:      Maintained
6440 F:      drivers/ata/ahci_platform.c
6441 F:      drivers/ata/libahci_platform.c
6442 F:      include/linux/ahci_platform.h
6443
6444 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
6445 M:      Mikael Pettersson <mikpelinux@gmail.com>
6446 L:      linux-ide@vger.kernel.org
6447 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6448 S:      Maintained
6449 F:      drivers/ata/sata_promise.*
6450
6451 LIBLOCKDEP
6452 M:      Sasha Levin <sasha.levin@oracle.com>
6453 S:      Maintained
6454 F:      tools/lib/lockdep/
6455
6456 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
6457 M:      Dan Williams <dan.j.williams@intel.com>
6458 L:      linux-nvdimm@lists.01.org
6459 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6460 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
6461 S:      Supported
6462 F:      drivers/nvdimm/*
6463 F:      include/linux/nd.h
6464 F:      include/linux/libnvdimm.h
6465 F:      include/uapi/linux/ndctl.h
6466
6467 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
6468 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6469 L:      linux-nvdimm@lists.01.org
6470 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6471 S:      Supported
6472 F:      drivers/nvdimm/blk.c
6473 F:      drivers/nvdimm/region_devs.c
6474 F:      drivers/acpi/nfit*
6475
6476 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
6477 M:      Vishal Verma <vishal.l.verma@intel.com>
6478 L:      linux-nvdimm@lists.01.org
6479 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6480 S:      Supported
6481 F:      drivers/nvdimm/btt*
6482
6483 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
6484 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6485 L:      linux-nvdimm@lists.01.org
6486 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6487 S:      Supported
6488 F:      drivers/nvdimm/pmem.c
6489 F:      include/linux/pmem.h
6490 F:      arch/*/include/asm/pmem.h
6491
6492 LIGHTNVM PLATFORM SUPPORT
6493 M:      Matias Bjorling <mb@lightnvm.io>
6494 W:      http://github/OpenChannelSSD
6495 L:      linux-block@vger.kernel.org
6496 S:      Maintained
6497 F:      drivers/lightnvm/
6498 F:      include/linux/lightnvm.h
6499 F:      include/uapi/linux/lightnvm.h
6500
6501 LINUX FOR IBM pSERIES (RS/6000)
6502 M:      Paul Mackerras <paulus@au.ibm.com>
6503 W:      http://www.ibm.com/linux/ltc/projects/ppc
6504 S:      Supported
6505 F:      arch/powerpc/boot/rs6000.h
6506
6507 LINUX FOR POWERPC (32-BIT AND 64-BIT)
6508 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6509 M:      Paul Mackerras <paulus@samba.org>
6510 M:      Michael Ellerman <mpe@ellerman.id.au>
6511 W:      http://www.penguinppc.org/
6512 L:      linuxppc-dev@lists.ozlabs.org
6513 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
6514 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
6515 S:      Supported
6516 F:      Documentation/powerpc/
6517 F:      arch/powerpc/
6518
6519 LINUX FOR POWER MACINTOSH
6520 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6521 W:      http://www.penguinppc.org/
6522 L:      linuxppc-dev@lists.ozlabs.org
6523 S:      Maintained
6524 F:      arch/powerpc/platforms/powermac/
6525 F:      drivers/macintosh/
6526
6527 LINUX FOR POWERPC EMBEDDED MPC5XXX
6528 M:      Anatolij Gustschin <agust@denx.de>
6529 L:      linuxppc-dev@lists.ozlabs.org
6530 T:      git git://git.denx.de/linux-denx-agust.git
6531 S:      Maintained
6532 F:      arch/powerpc/platforms/512x/
6533 F:      arch/powerpc/platforms/52xx/
6534
6535 LINUX FOR POWERPC EMBEDDED PPC4XX
6536 M:      Alistair Popple <alistair@popple.id.au>
6537 M:      Matt Porter <mporter@kernel.crashing.org>
6538 W:      http://www.penguinppc.org/
6539 L:      linuxppc-dev@lists.ozlabs.org
6540 S:      Maintained
6541 F:      arch/powerpc/platforms/40x/
6542 F:      arch/powerpc/platforms/44x/
6543
6544 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
6545 L:      linuxppc-dev@lists.ozlabs.org
6546 S:      Orphan
6547 F:      arch/powerpc/*/*virtex*
6548 F:      arch/powerpc/*/*/*virtex*
6549
6550 LINUX FOR POWERPC EMBEDDED PPC8XX
6551 M:      Vitaly Bordug <vitb@kernel.crashing.org>
6552 W:      http://www.penguinppc.org/
6553 L:      linuxppc-dev@lists.ozlabs.org
6554 S:      Maintained
6555 F:      arch/powerpc/platforms/8xx/
6556
6557 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
6558 M:      Scott Wood <oss@buserror.net>
6559 M:      Kumar Gala <galak@kernel.crashing.org>
6560 W:      http://www.penguinppc.org/
6561 L:      linuxppc-dev@lists.ozlabs.org
6562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
6563 S:      Maintained
6564 F:      arch/powerpc/platforms/83xx/
6565 F:      arch/powerpc/platforms/85xx/
6566
6567 LINUX FOR POWERPC PA SEMI PWRFICIENT
6568 M:      Olof Johansson <olof@lixom.net>
6569 L:      linuxppc-dev@lists.ozlabs.org
6570 S:      Maintained
6571 F:      arch/powerpc/platforms/pasemi/
6572 F:      drivers/*/*pasemi*
6573 F:      drivers/*/*/*pasemi*
6574
6575 LINUX SECURITY MODULE (LSM) FRAMEWORK
6576 M:      Chris Wright <chrisw@sous-sol.org>
6577 L:      linux-security-module@vger.kernel.org
6578 S:      Supported
6579
6580 LIS3LV02D ACCELEROMETER DRIVER
6581 M:      Eric Piel <eric.piel@tremplin-utc.net>
6582 S:      Maintained
6583 F:      Documentation/misc-devices/lis3lv02d
6584 F:      drivers/misc/lis3lv02d/
6585 F:      drivers/platform/x86/hp_accel.c
6586
6587 LIVE PATCHING
6588 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6589 M:      Seth Jennings <sjenning@redhat.com>
6590 M:      Jiri Kosina <jikos@kernel.org>
6591 M:      Vojtech Pavlik <vojtech@suse.com>
6592 S:      Maintained
6593 F:      kernel/livepatch/
6594 F:      include/linux/livepatch.h
6595 F:      arch/x86/include/asm/livepatch.h
6596 F:      arch/x86/kernel/livepatch.c
6597 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
6598 F:      samples/livepatch/
6599 L:      live-patching@vger.kernel.org
6600 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
6601
6602 LLC (802.2)
6603 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
6604 S:      Maintained
6605 F:      include/linux/llc.h
6606 F:      include/uapi/linux/llc.h
6607 F:      include/net/llc*
6608 F:      net/llc/
6609
6610 LM73 HARDWARE MONITOR DRIVER
6611 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
6612 L:      lm-sensors@lm-sensors.org
6613 S:      Maintained
6614 F:      drivers/hwmon/lm73.c
6615
6616 LM78 HARDWARE MONITOR DRIVER
6617 M:      Jean Delvare <jdelvare@suse.com>
6618 L:      lm-sensors@lm-sensors.org
6619 S:      Maintained
6620 F:      Documentation/hwmon/lm78
6621 F:      drivers/hwmon/lm78.c
6622
6623 LM83 HARDWARE MONITOR DRIVER
6624 M:      Jean Delvare <jdelvare@suse.com>
6625 L:      lm-sensors@lm-sensors.org
6626 S:      Maintained
6627 F:      Documentation/hwmon/lm83
6628 F:      drivers/hwmon/lm83.c
6629
6630 LM90 HARDWARE MONITOR DRIVER
6631 M:      Jean Delvare <jdelvare@suse.com>
6632 L:      lm-sensors@lm-sensors.org
6633 S:      Maintained
6634 F:      Documentation/hwmon/lm90
6635 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
6636 F:      drivers/hwmon/lm90.c
6637
6638 LM95234 HARDWARE MONITOR DRIVER
6639 M:      Guenter Roeck <linux@roeck-us.net>
6640 L:      lm-sensors@lm-sensors.org
6641 S:      Maintained
6642 F:      Documentation/hwmon/lm95234
6643 F:      drivers/hwmon/lm95234.c
6644
6645 LME2510 MEDIA DRIVER
6646 M:      Malcolm Priestley <tvboxspy@gmail.com>
6647 L:      linux-media@vger.kernel.org
6648 W:      https://linuxtv.org
6649 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6650 S:      Maintained
6651 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
6652
6653 LOCKDEP AND LOCKSTAT
6654 M:      Peter Zijlstra <peterz@infradead.org>
6655 M:      Ingo Molnar <mingo@redhat.com>
6656 L:      linux-kernel@vger.kernel.org
6657 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
6658 S:      Maintained
6659 F:      Documentation/locking/lockdep*.txt
6660 F:      Documentation/locking/lockstat.txt
6661 F:      include/linux/lockdep.h
6662 F:      kernel/locking/
6663
6664 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
6665 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
6666 L:      linux-ntfs-dev@lists.sourceforge.net
6667 W:      http://www.linux-ntfs.org/content/view/19/37/
6668 S:      Maintained
6669 F:      Documentation/ldm.txt
6670 F:      block/partitions/ldm.*
6671
6672 LogFS
6673 M:      Joern Engel <joern@logfs.org>
6674 M:      Prasad Joshi <prasadjoshi.linux@gmail.com>
6675 L:      logfs@logfs.org
6676 W:      logfs.org
6677 S:      Maintained
6678 F:      fs/logfs/
6679
6680 LPC32XX MACHINE SUPPORT
6681 M:      Roland Stigge <stigge@antcom.de>
6682 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6683 S:      Maintained
6684 F:      arch/arm/mach-lpc32xx/
6685
6686 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
6687 M:      Nagalakshmi Nandigama <nagalakshmi.nandigama@avagotech.com>
6688 M:      Praveen Krishnamoorthy <praveen.krishnamoorthy@avagotech.com>
6689 M:      Sreekanth Reddy <sreekanth.reddy@avagotech.com>
6690 M:      Abhijit Mahajan <abhijit.mahajan@avagotech.com>
6691 L:      MPT-FusionLinux.pdl@avagotech.com
6692 L:      linux-scsi@vger.kernel.org
6693 W:      http://www.lsilogic.com/support
6694 S:      Supported
6695 F:      drivers/message/fusion/
6696 F:      drivers/scsi/mpt2sas/
6697 F:      drivers/scsi/mpt3sas/
6698
6699 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
6700 M:      Matthew Wilcox <matthew@wil.cx>
6701 L:      linux-scsi@vger.kernel.org
6702 S:      Maintained
6703 F:      drivers/scsi/sym53c8xx_2/
6704
6705 LTC4261 HARDWARE MONITOR DRIVER
6706 M:      Guenter Roeck <linux@roeck-us.net>
6707 L:      lm-sensors@lm-sensors.org
6708 S:      Maintained
6709 F:      Documentation/hwmon/ltc4261
6710 F:      drivers/hwmon/ltc4261.c
6711
6712 LTP (Linux Test Project)
6713 M:      Mike Frysinger <vapier@gentoo.org>
6714 M:      Cyril Hrubis <chrubis@suse.cz>
6715 M:      Wanlong Gao <wanlong.gao@gmail.com>
6716 M:      Jan Stancek <jstancek@redhat.com>
6717 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
6718 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
6719 L:      ltp@lists.linux.it (subscribers-only)
6720 W:      http://linux-test-project.github.io/
6721 T:      git git://github.com/linux-test-project/ltp.git
6722 S:      Maintained
6723
6724 M32R ARCHITECTURE
6725 W:      http://www.linux-m32r.org/
6726 S:      Orphan
6727 F:      arch/m32r/
6728
6729 M68K ARCHITECTURE
6730 M:      Geert Uytterhoeven <geert@linux-m68k.org>
6731 L:      linux-m68k@lists.linux-m68k.org
6732 W:      http://www.linux-m68k.org/
6733 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
6734 S:      Maintained
6735 F:      arch/m68k/
6736 F:      drivers/zorro/
6737
6738 M68K ON APPLE MACINTOSH
6739 M:      Joshua Thompson <funaho@jurai.org>
6740 W:      http://www.mac.linux-m68k.org/
6741 L:      linux-m68k@lists.linux-m68k.org
6742 S:      Maintained
6743 F:      arch/m68k/mac/
6744
6745 M68K ON HP9000/300
6746 M:      Philip Blundell <philb@gnu.org>
6747 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
6748 S:      Maintained
6749 F:      arch/m68k/hp300/
6750
6751 M88DS3103 MEDIA DRIVER
6752 M:      Antti Palosaari <crope@iki.fi>
6753 L:      linux-media@vger.kernel.org
6754 W:      https://linuxtv.org
6755 W:      http://palosaari.fi/linux/
6756 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6757 T:      git git://linuxtv.org/anttip/media_tree.git
6758 S:      Maintained
6759 F:      drivers/media/dvb-frontends/m88ds3103*
6760
6761 M88RS2000 MEDIA DRIVER
6762 M:      Malcolm Priestley <tvboxspy@gmail.com>
6763 L:      linux-media@vger.kernel.org
6764 W:      https://linuxtv.org
6765 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6766 S:      Maintained
6767 F:      drivers/media/dvb-frontends/m88rs2000*
6768
6769 MA901 MASTERKIT USB FM RADIO DRIVER
6770 M:      Alexey Klimov <klimov.linux@gmail.com>
6771 L:      linux-media@vger.kernel.org
6772 T:      git git://linuxtv.org/media_tree.git
6773 S:      Maintained
6774 F:      drivers/media/radio/radio-ma901.c
6775
6776 MAC80211
6777 M:      Johannes Berg <johannes@sipsolutions.net>
6778 L:      linux-wireless@vger.kernel.org
6779 W:      http://wireless.kernel.org/
6780 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6781 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
6782 S:      Maintained
6783 F:      Documentation/networking/mac80211-injection.txt
6784 F:      include/net/mac80211.h
6785 F:      net/mac80211/
6786
6787 MACVLAN DRIVER
6788 M:      Patrick McHardy <kaber@trash.net>
6789 L:      netdev@vger.kernel.org
6790 S:      Maintained
6791 F:      drivers/net/macvlan.c
6792 F:      include/linux/if_macvlan.h
6793
6794 MAILBOX API
6795 M:      Jassi Brar <jassisinghbrar@gmail.com>
6796 L:      linux-kernel@vger.kernel.org
6797 S:      Maintained
6798 F:      drivers/mailbox/
6799 F:      include/linux/mailbox_client.h
6800 F:      include/linux/mailbox_controller.h
6801
6802 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
6803 M:      Michael Kerrisk <mtk.manpages@gmail.com>
6804 W:      http://www.kernel.org/doc/man-pages
6805 L:      linux-man@vger.kernel.org
6806 S:      Maintained
6807
6808 MARVELL ARMADA DRM SUPPORT
6809 M:      Russell King <rmk+kernel@arm.linux.org.uk>
6810 S:      Maintained
6811 F:      drivers/gpu/drm/armada/
6812
6813 MARVELL 88E6352 DSA support
6814 M:      Guenter Roeck <linux@roeck-us.net>
6815 S:      Maintained
6816 F:      drivers/net/dsa/mv88e6352.c
6817
6818 MARVELL CRYPTO DRIVER
6819 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
6820 M:      Arnaud Ebalard <arno@natisbad.org>
6821 F:      drivers/crypto/marvell/
6822 S:      Maintained
6823 L:      linux-crypto@vger.kernel.org
6824
6825 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
6826 M:      Mirko Lindner <mlindner@marvell.com>
6827 M:      Stephen Hemminger <stephen@networkplumber.org>
6828 L:      netdev@vger.kernel.org
6829 S:      Maintained
6830 F:      drivers/net/ethernet/marvell/sk*
6831
6832 MARVELL LIBERTAS WIRELESS DRIVER
6833 L:      libertas-dev@lists.infradead.org
6834 S:      Orphan
6835 F:      drivers/net/wireless/marvell/libertas/
6836
6837 MARVELL MV643XX ETHERNET DRIVER
6838 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
6839 L:      netdev@vger.kernel.org
6840 S:      Maintained
6841 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
6842 F:      include/linux/mv643xx.h
6843
6844 MARVELL MVNETA ETHERNET DRIVER
6845 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
6846 L:      netdev@vger.kernel.org
6847 S:      Maintained
6848 F:      drivers/net/ethernet/marvell/mvneta.*
6849
6850 MARVELL MWIFIEX WIRELESS DRIVER
6851 M:      Amitkumar Karwar <akarwar@marvell.com>
6852 M:      Nishant Sarmukadam <nishants@marvell.com>
6853 L:      linux-wireless@vger.kernel.org
6854 S:      Maintained
6855 F:      drivers/net/wireless/marvell/mwifiex/
6856
6857 MARVELL MWL8K WIRELESS DRIVER
6858 M:      Lennert Buytenhek <buytenh@wantstofly.org>
6859 L:      linux-wireless@vger.kernel.org
6860 S:      Odd Fixes
6861 F:      drivers/net/wireless/marvell/mwl8k.c
6862
6863 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
6864 M:      Nicolas Pitre <nico@fluxnic.net>
6865 S:      Odd Fixes
6866 F:      drivers/mmc/host/mvsdio.*
6867
6868 MATROX FRAMEBUFFER DRIVER
6869 L:      linux-fbdev@vger.kernel.org
6870 S:      Orphan
6871 F:      drivers/video/fbdev/matrox/matroxfb_*
6872 F:      include/uapi/linux/matroxfb.h
6873
6874 MAX16065 HARDWARE MONITOR DRIVER
6875 M:      Guenter Roeck <linux@roeck-us.net>
6876 L:      lm-sensors@lm-sensors.org
6877 S:      Maintained
6878 F:      Documentation/hwmon/max16065
6879 F:      drivers/hwmon/max16065.c
6880
6881 MAX20751 HARDWARE MONITOR DRIVER
6882 M:      Guenter Roeck <linux@roeck-us.net>
6883 L:      lm-sensors@lm-sensors.org
6884 S:      Maintained
6885 F:      Documentation/hwmon/max20751
6886 F:      drivers/hwmon/max20751.c
6887
6888 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6889 M:      "Hans J. Koch" <hjk@hansjkoch.de>
6890 L:      lm-sensors@lm-sensors.org
6891 S:      Maintained
6892 F:      Documentation/hwmon/max6650
6893 F:      drivers/hwmon/max6650.c
6894
6895 MAX6697 HARDWARE MONITOR DRIVER
6896 M:      Guenter Roeck <linux@roeck-us.net>
6897 L:      lm-sensors@lm-sensors.org
6898 S:      Maintained
6899 F:      Documentation/hwmon/max6697
6900 F:      Documentation/devicetree/bindings/i2c/max6697.txt
6901 F:      drivers/hwmon/max6697.c
6902 F:      include/linux/platform_data/max6697.h
6903
6904 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
6905 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6906 L:      linux-pm@vger.kernel.org
6907 S:      Supported
6908 F:      drivers/power/max14577_charger.c
6909 F:      drivers/power/max77693_charger.c
6910
6911 MAXIM MAX77802 MULTIFUNCTION PMIC DEVICE DRIVERS
6912 M:      Javier Martinez Canillas <javier@osg.samsung.com>
6913 L:      linux-kernel@vger.kernel.org
6914 S:      Supported
6915 F:      drivers/*/*max77802.c
6916 F:      Documentation/devicetree/bindings/*/*max77802.txt
6917 F:      include/dt-bindings/*/*max77802.h
6918
6919 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
6920 M:      Chanwoo Choi <cw00.choi@samsung.com>
6921 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6922 L:      linux-kernel@vger.kernel.org
6923 S:      Supported
6924 F:      drivers/*/max14577.c
6925 F:      drivers/*/max77686.c
6926 F:      drivers/*/max77693.c
6927 F:      drivers/extcon/extcon-max14577.c
6928 F:      drivers/extcon/extcon-max77693.c
6929 F:      drivers/rtc/rtc-max77686.c
6930 F:      drivers/clk/clk-max77686.c
6931 F:      Documentation/devicetree/bindings/mfd/max14577.txt
6932 F:      Documentation/devicetree/bindings/*/max77686.txt
6933 F:      Documentation/devicetree/bindings/mfd/max77693.txt
6934 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
6935 F:      include/linux/mfd/max14577*.h
6936 F:      include/linux/mfd/max77686*.h
6937 F:      include/linux/mfd/max77693*.h
6938
6939 MAXIRADIO FM RADIO RECEIVER DRIVER
6940 M:      Hans Verkuil <hverkuil@xs4all.nl>
6941 L:      linux-media@vger.kernel.org
6942 T:      git git://linuxtv.org/media_tree.git
6943 W:      https://linuxtv.org
6944 S:      Maintained
6945 F:      drivers/media/radio/radio-maxiradio*
6946
6947 MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVER
6948 M:      Peter Rosin <peda@axentia.se>
6949 L:      linux-iio@vger.kernel.org
6950 S:      Maintained
6951 F:      drivers/iio/potentiometer/mcp4531.c
6952
6953 MEDIA DRIVERS FOR RENESAS - VSP1
6954 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6955 L:      linux-media@vger.kernel.org
6956 L:      linux-renesas-soc@vger.kernel.org
6957 T:      git git://linuxtv.org/media_tree.git
6958 S:      Supported
6959 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
6960 F:      drivers/media/platform/vsp1/
6961
6962 MEDIA DRIVERS FOR ASCOT2E
6963 M:      Sergey Kozlov <serjk@netup.ru>
6964 L:      linux-media@vger.kernel.org
6965 W:      https://linuxtv.org
6966 W:      http://netup.tv/
6967 T:      git git://linuxtv.org/media_tree.git
6968 S:      Supported
6969 F:      drivers/media/dvb-frontends/ascot2e*
6970
6971 MEDIA DRIVERS FOR CXD2841ER
6972 M:      Sergey Kozlov <serjk@netup.ru>
6973 L:      linux-media@vger.kernel.org
6974 W:      https://linuxtv.org
6975 W:      http://netup.tv/
6976 T:      git git://linuxtv.org/media_tree.git
6977 S:      Supported
6978 F:      drivers/media/dvb-frontends/cxd2841er*
6979
6980 MEDIA DRIVERS FOR HORUS3A
6981 M:      Sergey Kozlov <serjk@netup.ru>
6982 L:      linux-media@vger.kernel.org
6983 W:      https://linuxtv.org
6984 W:      http://netup.tv/
6985 T:      git git://linuxtv.org/media_tree.git
6986 S:      Supported
6987 F:      drivers/media/dvb-frontends/horus3a*
6988
6989 MEDIA DRIVERS FOR LNBH25
6990 M:      Sergey Kozlov <serjk@netup.ru>
6991 L:      linux-media@vger.kernel.org
6992 W:      https://linuxtv.org
6993 W:      http://netup.tv/
6994 T:      git git://linuxtv.org/media_tree.git
6995 S:      Supported
6996 F:      drivers/media/dvb-frontends/lnbh25*
6997
6998 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
6999 M:      Sergey Kozlov <serjk@netup.ru>
7000 L:      linux-media@vger.kernel.org
7001 W:      https://linuxtv.org
7002 W:      http://netup.tv/
7003 T:      git git://linuxtv.org/media_tree.git
7004 S:      Supported
7005 F:      drivers/media/pci/netup_unidvb/*
7006
7007 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
7008 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
7009 P:      LinuxTV.org Project
7010 L:      linux-media@vger.kernel.org
7011 W:      https://linuxtv.org
7012 Q:      http://patchwork.kernel.org/project/linux-media/list/
7013 T:      git git://linuxtv.org/media_tree.git
7014 S:      Maintained
7015 F:      Documentation/dvb/
7016 F:      Documentation/video4linux/
7017 F:      Documentation/DocBook/media/
7018 F:      drivers/media/
7019 F:      drivers/staging/media/
7020 F:      include/linux/platform_data/media/
7021 F:      include/media/
7022 F:      include/uapi/linux/dvb/
7023 F:      include/uapi/linux/videodev2.h
7024 F:      include/uapi/linux/media.h
7025 F:      include/uapi/linux/v4l2-*
7026 F:      include/uapi/linux/meye.h
7027 F:      include/uapi/linux/ivtv*
7028 F:      include/uapi/linux/uvcvideo.h
7029
7030 MEDIATEK MT7601U WIRELESS LAN DRIVER
7031 M:      Jakub Kicinski <kubakici@wp.pl>
7032 L:      linux-wireless@vger.kernel.org
7033 S:      Maintained
7034 F:      drivers/net/wireless/mediatek/mt7601u/
7035
7036 MEGARAID SCSI/SAS DRIVERS
7037 M:      Kashyap Desai <kashyap.desai@avagotech.com>
7038 M:      Sumit Saxena <sumit.saxena@avagotech.com>
7039 M:      Uday Lingala <uday.lingala@avagotech.com>
7040 L:      megaraidlinux.pdl@avagotech.com
7041 L:      linux-scsi@vger.kernel.org
7042 W:      http://www.lsi.com
7043 S:      Maintained
7044 F:      Documentation/scsi/megaraid.txt
7045 F:      drivers/scsi/megaraid.*
7046 F:      drivers/scsi/megaraid/
7047
7048 MELLANOX ETHERNET DRIVER (mlx4_en)
7049 M:      Eugenia Emantayev <eugenia@mellanox.com>
7050 L:      netdev@vger.kernel.org
7051 S:      Supported
7052 W:      http://www.mellanox.com
7053 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7054 F:      drivers/net/ethernet/mellanox/mlx4/en_*
7055
7056 MELLANOX ETHERNET DRIVER (mlx5e)
7057 M:      Saeed Mahameed <saeedm@mellanox.com>
7058 L:      netdev@vger.kernel.org
7059 S:      Supported
7060 W:      http://www.mellanox.com
7061 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7062 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
7063
7064 MELLANOX ETHERNET SWITCH DRIVERS
7065 M:      Jiri Pirko <jiri@mellanox.com>
7066 M:      Ido Schimmel <idosch@mellanox.com>
7067 L:      netdev@vger.kernel.org
7068 S:      Supported
7069 W:      http://www.mellanox.com
7070 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7071 F:      drivers/net/ethernet/mellanox/mlxsw/
7072
7073 MEMBARRIER SUPPORT
7074 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7075 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
7076 L:      linux-kernel@vger.kernel.org
7077 S:      Supported
7078 F:      kernel/membarrier.c
7079 F:      include/uapi/linux/membarrier.h
7080
7081 MEMORY MANAGEMENT
7082 L:      linux-mm@kvack.org
7083 W:      http://www.linux-mm.org
7084 S:      Maintained
7085 F:      include/linux/mm.h
7086 F:      include/linux/gfp.h
7087 F:      include/linux/mmzone.h
7088 F:      include/linux/memory_hotplug.h
7089 F:      include/linux/vmalloc.h
7090 F:      mm/
7091
7092 MEMORY TECHNOLOGY DEVICES (MTD)
7093 M:      David Woodhouse <dwmw2@infradead.org>
7094 M:      Brian Norris <computersforpeace@gmail.com>
7095 L:      linux-mtd@lists.infradead.org
7096 W:      http://www.linux-mtd.infradead.org/
7097 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
7098 T:      git git://git.infradead.org/linux-mtd.git
7099 T:      git git://git.infradead.org/l2-mtd.git
7100 S:      Maintained
7101 F:      drivers/mtd/
7102 F:      include/linux/mtd/
7103 F:      include/uapi/mtd/
7104
7105 MEN A21 WATCHDOG DRIVER
7106 M:      Johannes Thumshirn <morbidrsa@gmail.com>
7107 L:      linux-watchdog@vger.kernel.org
7108 S:      Maintained
7109 F:      drivers/watchdog/mena21_wdt.c
7110
7111 MEN CHAMELEON BUS (mcb)
7112 M:      Johannes Thumshirn <morbidrsa@gmail.com>
7113 S:      Maintained
7114 F:      drivers/mcb/
7115 F:      include/linux/mcb.h
7116 F:      Documentation/men-chameleon-bus.txt
7117
7118 MEN F21BMC (Board Management Controller)
7119 M:      Andreas Werner <andreas.werner@men.de>
7120 S:      Supported
7121 F:      drivers/mfd/menf21bmc.c
7122 F:      drivers/watchdog/menf21bmc_wdt.c
7123 F:      drivers/leds/leds-menf21bmc.c
7124 F:      drivers/hwmon/menf21bmc_hwmon.c
7125 F:      Documentation/hwmon/menf21bmc
7126
7127 METAG ARCHITECTURE
7128 M:      James Hogan <james.hogan@imgtec.com>
7129 L:      linux-metag@vger.kernel.org
7130 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jhogan/metag.git
7131 S:      Odd Fixes
7132 F:      arch/metag/
7133 F:      Documentation/metag/
7134 F:      Documentation/devicetree/bindings/metag/
7135 F:      Documentation/devicetree/bindings/interrupt-controller/img,*
7136 F:      drivers/clocksource/metag_generic.c
7137 F:      drivers/irqchip/irq-metag.c
7138 F:      drivers/irqchip/irq-metag-ext.c
7139 F:      drivers/tty/metag_da.c
7140
7141 MICROBLAZE ARCHITECTURE
7142 M:      Michal Simek <monstr@monstr.eu>
7143 W:      http://www.monstr.eu/fdt/
7144 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
7145 S:      Supported
7146 F:      arch/microblaze/
7147
7148 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
7149 M:      Chen Yu <yu.c.chen@intel.com>
7150 L:      platform-driver-x86@vger.kernel.org
7151 S:      Supported
7152 F:      drivers/platform/x86/surfacepro3_button.c
7153
7154 MICROTEK X6 SCANNER
7155 M:      Oliver Neukum <oliver@neukum.org>
7156 S:      Maintained
7157 F:      drivers/usb/image/microtek.*
7158
7159 MIPS
7160 M:      Ralf Baechle <ralf@linux-mips.org>
7161 L:      linux-mips@linux-mips.org
7162 W:      http://www.linux-mips.org/
7163 T:      git git://git.linux-mips.org/pub/scm/ralf/linux.git
7164 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
7165 S:      Supported
7166 F:      Documentation/mips/
7167 F:      arch/mips/
7168
7169 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
7170 M:      Hans Verkuil <hverkuil@xs4all.nl>
7171 L:      linux-media@vger.kernel.org
7172 T:      git git://linuxtv.org/media_tree.git
7173 W:      https://linuxtv.org
7174 S:      Odd Fixes
7175 F:      drivers/media/radio/radio-miropcm20*
7176
7177 MELLANOX MLX4 core VPI driver
7178 M:      Yishai Hadas <yishaih@mellanox.com>
7179 L:      netdev@vger.kernel.org
7180 L:      linux-rdma@vger.kernel.org
7181 W:      http://www.mellanox.com
7182 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7183 S:      Supported
7184 F:      drivers/net/ethernet/mellanox/mlx4/
7185 F:      include/linux/mlx4/
7186
7187 MELLANOX MLX4 IB driver
7188 M:      Yishai Hadas <yishaih@mellanox.com>
7189 L:      linux-rdma@vger.kernel.org
7190 W:      http://www.mellanox.com
7191 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
7192 S:      Supported
7193 F:      drivers/infiniband/hw/mlx4/
7194 F:      include/linux/mlx4/
7195
7196 MELLANOX MLX5 core VPI driver
7197 M:      Matan Barak <matanb@mellanox.com>
7198 M:      Leon Romanovsky <leonro@mellanox.com>
7199 L:      netdev@vger.kernel.org
7200 L:      linux-rdma@vger.kernel.org
7201 W:      http://www.mellanox.com
7202 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7203 S:      Supported
7204 F:      drivers/net/ethernet/mellanox/mlx5/core/
7205 F:      include/linux/mlx5/
7206
7207 MELLANOX MLX5 IB driver
7208 M:      Matan Barak <matanb@mellanox.com>
7209 M:      Leon Romanovsky <leonro@mellanox.com>
7210 L:      linux-rdma@vger.kernel.org
7211 W:      http://www.mellanox.com
7212 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
7213 S:      Supported
7214 F:      drivers/infiniband/hw/mlx5/
7215 F:      include/linux/mlx5/
7216
7217 MELEXIS MLX90614 DRIVER
7218 M:      Crt Mori <cmo@melexis.com>
7219 L:      linux-iio@vger.kernel.org
7220 W:      http://www.melexis.com
7221 S:      Supported
7222 F:      drivers/iio/temperature/mlx90614.c
7223
7224 MN88472 MEDIA DRIVER
7225 M:      Antti Palosaari <crope@iki.fi>
7226 L:      linux-media@vger.kernel.org
7227 W:      https://linuxtv.org
7228 W:      http://palosaari.fi/linux/
7229 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7230 T:      git git://linuxtv.org/anttip/media_tree.git
7231 S:      Maintained
7232 F:      drivers/staging/media/mn88472/
7233 F:      drivers/media/dvb-frontends/mn88472.h
7234
7235 MN88473 MEDIA DRIVER
7236 M:      Antti Palosaari <crope@iki.fi>
7237 L:      linux-media@vger.kernel.org
7238 W:      https://linuxtv.org
7239 W:      http://palosaari.fi/linux/
7240 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7241 T:      git git://linuxtv.org/anttip/media_tree.git
7242 S:      Maintained
7243 F:      drivers/staging/media/mn88473/
7244 F:      drivers/media/dvb-frontends/mn88473.h
7245
7246 MODULE SUPPORT
7247 M:      Rusty Russell <rusty@rustcorp.com.au>
7248 S:      Maintained
7249 F:      include/linux/module.h
7250 F:      kernel/module.c
7251
7252 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
7253 W:      http://popies.net/meye/
7254 S:      Orphan
7255 F:      Documentation/video4linux/meye.txt
7256 F:      drivers/media/pci/meye/
7257 F:      include/uapi/linux/meye.h
7258
7259 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
7260 M:      Jiri Slaby <jirislaby@gmail.com>
7261 S:      Maintained
7262 F:      Documentation/serial/moxa-smartio
7263 F:      drivers/tty/mxser.*
7264
7265 MR800 AVERMEDIA USB FM RADIO DRIVER
7266 M:      Alexey Klimov <klimov.linux@gmail.com>
7267 L:      linux-media@vger.kernel.org
7268 T:      git git://linuxtv.org/media_tree.git
7269 S:      Maintained
7270 F:      drivers/media/radio/radio-mr800.c
7271
7272 MRF24J40 IEEE 802.15.4 RADIO DRIVER
7273 M:      Alan Ott <alan@signal11.us>
7274 L:      linux-wpan@vger.kernel.org
7275 S:      Maintained
7276 F:      drivers/net/ieee802154/mrf24j40.c
7277 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
7278
7279 MSI LAPTOP SUPPORT
7280 M:      "Lee, Chun-Yi" <jlee@suse.com>
7281 L:      platform-driver-x86@vger.kernel.org
7282 S:      Maintained
7283 F:      drivers/platform/x86/msi-laptop.c
7284
7285 MSI WMI SUPPORT
7286 L:      platform-driver-x86@vger.kernel.org
7287 S:      Orphan
7288 F:      drivers/platform/x86/msi-wmi.c
7289
7290 MSI001 MEDIA DRIVER
7291 M:      Antti Palosaari <crope@iki.fi>
7292 L:      linux-media@vger.kernel.org
7293 W:      https://linuxtv.org
7294 W:      http://palosaari.fi/linux/
7295 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7296 T:      git git://linuxtv.org/anttip/media_tree.git
7297 S:      Maintained
7298 F:      drivers/media/tuners/msi001*
7299
7300 MSI2500 MEDIA DRIVER
7301 M:      Antti Palosaari <crope@iki.fi>
7302 L:      linux-media@vger.kernel.org
7303 W:      https://linuxtv.org
7304 W:      http://palosaari.fi/linux/
7305 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7306 T:      git git://linuxtv.org/anttip/media_tree.git
7307 S:      Maintained
7308 F:      drivers/media/usb/msi2500/
7309
7310 MSYSTEMS DISKONCHIP G3 MTD DRIVER
7311 M:      Robert Jarzmik <robert.jarzmik@free.fr>
7312 L:      linux-mtd@lists.infradead.org
7313 S:      Maintained
7314 F:      drivers/mtd/devices/docg3*
7315
7316 MT9M032 APTINA SENSOR DRIVER
7317 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7318 L:      linux-media@vger.kernel.org
7319 T:      git git://linuxtv.org/media_tree.git
7320 S:      Maintained
7321 F:      drivers/media/i2c/mt9m032.c
7322 F:      include/media/i2c/mt9m032.h
7323
7324 MT9P031 APTINA CAMERA SENSOR
7325 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7326 L:      linux-media@vger.kernel.org
7327 T:      git git://linuxtv.org/media_tree.git
7328 S:      Maintained
7329 F:      drivers/media/i2c/mt9p031.c
7330 F:      include/media/i2c/mt9p031.h
7331
7332 MT9T001 APTINA CAMERA SENSOR
7333 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7334 L:      linux-media@vger.kernel.org
7335 T:      git git://linuxtv.org/media_tree.git
7336 S:      Maintained
7337 F:      drivers/media/i2c/mt9t001.c
7338 F:      include/media/i2c/mt9t001.h
7339
7340 MT9V032 APTINA CAMERA SENSOR
7341 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7342 L:      linux-media@vger.kernel.org
7343 T:      git git://linuxtv.org/media_tree.git
7344 S:      Maintained
7345 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
7346 F:      drivers/media/i2c/mt9v032.c
7347 F:      include/media/i2c/mt9v032.h
7348
7349 MULTIFUNCTION DEVICES (MFD)
7350 M:      Lee Jones <lee.jones@linaro.org>
7351 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
7352 S:      Supported
7353 F:      drivers/mfd/
7354 F:      include/linux/mfd/
7355
7356 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
7357 M:      Ulf Hansson <ulf.hansson@linaro.org>
7358 L:      linux-mmc@vger.kernel.org
7359 T:      git git://git.linaro.org/people/ulf.hansson/mmc.git
7360 S:      Maintained
7361 F:      drivers/mmc/
7362 F:      include/linux/mmc/
7363 F:      include/uapi/linux/mmc/
7364
7365 MULTIMEDIA CARD (MMC) ETC. OVER SPI
7366 S:      Orphan
7367 F:      drivers/mmc/host/mmc_spi.c
7368 F:      include/linux/spi/mmc_spi.h
7369
7370 MULTISOUND SOUND DRIVER
7371 M:      Andrew Veliath <andrewtv@usa.net>
7372 S:      Maintained
7373 F:      Documentation/sound/oss/MultiSound
7374 F:      sound/oss/msnd*
7375
7376 MULTITECH MULTIPORT CARD (ISICOM)
7377 S:      Orphan
7378 F:      drivers/tty/isicom.c
7379 F:      include/linux/isicom.h
7380
7381 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
7382 M:      Felipe Balbi <balbi@kernel.org>
7383 L:      linux-usb@vger.kernel.org
7384 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7385 S:      Maintained
7386 F:      drivers/usb/musb/
7387
7388 MXL5007T MEDIA DRIVER
7389 M:      Michael Krufky <mkrufky@linuxtv.org>
7390 L:      linux-media@vger.kernel.org
7391 W:      https://linuxtv.org
7392 W:      http://github.com/mkrufky
7393 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7394 T:      git git://linuxtv.org/mkrufky/tuners.git
7395 S:      Maintained
7396 F:      drivers/media/tuners/mxl5007t.*
7397
7398 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
7399 M:      Hyong-Youb Kim <hykim@myri.com>
7400 L:      netdev@vger.kernel.org
7401 W:      https://www.myricom.com/support/downloads/myri10ge.html
7402 S:      Supported
7403 F:      drivers/net/ethernet/myricom/myri10ge/
7404
7405 NATSEMI ETHERNET DRIVER (DP8381x)
7406 S:      Orphan
7407 F:      drivers/net/ethernet/natsemi/natsemi.c
7408
7409 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
7410 M:      Daniel Mack <zonque@gmail.com>
7411 S:      Maintained
7412 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7413 W:      http://www.native-instruments.com
7414 F:      sound/usb/caiaq/
7415
7416 NCP FILESYSTEM
7417 M:      Petr Vandrovec <petr@vandrovec.name>
7418 S:      Odd Fixes
7419 F:      fs/ncpfs/
7420
7421 NCR 5380 SCSI DRIVERS
7422 M:      Finn Thain <fthain@telegraphics.com.au>
7423 M:      Michael Schmitz <schmitzmic@gmail.com>
7424 L:      linux-scsi@vger.kernel.org
7425 S:      Maintained
7426 F:      Documentation/scsi/g_NCR5380.txt
7427 F:      drivers/scsi/NCR5380.*
7428 F:      drivers/scsi/arm/cumana_1.c
7429 F:      drivers/scsi/arm/oak.c
7430 F:      drivers/scsi/atari_NCR5380.c
7431 F:      drivers/scsi/atari_scsi.*
7432 F:      drivers/scsi/dmx3191d.c
7433 F:      drivers/scsi/dtc.*
7434 F:      drivers/scsi/g_NCR5380.*
7435 F:      drivers/scsi/g_NCR5380_mmio.c
7436 F:      drivers/scsi/mac_scsi.*
7437 F:      drivers/scsi/pas16.*
7438 F:      drivers/scsi/sun3_scsi.*
7439 F:      drivers/scsi/sun3_scsi_vme.c
7440 F:      drivers/scsi/t128.*
7441
7442 NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
7443 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
7444 L:      linux-scsi@vger.kernel.org
7445 S:      Maintained
7446 F:      drivers/scsi/NCR_D700.*
7447
7448 NCT6775 HARDWARE MONITOR DRIVER
7449 M:      Guenter Roeck <linux@roeck-us.net>
7450 L:      lm-sensors@lm-sensors.org
7451 S:      Maintained
7452 F:      Documentation/hwmon/nct6775
7453 F:      drivers/hwmon/nct6775.c
7454
7455 NETEFFECT IWARP RNIC DRIVER (IW_NES)
7456 M:      Faisal Latif <faisal.latif@intel.com>
7457 L:      linux-rdma@vger.kernel.org
7458 W:      http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
7459 S:      Supported
7460 F:      drivers/infiniband/hw/nes/
7461
7462 NETEM NETWORK EMULATOR
7463 M:      Stephen Hemminger <stephen@networkplumber.org>
7464 L:      netem@lists.linux-foundation.org
7465 S:      Maintained
7466 F:      net/sched/sch_netem.c
7467
7468 NETERION 10GbE DRIVERS (s2io/vxge)
7469 M:      Jon Mason <jdmason@kudzu.us>
7470 L:      netdev@vger.kernel.org
7471 S:      Supported
7472 F:      Documentation/networking/s2io.txt
7473 F:      Documentation/networking/vxge.txt
7474 F:      drivers/net/ethernet/neterion/
7475
7476 NETFILTER ({IP,IP6,ARP,EB,NF}TABLES)
7477 M:      Pablo Neira Ayuso <pablo@netfilter.org>
7478 M:      Patrick McHardy <kaber@trash.net>
7479 M:      Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
7480 L:      netfilter-devel@vger.kernel.org
7481 L:      coreteam@netfilter.org
7482 W:      http://www.netfilter.org/
7483 W:      http://www.iptables.org/
7484 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
7485 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
7486 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
7487 S:      Supported
7488 F:      include/linux/netfilter*
7489 F:      include/linux/netfilter/
7490 F:      include/net/netfilter/
7491 F:      include/uapi/linux/netfilter*
7492 F:      include/uapi/linux/netfilter/
7493 F:      net/*/netfilter.c
7494 F:      net/*/netfilter/
7495 F:      net/netfilter/
7496 F:      net/bridge/br_netfilter*.c
7497
7498 NETLABEL
7499 M:      Paul Moore <paul@paul-moore.com>
7500 W:      http://netlabel.sf.net
7501 L:      netdev@vger.kernel.org
7502 S:      Maintained
7503 F:      Documentation/netlabel/
7504 F:      include/net/netlabel.h
7505 F:      net/netlabel/
7506
7507 NETROM NETWORK LAYER
7508 M:      Ralf Baechle <ralf@linux-mips.org>
7509 L:      linux-hams@vger.kernel.org
7510 W:      http://www.linux-ax25.org/
7511 S:      Maintained
7512 F:      include/net/netrom.h
7513 F:      include/uapi/linux/netrom.h
7514 F:      net/netrom/
7515
7516 NETRONOME ETHERNET DRIVERS
7517 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
7518 M:      Rolf Neugebauer <rolf.neugebauer@netronome.com>
7519 L:      oss-drivers@netronome.com
7520 S:      Maintained
7521 F:      drivers/net/ethernet/netronome/
7522
7523 NETWORK BLOCK DEVICE (NBD)
7524 M:      Markus Pargmann <mpa@pengutronix.de>
7525 S:      Maintained
7526 L:      nbd-general@lists.sourceforge.net
7527 T:      git git://git.pengutronix.de/git/mpa/linux-nbd.git
7528 F:      Documentation/blockdev/nbd.txt
7529 F:      drivers/block/nbd.c
7530 F:      include/uapi/linux/nbd.h
7531
7532 NETWORK DROP MONITOR
7533 M:      Neil Horman <nhorman@tuxdriver.com>
7534 L:      netdev@vger.kernel.org
7535 S:      Maintained
7536 W:      https://fedorahosted.org/dropwatch/
7537 F:      net/core/drop_monitor.c
7538
7539 NETWORKING [GENERAL]
7540 M:      "David S. Miller" <davem@davemloft.net>
7541 L:      netdev@vger.kernel.org
7542 W:      http://www.linuxfoundation.org/en/Net
7543 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7544 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7545 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7546 S:      Maintained
7547 F:      net/
7548 F:      include/net/
7549 F:      include/linux/in.h
7550 F:      include/linux/net.h
7551 F:      include/linux/netdevice.h
7552 F:      include/uapi/linux/in.h
7553 F:      include/uapi/linux/net.h
7554 F:      include/uapi/linux/netdevice.h
7555 F:      include/uapi/linux/net_namespace.h
7556 F:      tools/net/
7557 F:      tools/testing/selftests/net/
7558 F:      lib/random32.c
7559 F:      lib/test_bpf.c
7560
7561 NETWORKING [IPv4/IPv6]
7562 M:      "David S. Miller" <davem@davemloft.net>
7563 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
7564 M:      James Morris <jmorris@namei.org>
7565 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
7566 M:      Patrick McHardy <kaber@trash.net>
7567 L:      netdev@vger.kernel.org
7568 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7569 S:      Maintained
7570 F:      net/ipv4/
7571 F:      net/ipv6/
7572 F:      include/net/ip*
7573 F:      arch/x86/net/*
7574
7575 NETWORKING [IPSEC]
7576 M:      Steffen Klassert <steffen.klassert@secunet.com>
7577 M:      Herbert Xu <herbert@gondor.apana.org.au>
7578 M:      "David S. Miller" <davem@davemloft.net>
7579 L:      netdev@vger.kernel.org
7580 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
7581 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
7582 S:      Maintained
7583 F:      net/core/flow.c
7584 F:      net/xfrm/
7585 F:      net/key/
7586 F:      net/ipv4/xfrm*
7587 F:      net/ipv4/esp4.c
7588 F:      net/ipv4/ah4.c
7589 F:      net/ipv4/ipcomp.c
7590 F:      net/ipv4/ip_vti.c
7591 F:      net/ipv6/xfrm*
7592 F:      net/ipv6/esp6.c
7593 F:      net/ipv6/ah6.c
7594 F:      net/ipv6/ipcomp6.c
7595 F:      net/ipv6/ip6_vti.c
7596 F:      include/uapi/linux/xfrm.h
7597 F:      include/net/xfrm.h
7598
7599 NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
7600 M:      Paul Moore <paul@paul-moore.com>
7601 L:      netdev@vger.kernel.org
7602 S:      Maintained
7603
7604 NETWORKING [WIRELESS]
7605 L:      linux-wireless@vger.kernel.org
7606 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7607
7608 NETWORKING DRIVERS
7609 L:      netdev@vger.kernel.org
7610 W:      http://www.linuxfoundation.org/en/Net
7611 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7612 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7613 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7614 S:      Odd Fixes
7615 F:      drivers/net/
7616 F:      include/linux/if_*
7617 F:      include/linux/netdevice.h
7618 F:      include/linux/etherdevice.h
7619 F:      include/linux/fcdevice.h
7620 F:      include/linux/fddidevice.h
7621 F:      include/linux/hippidevice.h
7622 F:      include/linux/inetdevice.h
7623 F:      include/uapi/linux/if_*
7624 F:      include/uapi/linux/netdevice.h
7625
7626 NETWORKING DRIVERS (WIRELESS)
7627 M:      Kalle Valo <kvalo@codeaurora.org>
7628 L:      linux-wireless@vger.kernel.org
7629 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7630 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
7631 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
7632 S:      Maintained
7633 F:      drivers/net/wireless/
7634
7635 NETXEN (1/10) GbE SUPPORT
7636 M:      Manish Chopra <manish.chopra@qlogic.com>
7637 M:      Sony Chacko <sony.chacko@qlogic.com>
7638 M:      Rajesh Borundia <rajesh.borundia@qlogic.com>
7639 L:      netdev@vger.kernel.org
7640 W:      http://www.qlogic.com
7641 S:      Supported
7642 F:      drivers/net/ethernet/qlogic/netxen/
7643
7644 NFC SUBSYSTEM
7645 M:      Lauro Ramos Venancio <lauro.venancio@openbossa.org>
7646 M:      Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
7647 M:      Samuel Ortiz <sameo@linux.intel.com>
7648 L:      linux-wireless@vger.kernel.org
7649 L:      linux-nfc@lists.01.org (subscribers-only)
7650 S:      Supported
7651 F:      net/nfc/
7652 F:      include/net/nfc/
7653 F:      include/uapi/linux/nfc.h
7654 F:      drivers/nfc/
7655 F:      include/linux/platform_data/microread.h
7656 F:      include/linux/platform_data/nfcmrvl.h
7657 F:      include/linux/platform_data/nxp-nci.h
7658 F:      include/linux/platform_data/pn544.h
7659 F:      include/linux/platform_data/st21nfca.h
7660 F:      include/linux/platform_data/st-nci.h
7661 F:      Documentation/devicetree/bindings/net/nfc/
7662
7663 NFS, SUNRPC, AND LOCKD CLIENTS
7664 M:      Trond Myklebust <trond.myklebust@primarydata.com>
7665 M:      Anna Schumaker <anna.schumaker@netapp.com>
7666 L:      linux-nfs@vger.kernel.org
7667 W:      http://client.linux-nfs.org
7668 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
7669 S:      Maintained
7670 F:      fs/lockd/
7671 F:      fs/nfs/
7672 F:      fs/nfs_common/
7673 F:      net/sunrpc/
7674 F:      include/linux/lockd/
7675 F:      include/linux/nfs*
7676 F:      include/linux/sunrpc/
7677 F:      include/uapi/linux/nfs*
7678 F:      include/uapi/linux/sunrpc/
7679
7680 NILFS2 FILESYSTEM
7681 M:      Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
7682 L:      linux-nilfs@vger.kernel.org
7683 W:      http://nilfs.sourceforge.net/
7684 T:      git git://github.com/konis/nilfs2.git
7685 S:      Supported
7686 F:      Documentation/filesystems/nilfs2.txt
7687 F:      fs/nilfs2/
7688 F:      include/linux/nilfs2_fs.h
7689 F:      include/trace/events/nilfs2.h
7690
7691 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
7692 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7693 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7694 S:      Maintained
7695 F:      Documentation/scsi/NinjaSCSI.txt
7696 F:      drivers/scsi/pcmcia/nsp_*
7697
7698 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
7699 M:      GOTO Masanori <gotom@debian.or.jp>
7700 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7701 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7702 S:      Maintained
7703 F:      Documentation/scsi/NinjaSCSI.txt
7704 F:      drivers/scsi/nsp32*
7705
7706 NIOS2 ARCHITECTURE
7707 M:      Ley Foon Tan <lftan@altera.com>
7708 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
7709 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
7710 S:      Maintained
7711 F:      arch/nios2/
7712
7713 NOKIA N900 POWER SUPPLY DRIVERS
7714 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
7715 S:      Maintained
7716 F:      include/linux/power/bq2415x_charger.h
7717 F:      include/linux/power/bq27xxx_battery.h
7718 F:      include/linux/power/isp1704_charger.h
7719 F:      drivers/power/bq2415x_charger.c
7720 F:      drivers/power/bq27xxx_battery.c
7721 F:      drivers/power/isp1704_charger.c
7722 F:      drivers/power/rx51_battery.c
7723
7724 NTB DRIVER CORE
7725 M:      Jon Mason <jdmason@kudzu.us>
7726 M:      Dave Jiang <dave.jiang@intel.com>
7727 M:      Allen Hubbe <Allen.Hubbe@emc.com>
7728 L:      linux-ntb@googlegroups.com
7729 S:      Supported
7730 W:      https://github.com/jonmason/ntb/wiki
7731 T:      git git://github.com/jonmason/ntb.git
7732 F:      drivers/ntb/
7733 F:      drivers/net/ntb_netdev.c
7734 F:      include/linux/ntb.h
7735 F:      include/linux/ntb_transport.h
7736
7737 NTB INTEL DRIVER
7738 M:      Jon Mason <jdmason@kudzu.us>
7739 M:      Dave Jiang <dave.jiang@intel.com>
7740 L:      linux-ntb@googlegroups.com
7741 S:      Supported
7742 W:      https://github.com/jonmason/ntb/wiki
7743 T:      git git://github.com/jonmason/ntb.git
7744 F:      drivers/ntb/hw/intel/
7745
7746 NTB AMD DRIVER
7747 M:      Xiangliang Yu <Xiangliang.Yu@amd.com>
7748 L:      linux-ntb@googlegroups.com
7749 S:      Supported
7750 F:      drivers/ntb/hw/amd/
7751
7752 NTFS FILESYSTEM
7753 M:      Anton Altaparmakov <anton@tuxera.com>
7754 L:      linux-ntfs-dev@lists.sourceforge.net
7755 W:      http://www.tuxera.com/
7756 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
7757 S:      Supported
7758 F:      Documentation/filesystems/ntfs.txt
7759 F:      fs/ntfs/
7760
7761 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
7762 M:      Antonino Daplas <adaplas@gmail.com>
7763 L:      linux-fbdev@vger.kernel.org
7764 S:      Maintained
7765 F:      drivers/video/fbdev/riva/
7766 F:      drivers/video/fbdev/nvidia/
7767
7768 NVM EXPRESS DRIVER
7769 M:      Keith Busch <keith.busch@intel.com>
7770 M:      Jens Axboe <axboe@fb.com>
7771 L:      linux-nvme@lists.infradead.org
7772 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
7773 W:      https://kernel.googlesource.com/pub/scm/linux/kernel/git/axboe/linux-block/
7774 S:      Supported
7775 F:      drivers/nvme/host/
7776 F:      include/linux/nvme.h
7777
7778 NVMEM FRAMEWORK
7779 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
7780 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
7781 S:      Maintained
7782 F:      drivers/nvmem/
7783 F:      Documentation/devicetree/bindings/nvmem/
7784 F:      include/linux/nvmem-consumer.h
7785 F:      include/linux/nvmem-provider.h
7786
7787 NXP-NCI NFC DRIVER
7788 M:      ClĂ©ment Perrochaud <clement.perrochaud@effinnov.com>
7789 R:      Charles Gorand <charles.gorand@effinnov.com>
7790 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
7791 S:      Supported
7792 F:      drivers/nfc/nxp-nci
7793
7794 NXP TDA998X DRM DRIVER
7795 M:      Russell King <rmk+kernel@arm.linux.org.uk>
7796 S:      Supported
7797 F:      drivers/gpu/drm/i2c/tda998x_drv.c
7798 F:      include/drm/i2c/tda998x.h
7799
7800 NXP TFA9879 DRIVER
7801 M:      Peter Rosin <peda@axentia.se>
7802 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7803 S:      Maintained
7804 F:      sound/soc/codecs/tfa9879*
7805
7806 OMAP SUPPORT
7807 M:      Tony Lindgren <tony@atomide.com>
7808 L:      linux-omap@vger.kernel.org
7809 W:      http://www.muru.com/linux/omap/
7810 W:      http://linux.omap.com/
7811 Q:      http://patchwork.kernel.org/project/linux-omap/list/
7812 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
7813 S:      Maintained
7814 F:      arch/arm/*omap*/
7815 F:      arch/arm/configs/omap1_defconfig
7816 F:      arch/arm/configs/omap2plus_defconfig
7817 F:      drivers/i2c/busses/i2c-omap.c
7818 F:      drivers/irqchip/irq-omap-intc.c
7819 F:      drivers/mfd/*omap*.c
7820 F:      drivers/mfd/menelaus.c
7821 F:      drivers/mfd/palmas.c
7822 F:      drivers/mfd/tps65217.c
7823 F:      drivers/mfd/tps65218.c
7824 F:      drivers/mfd/tps65910.c
7825 F:      drivers/mfd/twl-core.[ch]
7826 F:      drivers/mfd/twl4030*.c
7827 F:      drivers/mfd/twl6030*.c
7828 F:      drivers/mfd/twl6040*.c
7829 F:      drivers/regulator/palmas-regulator*.c
7830 F:      drivers/regulator/pbias-regulator.c
7831 F:      drivers/regulator/tps65217-regulator.c
7832 F:      drivers/regulator/tps65218-regulator.c
7833 F:      drivers/regulator/tps65910-regulator.c
7834 F:      drivers/regulator/twl-regulator.c
7835 F:      include/linux/i2c-omap.h
7836
7837 OMAP DEVICE TREE SUPPORT
7838 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7839 M:      Tony Lindgren <tony@atomide.com>
7840 L:      linux-omap@vger.kernel.org
7841 L:      devicetree@vger.kernel.org
7842 S:      Maintained
7843 F:      arch/arm/boot/dts/*omap*
7844 F:      arch/arm/boot/dts/*am3*
7845 F:      arch/arm/boot/dts/*am4*
7846 F:      arch/arm/boot/dts/*am5*
7847 F:      arch/arm/boot/dts/*dra7*
7848
7849 OMAP CLOCK FRAMEWORK SUPPORT
7850 M:      Paul Walmsley <paul@pwsan.com>
7851 L:      linux-omap@vger.kernel.org
7852 S:      Maintained
7853 F:      arch/arm/*omap*/*clock*
7854
7855 OMAP POWER MANAGEMENT SUPPORT
7856 M:      Kevin Hilman <khilman@deeprootsystems.com>
7857 L:      linux-omap@vger.kernel.org
7858 S:      Maintained
7859 F:      arch/arm/*omap*/*pm*
7860 F:      drivers/cpufreq/omap-cpufreq.c
7861
7862 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
7863 M:      Rajendra Nayak <rnayak@ti.com>
7864 M:      Paul Walmsley <paul@pwsan.com>
7865 L:      linux-omap@vger.kernel.org
7866 S:      Maintained
7867 F:      arch/arm/mach-omap2/prm*
7868
7869 OMAP AUDIO SUPPORT
7870 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
7871 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
7872 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7873 L:      linux-omap@vger.kernel.org
7874 S:      Maintained
7875 F:      sound/soc/omap/
7876
7877 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
7878 M:      Roger Quadros <rogerq@ti.com>
7879 M:      Tony Lindgren <tony@atomide.com>
7880 L:      linux-omap@vger.kernel.org
7881 S:      Maintained
7882 F:      drivers/memory/omap-gpmc.c
7883 F:      arch/arm/mach-omap2/*gpmc*
7884
7885 OMAP FRAMEBUFFER SUPPORT
7886 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
7887 L:      linux-fbdev@vger.kernel.org
7888 L:      linux-omap@vger.kernel.org
7889 S:      Maintained
7890 F:      drivers/video/fbdev/omap/
7891
7892 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
7893 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
7894 L:      linux-omap@vger.kernel.org
7895 L:      linux-fbdev@vger.kernel.org
7896 S:      Maintained
7897 F:      drivers/video/fbdev/omap2/
7898 F:      Documentation/arm/OMAP/DSS
7899
7900 OMAP HARDWARE SPINLOCK SUPPORT
7901 M:      Ohad Ben-Cohen <ohad@wizery.com>
7902 L:      linux-omap@vger.kernel.org
7903 S:      Maintained
7904 F:      drivers/hwspinlock/omap_hwspinlock.c
7905
7906 OMAP MMC SUPPORT
7907 M:      Jarkko Lavinen <jarkko.lavinen@nokia.com>
7908 L:      linux-omap@vger.kernel.org
7909 S:      Maintained
7910 F:      drivers/mmc/host/omap.c
7911
7912 OMAP HS MMC SUPPORT
7913 L:      linux-mmc@vger.kernel.org
7914 L:      linux-omap@vger.kernel.org
7915 S:      Orphan
7916 F:      drivers/mmc/host/omap_hsmmc.c
7917
7918 OMAP RANDOM NUMBER GENERATOR SUPPORT
7919 M:      Deepak Saxena <dsaxena@plexity.net>
7920 S:      Maintained
7921 F:      drivers/char/hw_random/omap-rng.c
7922
7923 OMAP HWMOD SUPPORT
7924 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7925 M:      Paul Walmsley <paul@pwsan.com>
7926 L:      linux-omap@vger.kernel.org
7927 S:      Maintained
7928 F:      arch/arm/mach-omap2/omap_hwmod.*
7929
7930 OMAP HWMOD DATA
7931 M:      Paul Walmsley <paul@pwsan.com>
7932 L:      linux-omap@vger.kernel.org
7933 S:      Maintained
7934 F:      arch/arm/mach-omap2/omap_hwmod*data*
7935
7936 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
7937 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7938 L:      linux-omap@vger.kernel.org
7939 S:      Maintained
7940 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
7941
7942 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
7943 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7944 L:      linux-media@vger.kernel.org
7945 S:      Maintained
7946 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
7947 F:      drivers/media/platform/omap3isp/
7948 F:      drivers/staging/media/omap4iss/
7949
7950 OMAP USB SUPPORT
7951 M:      Felipe Balbi <balbi@kernel.org>
7952 L:      linux-usb@vger.kernel.org
7953 L:      linux-omap@vger.kernel.org
7954 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7955 S:      Maintained
7956 F:      drivers/usb/*/*omap*
7957 F:      arch/arm/*omap*/usb*
7958
7959 OMAP GPIO DRIVER
7960 M:      Grygorii Strashko <grygorii.strashko@ti.com>
7961 M:      Santosh Shilimkar <ssantosh@kernel.org>
7962 M:      Kevin Hilman <khilman@deeprootsystems.com>
7963 L:      linux-omap@vger.kernel.org
7964 S:      Maintained
7965 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
7966 F:      drivers/gpio/gpio-omap.c
7967
7968 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
7969 M:      Mark Jackson <mpfj@newflow.co.uk>
7970 L:      linux-omap@vger.kernel.org
7971 S:      Maintained
7972 F:      arch/arm/boot/dts/am335x-nano.dts
7973
7974 OMFS FILESYSTEM
7975 M:      Bob Copeland <me@bobcopeland.com>
7976 L:      linux-karma-devel@lists.sourceforge.net
7977 S:      Maintained
7978 F:      Documentation/filesystems/omfs.txt
7979 F:      fs/omfs/
7980
7981 OMNIKEY CARDMAN 4000 DRIVER
7982 M:      Harald Welte <laforge@gnumonks.org>
7983 S:      Maintained
7984 F:      drivers/char/pcmcia/cm4000_cs.c
7985 F:      include/linux/cm4000_cs.h
7986 F:      include/uapi/linux/cm4000_cs.h
7987
7988 OMNIKEY CARDMAN 4040 DRIVER
7989 M:      Harald Welte <laforge@gnumonks.org>
7990 S:      Maintained
7991 F:      drivers/char/pcmcia/cm4040_cs.*
7992
7993 OMNIVISION OV7670 SENSOR DRIVER
7994 M:      Jonathan Corbet <corbet@lwn.net>
7995 L:      linux-media@vger.kernel.org
7996 T:      git git://linuxtv.org/media_tree.git
7997 S:      Maintained
7998 F:      drivers/media/i2c/ov7670.c
7999
8000 ONENAND FLASH DRIVER
8001 M:      Kyungmin Park <kyungmin.park@samsung.com>
8002 L:      linux-mtd@lists.infradead.org
8003 S:      Maintained
8004 F:      drivers/mtd/onenand/
8005 F:      include/linux/mtd/onenand*.h
8006
8007 ONSTREAM SCSI TAPE DRIVER
8008 M:      Willem Riede <osst@riede.org>
8009 L:      osst-users@lists.sourceforge.net
8010 L:      linux-scsi@vger.kernel.org
8011 S:      Maintained
8012 F:      Documentation/scsi/osst.txt
8013 F:      drivers/scsi/osst.*
8014 F:      drivers/scsi/osst_*.h
8015 F:      drivers/scsi/st.h
8016
8017 OPENCORES I2C BUS DRIVER
8018 M:      Peter Korsgaard <jacmet@sunsite.dk>
8019 L:      linux-i2c@vger.kernel.org
8020 S:      Maintained
8021 F:      Documentation/i2c/busses/i2c-ocores
8022 F:      drivers/i2c/busses/i2c-ocores.c
8023
8024 OPEN FIRMWARE AND FLATTENED DEVICE TREE
8025 M:      Rob Herring <robh+dt@kernel.org>
8026 M:      Frank Rowand <frowand.list@gmail.com>
8027 M:      Grant Likely <grant.likely@linaro.org>
8028 L:      devicetree@vger.kernel.org
8029 W:      http://www.devicetree.org/
8030 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/glikely/linux.git
8031 S:      Maintained
8032 F:      drivers/of/
8033 F:      include/linux/of*.h
8034 F:      scripts/dtc/
8035
8036 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
8037 M:      Rob Herring <robh+dt@kernel.org>
8038 M:      Pawel Moll <pawel.moll@arm.com>
8039 M:      Mark Rutland <mark.rutland@arm.com>
8040 M:      Ian Campbell <ijc+devicetree@hellion.org.uk>
8041 M:      Kumar Gala <galak@codeaurora.org>
8042 L:      devicetree@vger.kernel.org
8043 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
8044 S:      Maintained
8045 F:      Documentation/devicetree/
8046 F:      arch/*/boot/dts/
8047 F:      include/dt-bindings/
8048
8049 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
8050 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
8051 L:      devicetree@vger.kernel.org
8052 S:      Maintained
8053 F:      Documentation/devicetree/dynamic-resolution-notes.txt
8054 F:      Documentation/devicetree/overlay-notes.txt
8055 F:      drivers/of/overlay.c
8056 F:      drivers/of/resolver.c
8057
8058 OPENRISC ARCHITECTURE
8059 M:      Jonas Bonn <jonas@southpole.se>
8060 W:      http://openrisc.net
8061 L:      linux@lists.openrisc.net (moderated for non-subscribers)
8062 S:      Maintained
8063 T:      git git://openrisc.net/~jonas/linux
8064 F:      arch/openrisc/
8065
8066 OPENVSWITCH
8067 M:      Pravin Shelar <pshelar@nicira.com>
8068 L:      netdev@vger.kernel.org
8069 L:      dev@openvswitch.org
8070 W:      http://openvswitch.org
8071 S:      Maintained
8072 F:      net/openvswitch/
8073 F:      include/uapi/linux/openvswitch.h
8074
8075 OPERATING PERFORMANCE POINTS (OPP)
8076 M:      Viresh Kumar <vireshk@kernel.org>
8077 M:      Nishanth Menon <nm@ti.com>
8078 M:      Stephen Boyd <sboyd@codeaurora.org>
8079 L:      linux-pm@vger.kernel.org
8080 S:      Maintained
8081 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
8082 F:      drivers/base/power/opp/
8083 F:      include/linux/pm_opp.h
8084 F:      Documentation/power/opp.txt
8085 F:      Documentation/devicetree/bindings/opp/
8086
8087 OPL4 DRIVER
8088 M:      Clemens Ladisch <clemens@ladisch.de>
8089 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8090 T:      git git://git.alsa-project.org/alsa-kernel.git
8091 S:      Maintained
8092 F:      sound/drivers/opl4/
8093
8094 OPROFILE
8095 M:      Robert Richter <rric@kernel.org>
8096 L:      oprofile-list@lists.sf.net
8097 S:      Maintained
8098 F:      arch/*/include/asm/oprofile*.h
8099 F:      arch/*/oprofile/
8100 F:      drivers/oprofile/
8101 F:      include/linux/oprofile.h
8102
8103 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
8104 M:      Mark Fasheh <mfasheh@suse.com>
8105 M:      Joel Becker <jlbec@evilplan.org>
8106 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
8107 W:      http://ocfs2.wiki.kernel.org
8108 S:      Supported
8109 F:      Documentation/filesystems/ocfs2.txt
8110 F:      Documentation/filesystems/dlmfs.txt
8111 F:      fs/ocfs2/
8112
8113 ORINOCO DRIVER
8114 L:      linux-wireless@vger.kernel.org
8115 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
8116 W:      http://www.nongnu.org/orinoco/
8117 S:      Orphan
8118 F:      drivers/net/wireless/intersil/orinoco/
8119
8120 OSD LIBRARY and FILESYSTEM
8121 M:      Boaz Harrosh <ooo@electrozaur.com>
8122 M:      Benny Halevy <bhalevy@primarydata.com>
8123 L:      osd-dev@open-osd.org
8124 W:      http://open-osd.org
8125 T:      git git://git.open-osd.org/open-osd.git
8126 S:      Maintained
8127 F:      drivers/scsi/osd/
8128 F:      include/scsi/osd_*
8129 F:      fs/exofs/
8130
8131 OVERLAY FILESYSTEM
8132 M:      Miklos Szeredi <miklos@szeredi.hu>
8133 L:      linux-unionfs@vger.kernel.org
8134 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
8135 S:      Supported
8136 F:      fs/overlayfs/
8137 F:      Documentation/filesystems/overlayfs.txt
8138
8139 ORANGEFS FILESYSTEM
8140 M:      Mike Marshall <hubcap@omnibond.com>
8141 L:      pvfs2-developers@beowulf-underground.org
8142 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
8143 S:      Supported
8144 F:      fs/orangefs/
8145 F:      Documentation/filesystems/orangefs.txt
8146
8147 P54 WIRELESS DRIVER
8148 M:      Christian Lamparter <chunkeey@googlemail.com>
8149 L:      linux-wireless@vger.kernel.org
8150 W:      http://wireless.kernel.org/en/users/Drivers/p54
8151 S:      Maintained
8152 F:      drivers/net/wireless/intersil/p54/
8153
8154 PA SEMI ETHERNET DRIVER
8155 M:      Olof Johansson <olof@lixom.net>
8156 L:      netdev@vger.kernel.org
8157 S:      Maintained
8158 F:      drivers/net/ethernet/pasemi/*
8159
8160 PA SEMI SMBUS DRIVER
8161 M:      Olof Johansson <olof@lixom.net>
8162 L:      linux-i2c@vger.kernel.org
8163 S:      Maintained
8164 F:      drivers/i2c/busses/i2c-pasemi.c
8165
8166 PADATA PARALLEL EXECUTION MECHANISM
8167 M:      Steffen Klassert <steffen.klassert@secunet.com>
8168 L:      linux-crypto@vger.kernel.org
8169 S:      Maintained
8170 F:      kernel/padata.c
8171 F:      include/linux/padata.h
8172 F:      Documentation/padata.txt
8173
8174 PANASONIC LAPTOP ACPI EXTRAS DRIVER
8175 M:      Harald Welte <laforge@gnumonks.org>
8176 L:      platform-driver-x86@vger.kernel.org
8177 S:      Maintained
8178 F:      drivers/platform/x86/panasonic-laptop.c
8179
8180 PANASONIC MN10300/AM33/AM34 PORT
8181 M:      David Howells <dhowells@redhat.com>
8182 M:      Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
8183 L:      linux-am33-list@redhat.com (moderated for non-subscribers)
8184 W:      ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
8185 S:      Maintained
8186 F:      Documentation/mn10300/
8187 F:      arch/mn10300/
8188
8189 PARALLEL LCD/KEYPAD PANEL DRIVER
8190 M:      Willy Tarreau <willy@haproxy.com>
8191 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
8192 S:      Odd Fixes
8193 F:      Documentation/misc-devices/lcd-panel-cgram.txt
8194 F:      drivers/misc/panel.c
8195
8196 PARALLEL PORT SUBSYSTEM
8197 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
8198 M:      Sudip Mukherjee <sudip@vectorindia.org>
8199 L:      linux-parport@lists.infradead.org (subscribers-only)
8200 S:      Maintained
8201 F:      drivers/parport/
8202 F:      include/linux/parport*.h
8203 F:      drivers/char/ppdev.c
8204 F:      include/uapi/linux/ppdev.h
8205 F:      Documentation/parport*.txt
8206
8207 PARAVIRT_OPS INTERFACE
8208 M:      Jeremy Fitzhardinge <jeremy@goop.org>
8209 M:      Chris Wright <chrisw@sous-sol.org>
8210 M:      Alok Kataria <akataria@vmware.com>
8211 M:      Rusty Russell <rusty@rustcorp.com.au>
8212 L:      virtualization@lists.linux-foundation.org
8213 S:      Supported
8214 F:      Documentation/virtual/paravirt_ops.txt
8215 F:      arch/*/kernel/paravirt*
8216 F:      arch/*/include/asm/paravirt.h
8217
8218 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
8219 M:      Tim Waugh <tim@cyberelk.net>
8220 L:      linux-parport@lists.infradead.org (subscribers-only)
8221 S:      Maintained
8222 F:      Documentation/blockdev/paride.txt
8223 F:      drivers/block/paride/
8224
8225 PARISC ARCHITECTURE
8226 M:      "James E.J. Bottomley" <jejb@parisc-linux.org>
8227 M:      Helge Deller <deller@gmx.de>
8228 L:      linux-parisc@vger.kernel.org
8229 W:      http://www.parisc-linux.org/
8230 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
8231 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
8232 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
8233 S:      Maintained
8234 F:      arch/parisc/
8235 F:      Documentation/parisc/
8236 F:      drivers/parisc/
8237 F:      drivers/char/agp/parisc-agp.c
8238 F:      drivers/input/serio/gscps2.c
8239 F:      drivers/parport/parport_gsc.*
8240 F:      drivers/tty/serial/8250/8250_gsc.c
8241 F:      drivers/video/fbdev/sti*
8242 F:      drivers/video/console/sti*
8243 F:      drivers/video/logo/logo_parisc*
8244
8245 PC87360 HARDWARE MONITORING DRIVER
8246 M:      Jim Cromie <jim.cromie@gmail.com>
8247 L:      lm-sensors@lm-sensors.org
8248 S:      Maintained
8249 F:      Documentation/hwmon/pc87360
8250 F:      drivers/hwmon/pc87360.c
8251
8252 PC8736x GPIO DRIVER
8253 M:      Jim Cromie <jim.cromie@gmail.com>
8254 S:      Maintained
8255 F:      drivers/char/pc8736x_gpio.c
8256
8257 PC87427 HARDWARE MONITORING DRIVER
8258 M:      Jean Delvare <jdelvare@suse.com>
8259 L:      lm-sensors@lm-sensors.org
8260 S:      Maintained
8261 F:      Documentation/hwmon/pc87427
8262 F:      drivers/hwmon/pc87427.c
8263
8264 PCA9532 LED DRIVER
8265 M:      Riku Voipio <riku.voipio@iki.fi>
8266 S:      Maintained
8267 F:      drivers/leds/leds-pca9532.c
8268 F:      include/linux/leds-pca9532.h
8269
8270 PCA9541 I2C BUS MASTER SELECTOR DRIVER
8271 M:      Guenter Roeck <linux@roeck-us.net>
8272 L:      linux-i2c@vger.kernel.org
8273 S:      Maintained
8274 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
8275
8276 PCDP - PRIMARY CONSOLE AND DEBUG PORT
8277 M:      Khalid Aziz <khalid@gonehiking.org>
8278 S:      Maintained
8279 F:      drivers/firmware/pcdp.*
8280
8281 PCI ERROR RECOVERY
8282 M:      Linas Vepstas <linasvepstas@gmail.com>
8283 L:      linux-pci@vger.kernel.org
8284 S:      Supported
8285 F:      Documentation/PCI/pci-error-recovery.txt
8286
8287 PCI SUBSYSTEM
8288 M:      Bjorn Helgaas <bhelgaas@google.com>
8289 L:      linux-pci@vger.kernel.org
8290 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
8291 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
8292 S:      Supported
8293 F:      Documentation/PCI/
8294 F:      drivers/pci/
8295 F:      include/linux/pci*
8296 F:      arch/x86/pci/
8297 F:      arch/x86/kernel/quirks.c
8298
8299 PCI DRIVER FOR ALTERA PCIE IP
8300 M:      Ley Foon Tan <lftan@altera.com>
8301 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
8302 L:      linux-pci@vger.kernel.org
8303 S:      Supported
8304 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
8305 F:      drivers/pci/host/pcie-altera.c
8306
8307 PCI DRIVER FOR ARM VERSATILE PLATFORM
8308 M:      Rob Herring <robh@kernel.org>
8309 L:      linux-pci@vger.kernel.org
8310 L:      linux-arm-kernel@lists.infradead.org
8311 S:      Maintained
8312 F:      Documentation/devicetree/bindings/pci/versatile.txt
8313 F:      drivers/pci/host/pci-versatile.c
8314
8315 PCI DRIVER FOR APPLIEDMICRO XGENE
8316 M:      Tanmay Inamdar <tinamdar@apm.com>
8317 L:      linux-pci@vger.kernel.org
8318 L:      linux-arm-kernel@lists.infradead.org
8319 S:      Maintained
8320 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
8321 F:      drivers/pci/host/pci-xgene.c
8322
8323 PCI DRIVER FOR FREESCALE LAYERSCAPE
8324 M:      Minghuan Lian <minghuan.Lian@freescale.com>
8325 M:      Mingkai Hu <mingkai.hu@freescale.com>
8326 M:      Roy Zang <tie-fei.zang@freescale.com>
8327 L:      linuxppc-dev@lists.ozlabs.org
8328 L:      linux-pci@vger.kernel.org
8329 L:      linux-arm-kernel@lists.infradead.org
8330 S:      Maintained
8331 F:      drivers/pci/host/*layerscape*
8332
8333 PCI DRIVER FOR IMX6
8334 M:      Richard Zhu <Richard.Zhu@freescale.com>
8335 M:      Lucas Stach <l.stach@pengutronix.de>
8336 L:      linux-pci@vger.kernel.org
8337 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8338 S:      Maintained
8339 F:      drivers/pci/host/*imx6*
8340
8341 PCI DRIVER FOR TI KEYSTONE
8342 M:      Murali Karicheri <m-karicheri2@ti.com>
8343 L:      linux-pci@vger.kernel.org
8344 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8345 S:      Maintained
8346 F:      drivers/pci/host/*keystone*
8347
8348 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
8349 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8350 M:      Jason Cooper <jason@lakedaemon.net>
8351 L:      linux-pci@vger.kernel.org
8352 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8353 S:      Maintained
8354 F:      drivers/pci/host/*mvebu*
8355
8356 PCI DRIVER FOR NVIDIA TEGRA
8357 M:      Thierry Reding <thierry.reding@gmail.com>
8358 L:      linux-tegra@vger.kernel.org
8359 L:      linux-pci@vger.kernel.org
8360 S:      Supported
8361 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
8362 F:      drivers/pci/host/pci-tegra.c
8363
8364 PCI DRIVER FOR TI DRA7XX
8365 M:      Kishon Vijay Abraham I <kishon@ti.com>
8366 L:      linux-omap@vger.kernel.org
8367 L:      linux-pci@vger.kernel.org
8368 S:      Supported
8369 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
8370 F:      drivers/pci/host/pci-dra7xx.c
8371
8372 PCI DRIVER FOR RENESAS R-CAR
8373 M:      Simon Horman <horms@verge.net.au>
8374 L:      linux-pci@vger.kernel.org
8375 L:      linux-renesas-soc@vger.kernel.org
8376 S:      Maintained
8377 F:      drivers/pci/host/*rcar*
8378
8379 PCI DRIVER FOR SAMSUNG EXYNOS
8380 M:      Jingoo Han <jingoohan1@gmail.com>
8381 L:      linux-pci@vger.kernel.org
8382 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8383 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8384 S:      Maintained
8385 F:      drivers/pci/host/pci-exynos.c
8386
8387 PCI DRIVER FOR SYNOPSIS DESIGNWARE
8388 M:      Jingoo Han <jingoohan1@gmail.com>
8389 M:      Pratyush Anand <pratyush.anand@gmail.com>
8390 L:      linux-pci@vger.kernel.org
8391 S:      Maintained
8392 F:      drivers/pci/host/*designware*
8393
8394 PCI DRIVER FOR GENERIC OF HOSTS
8395 M:      Will Deacon <will.deacon@arm.com>
8396 L:      linux-pci@vger.kernel.org
8397 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8398 S:      Maintained
8399 F:      Documentation/devicetree/bindings/pci/host-generic-pci.txt
8400 F:      drivers/pci/host/pci-host-generic.c
8401
8402 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
8403 M:      Keith Busch <keith.busch@intel.com>
8404 L:      linux-pci@vger.kernel.org
8405 S:      Supported
8406 F:      arch/x86/pci/vmd.c
8407
8408 PCIE DRIVER FOR ST SPEAR13XX
8409 M:      Pratyush Anand <pratyush.anand@gmail.com>
8410 L:      linux-pci@vger.kernel.org
8411 S:      Maintained
8412 F:      drivers/pci/host/*spear*
8413
8414 PCI MSI DRIVER FOR ALTERA MSI IP
8415 M:      Ley Foon Tan <lftan@altera.com>
8416 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
8417 L:      linux-pci@vger.kernel.org
8418 S:      Supported
8419 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
8420 F:      drivers/pci/host/pcie-altera-msi.c
8421
8422 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
8423 M:      Duc Dang <dhdang@apm.com>
8424 L:      linux-pci@vger.kernel.org
8425 L:      linux-arm-kernel@lists.infradead.org
8426 S:      Maintained
8427 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
8428 F:      drivers/pci/host/pci-xgene-msi.c
8429
8430 PCIE DRIVER FOR HISILICON
8431 M:      Zhou Wang <wangzhou1@hisilicon.com>
8432 M:      Gabriele Paoloni <gabriele.paoloni@huawei.com>
8433 L:      linux-pci@vger.kernel.org
8434 S:      Maintained
8435 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
8436 F:      drivers/pci/host/pcie-hisi.c
8437
8438 PCIE DRIVER FOR QUALCOMM MSM
8439 M:     Stanimir Varbanov <svarbanov@mm-sol.com>
8440 L:     linux-pci@vger.kernel.org
8441 L:     linux-arm-msm@vger.kernel.org
8442 S:     Maintained
8443 F:     drivers/pci/host/*qcom*
8444
8445 PCMCIA SUBSYSTEM
8446 P:      Linux PCMCIA Team
8447 L:      linux-pcmcia@lists.infradead.org
8448 W:      http://lists.infradead.org/mailman/listinfo/linux-pcmcia
8449 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
8450 S:      Maintained
8451 F:      Documentation/pcmcia/
8452 F:      drivers/pcmcia/
8453 F:      include/pcmcia/
8454
8455 PCNET32 NETWORK DRIVER
8456 M:      Don Fry <pcnet32@frontier.com>
8457 L:      netdev@vger.kernel.org
8458 S:      Maintained
8459 F:      drivers/net/ethernet/amd/pcnet32.c
8460
8461 PCRYPT PARALLEL CRYPTO ENGINE
8462 M:      Steffen Klassert <steffen.klassert@secunet.com>
8463 L:      linux-crypto@vger.kernel.org
8464 S:      Maintained
8465 F:      crypto/pcrypt.c
8466 F:      include/crypto/pcrypt.h
8467
8468 PER-CPU MEMORY ALLOCATOR
8469 M:      Tejun Heo <tj@kernel.org>
8470 M:      Christoph Lameter <cl@linux-foundation.org>
8471 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
8472 S:      Maintained
8473 F:      include/linux/percpu*.h
8474 F:      mm/percpu*.c
8475 F:      arch/*/include/asm/percpu.h
8476
8477 PER-TASK DELAY ACCOUNTING
8478 M:      Balbir Singh <bsingharora@gmail.com>
8479 S:      Maintained
8480 F:      include/linux/delayacct.h
8481 F:      kernel/delayacct.c
8482
8483 PERFORMANCE EVENTS SUBSYSTEM
8484 M:      Peter Zijlstra <peterz@infradead.org>
8485 M:      Ingo Molnar <mingo@redhat.com>
8486 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
8487 L:      linux-kernel@vger.kernel.org
8488 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
8489 S:      Supported
8490 F:      kernel/events/*
8491 F:      include/linux/perf_event.h
8492 F:      include/uapi/linux/perf_event.h
8493 F:      arch/*/kernel/perf_event*.c
8494 F:      arch/*/kernel/*/perf_event*.c
8495 F:      arch/*/kernel/*/*/perf_event*.c
8496 F:      arch/*/include/asm/perf_event.h
8497 F:      arch/*/kernel/perf_callchain.c
8498 F:      tools/perf/
8499
8500 PERSONALITY HANDLING
8501 M:      Christoph Hellwig <hch@infradead.org>
8502 L:      linux-abi-devel@lists.sourceforge.net
8503 S:      Maintained
8504 F:      include/linux/personality.h
8505 F:      include/uapi/linux/personality.h
8506
8507 PHONET PROTOCOL
8508 M:      Remi Denis-Courmont <courmisch@gmail.com>
8509 S:      Supported
8510 F:      Documentation/networking/phonet.txt
8511 F:      include/linux/phonet.h
8512 F:      include/net/phonet/
8513 F:      include/uapi/linux/phonet.h
8514 F:      net/phonet/
8515
8516 PHRAM MTD DRIVER
8517 M:      Joern Engel <joern@lazybastard.org>
8518 L:      linux-mtd@lists.infradead.org
8519 S:      Maintained
8520 F:      drivers/mtd/devices/phram.c
8521
8522 PICOLCD HID DRIVER
8523 M:      Bruno PrĂ©mont <bonbons@linux-vserver.org>
8524 L:      linux-input@vger.kernel.org
8525 S:      Maintained
8526 F:      drivers/hid/hid-picolcd*
8527
8528 PICOXCELL SUPPORT
8529 M:      Jamie Iles <jamie@jamieiles.com>
8530 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8531 T:      git git://github.com/jamieiles/linux-2.6-ji.git
8532 S:      Supported
8533 F:      arch/arm/boot/dts/picoxcell*
8534 F:      arch/arm/mach-picoxcell/
8535 F:      drivers/crypto/picoxcell*
8536
8537 PIN CONTROL SUBSYSTEM
8538 M:      Linus Walleij <linus.walleij@linaro.org>
8539 L:      linux-gpio@vger.kernel.org
8540 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
8541 S:      Maintained
8542 F:      drivers/pinctrl/
8543 F:      include/linux/pinctrl/
8544
8545 PIN CONTROLLER - ATMEL AT91
8546 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
8547 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8548 S:      Maintained
8549 F:      drivers/pinctrl/pinctrl-at91.*
8550
8551 PIN CONTROLLER - ATMEL AT91 PIO4
8552 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
8553 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8554 L:      linux-gpio@vger.kernel.org
8555 S:      Supported
8556 F:      drivers/pinctrl/pinctrl-at91-pio4.*
8557
8558 PIN CONTROLLER - INTEL
8559 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8560 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
8561 S:      Maintained
8562 F:      drivers/pinctrl/intel/
8563
8564 PIN CONTROLLER - RENESAS
8565 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8566 M:      Geert Uytterhoeven <geert+renesas@glider.be>
8567 L:      linux-renesas-soc@vger.kernel.org
8568 S:      Maintained
8569 F:      drivers/pinctrl/sh-pfc/
8570
8571 PIN CONTROLLER - SAMSUNG
8572 M:      Tomasz Figa <tomasz.figa@gmail.com>
8573 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8574 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8575 S:      Maintained
8576 F:      drivers/pinctrl/samsung/
8577
8578 PIN CONTROLLER - SINGLE
8579 M:      Tony Lindgren <tony@atomide.com>
8580 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
8581 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8582 L:      linux-omap@vger.kernel.org
8583 S:      Maintained
8584 F:      drivers/pinctrl/pinctrl-single.c
8585
8586 PIN CONTROLLER - ST SPEAR
8587 M:      Viresh Kumar <vireshk@kernel.org>
8588 L:      spear-devel@list.st.com
8589 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8590 W:      http://www.st.com/spear
8591 S:      Maintained
8592 F:      drivers/pinctrl/spear/
8593
8594 PKTCDVD DRIVER
8595 M:      Jiri Kosina <jikos@kernel.org>
8596 S:      Maintained
8597 F:      drivers/block/pktcdvd.c
8598 F:      include/linux/pktcdvd.h
8599 F:      include/uapi/linux/pktcdvd.h
8600
8601 PKUNITY SOC DRIVERS
8602 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
8603 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
8604 S:      Maintained
8605 T:      git git://github.com/gxt/linux.git
8606 F:      drivers/input/serio/i8042-unicore32io.h
8607 F:      drivers/i2c/busses/i2c-puv3.c
8608 F:      drivers/video/fbdev/fb-puv3.c
8609 F:      drivers/rtc/rtc-puv3.c
8610
8611 PMBUS HARDWARE MONITORING DRIVERS
8612 M:      Guenter Roeck <linux@roeck-us.net>
8613 L:      lm-sensors@lm-sensors.org
8614 W:      http://www.lm-sensors.org/
8615 W:      http://www.roeck-us.net/linux/drivers/
8616 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8617 S:      Maintained
8618 F:      Documentation/hwmon/pmbus
8619 F:      drivers/hwmon/pmbus/
8620 F:      include/linux/i2c/pmbus.h
8621
8622 PMC SIERRA MaxRAID DRIVER
8623 L:      linux-scsi@vger.kernel.org
8624 W:      http://www.pmc-sierra.com/
8625 S:      Orphan
8626 F:      drivers/scsi/pmcraid.*
8627
8628 PMC SIERRA PM8001 DRIVER
8629 M:      Jack Wang <jinpu.wang@profitbricks.com>
8630 M:      lindar_liu@usish.com
8631 L:      pmchba@pmcs.com
8632 L:      linux-scsi@vger.kernel.org
8633 S:      Supported
8634 F:      drivers/scsi/pm8001/
8635
8636 POSIX CLOCKS and TIMERS
8637 M:      Thomas Gleixner <tglx@linutronix.de>
8638 L:      linux-kernel@vger.kernel.org
8639 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8640 S:      Maintained
8641 F:      fs/timerfd.c
8642 F:      include/linux/timer*
8643 F:      kernel/time/*timer*
8644
8645 POWER MANAGEMENT CORE
8646 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
8647 L:      linux-pm@vger.kernel.org
8648 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
8649 S:      Supported
8650 F:      drivers/base/power/
8651 F:      include/linux/pm.h
8652 F:      include/linux/pm_*
8653 F:      include/linux/powercap.h
8654 F:      drivers/powercap/
8655
8656 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
8657 M:      Sebastian Reichel <sre@kernel.org>
8658 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
8659 M:      David Woodhouse <dwmw2@infradead.org>
8660 L:      linux-pm@vger.kernel.org
8661 T:      git git://git.infradead.org/battery-2.6.git
8662 S:      Maintained
8663 F:      include/linux/power_supply.h
8664 F:      drivers/power/
8665 X:      drivers/power/avs/
8666
8667 POWER STATE COORDINATION INTERFACE (PSCI)
8668 M:      Mark Rutland <mark.rutland@arm.com>
8669 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
8670 L:      linux-arm-kernel@lists.infradead.org
8671 S:      Maintained
8672 F:      drivers/firmware/psci.c
8673 F:      include/linux/psci.h
8674 F:      include/uapi/linux/psci.h
8675
8676 PNP SUPPORT
8677 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
8678 S:      Maintained
8679 F:      drivers/pnp/
8680
8681 PPP PROTOCOL DRIVERS AND COMPRESSORS
8682 M:      Paul Mackerras <paulus@samba.org>
8683 L:      linux-ppp@vger.kernel.org
8684 S:      Maintained
8685 F:      drivers/net/ppp/ppp_*
8686
8687 PPP OVER ATM (RFC 2364)
8688 M:      Mitchell Blank Jr <mitch@sfgoth.com>
8689 S:      Maintained
8690 F:      net/atm/pppoatm.c
8691 F:      include/uapi/linux/atmppp.h
8692
8693 PPP OVER ETHERNET
8694 M:      Michal Ostrowski <mostrows@earthlink.net>
8695 S:      Maintained
8696 F:      drivers/net/ppp/pppoe.c
8697 F:      drivers/net/ppp/pppox.c
8698
8699 PPP OVER L2TP
8700 M:      James Chapman <jchapman@katalix.com>
8701 S:      Maintained
8702 F:      net/l2tp/l2tp_ppp.c
8703 F:      include/linux/if_pppol2tp.h
8704 F:      include/uapi/linux/if_pppol2tp.h
8705
8706 PPS SUPPORT
8707 M:      Rodolfo Giometti <giometti@enneenne.com>
8708 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
8709 L:      linuxpps@ml.enneenne.com (subscribers-only)
8710 S:      Maintained
8711 F:      Documentation/pps/
8712 F:      drivers/pps/
8713 F:      include/linux/pps*.h
8714
8715 PPTP DRIVER
8716 M:      Dmitry Kozlov <xeb@mail.ru>
8717 L:      netdev@vger.kernel.org
8718 S:      Maintained
8719 F:      drivers/net/ppp/pptp.c
8720 W:      http://sourceforge.net/projects/accel-pptp
8721
8722 PREEMPTIBLE KERNEL
8723 M:      Robert Love <rml@tech9.net>
8724 L:      kpreempt-tech@lists.sourceforge.net
8725 W:      ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
8726 S:      Supported
8727 F:      Documentation/preempt-locking.txt
8728 F:      include/linux/preempt.h
8729
8730 PRISM54 WIRELESS DRIVER
8731 M:      "Luis R. Rodriguez" <mcgrof@gmail.com>
8732 L:      linux-wireless@vger.kernel.org
8733 W:      http://wireless.kernel.org/en/users/Drivers/p54
8734 S:      Obsolete
8735 F:      drivers/net/wireless/intersil/prism54/
8736
8737 PS3 NETWORK SUPPORT
8738 M:      Geoff Levand <geoff@infradead.org>
8739 L:      netdev@vger.kernel.org
8740 L:      linuxppc-dev@lists.ozlabs.org
8741 S:      Maintained
8742 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
8743
8744 PS3 PLATFORM SUPPORT
8745 M:      Geoff Levand <geoff@infradead.org>
8746 L:      linuxppc-dev@lists.ozlabs.org
8747 S:      Maintained
8748 F:      arch/powerpc/boot/ps3*
8749 F:      arch/powerpc/include/asm/lv1call.h
8750 F:      arch/powerpc/include/asm/ps3*.h
8751 F:      arch/powerpc/platforms/ps3/
8752 F:      drivers/*/ps3*
8753 F:      drivers/ps3/
8754 F:      drivers/rtc/rtc-ps3.c
8755 F:      drivers/usb/host/*ps3.c
8756 F:      sound/ppc/snd_ps3*
8757
8758 PS3VRAM DRIVER
8759 M:      Jim Paris <jim@jtan.com>
8760 M:      Geoff Levand <geoff@infradead.org>
8761 L:      linuxppc-dev@lists.ozlabs.org
8762 S:      Maintained
8763 F:      drivers/block/ps3vram.c
8764
8765 PSTORE FILESYSTEM
8766 M:      Anton Vorontsov <anton@enomsg.org>
8767 M:      Colin Cross <ccross@android.com>
8768 M:      Kees Cook <keescook@chromium.org>
8769 M:      Tony Luck <tony.luck@intel.com>
8770 S:      Maintained
8771 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
8772 F:      fs/pstore/
8773 F:      include/linux/pstore*
8774 F:      drivers/firmware/efi/efi-pstore.c
8775 F:      drivers/acpi/apei/erst.c
8776
8777 PTP HARDWARE CLOCK SUPPORT
8778 M:      Richard Cochran <richardcochran@gmail.com>
8779 L:      netdev@vger.kernel.org
8780 S:      Maintained
8781 W:      http://linuxptp.sourceforge.net/
8782 F:      Documentation/ABI/testing/sysfs-ptp
8783 F:      Documentation/ptp/*
8784 F:      drivers/net/ethernet/freescale/gianfar_ptp.c
8785 F:      drivers/net/phy/dp83640*
8786 F:      drivers/ptp/*
8787 F:      include/linux/ptp_cl*
8788
8789 PTRACE SUPPORT
8790 M:      Roland McGrath <roland@hack.frob.com>
8791 M:      Oleg Nesterov <oleg@redhat.com>
8792 S:      Maintained
8793 F:      include/asm-generic/syscall.h
8794 F:      include/linux/ptrace.h
8795 F:      include/linux/regset.h
8796 F:      include/linux/tracehook.h
8797 F:      include/uapi/linux/ptrace.h
8798 F:      kernel/ptrace.c
8799
8800 PVRUSB2 VIDEO4LINUX DRIVER
8801 M:      Mike Isely <isely@pobox.com>
8802 L:      pvrusb2@isely.net       (subscribers-only)
8803 L:      linux-media@vger.kernel.org
8804 W:      http://www.isely.net/pvrusb2/
8805 T:      git git://linuxtv.org/media_tree.git
8806 S:      Maintained
8807 F:      Documentation/video4linux/README.pvrusb2
8808 F:      drivers/media/usb/pvrusb2/
8809
8810 PWC WEBCAM DRIVER
8811 M:      Hans de Goede <hdegoede@redhat.com>
8812 L:      linux-media@vger.kernel.org
8813 T:      git git://linuxtv.org/media_tree.git
8814 S:      Maintained
8815 F:      drivers/media/usb/pwc/*
8816
8817 PWM FAN DRIVER
8818 M:      Kamil Debski <k.debski@samsung.com>
8819 L:      lm-sensors@lm-sensors.org
8820 S:      Supported
8821 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
8822 F:      Documentation/hwmon/pwm-fan
8823 F:      drivers/hwmon/pwm-fan.c
8824
8825 PWM SUBSYSTEM
8826 M:      Thierry Reding <thierry.reding@gmail.com>
8827 L:      linux-pwm@vger.kernel.org
8828 S:      Maintained
8829 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
8830 F:      Documentation/pwm.txt
8831 F:      Documentation/devicetree/bindings/pwm/
8832 F:      include/linux/pwm.h
8833 F:      drivers/pwm/
8834 F:      drivers/video/backlight/pwm_bl.c
8835 F:      include/linux/pwm_backlight.h
8836
8837 PXA2xx/PXA3xx SUPPORT
8838 M:      Daniel Mack <daniel@zonque.org>
8839 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
8840 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8841 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8842 T:      git git://github.com/hzhuang1/linux.git
8843 T:      git git://github.com/rjarzmik/linux.git
8844 S:      Maintained
8845 F:      arch/arm/boot/dts/pxa*
8846 F:      arch/arm/mach-pxa/
8847 F:      drivers/dma/pxa*
8848 F:      drivers/pcmcia/pxa2xx*
8849 F:      drivers/pinctrl/pxa/
8850 F:      drivers/spi/spi-pxa2xx*
8851 F:      drivers/usb/gadget/udc/pxa2*
8852 F:      include/sound/pxa2xx-lib.h
8853 F:      sound/arm/pxa*
8854 F:      sound/soc/pxa/
8855
8856 PXA GPIO DRIVER
8857 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8858 L:      linux-gpio@vger.kernel.org
8859 S:      Maintained
8860 F:      drivers/gpio/gpio-pxa.c
8861
8862 PXA3xx NAND FLASH DRIVER
8863 M:      Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
8864 L:      linux-mtd@lists.infradead.org
8865 S:      Maintained
8866 F:      drivers/mtd/nand/pxa3xx_nand.c
8867
8868 MMP SUPPORT
8869 M:      Eric Miao <eric.y.miao@gmail.com>
8870 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
8871 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8872 T:      git git://github.com/hzhuang1/linux.git
8873 T:      git git://git.linaro.org/people/ycmiao/pxa-linux.git
8874 S:      Maintained
8875 F:      arch/arm/boot/dts/mmp*
8876 F:      arch/arm/mach-mmp/
8877
8878 PXA MMCI DRIVER
8879 S:      Orphan
8880
8881 PXA RTC DRIVER
8882 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8883 L:      rtc-linux@googlegroups.com
8884 S:      Maintained
8885
8886 QAT DRIVER
8887 M:      Tadeusz Struk <tadeusz.struk@intel.com>
8888 L:      qat-linux@intel.com
8889 S:      Supported
8890 F:      drivers/crypto/qat/
8891
8892 QIB DRIVER
8893 M:      Mike Marciniszyn <infinipath@intel.com>
8894 L:      linux-rdma@vger.kernel.org
8895 S:      Supported
8896 F:      drivers/infiniband/hw/qib/
8897
8898 QLOGIC QLA1280 SCSI DRIVER
8899 M:      Michael Reed <mdr@sgi.com>
8900 L:      linux-scsi@vger.kernel.org
8901 S:      Maintained
8902 F:      drivers/scsi/qla1280.[ch]
8903
8904 QLOGIC QLA2XXX FC-SCSI DRIVER
8905 M:      qla2xxx-upstream@qlogic.com
8906 L:      linux-scsi@vger.kernel.org
8907 S:      Supported
8908 F:      Documentation/scsi/LICENSE.qla2xxx
8909 F:      drivers/scsi/qla2xxx/
8910
8911 QLOGIC QLA4XXX iSCSI DRIVER
8912 M:      QLogic-Storage-Upstream@qlogic.com
8913 L:      linux-scsi@vger.kernel.org
8914 S:      Supported
8915 F:      Documentation/scsi/LICENSE.qla4xxx
8916 F:      drivers/scsi/qla4xxx/
8917
8918 QLOGIC QLA3XXX NETWORK DRIVER
8919 M:      Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
8920 M:      Ron Mercer <ron.mercer@qlogic.com>
8921 M:      linux-driver@qlogic.com
8922 L:      netdev@vger.kernel.org
8923 S:      Supported
8924 F:      Documentation/networking/LICENSE.qla3xxx
8925 F:      drivers/net/ethernet/qlogic/qla3xxx.*
8926
8927 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
8928 M:      Dept-GELinuxNICDev@qlogic.com
8929 L:      netdev@vger.kernel.org
8930 S:      Supported
8931 F:      drivers/net/ethernet/qlogic/qlcnic/
8932
8933 QLOGIC QLGE 10Gb ETHERNET DRIVER
8934 M:      Harish Patil <harish.patil@qlogic.com>
8935 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
8936 M:      Dept-GELinuxNICDev@qlogic.com
8937 M:      linux-driver@qlogic.com
8938 L:      netdev@vger.kernel.org
8939 S:      Supported
8940 F:      drivers/net/ethernet/qlogic/qlge/
8941
8942 QLOGIC QL4xxx ETHERNET DRIVER
8943 M:      Yuval Mintz <Yuval.Mintz@qlogic.com>
8944 M:      Ariel Elior <Ariel.Elior@qlogic.com>
8945 M:      everest-linux-l2@qlogic.com
8946 L:      netdev@vger.kernel.org
8947 S:      Supported
8948 F:      drivers/net/ethernet/qlogic/qed/
8949 F:      include/linux/qed/
8950 F:      drivers/net/ethernet/qlogic/qede/
8951
8952 QNX4 FILESYSTEM
8953 M:      Anders Larsen <al@alarsen.net>
8954 W:      http://www.alarsen.net/linux/qnx4fs/
8955 S:      Maintained
8956 F:      fs/qnx4/
8957 F:      include/uapi/linux/qnx4_fs.h
8958 F:      include/uapi/linux/qnxtypes.h
8959
8960 QT1010 MEDIA DRIVER
8961 M:      Antti Palosaari <crope@iki.fi>
8962 L:      linux-media@vger.kernel.org
8963 W:      https://linuxtv.org
8964 W:      http://palosaari.fi/linux/
8965 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8966 T:      git git://linuxtv.org/anttip/media_tree.git
8967 S:      Maintained
8968 F:      drivers/media/tuners/qt1010*
8969
8970 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
8971 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
8972 L:      linux-wireless@vger.kernel.org
8973 L:      ath9k-devel@lists.ath9k.org
8974 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
8975 S:      Supported
8976 F:      drivers/net/wireless/ath/ath9k/
8977
8978 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
8979 M:      Kalle Valo <kvalo@qca.qualcomm.com>
8980 L:      ath10k@lists.infradead.org
8981 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
8982 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
8983 S:      Supported
8984 F:      drivers/net/wireless/ath/ath10k/
8985
8986 QUALCOMM HEXAGON ARCHITECTURE
8987 M:      Richard Kuo <rkuo@codeaurora.org>
8988 L:      linux-hexagon@vger.kernel.org
8989 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rkuo/linux-hexagon-kernel.git
8990 S:      Supported
8991 F:      arch/hexagon/
8992
8993 QUALCOMM WCN36XX WIRELESS DRIVER
8994 M:      Eugene Krasnikov <k.eugene.e@gmail.com>
8995 L:      wcn36xx@lists.infradead.org
8996 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
8997 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
8998 S:      Supported
8999 F:      drivers/net/wireless/ath/wcn36xx/
9000
9001 RADOS BLOCK DEVICE (RBD)
9002 M:      Ilya Dryomov <idryomov@gmail.com>
9003 M:      Sage Weil <sage@redhat.com>
9004 M:      Alex Elder <elder@kernel.org>
9005 L:      ceph-devel@vger.kernel.org
9006 W:      http://ceph.com/
9007 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
9008 T:      git git://github.com/ceph/ceph-client.git
9009 S:      Supported
9010 F:      Documentation/ABI/testing/sysfs-bus-rbd
9011 F:      drivers/block/rbd.c
9012 F:      drivers/block/rbd_types.h
9013
9014 RADEON FRAMEBUFFER DISPLAY DRIVER
9015 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
9016 L:      linux-fbdev@vger.kernel.org
9017 S:      Maintained
9018 F:      drivers/video/fbdev/aty/radeon*
9019 F:      include/uapi/linux/radeonfb.h
9020
9021 RADIOSHARK RADIO DRIVER
9022 M:      Hans de Goede <hdegoede@redhat.com>
9023 L:      linux-media@vger.kernel.org
9024 T:      git git://linuxtv.org/media_tree.git
9025 S:      Maintained
9026 F:      drivers/media/radio/radio-shark.c
9027
9028 RADIOSHARK2 RADIO DRIVER
9029 M:      Hans de Goede <hdegoede@redhat.com>
9030 L:      linux-media@vger.kernel.org
9031 T:      git git://linuxtv.org/media_tree.git
9032 S:      Maintained
9033 F:      drivers/media/radio/radio-shark2.c
9034 F:      drivers/media/radio/radio-tea5777.c
9035
9036 RAGE128 FRAMEBUFFER DISPLAY DRIVER
9037 M:      Paul Mackerras <paulus@samba.org>
9038 L:      linux-fbdev@vger.kernel.org
9039 S:      Maintained
9040 F:      drivers/video/fbdev/aty/aty128fb.c
9041
9042 RALINK MIPS ARCHITECTURE
9043 M:      John Crispin <blogic@openwrt.org>
9044 L:      linux-mips@linux-mips.org
9045 S:      Maintained
9046 F:      arch/mips/ralink
9047
9048 RALINK RT2X00 WIRELESS LAN DRIVER
9049 P:      rt2x00 project
9050 M:      Stanislaw Gruszka <sgruszka@redhat.com>
9051 M:      Helmut Schaa <helmut.schaa@googlemail.com>
9052 L:      linux-wireless@vger.kernel.org
9053 S:      Maintained
9054 F:      drivers/net/wireless/ralink/rt2x00/
9055
9056 RAMDISK RAM BLOCK DEVICE DRIVER
9057 M:      Jens Axboe <axboe@kernel.dk>
9058 S:      Maintained
9059 F:      Documentation/blockdev/ramdisk.txt
9060 F:      drivers/block/brd.c
9061
9062 RANDOM NUMBER DRIVER
9063 M:      "Theodore Ts'o" <tytso@mit.edu>
9064 S:      Maintained
9065 F:      drivers/char/random.c
9066
9067 RAPIDIO SUBSYSTEM
9068 M:      Matt Porter <mporter@kernel.crashing.org>
9069 M:      Alexandre Bounine <alexandre.bounine@idt.com>
9070 S:      Maintained
9071 F:      drivers/rapidio/
9072
9073 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
9074 L:      linux-wireless@vger.kernel.org
9075 S:      Orphan
9076 F:      drivers/net/wireless/ray*
9077
9078 RCUTORTURE MODULE
9079 M:      Josh Triplett <josh@joshtriplett.org>
9080 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9081 L:      linux-kernel@vger.kernel.org
9082 S:      Supported
9083 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9084 F:      Documentation/RCU/torture.txt
9085 F:      kernel/rcu/rcutorture.c
9086
9087 RCUTORTURE TEST FRAMEWORK
9088 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9089 M:      Josh Triplett <josh@joshtriplett.org>
9090 R:      Steven Rostedt <rostedt@goodmis.org>
9091 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9092 R:      Lai Jiangshan <jiangshanlai@gmail.com>
9093 L:      linux-kernel@vger.kernel.org
9094 S:      Supported
9095 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9096 F:      tools/testing/selftests/rcutorture
9097
9098 RDC R-321X SoC
9099 M:      Florian Fainelli <florian@openwrt.org>
9100 S:      Maintained
9101
9102 RDC R6040 FAST ETHERNET DRIVER
9103 M:      Florian Fainelli <florian@openwrt.org>
9104 L:      netdev@vger.kernel.org
9105 S:      Maintained
9106 F:      drivers/net/ethernet/rdc/r6040.c
9107
9108 RDS - RELIABLE DATAGRAM SOCKETS
9109 M:      Chien Yen <chien.yen@oracle.com>
9110 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
9111 S:      Supported
9112 F:      net/rds/
9113
9114 READ-COPY UPDATE (RCU)
9115 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9116 M:      Josh Triplett <josh@joshtriplett.org>
9117 R:      Steven Rostedt <rostedt@goodmis.org>
9118 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9119 R:      Lai Jiangshan <jiangshanlai@gmail.com>
9120 L:      linux-kernel@vger.kernel.org
9121 W:      http://www.rdrop.com/users/paulmck/RCU/
9122 S:      Supported
9123 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9124 F:      Documentation/RCU/
9125 X:      Documentation/RCU/torture.txt
9126 F:      include/linux/rcu*
9127 X:      include/linux/srcu.h
9128 F:      kernel/rcu/
9129 X:      kernel/torture.c
9130
9131 REAL TIME CLOCK (RTC) SUBSYSTEM
9132 M:      Alessandro Zummo <a.zummo@towertech.it>
9133 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
9134 L:      rtc-linux@googlegroups.com
9135 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
9136 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
9137 S:      Maintained
9138 F:      Documentation/rtc.txt
9139 F:      drivers/rtc/
9140 F:      include/linux/rtc.h
9141 F:      include/uapi/linux/rtc.h
9142
9143 REALTEK AUDIO CODECS
9144 M:      Bard Liao <bardliao@realtek.com>
9145 M:      Oder Chiou <oder_chiou@realtek.com>
9146 S:      Maintained
9147 F:      sound/soc/codecs/rt*
9148 F:      include/sound/rt*.h
9149
9150 REISERFS FILE SYSTEM
9151 L:      reiserfs-devel@vger.kernel.org
9152 S:      Supported
9153 F:      fs/reiserfs/
9154
9155 REGISTER MAP ABSTRACTION
9156 M:      Mark Brown <broonie@kernel.org>
9157 L:      linux-kernel@vger.kernel.org
9158 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
9159 S:      Supported
9160 F:      drivers/base/regmap/
9161 F:      include/linux/regmap.h
9162
9163 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
9164 M:      Ohad Ben-Cohen <ohad@wizery.com>
9165 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
9166 S:      Maintained
9167 F:      drivers/remoteproc/
9168 F:      Documentation/remoteproc.txt
9169 F:      include/linux/remoteproc.h
9170
9171 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
9172 M:      Ohad Ben-Cohen <ohad@wizery.com>
9173 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
9174 S:      Maintained
9175 F:      drivers/rpmsg/
9176 F:      Documentation/rpmsg.txt
9177 F:      include/linux/rpmsg.h
9178
9179 RENESAS ETHERNET DRIVERS
9180 R:      Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
9181 L:      netdev@vger.kernel.org
9182 L:      linux-renesas-soc@vger.kernel.org
9183 F:      drivers/net/ethernet/renesas/
9184 F:      include/linux/sh_eth.h
9185
9186 RENESAS USB2 PHY DRIVER
9187 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
9188 L:      linux-renesas-soc@vger.kernel.org
9189 S:      Maintained
9190 F:      drivers/phy/phy-rcar-gen3-usb2.c
9191
9192 RESET CONTROLLER FRAMEWORK
9193 M:      Philipp Zabel <p.zabel@pengutronix.de>
9194 T:      git git://git.pengutronix.de/git/pza/linux
9195 S:      Maintained
9196 F:      drivers/reset/
9197 F:      Documentation/devicetree/bindings/reset/
9198 F:      include/dt-bindings/reset/
9199 F:      include/linux/reset.h
9200 F:      include/linux/reset-controller.h
9201
9202 RFKILL
9203 M:      Johannes Berg <johannes@sipsolutions.net>
9204 L:      linux-wireless@vger.kernel.org
9205 W:      http://wireless.kernel.org/
9206 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
9207 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
9208 S:      Maintained
9209 F:      Documentation/rfkill.txt
9210 F:      net/rfkill/
9211
9212 RHASHTABLE
9213 M:      Thomas Graf <tgraf@suug.ch>
9214 L:      netdev@vger.kernel.org
9215 S:      Maintained
9216 F:      lib/rhashtable.c
9217 F:      include/linux/rhashtable.h
9218
9219 RICOH SMARTMEDIA/XD DRIVER
9220 M:      Maxim Levitsky <maximlevitsky@gmail.com>
9221 S:      Maintained
9222 F:      drivers/mtd/nand/r852.c
9223 F:      drivers/mtd/nand/r852.h
9224
9225 RICOH R5C592 MEMORYSTICK DRIVER
9226 M:      Maxim Levitsky <maximlevitsky@gmail.com>
9227 S:      Maintained
9228 F:      drivers/memstick/host/r592.*
9229
9230 ROCCAT DRIVERS
9231 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
9232 W:      http://sourceforge.net/projects/roccat/
9233 S:      Maintained
9234 F:      drivers/hid/hid-roccat*
9235 F:      include/linux/hid-roccat*
9236 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
9237
9238 ROCKER DRIVER
9239 M:      Jiri Pirko <jiri@resnulli.us>
9240 M:      Scott Feldman <sfeldma@gmail.com>
9241 L:      netdev@vger.kernel.org
9242 S:      Supported
9243 F:      drivers/net/ethernet/rocker/
9244
9245 ROCKETPORT DRIVER
9246 P:      Comtrol Corp.
9247 W:      http://www.comtrol.com
9248 S:      Maintained
9249 F:      Documentation/serial/rocket.txt
9250 F:      drivers/tty/rocket*
9251
9252 ROCKETPORT EXPRESS/INFINITY DRIVER
9253 M:      Kevin Cernekee <cernekee@gmail.com>
9254 L:      linux-serial@vger.kernel.org
9255 S:      Odd Fixes
9256 F:      drivers/tty/serial/rp2.*
9257
9258 ROSE NETWORK LAYER
9259 M:      Ralf Baechle <ralf@linux-mips.org>
9260 L:      linux-hams@vger.kernel.org
9261 W:      http://www.linux-ax25.org/
9262 S:      Maintained
9263 F:      include/net/rose.h
9264 F:      include/uapi/linux/rose.h
9265 F:      net/rose/
9266
9267 RTL2830 MEDIA DRIVER
9268 M:      Antti Palosaari <crope@iki.fi>
9269 L:      linux-media@vger.kernel.org
9270 W:      https://linuxtv.org
9271 W:      http://palosaari.fi/linux/
9272 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9273 T:      git git://linuxtv.org/anttip/media_tree.git
9274 S:      Maintained
9275 F:      drivers/media/dvb-frontends/rtl2830*
9276
9277 RTL2832 MEDIA DRIVER
9278 M:      Antti Palosaari <crope@iki.fi>
9279 L:      linux-media@vger.kernel.org
9280 W:      https://linuxtv.org
9281 W:      http://palosaari.fi/linux/
9282 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9283 T:      git git://linuxtv.org/anttip/media_tree.git
9284 S:      Maintained
9285 F:      drivers/media/dvb-frontends/rtl2832*
9286
9287 RTL2832_SDR MEDIA DRIVER
9288 M:      Antti Palosaari <crope@iki.fi>
9289 L:      linux-media@vger.kernel.org
9290 W:      https://linuxtv.org
9291 W:      http://palosaari.fi/linux/
9292 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9293 T:      git git://linuxtv.org/anttip/media_tree.git
9294 S:      Maintained
9295 F:      drivers/media/dvb-frontends/rtl2832_sdr*
9296
9297 RTL8180 WIRELESS DRIVER
9298 L:      linux-wireless@vger.kernel.org
9299 W:      http://wireless.kernel.org/
9300 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9301 S:      Orphan
9302 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
9303
9304 RTL8187 WIRELESS DRIVER
9305 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
9306 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
9307 M:      Larry Finger <Larry.Finger@lwfinger.net>
9308 L:      linux-wireless@vger.kernel.org
9309 W:      http://wireless.kernel.org/
9310 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9311 S:      Maintained
9312 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
9313
9314 RTL8192CE WIRELESS DRIVER
9315 M:      Larry Finger <Larry.Finger@lwfinger.net>
9316 M:      Chaoming Li <chaoming_li@realsil.com.cn>
9317 L:      linux-wireless@vger.kernel.org
9318 W:      http://wireless.kernel.org/
9319 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9320 S:      Maintained
9321 F:      drivers/net/wireless/realtek/rtlwifi/
9322 F:      drivers/net/wireless/realtek/rtlwifi/rtl8192ce/
9323
9324 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
9325 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
9326 L:      linux-wireless@vger.kernel.org
9327 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8723au-mac80211
9328 S:      Maintained
9329 F:      drivers/net/wireless/realtek/rtl8xxxu/
9330
9331 S3 SAVAGE FRAMEBUFFER DRIVER
9332 M:      Antonino Daplas <adaplas@gmail.com>
9333 L:      linux-fbdev@vger.kernel.org
9334 S:      Maintained
9335 F:      drivers/video/fbdev/savage/
9336
9337 S390
9338 M:      Martin Schwidefsky <schwidefsky@de.ibm.com>
9339 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
9340 L:      linux-s390@vger.kernel.org
9341 W:      http://www.ibm.com/developerworks/linux/linux390/
9342 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
9343 S:      Supported
9344 F:      arch/s390/
9345 F:      drivers/s390/
9346 F:      Documentation/s390/
9347 F:      Documentation/DocBook/s390*
9348
9349 S390 COMMON I/O LAYER
9350 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
9351 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
9352 L:      linux-s390@vger.kernel.org
9353 W:      http://www.ibm.com/developerworks/linux/linux390/
9354 S:      Supported
9355 F:      drivers/s390/cio/
9356
9357 S390 DASD DRIVER
9358 M:      Stefan Weinhuber <wein@de.ibm.com>
9359 M:      Stefan Haberland <stefan.haberland@de.ibm.com>
9360 L:      linux-s390@vger.kernel.org
9361 W:      http://www.ibm.com/developerworks/linux/linux390/
9362 S:      Supported
9363 F:      drivers/s390/block/dasd*
9364 F:      block/partitions/ibm.c
9365
9366 S390 NETWORK DRIVERS
9367 M:      Ursula Braun <ubraun@linux.vnet.ibm.com>
9368 L:      linux-s390@vger.kernel.org
9369 W:      http://www.ibm.com/developerworks/linux/linux390/
9370 S:      Supported
9371 F:      drivers/s390/net/
9372
9373 S390 PCI SUBSYSTEM
9374 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
9375 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
9376 L:      linux-s390@vger.kernel.org
9377 W:      http://www.ibm.com/developerworks/linux/linux390/
9378 S:      Supported
9379 F:      arch/s390/pci/
9380 F:      drivers/pci/hotplug/s390_pci_hpc.c
9381
9382 S390 ZCRYPT DRIVER
9383 M:      Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
9384 L:      linux-s390@vger.kernel.org
9385 W:      http://www.ibm.com/developerworks/linux/linux390/
9386 S:      Supported
9387 F:      drivers/s390/crypto/
9388
9389 S390 ZFCP DRIVER
9390 M:      Steffen Maier <maier@linux.vnet.ibm.com>
9391 L:      linux-s390@vger.kernel.org
9392 W:      http://www.ibm.com/developerworks/linux/linux390/
9393 S:      Supported
9394 F:      drivers/s390/scsi/zfcp_*
9395
9396 S390 IUCV NETWORK LAYER
9397 M:      Ursula Braun <ubraun@linux.vnet.ibm.com>
9398 L:      linux-s390@vger.kernel.org
9399 W:      http://www.ibm.com/developerworks/linux/linux390/
9400 S:      Supported
9401 F:      drivers/s390/net/*iucv*
9402 F:      include/net/iucv/
9403 F:      net/iucv/
9404
9405 S390 IOMMU (PCI)
9406 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
9407 L:      linux-s390@vger.kernel.org
9408 W:      http://www.ibm.com/developerworks/linux/linux390/
9409 S:      Supported
9410 F:      drivers/iommu/s390-iommu.c
9411
9412 S3C24XX SD/MMC Driver
9413 M:      Ben Dooks <ben-linux@fluff.org>
9414 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9415 S:      Supported
9416 F:      drivers/mmc/host/s3cmci.*
9417
9418 SAA6588 RDS RECEIVER DRIVER
9419 M:      Hans Verkuil <hverkuil@xs4all.nl>
9420 L:      linux-media@vger.kernel.org
9421 T:      git git://linuxtv.org/media_tree.git
9422 W:      https://linuxtv.org
9423 S:      Odd Fixes
9424 F:      drivers/media/i2c/saa6588*
9425
9426 SAA7134 VIDEO4LINUX DRIVER
9427 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9428 L:      linux-media@vger.kernel.org
9429 W:      https://linuxtv.org
9430 T:      git git://linuxtv.org/media_tree.git
9431 S:      Odd fixes
9432 F:      Documentation/video4linux/*.saa7134
9433 F:      drivers/media/pci/saa7134/
9434
9435 SAA7146 VIDEO4LINUX-2 DRIVER
9436 M:      Hans Verkuil <hverkuil@xs4all.nl>
9437 L:      linux-media@vger.kernel.org
9438 T:      git git://linuxtv.org/media_tree.git
9439 S:      Maintained
9440 F:      drivers/media/common/saa7146/
9441 F:      drivers/media/pci/saa7146/
9442 F:      include/media/saa7146*
9443
9444 SAMSUNG LAPTOP DRIVER
9445 M:      Corentin Chary <corentin.chary@gmail.com>
9446 L:      platform-driver-x86@vger.kernel.org
9447 S:      Maintained
9448 F:      drivers/platform/x86/samsung-laptop.c
9449
9450 SAMSUNG AUDIO (ASoC) DRIVERS
9451 M:      Sangbeom Kim <sbkim73@samsung.com>
9452 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9453 S:      Supported
9454 F:      sound/soc/samsung/
9455
9456 SAMSUNG FRAMEBUFFER DRIVER
9457 M:      Jingoo Han <jingoohan1@gmail.com>
9458 L:      linux-fbdev@vger.kernel.org
9459 S:      Maintained
9460 F:      drivers/video/fbdev/s3c-fb.c
9461
9462 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
9463 M:      Sangbeom Kim <sbkim73@samsung.com>
9464 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
9465 L:      linux-kernel@vger.kernel.org
9466 L:      linux-samsung-soc@vger.kernel.org
9467 S:      Supported
9468 F:      drivers/mfd/sec*.c
9469 F:      drivers/regulator/s2m*.c
9470 F:      drivers/regulator/s5m*.c
9471 F:      drivers/clk/clk-s2mps11.c
9472 F:      drivers/rtc/rtc-s5m.c
9473 F:      include/linux/mfd/samsung/
9474 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
9475 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
9476 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
9477 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
9478
9479 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
9480 M:      Kyungmin Park <kyungmin.park@samsung.com>
9481 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
9482 L:      linux-media@vger.kernel.org
9483 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
9484 S:      Supported
9485 F:      drivers/media/platform/exynos4-is/
9486
9487 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
9488 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
9489 L:      linux-media@vger.kernel.org
9490 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9491 S:      Maintained
9492 F:      drivers/media/platform/s3c-camif/
9493 F:      include/media/drv-intf/s3c_camif.h
9494
9495 SAMSUNG S5C73M3 CAMERA DRIVER
9496 M:      Kyungmin Park <kyungmin.park@samsung.com>
9497 M:      Andrzej Hajda <a.hajda@samsung.com>
9498 L:      linux-media@vger.kernel.org
9499 S:      Supported
9500 F:      drivers/media/i2c/s5c73m3/*
9501
9502 SAMSUNG S5K5BAF CAMERA DRIVER
9503 M:      Kyungmin Park <kyungmin.park@samsung.com>
9504 M:      Andrzej Hajda <a.hajda@samsung.com>
9505 L:      linux-media@vger.kernel.org
9506 S:      Supported
9507 F:      drivers/media/i2c/s5k5baf.c
9508
9509 SAMSUNG S3FWRN5 NFC DRIVER
9510 M:      Robert Baldyga <r.baldyga@samsung.com>
9511 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
9512 S:      Supported
9513 F:      drivers/nfc/s3fwrn5
9514
9515 SAMSUNG SOC CLOCK DRIVERS
9516 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
9517 M:      Tomasz Figa <tomasz.figa@gmail.com>
9518 S:      Supported
9519 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9520 F:      drivers/clk/samsung/
9521
9522 SAMSUNG SXGBE DRIVERS
9523 M:      Byungho An <bh74.an@samsung.com>
9524 M:      Girish K S <ks.giri@samsung.com>
9525 M:      Vipul Pandya <vipul.pandya@samsung.com>
9526 S:      Supported
9527 L:      netdev@vger.kernel.org
9528 F:      drivers/net/ethernet/samsung/sxgbe/
9529
9530 SAMSUNG THERMAL DRIVER
9531 M:      Lukasz Majewski <l.majewski@samsung.com>
9532 L:      linux-pm@vger.kernel.org
9533 L:      linux-samsung-soc@vger.kernel.org
9534 S:      Supported
9535 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
9536 F:      drivers/thermal/samsung/
9537
9538 SAMSUNG USB2 PHY DRIVER
9539 M:      Kamil Debski <k.debski@samsung.com>
9540 L:      linux-kernel@vger.kernel.org
9541 S:      Supported
9542 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
9543 F:      Documentation/phy/samsung-usb2.txt
9544 F:      drivers/phy/phy-exynos4210-usb2.c
9545 F:      drivers/phy/phy-exynos4x12-usb2.c
9546 F:      drivers/phy/phy-exynos5250-usb2.c
9547 F:      drivers/phy/phy-s5pv210-usb2.c
9548 F:      drivers/phy/phy-samsung-usb2.c
9549 F:      drivers/phy/phy-samsung-usb2.h
9550
9551 SERIAL DRIVERS
9552 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9553 L:      linux-serial@vger.kernel.org
9554 S:      Maintained
9555 F:      drivers/tty/serial/
9556
9557 SYNOPSYS DESIGNWARE DMAC DRIVER
9558 M:      Viresh Kumar <vireshk@kernel.org>
9559 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9560 S:      Maintained
9561 F:      include/linux/dma/dw.h
9562 F:      include/linux/platform_data/dma-dw.h
9563 F:      drivers/dma/dw/
9564
9565 SYNOPSYS DESIGNWARE ETHERNET QOS 4.10a driver
9566 M: Lars Persson <lars.persson@axis.com>
9567 L: netdev@vger.kernel.org
9568 S: Supported
9569 F: Documentation/devicetree/bindings/net/snps,dwc-qos-ethernet.txt
9570 F: drivers/net/ethernet/synopsys/dwc_eth_qos.c
9571
9572 SYNOPSYS DESIGNWARE I2C DRIVER
9573 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9574 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
9575 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9576 L:      linux-i2c@vger.kernel.org
9577 S:      Maintained
9578 F:      drivers/i2c/busses/i2c-designware-*
9579 F:      include/linux/platform_data/i2c-designware.h
9580
9581 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
9582 M:      Jaehoon Chung <jh80.chung@samsung.com>
9583 L:      linux-mmc@vger.kernel.org
9584 S:      Maintained
9585 F:      include/linux/mmc/dw_mmc.h
9586 F:      drivers/mmc/host/dw_mmc*
9587
9588 SYSTEM TRACE MODULE CLASS
9589 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
9590 S:      Maintained
9591 F:      Documentation/trace/stm.txt
9592 F:      drivers/hwtracing/stm/
9593 F:      include/linux/stm.h
9594 F:      include/uapi/linux/stm.h
9595
9596 THUNDERBOLT DRIVER
9597 M:      Andreas Noever <andreas.noever@gmail.com>
9598 S:      Maintained
9599 F:      drivers/thunderbolt/
9600
9601 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
9602 M:      John Stultz <john.stultz@linaro.org>
9603 M:      Thomas Gleixner <tglx@linutronix.de>
9604 L:      linux-kernel@vger.kernel.org
9605 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
9606 S:      Supported
9607 F:      include/linux/clocksource.h
9608 F:      include/linux/time.h
9609 F:      include/linux/timex.h
9610 F:      include/uapi/linux/time.h
9611 F:      include/uapi/linux/timex.h
9612 F:      kernel/time/clocksource.c
9613 F:      kernel/time/time*.c
9614 F:      kernel/time/alarmtimer.c
9615 F:      kernel/time/ntp.c
9616 F:      tools/testing/selftests/timers/
9617
9618 SC1200 WDT DRIVER
9619 M:      Zwane Mwaikambo <zwanem@gmail.com>
9620 S:      Maintained
9621 F:      drivers/watchdog/sc1200wdt.c
9622
9623 SCHEDULER
9624 M:      Ingo Molnar <mingo@redhat.com>
9625 M:      Peter Zijlstra <peterz@infradead.org>
9626 L:      linux-kernel@vger.kernel.org
9627 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
9628 S:      Maintained
9629 F:      kernel/sched/
9630 F:      include/linux/sched.h
9631 F:      include/uapi/linux/sched.h
9632 F:      include/linux/wait.h
9633
9634 SCORE ARCHITECTURE
9635 M:      Chen Liqin <liqin.linux@gmail.com>
9636 M:      Lennox Wu <lennox.wu@gmail.com>
9637 W:      http://www.sunplus.com
9638 S:      Supported
9639 F:      arch/score/
9640
9641 SYSTEM CONTROL & POWER INTERFACE (SCPI) Message Protocol drivers
9642 M:      Sudeep Holla <sudeep.holla@arm.com>
9643 L:      linux-arm-kernel@lists.infradead.org
9644 S:      Maintained
9645 F:      Documentation/devicetree/bindings/arm/arm,scpi.txt
9646 F:      drivers/clk/clk-scpi.c
9647 F:      drivers/cpufreq/scpi-cpufreq.c
9648 F:      drivers/firmware/arm_scpi.c
9649 F:      include/linux/scpi_protocol.h
9650
9651 SCSI CDROM DRIVER
9652 M:      Jens Axboe <axboe@kernel.dk>
9653 L:      linux-scsi@vger.kernel.org
9654 W:      http://www.kernel.dk
9655 S:      Maintained
9656 F:      drivers/scsi/sr*
9657
9658 SCSI RDMA PROTOCOL (SRP) INITIATOR
9659 M:      Bart Van Assche <bart.vanassche@sandisk.com>
9660 L:      linux-rdma@vger.kernel.org
9661 S:      Supported
9662 W:      http://www.openfabrics.org
9663 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9664 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
9665 F:      drivers/infiniband/ulp/srp/
9666 F:      include/scsi/srp.h
9667
9668 SCSI SG DRIVER
9669 M:      Doug Gilbert <dgilbert@interlog.com>
9670 L:      linux-scsi@vger.kernel.org
9671 W:      http://sg.danny.cz/sg
9672 S:      Maintained
9673 F:      Documentation/scsi/scsi-generic.txt
9674 F:      drivers/scsi/sg.c
9675 F:      include/scsi/sg.h
9676
9677 SCSI SUBSYSTEM
9678 M:      "James E.J. Bottomley" <JBottomley@odin.com>
9679 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
9680 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
9681 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
9682 L:      linux-scsi@vger.kernel.org
9683 S:      Maintained
9684 F:      drivers/scsi/
9685 F:      include/scsi/
9686
9687 SCSI TAPE DRIVER
9688 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
9689 L:      linux-scsi@vger.kernel.org
9690 S:      Maintained
9691 F:      Documentation/scsi/st.txt
9692 F:      drivers/scsi/st.*
9693 F:      drivers/scsi/st_*.h
9694
9695 SCTP PROTOCOL
9696 M:      Vlad Yasevich <vyasevich@gmail.com>
9697 M:      Neil Horman <nhorman@tuxdriver.com>
9698 L:      linux-sctp@vger.kernel.org
9699 W:      http://lksctp.sourceforge.net
9700 S:      Maintained
9701 F:      Documentation/networking/sctp.txt
9702 F:      include/linux/sctp.h
9703 F:      include/uapi/linux/sctp.h
9704 F:      include/net/sctp/
9705 F:      net/sctp/
9706
9707 SCx200 CPU SUPPORT
9708 M:      Jim Cromie <jim.cromie@gmail.com>
9709 S:      Odd Fixes
9710 F:      Documentation/i2c/busses/scx200_acb
9711 F:      arch/x86/platform/scx200/
9712 F:      drivers/watchdog/scx200_wdt.c
9713 F:      drivers/i2c/busses/scx200*
9714 F:      drivers/mtd/maps/scx200_docflash.c
9715 F:      include/linux/scx200.h
9716
9717 SCx200 GPIO DRIVER
9718 M:      Jim Cromie <jim.cromie@gmail.com>
9719 S:      Maintained
9720 F:      drivers/char/scx200_gpio.c
9721 F:      include/linux/scx200_gpio.h
9722
9723 SCx200 HRT CLOCKSOURCE DRIVER
9724 M:      Jim Cromie <jim.cromie@gmail.com>
9725 S:      Maintained
9726 F:      drivers/clocksource/scx200_hrt.c
9727
9728 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
9729 M:      Sascha Sommer <saschasommer@freenet.de>
9730 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
9731 S:      Maintained
9732 F:      drivers/mmc/host/sdricoh_cs.c
9733
9734 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
9735 L:      linux-mmc@vger.kernel.org
9736 S:      Orphan
9737 F:      drivers/mmc/host/sdhci.*
9738 F:      drivers/mmc/host/sdhci-pltfm.[ch]
9739
9740 SECURE COMPUTING
9741 M:      Kees Cook <keescook@chromium.org>
9742 R:      Andy Lutomirski <luto@amacapital.net>
9743 R:      Will Drewry <wad@chromium.org>
9744 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
9745 S:      Supported
9746 F:      kernel/seccomp.c
9747 F:      include/uapi/linux/seccomp.h
9748 F:      include/linux/seccomp.h
9749 F:      tools/testing/selftests/seccomp/*
9750 K:      \bsecure_computing
9751 K:      \bTIF_SECCOMP\b
9752
9753 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
9754 M:      Ben Dooks <ben-linux@fluff.org>
9755 M:      Jaehoon Chung <jh80.chung@samsung.com>
9756 L:      linux-mmc@vger.kernel.org
9757 S:      Maintained
9758 F:      drivers/mmc/host/sdhci-s3c*
9759
9760 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
9761 M:      Viresh Kumar <vireshk@kernel.org>
9762 L:      spear-devel@list.st.com
9763 L:      linux-mmc@vger.kernel.org
9764 S:      Maintained
9765 F:      drivers/mmc/host/sdhci-spear.c
9766
9767 SECURITY SUBSYSTEM
9768 M:      James Morris <james.l.morris@oracle.com>
9769 M:      "Serge E. Hallyn" <serge@hallyn.com>
9770 L:      linux-security-module@vger.kernel.org (suggested Cc:)
9771 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
9772 W:      http://kernsec.org/
9773 S:      Supported
9774 F:      security/
9775
9776 SECURITY CONTACT
9777 M:      Security Officers <security@kernel.org>
9778 S:      Supported
9779
9780 SELINUX SECURITY MODULE
9781 M:      Paul Moore <paul@paul-moore.com>
9782 M:      Stephen Smalley <sds@tycho.nsa.gov>
9783 M:      Eric Paris <eparis@parisplace.org>
9784 L:      selinux@tycho.nsa.gov (moderated for non-subscribers)
9785 W:      http://selinuxproject.org
9786 T:      git git://git.infradead.org/users/pcmoore/selinux
9787 S:      Supported
9788 F:      include/linux/selinux*
9789 F:      security/selinux/
9790 F:      scripts/selinux/
9791
9792 APPARMOR SECURITY MODULE
9793 M:      John Johansen <john.johansen@canonical.com>
9794 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
9795 W:      apparmor.wiki.kernel.org
9796 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
9797 S:      Supported
9798 F:      security/apparmor/
9799
9800 YAMA SECURITY MODULE
9801 M:      Kees Cook <keescook@chromium.org>
9802 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
9803 S:      Supported
9804 F:      security/yama/
9805
9806 SENSABLE PHANTOM
9807 M:      Jiri Slaby <jirislaby@gmail.com>
9808 S:      Maintained
9809 F:      drivers/misc/phantom.c
9810 F:      include/uapi/linux/phantom.h
9811
9812 SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
9813 M:      Jayamohan Kallickal <jayamohan.kallickal@avagotech.com>
9814 M:      Ketan Mukadam <ketan.mukadam@avagotech.com>
9815 M:      John Soni Jose <sony.john@avagotech.com>
9816 L:      linux-scsi@vger.kernel.org
9817 W:      http://www.avagotech.com
9818 S:      Supported
9819 F:      drivers/scsi/be2iscsi/
9820
9821 Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER
9822 M:      Sathya Perla <sathya.perla@broadcom.com>
9823 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
9824 M:      Padmanabh Ratnakar <padmanabh.ratnakar@broadcom.com>
9825 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
9826 M:      Somnath Kotur <somnath.kotur@broadcom.com>
9827 L:      netdev@vger.kernel.org
9828 W:      http://www.emulex.com
9829 S:      Supported
9830 F:      drivers/net/ethernet/emulex/benet/
9831
9832 EMULEX ONECONNECT ROCE DRIVER
9833 M:      Selvin Xavier <selvin.xavier@avagotech.com>
9834 M:      Devesh Sharma <devesh.sharma@avagotech.com>
9835 M:      Mitesh Ahuja <mitesh.ahuja@avagotech.com>
9836 L:      linux-rdma@vger.kernel.org
9837 W:      http://www.emulex.com
9838 S:      Supported
9839 F:      drivers/infiniband/hw/ocrdma/
9840
9841 SFC NETWORK DRIVER
9842 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
9843 M:      Shradha Shah <sshah@solarflare.com>
9844 L:      netdev@vger.kernel.org
9845 S:      Supported
9846 F:      drivers/net/ethernet/sfc/
9847
9848 SGI GRU DRIVER
9849 M:      Dimitri Sivanich <sivanich@sgi.com>
9850 S:      Maintained
9851 F:      drivers/misc/sgi-gru/
9852
9853 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
9854 M:      Pat Gefre <pfg@sgi.com>
9855 L:      linux-ia64@vger.kernel.org
9856 S:      Supported
9857 F:      Documentation/ia64/serial.txt
9858 F:      drivers/tty/serial/ioc?_serial.c
9859 F:      include/linux/ioc?.h
9860
9861 SGI XP/XPC/XPNET DRIVER
9862 M:      Cliff Whickman <cpw@sgi.com>
9863 M:      Robin Holt <robinmholt@gmail.com>
9864 S:      Maintained
9865 F:      drivers/misc/sgi-xp/
9866
9867 SI2157 MEDIA DRIVER
9868 M:      Antti Palosaari <crope@iki.fi>
9869 L:      linux-media@vger.kernel.org
9870 W:      https://linuxtv.org
9871 W:      http://palosaari.fi/linux/
9872 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9873 T:      git git://linuxtv.org/anttip/media_tree.git
9874 S:      Maintained
9875 F:      drivers/media/tuners/si2157*
9876
9877 SI2168 MEDIA DRIVER
9878 M:      Antti Palosaari <crope@iki.fi>
9879 L:      linux-media@vger.kernel.org
9880 W:      https://linuxtv.org
9881 W:      http://palosaari.fi/linux/
9882 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9883 T:      git git://linuxtv.org/anttip/media_tree.git
9884 S:      Maintained
9885 F:      drivers/media/dvb-frontends/si2168*
9886
9887 SI470X FM RADIO RECEIVER I2C DRIVER
9888 M:      Hans Verkuil <hverkuil@xs4all.nl>
9889 L:      linux-media@vger.kernel.org
9890 T:      git git://linuxtv.org/media_tree.git
9891 W:      https://linuxtv.org
9892 S:      Odd Fixes
9893 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
9894
9895 SI470X FM RADIO RECEIVER USB DRIVER
9896 M:      Hans Verkuil <hverkuil@xs4all.nl>
9897 L:      linux-media@vger.kernel.org
9898 T:      git git://linuxtv.org/media_tree.git
9899 W:      https://linuxtv.org
9900 S:      Maintained
9901 F:      drivers/media/radio/si470x/radio-si470x-common.c
9902 F:      drivers/media/radio/si470x/radio-si470x.h
9903 F:      drivers/media/radio/si470x/radio-si470x-usb.c
9904
9905 SI4713 FM RADIO TRANSMITTER I2C DRIVER
9906 M:      Eduardo Valentin <edubezval@gmail.com>
9907 L:      linux-media@vger.kernel.org
9908 T:      git git://linuxtv.org/media_tree.git
9909 W:      https://linuxtv.org
9910 S:      Odd Fixes
9911 F:      drivers/media/radio/si4713/si4713.?
9912
9913 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
9914 M:      Eduardo Valentin <edubezval@gmail.com>
9915 L:      linux-media@vger.kernel.org
9916 T:      git git://linuxtv.org/media_tree.git
9917 W:      https://linuxtv.org
9918 S:      Odd Fixes
9919 F:      drivers/media/radio/si4713/radio-platform-si4713.c
9920
9921 SI4713 FM RADIO TRANSMITTER USB DRIVER
9922 M:      Hans Verkuil <hverkuil@xs4all.nl>
9923 L:      linux-media@vger.kernel.org
9924 T:      git git://linuxtv.org/media_tree.git
9925 W:      https://linuxtv.org
9926 S:      Maintained
9927 F:      drivers/media/radio/si4713/radio-usb-si4713.c
9928
9929 SIANO DVB DRIVER
9930 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9931 L:      linux-media@vger.kernel.org
9932 W:      https://linuxtv.org
9933 T:      git git://linuxtv.org/media_tree.git
9934 S:      Odd fixes
9935 F:      drivers/media/common/siano/
9936 F:      drivers/media/usb/siano/
9937 F:      drivers/media/usb/siano/
9938 F:      drivers/media/mmc/siano/
9939
9940 SIMPLEFB FB DRIVER
9941 M:      Hans de Goede <hdegoede@redhat.com>
9942 L:      linux-fbdev@vger.kernel.org
9943 S:      Maintained
9944 F:      Documentation/devicetree/bindings/display/simple-framebuffer.txt
9945 F:      drivers/video/fbdev/simplefb.c
9946 F:      include/linux/platform_data/simplefb.h
9947
9948 SH_VEU V4L2 MEM2MEM DRIVER
9949 L:      linux-media@vger.kernel.org
9950 S:      Orphan
9951 F:      drivers/media/platform/sh_veu.c
9952
9953 SH_VOU V4L2 OUTPUT DRIVER
9954 L:      linux-media@vger.kernel.org
9955 S:      Orphan
9956 F:      drivers/media/platform/sh_vou.c
9957 F:      include/media/drv-intf/sh_vou.h
9958
9959 SIMPLE FIRMWARE INTERFACE (SFI)
9960 M:      Len Brown <lenb@kernel.org>
9961 L:      sfi-devel@simplefirmware.org
9962 W:      http://simplefirmware.org/
9963 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
9964 S:      Supported
9965 F:      arch/x86/platform/sfi/
9966 F:      drivers/sfi/
9967 F:      include/linux/sfi*.h
9968
9969 SIMTEC EB110ATX (Chalice CATS)
9970 P:      Ben Dooks
9971 P:      Vincent Sanders <vince@simtec.co.uk>
9972 M:      Simtec Linux Team <linux@simtec.co.uk>
9973 W:      http://www.simtec.co.uk/products/EB110ATX/
9974 S:      Supported
9975
9976 SIMTEC EB2410ITX (BAST)
9977 P:      Ben Dooks
9978 P:      Vincent Sanders <vince@simtec.co.uk>
9979 M:      Simtec Linux Team <linux@simtec.co.uk>
9980 W:      http://www.simtec.co.uk/products/EB2410ITX/
9981 S:      Supported
9982 F:      arch/arm/mach-s3c24xx/mach-bast.c
9983 F:      arch/arm/mach-s3c24xx/bast-ide.c
9984 F:      arch/arm/mach-s3c24xx/bast-irq.c
9985
9986 TI DAVINCI MACHINE SUPPORT
9987 M:      Sekhar Nori <nsekhar@ti.com>
9988 M:      Kevin Hilman <khilman@deeprootsystems.com>
9989 T:      git git://gitorious.org/linux-davinci/linux-davinci.git
9990 Q:      http://patchwork.kernel.org/project/linux-davinci/list/
9991 S:      Supported
9992 F:      arch/arm/mach-davinci/
9993 F:      drivers/i2c/busses/i2c-davinci.c
9994
9995 TI DAVINCI SERIES MEDIA DRIVER
9996 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9997 L:      linux-media@vger.kernel.org
9998 W:      https://linuxtv.org
9999 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10000 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
10001 S:      Maintained
10002 F:      drivers/media/platform/davinci/
10003 F:      include/media/davinci/
10004
10005 TI AM437X VPFE DRIVER
10006 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
10007 L:      linux-media@vger.kernel.org
10008 W:      https://linuxtv.org
10009 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10010 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
10011 S:      Maintained
10012 F:      drivers/media/platform/am437x/
10013
10014 OV2659 OMNIVISION SENSOR DRIVER
10015 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
10016 L:      linux-media@vger.kernel.org
10017 W:      https://linuxtv.org
10018 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10019 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
10020 S:      Maintained
10021 F:      drivers/media/i2c/ov2659.c
10022 F:      include/media/i2c/ov2659.h
10023
10024 SILICON MOTION SM712 FRAME BUFFER DRIVER
10025 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
10026 M:      Teddy Wang <teddy.wang@siliconmotion.com>
10027 M:      Sudip Mukherjee <sudip@vectorindia.org>
10028 L:      linux-fbdev@vger.kernel.org
10029 S:      Maintained
10030 F:      drivers/video/fbdev/sm712*
10031 F:      Documentation/fb/sm712fb.txt
10032
10033 SIS 190 ETHERNET DRIVER
10034 M:      Francois Romieu <romieu@fr.zoreil.com>
10035 L:      netdev@vger.kernel.org
10036 S:      Maintained
10037 F:      drivers/net/ethernet/sis/sis190.c
10038
10039 SIS 900/7016 FAST ETHERNET DRIVER
10040 M:      Daniele Venzano <venza@brownhat.org>
10041 W:      http://www.brownhat.org/sis900.html
10042 L:      netdev@vger.kernel.org
10043 S:      Maintained
10044 F:      drivers/net/ethernet/sis/sis900.*
10045
10046 SIS FRAMEBUFFER DRIVER
10047 M:      Thomas Winischhofer <thomas@winischhofer.net>
10048 W:      http://www.winischhofer.net/linuxsisvga.shtml
10049 S:      Maintained
10050 F:      Documentation/fb/sisfb.txt
10051 F:      drivers/video/fbdev/sis/
10052 F:      include/video/sisfb.h
10053
10054 SIS USB2VGA DRIVER
10055 M:      Thomas Winischhofer <thomas@winischhofer.net>
10056 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
10057 S:      Maintained
10058 F:      drivers/usb/misc/sisusbvga/
10059
10060 SLAB ALLOCATOR
10061 M:      Christoph Lameter <cl@linux.com>
10062 M:      Pekka Enberg <penberg@kernel.org>
10063 M:      David Rientjes <rientjes@google.com>
10064 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
10065 M:      Andrew Morton <akpm@linux-foundation.org>
10066 L:      linux-mm@kvack.org
10067 S:      Maintained
10068 F:      include/linux/sl?b*.h
10069 F:      mm/sl?b*
10070
10071 SLEEPABLE READ-COPY UPDATE (SRCU)
10072 M:      Lai Jiangshan <jiangshanlai@gmail.com>
10073 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
10074 M:      Josh Triplett <josh@joshtriplett.org>
10075 R:      Steven Rostedt <rostedt@goodmis.org>
10076 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
10077 L:      linux-kernel@vger.kernel.org
10078 W:      http://www.rdrop.com/users/paulmck/RCU/
10079 S:      Supported
10080 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
10081 F:      include/linux/srcu.h
10082 F:      kernel/rcu/srcu.c
10083
10084 SMACK SECURITY MODULE
10085 M:      Casey Schaufler <casey@schaufler-ca.com>
10086 L:      linux-security-module@vger.kernel.org
10087 W:      http://schaufler-ca.com
10088 T:      git git://git.gitorious.org/smack-next/kernel.git
10089 S:      Maintained
10090 F:      Documentation/security/Smack.txt
10091 F:      security/smack/
10092
10093 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
10094 M:      Kevin Hilman <khilman@kernel.org>
10095 M:      Nishanth Menon <nm@ti.com>
10096 S:      Maintained
10097 F:      drivers/power/avs/
10098 F:      include/linux/power/smartreflex.h
10099 L:      linux-pm@vger.kernel.org
10100
10101 SMC91x ETHERNET DRIVER
10102 M:      Nicolas Pitre <nico@fluxnic.net>
10103 S:      Odd Fixes
10104 F:      drivers/net/ethernet/smsc/smc91x.*
10105
10106 SMIA AND SMIA++ IMAGE SENSOR DRIVER
10107 M:      Sakari Ailus <sakari.ailus@iki.fi>
10108 L:      linux-media@vger.kernel.org
10109 S:      Maintained
10110 F:      drivers/media/i2c/smiapp/
10111 F:      include/media/i2c/smiapp.h
10112 F:      drivers/media/i2c/smiapp-pll.c
10113 F:      drivers/media/i2c/smiapp-pll.h
10114 F:      include/uapi/linux/smiapp.h
10115 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
10116
10117 SMM665 HARDWARE MONITOR DRIVER
10118 M:      Guenter Roeck <linux@roeck-us.net>
10119 L:      lm-sensors@lm-sensors.org
10120 S:      Maintained
10121 F:      Documentation/hwmon/smm665
10122 F:      drivers/hwmon/smm665.c
10123
10124 SMSC EMC2103 HARDWARE MONITOR DRIVER
10125 M:      Steve Glendinning <steve.glendinning@shawell.net>
10126 L:      lm-sensors@lm-sensors.org
10127 S:      Maintained
10128 F:      Documentation/hwmon/emc2103
10129 F:      drivers/hwmon/emc2103.c
10130
10131 SMSC SCH5627 HARDWARE MONITOR DRIVER
10132 M:      Hans de Goede <hdegoede@redhat.com>
10133 L:      lm-sensors@lm-sensors.org
10134 S:      Supported
10135 F:      Documentation/hwmon/sch5627
10136 F:      drivers/hwmon/sch5627.c
10137
10138 SMSC47B397 HARDWARE MONITOR DRIVER
10139 M:      Jean Delvare <jdelvare@suse.com>
10140 L:      lm-sensors@lm-sensors.org
10141 S:      Maintained
10142 F:      Documentation/hwmon/smsc47b397
10143 F:      drivers/hwmon/smsc47b397.c
10144
10145 SMSC911x ETHERNET DRIVER
10146 M:      Steve Glendinning <steve.glendinning@shawell.net>
10147 L:      netdev@vger.kernel.org
10148 S:      Maintained
10149 F:      include/linux/smsc911x.h
10150 F:      drivers/net/ethernet/smsc/smsc911x.*
10151
10152 SMSC9420 PCI ETHERNET DRIVER
10153 M:      Steve Glendinning <steve.glendinning@shawell.net>
10154 L:      netdev@vger.kernel.org
10155 S:      Maintained
10156 F:      drivers/net/ethernet/smsc/smsc9420.*
10157
10158 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
10159 M:      Steve Glendinning <steve.glendinning@shawell.net>
10160 L:      linux-fbdev@vger.kernel.org
10161 S:      Maintained
10162 F:      drivers/video/fbdev/smscufx.c
10163
10164 SOC-CAMERA V4L2 SUBSYSTEM
10165 M:      Guennadi Liakhovetski <g.liakhovetski@gmx.de>
10166 L:      linux-media@vger.kernel.org
10167 T:      git git://linuxtv.org/media_tree.git
10168 S:      Maintained
10169 F:      include/media/soc*
10170 F:      drivers/media/i2c/soc_camera/
10171 F:      drivers/media/platform/soc_camera/
10172
10173 SOEKRIS NET48XX LED SUPPORT
10174 M:      Chris Boot <bootc@bootc.net>
10175 S:      Maintained
10176 F:      drivers/leds/leds-net48xx.c
10177
10178 SOFTLOGIC 6x10 MPEG CODEC
10179 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
10180 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
10181 M:      Andrey Utkin <andrey.krieger.utkin@gmail.com>
10182 M:      Ismael Luceno <ismael@iodev.co.uk>
10183 L:      linux-media@vger.kernel.org
10184 S:      Supported
10185 F:      drivers/media/pci/solo6x10/
10186
10187 SOFTWARE RAID (Multiple Disks) SUPPORT
10188 M:      Shaohua Li <shli@kernel.org>
10189 L:      linux-raid@vger.kernel.org
10190 T:      git git://neil.brown.name/md
10191 S:      Supported
10192 F:      drivers/md/
10193 F:      include/linux/raid/
10194 F:      include/uapi/linux/raid/
10195
10196 SONIC NETWORK DRIVER
10197 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
10198 L:      netdev@vger.kernel.org
10199 S:      Maintained
10200 F:      drivers/net/ethernet/natsemi/sonic.*
10201
10202 SONICS SILICON BACKPLANE DRIVER (SSB)
10203 M:      Michael Buesch <m@bues.ch>
10204 L:      linux-wireless@vger.kernel.org
10205 S:      Maintained
10206 F:      drivers/ssb/
10207 F:      include/linux/ssb/
10208
10209 SONY VAIO CONTROL DEVICE DRIVER
10210 M:      Mattia Dongili <malattia@linux.it>
10211 L:      platform-driver-x86@vger.kernel.org
10212 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
10213 S:      Maintained
10214 F:      Documentation/laptops/sony-laptop.txt
10215 F:      drivers/char/sonypi.c
10216 F:      drivers/platform/x86/sony-laptop.c
10217 F:      include/linux/sony-laptop.h
10218
10219 SONY MEMORYSTICK CARD SUPPORT
10220 M:      Alex Dubov <oakad@yahoo.com>
10221 W:      http://tifmxx.berlios.de/
10222 S:      Maintained
10223 F:      drivers/memstick/host/tifm_ms.c
10224
10225 SONY MEMORYSTICK STANDARD SUPPORT
10226 M:      Maxim Levitsky <maximlevitsky@gmail.com>
10227 S:      Maintained
10228 F:      drivers/memstick/core/ms_block.*
10229
10230 SOUND
10231 M:      Jaroslav Kysela <perex@perex.cz>
10232 M:      Takashi Iwai <tiwai@suse.com>
10233 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10234 W:      http://www.alsa-project.org/
10235 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
10236 T:      git git://git.alsa-project.org/alsa-kernel.git
10237 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
10238 S:      Maintained
10239 F:      Documentation/sound/
10240 F:      include/sound/
10241 F:      include/uapi/sound/
10242 F:      sound/
10243
10244 SOUND - COMPRESSED AUDIO
10245 M:      Vinod Koul <vinod.koul@intel.com>
10246 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10247 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
10248 S:      Supported
10249 F:      Documentation/sound/alsa/compress_offload.txt
10250 F:      include/sound/compress_driver.h
10251 F:      include/uapi/sound/compress_*
10252 F:      sound/core/compress_offload.c
10253 F:      sound/soc/soc-compress.c
10254
10255 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
10256 M:      Liam Girdwood <lgirdwood@gmail.com>
10257 M:      Mark Brown <broonie@kernel.org>
10258 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
10259 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10260 W:      http://alsa-project.org/main/index.php/ASoC
10261 S:      Supported
10262 F:      Documentation/sound/alsa/soc/
10263 F:      sound/soc/
10264 F:      include/sound/soc*
10265
10266 SOUND - DMAENGINE HELPERS
10267 M:      Lars-Peter Clausen <lars@metafoo.de>
10268 S:      Supported
10269 F:      include/sound/dmaengine_pcm.h
10270 F:      sound/core/pcm_dmaengine.c
10271 F:      sound/soc/soc-generic-dmaengine-pcm.c
10272
10273 SP2 MEDIA DRIVER
10274 M:      Olli Salonen <olli.salonen@iki.fi>
10275 L:      linux-media@vger.kernel.org
10276 W:      https://linuxtv.org
10277 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10278 S:      Maintained
10279 F:      drivers/media/dvb-frontends/sp2*
10280
10281 SPARC + UltraSPARC (sparc/sparc64)
10282 M:      "David S. Miller" <davem@davemloft.net>
10283 L:      sparclinux@vger.kernel.org
10284 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
10285 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
10286 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
10287 S:      Maintained
10288 F:      arch/sparc/
10289 F:      drivers/sbus/
10290
10291 SPARC SERIAL DRIVERS
10292 M:      "David S. Miller" <davem@davemloft.net>
10293 L:      sparclinux@vger.kernel.org
10294 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
10295 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
10296 S:      Maintained
10297 F:      include/linux/sunserialcore.h
10298 F:      drivers/tty/serial/suncore.c
10299 F:      drivers/tty/serial/sunhv.c
10300 F:      drivers/tty/serial/sunsab.c
10301 F:      drivers/tty/serial/sunsab.h
10302 F:      drivers/tty/serial/sunsu.c
10303 F:      drivers/tty/serial/sunzilog.c
10304 F:      drivers/tty/serial/sunzilog.h
10305
10306 SPARSE CHECKER
10307 M:      "Christopher Li" <sparse@chrisli.org>
10308 L:      linux-sparse@vger.kernel.org
10309 W:      https://sparse.wiki.kernel.org/
10310 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
10311 T:      git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
10312 S:      Maintained
10313 F:      include/linux/compiler.h
10314
10315 SPEAR PLATFORM SUPPORT
10316 M:      Viresh Kumar <vireshk@kernel.org>
10317 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
10318 L:      spear-devel@list.st.com
10319 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10320 W:      http://www.st.com/spear
10321 S:      Maintained
10322 F:      arch/arm/boot/dts/spear*
10323 F:      arch/arm/mach-spear/
10324
10325 SPEAR CLOCK FRAMEWORK SUPPORT
10326 M:      Viresh Kumar <vireshk@kernel.org>
10327 L:      spear-devel@list.st.com
10328 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10329 W:      http://www.st.com/spear
10330 S:      Maintained
10331 F:      drivers/clk/spear/
10332
10333 SPI SUBSYSTEM
10334 M:      Mark Brown <broonie@kernel.org>
10335 L:      linux-spi@vger.kernel.org
10336 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
10337 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
10338 S:      Maintained
10339 F:      Documentation/spi/
10340 F:      drivers/spi/
10341 F:      include/linux/spi/
10342 F:      include/uapi/linux/spi/
10343
10344 SPIDERNET NETWORK DRIVER for CELL
10345 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
10346 L:      netdev@vger.kernel.org
10347 S:      Supported
10348 F:      Documentation/networking/spider_net.txt
10349 F:      drivers/net/ethernet/toshiba/spider_net*
10350
10351 SPU FILE SYSTEM
10352 M:      Jeremy Kerr <jk@ozlabs.org>
10353 L:      linuxppc-dev@lists.ozlabs.org
10354 W:      http://www.ibm.com/developerworks/power/cell/
10355 S:      Supported
10356 F:      Documentation/filesystems/spufs.txt
10357 F:      arch/powerpc/platforms/cell/spufs/
10358
10359 SQUASHFS FILE SYSTEM
10360 M:      Phillip Lougher <phillip@squashfs.org.uk>
10361 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
10362 W:      http://squashfs.org.uk
10363 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
10364 S:      Maintained
10365 F:      Documentation/filesystems/squashfs.txt
10366 F:      fs/squashfs/
10367
10368 SRM (Alpha) environment access
10369 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
10370 S:      Maintained
10371 F:      arch/alpha/kernel/srm_env.c
10372
10373 STABLE BRANCH
10374 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10375 L:      stable@vger.kernel.org
10376 S:      Supported
10377 F:      Documentation/stable_kernel_rules.txt
10378
10379 STAGING SUBSYSTEM
10380 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10381 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
10382 L:      devel@driverdev.osuosl.org
10383 S:      Supported
10384 F:      drivers/staging/
10385
10386 STAGING - COMEDI
10387 M:      Ian Abbott <abbotti@mev.co.uk>
10388 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
10389 S:      Odd Fixes
10390 F:      drivers/staging/comedi/
10391
10392 STAGING - FLARION FT1000 DRIVERS
10393 M:      Marek Belisko <marek.belisko@gmail.com>
10394 S:      Odd Fixes
10395 F:      drivers/staging/ft1000/
10396
10397 STAGING - INDUSTRIAL IO
10398 M:      Jonathan Cameron <jic23@kernel.org>
10399 L:      linux-iio@vger.kernel.org
10400 S:      Odd Fixes
10401 F:      drivers/staging/iio/
10402
10403 STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
10404 M:      Jarod Wilson <jarod@wilsonet.com>
10405 W:      http://www.lirc.org/
10406 S:      Odd Fixes
10407 F:      drivers/staging/media/lirc/
10408
10409 STAGING - LUSTRE PARALLEL FILESYSTEM
10410 M:      Oleg Drokin <oleg.drokin@intel.com>
10411 M:      Andreas Dilger <andreas.dilger@intel.com>
10412 L:      lustre-devel@lists.lustre.org (moderated for non-subscribers)
10413 W:      http://wiki.lustre.org/
10414 S:      Maintained
10415 F:      drivers/staging/lustre
10416
10417 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
10418 M:      Marc Dietrich <marvin24@gmx.de>
10419 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
10420 L:      linux-tegra@vger.kernel.org
10421 S:      Maintained
10422 F:      drivers/staging/nvec/
10423
10424 STAGING - REALTEK RTL8712U DRIVERS
10425 M:      Larry Finger <Larry.Finger@lwfinger.net>
10426 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
10427 S:      Odd Fixes
10428 F:      drivers/staging/rtl8712/
10429
10430 STAGING - REALTEK RTL8723U WIRELESS DRIVER
10431 M:      Larry Finger <Larry.Finger@lwfinger.net>
10432 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
10433 L:      linux-wireless@vger.kernel.org
10434 S:      Maintained
10435 F:      drivers/staging/rtl8723au/
10436
10437 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
10438 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
10439 M:      Teddy Wang <teddy.wang@siliconmotion.com>
10440 M:      Sudip Mukherjee <sudip@vectorindia.org>
10441 L:      linux-fbdev@vger.kernel.org
10442 S:      Maintained
10443 F:      drivers/staging/sm750fb/
10444
10445 STAGING - SLICOSS
10446 M:      Lior Dotan <liodot@gmail.com>
10447 M:      Christopher Harrer <charrer@alacritech.com>
10448 S:      Odd Fixes
10449 F:      drivers/staging/slicoss/
10450
10451 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
10452 M:      William Hubbs <w.d.hubbs@gmail.com>
10453 M:      Chris Brannon <chris@the-brannons.com>
10454 M:      Kirk Reiser <kirk@reisers.ca>
10455 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
10456 L:      speakup@linux-speakup.org
10457 W:      http://www.linux-speakup.org/
10458 S:      Odd Fixes
10459 F:      drivers/staging/speakup/
10460
10461 STAGING - VIA VT665X DRIVERS
10462 M:      Forest Bond <forest@alittletooquiet.net>
10463 S:      Odd Fixes
10464 F:      drivers/staging/vt665?/
10465
10466 STAGING - WILC1000 WIFI DRIVER
10467 M:      Johnny Kim <johnny.kim@atmel.com>
10468 M:      Austin Shin <austin.shin@atmel.com>
10469 M:      Chris Park <chris.park@atmel.com>
10470 M:      Tony Cho <tony.cho@atmel.com>
10471 M:      Glen Lee <glen.lee@atmel.com>
10472 M:      Leo Kim <leo.kim@atmel.com>
10473 L:      linux-wireless@vger.kernel.org
10474 S:      Supported
10475 F:      drivers/staging/wilc1000/
10476
10477 STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
10478 M:      Arnaud Patard <arnaud.patard@rtp-net.org>
10479 S:      Odd Fixes
10480 F:      drivers/staging/xgifb/
10481
10482 HFI1 DRIVER
10483 M:      Mike Marciniszyn <infinipath@intel.com>
10484 L:      linux-rdma@vger.kernel.org
10485 S:      Supported
10486 F:      drivers/staging/rdma/hfi1
10487
10488 STARFIRE/DURALAN NETWORK DRIVER
10489 M:      Ion Badulescu <ionut@badula.org>
10490 S:      Odd Fixes
10491 F:      drivers/net/ethernet/adaptec/starfire*
10492
10493 SUN3/3X
10494 M:      Sam Creasey <sammy@sammy.net>
10495 W:      http://sammy.net/sun3/
10496 S:      Maintained
10497 F:      arch/m68k/kernel/*sun3*
10498 F:      arch/m68k/sun3*/
10499 F:      arch/m68k/include/asm/sun3*
10500 F:      drivers/net/ethernet/i825xx/sun3*
10501
10502 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
10503 M:      Hans de Goede <hdegoede@redhat.com>
10504 L:      linux-input@vger.kernel.org
10505 S:      Maintained
10506 F:      Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
10507 F:      drivers/input/keyboard/sun4i-lradc-keys.c
10508
10509 SUNDANCE NETWORK DRIVER
10510 M:      Denis Kirjanov <kda@linux-powerpc.org>
10511 L:      netdev@vger.kernel.org
10512 S:      Maintained
10513 F:      drivers/net/ethernet/dlink/sundance.c
10514
10515 SUPERH
10516 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
10517 M:      Rich Felker <dalias@libc.org>
10518 L:      linux-sh@vger.kernel.org
10519 Q:      http://patchwork.kernel.org/project/linux-sh/list/
10520 S:      Maintained
10521 F:      Documentation/sh/
10522 F:      arch/sh/
10523 F:      drivers/sh/
10524
10525 SUSPEND TO RAM
10526 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
10527 M:      Len Brown <len.brown@intel.com>
10528 M:      Pavel Machek <pavel@ucw.cz>
10529 L:      linux-pm@vger.kernel.org
10530 S:      Supported
10531 F:      Documentation/power/
10532 F:      arch/x86/kernel/acpi/
10533 F:      drivers/base/power/
10534 F:      kernel/power/
10535 F:      include/linux/suspend.h
10536 F:      include/linux/freezer.h
10537 F:      include/linux/pm.h
10538
10539 SVGA HANDLING
10540 M:      Martin Mares <mj@ucw.cz>
10541 L:      linux-video@atrey.karlin.mff.cuni.cz
10542 S:      Maintained
10543 F:      Documentation/svga.txt
10544 F:      arch/x86/boot/video*
10545
10546 SWIOTLB SUBSYSTEM
10547 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10548 L:      linux-kernel@vger.kernel.org
10549 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
10550 S:      Supported
10551 F:      lib/swiotlb.c
10552 F:      arch/*/kernel/pci-swiotlb.c
10553 F:      include/linux/swiotlb.h
10554
10555 SWITCHDEV
10556 M:      Jiri Pirko <jiri@resnulli.us>
10557 L:      netdev@vger.kernel.org
10558 S:      Supported
10559 F:      net/switchdev/
10560 F:      include/net/switchdev.h
10561
10562 SYNOPSYS ARC ARCHITECTURE
10563 M:      Vineet Gupta <vgupta@synopsys.com>
10564 L:      linux-snps-arc@lists.infradead.org
10565 S:      Supported
10566 F:      arch/arc/
10567 F:      Documentation/devicetree/bindings/arc/*
10568 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
10569 F:      drivers/tty/serial/arc_uart.c
10570 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
10571
10572 SYNOPSYS ARC SDP platform support
10573 M:      Alexey Brodkin <abrodkin@synopsys.com>
10574 S:      Supported
10575 F:      arch/arc/plat-axs10x
10576 F:      arch/arc/boot/dts/ax*
10577 F:      Documentation/devicetree/bindings/arc/axs10*
10578
10579 SYSTEM CONFIGURATION (SYSCON)
10580 M:      Lee Jones <lee.jones@linaro.org>
10581 M:      Arnd Bergmann <arnd@arndb.de>
10582 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
10583 S:      Supported
10584 F:      drivers/mfd/syscon.c
10585
10586 SYSV FILESYSTEM
10587 M:      Christoph Hellwig <hch@infradead.org>
10588 S:      Maintained
10589 F:      Documentation/filesystems/sysv-fs.txt
10590 F:      fs/sysv/
10591 F:      include/linux/sysv_fs.h
10592
10593 TARGET SUBSYSTEM
10594 M:      "Nicholas A. Bellinger" <nab@linux-iscsi.org>
10595 L:      linux-scsi@vger.kernel.org
10596 L:      target-devel@vger.kernel.org
10597 W:      http://www.linux-iscsi.org
10598 W:      http://groups.google.com/group/linux-iscsi-target-dev
10599 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10600 S:      Supported
10601 F:      drivers/target/
10602 F:      include/target/
10603 F:      Documentation/target/
10604
10605 TASKSTATS STATISTICS INTERFACE
10606 M:      Balbir Singh <bsingharora@gmail.com>
10607 S:      Maintained
10608 F:      Documentation/accounting/taskstats*
10609 F:      include/linux/taskstats*
10610 F:      kernel/taskstats.c
10611
10612 TC CLASSIFIER
10613 M:      Jamal Hadi Salim <jhs@mojatatu.com>
10614 L:      netdev@vger.kernel.org
10615 S:      Maintained
10616 F:      include/net/pkt_cls.h
10617 F:      include/uapi/linux/pkt_cls.h
10618 F:      net/sched/
10619
10620 TCP LOW PRIORITY MODULE
10621 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
10622 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
10623 W:      http://tcp-lp-mod.sourceforge.net/
10624 S:      Maintained
10625 F:      net/ipv4/tcp_lp.c
10626
10627 TDA10071 MEDIA DRIVER
10628 M:      Antti Palosaari <crope@iki.fi>
10629 L:      linux-media@vger.kernel.org
10630 W:      https://linuxtv.org
10631 W:      http://palosaari.fi/linux/
10632 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10633 T:      git git://linuxtv.org/anttip/media_tree.git
10634 S:      Maintained
10635 F:      drivers/media/dvb-frontends/tda10071*
10636
10637 TDA18212 MEDIA DRIVER
10638 M:      Antti Palosaari <crope@iki.fi>
10639 L:      linux-media@vger.kernel.org
10640 W:      https://linuxtv.org
10641 W:      http://palosaari.fi/linux/
10642 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10643 T:      git git://linuxtv.org/anttip/media_tree.git
10644 S:      Maintained
10645 F:      drivers/media/tuners/tda18212*
10646
10647 TDA18218 MEDIA DRIVER
10648 M:      Antti Palosaari <crope@iki.fi>
10649 L:      linux-media@vger.kernel.org
10650 W:      https://linuxtv.org
10651 W:      http://palosaari.fi/linux/
10652 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10653 T:      git git://linuxtv.org/anttip/media_tree.git
10654 S:      Maintained
10655 F:      drivers/media/tuners/tda18218*
10656
10657 TDA18271 MEDIA DRIVER
10658 M:      Michael Krufky <mkrufky@linuxtv.org>
10659 L:      linux-media@vger.kernel.org
10660 W:      https://linuxtv.org
10661 W:      http://github.com/mkrufky
10662 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10663 T:      git git://linuxtv.org/mkrufky/tuners.git
10664 S:      Maintained
10665 F:      drivers/media/tuners/tda18271*
10666
10667 TDA827x MEDIA DRIVER
10668 M:      Michael Krufky <mkrufky@linuxtv.org>
10669 L:      linux-media@vger.kernel.org
10670 W:      https://linuxtv.org
10671 W:      http://github.com/mkrufky
10672 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10673 T:      git git://linuxtv.org/mkrufky/tuners.git
10674 S:      Maintained
10675 F:      drivers/media/tuners/tda8290.*
10676
10677 TDA8290 MEDIA DRIVER
10678 M:      Michael Krufky <mkrufky@linuxtv.org>
10679 L:      linux-media@vger.kernel.org
10680 W:      https://linuxtv.org
10681 W:      http://github.com/mkrufky
10682 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10683 T:      git git://linuxtv.org/mkrufky/tuners.git
10684 S:      Maintained
10685 F:      drivers/media/tuners/tda8290.*
10686
10687 TDA9840 MEDIA DRIVER
10688 M:      Hans Verkuil <hverkuil@xs4all.nl>
10689 L:      linux-media@vger.kernel.org
10690 T:      git git://linuxtv.org/media_tree.git
10691 W:      https://linuxtv.org
10692 S:      Maintained
10693 F:      drivers/media/i2c/tda9840*
10694
10695 TEA5761 TUNER DRIVER
10696 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10697 L:      linux-media@vger.kernel.org
10698 W:      https://linuxtv.org
10699 T:      git git://linuxtv.org/media_tree.git
10700 S:      Odd fixes
10701 F:      drivers/media/tuners/tea5761.*
10702
10703 TEA5767 TUNER DRIVER
10704 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10705 L:      linux-media@vger.kernel.org
10706 W:      https://linuxtv.org
10707 T:      git git://linuxtv.org/media_tree.git
10708 S:      Maintained
10709 F:      drivers/media/tuners/tea5767.*
10710
10711 TEA6415C MEDIA DRIVER
10712 M:      Hans Verkuil <hverkuil@xs4all.nl>
10713 L:      linux-media@vger.kernel.org
10714 T:      git git://linuxtv.org/media_tree.git
10715 W:      https://linuxtv.org
10716 S:      Maintained
10717 F:      drivers/media/i2c/tea6415c*
10718
10719 TEA6420 MEDIA DRIVER
10720 M:      Hans Verkuil <hverkuil@xs4all.nl>
10721 L:      linux-media@vger.kernel.org
10722 T:      git git://linuxtv.org/media_tree.git
10723 W:      https://linuxtv.org
10724 S:      Maintained
10725 F:      drivers/media/i2c/tea6420*
10726
10727 TEAM DRIVER
10728 M:      Jiri Pirko <jiri@resnulli.us>
10729 L:      netdev@vger.kernel.org
10730 S:      Supported
10731 F:      drivers/net/team/
10732 F:      include/linux/if_team.h
10733 F:      include/uapi/linux/if_team.h
10734
10735 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
10736 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
10737 S:      Maintained
10738 F:      arch/x86/platform/ts5500/
10739
10740 TECHNOTREND USB IR RECEIVER
10741 M:      Sean Young <sean@mess.org>
10742 L:      linux-media@vger.kernel.org
10743 S:      Maintained
10744 F:      drivers/media/rc/ttusbir.c
10745
10746 TEGRA ARCHITECTURE SUPPORT
10747 M:      Stephen Warren <swarren@wwwdotorg.org>
10748 M:      Thierry Reding <thierry.reding@gmail.com>
10749 M:      Alexandre Courbot <gnurou@gmail.com>
10750 L:      linux-tegra@vger.kernel.org
10751 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
10752 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
10753 S:      Supported
10754 N:      [^a-z]tegra
10755
10756 TEGRA CLOCK DRIVER
10757 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
10758 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
10759 S:      Supported
10760 F:      drivers/clk/tegra/
10761
10762 TEGRA DMA DRIVER
10763 M:      Laxman Dewangan <ldewangan@nvidia.com>
10764 S:      Supported
10765 F:      drivers/dma/tegra20-apb-dma.c
10766
10767 TEGRA I2C DRIVER
10768 M:      Laxman Dewangan <ldewangan@nvidia.com>
10769 S:      Supported
10770 F:      drivers/i2c/busses/i2c-tegra.c
10771
10772 TEGRA IOMMU DRIVERS
10773 M:      Hiroshi Doyu <hdoyu@nvidia.com>
10774 S:      Supported
10775 F:      drivers/iommu/tegra*
10776
10777 TEGRA KBC DRIVER
10778 M:      Rakesh Iyer <riyer@nvidia.com>
10779 M:      Laxman Dewangan <ldewangan@nvidia.com>
10780 S:      Supported
10781 F:      drivers/input/keyboard/tegra-kbc.c
10782
10783 TEGRA PWM DRIVER
10784 M:      Thierry Reding <thierry.reding@gmail.com>
10785 S:      Supported
10786 F:      drivers/pwm/pwm-tegra.c
10787
10788 TEGRA SERIAL DRIVER
10789 M:      Laxman Dewangan <ldewangan@nvidia.com>
10790 S:      Supported
10791 F:      drivers/tty/serial/serial-tegra.c
10792
10793 TEGRA SPI DRIVER
10794 M:      Laxman Dewangan <ldewangan@nvidia.com>
10795 S:      Supported
10796 F:      drivers/spi/spi-tegra*
10797
10798 TEHUTI ETHERNET DRIVER
10799 M:      Andy Gospodarek <andy@greyhouse.net>
10800 L:      netdev@vger.kernel.org
10801 S:      Supported
10802 F:      drivers/net/ethernet/tehuti/*
10803
10804 Telecom Clock Driver for MCPL0010
10805 M:      Mark Gross <mark.gross@intel.com>
10806 S:      Supported
10807 F:      drivers/char/tlclk.c
10808
10809 TENSILICA XTENSA PORT (xtensa)
10810 M:      Chris Zankel <chris@zankel.net>
10811 M:      Max Filippov <jcmvbkbc@gmail.com>
10812 L:      linux-xtensa@linux-xtensa.org
10813 T:      git git://github.com/czankel/xtensa-linux.git
10814 S:      Maintained
10815 F:      arch/xtensa/
10816 F:      drivers/irqchip/irq-xtensa-*
10817
10818 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
10819 M:      Hans Verkuil <hverkuil@xs4all.nl>
10820 L:      linux-media@vger.kernel.org
10821 T:      git git://linuxtv.org/media_tree.git
10822 W:      https://linuxtv.org
10823 S:      Maintained
10824 F:      drivers/media/radio/radio-raremono.c
10825
10826 THERMAL
10827 M:      Zhang Rui <rui.zhang@intel.com>
10828 M:      Eduardo Valentin <edubezval@gmail.com>
10829 L:      linux-pm@vger.kernel.org
10830 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
10831 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
10832 Q:      https://patchwork.kernel.org/project/linux-pm/list/
10833 S:      Supported
10834 F:      drivers/thermal/
10835 F:      include/linux/thermal.h
10836 F:      include/uapi/linux/thermal.h
10837 F:      include/linux/cpu_cooling.h
10838 F:      Documentation/devicetree/bindings/thermal/
10839
10840 THERMAL/CPU_COOLING
10841 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
10842 M:      Viresh Kumar <viresh.kumar@linaro.org>
10843 M:      Javi Merino <javi.merino@arm.com>
10844 L:      linux-pm@vger.kernel.org
10845 S:      Supported
10846 F:      Documentation/thermal/cpu-cooling-api.txt
10847 F:      drivers/thermal/cpu_cooling.c
10848 F:      include/linux/cpu_cooling.h
10849
10850 THINGM BLINK(1) USB RGB LED DRIVER
10851 M:      Vivien Didelot <vivien.didelot@savoirfairelinux.com>
10852 S:      Maintained
10853 F:      drivers/hid/hid-thingm.c
10854
10855 THINKPAD ACPI EXTRAS DRIVER
10856 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
10857 L:      ibm-acpi-devel@lists.sourceforge.net
10858 L:      platform-driver-x86@vger.kernel.org
10859 W:      http://ibm-acpi.sourceforge.net
10860 W:      http://thinkwiki.org/wiki/Ibm-acpi
10861 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
10862 S:      Maintained
10863 F:      drivers/platform/x86/thinkpad_acpi.c
10864
10865 TI BANDGAP AND THERMAL DRIVER
10866 M:      Eduardo Valentin <edubezval@gmail.com>
10867 L:      linux-pm@vger.kernel.org
10868 L:      linux-omap@vger.kernel.org
10869 S:      Maintained
10870 F:      drivers/thermal/ti-soc-thermal/
10871
10872 TI VPE/CAL DRIVERS
10873 M:      Benoit Parrot <bparrot@ti.com>
10874 L:      linux-media@vger.kernel.org
10875 W:      http://linuxtv.org/
10876 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10877 S:      Maintained
10878 F:      drivers/media/platform/ti-vpe/
10879
10880 TI CDCE706 CLOCK DRIVER
10881 M:      Max Filippov <jcmvbkbc@gmail.com>
10882 S:      Maintained
10883 F:      drivers/clk/clk-cdce706.c
10884
10885 TI CLOCK DRIVER
10886 M:      Tero Kristo <t-kristo@ti.com>
10887 L:      linux-omap@vger.kernel.org
10888 S:      Maintained
10889 F:      drivers/clk/ti/
10890 F:      include/linux/clk/ti.h
10891
10892 TI FLASH MEDIA INTERFACE DRIVER
10893 M:      Alex Dubov <oakad@yahoo.com>
10894 S:      Maintained
10895 F:      drivers/misc/tifm*
10896 F:      drivers/mmc/host/tifm_sd.c
10897 F:      include/linux/tifm.h
10898
10899 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
10900 M:      Santosh Shilimkar <ssantosh@kernel.org>
10901 L:      linux-kernel@vger.kernel.org
10902 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10903 S:      Maintained
10904 F:      drivers/soc/ti/*
10905 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
10906
10907
10908 TI LM49xxx FAMILY ASoC CODEC DRIVERS
10909 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
10910 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
10911 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10912 S:      Maintained
10913 F:      sound/soc/codecs/lm49453*
10914 F:      sound/soc/codecs/isabelle*
10915
10916 TI LP855x BACKLIGHT DRIVER
10917 M:      Milo Kim <milo.kim@ti.com>
10918 S:      Maintained
10919 F:      Documentation/backlight/lp855x-driver.txt
10920 F:      drivers/video/backlight/lp855x_bl.c
10921 F:      include/linux/platform_data/lp855x.h
10922
10923 TI LP8727 CHARGER DRIVER
10924 M:      Milo Kim <milo.kim@ti.com>
10925 S:      Maintained
10926 F:      drivers/power/lp8727_charger.c
10927 F:      include/linux/platform_data/lp8727.h
10928
10929 TI LP8788 MFD DRIVER
10930 M:      Milo Kim <milo.kim@ti.com>
10931 S:      Maintained
10932 F:      drivers/iio/adc/lp8788_adc.c
10933 F:      drivers/leds/leds-lp8788.c
10934 F:      drivers/mfd/lp8788*.c
10935 F:      drivers/power/lp8788-charger.c
10936 F:      drivers/regulator/lp8788-*.c
10937 F:      include/linux/mfd/lp8788*.h
10938
10939 TI NETCP ETHERNET DRIVER
10940 M:      Wingman Kwok <w-kwok2@ti.com>
10941 M:      Murali Karicheri <m-karicheri2@ti.com>
10942 L:      netdev@vger.kernel.org
10943 S:      Maintained
10944 F:      drivers/net/ethernet/ti/netcp*
10945
10946 TI TAS571X FAMILY ASoC CODEC DRIVER
10947 M:      Kevin Cernekee <cernekee@chromium.org>
10948 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10949 S:      Odd Fixes
10950 F:      sound/soc/codecs/tas571x*
10951
10952 TI TWL4030 SERIES SOC CODEC DRIVER
10953 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
10954 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10955 S:      Maintained
10956 F:      sound/soc/codecs/twl4030*
10957
10958 TI WILINK WIRELESS DRIVERS
10959 L:      linux-wireless@vger.kernel.org
10960 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
10961 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
10962 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
10963 S:      Orphan
10964 F:      drivers/net/wireless/ti/
10965 F:      include/linux/wl12xx.h
10966
10967 TIPC NETWORK LAYER
10968 M:      Jon Maloy <jon.maloy@ericsson.com>
10969 M:      Ying Xue <ying.xue@windriver.com>
10970 L:      netdev@vger.kernel.org (core kernel code)
10971 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
10972 W:      http://tipc.sourceforge.net/
10973 S:      Maintained
10974 F:      include/uapi/linux/tipc*.h
10975 F:      net/tipc/
10976
10977 TILE ARCHITECTURE
10978 M:      Chris Metcalf <cmetcalf@ezchip.com>
10979 W:      http://www.ezchip.com/scm/
10980 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cmetcalf/linux-tile.git
10981 S:      Supported
10982 F:      arch/tile/
10983 F:      drivers/char/tile-srom.c
10984 F:      drivers/edac/tile_edac.c
10985 F:      drivers/net/ethernet/tile/
10986 F:      drivers/rtc/rtc-tile.c
10987 F:      drivers/tty/hvc/hvc_tile.c
10988 F:      drivers/tty/serial/tilegx.c
10989 F:      drivers/usb/host/*-tilegx.c
10990 F:      include/linux/usb/tilegx.h
10991
10992 TLAN NETWORK DRIVER
10993 M:      Samuel Chessman <chessman@tux.org>
10994 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
10995 W:      http://sourceforge.net/projects/tlan/
10996 S:      Maintained
10997 F:      Documentation/networking/tlan.txt
10998 F:      drivers/net/ethernet/ti/tlan.*
10999
11000 TOMOYO SECURITY MODULE
11001 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
11002 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
11003 L:      tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
11004 L:      tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
11005 L:      tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
11006 L:      tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
11007 W:      http://tomoyo.sourceforge.jp/
11008 T:      quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
11009 S:      Maintained
11010 F:      security/tomoyo/
11011
11012 TOPSTAR LAPTOP EXTRAS DRIVER
11013 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
11014 L:      platform-driver-x86@vger.kernel.org
11015 S:      Maintained
11016 F:      drivers/platform/x86/topstar-laptop.c
11017
11018 TOSHIBA ACPI EXTRAS DRIVER
11019 M:      Azael Avalos <coproscefalo@gmail.com>
11020 L:      platform-driver-x86@vger.kernel.org
11021 S:      Maintained
11022 F:      drivers/platform/x86/toshiba_acpi.c
11023
11024 TOSHIBA BLUETOOTH DRIVER
11025 M:      Azael Avalos <coproscefalo@gmail.com>
11026 L:      platform-driver-x86@vger.kernel.org
11027 S:      Maintained
11028 F:      drivers/platform/x86/toshiba_bluetooth.c
11029
11030 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
11031 M:      Azael Avalos <coproscefalo@gmail.com>
11032 L:      platform-driver-x86@vger.kernel.org
11033 S:      Maintained
11034 F:      drivers/platform/x86/toshiba_haps.c
11035
11036 TOSHIBA WMI HOTKEYS DRIVER
11037 M:      Azael Avalos <coproscefalo@gmail.com>
11038 L:      platform-driver-x86@vger.kernel.org
11039 S:      Maintained
11040 F:      drivers/platform/x86/toshiba-wmi.c
11041
11042 TOSHIBA SMM DRIVER
11043 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
11044 W:      http://www.buzzard.org.uk/toshiba/
11045 S:      Maintained
11046 F:      drivers/char/toshiba.c
11047 F:      include/linux/toshiba.h
11048 F:      include/uapi/linux/toshiba.h
11049
11050 TOSHIBA TC358743 DRIVER
11051 M:      Mats Randgaard <matrandg@cisco.com>
11052 L:      linux-media@vger.kernel.org
11053 S:      Maintained
11054 F:      drivers/media/i2c/tc358743*
11055 F:      include/media/i2c/tc358743.h
11056
11057 TMIO MMC DRIVER
11058 M:      Ian Molton <ian@mnementh.co.uk>
11059 L:      linux-mmc@vger.kernel.org
11060 S:      Maintained
11061 F:      drivers/mmc/host/tmio_mmc*
11062 F:      drivers/mmc/host/sh_mobile_sdhi.c
11063 F:      include/linux/mmc/tmio.h
11064 F:      include/linux/mmc/sh_mobile_sdhi.h
11065
11066 TMP401 HARDWARE MONITOR DRIVER
11067 M:      Guenter Roeck <linux@roeck-us.net>
11068 L:      lm-sensors@lm-sensors.org
11069 S:      Maintained
11070 F:      Documentation/hwmon/tmp401
11071 F:      drivers/hwmon/tmp401.c
11072
11073 TMPFS (SHMEM FILESYSTEM)
11074 M:      Hugh Dickins <hughd@google.com>
11075 L:      linux-mm@kvack.org
11076 S:      Maintained
11077 F:      include/linux/shmem_fs.h
11078 F:      mm/shmem.c
11079
11080 TM6000 VIDEO4LINUX DRIVER
11081 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
11082 L:      linux-media@vger.kernel.org
11083 W:      https://linuxtv.org
11084 T:      git git://linuxtv.org/media_tree.git
11085 S:      Odd fixes
11086 F:      drivers/media/usb/tm6000/
11087
11088 TW68 VIDEO4LINUX DRIVER
11089 M:      Hans Verkuil <hverkuil@xs4all.nl>
11090 L:      linux-media@vger.kernel.org
11091 T:      git git://linuxtv.org/media_tree.git
11092 W:      https://linuxtv.org
11093 S:      Odd Fixes
11094 F:      drivers/media/pci/tw68/
11095
11096 TPM DEVICE DRIVER
11097 M:      Peter Huewe <peterhuewe@gmx.de>
11098 M:      Marcel Selhorst <tpmdd@selhorst.net>
11099 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
11100 R:      Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
11101 W:      http://tpmdd.sourceforge.net
11102 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
11103 Q:      git git://github.com/PeterHuewe/linux-tpmdd.git
11104 T:      git https://github.com/PeterHuewe/linux-tpmdd
11105 S:      Maintained
11106 F:      drivers/char/tpm/
11107
11108 TPM IBM_VTPM DEVICE DRIVER
11109 M:      Ashley Lai <ashleydlai@gmail.com>
11110 W:      http://tpmdd.sourceforge.net
11111 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
11112 S:      Maintained
11113 F:      drivers/char/tpm/tpm_ibmvtpm*
11114
11115 TRACING
11116 M:      Steven Rostedt <rostedt@goodmis.org>
11117 M:      Ingo Molnar <mingo@redhat.com>
11118 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
11119 S:      Maintained
11120 F:      Documentation/trace/ftrace.txt
11121 F:      arch/*/*/*/ftrace.h
11122 F:      arch/*/kernel/ftrace.c
11123 F:      include/*/ftrace.h
11124 F:      include/linux/trace*.h
11125 F:      include/trace/
11126 F:      kernel/trace/
11127 F:      tools/testing/selftests/ftrace/
11128
11129 TRIVIAL PATCHES
11130 M:      Jiri Kosina <trivial@kernel.org>
11131 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
11132 S:      Maintained
11133 K:      ^Subject:.*(?i)trivial
11134
11135 TTY LAYER
11136 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11137 M:      Jiri Slaby <jslaby@suse.com>
11138 S:      Supported
11139 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
11140 F:      Documentation/serial/
11141 F:      drivers/tty/
11142 F:      drivers/tty/serial/serial_core.c
11143 F:      include/linux/serial_core.h
11144 F:      include/linux/serial.h
11145 F:      include/linux/tty.h
11146 F:      include/uapi/linux/serial_core.h
11147 F:      include/uapi/linux/serial.h
11148 F:      include/uapi/linux/tty.h
11149
11150 TUA9001 MEDIA DRIVER
11151 M:      Antti Palosaari <crope@iki.fi>
11152 L:      linux-media@vger.kernel.org
11153 W:      https://linuxtv.org
11154 W:      http://palosaari.fi/linux/
11155 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11156 T:      git git://linuxtv.org/anttip/media_tree.git
11157 S:      Maintained
11158 F:      drivers/media/tuners/tua9001*
11159
11160 TULIP NETWORK DRIVERS
11161 L:      netdev@vger.kernel.org
11162 L:      linux-parisc@vger.kernel.org
11163 S:      Orphan
11164 F:      drivers/net/ethernet/dec/tulip/
11165
11166 TUN/TAP driver
11167 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
11168 W:      http://vtun.sourceforge.net/tun
11169 S:      Maintained
11170 F:      Documentation/networking/tuntap.txt
11171 F:      arch/um/os-Linux/drivers/
11172
11173 TURBOCHANNEL SUBSYSTEM
11174 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
11175 M:      Ralf Baechle <ralf@linux-mips.org>
11176 L:      linux-mips@linux-mips.org
11177 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
11178 S:      Maintained
11179 F:      drivers/tc/
11180 F:      include/linux/tc.h
11181
11182 U14-34F SCSI DRIVER
11183 M:      Dario Ballabio <ballabio_dario@emc.com>
11184 L:      linux-scsi@vger.kernel.org
11185 S:      Maintained
11186 F:      drivers/scsi/u14-34f.c
11187
11188 UBI FILE SYSTEM (UBIFS)
11189 M:      Artem Bityutskiy <dedekind1@gmail.com>
11190 M:      Adrian Hunter <adrian.hunter@intel.com>
11191 L:      linux-mtd@lists.infradead.org
11192 T:      git git://git.infradead.org/ubifs-2.6.git
11193 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
11194 S:      Maintained
11195 F:      Documentation/filesystems/ubifs.txt
11196 F:      fs/ubifs/
11197
11198 UCLINUX (M68KNOMMU AND COLDFIRE)
11199 M:      Greg Ungerer <gerg@uclinux.org>
11200 W:      http://www.uclinux.org/
11201 L:      linux-m68k@lists.linux-m68k.org
11202 L:      uclinux-dev@uclinux.org  (subscribers-only)
11203 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
11204 S:      Maintained
11205 F:      arch/m68k/coldfire/
11206 F:      arch/m68k/68*/
11207 F:      arch/m68k/*/*_no.*
11208 F:      arch/m68k/include/asm/*_no.*
11209
11210 UDF FILESYSTEM
11211 M:      Jan Kara <jack@suse.com>
11212 S:      Maintained
11213 F:      Documentation/filesystems/udf.txt
11214 F:      fs/udf/
11215
11216 UFS FILESYSTEM
11217 M:      Evgeniy Dushistov <dushistov@mail.ru>
11218 S:      Maintained
11219 F:      Documentation/filesystems/ufs.txt
11220 F:      fs/ufs/
11221
11222 UHID USERSPACE HID IO DRIVER:
11223 M:      David Herrmann <dh.herrmann@googlemail.com>
11224 L:      linux-input@vger.kernel.org
11225 S:      Maintained
11226 F:      drivers/hid/uhid.c
11227 F:      include/uapi/linux/uhid.h
11228
11229 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
11230 L:      linux-usb@vger.kernel.org
11231 S:      Orphan
11232 F:      drivers/uwb/
11233 F:      include/linux/uwb.h
11234 F:      include/linux/uwb/
11235
11236 UNICORE32 ARCHITECTURE:
11237 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
11238 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
11239 S:      Maintained
11240 T:      git git://github.com/gxt/linux.git
11241 F:      arch/unicore32/
11242
11243 UNIFDEF
11244 M:      Tony Finch <dot@dotat.at>
11245 W:      http://dotat.at/prog/unifdef
11246 S:      Maintained
11247 F:      scripts/unifdef.c
11248
11249 UNIFORM CDROM DRIVER
11250 M:      Jens Axboe <axboe@kernel.dk>
11251 W:      http://www.kernel.dk
11252 S:      Maintained
11253 F:      Documentation/cdrom/
11254 F:      drivers/cdrom/cdrom.c
11255 F:      include/linux/cdrom.h
11256 F:      include/uapi/linux/cdrom.h
11257
11258 UNISYS S-PAR DRIVERS
11259 M:      Benjamin Romer <benjamin.romer@unisys.com>
11260 M:      David Kershner <david.kershner@unisys.com>
11261 L:      sparmaintainer@unisys.com (Unisys internal)
11262 S:      Supported
11263 F:      drivers/staging/unisys/
11264
11265 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
11266 M:      Vinayak Holikatti <vinholikatti@gmail.com>
11267 L:      linux-scsi@vger.kernel.org
11268 S:      Supported
11269 F:      Documentation/scsi/ufs.txt
11270 F:      drivers/scsi/ufs/
11271
11272 UNSORTED BLOCK IMAGES (UBI)
11273 M:      Artem Bityutskiy <dedekind1@gmail.com>
11274 M:      Richard Weinberger <richard@nod.at>
11275 W:      http://www.linux-mtd.infradead.org/
11276 L:      linux-mtd@lists.infradead.org
11277 T:      git git://git.infradead.org/ubifs-2.6.git
11278 S:      Supported
11279 F:      drivers/mtd/ubi/
11280 F:      include/linux/mtd/ubi.h
11281 F:      include/uapi/mtd/ubi-user.h
11282
11283 USB ACM DRIVER
11284 M:      Oliver Neukum <oliver@neukum.org>
11285 L:      linux-usb@vger.kernel.org
11286 S:      Maintained
11287 F:      Documentation/usb/acm.txt
11288 F:      drivers/usb/class/cdc-acm.*
11289
11290 USB AR5523 WIRELESS DRIVER
11291 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
11292 L:      linux-wireless@vger.kernel.org
11293 S:      Maintained
11294 F:      drivers/net/wireless/ath/ar5523/
11295
11296 USB ATTACHED SCSI
11297 M:      Hans de Goede <hdegoede@redhat.com>
11298 M:      Gerd Hoffmann <kraxel@redhat.com>
11299 L:      linux-usb@vger.kernel.org
11300 L:      linux-scsi@vger.kernel.org
11301 S:      Maintained
11302 F:      drivers/usb/storage/uas.c
11303
11304 USB CDC ETHERNET DRIVER
11305 M:      Oliver Neukum <oliver@neukum.org>
11306 L:      linux-usb@vger.kernel.org
11307 S:      Maintained
11308 F:      drivers/net/usb/cdc_*.c
11309 F:      include/uapi/linux/usb/cdc.h
11310
11311 USB CHAOSKEY DRIVER
11312 M:      Keith Packard <keithp@keithp.com>
11313 L:      linux-usb@vger.kernel.org
11314 S:      Maintained
11315 F:      drivers/usb/misc/chaoskey.c
11316
11317 USB CYPRESS C67X00 DRIVER
11318 M:      Peter Korsgaard <jacmet@sunsite.dk>
11319 L:      linux-usb@vger.kernel.org
11320 S:      Maintained
11321 F:      drivers/usb/c67x00/
11322
11323 USB DAVICOM DM9601 DRIVER
11324 M:      Peter Korsgaard <jacmet@sunsite.dk>
11325 L:      netdev@vger.kernel.org
11326 W:      http://www.linux-usb.org/usbnet
11327 S:      Maintained
11328 F:      drivers/net/usb/dm9601.c
11329
11330 USB DIAMOND RIO500 DRIVER
11331 M:      Cesar Miquel <miquel@df.uba.ar>
11332 L:      rio500-users@lists.sourceforge.net
11333 W:      http://rio500.sourceforge.net
11334 S:      Maintained
11335 F:      drivers/usb/misc/rio500*
11336
11337 USB EHCI DRIVER
11338 M:      Alan Stern <stern@rowland.harvard.edu>
11339 L:      linux-usb@vger.kernel.org
11340 S:      Maintained
11341 F:      Documentation/usb/ehci.txt
11342 F:      drivers/usb/host/ehci*
11343
11344 USB GADGET/PERIPHERAL SUBSYSTEM
11345 M:      Felipe Balbi <balbi@kernel.org>
11346 L:      linux-usb@vger.kernel.org
11347 W:      http://www.linux-usb.org/gadget
11348 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
11349 S:      Maintained
11350 F:      drivers/usb/gadget/
11351 F:      include/linux/usb/gadget*
11352
11353 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
11354 M:      Jiri Kosina <jikos@kernel.org>
11355 R:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
11356 L:      linux-usb@vger.kernel.org
11357 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
11358 S:      Maintained
11359 F:      Documentation/hid/hiddev.txt
11360 F:      drivers/hid/usbhid/
11361
11362 USB ISP116X DRIVER
11363 M:      Olav Kongas <ok@artecdesign.ee>
11364 L:      linux-usb@vger.kernel.org
11365 S:      Maintained
11366 F:      drivers/usb/host/isp116x*
11367 F:      include/linux/usb/isp116x.h
11368
11369 USB MASS STORAGE DRIVER
11370 M:      Matthew Dharm <mdharm-usb@one-eyed-alien.net>
11371 L:      linux-usb@vger.kernel.org
11372 L:      usb-storage@lists.one-eyed-alien.net
11373 S:      Maintained
11374 W:      http://www.one-eyed-alien.net/~mdharm/linux-usb/
11375 F:      drivers/usb/storage/
11376
11377 USB MIDI DRIVER
11378 M:      Clemens Ladisch <clemens@ladisch.de>
11379 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11380 T:      git git://git.alsa-project.org/alsa-kernel.git
11381 S:      Maintained
11382 F:      sound/usb/midi.*
11383
11384 USB NETWORKING DRIVERS
11385 L:      linux-usb@vger.kernel.org
11386 S:      Odd Fixes
11387 F:      drivers/net/usb/
11388
11389 USB OHCI DRIVER
11390 M:      Alan Stern <stern@rowland.harvard.edu>
11391 L:      linux-usb@vger.kernel.org
11392 S:      Maintained
11393 F:      Documentation/usb/ohci.txt
11394 F:      drivers/usb/host/ohci*
11395
11396 USB OTG FSM (Finite State Machine)
11397 M:      Peter Chen <Peter.Chen@nxp.com>
11398 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
11399 L:      linux-usb@vger.kernel.org
11400 S:      Maintained
11401 F:      drivers/usb/common/usb-otg-fsm.c
11402
11403 USB OVER IP DRIVER
11404 M:      Valentina Manea <valentina.manea.m@gmail.com>
11405 M:      Shuah Khan <shuah.kh@samsung.com>
11406 L:      linux-usb@vger.kernel.org
11407 S:      Maintained
11408 F:      drivers/usb/usbip/
11409 F:      tools/usb/usbip/
11410
11411 USB PEGASUS DRIVER
11412 M:      Petko Manolov <petkan@nucleusys.com>
11413 L:      linux-usb@vger.kernel.org
11414 L:      netdev@vger.kernel.org
11415 T:      git git://github.com/petkan/pegasus.git
11416 W:      https://github.com/petkan/pegasus
11417 S:      Maintained
11418 F:      drivers/net/usb/pegasus.*
11419
11420 USB PHY LAYER
11421 M:      Felipe Balbi <balbi@kernel.org>
11422 L:      linux-usb@vger.kernel.org
11423 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
11424 S:      Maintained
11425 F:      drivers/usb/phy/
11426
11427 USB PRINTER DRIVER (usblp)
11428 M:      Pete Zaitcev <zaitcev@redhat.com>
11429 L:      linux-usb@vger.kernel.org
11430 S:      Supported
11431 F:      drivers/usb/class/usblp.c
11432
11433 USB QMI WWAN NETWORK DRIVER
11434 M:      Bjørn Mork <bjorn@mork.no>
11435 L:      netdev@vger.kernel.org
11436 S:      Maintained
11437 F:      Documentation/ABI/testing/sysfs-class-net-qmi
11438 F:      drivers/net/usb/qmi_wwan.c
11439
11440 USB RTL8150 DRIVER
11441 M:      Petko Manolov <petkan@nucleusys.com>
11442 L:      linux-usb@vger.kernel.org
11443 L:      netdev@vger.kernel.org
11444 T:      git git://github.com/petkan/rtl8150.git
11445 W:      https://github.com/petkan/rtl8150
11446 S:      Maintained
11447 F:      drivers/net/usb/rtl8150.c
11448
11449 USB SERIAL SUBSYSTEM
11450 M:      Johan Hovold <johan@kernel.org>
11451 L:      linux-usb@vger.kernel.org
11452 S:      Maintained
11453 F:      Documentation/usb/usb-serial.txt
11454 F:      drivers/usb/serial/
11455 F:      include/linux/usb/serial.h
11456
11457 USB SMSC75XX ETHERNET DRIVER
11458 M:      Steve Glendinning <steve.glendinning@shawell.net>
11459 L:      netdev@vger.kernel.org
11460 S:      Maintained
11461 F:      drivers/net/usb/smsc75xx.*
11462
11463 USB SMSC95XX ETHERNET DRIVER
11464 M:      Steve Glendinning <steve.glendinning@shawell.net>
11465 L:      netdev@vger.kernel.org
11466 S:      Maintained
11467 F:      drivers/net/usb/smsc95xx.*
11468
11469 USB SUBSYSTEM
11470 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11471 L:      linux-usb@vger.kernel.org
11472 W:      http://www.linux-usb.org
11473 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
11474 S:      Supported
11475 F:      Documentation/usb/
11476 F:      drivers/usb/
11477 F:      include/linux/usb.h
11478 F:      include/linux/usb/
11479
11480 USB UHCI DRIVER
11481 M:      Alan Stern <stern@rowland.harvard.edu>
11482 L:      linux-usb@vger.kernel.org
11483 S:      Maintained
11484 F:      drivers/usb/host/uhci*
11485
11486 USB "USBNET" DRIVER FRAMEWORK
11487 M:      Oliver Neukum <oneukum@suse.com>
11488 L:      netdev@vger.kernel.org
11489 W:      http://www.linux-usb.org/usbnet
11490 S:      Maintained
11491 F:      drivers/net/usb/usbnet.c
11492 F:      include/linux/usb/usbnet.h
11493
11494 USB VIDEO CLASS
11495 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11496 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
11497 L:      linux-media@vger.kernel.org
11498 T:      git git://linuxtv.org/media_tree.git
11499 W:      http://www.ideasonboard.org/uvc/
11500 S:      Maintained
11501 F:      drivers/media/usb/uvc/
11502 F:      include/uapi/linux/uvcvideo.h
11503
11504 USB VISION DRIVER
11505 M:      Hans Verkuil <hverkuil@xs4all.nl>
11506 L:      linux-media@vger.kernel.org
11507 T:      git git://linuxtv.org/media_tree.git
11508 W:      https://linuxtv.org
11509 S:      Odd Fixes
11510 F:      drivers/media/usb/usbvision/
11511
11512 USB WEBCAM GADGET
11513 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11514 L:      linux-usb@vger.kernel.org
11515 S:      Maintained
11516 F:      drivers/usb/gadget/function/*uvc*
11517 F:      drivers/usb/gadget/legacy/webcam.c
11518
11519 USB WIRELESS RNDIS DRIVER (rndis_wlan)
11520 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
11521 L:      linux-wireless@vger.kernel.org
11522 S:      Maintained
11523 F:      drivers/net/wireless/rndis_wlan.c
11524
11525 USB XHCI DRIVER
11526 M:      Mathias Nyman <mathias.nyman@intel.com>
11527 L:      linux-usb@vger.kernel.org
11528 S:      Supported
11529 F:      drivers/usb/host/xhci*
11530 F:      drivers/usb/host/pci-quirks*
11531
11532 USB ZD1201 DRIVER
11533 L:      linux-wireless@vger.kernel.org
11534 W:      http://linux-lc100020.sourceforge.net
11535 S:      Orphan
11536 F:      drivers/net/wireless/zydas/zd1201.*
11537
11538 USB ZR364XX DRIVER
11539 M:      Antoine Jacquet <royale@zerezo.com>
11540 L:      linux-usb@vger.kernel.org
11541 L:      linux-media@vger.kernel.org
11542 T:      git git://linuxtv.org/media_tree.git
11543 W:      http://royale.zerezo.com/zr364xx/
11544 S:      Maintained
11545 F:      Documentation/video4linux/zr364xx.txt
11546 F:      drivers/media/usb/zr364xx/
11547
11548 ULPI BUS
11549 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
11550 L:      linux-usb@vger.kernel.org
11551 S:      Maintained
11552 F:      drivers/usb/common/ulpi.c
11553 F:      include/linux/ulpi/
11554
11555 USER-MODE LINUX (UML)
11556 M:      Jeff Dike <jdike@addtoit.com>
11557 M:      Richard Weinberger <richard@nod.at>
11558 L:      user-mode-linux-devel@lists.sourceforge.net
11559 L:      user-mode-linux-user@lists.sourceforge.net
11560 W:      http://user-mode-linux.sourceforge.net
11561 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
11562 S:      Maintained
11563 F:      Documentation/virtual/uml/
11564 F:      arch/um/
11565 F:      arch/x86/um/
11566 F:      fs/hostfs/
11567 F:      fs/hppfs/
11568
11569 USERSPACE I/O (UIO)
11570 M:      "Hans J. Koch" <hjk@hansjkoch.de>
11571 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11572 S:      Maintained
11573 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
11574 F:      Documentation/DocBook/uio-howto.tmpl
11575 F:      drivers/uio/
11576 F:      include/linux/uio*.h
11577
11578 UTIL-LINUX PACKAGE
11579 M:      Karel Zak <kzak@redhat.com>
11580 L:      util-linux@vger.kernel.org
11581 W:      http://en.wikipedia.org/wiki/Util-linux
11582 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
11583 S:      Maintained
11584
11585 UVESAFB DRIVER
11586 M:      Michal Januszewski <spock@gentoo.org>
11587 L:      linux-fbdev@vger.kernel.org
11588 W:      http://dev.gentoo.org/~spock/projects/uvesafb/
11589 S:      Maintained
11590 F:      Documentation/fb/uvesafb.txt
11591 F:      drivers/video/fbdev/uvesafb.*
11592
11593 VF610 NAND DRIVER
11594 M:      Stefan Agner <stefan@agner.ch>
11595 L:      linux-mtd@lists.infradead.org
11596 S:      Supported
11597 F:      drivers/mtd/nand/vf610_nfc.c
11598
11599 VFAT/FAT/MSDOS FILESYSTEM
11600 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
11601 S:      Maintained
11602 F:      Documentation/filesystems/vfat.txt
11603 F:      fs/fat/
11604
11605 VFIO DRIVER
11606 M:      Alex Williamson <alex.williamson@redhat.com>
11607 L:      kvm@vger.kernel.org
11608 T:      git git://github.com/awilliam/linux-vfio.git
11609 S:      Maintained
11610 F:      Documentation/vfio.txt
11611 F:      drivers/vfio/
11612 F:      include/linux/vfio.h
11613 F:      include/uapi/linux/vfio.h
11614
11615 VFIO PLATFORM DRIVER
11616 M:      Baptiste Reynal <b.reynal@virtualopensystems.com>
11617 L:      kvm@vger.kernel.org
11618 S:      Maintained
11619 F:      drivers/vfio/platform/
11620
11621 VIDEOBUF2 FRAMEWORK
11622 M:      Pawel Osciak <pawel@osciak.com>
11623 M:      Marek Szyprowski <m.szyprowski@samsung.com>
11624 M:      Kyungmin Park <kyungmin.park@samsung.com>
11625 L:      linux-media@vger.kernel.org
11626 S:      Maintained
11627 F:      drivers/media/v4l2-core/videobuf2-*
11628 F:      include/media/videobuf2-*
11629
11630 VIRTUAL SERIO DEVICE DRIVER
11631 M:      Stephen Chandler Paul <thatslyude@gmail.com>
11632 S:      Maintained
11633 F:      drivers/input/serio/userio.c
11634 F:      include/uapi/linux/userio.h
11635
11636 VIRTIO CONSOLE DRIVER
11637 M:      Amit Shah <amit.shah@redhat.com>
11638 L:      virtualization@lists.linux-foundation.org
11639 S:      Maintained
11640 F:      drivers/char/virtio_console.c
11641 F:      include/linux/virtio_console.h
11642 F:      include/uapi/linux/virtio_console.h
11643
11644 VIRTIO CORE, NET AND BLOCK DRIVERS
11645 M:      "Michael S. Tsirkin" <mst@redhat.com>
11646 L:      virtualization@lists.linux-foundation.org
11647 S:      Maintained
11648 F:      drivers/virtio/
11649 F:      tools/virtio/
11650 F:      drivers/net/virtio_net.c
11651 F:      drivers/block/virtio_blk.c
11652 F:      include/linux/virtio_*.h
11653 F:      include/uapi/linux/virtio_*.h
11654
11655 VIRTIO DRIVERS FOR S390
11656 M:      Christian Borntraeger <borntraeger@de.ibm.com>
11657 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
11658 L:      linux-s390@vger.kernel.org
11659 L:      virtualization@lists.linux-foundation.org
11660 L:      kvm@vger.kernel.org
11661 S:      Supported
11662 F:      drivers/s390/virtio/
11663
11664 VIRTIO GPU DRIVER
11665 M:      David Airlie <airlied@linux.ie>
11666 M:      Gerd Hoffmann <kraxel@redhat.com>
11667 L:      dri-devel@lists.freedesktop.org
11668 L:      virtualization@lists.linux-foundation.org
11669 S:      Maintained
11670 F:      drivers/gpu/drm/virtio/
11671 F:      include/uapi/linux/virtio_gpu.h
11672
11673 VIRTIO HOST (VHOST)
11674 M:      "Michael S. Tsirkin" <mst@redhat.com>
11675 L:      kvm@vger.kernel.org
11676 L:      virtualization@lists.linux-foundation.org
11677 L:      netdev@vger.kernel.org
11678 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
11679 S:      Maintained
11680 F:      drivers/vhost/
11681 F:      include/uapi/linux/vhost.h
11682
11683 VIRTIO INPUT DRIVER
11684 M:      Gerd Hoffmann <kraxel@redhat.com>
11685 S:      Maintained
11686 F:      drivers/virtio/virtio_input.c
11687 F:      include/uapi/linux/virtio_input.h
11688
11689 VIA RHINE NETWORK DRIVER
11690 S:      Orphan
11691 F:      drivers/net/ethernet/via/via-rhine.c
11692
11693 VIA SD/MMC CARD CONTROLLER DRIVER
11694 M:      Bruce Chang <brucechang@via.com.tw>
11695 M:      Harald Welte <HaraldWelte@viatech.com>
11696 S:      Maintained
11697 F:      drivers/mmc/host/via-sdmmc.c
11698
11699 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
11700 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
11701 L:      linux-fbdev@vger.kernel.org
11702 S:      Maintained
11703 F:      include/linux/via-core.h
11704 F:      include/linux/via-gpio.h
11705 F:      include/linux/via_i2c.h
11706 F:      drivers/video/fbdev/via/
11707
11708 VIA VELOCITY NETWORK DRIVER
11709 M:      Francois Romieu <romieu@fr.zoreil.com>
11710 L:      netdev@vger.kernel.org
11711 S:      Maintained
11712 F:      drivers/net/ethernet/via/via-velocity.*
11713
11714 VIRT LIB
11715 M:      Alex Williamson <alex.williamson@redhat.com>
11716 M:      Paolo Bonzini <pbonzini@redhat.com>
11717 L:      kvm@vger.kernel.org
11718 S:      Supported
11719 F:      virt/lib/
11720
11721 VIVID VIRTUAL VIDEO DRIVER
11722 M:      Hans Verkuil <hverkuil@xs4all.nl>
11723 L:      linux-media@vger.kernel.org
11724 T:      git git://linuxtv.org/media_tree.git
11725 W:      https://linuxtv.org
11726 S:      Maintained
11727 F:      drivers/media/platform/vivid/*
11728
11729 VLAN (802.1Q)
11730 M:      Patrick McHardy <kaber@trash.net>
11731 L:      netdev@vger.kernel.org
11732 S:      Maintained
11733 F:      drivers/net/macvlan.c
11734 F:      include/linux/if_*vlan.h
11735 F:      net/8021q/
11736
11737 VLYNQ BUS
11738 M:      Florian Fainelli <florian@openwrt.org>
11739 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
11740 S:      Maintained
11741 F:      drivers/vlynq/vlynq.c
11742 F:      include/linux/vlynq.h
11743
11744 VME SUBSYSTEM
11745 M:      Martyn Welch <martyn@welchs.me.uk>
11746 M:      Manohar Vanga <manohar.vanga@gmail.com>
11747 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11748 L:      devel@driverdev.osuosl.org
11749 S:      Maintained
11750 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
11751 F:      Documentation/vme_api.txt
11752 F:      drivers/staging/vme/
11753 F:      drivers/vme/
11754 F:      include/linux/vme*
11755
11756 VMWARE HYPERVISOR INTERFACE
11757 M:      Alok Kataria <akataria@vmware.com>
11758 L:      virtualization@lists.linux-foundation.org
11759 S:      Supported
11760 F:      arch/x86/kernel/cpu/vmware.c
11761
11762 VMWARE BALLOON DRIVER
11763 M:      Xavier Deguillard <xdeguillard@vmware.com>
11764 M:      Philip Moltmann <moltmann@vmware.com>
11765 M:      "VMware, Inc." <pv-drivers@vmware.com>
11766 L:      linux-kernel@vger.kernel.org
11767 S:      Maintained
11768 F:      drivers/misc/vmw_balloon.c
11769
11770 VMWARE VMMOUSE SUBDRIVER
11771 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
11772 M:      "VMware, Inc." <pv-drivers@vmware.com>
11773 L:      linux-input@vger.kernel.org
11774 S:      Maintained
11775 F:      drivers/input/mouse/vmmouse.c
11776 F:      drivers/input/mouse/vmmouse.h
11777
11778 VMWARE VMXNET3 ETHERNET DRIVER
11779 M:      Shrikrishna Khare <skhare@vmware.com>
11780 M:      "VMware, Inc." <pv-drivers@vmware.com>
11781 L:      netdev@vger.kernel.org
11782 S:      Maintained
11783 F:      drivers/net/vmxnet3/
11784
11785 VMware PVSCSI driver
11786 M:      Arvind Kumar <arvindkumar@vmware.com>
11787 M:      VMware PV-Drivers <pv-drivers@vmware.com>
11788 L:      linux-scsi@vger.kernel.org
11789 S:      Maintained
11790 F:      drivers/scsi/vmw_pvscsi.c
11791 F:      drivers/scsi/vmw_pvscsi.h
11792
11793 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
11794 M:      Liam Girdwood <lgirdwood@gmail.com>
11795 M:      Mark Brown <broonie@kernel.org>
11796 L:      linux-kernel@vger.kernel.org
11797 W:      http://www.slimlogic.co.uk/?p=48
11798 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
11799 S:      Supported
11800 F:      drivers/regulator/
11801 F:      include/linux/regulator/
11802
11803 VRF
11804 M:      David Ahern <dsa@cumulusnetworks.com>
11805 M:      Shrijeet Mukherjee <shm@cumulusnetworks.com>
11806 L:      netdev@vger.kernel.org
11807 S:      Maintained
11808 F:      drivers/net/vrf.c
11809 F:      Documentation/networking/vrf.txt
11810
11811 VT1211 HARDWARE MONITOR DRIVER
11812 M:      Juerg Haefliger <juergh@gmail.com>
11813 L:      lm-sensors@lm-sensors.org
11814 S:      Maintained
11815 F:      Documentation/hwmon/vt1211
11816 F:      drivers/hwmon/vt1211.c
11817
11818 VT8231 HARDWARE MONITOR DRIVER
11819 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
11820 L:      lm-sensors@lm-sensors.org
11821 S:      Maintained
11822 F:      drivers/hwmon/vt8231.c
11823
11824 VUB300 USB to SDIO/SD/MMC bridge chip
11825 M:      Tony Olech <tony.olech@elandigitalsystems.com>
11826 L:      linux-mmc@vger.kernel.org
11827 L:      linux-usb@vger.kernel.org
11828 S:      Supported
11829 F:      drivers/mmc/host/vub300.c
11830
11831 W1 DALLAS'S 1-WIRE BUS
11832 M:      Evgeniy Polyakov <zbr@ioremap.net>
11833 S:      Maintained
11834 F:      Documentation/w1/
11835 F:      drivers/w1/
11836
11837 W83791D HARDWARE MONITORING DRIVER
11838 M:      Marc Hulsman <m.hulsman@tudelft.nl>
11839 L:      lm-sensors@lm-sensors.org
11840 S:      Maintained
11841 F:      Documentation/hwmon/w83791d
11842 F:      drivers/hwmon/w83791d.c
11843
11844 W83793 HARDWARE MONITORING DRIVER
11845 M:      Rudolf Marek <r.marek@assembler.cz>
11846 L:      lm-sensors@lm-sensors.org
11847 S:      Maintained
11848 F:      Documentation/hwmon/w83793
11849 F:      drivers/hwmon/w83793.c
11850
11851 W83795 HARDWARE MONITORING DRIVER
11852 M:      Jean Delvare <jdelvare@suse.com>
11853 L:      lm-sensors@lm-sensors.org
11854 S:      Maintained
11855 F:      drivers/hwmon/w83795.c
11856
11857 W83L51xD SD/MMC CARD INTERFACE DRIVER
11858 M:      Pierre Ossman <pierre@ossman.eu>
11859 S:      Maintained
11860 F:      drivers/mmc/host/wbsd.*
11861
11862 WACOM PROTOCOL 4 SERIAL TABLETS
11863 M:      Julian Squires <julian@cipht.net>
11864 M:      Hans de Goede <hdegoede@redhat.com>
11865 L:      linux-input@vger.kernel.org
11866 S:      Maintained
11867 F:      drivers/input/tablet/wacom_serial4.c
11868
11869 WATCHDOG DEVICE DRIVERS
11870 M:      Wim Van Sebroeck <wim@iguana.be>
11871 R:      Guenter Roeck <linux@roeck-us.net>
11872 L:      linux-watchdog@vger.kernel.org
11873 W:      http://www.linux-watchdog.org/
11874 T:      git git://www.linux-watchdog.org/linux-watchdog.git
11875 S:      Maintained
11876 F:      Documentation/watchdog/
11877 F:      drivers/watchdog/
11878 F:      include/linux/watchdog.h
11879 F:      include/uapi/linux/watchdog.h
11880
11881 WD7000 SCSI DRIVER
11882 M:      Miroslav Zagorac <zaga@fly.cc.fer.hr>
11883 L:      linux-scsi@vger.kernel.org
11884 S:      Maintained
11885 F:      drivers/scsi/wd7000.c
11886
11887 WIIMOTE HID DRIVER
11888 M:      David Herrmann <dh.herrmann@googlemail.com>
11889 L:      linux-input@vger.kernel.org
11890 S:      Maintained
11891 F:      drivers/hid/hid-wiimote*
11892
11893 WINBOND CIR DRIVER
11894 M:      David Härdeman <david@hardeman.nu>
11895 S:      Maintained
11896 F:      drivers/media/rc/winbond-cir.c
11897
11898 WIMAX STACK
11899 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
11900 M:      linux-wimax@intel.com
11901 L:      wimax@linuxwimax.org (subscribers-only)
11902 S:      Supported
11903 W:      http://linuxwimax.org
11904 F:      Documentation/wimax/README.wimax
11905 F:      include/linux/wimax/debug.h
11906 F:      include/net/wimax.h
11907 F:      include/uapi/linux/wimax.h
11908 F:      net/wimax/
11909
11910 WISTRON LAPTOP BUTTON DRIVER
11911 M:      Miloslav Trmac <mitr@volny.cz>
11912 S:      Maintained
11913 F:      drivers/input/misc/wistron_btns.c
11914
11915 WL3501 WIRELESS PCMCIA CARD DRIVER
11916 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
11917 L:      linux-wireless@vger.kernel.org
11918 W:      http://oops.ghostprotocols.net:81/blog
11919 S:      Maintained
11920 F:      drivers/net/wireless/wl3501*
11921
11922 WOLFSON MICROELECTRONICS DRIVERS
11923 L:      patches@opensource.wolfsonmicro.com
11924 T:      git https://github.com/CirrusLogic/linux-drivers.git
11925 W:      https://github.com/CirrusLogic/linux-drivers/wiki
11926 S:      Supported
11927 F:      Documentation/hwmon/wm83??
11928 F:      Documentation/devicetree/bindings/extcon/extcon-arizona.txt
11929 F:      Documentation/devicetree/bindings/regulator/arizona-regulator.txt
11930 F:      Documentation/devicetree/bindings/mfd/arizona.txt
11931 F:      arch/arm/mach-s3c64xx/mach-crag6410*
11932 F:      drivers/clk/clk-wm83*.c
11933 F:      drivers/extcon/extcon-arizona.c
11934 F:      drivers/leds/leds-wm83*.c
11935 F:      drivers/gpio/gpio-*wm*.c
11936 F:      drivers/gpio/gpio-arizona.c
11937 F:      drivers/hwmon/wm83??-hwmon.c
11938 F:      drivers/input/misc/wm831x-on.c
11939 F:      drivers/input/touchscreen/wm831x-ts.c
11940 F:      drivers/input/touchscreen/wm97*.c
11941 F:      drivers/mfd/arizona*
11942 F:      drivers/mfd/wm*.c
11943 F:      drivers/mfd/cs47l24*
11944 F:      drivers/power/wm83*.c
11945 F:      drivers/rtc/rtc-wm83*.c
11946 F:      drivers/regulator/wm8*.c
11947 F:      drivers/video/backlight/wm83*_bl.c
11948 F:      drivers/watchdog/wm83*_wdt.c
11949 F:      include/linux/mfd/arizona/
11950 F:      include/linux/mfd/wm831x/
11951 F:      include/linux/mfd/wm8350/
11952 F:      include/linux/mfd/wm8400*
11953 F:      include/linux/wm97xx.h
11954 F:      include/sound/wm????.h
11955 F:      sound/soc/codecs/arizona.?
11956 F:      sound/soc/codecs/wm*
11957 F:      sound/soc/codecs/cs47l24*
11958
11959 WORKQUEUE
11960 M:      Tejun Heo <tj@kernel.org>
11961 R:      Lai Jiangshan <jiangshanlai@gmail.com>
11962 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
11963 S:      Maintained
11964 F:      include/linux/workqueue.h
11965 F:      kernel/workqueue.c
11966 F:      Documentation/workqueue.txt
11967
11968 X.25 NETWORK LAYER
11969 M:      Andrew Hendry <andrew.hendry@gmail.com>
11970 L:      linux-x25@vger.kernel.org
11971 S:      Odd Fixes
11972 F:      Documentation/networking/x25*
11973 F:      include/net/x25*
11974 F:      net/x25/
11975
11976 X86 ARCHITECTURE (32-BIT AND 64-BIT)
11977 M:      Thomas Gleixner <tglx@linutronix.de>
11978 M:      Ingo Molnar <mingo@redhat.com>
11979 M:      "H. Peter Anvin" <hpa@zytor.com>
11980 M:      x86@kernel.org
11981 L:      linux-kernel@vger.kernel.org
11982 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
11983 S:      Maintained
11984 F:      Documentation/x86/
11985 F:      arch/x86/
11986
11987 X86 PLATFORM DRIVERS
11988 M:      Darren Hart <dvhart@infradead.org>
11989 L:      platform-driver-x86@vger.kernel.org
11990 T:      git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git
11991 S:      Maintained
11992 F:      drivers/platform/x86/
11993 F:      drivers/platform/olpc/
11994
11995 X86 MCE INFRASTRUCTURE
11996 M:      Tony Luck <tony.luck@intel.com>
11997 M:      Borislav Petkov <bp@alien8.de>
11998 L:      linux-edac@vger.kernel.org
11999 S:      Maintained
12000 F:      arch/x86/kernel/cpu/mcheck/*
12001
12002 X86 MICROCODE UPDATE SUPPORT
12003 M:      Borislav Petkov <bp@alien8.de>
12004 S:      Maintained
12005 F:      arch/x86/kernel/cpu/microcode/*
12006
12007 X86 VDSO
12008 M:      Andy Lutomirski <luto@amacapital.net>
12009 L:      linux-kernel@vger.kernel.org
12010 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
12011 S:      Maintained
12012 F:      arch/x86/entry/vdso/
12013
12014 XC2028/3028 TUNER DRIVER
12015 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
12016 L:      linux-media@vger.kernel.org
12017 W:      https://linuxtv.org
12018 T:      git git://linuxtv.org/media_tree.git
12019 S:      Maintained
12020 F:      drivers/media/tuners/tuner-xc2028.*
12021
12022 XEN HYPERVISOR INTERFACE
12023 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
12024 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
12025 M:      David Vrabel <david.vrabel@citrix.com>
12026 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12027 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
12028 S:      Supported
12029 F:      arch/x86/xen/
12030 F:      drivers/*/xen-*front.c
12031 F:      drivers/xen/
12032 F:      arch/x86/include/asm/xen/
12033 F:      include/xen/
12034 F:      include/uapi/xen/
12035
12036 XEN HYPERVISOR ARM
12037 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
12038 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12039 S:      Supported
12040 F:      arch/arm/xen/
12041 F:      arch/arm/include/asm/xen/
12042
12043 XEN HYPERVISOR ARM64
12044 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
12045 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12046 S:      Supported
12047 F:      arch/arm64/xen/
12048 F:      arch/arm64/include/asm/xen/
12049
12050 XEN NETWORK BACKEND DRIVER
12051 M:      Ian Campbell <ian.campbell@citrix.com>
12052 M:      Wei Liu <wei.liu2@citrix.com>
12053 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12054 L:      netdev@vger.kernel.org
12055 S:      Supported
12056 F:      drivers/net/xen-netback/*
12057
12058 XEN PCI SUBSYSTEM
12059 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
12060 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12061 S:      Supported
12062 F:      arch/x86/pci/*xen*
12063 F:      drivers/pci/*xen*
12064
12065 XEN BLOCK SUBSYSTEM
12066 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
12067 M:      Roger Pau MonnĂ© <roger.pau@citrix.com>
12068 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12069 S:      Supported
12070 F:      drivers/block/xen-blkback/*
12071 F:      drivers/block/xen*
12072
12073 XEN PVSCSI DRIVERS
12074 M:      Juergen Gross <jgross@suse.com>
12075 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12076 L:      linux-scsi@vger.kernel.org
12077 S:      Supported
12078 F:      drivers/scsi/xen-scsifront.c
12079 F:      drivers/xen/xen-scsiback.c
12080 F:      include/xen/interface/io/vscsiif.h
12081
12082 XEN SWIOTLB SUBSYSTEM
12083 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
12084 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12085 S:      Supported
12086 F:      arch/x86/xen/*swiotlb*
12087 F:      drivers/xen/*swiotlb*
12088
12089 XFS FILESYSTEM
12090 P:      Silicon Graphics Inc
12091 M:      Dave Chinner <david@fromorbit.com>
12092 M:      xfs@oss.sgi.com
12093 L:      xfs@oss.sgi.com
12094 W:      http://oss.sgi.com/projects/xfs
12095 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dgc/linux-xfs.git
12096 S:      Supported
12097 F:      Documentation/filesystems/xfs.txt
12098 F:      fs/xfs/
12099
12100 XILINX AXI ETHERNET DRIVER
12101 M:      Anirudha Sarangi <anirudh@xilinx.com>
12102 M:      John Linn <John.Linn@xilinx.com>
12103 S:      Maintained
12104 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
12105
12106 XILINX UARTLITE SERIAL DRIVER
12107 M:      Peter Korsgaard <jacmet@sunsite.dk>
12108 L:      linux-serial@vger.kernel.org
12109 S:      Maintained
12110 F:      drivers/tty/serial/uartlite.c
12111
12112 XILINX VIDEO IP CORES
12113 M:      Hyun Kwon <hyun.kwon@xilinx.com>
12114 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12115 L:      linux-media@vger.kernel.org
12116 T:      git git://linuxtv.org/media_tree.git
12117 S:      Supported
12118 F:      Documentation/devicetree/bindings/media/xilinx/
12119 F:      drivers/media/platform/xilinx/
12120 F:      include/uapi/linux/xilinx-v4l2-controls.h
12121
12122 XILLYBUS DRIVER
12123 M:      Eli Billauer <eli.billauer@gmail.com>
12124 L:      linux-kernel@vger.kernel.org
12125 S:      Supported
12126 F:      drivers/char/xillybus/
12127
12128 XTENSA XTFPGA PLATFORM SUPPORT
12129 M:      Max Filippov <jcmvbkbc@gmail.com>
12130 L:      linux-xtensa@linux-xtensa.org
12131 S:      Maintained
12132 F:      drivers/spi/spi-xtensa-xtfpga.c
12133 F:      sound/soc/xtensa/xtfpga-i2s.c
12134
12135 YAM DRIVER FOR AX.25
12136 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
12137 L:      linux-hams@vger.kernel.org
12138 S:      Maintained
12139 F:      drivers/net/hamradio/yam*
12140 F:      include/linux/yam.h
12141
12142 YEALINK PHONE DRIVER
12143 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
12144 L:      usbb2k-api-dev@nongnu.org
12145 S:      Maintained
12146 F:      Documentation/input/yealink.txt
12147 F:      drivers/input/misc/yealink.*
12148
12149 Z8530 DRIVER FOR AX.25
12150 M:      Joerg Reuter <jreuter@yaina.de>
12151 W:      http://yaina.de/jreuter/
12152 W:      http://www.qsl.net/dl1bke/
12153 L:      linux-hams@vger.kernel.org
12154 S:      Maintained
12155 F:      Documentation/networking/z8530drv.txt
12156 F:      drivers/net/hamradio/*scc.c
12157 F:      drivers/net/hamradio/z8530.h
12158
12159 ZBUD COMPRESSED PAGE ALLOCATOR
12160 M:      Seth Jennings <sjenning@redhat.com>
12161 L:      linux-mm@kvack.org
12162 S:      Maintained
12163 F:      mm/zbud.c
12164 F:      include/linux/zbud.h
12165
12166 ZD1211RW WIRELESS DRIVER
12167 M:      Daniel Drake <dsd@gentoo.org>
12168 M:      Ulrich Kunitz <kune@deine-taler.de>
12169 W:      http://zd1211.ath.cx/wiki/DriverRewrite
12170 L:      linux-wireless@vger.kernel.org
12171 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
12172 S:      Maintained
12173 F:      drivers/net/wireless/zydas/zd1211rw/
12174
12175 ZPOOL COMPRESSED PAGE STORAGE API
12176 M:      Dan Streetman <ddstreet@ieee.org>
12177 L:      linux-mm@kvack.org
12178 S:      Maintained
12179 F:      mm/zpool.c
12180 F:      include/linux/zpool.h
12181
12182 ZR36067 VIDEO FOR LINUX DRIVER
12183 L:      mjpeg-users@lists.sourceforge.net
12184 L:      linux-media@vger.kernel.org
12185 W:      http://mjpeg.sourceforge.net/driver-zoran/
12186 T:      hg https://linuxtv.org/hg/v4l-dvb
12187 S:      Odd Fixes
12188 F:      drivers/media/pci/zoran/
12189
12190 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
12191 M:      Minchan Kim <minchan@kernel.org>
12192 M:      Nitin Gupta <ngupta@vflare.org>
12193 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
12194 L:      linux-kernel@vger.kernel.org
12195 S:      Maintained
12196 F:      drivers/block/zram/
12197 F:      Documentation/blockdev/zram.txt
12198
12199 ZS DECSTATION Z85C30 SERIAL DRIVER
12200 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
12201 S:      Maintained
12202 F:      drivers/tty/serial/zs.*
12203
12204 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
12205 M:      Minchan Kim <minchan@kernel.org>
12206 M:      Nitin Gupta <ngupta@vflare.org>
12207 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
12208 L:      linux-mm@kvack.org
12209 S:      Maintained
12210 F:      mm/zsmalloc.c
12211 F:      include/linux/zsmalloc.h
12212 F:      Documentation/vm/zsmalloc.txt
12213
12214 ZSWAP COMPRESSED SWAP CACHING
12215 M:      Seth Jennings <sjenning@redhat.com>
12216 L:      linux-mm@kvack.org
12217 S:      Maintained
12218 F:      mm/zswap.c
12219
12220 THE REST
12221 M:      Linus Torvalds <torvalds@linux-foundation.org>
12222 L:      linux-kernel@vger.kernel.org
12223 Q:      http://patchwork.kernel.org/project/LKML/list/
12224 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
12225 S:      Buried alive in reporters
12226 F:      *
12227 F:      */