ax25: add link layer header validation function
[cascardo/linux.git] / MAINTAINERS
1
2
3         List of maintainers and how to submit kernel changes
4
5 Please try to follow the guidelines below.  This will make things
6 easier on the maintainers.  Not all of these guidelines matter for every
7 trivial patch so apply some common sense.
8
9 1.      Always _test_ your changes, however small, on at least 4 or
10         5 people, preferably many more.
11
12 2.      Try to release a few ALPHA test versions to the net. Announce
13         them onto the kernel channel and await results. This is especially
14         important for device drivers, because often that's the only way
15         you will find things like the fact version 3 firmware needs
16         a magic fix you didn't know about, or some clown changed the
17         chips on a board and not its name.  (Don't laugh!  Look at the
18         SMC etherpower for that.)
19
20 3.      Make sure your changes compile correctly in multiple
21         configurations. In particular check that changes work both as a
22         module and built into the kernel.
23
24 4.      When you are happy with a change make it generally available for
25         testing and await feedback.
26
27 5.      Make a patch available to the relevant maintainer in the list. Use
28         'diff -u' to make the patch easy to merge. Be prepared to get your
29         changes sent back with seemingly silly requests about formatting
30         and variable names.  These aren't as silly as they seem. One
31         job the maintainers (and especially Linus) do is to keep things
32         looking the same. Sometimes this means that the clever hack in
33         your driver to get around a problem actually needs to become a
34         generalized kernel feature ready for next time.
35
36         PLEASE check your patch with the automated style checker
37         (scripts/checkpatch.pl) to catch trivial style violations.
38         See Documentation/CodingStyle for guidance here.
39
40         PLEASE CC: the maintainers and mailing lists that are generated
41         by scripts/get_maintainer.pl.  The results returned by the
42         script will be best if you have git installed and are making
43         your changes in a branch derived from Linus' latest git tree.
44         See Documentation/SubmittingPatches for details.
45
46         PLEASE try to include any credit lines you want added with the
47         patch. It avoids people being missed off by mistake and makes
48         it easier to know who wants adding and who doesn't.
49
50         PLEASE document known bugs. If it doesn't work for everything
51         or does something very odd once a month document it.
52
53         PLEASE remember that submissions must be made under the terms
54         of the Linux Foundation certificate of contribution and should
55         include a Signed-off-by: line.  The current version of this
56         "Developer's Certificate of Origin" (DCO) is listed in the file
57         Documentation/SubmittingPatches.
58
59 6.      Make sure you have the right to send any changes you make. If you
60         do changes at work you may find your employer owns the patch
61         not you.
62
63 7.      When sending security related changes or reports to a maintainer
64         please Cc: security@kernel.org, especially if the maintainer
65         does not respond.
66
67 8.      Happy hacking.
68
69 Descriptions of section entries:
70
71         P: Person (obsolete)
72         M: Mail patches to: FullName <address@domain>
73         R: Designated reviewer: FullName <address@domain>
74            These reviewers should be CCed on patches.
75         L: Mailing list that is relevant to this area
76         W: Web-page with status/info
77         Q: Patchwork web based patch tracking system site
78         T: SCM tree type and location.
79            Type is one of: git, hg, quilt, stgit, topgit
80         S: Status, one of the following:
81            Supported:   Someone is actually paid to look after this.
82            Maintained:  Someone actually looks after it.
83            Odd Fixes:   It has a maintainer but they don't have time to do
84                         much other than throw the odd patch in. See below..
85            Orphan:      No current maintainer [but maybe you could take the
86                         role as you write your new code].
87            Obsolete:    Old code. Something tagged obsolete generally means
88                         it has been replaced by a better system and you
89                         should be using that.
90         F: Files and directories with wildcard patterns.
91            A trailing slash includes all files and subdirectory files.
92            F:   drivers/net/    all files in and below drivers/net
93            F:   drivers/net/*   all files in drivers/net, but not below
94            F:   */net/*         all files in "any top level directory"/net
95            One pattern per line.  Multiple F: lines acceptable.
96         N: Files and directories with regex patterns.
97            N:   [^a-z]tegra     all files whose path contains the word tegra
98            One pattern per line.  Multiple N: lines acceptable.
99            scripts/get_maintainer.pl has different behavior for files that
100            match F: pattern and matches of N: patterns.  By default,
101            get_maintainer will not look at git log history when an F: pattern
102            match occurs.  When an N: match occurs, git log history is used
103            to also notify the people that have git commit signatures.
104         X: Files and directories that are NOT maintained, same rules as F:
105            Files exclusions are tested before file matches.
106            Can be useful for excluding a specific subdirectory, for instance:
107            F:   net/
108            X:   net/ipv6/
109            matches all files in and below net excluding net/ipv6/
110         K: Keyword perl extended regex pattern to match content in a
111            patch or file.  For instance:
112            K: of_get_profile
113               matches patches or files that contain "of_get_profile"
114            K: \b(printk|pr_(info|err))\b
115               matches patches or files that contain one or more of the words
116               printk, pr_info or pr_err
117            One regex pattern per line.  Multiple K: lines acceptable.
118
119 Note: For the hard of thinking, this list is meant to remain in alphabetical
120 order. If you could add yourselves to it in alphabetical order that would be
121 so much easier [Ed]
122
123 Maintainers List (try to look for most precise areas first)
124
125                 -----------------------------------
126
127 3C59X NETWORK DRIVER
128 M:      Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
129 L:      netdev@vger.kernel.org
130 S:      Maintained
131 F:      Documentation/networking/vortex.txt
132 F:      drivers/net/ethernet/3com/3c59x.c
133
134 3CR990 NETWORK DRIVER
135 M:      David Dillow <dave@thedillows.org>
136 L:      netdev@vger.kernel.org
137 S:      Maintained
138 F:      drivers/net/ethernet/3com/typhoon*
139
140 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
141 M:      Adam Radford <linuxraid@lsi.com>
142 L:      linux-scsi@vger.kernel.org
143 W:      http://www.lsi.com
144 S:      Supported
145 F:      drivers/scsi/3w-*
146
147 53C700 AND 53C700-66 SCSI DRIVER
148 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
149 L:      linux-scsi@vger.kernel.org
150 S:      Maintained
151 F:      drivers/scsi/53c700*
152
153 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
154 M:      Alexander Aring <aar@pengutronix.de>
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 XGBE DRIVER
677 M:      Tom Lendacky <thomas.lendacky@amd.com>
678 L:      netdev@vger.kernel.org
679 S:      Supported
680 F:      drivers/net/ethernet/amd/xgbe/
681
682 AMS (Apple Motion Sensor) DRIVER
683 M:      Michael Hanselmann <linux-kernel@hansmi.ch>
684 S:      Supported
685 F:      drivers/macintosh/ams/
686
687 ANALOG DEVICES INC AD9389B DRIVER
688 M:      Hans Verkuil <hans.verkuil@cisco.com>
689 L:      linux-media@vger.kernel.org
690 S:      Maintained
691 F:      drivers/media/i2c/ad9389b*
692
693 ANALOG DEVICES INC ADV7180 DRIVER
694 M:      Lars-Peter Clausen <lars@metafoo.de>
695 L:      linux-media@vger.kernel.org
696 W:      http://ez.analog.com/community/linux-device-drivers
697 S:      Supported
698 F:      drivers/media/i2c/adv7180.c
699
700 ANALOG DEVICES INC ADV7511 DRIVER
701 M:      Hans Verkuil <hans.verkuil@cisco.com>
702 L:      linux-media@vger.kernel.org
703 S:      Maintained
704 F:      drivers/media/i2c/adv7511*
705
706 ANALOG DEVICES INC ADV7604 DRIVER
707 M:      Hans Verkuil <hans.verkuil@cisco.com>
708 L:      linux-media@vger.kernel.org
709 S:      Maintained
710 F:      drivers/media/i2c/adv7604*
711
712 ANALOG DEVICES INC ADV7842 DRIVER
713 M:      Hans Verkuil <hans.verkuil@cisco.com>
714 L:      linux-media@vger.kernel.org
715 S:      Maintained
716 F:      drivers/media/i2c/adv7842*
717
718 ANALOG DEVICES INC ASOC CODEC DRIVERS
719 M:      Lars-Peter Clausen <lars@metafoo.de>
720 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
721 W:      http://wiki.analog.com/
722 W:      http://ez.analog.com/community/linux-device-drivers
723 S:      Supported
724 F:      sound/soc/codecs/adau*
725 F:      sound/soc/codecs/adav*
726 F:      sound/soc/codecs/ad1*
727 F:      sound/soc/codecs/ad7*
728 F:      sound/soc/codecs/ssm*
729 F:      sound/soc/codecs/sigmadsp.*
730
731 ANALOG DEVICES INC ASOC DRIVERS
732 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
733 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
734 W:      http://blackfin.uclinux.org/
735 S:      Supported
736 F:      sound/soc/blackfin/*
737
738 ANALOG DEVICES INC IIO DRIVERS
739 M:      Lars-Peter Clausen <lars@metafoo.de>
740 M:      Michael Hennerich <Michael.Hennerich@analog.com>
741 W:      http://wiki.analog.com/
742 W:      http://ez.analog.com/community/linux-device-drivers
743 S:      Supported
744 F:      drivers/iio/*/ad*
745 X:      drivers/iio/*/adjd*
746 F:      drivers/staging/iio/*/ad*
747 F:      staging/iio/trigger/iio-trig-bfin-timer.c
748
749 ANALOG DEVICES INC DMA DRIVERS
750 M:      Lars-Peter Clausen <lars@metafoo.de>
751 W:      http://ez.analog.com/community/linux-device-drivers
752 S:      Supported
753 F:      drivers/dma/dma-axi-dmac.c
754
755 ANDROID DRIVERS
756 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
757 M:      Arve HjønnevĂ¥g <arve@android.com>
758 M:      Riley Andrews <riandrews@android.com>
759 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
760 L:      devel@driverdev.osuosl.org
761 S:      Supported
762 F:      drivers/android/
763 F:      drivers/staging/android/
764
765 AOA (Apple Onboard Audio) ALSA DRIVER
766 M:      Johannes Berg <johannes@sipsolutions.net>
767 L:      linuxppc-dev@lists.ozlabs.org
768 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
769 S:      Maintained
770 F:      sound/aoa/
771
772 APM DRIVER
773 M:      Jiri Kosina <jikos@kernel.org>
774 S:      Odd fixes
775 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
776 F:      arch/x86/kernel/apm_32.c
777 F:      include/linux/apm_bios.h
778 F:      include/uapi/linux/apm_bios.h
779 F:      drivers/char/apm-emulation.c
780
781 APPLE BCM5974 MULTITOUCH DRIVER
782 M:      Henrik Rydberg <rydberg@bitmath.org>
783 L:      linux-input@vger.kernel.org
784 S:      Odd fixes
785 F:      drivers/input/mouse/bcm5974.c
786
787 APPLE SMC DRIVER
788 M:      Henrik Rydberg <rydberg@bitmath.org>
789 L:      lm-sensors@lm-sensors.org
790 S:      Odd fixes
791 F:      drivers/hwmon/applesmc.c
792
793 APPLETALK NETWORK LAYER
794 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
795 S:      Maintained
796 F:      drivers/net/appletalk/
797 F:      net/appletalk/
798
799 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
800 M:      Duc Dang <dhdang@apm.com>
801 S:      Supported
802 F:      arch/arm64/boot/dts/apm/
803
804 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
805 M:      Iyappan Subramanian <isubramanian@apm.com>
806 M:      Keyur Chudgar <kchudgar@apm.com>
807 S:      Supported
808 F:      drivers/net/ethernet/apm/xgene/
809 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
810
811 APTINA CAMERA SENSOR PLL
812 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
813 L:      linux-media@vger.kernel.org
814 S:      Maintained
815 F:      drivers/media/i2c/aptina-pll.*
816
817 ARC FRAMEBUFFER DRIVER
818 M:      Jaya Kumar <jayalk@intworks.biz>
819 S:      Maintained
820 F:      drivers/video/fbdev/arcfb.c
821 F:      drivers/video/fbdev/core/fb_defio.c
822
823 ARCNET NETWORK LAYER
824 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
825 L:      netdev@vger.kernel.org
826 S:      Maintained
827 F:      drivers/net/arcnet/
828 F:      include/uapi/linux/if_arcnet.h
829
830 ARM MFM AND FLOPPY DRIVERS
831 M:      Ian Molton <spyro@f2s.com>
832 S:      Maintained
833 F:      arch/arm/lib/floppydma.S
834 F:      arch/arm/include/asm/floppy.h
835
836 ARM PMU PROFILING AND DEBUGGING
837 M:      Will Deacon <will.deacon@arm.com>
838 R:      Mark Rutland <mark.rutland@arm.com>
839 S:      Maintained
840 F:      arch/arm*/kernel/perf_*
841 F:      arch/arm/oprofile/common.c
842 F:      arch/arm*/kernel/hw_breakpoint.c
843 F:      arch/arm*/include/asm/hw_breakpoint.h
844 F:      arch/arm*/include/asm/perf_event.h
845 F:      drivers/perf/arm_pmu.c
846 F:      include/linux/perf/arm_pmu.h
847
848 ARM PORT
849 M:      Russell King <linux@arm.linux.org.uk>
850 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
851 W:      http://www.arm.linux.org.uk/
852 S:      Maintained
853 F:      arch/arm/
854
855 ARM SUB-ARCHITECTURES
856 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
857 S:      Maintained
858 F:      arch/arm/mach-*/
859 F:      arch/arm/plat-*/
860 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
861
862 ARM PRIMECELL AACI PL041 DRIVER
863 M:      Russell King <linux@arm.linux.org.uk>
864 S:      Maintained
865 F:      sound/arm/aaci.*
866
867 ARM PRIMECELL CLCD PL110 DRIVER
868 M:      Russell King <linux@arm.linux.org.uk>
869 S:      Maintained
870 F:      drivers/video/fbdev/amba-clcd.*
871
872 ARM PRIMECELL KMI PL050 DRIVER
873 M:      Russell King <linux@arm.linux.org.uk>
874 S:      Maintained
875 F:      drivers/input/serio/ambakmi.*
876 F:      include/linux/amba/kmi.h
877
878 ARM PRIMECELL MMCI PL180/1 DRIVER
879 M:      Russell King <linux@arm.linux.org.uk>
880 S:      Maintained
881 F:      drivers/mmc/host/mmci.*
882 F:      include/linux/amba/mmci.h
883
884 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
885 M:      Russell King <linux@arm.linux.org.uk>
886 S:      Maintained
887 F:      drivers/tty/serial/amba-pl01*.c
888 F:      include/linux/amba/serial.h
889
890 ARM PRIMECELL BUS SUPPORT
891 M:      Russell King <linux@arm.linux.org.uk>
892 S:      Maintained
893 F:      drivers/amba/
894 F:      include/linux/amba/bus.h
895
896 ARM/ADS SPHERE MACHINE SUPPORT
897 M:      Lennert Buytenhek <kernel@wantstofly.org>
898 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
899 S:      Maintained
900
901 ARM/AFEB9260 MACHINE SUPPORT
902 M:      Sergey Lapin <slapin@ossfans.org>
903 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
904 S:      Maintained
905
906 ARM/AJECO 1ARM MACHINE SUPPORT
907 M:      Lennert Buytenhek <kernel@wantstofly.org>
908 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
909 S:      Maintained
910
911 ARM/Allwinner sunXi SoC support
912 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
913 M:      Chen-Yu Tsai <wens@csie.org>
914 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
915 S:      Maintained
916 N:      sun[x456789]i
917
918 ARM/Allwinner SoC Clock Support
919 M:      Emilio LĂ³pez <emilio@elopez.com.ar>
920 S:      Maintained
921 F:      drivers/clk/sunxi/
922
923 ARM/Amlogic Meson SoC support
924 M:      Carlo Caione <carlo@caione.org>
925 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
926 L:      linux-meson@googlegroups.com
927 W:      http://linux-meson.com/
928 S:      Maintained
929 F:      arch/arm/mach-meson/
930 F:      arch/arm/boot/dts/meson*
931 N:      meson
932
933 ARM/Annapurna Labs ALPINE ARCHITECTURE
934 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
935 M:      Antoine Tenart <antoine.tenart@free-electrons.com>
936 S:      Maintained
937 F:      arch/arm/mach-alpine/
938 F:      arch/arm/boot/dts/alpine*
939 F:      arch/arm64/boot/dts/al/
940 F:      drivers/*/*alpine*
941
942 ARM/ATMEL AT91RM9200, AT91SAM9 AND SAMA5 SOC SUPPORT
943 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
944 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
945 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
946 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
947 W:      http://www.linux4sam.org
948 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nferre/linux-at91.git
949 S:      Supported
950 F:      arch/arm/mach-at91/
951 F:      include/soc/at91/
952 F:      arch/arm/boot/dts/at91*.dts
953 F:      arch/arm/boot/dts/at91*.dtsi
954 F:      arch/arm/boot/dts/sama*.dts
955 F:      arch/arm/boot/dts/sama*.dtsi
956 F:      arch/arm/include/debug/at91.S
957
958 ARM/ATMEL AT91 Clock Support
959 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
960 S:      Maintained
961 F:      drivers/clk/at91
962
963 ARM/CALXEDA HIGHBANK ARCHITECTURE
964 M:      Rob Herring <robh@kernel.org>
965 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
966 S:      Maintained
967 F:      arch/arm/mach-highbank/
968 F:      arch/arm/boot/dts/highbank.dts
969 F:      arch/arm/boot/dts/ecx-*.dts*
970
971 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
972 M:      Krzysztof Halasa <khalasa@piap.pl>
973 S:      Maintained
974 F:      arch/arm/mach-cns3xxx/
975
976 ARM/CAVIUM THUNDER NETWORK DRIVER
977 M:      Sunil Goutham <sgoutham@cavium.com>
978 M:      Robert Richter <rric@kernel.org>
979 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
980 S:      Supported
981 F:      drivers/net/ethernet/cavium/thunder/
982
983 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
984 M:      Alexander Shiyan <shc_work@mail.ru>
985 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
986 S:      Odd Fixes
987 N:      clps711x
988
989 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
990 M:      Hartley Sweeten <hsweeten@visionengravers.com>
991 M:      Ryan Mallon <rmallon@gmail.com>
992 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
993 S:      Maintained
994 F:      arch/arm/mach-ep93xx/
995 F:      arch/arm/mach-ep93xx/include/mach/
996
997 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
998 M:      Lennert Buytenhek <kernel@wantstofly.org>
999 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1000 S:      Maintained
1001
1002 ARM/CLKDEV SUPPORT
1003 M:      Russell King <linux@arm.linux.org.uk>
1004 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1005 S:      Maintained
1006 F:      arch/arm/include/asm/clkdev.h
1007 F:      drivers/clk/clkdev.c
1008
1009 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
1010 M:      Mike Rapoport <mike@compulab.co.il>
1011 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1012 S:      Maintained
1013
1014 ARM/CONTEC MICRO9 MACHINE SUPPORT
1015 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1016 S:      Maintained
1017 F:      arch/arm/mach-ep93xx/micro9.c
1018
1019 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1020 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1021 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1022 S:      Maintained
1023 F:      drivers/hwtracing/coresight/*
1024 F:      Documentation/trace/coresight.txt
1025 F:      Documentation/devicetree/bindings/arm/coresight.txt
1026 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1027
1028 ARM/CORGI MACHINE SUPPORT
1029 M:      Richard Purdie <rpurdie@rpsys.net>
1030 S:      Maintained
1031
1032 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1033 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1034 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1035 T:      git git://github.com/ulli-kroll/linux.git
1036 S:      Maintained
1037 F:      arch/arm/mach-gemini/
1038 F:      drivers/rtc/rtc-gemini.c
1039
1040 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1041 M:      Barry Song <baohua@kernel.org>
1042 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1043 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1044 S:      Maintained
1045 F:      arch/arm/boot/dts/prima2*
1046 F:      arch/arm/mach-prima2/
1047 F:      drivers/clk/sirf/
1048 F:      drivers/clocksource/timer-prima2.c
1049 F:      drivers/clocksource/timer-atlas7.c
1050 N:      [^a-z]sirf
1051
1052 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1053 M:      Baruch Siach <baruch@tkos.co.il>
1054 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1055 S:      Maintained
1056 F:      arch/arm/boot/dts/cx92755*
1057 N:      digicolor
1058
1059 ARM/EBSA110 MACHINE SUPPORT
1060 M:      Russell King <linux@arm.linux.org.uk>
1061 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1062 W:      http://www.arm.linux.org.uk/
1063 S:      Maintained
1064 F:      arch/arm/mach-ebsa110/
1065 F:      drivers/net/ethernet/amd/am79c961a.*
1066
1067 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1068 M:      Uwe Kleine-König <kernel@pengutronix.de>
1069 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1070 S:      Maintained
1071 N:      efm32
1072
1073 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1074 M:      Daniel Ribeiro <drwyrm@gmail.com>
1075 M:      Stefan Schmidt <stefan@openezx.org>
1076 M:      Harald Welte <laforge@openezx.org>
1077 L:      openezx-devel@lists.openezx.org (moderated for non-subscribers)
1078 W:      http://www.openezx.org/
1079 S:      Maintained
1080 T:      topgit git://git.openezx.org/openezx.git
1081 F:      arch/arm/mach-pxa/ezx.c
1082
1083 ARM/FARADAY FA526 PORT
1084 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1085 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1086 S:      Maintained
1087 T:      git git://git.berlios.de/gemini-board
1088 F:      arch/arm/mm/*-fa*
1089
1090 ARM/FOOTBRIDGE ARCHITECTURE
1091 M:      Russell King <linux@arm.linux.org.uk>
1092 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1093 W:      http://www.arm.linux.org.uk/
1094 S:      Maintained
1095 F:      arch/arm/include/asm/hardware/dec21285.h
1096 F:      arch/arm/mach-footbridge/
1097
1098 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1099 M:      Shawn Guo <shawnguo@kernel.org>
1100 M:      Sascha Hauer <kernel@pengutronix.de>
1101 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1102 S:      Maintained
1103 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1104 F:      arch/arm/mach-imx/
1105 F:      arch/arm/mach-mxs/
1106 F:      arch/arm/boot/dts/imx*
1107 F:      arch/arm/configs/imx*_defconfig
1108 F:      drivers/clk/imx/
1109 F:      include/soc/imx/
1110
1111 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1112 M:      Shawn Guo <shawnguo@kernel.org>
1113 M:      Sascha Hauer <kernel@pengutronix.de>
1114 R:      Stefan Agner <stefan@agner.ch>
1115 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1116 S:      Maintained
1117 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1118 F:      arch/arm/mach-imx/*vf610*
1119 F:      arch/arm/boot/dts/vf*
1120
1121 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1122 M:      Lennert Buytenhek <kernel@wantstofly.org>
1123 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1124 S:      Maintained
1125
1126 ARM/GUMSTIX MACHINE SUPPORT
1127 M:      Steve Sakoman <sakoman@gmail.com>
1128 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1129 S:      Maintained
1130
1131 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1132 M:      Philipp Zabel <philipp.zabel@gmail.com>
1133 M:      Paul Parsons <lost.distance@yahoo.com>
1134 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1135 S:      Maintained
1136 F:      arch/arm/mach-pxa/hx4700.c
1137 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1138 F:      sound/soc/pxa/hx4700.c
1139
1140 ARM/HISILICON SOC SUPPORT
1141 M:      Wei Xu <xuwei5@hisilicon.com>
1142 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1143 W:      http://www.hisilicon.com
1144 S:      Supported
1145 T:      git git://github.com/hisilicon/linux-hisi.git
1146 F:      arch/arm/mach-hisi/
1147 F:      arch/arm/boot/dts/hi3*
1148 F:      arch/arm/boot/dts/hip*
1149 F:      arch/arm/boot/dts/hisi*
1150 F:      arch/arm64/boot/dts/hisilicon/
1151
1152 ARM/HP JORNADA 7XX MACHINE SUPPORT
1153 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1154 W:      www.jlime.com
1155 S:      Maintained
1156 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1157 F:      arch/arm/mach-sa1100/jornada720.c
1158 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1159
1160 ARM/IGEP MACHINE SUPPORT
1161 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1162 M:      Javier Martinez Canillas <javier@dowhile0.org>
1163 L:      linux-omap@vger.kernel.org
1164 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1165 S:      Maintained
1166 F:      arch/arm/boot/dts/omap3-igep*
1167
1168 ARM/INCOME PXA270 SUPPORT
1169 M:      Marek Vasut <marek.vasut@gmail.com>
1170 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1171 S:      Maintained
1172 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1173
1174 ARM/INTEL IOP32X ARM ARCHITECTURE
1175 M:      Lennert Buytenhek <kernel@wantstofly.org>
1176 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1177 S:      Maintained
1178
1179 ARM/INTEL IOP33X ARM ARCHITECTURE
1180 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1181 S:      Orphan
1182
1183 ARM/INTEL IOP13XX ARM ARCHITECTURE
1184 M:      Lennert Buytenhek <kernel@wantstofly.org>
1185 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1186 S:      Maintained
1187
1188 ARM/INTEL IQ81342EX MACHINE SUPPORT
1189 M:      Lennert Buytenhek <kernel@wantstofly.org>
1190 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1191 S:      Maintained
1192
1193 ARM/INTEL IXDP2850 MACHINE SUPPORT
1194 M:      Lennert Buytenhek <kernel@wantstofly.org>
1195 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1196 S:      Maintained
1197
1198 ARM/INTEL IXP4XX ARM ARCHITECTURE
1199 M:      Imre Kaloz <kaloz@openwrt.org>
1200 M:      Krzysztof Halasa <khalasa@piap.pl>
1201 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1202 S:      Maintained
1203 F:      arch/arm/mach-ixp4xx/
1204
1205 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1206 M:      Jonathan Cameron <jic23@cam.ac.uk>
1207 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1208 S:      Maintained
1209 F:      arch/arm/mach-pxa/stargate2.c
1210 F:      drivers/pcmcia/pxa2xx_stargate2.c
1211
1212 ARM/INTEL XSC3 (MANZANO) ARM CORE
1213 M:      Lennert Buytenhek <kernel@wantstofly.org>
1214 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1215 S:      Maintained
1216
1217 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1218 M:      Lennert Buytenhek <kernel@wantstofly.org>
1219 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1220 S:      Maintained
1221
1222 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
1223 M:      Santosh Shilimkar <ssantosh@kernel.org>
1224 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1225 S:      Maintained
1226 F:      arch/arm/mach-keystone/
1227 F:      arch/arm/boot/dts/k2*
1228 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
1229
1230 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
1231 M:      Santosh Shilimkar <ssantosh@kernel.org>
1232 L:      linux-kernel@vger.kernel.org
1233 S:      Maintained
1234 F:      drivers/clk/keystone/
1235
1236 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
1237 M:      Santosh Shilimkar <ssantosh@kernel.org>
1238 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1239 L:      linux-kernel@vger.kernel.org
1240 S:      Maintained
1241 F:      drivers/clocksource/timer-keystone.c
1242
1243 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
1244 M:      Santosh Shilimkar <ssantosh@kernel.org>
1245 L:      linux-kernel@vger.kernel.org
1246 S:      Maintained
1247 F:      drivers/power/reset/keystone-reset.c
1248
1249 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
1250 M:      Santosh Shilimkar <ssantosh@kernel.org>
1251 L:      linux-kernel@vger.kernel.org
1252 S:      Maintained
1253 F:      drivers/memory/*emif*
1254
1255 ARM/LOGICPD PXA270 MACHINE SUPPORT
1256 M:      Lennert Buytenhek <kernel@wantstofly.org>
1257 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1258 S:      Maintained
1259
1260 ARM/LPC18XX ARCHITECTURE
1261 M:      Joachim Eastwood <manabian@gmail.com>
1262 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1263 S:      Maintained
1264 F:      arch/arm/boot/dts/lpc43*
1265 F:      drivers/clk/nxp/clk-lpc18xx*
1266 F:      drivers/clocksource/time-lpc32xx.c
1267 F:      drivers/i2c/busses/i2c-lpc2k.c
1268 F:      drivers/memory/pl172.c
1269 F:      drivers/mtd/spi-nor/nxp-spifi.c
1270 F:      drivers/rtc/rtc-lpc24xx.c
1271 N:      lpc18xx
1272
1273 ARM/MAGICIAN MACHINE SUPPORT
1274 M:      Philipp Zabel <philipp.zabel@gmail.com>
1275 S:      Maintained
1276
1277 ARM/Marvell Kirkwood and Armada 370, 375, 38x, XP SOC support
1278 M:      Jason Cooper <jason@lakedaemon.net>
1279 M:      Andrew Lunn <andrew@lunn.ch>
1280 M:      Gregory Clement <gregory.clement@free-electrons.com>
1281 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1282 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1283 S:      Maintained
1284 F:      arch/arm/mach-mvebu/
1285 F:      drivers/rtc/rtc-armada38x.c
1286 F:      arch/arm/boot/dts/armada*
1287 F:      arch/arm/boot/dts/kirkwood*
1288
1289
1290 ARM/Marvell Berlin SoC support
1291 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1292 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1293 S:      Maintained
1294 F:      arch/arm/mach-berlin/
1295 F:      arch/arm/boot/dts/berlin*
1296 F:      arch/arm64/boot/dts/marvell/berlin*
1297
1298
1299 ARM/Marvell Dove/MV78xx0/Orion SOC support
1300 M:      Jason Cooper <jason@lakedaemon.net>
1301 M:      Andrew Lunn <andrew@lunn.ch>
1302 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1303 M:      Gregory Clement <gregory.clement@free-electrons.com>
1304 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1305 S:      Maintained
1306 F:      arch/arm/mach-dove/
1307 F:      arch/arm/mach-mv78xx0/
1308 F:      arch/arm/mach-orion5x/
1309 F:      arch/arm/plat-orion/
1310 F:      arch/arm/boot/dts/dove*
1311 F:      arch/arm/boot/dts/orion5x*
1312
1313
1314 ARM/Orion SoC/Technologic Systems TS-78xx platform support
1315 M:      Alexander Clouter <alex@digriz.org.uk>
1316 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1317 W:      http://www.digriz.org.uk/ts78xx/kernel
1318 S:      Maintained
1319 F:      arch/arm/mach-orion5x/ts78xx-*
1320
1321 ARM/Mediatek RTC DRIVER
1322 M:      Eddie Huang <eddie.huang@mediatek.com>
1323 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1324 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1325 S:      Maintained
1326 F:      drivers/rtc/rtc-mt6397.c
1327
1328 ARM/Mediatek SoC support
1329 M:      Matthias Brugger <matthias.bgg@gmail.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:      arch/arm/boot/dts/mt6*
1334 F:      arch/arm/boot/dts/mt8*
1335 F:      arch/arm/mach-mediatek/
1336 N:      mtk
1337 K:      mediatek
1338
1339 ARM/Mediatek USB3 PHY DRIVER
1340 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
1341 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1342 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1343 S:      Maintained
1344 F:      drivers/phy/phy-mt65xx-usb3.c
1345
1346 ARM/MICREL KS8695 ARCHITECTURE
1347 M:      Greg Ungerer <gerg@uclinux.org>
1348 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1349 F:      arch/arm/mach-ks8695/
1350 S:      Odd Fixes
1351
1352 ARM/MIOA701 MACHINE SUPPORT
1353 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1354 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1355 F:      arch/arm/mach-pxa/mioa701.c
1356 S:      Maintained
1357
1358 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1359 M:      Michael Petchkovsky <mkpetch@internode.on.net>
1360 S:      Maintained
1361
1362 ARM/NOMADIK ARCHITECTURE
1363 M:      Alessandro Rubini <rubini@unipv.it>
1364 M:      Linus Walleij <linus.walleij@linaro.org>
1365 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1366 S:      Maintained
1367 F:      arch/arm/mach-nomadik/
1368 F:      drivers/pinctrl/nomadik/
1369 F:      drivers/i2c/busses/i2c-nomadik.c
1370 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
1371
1372 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
1373 M:      Nelson Castillo <arhuaco@freaks-unidos.net>
1374 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
1375 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
1376 S:      Supported
1377
1378 ARM/TOSA MACHINE SUPPORT
1379 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1380 M:      Dirk Opfer <dirk@opfer-online.de>
1381 S:      Maintained
1382
1383 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
1384 M:      Marek Vasut <marek.vasut@gmail.com>
1385 L:      linux-arm-kernel@lists.infradead.org
1386 W:      http://hackndev.com
1387 S:      Maintained
1388 F:      arch/arm/mach-pxa/include/mach/palmtx.h
1389 F:      arch/arm/mach-pxa/palmtx.c
1390 F:      arch/arm/mach-pxa/include/mach/palmt5.h
1391 F:      arch/arm/mach-pxa/palmt5.c
1392 F:      arch/arm/mach-pxa/include/mach/palmld.h
1393 F:      arch/arm/mach-pxa/palmld.c
1394 F:      arch/arm/mach-pxa/include/mach/palmte2.h
1395 F:      arch/arm/mach-pxa/palmte2.c
1396 F:      arch/arm/mach-pxa/include/mach/palmtc.h
1397 F:      arch/arm/mach-pxa/palmtc.c
1398
1399 ARM/PALM TREO SUPPORT
1400 M:      Tomas Cech <sleep_walker@suse.com>
1401 L:      linux-arm-kernel@lists.infradead.org
1402 W:      http://hackndev.com
1403 S:      Maintained
1404 F:      arch/arm/mach-pxa/include/mach/palmtreo.h
1405 F:      arch/arm/mach-pxa/palmtreo.c
1406
1407 ARM/PALMZ72 SUPPORT
1408 M:      Sergey Lapin <slapin@ossfans.org>
1409 L:      linux-arm-kernel@lists.infradead.org
1410 W:      http://hackndev.com
1411 S:      Maintained
1412 F:      arch/arm/mach-pxa/include/mach/palmz72.h
1413 F:      arch/arm/mach-pxa/palmz72.c
1414
1415 ARM/PLEB SUPPORT
1416 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
1417 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1418 S:      Maintained
1419
1420 ARM/PT DIGITAL BOARD PORT
1421 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
1422 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1423 W:      http://www.arm.linux.org.uk/
1424 S:      Maintained
1425
1426 ARM/QUALCOMM SUPPORT
1427 M:      Andy Gross <andy.gross@linaro.org>
1428 M:      David Brown <david.brown@linaro.org>
1429 L:      linux-arm-msm@vger.kernel.org
1430 L:      linux-soc@vger.kernel.org
1431 S:      Maintained
1432 F:      arch/arm/boot/dts/qcom-*.dts
1433 F:      arch/arm/boot/dts/qcom-*.dtsi
1434 F:      arch/arm/mach-qcom/
1435 F:      arch/arm64/boot/dts/qcom/*
1436 F:      drivers/soc/qcom/
1437 F:      drivers/tty/serial/msm_serial.h
1438 F:      drivers/tty/serial/msm_serial.c
1439 F:      drivers/*/pm8???-*
1440 F:      drivers/mfd/ssbi.c
1441 F:      drivers/firmware/qcom_scm.c
1442 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/agross/linux.git
1443
1444 ARM/RADISYS ENP2611 MACHINE SUPPORT
1445 M:      Lennert Buytenhek <kernel@wantstofly.org>
1446 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1447 S:      Maintained
1448
1449 ARM/RENESAS ARM64 ARCHITECTURE
1450 M:      Simon Horman <horms@verge.net.au>
1451 M:      Magnus Damm <magnus.damm@gmail.com>
1452 L:      linux-renesas-soc@vger.kernel.org
1453 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
1454 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1455 S:      Supported
1456 F:      arch/arm64/boot/dts/renesas/
1457
1458 ARM/RISCPC ARCHITECTURE
1459 M:      Russell King <linux@arm.linux.org.uk>
1460 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1461 W:      http://www.arm.linux.org.uk/
1462 S:      Maintained
1463 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
1464 F:      arch/arm/include/asm/hardware/ioc.h
1465 F:      arch/arm/include/asm/hardware/iomd.h
1466 F:      arch/arm/include/asm/hardware/memc.h
1467 F:      arch/arm/mach-rpc/
1468 F:      drivers/net/ethernet/8390/etherh.c
1469 F:      drivers/net/ethernet/i825xx/ether1*
1470 F:      drivers/net/ethernet/seeq/ether3*
1471 F:      drivers/scsi/arm/
1472
1473 ARM/Rockchip SoC support
1474 M:      Heiko Stuebner <heiko@sntech.de>
1475 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1476 L:      linux-rockchip@lists.infradead.org
1477 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
1478 S:      Maintained
1479 F:      arch/arm/boot/dts/rk3*
1480 F:      arch/arm/mach-rockchip/
1481 F:      drivers/clk/rockchip/
1482 F:      drivers/i2c/busses/i2c-rk3x.c
1483 F:      drivers/*/*rockchip*
1484 F:      drivers/*/*/*rockchip*
1485 F:      sound/soc/rockchip/
1486 N:      rockchip
1487
1488 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
1489 M:      Kukjin Kim <kgene@kernel.org>
1490 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
1491 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1492 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1493 S:      Maintained
1494 F:      arch/arm/boot/dts/s3c*
1495 F:      arch/arm/boot/dts/s5p*
1496 F:      arch/arm/boot/dts/samsung*
1497 F:      arch/arm/boot/dts/exynos*
1498 F:      arch/arm64/boot/dts/exynos/
1499 F:      arch/arm/plat-samsung/
1500 F:      arch/arm/mach-s3c24*/
1501 F:      arch/arm/mach-s3c64xx/
1502 F:      arch/arm/mach-s5p*/
1503 F:      arch/arm/mach-exynos*/
1504 F:      drivers/*/*s3c2410*
1505 F:      drivers/*/*/*s3c2410*
1506 F:      drivers/spi/spi-s3c*
1507 F:      sound/soc/samsung/*
1508 F:      Documentation/arm/Samsung/
1509 F:      Documentation/devicetree/bindings/arm/samsung/
1510 F:      Documentation/devicetree/bindings/sram/samsung-sram.txt
1511 F:      Documentation/devicetree/bindings/power/pd-samsung.txt
1512 N:      exynos
1513
1514 ARM/SAMSUNG MOBILE MACHINE SUPPORT
1515 M:      Kyungmin Park <kyungmin.park@samsung.com>
1516 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1517 S:      Maintained
1518 F:      arch/arm/mach-s5pv210/
1519
1520 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1521 M:      Kyungmin Park <kyungmin.park@samsung.com>
1522 M:      Kamil Debski <k.debski@samsung.com>
1523 L:      linux-arm-kernel@lists.infradead.org
1524 L:      linux-media@vger.kernel.org
1525 S:      Maintained
1526 F:      drivers/media/platform/s5p-g2d/
1527
1528 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1529 M:      Kyungmin Park <kyungmin.park@samsung.com>
1530 M:      Kamil Debski <k.debski@samsung.com>
1531 M:      Jeongtae Park <jtp.park@samsung.com>
1532 L:      linux-arm-kernel@lists.infradead.org
1533 L:      linux-media@vger.kernel.org
1534 S:      Maintained
1535 F:      arch/arm/plat-samsung/s5p-dev-mfc.c
1536 F:      drivers/media/platform/s5p-mfc/
1537
1538 ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1539 M:      Kyungmin Park <kyungmin.park@samsung.com>
1540 M:      Tomasz Stanislawski <t.stanislaws@samsung.com>
1541 L:      linux-arm-kernel@lists.infradead.org
1542 L:      linux-media@vger.kernel.org
1543 S:      Maintained
1544 F:      drivers/media/platform/s5p-tv/
1545
1546 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
1547 M:      Andrzej Pietrasiewicz <andrzej.p@samsung.com>
1548 M:      Jacek Anaszewski <j.anaszewski@samsung.com>
1549 L:      linux-arm-kernel@lists.infradead.org
1550 L:      linux-media@vger.kernel.org
1551 S:      Maintained
1552 F:      drivers/media/platform/s5p-jpeg/
1553
1554 ARM/SHMOBILE ARM ARCHITECTURE
1555 M:      Simon Horman <horms@verge.net.au>
1556 M:      Magnus Damm <magnus.damm@gmail.com>
1557 L:      linux-renesas-soc@vger.kernel.org
1558 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
1559 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1560 S:      Supported
1561 F:      arch/arm/boot/dts/emev2*
1562 F:      arch/arm/boot/dts/r7s*
1563 F:      arch/arm/boot/dts/r8a*
1564 F:      arch/arm/boot/dts/sh*
1565 F:      arch/arm/configs/shmobile_defconfig
1566 F:      arch/arm/include/debug/renesas-scif.S
1567 F:      arch/arm/mach-shmobile/
1568 F:      drivers/sh/
1569
1570 ARM/SOCFPGA ARCHITECTURE
1571 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1572 S:      Maintained
1573 F:      arch/arm/mach-socfpga/
1574 F:      arch/arm/boot/dts/socfpga*
1575 F:      arch/arm/configs/socfpga_defconfig
1576 F:      arch/arm64/boot/dts/altera/
1577 W:      http://www.rocketboards.org
1578 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
1579
1580 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1581 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1582 S:      Maintained
1583 F:      drivers/clk/socfpga/
1584
1585 ARM/SOCFPGA EDAC SUPPORT
1586 M:      Thor Thayer <tthayer@opensource.altera.com>
1587 S:      Maintained
1588 F:      drivers/edac/altera_edac.
1589
1590 ARM/STI ARCHITECTURE
1591 M:      Srinivas Kandagatla <srinivas.kandagatla@gmail.com>
1592 M:      Maxime Coquelin <maxime.coquelin@st.com>
1593 M:      Patrice Chotard <patrice.chotard@st.com>
1594 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1595 L:      kernel@stlinux.com
1596 W:      http://www.stlinux.com
1597 S:      Maintained
1598 F:      arch/arm/mach-sti/
1599 F:      arch/arm/boot/dts/sti*
1600 F:      drivers/char/hw_random/st-rng.c
1601 F:      drivers/clocksource/arm_global_timer.c
1602 F:      drivers/clocksource/clksrc_st_lpc.c
1603 F:      drivers/i2c/busses/i2c-st.c
1604 F:      drivers/media/rc/st_rc.c
1605 F:      drivers/media/platform/sti/c8sectpfe/
1606 F:      drivers/mmc/host/sdhci-st.c
1607 F:      drivers/phy/phy-miphy28lp.c
1608 F:      drivers/phy/phy-miphy365x.c
1609 F:      drivers/phy/phy-stih407-usb.c
1610 F:      drivers/phy/phy-stih41x-usb.c
1611 F:      drivers/pinctrl/pinctrl-st.c
1612 F:      drivers/reset/sti/
1613 F:      drivers/rtc/rtc-st-lpc.c
1614 F:      drivers/tty/serial/st-asc.c
1615 F:      drivers/usb/dwc3/dwc3-st.c
1616 F:      drivers/usb/host/ehci-st.c
1617 F:      drivers/usb/host/ohci-st.c
1618 F:      drivers/watchdog/st_lpc_wdt.c
1619 F:      drivers/ata/ahci_st.c
1620
1621 ARM/STM32 ARCHITECTURE
1622 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
1623 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1624 S:      Maintained
1625 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git
1626 N:      stm32
1627 F:      drivers/clocksource/armv7m_systick.c
1628
1629 ARM/TANGO ARCHITECTURE
1630 M:      Marc Gonzalez <marc_gonzalez@sigmadesigns.com>
1631 L:      linux-arm-kernel@lists.infradead.org
1632 S:      Maintained
1633 F:      arch/arm/mach-tango/
1634 F:      arch/arm/boot/dts/tango*
1635
1636 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
1637 M:      Lennert Buytenhek <kernel@wantstofly.org>
1638 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1639 S:      Maintained
1640
1641 ARM/TETON BGA MACHINE SUPPORT
1642 M:      "Mark F. Brown" <mark.brown314@gmail.com>
1643 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1644 S:      Maintained
1645
1646 ARM/THECUS N2100 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/NUVOTON W90X900 ARM ARCHITECTURE
1652 M:      Wan ZongShun <mcuos.com@gmail.com>
1653 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1654 W:      http://www.mcuos.com
1655 S:      Maintained
1656 F:      arch/arm/mach-w90x900/
1657 F:      drivers/input/keyboard/w90p910_keypad.c
1658 F:      drivers/input/touchscreen/w90p910_ts.c
1659 F:      drivers/watchdog/nuc900_wdt.c
1660 F:      drivers/net/ethernet/nuvoton/w90p910_ether.c
1661 F:      drivers/mtd/nand/nuc900_nand.c
1662 F:      drivers/rtc/rtc-nuc900.c
1663 F:      drivers/spi/spi-nuc900.c
1664 F:      drivers/usb/host/ehci-w90x900.c
1665 F:      drivers/video/fbdev/nuc900fb.c
1666
1667 ARM/U300 MACHINE SUPPORT
1668 M:      Linus Walleij <linus.walleij@linaro.org>
1669 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1670 S:      Supported
1671 F:      arch/arm/mach-u300/
1672 F:      drivers/clocksource/timer-u300.c
1673 F:      drivers/i2c/busses/i2c-stu300.c
1674 F:      drivers/rtc/rtc-coh901331.c
1675 F:      drivers/watchdog/coh901327_wdt.c
1676 F:      drivers/dma/coh901318*
1677 F:      drivers/mfd/ab3100*
1678 F:      drivers/rtc/rtc-ab3100.c
1679 F:      drivers/rtc/rtc-coh901331.c
1680 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1681
1682 ARM/UNIPHIER ARCHITECTURE
1683 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
1684 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1685 S:      Maintained
1686 F:      arch/arm/boot/dts/uniphier*
1687 F:      arch/arm/include/asm/hardware/cache-uniphier.h
1688 F:      arch/arm/mach-uniphier/
1689 F:      arch/arm/mm/cache-uniphier.c
1690 F:      arch/arm64/boot/dts/socionext/
1691 F:      drivers/bus/uniphier-system-bus.c
1692 F:      drivers/i2c/busses/i2c-uniphier*
1693 F:      drivers/pinctrl/uniphier/
1694 F:      drivers/tty/serial/8250/8250_uniphier.c
1695 N:      uniphier
1696
1697 ARM/Ux500 ARM ARCHITECTURE
1698 M:      Linus Walleij <linus.walleij@linaro.org>
1699 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1700 S:      Maintained
1701 F:      arch/arm/mach-ux500/
1702 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
1703 F:      drivers/dma/ste_dma40*
1704 F:      drivers/hwspinlock/u8500_hsem.c
1705 F:      drivers/mfd/abx500*
1706 F:      drivers/mfd/ab8500*
1707 F:      drivers/mfd/dbx500*
1708 F:      drivers/mfd/db8500*
1709 F:      drivers/pinctrl/nomadik/pinctrl-ab*
1710 F:      drivers/pinctrl/nomadik/pinctrl-nomadik*
1711 F:      drivers/rtc/rtc-ab8500.c
1712 F:      drivers/rtc/rtc-pl031.c
1713 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1714
1715 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
1716 M:      Ulf Hansson <ulf.hansson@linaro.org>
1717 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1718 T:      git git://git.linaro.org/people/ulfh/clk.git
1719 S:      Maintained
1720 F:      drivers/clk/ux500/
1721 F:      include/linux/platform_data/clk-ux500.h
1722
1723 ARM/VERSATILE EXPRESS PLATFORM
1724 M:      Liviu Dudau <liviu.dudau@arm.com>
1725 M:      Sudeep Holla <sudeep.holla@arm.com>
1726 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
1727 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1728 S:      Maintained
1729 F:      arch/arm/boot/dts/vexpress*
1730 F:      arch/arm64/boot/dts/arm/
1731 F:      arch/arm/mach-vexpress/
1732 F:      */*/vexpress*
1733 F:      */*/*/vexpress*
1734 F:      drivers/clk/versatile/clk-vexpress-osc.c
1735 F:      drivers/clocksource/versatile.c
1736
1737 ARM/VFP SUPPORT
1738 M:      Russell King <linux@arm.linux.org.uk>
1739 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1740 W:      http://www.arm.linux.org.uk/
1741 S:      Maintained
1742 F:      arch/arm/vfp/
1743
1744 ARM/VOIPAC PXA270 SUPPORT
1745 M:      Marek Vasut <marek.vasut@gmail.com>
1746 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1747 S:      Maintained
1748 F:      arch/arm/mach-pxa/vpac270.c
1749 F:      arch/arm/mach-pxa/include/mach/vpac270.h
1750
1751 ARM/VT8500 ARM ARCHITECTURE
1752 M:      Tony Prisk <linux@prisktech.co.nz>
1753 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1754 S:      Maintained
1755 F:      arch/arm/mach-vt8500/
1756 F:      drivers/clocksource/vt8500_timer.c
1757 F:      drivers/i2c/busses/i2c-wmt.c
1758 F:      drivers/mmc/host/wmt-sdmmc.c
1759 F:      drivers/pwm/pwm-vt8500.c
1760 F:      drivers/rtc/rtc-vt8500.c
1761 F:      drivers/tty/serial/vt8500_serial.c
1762 F:      drivers/usb/host/ehci-platform.c
1763 F:      drivers/usb/host/uhci-platform.c
1764 F:      drivers/video/fbdev/vt8500lcdfb.*
1765 F:      drivers/video/fbdev/wm8505fb*
1766 F:      drivers/video/fbdev/wmt_ge_rops.*
1767
1768 ARM/ZIPIT Z2 SUPPORT
1769 M:      Marek Vasut <marek.vasut@gmail.com>
1770 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1771 S:      Maintained
1772 F:      arch/arm/mach-pxa/z2.c
1773 F:      arch/arm/mach-pxa/include/mach/z2.h
1774
1775 ARM/ZTE ARCHITECTURE
1776 M:      Jun Nie <jun.nie@linaro.org>
1777 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1778 S:      Maintained
1779 F:      arch/arm/mach-zx/
1780 F:      drivers/clk/zte/
1781 F:      Documentation/devicetree/bindings/arm/zte.txt
1782 F:      Documentation/devicetree/bindings/clock/zx296702-clk.txt
1783
1784 ARM/ZYNQ ARCHITECTURE
1785 M:      Michal Simek <michal.simek@xilinx.com>
1786 R:      Sören Brinkmann <soren.brinkmann@xilinx.com>
1787 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1788 W:      http://wiki.xilinx.com
1789 T:      git https://github.com/Xilinx/linux-xlnx.git
1790 S:      Supported
1791 F:      arch/arm/mach-zynq/
1792 F:      drivers/cpuidle/cpuidle-zynq.c
1793 F:      drivers/block/xsysace.c
1794 N:      zynq
1795 N:      xilinx
1796 F:      drivers/clocksource/cadence_ttc_timer.c
1797 F:      drivers/i2c/busses/i2c-cadence.c
1798 F:      drivers/mmc/host/sdhci-of-arasan.c
1799 F:      drivers/edac/synopsys_edac.c
1800
1801 ARM SMMU DRIVERS
1802 M:      Will Deacon <will.deacon@arm.com>
1803 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1804 S:      Maintained
1805 F:      drivers/iommu/arm-smmu.c
1806 F:      drivers/iommu/arm-smmu-v3.c
1807 F:      drivers/iommu/io-pgtable-arm.c
1808
1809 ARM64 PORT (AARCH64 ARCHITECTURE)
1810 M:      Catalin Marinas <catalin.marinas@arm.com>
1811 M:      Will Deacon <will.deacon@arm.com>
1812 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1813 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
1814 S:      Maintained
1815 F:      arch/arm64/
1816 F:      Documentation/arm64/
1817
1818 AS3645A LED FLASH CONTROLLER DRIVER
1819 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1820 L:      linux-media@vger.kernel.org
1821 T:      git git://linuxtv.org/media_tree.git
1822 S:      Maintained
1823 F:      drivers/media/i2c/as3645a.c
1824 F:      include/media/i2c/as3645a.h
1825
1826 ASC7621 HARDWARE MONITOR DRIVER
1827 M:      George Joseph <george.joseph@fairview5.com>
1828 L:      lm-sensors@lm-sensors.org
1829 S:      Maintained
1830 F:      Documentation/hwmon/asc7621
1831 F:      drivers/hwmon/asc7621.c
1832
1833 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
1834 M:      Corentin Chary <corentin.chary@gmail.com>
1835 L:      acpi4asus-user@lists.sourceforge.net
1836 L:      platform-driver-x86@vger.kernel.org
1837 W:      http://acpi4asus.sf.net
1838 S:      Maintained
1839 F:      drivers/platform/x86/asus*.c
1840 F:      drivers/platform/x86/eeepc*.c
1841
1842 ASUS WIRELESS RADIO CONTROL DRIVER
1843 M:      JoĂ£o Paulo Rechi Vita <jprvita@gmail.com>
1844 L:      platform-driver-x86@vger.kernel.org
1845 S:      Maintained
1846 F:      drivers/platform/x86/asus-wireless.c
1847
1848 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
1849 R:      Dan Williams <dan.j.williams@intel.com>
1850 W:      http://sourceforge.net/projects/xscaleiop
1851 S:      Odd fixes
1852 F:      Documentation/crypto/async-tx-api.txt
1853 F:      crypto/async_tx/
1854 F:      drivers/dma/
1855 F:      include/linux/dmaengine.h
1856 F:      include/linux/async_tx.h
1857
1858 AT24 EEPROM DRIVER
1859 M:      Wolfram Sang <wsa@the-dreams.de>
1860 L:      linux-i2c@vger.kernel.org
1861 S:      Maintained
1862 F:      drivers/misc/eeprom/at24.c
1863 F:      include/linux/platform_data/at24.h
1864
1865 ATA OVER ETHERNET (AOE) DRIVER
1866 M:      "Ed L. Cashin" <ed.cashin@acm.org>
1867 W:      http://www.openaoe.org/
1868 S:      Supported
1869 F:      Documentation/aoe/
1870 F:      drivers/block/aoe/
1871
1872 ATHEROS 71XX/9XXX GPIO DRIVER
1873 M:      Alban Bedel <albeu@free.fr>
1874 W:      https://github.com/AlbanBedel/linux
1875 T:      git git://github.com/AlbanBedel/linux
1876 S:      Maintained
1877 F:      drivers/gpio/gpio-ath79.c
1878 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
1879
1880 ATHEROS ATH GENERIC UTILITIES
1881 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1882 L:      linux-wireless@vger.kernel.org
1883 S:      Supported
1884 F:      drivers/net/wireless/ath/*
1885
1886 ATHEROS ATH5K WIRELESS DRIVER
1887 M:      Jiri Slaby <jirislaby@gmail.com>
1888 M:      Nick Kossifidis <mickflemm@gmail.com>
1889 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1890 L:      linux-wireless@vger.kernel.org
1891 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
1892 S:      Maintained
1893 F:      drivers/net/wireless/ath/ath5k/
1894
1895 ATHEROS ATH6KL WIRELESS DRIVER
1896 M:      Kalle Valo <kvalo@qca.qualcomm.com>
1897 L:      linux-wireless@vger.kernel.org
1898 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
1899 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
1900 S:      Supported
1901 F:      drivers/net/wireless/ath/ath6kl/
1902
1903 WILOCITY WIL6210 WIRELESS DRIVER
1904 M:      Maya Erez <qca_merez@qca.qualcomm.com>
1905 L:      linux-wireless@vger.kernel.org
1906 L:      wil6210@qca.qualcomm.com
1907 S:      Supported
1908 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
1909 F:      drivers/net/wireless/ath/wil6210/
1910 F:      include/uapi/linux/wil6210_uapi.h
1911
1912 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1913 M:      Christian Lamparter <chunkeey@googlemail.com>
1914 L:      linux-wireless@vger.kernel.org
1915 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
1916 S:      Maintained
1917 F:      drivers/net/wireless/ath/carl9170/
1918
1919 ATK0110 HWMON DRIVER
1920 M:      Luca Tettamanti <kronos.it@gmail.com>
1921 L:      lm-sensors@lm-sensors.org
1922 S:      Maintained
1923 F:      drivers/hwmon/asus_atk0110.c
1924
1925 ATI_REMOTE2 DRIVER
1926 M:      Ville Syrjala <syrjala@sci.fi>
1927 S:      Maintained
1928 F:      drivers/input/misc/ati_remote2.c
1929
1930 ATLX ETHERNET DRIVERS
1931 M:      Jay Cliburn <jcliburn@gmail.com>
1932 M:      Chris Snook <chris.snook@gmail.com>
1933 L:      netdev@vger.kernel.org
1934 W:      http://sourceforge.net/projects/atl1
1935 W:      http://atl1.sourceforge.net
1936 S:      Maintained
1937 F:      drivers/net/ethernet/atheros/
1938
1939 ATM
1940 M:      Chas Williams <3chas3@gmail.com>
1941 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
1942 L:      netdev@vger.kernel.org
1943 W:      http://linux-atm.sourceforge.net
1944 S:      Maintained
1945 F:      drivers/atm/
1946 F:      include/linux/atm*
1947 F:      include/uapi/linux/atm*
1948
1949 ATMEL AT91 / AT32 MCI DRIVER
1950 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1951 S:      Maintained
1952 F:      drivers/mmc/host/atmel-mci.c
1953
1954 ATMEL AT91 / AT32 SERIAL DRIVER
1955 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1956 S:      Supported
1957 F:      drivers/tty/serial/atmel_serial.c
1958
1959 ATMEL Audio ALSA driver
1960 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1961 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1962 S:      Supported
1963 F:      sound/soc/atmel
1964
1965 ATMEL DMA DRIVER
1966 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1967 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1968 S:      Supported
1969 F:      drivers/dma/at_hdmac.c
1970 F:      drivers/dma/at_hdmac_regs.h
1971 F:      include/linux/platform_data/dma-atmel.h
1972
1973 ATMEL XDMA DRIVER
1974 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1975 L:      linux-arm-kernel@lists.infradead.org
1976 L:      dmaengine@vger.kernel.org
1977 S:      Supported
1978 F:      drivers/dma/at_xdmac.c
1979
1980 ATMEL I2C DRIVER
1981 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1982 L:      linux-i2c@vger.kernel.org
1983 S:      Supported
1984 F:      drivers/i2c/busses/i2c-at91.c
1985
1986 ATMEL ISI DRIVER
1987 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1988 L:      linux-media@vger.kernel.org
1989 S:      Supported
1990 F:      drivers/media/platform/soc_camera/atmel-isi.c
1991 F:      include/media/atmel-isi.h
1992
1993 ATMEL LCDFB DRIVER
1994 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1995 L:      linux-fbdev@vger.kernel.org
1996 S:      Maintained
1997 F:      drivers/video/fbdev/atmel_lcdfb.c
1998 F:      include/video/atmel_lcdc.h
1999
2000 ATMEL MACB ETHERNET DRIVER
2001 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2002 S:      Supported
2003 F:      drivers/net/ethernet/cadence/
2004
2005 ATMEL NAND DRIVER
2006 M:      Wenyou Yang <wenyou.yang@atmel.com>
2007 M:      Josh Wu <rainyfeeling@outlook.com>
2008 L:      linux-mtd@lists.infradead.org
2009 S:      Supported
2010 F:      drivers/mtd/nand/atmel_nand*
2011
2012 ATMEL SDMMC DRIVER
2013 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
2014 L:      linux-mmc@vger.kernel.org
2015 S:      Supported
2016 F:      drivers/mmc/host/sdhci-of-at91.c
2017
2018 ATMEL SPI DRIVER
2019 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2020 S:      Supported
2021 F:      drivers/spi/spi-atmel.*
2022
2023 ATMEL SSC DRIVER
2024 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2025 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2026 S:      Supported
2027 F:      drivers/misc/atmel-ssc.c
2028 F:      include/linux/atmel-ssc.h
2029
2030 ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
2031 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2032 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2033 S:      Supported
2034 F:      drivers/misc/atmel_tclib.c
2035 F:      drivers/clocksource/tcb_clksrc.c
2036
2037 ATMEL USBA UDC DRIVER
2038 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2039 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2040 S:      Supported
2041 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
2042
2043 ATMEL WIRELESS DRIVER
2044 M:      Simon Kelley <simon@thekelleys.org.uk>
2045 L:      linux-wireless@vger.kernel.org
2046 W:      http://www.thekelleys.org.uk/atmel
2047 W:      http://atmelwlandriver.sourceforge.net/
2048 S:      Maintained
2049 F:      drivers/net/wireless/atmel/atmel*
2050
2051 ATMEL MAXTOUCH DRIVER
2052 M:      Nick Dyer <nick.dyer@itdev.co.uk>
2053 T:      git git://github.com/atmel-maxtouch/linux.git
2054 S:      Supported
2055 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2056 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2057 F:      include/linux/platform_data/atmel_mxt_ts.h
2058
2059 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2060 M:      Bradley Grove <linuxdrivers@attotech.com>
2061 L:      linux-scsi@vger.kernel.org
2062 W:      http://www.attotech.com
2063 S:      Supported
2064 F:      drivers/scsi/esas2r
2065
2066 ATUSB IEEE 802.15.4 RADIO DRIVER
2067 M:      Stefan Schmidt <stefan@osg.samsung.com>
2068 L:      linux-wpan@vger.kernel.org
2069 S:      Maintained
2070 F:      drivers/net/ieee802154/atusb.c
2071 F:      drivers/net/ieee802154/atusb.h
2072 F:      drivers/net/ieee802154/at86rf230.h
2073
2074 AUDIT SUBSYSTEM
2075 M:      Paul Moore <paul@paul-moore.com>
2076 M:      Eric Paris <eparis@redhat.com>
2077 L:      linux-audit@redhat.com (moderated for non-subscribers)
2078 W:      http://people.redhat.com/sgrubb/audit/
2079 T:      git git://git.infradead.org/users/pcmoore/audit
2080 S:      Maintained
2081 F:      include/linux/audit.h
2082 F:      include/uapi/linux/audit.h
2083 F:      kernel/audit*
2084
2085 AUXILIARY DISPLAY DRIVERS
2086 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2087 W:      http://miguelojeda.es/auxdisplay.htm
2088 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2089 S:      Maintained
2090 F:      drivers/auxdisplay/
2091 F:      include/linux/cfag12864b.h
2092
2093 AVR32 ARCHITECTURE
2094 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
2095 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
2096 W:      http://www.atmel.com/products/AVR32/
2097 W:      http://mirror.egtvedt.no/avr32linux.org/
2098 W:      http://avrfreaks.net/
2099 S:      Maintained
2100 F:      arch/avr32/
2101
2102 AVR32/AT32AP MACHINE SUPPORT
2103 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
2104 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
2105 S:      Maintained
2106 F:      arch/avr32/mach-at32ap/
2107
2108 AX.25 NETWORK LAYER
2109 M:      Ralf Baechle <ralf@linux-mips.org>
2110 L:      linux-hams@vger.kernel.org
2111 W:      http://www.linux-ax25.org/
2112 S:      Maintained
2113 F:      include/uapi/linux/ax25.h
2114 F:      include/net/ax25.h
2115 F:      net/ax25/
2116
2117 AZ6007 DVB DRIVER
2118 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2119 L:      linux-media@vger.kernel.org
2120 W:      https://linuxtv.org
2121 T:      git git://linuxtv.org/media_tree.git
2122 S:      Maintained
2123 F:      drivers/media/usb/dvb-usb-v2/az6007.c
2124
2125 AZTECH FM RADIO RECEIVER DRIVER
2126 M:      Hans Verkuil <hverkuil@xs4all.nl>
2127 L:      linux-media@vger.kernel.org
2128 T:      git git://linuxtv.org/media_tree.git
2129 W:      https://linuxtv.org
2130 S:      Maintained
2131 F:      drivers/media/radio/radio-aztech*
2132
2133 B43 WIRELESS DRIVER
2134 L:      linux-wireless@vger.kernel.org
2135 L:      b43-dev@lists.infradead.org
2136 W:      http://wireless.kernel.org/en/users/Drivers/b43
2137 S:      Odd Fixes
2138 F:      drivers/net/wireless/broadcom/b43/
2139
2140 B43LEGACY WIRELESS DRIVER
2141 M:      Larry Finger <Larry.Finger@lwfinger.net>
2142 L:      linux-wireless@vger.kernel.org
2143 L:      b43-dev@lists.infradead.org
2144 W:      http://wireless.kernel.org/en/users/Drivers/b43
2145 S:      Maintained
2146 F:      drivers/net/wireless/broadcom/b43legacy/
2147
2148 BACKLIGHT CLASS/SUBSYSTEM
2149 M:      Jingoo Han <jingoohan1@gmail.com>
2150 M:      Lee Jones <lee.jones@linaro.org>
2151 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
2152 S:      Maintained
2153 F:      drivers/video/backlight/
2154 F:      include/linux/backlight.h
2155
2156 BATMAN ADVANCED
2157 M:      Marek Lindner <mareklindner@neomailbox.ch>
2158 M:      Simon Wunderlich <sw@simonwunderlich.de>
2159 M:      Antonio Quartulli <a@unstable.cc>
2160 L:      b.a.t.m.a.n@lists.open-mesh.org
2161 W:      https://www.open-mesh.org/
2162 Q:      https://patchwork.open-mesh.org/project/batman/list/
2163 S:      Maintained
2164 F:      net/batman-adv/
2165
2166 BAYCOM/HDLCDRV DRIVERS FOR AX.25
2167 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
2168 L:      linux-hams@vger.kernel.org
2169 W:      http://www.baycom.org/~tom/ham/ham.html
2170 S:      Maintained
2171 F:      drivers/net/hamradio/baycom*
2172
2173 BCACHE (BLOCK LAYER CACHE)
2174 M:      Kent Overstreet <kent.overstreet@gmail.com>
2175 L:      linux-bcache@vger.kernel.org
2176 W:      http://bcache.evilpiepirate.org
2177 S:      Maintained
2178 F:      drivers/md/bcache/
2179
2180 BDISP ST MEDIA DRIVER
2181 M:      Fabien Dessenne <fabien.dessenne@st.com>
2182 L:      linux-media@vger.kernel.org
2183 T:      git git://linuxtv.org/media_tree.git
2184 W:      https://linuxtv.org
2185 S:      Supported
2186 F:      drivers/media/platform/sti/bdisp
2187
2188 BEFS FILE SYSTEM
2189 S:      Orphan
2190 F:      Documentation/filesystems/befs.txt
2191 F:      fs/befs/
2192
2193 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
2194 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
2195 L:      netdev@vger.kernel.org
2196 S:      Maintained
2197 F:      drivers/net/ethernet/ec_bhf.c
2198
2199 BFS FILE SYSTEM
2200 M:      "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
2201 S:      Maintained
2202 F:      Documentation/filesystems/bfs.txt
2203 F:      fs/bfs/
2204 F:      include/uapi/linux/bfs_fs.h
2205
2206 BLACKFIN ARCHITECTURE
2207 M:      Steven Miao <realmz6@gmail.com>
2208 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2209 T:      git git://git.code.sf.net/p/adi-linux/code
2210 W:      http://blackfin.uclinux.org
2211 S:      Supported
2212 F:      arch/blackfin/
2213
2214 BLACKFIN EMAC DRIVER
2215 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2216 W:      http://blackfin.uclinux.org
2217 S:      Supported
2218 F:      drivers/net/ethernet/adi/
2219
2220 BLACKFIN RTC DRIVER
2221 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2222 W:      http://blackfin.uclinux.org
2223 S:      Supported
2224 F:      drivers/rtc/rtc-bfin.c
2225
2226 BLACKFIN SDH DRIVER
2227 M:      Sonic Zhang <sonic.zhang@analog.com>
2228 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2229 W:      http://blackfin.uclinux.org
2230 S:      Supported
2231 F:      drivers/mmc/host/bfin_sdh.c
2232
2233 BLACKFIN SERIAL DRIVER
2234 M:      Sonic Zhang <sonic.zhang@analog.com>
2235 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2236 W:      http://blackfin.uclinux.org
2237 S:      Supported
2238 F:      drivers/tty/serial/bfin_uart.c
2239
2240 BLACKFIN WATCHDOG DRIVER
2241 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2242 W:      http://blackfin.uclinux.org
2243 S:      Supported
2244 F:      drivers/watchdog/bfin_wdt.c
2245
2246 BLACKFIN I2C TWI DRIVER
2247 M:      Sonic Zhang <sonic.zhang@analog.com>
2248 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2249 W:      http://blackfin.uclinux.org/
2250 S:      Supported
2251 F:      drivers/i2c/busses/i2c-bfin-twi.c
2252
2253 BLACKFIN MEDIA DRIVER
2254 M:      Scott Jiang <scott.jiang.linux@gmail.com>
2255 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2256 W:      http://blackfin.uclinux.org/
2257 S:      Supported
2258 F:      drivers/media/platform/blackfin/
2259 F:      drivers/media/i2c/adv7183*
2260 F:      drivers/media/i2c/vs6624*
2261
2262 BLINKM RGB LED DRIVER
2263 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
2264 S:      Maintained
2265 F:      drivers/leds/leds-blinkm.c
2266
2267 BLOCK LAYER
2268 M:      Jens Axboe <axboe@kernel.dk>
2269 L:      linux-block@vger.kernel.org
2270 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
2271 S:      Maintained
2272 F:      block/
2273 F:      kernel/trace/blktrace.c
2274
2275 BLOCK2MTD DRIVER
2276 M:      Joern Engel <joern@lazybastard.org>
2277 L:      linux-mtd@lists.infradead.org
2278 S:      Maintained
2279 F:      drivers/mtd/devices/block2mtd.c
2280
2281 BLUETOOTH DRIVERS
2282 M:      Marcel Holtmann <marcel@holtmann.org>
2283 M:      Gustavo Padovan <gustavo@padovan.org>
2284 M:      Johan Hedberg <johan.hedberg@gmail.com>
2285 L:      linux-bluetooth@vger.kernel.org
2286 W:      http://www.bluez.org/
2287 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2288 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2289 S:      Maintained
2290 F:      drivers/bluetooth/
2291
2292 BLUETOOTH SUBSYSTEM
2293 M:      Marcel Holtmann <marcel@holtmann.org>
2294 M:      Gustavo Padovan <gustavo@padovan.org>
2295 M:      Johan Hedberg <johan.hedberg@gmail.com>
2296 L:      linux-bluetooth@vger.kernel.org
2297 W:      http://www.bluez.org/
2298 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2299 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2300 S:      Maintained
2301 F:      net/bluetooth/
2302 F:      include/net/bluetooth/
2303
2304 BONDING DRIVER
2305 M:      Jay Vosburgh <j.vosburgh@gmail.com>
2306 M:      Veaceslav Falico <vfalico@gmail.com>
2307 M:      Andy Gospodarek <gospo@cumulusnetworks.com>
2308 L:      netdev@vger.kernel.org
2309 W:      http://sourceforge.net/projects/bonding/
2310 S:      Supported
2311 F:      drivers/net/bonding/
2312 F:      include/uapi/linux/if_bonding.h
2313
2314 BPF (Safe dynamic programs and tools)
2315 M:      Alexei Starovoitov <ast@kernel.org>
2316 L:      netdev@vger.kernel.org
2317 L:      linux-kernel@vger.kernel.org
2318 S:      Supported
2319 F:      kernel/bpf/
2320
2321 BROADCOM B44 10/100 ETHERNET DRIVER
2322 M:      Gary Zambrano <zambrano@broadcom.com>
2323 L:      netdev@vger.kernel.org
2324 S:      Supported
2325 F:      drivers/net/ethernet/broadcom/b44.*
2326
2327 BROADCOM GENET ETHERNET DRIVER
2328 M:      Florian Fainelli <f.fainelli@gmail.com>
2329 L:      netdev@vger.kernel.org
2330 S:      Supported
2331 F:      drivers/net/ethernet/broadcom/genet/
2332
2333 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
2334 M:      Sony Chacko <sony.chacko@qlogic.com>
2335 M:      Dept-HSGLinuxNICDev@qlogic.com
2336 L:      netdev@vger.kernel.org
2337 S:      Supported
2338 F:      drivers/net/ethernet/broadcom/bnx2.*
2339 F:      drivers/net/ethernet/broadcom/bnx2_*
2340
2341 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
2342 M:      Ariel Elior <ariel.elior@qlogic.com>
2343 L:      netdev@vger.kernel.org
2344 S:      Supported
2345 F:      drivers/net/ethernet/broadcom/bnx2x/
2346
2347 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
2348 M:      Florian Fainelli <f.fainelli@gmail.com>
2349 M:      Ray Jui <rjui@broadcom.com>
2350 M:      Scott Branden <sbranden@broadcom.com>
2351 L:      bcm-kernel-feedback-list@broadcom.com
2352 T:      git git://github.com/broadcom/mach-bcm
2353 S:      Maintained
2354 F:      arch/arm/mach-bcm/
2355 F:      arch/arm/boot/dts/bcm113*
2356 F:      arch/arm/boot/dts/bcm216*
2357 F:      arch/arm/boot/dts/bcm281*
2358 F:      arch/arm64/boot/dts/broadcom/
2359 F:      arch/arm/configs/bcm_defconfig
2360 F:      drivers/mmc/host/sdhci-bcm-kona.c
2361 F:      drivers/clocksource/bcm_kona_timer.c
2362
2363 BROADCOM BCM2835 ARM ARCHITECTURE
2364 M:      Stephen Warren <swarren@wwwdotorg.org>
2365 M:      Lee Jones <lee@kernel.org>
2366 M:      Eric Anholt <eric@anholt.net>
2367 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
2368 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2369 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rpi/linux-rpi.git
2370 S:      Maintained
2371 N:      bcm2835
2372
2373 BROADCOM BCM47XX MIPS ARCHITECTURE
2374 M:      Hauke Mehrtens <hauke@hauke-m.de>
2375 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2376 L:      linux-mips@linux-mips.org
2377 S:      Maintained
2378 F:      arch/mips/bcm47xx/*
2379 F:      arch/mips/include/asm/mach-bcm47xx/*
2380
2381 BROADCOM BCM5301X ARM ARCHITECTURE
2382 M:      Hauke Mehrtens <hauke@hauke-m.de>
2383 L:      linux-arm-kernel@lists.infradead.org
2384 S:      Maintained
2385 F:      arch/arm/mach-bcm/bcm_5301x.c
2386 F:      arch/arm/boot/dts/bcm5301x.dtsi
2387 F:      arch/arm/boot/dts/bcm470*
2388
2389 BROADCOM BCM63XX ARM ARCHITECTURE
2390 M:      Florian Fainelli <f.fainelli@gmail.com>
2391 L:      linux-arm-kernel@lists.infradead.org
2392 T:      git git://github.com/broadcom/arm-bcm63xx.git
2393 S:      Maintained
2394 F:      arch/arm/mach-bcm/bcm63xx.c
2395 F:      arch/arm/include/debug/bcm63xx.S
2396
2397 BROADCOM BCM63XX/BCM33XX UDC DRIVER
2398 M:      Kevin Cernekee <cernekee@gmail.com>
2399 L:      linux-usb@vger.kernel.org
2400 S:      Maintained
2401 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
2402
2403 BROADCOM BCM7XXX ARM ARCHITECTURE
2404 M:      Brian Norris <computersforpeace@gmail.com>
2405 M:      Gregory Fong <gregory.0xf0@gmail.com>
2406 M:      Florian Fainelli <f.fainelli@gmail.com>
2407 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2408 L:      bcm-kernel-feedback-list@broadcom.com
2409 T:      git git://github.com/broadcom/stblinux.git
2410 S:      Maintained
2411 F:      arch/arm/mach-bcm/*brcmstb*
2412 F:      arch/arm/boot/dts/bcm7*.dts*
2413 F:      drivers/bus/brcmstb_gisb.c
2414 N:      brcmstb
2415
2416 BROADCOM BMIPS MIPS ARCHITECTURE
2417 M:      Kevin Cernekee <cernekee@gmail.com>
2418 M:      Florian Fainelli <f.fainelli@gmail.com>
2419 L:      linux-mips@linux-mips.org
2420 T:      git git://github.com/broadcom/stblinux.git
2421 S:      Maintained
2422 F:      arch/mips/bmips/*
2423 F:      arch/mips/include/asm/mach-bmips/*
2424 F:      arch/mips/kernel/*bmips*
2425 F:      arch/mips/boot/dts/brcm/bcm*.dts*
2426 F:      drivers/irqchip/irq-bcm7*
2427 F:      drivers/irqchip/irq-brcmstb*
2428 F:      include/linux/bcm963xx_nvram.h
2429 F:      include/linux/bcm963xx_tag.h
2430
2431 BROADCOM TG3 GIGABIT ETHERNET DRIVER
2432 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
2433 M:      Prashant Sreedharan <prashant@broadcom.com>
2434 M:      Michael Chan <mchan@broadcom.com>
2435 L:      netdev@vger.kernel.org
2436 S:      Supported
2437 F:      drivers/net/ethernet/broadcom/tg3.*
2438
2439 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2440 M:      Brett Rudley <brudley@broadcom.com>
2441 M:      Arend van Spriel <arend@broadcom.com>
2442 M:      Franky (Zhenhui) Lin <frankyl@broadcom.com>
2443 M:      Hante Meuleman <meuleman@broadcom.com>
2444 L:      linux-wireless@vger.kernel.org
2445 L:      brcm80211-dev-list@broadcom.com
2446 S:      Supported
2447 F:      drivers/net/wireless/broadcom/brcm80211/
2448
2449 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
2450 M:      QLogic-Storage-Upstream@qlogic.com
2451 L:      linux-scsi@vger.kernel.org
2452 S:      Supported
2453 F:      drivers/scsi/bnx2fc/
2454
2455 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
2456 M:      QLogic-Storage-Upstream@qlogic.com
2457 L:      linux-scsi@vger.kernel.org
2458 S:      Supported
2459 F:      drivers/scsi/bnx2i/
2460
2461 BROADCOM IPROC ARM ARCHITECTURE
2462 M:      Ray Jui <rjui@broadcom.com>
2463 M:      Scott Branden <sbranden@broadcom.com>
2464 M:      Jon Mason <jonmason@broadcom.com>
2465 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2466 L:      bcm-kernel-feedback-list@broadcom.com
2467 T:      git git://github.com/broadcom/cygnus-linux.git
2468 S:      Maintained
2469 N:      iproc
2470 N:      cygnus
2471 N:      nsp
2472 N:      bcm9113*
2473 N:      bcm9583*
2474 N:      bcm9585*
2475 N:      bcm9586*
2476 N:      bcm988312
2477 N:      bcm113*
2478 N:      bcm583*
2479 N:      bcm585*
2480 N:      bcm586*
2481 N:      bcm88312
2482
2483 BROADCOM BRCMSTB GPIO DRIVER
2484 M:      Gregory Fong <gregory.0xf0@gmail.com>
2485 L:      bcm-kernel-feedback-list@broadcom.com
2486 S:      Supported
2487 F:      drivers/gpio/gpio-brcmstb.c
2488 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
2489
2490 BROADCOM KONA GPIO DRIVER
2491 M:      Ray Jui <rjui@broadcom.com>
2492 L:      bcm-kernel-feedback-list@broadcom.com
2493 S:      Supported
2494 F:      drivers/gpio/gpio-bcm-kona.c
2495 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
2496
2497 BROADCOM NVRAM DRIVER
2498 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2499 L:      linux-mips@linux-mips.org
2500 S:      Maintained
2501 F:      drivers/firmware/broadcom/*
2502
2503 BROADCOM STB NAND FLASH DRIVER
2504 M:      Brian Norris <computersforpeace@gmail.com>
2505 M:      Kamal Dasu <kdasu.kdev@gmail.com>
2506 L:      linux-mtd@lists.infradead.org
2507 L:      bcm-kernel-feedback-list@broadcom.com
2508 S:      Maintained
2509 F:      drivers/mtd/nand/brcmnand/
2510
2511 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2512 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2513 L:      linux-wireless@vger.kernel.org
2514 S:      Maintained
2515 F:      drivers/bcma/
2516 F:      include/linux/bcma/
2517
2518 BROADCOM SYSTEMPORT ETHERNET DRIVER
2519 M:      Florian Fainelli <f.fainelli@gmail.com>
2520 L:      netdev@vger.kernel.org
2521 S:      Supported
2522 F:      drivers/net/ethernet/broadcom/bcmsysport.*
2523
2524 BROCADE BFA FC SCSI DRIVER
2525 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
2526 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
2527 L:      linux-scsi@vger.kernel.org
2528 S:      Supported
2529 F:      drivers/scsi/bfa/
2530
2531 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
2532 M:      Rasesh Mody <rasesh.mody@qlogic.com>
2533 L:      netdev@vger.kernel.org
2534 S:      Supported
2535 F:      drivers/net/ethernet/brocade/bna/
2536
2537 BSG (block layer generic sg v4 driver)
2538 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
2539 L:      linux-scsi@vger.kernel.org
2540 S:      Supported
2541 F:      block/bsg.c
2542 F:      include/linux/bsg.h
2543 F:      include/uapi/linux/bsg.h
2544
2545 BT87X AUDIO DRIVER
2546 M:      Clemens Ladisch <clemens@ladisch.de>
2547 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2548 T:      git git://git.alsa-project.org/alsa-kernel.git
2549 S:      Maintained
2550 F:      Documentation/sound/alsa/Bt87x.txt
2551 F:      sound/pci/bt87x.c
2552
2553 BT8XXGPIO DRIVER
2554 M:      Michael Buesch <m@bues.ch>
2555 W:      http://bu3sch.de/btgpio.php
2556 S:      Maintained
2557 F:      drivers/gpio/gpio-bt8xx.c
2558
2559 BTRFS FILE SYSTEM
2560 M:      Chris Mason <clm@fb.com>
2561 M:      Josef Bacik <jbacik@fb.com>
2562 M:      David Sterba <dsterba@suse.com>
2563 L:      linux-btrfs@vger.kernel.org
2564 W:      http://btrfs.wiki.kernel.org/
2565 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
2566 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
2567 S:      Maintained
2568 F:      Documentation/filesystems/btrfs.txt
2569 F:      fs/btrfs/
2570
2571 BTTV VIDEO4LINUX DRIVER
2572 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2573 L:      linux-media@vger.kernel.org
2574 W:      https://linuxtv.org
2575 T:      git git://linuxtv.org/media_tree.git
2576 S:      Odd fixes
2577 F:      Documentation/video4linux/bttv/
2578 F:      drivers/media/pci/bt8xx/bttv*
2579
2580 BUSLOGIC SCSI DRIVER
2581 M:      Khalid Aziz <khalid@gonehiking.org>
2582 L:      linux-scsi@vger.kernel.org
2583 S:      Maintained
2584 F:      drivers/scsi/BusLogic.*
2585 F:      drivers/scsi/FlashPoint.*
2586
2587 C-MEDIA CMI8788 DRIVER
2588 M:      Clemens Ladisch <clemens@ladisch.de>
2589 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2590 T:      git git://git.alsa-project.org/alsa-kernel.git
2591 S:      Maintained
2592 F:      sound/pci/oxygen/
2593
2594 C6X ARCHITECTURE
2595 M:      Mark Salter <msalter@redhat.com>
2596 M:      Aurelien Jacquiot <a-jacquiot@ti.com>
2597 L:      linux-c6x-dev@linux-c6x.org
2598 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
2599 S:      Maintained
2600 F:      arch/c6x/
2601
2602 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
2603 M:      David Howells <dhowells@redhat.com>
2604 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
2605 S:      Supported
2606 F:      Documentation/filesystems/caching/cachefiles.txt
2607 F:      fs/cachefiles/
2608
2609 CADET FM/AM RADIO RECEIVER DRIVER
2610 M:      Hans Verkuil <hverkuil@xs4all.nl>
2611 L:      linux-media@vger.kernel.org
2612 T:      git git://linuxtv.org/media_tree.git
2613 W:      https://linuxtv.org
2614 S:      Maintained
2615 F:      drivers/media/radio/radio-cadet*
2616
2617 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
2618 M:      Jonathan Corbet <corbet@lwn.net>
2619 L:      linux-media@vger.kernel.org
2620 T:      git git://linuxtv.org/media_tree.git
2621 S:      Maintained
2622 F:      Documentation/video4linux/cafe_ccic
2623 F:      drivers/media/platform/marvell-ccic/
2624
2625 CAIF NETWORK LAYER
2626 M:      Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
2627 L:      netdev@vger.kernel.org
2628 S:      Supported
2629 F:      Documentation/networking/caif/
2630 F:      drivers/net/caif/
2631 F:      include/uapi/linux/caif/
2632 F:      include/net/caif/
2633 F:      net/caif/
2634
2635 CALGARY x86-64 IOMMU
2636 M:      Muli Ben-Yehuda <muli@il.ibm.com>
2637 M:      "Jon D. Mason" <jdmason@kudzu.us>
2638 L:      discuss@x86-64.org
2639 S:      Maintained
2640 F:      arch/x86/kernel/pci-calgary_64.c
2641 F:      arch/x86/kernel/tce_64.c
2642 F:      arch/x86/include/asm/calgary.h
2643 F:      arch/x86/include/asm/tce.h
2644
2645 CAN NETWORK LAYER
2646 M:      Oliver Hartkopp <socketcan@hartkopp.net>
2647 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2648 L:      linux-can@vger.kernel.org
2649 W:      https://github.com/linux-can
2650 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2651 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2652 S:      Maintained
2653 F:      Documentation/networking/can.txt
2654 F:      net/can/
2655 F:      include/linux/can/core.h
2656 F:      include/uapi/linux/can.h
2657 F:      include/uapi/linux/can/bcm.h
2658 F:      include/uapi/linux/can/raw.h
2659 F:      include/uapi/linux/can/gw.h
2660
2661 CAN NETWORK DRIVERS
2662 M:      Wolfgang Grandegger <wg@grandegger.com>
2663 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2664 L:      linux-can@vger.kernel.org
2665 W:      https://github.com/linux-can
2666 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2667 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2668 S:      Maintained
2669 F:      drivers/net/can/
2670 F:      include/linux/can/dev.h
2671 F:      include/linux/can/platform/
2672 F:      include/uapi/linux/can/error.h
2673 F:      include/uapi/linux/can/netlink.h
2674
2675 CAPABILITIES
2676 M:      Serge Hallyn <serge.hallyn@canonical.com>
2677 L:      linux-security-module@vger.kernel.org
2678 S:      Supported
2679 F:      include/linux/capability.h
2680 F:      include/uapi/linux/capability.h
2681 F:      security/commoncap.c
2682 F:      kernel/capability.c
2683
2684 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
2685 M:      Kevin Tsai <ktsai@capellamicro.com>
2686 S:      Maintained
2687 F:      drivers/iio/light/cm*
2688 F:      Documentation/devicetree/bindings/i2c/trivial-devices.txt
2689
2690 CAVIUM LIQUIDIO NETWORK DRIVER
2691 M:     Derek Chickles <derek.chickles@caviumnetworks.com>
2692 M:     Satanand Burla <satananda.burla@caviumnetworks.com>
2693 M:     Felix Manlunas <felix.manlunas@caviumnetworks.com>
2694 M:     Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com>
2695 L:     netdev@vger.kernel.org
2696 W:     http://www.cavium.com
2697 S:     Supported
2698 F:     drivers/net/ethernet/cavium/liquidio/
2699
2700 CC2520 IEEE-802.15.4 RADIO DRIVER
2701 M:      Varka Bhadram <varkabhadram@gmail.com>
2702 L:      linux-wpan@vger.kernel.org
2703 S:      Maintained
2704 F:      drivers/net/ieee802154/cc2520.c
2705 F:      include/linux/spi/cc2520.h
2706 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
2707
2708 CELL BROADBAND ENGINE ARCHITECTURE
2709 M:      Arnd Bergmann <arnd@arndb.de>
2710 L:      linuxppc-dev@lists.ozlabs.org
2711 W:      http://www.ibm.com/developerworks/power/cell/
2712 S:      Supported
2713 F:      arch/powerpc/include/asm/cell*.h
2714 F:      arch/powerpc/include/asm/spu*.h
2715 F:      arch/powerpc/include/uapi/asm/spu*.h
2716 F:      arch/powerpc/oprofile/*cell*
2717 F:      arch/powerpc/platforms/cell/
2718
2719 CEPH COMMON CODE (LIBCEPH)
2720 M:      Ilya Dryomov <idryomov@gmail.com>
2721 M:      "Yan, Zheng" <zyan@redhat.com>
2722 M:      Sage Weil <sage@redhat.com>
2723 L:      ceph-devel@vger.kernel.org
2724 W:      http://ceph.com/
2725 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2726 T:      git git://github.com/ceph/ceph-client.git
2727 S:      Supported
2728 F:      net/ceph/
2729 F:      include/linux/ceph/
2730 F:      include/linux/crush/
2731
2732 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
2733 M:      "Yan, Zheng" <zyan@redhat.com>
2734 M:      Sage Weil <sage@redhat.com>
2735 M:      Ilya Dryomov <idryomov@gmail.com>
2736 L:      ceph-devel@vger.kernel.org
2737 W:      http://ceph.com/
2738 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2739 T:      git git://github.com/ceph/ceph-client.git
2740 S:      Supported
2741 F:      Documentation/filesystems/ceph.txt
2742 F:      fs/ceph/
2743
2744 CERTIFICATE HANDLING:
2745 M:      David Howells <dhowells@redhat.com>
2746 M:      David Woodhouse <dwmw2@infradead.org>
2747 L:      keyrings@vger.kernel.org
2748 S:      Maintained
2749 F:      Documentation/module-signing.txt
2750 F:      certs/
2751 F:      scripts/sign-file.c
2752 F:      scripts/extract-cert.c
2753
2754 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
2755 L:      linux-usb@vger.kernel.org
2756 S:      Orphan
2757 F:      Documentation/usb/WUSB-Design-overview.txt
2758 F:      Documentation/usb/wusb-cbaf
2759 F:      drivers/usb/host/hwa-hc.c
2760 F:      drivers/usb/host/whci/
2761 F:      drivers/usb/wusbcore/
2762 F:      include/linux/usb/wusb*
2763
2764 CFAG12864B LCD DRIVER
2765 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2766 W:      http://miguelojeda.es/auxdisplay.htm
2767 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2768 S:      Maintained
2769 F:      drivers/auxdisplay/cfag12864b.c
2770 F:      include/linux/cfag12864b.h
2771
2772 CFAG12864BFB LCD FRAMEBUFFER DRIVER
2773 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2774 W:      http://miguelojeda.es/auxdisplay.htm
2775 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2776 S:      Maintained
2777 F:      drivers/auxdisplay/cfag12864bfb.c
2778 F:      include/linux/cfag12864b.h
2779
2780 CFG80211 and NL80211
2781 M:      Johannes Berg <johannes@sipsolutions.net>
2782 L:      linux-wireless@vger.kernel.org
2783 W:      http://wireless.kernel.org/
2784 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2785 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
2786 S:      Maintained
2787 F:      include/uapi/linux/nl80211.h
2788 F:      include/net/cfg80211.h
2789 F:      net/wireless/*
2790 X:      net/wireless/wext*
2791
2792 CHAR and MISC DRIVERS
2793 M:      Arnd Bergmann <arnd@arndb.de>
2794 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2795 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
2796 S:      Supported
2797 F:      drivers/char/*
2798 F:      drivers/misc/*
2799 F:      include/linux/miscdevice.h
2800
2801 CHECKPATCH
2802 M:      Andy Whitcroft <apw@canonical.com>
2803 M:      Joe Perches <joe@perches.com>
2804 S:      Maintained
2805 F:      scripts/checkpatch.pl
2806
2807 CHINESE DOCUMENTATION
2808 M:      Harry Wei <harryxiyou@gmail.com>
2809 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
2810 L:      linux-kernel@zh-kernel.org (moderated for non-subscribers)
2811 S:      Maintained
2812 F:      Documentation/zh_CN/
2813
2814 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
2815 M:      Peter Chen <Peter.Chen@nxp.com>
2816 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
2817 L:      linux-usb@vger.kernel.org
2818 S:      Maintained
2819 F:      drivers/usb/chipidea/
2820
2821 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
2822 M:      Hans de Goede <hdegoede@redhat.com>
2823 L:      linux-input@vger.kernel.org
2824 S:      Maintained
2825 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
2826 F:      drivers/input/touchscreen/chipone_icn8318.c
2827
2828 CHROME HARDWARE PLATFORM SUPPORT
2829 M:      Olof Johansson <olof@lixom.net>
2830 S:      Maintained
2831 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/olof/chrome-platform.git
2832 F:      drivers/platform/chrome/
2833
2834 CISCO VIC ETHERNET NIC DRIVER
2835 M:      Christian Benvenuti <benve@cisco.com>
2836 M:      Sujith Sankar <ssujith@cisco.com>
2837 M:      Govindarajulu Varadarajan <_govind@gmx.com>
2838 M:      Neel Patel <neepatel@cisco.com>
2839 S:      Supported
2840 F:      drivers/net/ethernet/cisco/enic/
2841
2842 CISCO VIC LOW LATENCY NIC DRIVER
2843 M:      Christian Benvenuti <benve@cisco.com>
2844 M:      Dave Goodell <dgoodell@cisco.com>
2845 S:      Supported
2846 F:      drivers/infiniband/hw/usnic/
2847
2848 CIRRUS LOGIC EP93XX ETHERNET DRIVER
2849 M:      Hartley Sweeten <hsweeten@visionengravers.com>
2850 L:      netdev@vger.kernel.org
2851 S:      Maintained
2852 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
2853
2854 CIRRUS LOGIC AUDIO CODEC DRIVERS
2855 M:      Brian Austin <brian.austin@cirrus.com>
2856 M:      Paul Handrigan <Paul.Handrigan@cirrus.com>
2857 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2858 S:      Maintained
2859 F:      sound/soc/codecs/cs*
2860
2861 CLEANCACHE API
2862 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2863 L:      linux-kernel@vger.kernel.org
2864 S:      Maintained
2865 F:      mm/cleancache.c
2866 F:      include/linux/cleancache.h
2867
2868 CLK API
2869 M:      Russell King <linux@arm.linux.org.uk>
2870 L:      linux-clk@vger.kernel.org
2871 S:      Maintained
2872 F:      include/linux/clk.h
2873
2874 CLOCKSOURCE, CLOCKEVENT DRIVERS
2875 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2876 M:      Thomas Gleixner <tglx@linutronix.de>
2877 L:      linux-kernel@vger.kernel.org
2878 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
2879 S:      Supported
2880 F:      drivers/clocksource
2881
2882 CISCO FCOE HBA DRIVER
2883 M:      Hiral Patel <hiralpat@cisco.com>
2884 M:      Suma Ramars <sramars@cisco.com>
2885 M:      Brian Uchino <buchino@cisco.com>
2886 L:      linux-scsi@vger.kernel.org
2887 S:      Supported
2888 F:      drivers/scsi/fnic/
2889
2890 CISCO SCSI HBA DRIVER
2891 M:      Narsimhulu Musini <nmusini@cisco.com>
2892 M:      Sesidhar Baddela <sebaddel@cisco.com>
2893 L:      linux-scsi@vger.kernel.org
2894 S:      Supported
2895 F:      drivers/scsi/snic/
2896
2897 CMPC ACPI DRIVER
2898 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2899 M:      Daniel Oliveira Nascimento <don@syst.com.br>
2900 L:      platform-driver-x86@vger.kernel.org
2901 S:      Supported
2902 F:      drivers/platform/x86/classmate-laptop.c
2903
2904 COBALT MEDIA DRIVER
2905 M:      Hans Verkuil <hans.verkuil@cisco.com>
2906 L:      linux-media@vger.kernel.org
2907 T:      git git://linuxtv.org/media_tree.git
2908 W:      https://linuxtv.org
2909 S:      Supported
2910 F:      drivers/media/pci/cobalt/
2911
2912 COCCINELLE/Semantic Patches (SmPL)
2913 M:      Julia Lawall <Julia.Lawall@lip6.fr>
2914 M:      Gilles Muller <Gilles.Muller@lip6.fr>
2915 M:      Nicolas Palix <nicolas.palix@imag.fr>
2916 M:      Michal Marek <mmarek@suse.com>
2917 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
2918 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
2919 W:      http://coccinelle.lip6.fr/
2920 S:      Supported
2921 F:      Documentation/coccinelle.txt
2922 F:      scripts/coccinelle/
2923 F:      scripts/coccicheck
2924
2925 CODA FILE SYSTEM
2926 M:      Jan Harkes <jaharkes@cs.cmu.edu>
2927 M:      coda@cs.cmu.edu
2928 L:      codalist@coda.cs.cmu.edu
2929 W:      http://www.coda.cs.cmu.edu/
2930 S:      Maintained
2931 F:      Documentation/filesystems/coda.txt
2932 F:      fs/coda/
2933 F:      include/linux/coda*.h
2934 F:      include/uapi/linux/coda*.h
2935
2936 CODA V4L2 MEM2MEM DRIVER
2937 M:      Philipp Zabel <p.zabel@pengutronix.de>
2938 L:      linux-media@vger.kernel.org
2939 S:      Maintained
2940 F:      Documentation/devicetree/bindings/media/coda.txt
2941 F:      drivers/media/platform/coda/
2942
2943 COMMON CLK FRAMEWORK
2944 M:      Michael Turquette <mturquette@baylibre.com>
2945 M:      Stephen Boyd <sboyd@codeaurora.org>
2946 L:      linux-clk@vger.kernel.org
2947 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
2948 S:      Maintained
2949 F:      drivers/clk/
2950 X:      drivers/clk/clkdev.c
2951 F:      include/linux/clk-pr*
2952 F:      include/linux/clk/
2953
2954 COMMON INTERNET FILE SYSTEM (CIFS)
2955 M:      Steve French <sfrench@samba.org>
2956 L:      linux-cifs@vger.kernel.org
2957 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
2958 W:      http://linux-cifs.samba.org/
2959 T:      git git://git.samba.org/sfrench/cifs-2.6.git
2960 S:      Supported
2961 F:      Documentation/filesystems/cifs/
2962 F:      fs/cifs/
2963
2964 COMPACTPCI HOTPLUG CORE
2965 M:      Scott Murray <scott@spiteful.org>
2966 L:      linux-pci@vger.kernel.org
2967 S:      Maintained
2968 F:      drivers/pci/hotplug/cpci_hotplug*
2969
2970 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
2971 M:      Scott Murray <scott@spiteful.org>
2972 L:      linux-pci@vger.kernel.org
2973 S:      Maintained
2974 F:      drivers/pci/hotplug/cpcihp_zt5550.*
2975
2976 COMPACTPCI HOTPLUG GENERIC DRIVER
2977 M:      Scott Murray <scott@spiteful.org>
2978 L:      linux-pci@vger.kernel.org
2979 S:      Maintained
2980 F:      drivers/pci/hotplug/cpcihp_generic.c
2981
2982 COMPAL LAPTOP SUPPORT
2983 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
2984 L:      platform-driver-x86@vger.kernel.org
2985 S:      Maintained
2986 F:      drivers/platform/x86/compal-laptop.c
2987
2988 CONEXANT ACCESSRUNNER USB DRIVER
2989 L:      accessrunner-general@lists.sourceforge.net
2990 W:      http://accessrunner.sourceforge.net/
2991 S:      Orphan
2992 F:      drivers/usb/atm/cxacru.c
2993
2994 CONFIGFS
2995 M:      Joel Becker <jlbec@evilplan.org>
2996 M:      Christoph Hellwig <hch@lst.de>
2997 T:      git git://git.infradead.org/users/hch/configfs.git
2998 S:      Supported
2999 F:      fs/configfs/
3000 F:      include/linux/configfs.h
3001
3002 CONNECTOR
3003 M:      Evgeniy Polyakov <zbr@ioremap.net>
3004 L:      netdev@vger.kernel.org
3005 S:      Maintained
3006 F:      drivers/connector/
3007
3008 CONTROL GROUP (CGROUP)
3009 M:      Tejun Heo <tj@kernel.org>
3010 M:      Li Zefan <lizefan@huawei.com>
3011 M:      Johannes Weiner <hannes@cmpxchg.org>
3012 L:      cgroups@vger.kernel.org
3013 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3014 S:      Maintained
3015 F:      Documentation/cgroups/
3016 F:      include/linux/cgroup*
3017 F:      kernel/cgroup*
3018
3019 CONTROL GROUP - CPUSET
3020 M:      Li Zefan <lizefan@huawei.com>
3021 L:      cgroups@vger.kernel.org
3022 W:      http://www.bullopensource.org/cpuset/
3023 W:      http://oss.sgi.com/projects/cpusets/
3024 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3025 S:      Maintained
3026 F:      Documentation/cgroups/cpusets.txt
3027 F:      include/linux/cpuset.h
3028 F:      kernel/cpuset.c
3029
3030 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
3031 M:      Johannes Weiner <hannes@cmpxchg.org>
3032 M:      Michal Hocko <mhocko@kernel.org>
3033 M:      Vladimir Davydov <vdavydov@virtuozzo.com>
3034 L:      cgroups@vger.kernel.org
3035 L:      linux-mm@kvack.org
3036 S:      Maintained
3037 F:      mm/memcontrol.c
3038 F:      mm/swap_cgroup.c
3039
3040 CORETEMP HARDWARE MONITORING DRIVER
3041 M:      Fenghua Yu <fenghua.yu@intel.com>
3042 L:      lm-sensors@lm-sensors.org
3043 S:      Maintained
3044 F:      Documentation/hwmon/coretemp
3045 F:      drivers/hwmon/coretemp.c
3046
3047 COSA/SRP SYNC SERIAL DRIVER
3048 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
3049 W:      http://www.fi.muni.cz/~kas/cosa/
3050 S:      Maintained
3051 F:      drivers/net/wan/cosa*
3052
3053 CPMAC ETHERNET DRIVER
3054 M:      Florian Fainelli <florian@openwrt.org>
3055 L:      netdev@vger.kernel.org
3056 S:      Maintained
3057 F:      drivers/net/ethernet/ti/cpmac.c
3058
3059 CPU FREQUENCY DRIVERS
3060 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
3061 M:      Viresh Kumar <viresh.kumar@linaro.org>
3062 L:      linux-pm@vger.kernel.org
3063 S:      Maintained
3064 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3065 T:      git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
3066 F:      drivers/cpufreq/
3067 F:      include/linux/cpufreq.h
3068
3069 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
3070 M:      Viresh Kumar <viresh.kumar@linaro.org>
3071 M:      Sudeep Holla <sudeep.holla@arm.com>
3072 L:      linux-pm@vger.kernel.org
3073 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
3074 S:      Maintained
3075 F:      drivers/cpufreq/arm_big_little.h
3076 F:      drivers/cpufreq/arm_big_little.c
3077 F:      drivers/cpufreq/arm_big_little_dt.c
3078
3079 CPUIDLE DRIVER - ARM BIG LITTLE
3080 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
3081 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3082 L:      linux-pm@vger.kernel.org
3083 L:      linux-arm-kernel@lists.infradead.org
3084 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3085 S:      Maintained
3086 F:      drivers/cpuidle/cpuidle-big_little.c
3087
3088 CPUIDLE DRIVER - ARM EXYNOS
3089 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
3090 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3091 M:      Kukjin Kim <kgene@kernel.org>
3092 L:      linux-pm@vger.kernel.org
3093 L:      linux-samsung-soc@vger.kernel.org
3094 S:      Supported
3095 F:      drivers/cpuidle/cpuidle-exynos.c
3096 F:      arch/arm/mach-exynos/pm.c
3097
3098 CPUIDLE DRIVERS
3099 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
3100 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3101 L:      linux-pm@vger.kernel.org
3102 S:      Maintained
3103 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3104 F:      drivers/cpuidle/*
3105 F:      include/linux/cpuidle.h
3106
3107 CPUID/MSR DRIVER
3108 M:      "H. Peter Anvin" <hpa@zytor.com>
3109 S:      Maintained
3110 F:      arch/x86/kernel/cpuid.c
3111 F:      arch/x86/kernel/msr.c
3112
3113 CPU POWER MONITORING SUBSYSTEM
3114 M:      Thomas Renninger <trenn@suse.com>
3115 L:      linux-pm@vger.kernel.org
3116 S:      Maintained
3117 F:      tools/power/cpupower/
3118
3119 CRAMFS FILESYSTEM
3120 W:      http://sourceforge.net/projects/cramfs/
3121 S:      Orphan / Obsolete
3122 F:      Documentation/filesystems/cramfs.txt
3123 F:      fs/cramfs/
3124
3125 CRIS PORT
3126 M:      Mikael Starvik <starvik@axis.com>
3127 M:      Jesper Nilsson <jesper.nilsson@axis.com>
3128 L:      linux-cris-kernel@axis.com
3129 W:      http://developer.axis.com
3130 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jesper/cris.git
3131 S:      Maintained
3132 F:      arch/cris/
3133 F:      drivers/tty/serial/crisv10.*
3134
3135 CRYPTO API
3136 M:      Herbert Xu <herbert@gondor.apana.org.au>
3137 M:      "David S. Miller" <davem@davemloft.net>
3138 L:      linux-crypto@vger.kernel.org
3139 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
3140 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
3141 S:      Maintained
3142 F:      Documentation/crypto/
3143 F:      Documentation/DocBook/crypto-API.tmpl
3144 F:      arch/*/crypto/
3145 F:      crypto/
3146 F:      drivers/crypto/
3147 F:      include/crypto/
3148
3149 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
3150 M:      Neil Horman <nhorman@tuxdriver.com>
3151 L:      linux-crypto@vger.kernel.org
3152 S:      Maintained
3153 F:      crypto/ansi_cprng.c
3154 F:      crypto/rng.c
3155
3156 CS3308 MEDIA DRIVER
3157 M:      Hans Verkuil <hverkuil@xs4all.nl>
3158 L:      linux-media@vger.kernel.org
3159 T:      git git://linuxtv.org/media_tree.git
3160 W:      http://linuxtv.org
3161 S:      Odd Fixes
3162 F:      drivers/media/i2c/cs3308.c
3163 F:      drivers/media/i2c/cs3308.h
3164
3165 CS5535 Audio ALSA driver
3166 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
3167 S:      Maintained
3168 F:      sound/pci/cs5535audio/
3169
3170 CW1200 WLAN driver
3171 M:      Solomon Peachy <pizza@shaftnet.org>
3172 S:      Maintained
3173 F:      drivers/net/wireless/st/cw1200/
3174
3175 CX18 VIDEO4LINUX DRIVER
3176 M:      Andy Walls <awalls@md.metrocast.net>
3177 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
3178 L:      linux-media@vger.kernel.org
3179 T:      git git://linuxtv.org/media_tree.git
3180 W:      https://linuxtv.org
3181 W:      http://www.ivtvdriver.org/index.php/Cx18
3182 S:      Maintained
3183 F:      Documentation/video4linux/cx18.txt
3184 F:      drivers/media/pci/cx18/
3185 F:      include/uapi/linux/ivtv*
3186
3187 CX2341X MPEG ENCODER HELPER MODULE
3188 M:      Hans Verkuil <hverkuil@xs4all.nl>
3189 L:      linux-media@vger.kernel.org
3190 T:      git git://linuxtv.org/media_tree.git
3191 W:      https://linuxtv.org
3192 S:      Maintained
3193 F:      drivers/media/common/cx2341x*
3194 F:      include/media/cx2341x*
3195
3196 CX24120 MEDIA DRIVER
3197 M:      Jemma Denson <jdenson@gmail.com>
3198 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
3199 L:      linux-media@vger.kernel.org
3200 W:      https://linuxtv.org
3201 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3202 S:      Maintained
3203 F:      drivers/media/dvb-frontends/cx24120*
3204
3205 CX88 VIDEO4LINUX DRIVER
3206 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3207 L:      linux-media@vger.kernel.org
3208 W:      https://linuxtv.org
3209 T:      git git://linuxtv.org/media_tree.git
3210 S:      Odd fixes
3211 F:      Documentation/video4linux/cx88/
3212 F:      drivers/media/pci/cx88/
3213
3214 CXD2820R MEDIA DRIVER
3215 M:      Antti Palosaari <crope@iki.fi>
3216 L:      linux-media@vger.kernel.org
3217 W:      https://linuxtv.org
3218 W:      http://palosaari.fi/linux/
3219 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3220 T:      git git://linuxtv.org/anttip/media_tree.git
3221 S:      Maintained
3222 F:      drivers/media/dvb-frontends/cxd2820r*
3223
3224 CXGB3 ETHERNET DRIVER (CXGB3)
3225 M:      Santosh Raspatur <santosh@chelsio.com>
3226 L:      netdev@vger.kernel.org
3227 W:      http://www.chelsio.com
3228 S:      Supported
3229 F:      drivers/net/ethernet/chelsio/cxgb3/
3230
3231 CXGB3 ISCSI DRIVER (CXGB3I)
3232 M:      Karen Xie <kxie@chelsio.com>
3233 L:      linux-scsi@vger.kernel.org
3234 W:      http://www.chelsio.com
3235 S:      Supported
3236 F:      drivers/scsi/cxgbi/cxgb3i
3237
3238 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
3239 M:      Steve Wise <swise@chelsio.com>
3240 L:      linux-rdma@vger.kernel.org
3241 W:      http://www.openfabrics.org
3242 S:      Supported
3243 F:      drivers/infiniband/hw/cxgb3/
3244
3245 CXGB4 ETHERNET DRIVER (CXGB4)
3246 M:      Hariprasad S <hariprasad@chelsio.com>
3247 L:      netdev@vger.kernel.org
3248 W:      http://www.chelsio.com
3249 S:      Supported
3250 F:      drivers/net/ethernet/chelsio/cxgb4/
3251
3252 CXGB4 ISCSI DRIVER (CXGB4I)
3253 M:      Karen Xie <kxie@chelsio.com>
3254 L:      linux-scsi@vger.kernel.org
3255 W:      http://www.chelsio.com
3256 S:      Supported
3257 F:      drivers/scsi/cxgbi/cxgb4i
3258
3259 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
3260 M:      Steve Wise <swise@chelsio.com>
3261 L:      linux-rdma@vger.kernel.org
3262 W:      http://www.openfabrics.org
3263 S:      Supported
3264 F:      drivers/infiniband/hw/cxgb4/
3265
3266 CXGB4VF ETHERNET DRIVER (CXGB4VF)
3267 M:      Casey Leedom <leedom@chelsio.com>
3268 L:      netdev@vger.kernel.org
3269 W:      http://www.chelsio.com
3270 S:      Supported
3271 F:      drivers/net/ethernet/chelsio/cxgb4vf/
3272
3273 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
3274 M:      Ian Munsie <imunsie@au1.ibm.com>
3275 M:      Michael Neuling <mikey@neuling.org>
3276 L:      linuxppc-dev@lists.ozlabs.org
3277 S:      Supported
3278 F:      drivers/misc/cxl/
3279 F:      include/misc/cxl*
3280 F:      include/uapi/misc/cxl.h
3281 F:      Documentation/powerpc/cxl.txt
3282 F:      Documentation/powerpc/cxl.txt
3283 F:      Documentation/ABI/testing/sysfs-class-cxl
3284
3285 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
3286 M:      Manoj N. Kumar <manoj@linux.vnet.ibm.com>
3287 M:      Matthew R. Ochs <mrochs@linux.vnet.ibm.com>
3288 L:      linux-scsi@vger.kernel.org
3289 S:      Supported
3290 F:      drivers/scsi/cxlflash/
3291 F:      include/uapi/scsi/cxlflash_ioctls.h
3292 F:      Documentation/powerpc/cxlflash.txt
3293
3294 STMMAC ETHERNET DRIVER
3295 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
3296 L:      netdev@vger.kernel.org
3297 W:      http://www.stlinux.com
3298 S:      Supported
3299 F:      drivers/net/ethernet/stmicro/stmmac/
3300
3301 CYBERPRO FB DRIVER
3302 M:      Russell King <linux@arm.linux.org.uk>
3303 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3304 W:      http://www.arm.linux.org.uk/
3305 S:      Maintained
3306 F:      drivers/video/fbdev/cyber2000fb.*
3307
3308 CYCLADES ASYNC MUX DRIVER
3309 W:      http://www.cyclades.com/
3310 S:      Orphan
3311 F:      drivers/tty/cyclades.c
3312 F:      include/linux/cyclades.h
3313 F:      include/uapi/linux/cyclades.h
3314
3315 CYCLADES PC300 DRIVER
3316 W:      http://www.cyclades.com/
3317 S:      Orphan
3318 F:      drivers/net/wan/pc300*
3319
3320 CYPRESS_FIRMWARE MEDIA DRIVER
3321 M:      Antti Palosaari <crope@iki.fi>
3322 L:      linux-media@vger.kernel.org
3323 W:      https://linuxtv.org
3324 W:      http://palosaari.fi/linux/
3325 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3326 T:      git git://linuxtv.org/anttip/media_tree.git
3327 S:      Maintained
3328 F:      drivers/media/common/cypress_firmware*
3329
3330 CYTTSP TOUCHSCREEN DRIVER
3331 M:      Ferruh Yigit <fery@cypress.com>
3332 L:      linux-input@vger.kernel.org
3333 S:      Supported
3334 F:      drivers/input/touchscreen/cyttsp*
3335 F:      include/linux/input/cyttsp.h
3336
3337 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
3338 M:      Joshua Kinard <kumba@gentoo.org>
3339 S:      Maintained
3340 F:      drivers/rtc/rtc-ds1685.c
3341 F:      include/linux/rtc/ds1685.h
3342
3343 DAMA SLAVE for AX.25
3344 M:      Joerg Reuter <jreuter@yaina.de>
3345 W:      http://yaina.de/jreuter/
3346 W:      http://www.qsl.net/dl1bke/
3347 L:      linux-hams@vger.kernel.org
3348 S:      Maintained
3349 F:      net/ax25/af_ax25.c
3350 F:      net/ax25/ax25_dev.c
3351 F:      net/ax25/ax25_ds_*
3352 F:      net/ax25/ax25_in.c
3353 F:      net/ax25/ax25_out.c
3354 F:      net/ax25/ax25_timer.c
3355 F:      net/ax25/sysctl_net_ax25.c
3356
3357 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
3358 L:      netdev@vger.kernel.org
3359 S:      Orphan
3360 F:      Documentation/networking/dmfe.txt
3361 F:      drivers/net/ethernet/dec/tulip/dmfe.c
3362
3363 DC390/AM53C974 SCSI driver
3364 M:      Hannes Reinecke <hare@suse.com>
3365 L:      linux-scsi@vger.kernel.org
3366 S:      Maintained
3367 F:      drivers/scsi/am53c974.c
3368
3369 DC395x SCSI driver
3370 M:      Oliver Neukum <oliver@neukum.org>
3371 M:      Ali Akcaagac <aliakc@web.de>
3372 M:      Jamie Lenehan <lenehan@twibble.org>
3373 L:      dc395x@twibble.org
3374 W:      http://twibble.org/dist/dc395x/
3375 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
3376 S:      Maintained
3377 F:      Documentation/scsi/dc395x.txt
3378 F:      drivers/scsi/dc395x.*
3379
3380 DCCP PROTOCOL
3381 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
3382 L:      dccp@vger.kernel.org
3383 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
3384 S:      Maintained
3385 F:      include/linux/dccp.h
3386 F:      include/uapi/linux/dccp.h
3387 F:      include/linux/tfrc.h
3388 F:      net/dccp/
3389
3390 DECnet NETWORK LAYER
3391 W:      http://linux-decnet.sourceforge.net
3392 L:      linux-decnet-user@lists.sourceforge.net
3393 S:      Orphan
3394 F:      Documentation/networking/decnet.txt
3395 F:      net/decnet/
3396
3397 DECSTATION PLATFORM SUPPORT
3398 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3399 L:      linux-mips@linux-mips.org
3400 W:      http://www.linux-mips.org/wiki/DECstation
3401 S:      Maintained
3402 F:      arch/mips/dec/
3403 F:      arch/mips/include/asm/dec/
3404 F:      arch/mips/include/asm/mach-dec/
3405
3406 DEFXX FDDI NETWORK DRIVER
3407 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3408 S:      Maintained
3409 F:      drivers/net/fddi/defxx.*
3410
3411 DELL LAPTOP DRIVER
3412 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3413 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3414 L:      platform-driver-x86@vger.kernel.org
3415 S:      Maintained
3416 F:      drivers/platform/x86/dell-laptop.c
3417
3418 DELL LAPTOP RBTN DRIVER
3419 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3420 S:      Maintained
3421 F:      drivers/platform/x86/dell-rbtn.*
3422
3423 DELL LAPTOP FREEFALL DRIVER
3424 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3425 S:      Maintained
3426 F:      drivers/platform/x86/dell-smo8800.c
3427
3428 DELL LAPTOP SMM DRIVER
3429 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3430 S:      Maintained
3431 F:      drivers/hwmon/dell-smm-hwmon.c
3432 F:      include/uapi/linux/i8k.h
3433
3434 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
3435 M:      Doug Warzecha <Douglas_Warzecha@dell.com>
3436 S:      Maintained
3437 F:      Documentation/dcdbas.txt
3438 F:      drivers/firmware/dcdbas.*
3439
3440 DELL WMI EXTRAS DRIVER
3441 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3442 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3443 S:      Maintained
3444 F:      drivers/platform/x86/dell-wmi.c
3445
3446 DESIGNWARE USB2 DRD IP DRIVER
3447 M:      John Youn <johnyoun@synopsys.com>
3448 L:      linux-usb@vger.kernel.org
3449 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3450 S:      Maintained
3451 F:      drivers/usb/dwc2/
3452
3453 DESIGNWARE USB3 DRD IP DRIVER
3454 M:      Felipe Balbi <balbi@kernel.org>
3455 L:      linux-usb@vger.kernel.org
3456 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3457 S:      Maintained
3458 F:      drivers/usb/dwc3/
3459
3460 DEVICE COREDUMP (DEV_COREDUMP)
3461 M:      Johannes Berg <johannes@sipsolutions.net>
3462 L:      linux-kernel@vger.kernel.org
3463 S:      Maintained
3464 F:      drivers/base/devcoredump.c
3465 F:      include/linux/devcoredump.h
3466
3467 DEVICE FREQUENCY (DEVFREQ)
3468 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
3469 M:      Kyungmin Park <kyungmin.park@samsung.com>
3470 L:      linux-pm@vger.kernel.org
3471 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3472 S:      Maintained
3473 F:      drivers/devfreq/
3474 F:      include/linux/devfreq.h
3475 F:      Documentation/devicetree/bindings/devfreq/
3476
3477 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
3478 M:      Chanwoo Choi <cw00.choi@samsung.com>
3479 L:      linux-pm@vger.kernel.org
3480 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3481 S:      Supported
3482 F:      drivers/devfreq/event/
3483 F:      drivers/devfreq/devfreq-event.c
3484 F:      include/linux/devfreq-event.h
3485 F:      Documentation/devicetree/bindings/devfreq/event/
3486
3487 DEVICE NUMBER REGISTRY
3488 M:      Torben Mathiasen <device@lanana.org>
3489 W:      http://lanana.org/docs/device-list/index.html
3490 S:      Maintained
3491
3492 DEVICE-MAPPER  (LVM)
3493 M:      Alasdair Kergon <agk@redhat.com>
3494 M:      Mike Snitzer <snitzer@redhat.com>
3495 M:      dm-devel@redhat.com
3496 L:      dm-devel@redhat.com
3497 W:      http://sources.redhat.com/dm
3498 Q:      http://patchwork.kernel.org/project/dm-devel/list/
3499 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
3500 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
3501 S:      Maintained
3502 F:      Documentation/device-mapper/
3503 F:      drivers/md/dm*
3504 F:      drivers/md/persistent-data/
3505 F:      include/linux/device-mapper.h
3506 F:      include/linux/dm-*.h
3507 F:      include/uapi/linux/dm-*.h
3508
3509 DEVLINK
3510 M:      Jiri Pirko <jiri@mellanox.com>
3511 L:      netdev@vger.kernel.org
3512 S:      Supported
3513 F:      net/core/devlink.c
3514 F:      include/net/devlink.h
3515 F:      include/uapi/linux/devlink.h
3516
3517 DIALOG SEMICONDUCTOR DRIVERS
3518 M:      Support Opensource <support.opensource@diasemi.com>
3519 W:      http://www.dialog-semiconductor.com/products
3520 S:      Supported
3521 F:      Documentation/hwmon/da90??
3522 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
3523 F:      drivers/gpio/gpio-da90??.c
3524 F:      drivers/hwmon/da90??-hwmon.c
3525 F:      drivers/iio/adc/da91??-*.c
3526 F:      drivers/input/misc/da90??_onkey.c
3527 F:      drivers/input/touchscreen/da9052_tsi.c
3528 F:      drivers/leds/leds-da90??.c
3529 F:      drivers/mfd/da903x.c
3530 F:      drivers/mfd/da90??-*.c
3531 F:      drivers/mfd/da91??-*.c
3532 F:      drivers/power/da9052-battery.c
3533 F:      drivers/power/da91??-*.c
3534 F:      drivers/regulator/da903x.c
3535 F:      drivers/regulator/da9???-regulator.[ch]
3536 F:      drivers/rtc/rtc-da90??.c
3537 F:      drivers/video/backlight/da90??_bl.c
3538 F:      drivers/watchdog/da90??_wdt.c
3539 F:      include/linux/mfd/da903x.h
3540 F:      include/linux/mfd/da9052/
3541 F:      include/linux/mfd/da9055/
3542 F:      include/linux/mfd/da9063/
3543 F:      include/linux/mfd/da9150/
3544 F:      include/sound/da[79]*.h
3545 F:      sound/soc/codecs/da[79]*.[ch]
3546
3547 DIGI NEO AND CLASSIC PCI PRODUCTS
3548 M:      Lidza Louina <lidza.louina@gmail.com>
3549 M:      Mark Hounschell <markh@compro.net>
3550 L:      driverdev-devel@linuxdriverproject.org
3551 S:      Maintained
3552 F:      drivers/staging/dgnc/
3553
3554 DIGI EPCA PCI PRODUCTS
3555 M:      Lidza Louina <lidza.louina@gmail.com>
3556 M:      Daeseok Youn <daeseok.youn@gmail.com>
3557 L:      driverdev-devel@linuxdriverproject.org
3558 S:      Maintained
3559 F:      drivers/staging/dgap/
3560
3561 DIOLAN U2C-12 I2C DRIVER
3562 M:      Guenter Roeck <linux@roeck-us.net>
3563 L:      linux-i2c@vger.kernel.org
3564 S:      Maintained
3565 F:      drivers/i2c/busses/i2c-diolan-u2c.c
3566
3567 DIRECT ACCESS (DAX)
3568 M:      Matthew Wilcox <willy@linux.intel.com>
3569 L:      linux-fsdevel@vger.kernel.org
3570 S:      Supported
3571 F:      fs/dax.c
3572
3573 DIRECTORY NOTIFICATION (DNOTIFY)
3574 M:      Eric Paris <eparis@parisplace.org>
3575 S:      Maintained
3576 F:      Documentation/filesystems/dnotify.txt
3577 F:      fs/notify/dnotify/
3578 F:      include/linux/dnotify.h
3579
3580 DISK GEOMETRY AND PARTITION HANDLING
3581 M:      Andries Brouwer <aeb@cwi.nl>
3582 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
3583 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
3584 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
3585 S:      Maintained
3586
3587 DISKQUOTA
3588 M:      Jan Kara <jack@suse.com>
3589 S:      Maintained
3590 F:      Documentation/filesystems/quota.txt
3591 F:      fs/quota/
3592 F:      include/linux/quota*.h
3593 F:      include/uapi/linux/quota*.h
3594
3595 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
3596 M:      Bernie Thompson <bernie@plugable.com>
3597 L:      linux-fbdev@vger.kernel.org
3598 S:      Maintained
3599 W:      http://plugable.com/category/projects/udlfb/
3600 F:      drivers/video/fbdev/udlfb.c
3601 F:      include/video/udlfb.h
3602 F:      Documentation/fb/udlfb.txt
3603
3604 DISTRIBUTED LOCK MANAGER (DLM)
3605 M:      Christine Caulfield <ccaulfie@redhat.com>
3606 M:      David Teigland <teigland@redhat.com>
3607 L:      cluster-devel@redhat.com
3608 W:      http://sources.redhat.com/cluster/
3609 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
3610 S:      Supported
3611 F:      fs/dlm/
3612
3613 DMA BUFFER SHARING FRAMEWORK
3614 M:      Sumit Semwal <sumit.semwal@linaro.org>
3615 S:      Maintained
3616 L:      linux-media@vger.kernel.org
3617 L:      dri-devel@lists.freedesktop.org
3618 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
3619 F:      drivers/dma-buf/
3620 F:      include/linux/dma-buf*
3621 F:      include/linux/reservation.h
3622 F:      include/linux/*fence.h
3623 F:      Documentation/dma-buf-sharing.txt
3624 T:      git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
3625
3626 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
3627 M:      Vinod Koul <vinod.koul@intel.com>
3628 L:      dmaengine@vger.kernel.org
3629 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
3630 S:      Maintained
3631 F:      drivers/dma/
3632 F:      include/linux/dmaengine.h
3633 F:      Documentation/dmaengine/
3634 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
3635
3636 DME1737 HARDWARE MONITOR DRIVER
3637 M:      Juerg Haefliger <juergh@gmail.com>
3638 L:      lm-sensors@lm-sensors.org
3639 S:      Maintained
3640 F:      Documentation/hwmon/dme1737
3641 F:      drivers/hwmon/dme1737.c
3642
3643 DMI/SMBIOS SUPPORT
3644 M:      Jean Delvare <jdelvare@suse.com>
3645 S:      Maintained
3646 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
3647 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
3648 F:      drivers/firmware/dmi-id.c
3649 F:      drivers/firmware/dmi_scan.c
3650 F:      include/linux/dmi.h
3651
3652 DOCUMENTATION
3653 M:      Jonathan Corbet <corbet@lwn.net>
3654 L:      linux-doc@vger.kernel.org
3655 S:      Maintained
3656 F:      Documentation/
3657 F:      scripts/docproc.c
3658 F:      scripts/kernel-doc*
3659 X:      Documentation/ABI/
3660 X:      Documentation/devicetree/
3661 X:      Documentation/acpi
3662 X:      Documentation/power
3663 X:      Documentation/spi
3664 X:      Documentation/DocBook/media
3665 T:      git git://git.lwn.net/linux.git docs-next
3666
3667 DOUBLETALK DRIVER
3668 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
3669 L:      blinux-list@redhat.com
3670 S:      Maintained
3671 F:      drivers/char/dtlk.c
3672 F:      include/linux/dtlk.h
3673
3674 DPT_I2O SCSI RAID DRIVER
3675 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
3676 L:      linux-scsi@vger.kernel.org
3677 W:      http://www.adaptec.com/
3678 S:      Maintained
3679 F:      drivers/scsi/dpt*
3680 F:      drivers/scsi/dpt/
3681
3682 DRBD DRIVER
3683 M:      Philipp Reisner <philipp.reisner@linbit.com>
3684 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
3685 L:      drbd-dev@lists.linbit.com
3686 W:      http://www.drbd.org
3687 T:      git git://git.linbit.com/linux-drbd.git
3688 T:      git git://git.linbit.com/drbd-8.4.git
3689 S:      Supported
3690 F:      drivers/block/drbd/
3691 F:      lib/lru_cache.c
3692 F:      Documentation/blockdev/drbd/
3693
3694 DRIVER CORE, KOBJECTS, DEBUGFS, KERNFS AND SYSFS
3695 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3696 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
3697 S:      Supported
3698 F:      Documentation/kobject.txt
3699 F:      drivers/base/
3700 F:      fs/debugfs/
3701 F:      fs/kernfs/
3702 F:      fs/sysfs/
3703 F:      include/linux/debugfs.h
3704 F:      include/linux/kobj*
3705 F:      lib/kobj*
3706
3707 DRM DRIVERS
3708 M:      David Airlie <airlied@linux.ie>
3709 L:      dri-devel@lists.freedesktop.org
3710 T:      git git://people.freedesktop.org/~airlied/linux
3711 S:      Maintained
3712 F:      drivers/gpu/drm/
3713 F:      drivers/gpu/vga/
3714 F:      include/drm/
3715 F:      include/uapi/drm/
3716
3717 RADEON DRM DRIVERS
3718 M:      Alex Deucher <alexander.deucher@amd.com>
3719 M:      Christian König <christian.koenig@amd.com>
3720 L:      dri-devel@lists.freedesktop.org
3721 T:      git git://people.freedesktop.org/~agd5f/linux
3722 S:      Supported
3723 F:      drivers/gpu/drm/radeon/
3724 F:      include/uapi/drm/radeon*
3725
3726 DRM PANEL DRIVERS
3727 M:      Thierry Reding <thierry.reding@gmail.com>
3728 L:      dri-devel@lists.freedesktop.org
3729 T:      git git://anongit.freedesktop.org/tegra/linux.git
3730 S:      Maintained
3731 F:      drivers/gpu/drm/drm_panel.c
3732 F:      drivers/gpu/drm/panel/
3733 F:      include/drm/drm_panel.h
3734 F:      Documentation/devicetree/bindings/display/panel/
3735
3736 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
3737 M:      Daniel Vetter <daniel.vetter@intel.com>
3738 M:      Jani Nikula <jani.nikula@linux.intel.com>
3739 L:      intel-gfx@lists.freedesktop.org
3740 L:      dri-devel@lists.freedesktop.org
3741 W:      https://01.org/linuxgraphics/
3742 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
3743 T:      git git://anongit.freedesktop.org/drm-intel
3744 S:      Supported
3745 F:      drivers/gpu/drm/i915/
3746 F:      include/drm/i915*
3747 F:      include/uapi/drm/i915*
3748
3749 DRM DRIVERS FOR ATMEL HLCDC
3750 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
3751 L:      dri-devel@lists.freedesktop.org
3752 S:      Supported
3753 F:      drivers/gpu/drm/atmel-hlcdc/
3754 F:      Documentation/devicetree/bindings/drm/atmel/
3755
3756 DRM DRIVERS FOR EXYNOS
3757 M:      Inki Dae <inki.dae@samsung.com>
3758 M:      Joonyoung Shim <jy0922.shim@samsung.com>
3759 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
3760 M:      Kyungmin Park <kyungmin.park@samsung.com>
3761 L:      dri-devel@lists.freedesktop.org
3762 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
3763 S:      Supported
3764 F:      drivers/gpu/drm/exynos/
3765 F:      include/drm/exynos*
3766 F:      include/uapi/drm/exynos*
3767
3768 DRM DRIVERS FOR FREESCALE DCU
3769 M:      Jianwei Wang <jianwei.wang.chn@gmail.com>
3770 M:      Alison Wang <alison.wang@freescale.com>
3771 L:      dri-devel@lists.freedesktop.org
3772 S:      Supported
3773 F:      drivers/gpu/drm/fsl-dcu/
3774 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
3775 F:      Documentation/devicetree/bindings/display/panel/nec,nl4827hc19_05b.txt
3776
3777 DRM DRIVERS FOR FREESCALE IMX
3778 M:      Philipp Zabel <p.zabel@pengutronix.de>
3779 L:      dri-devel@lists.freedesktop.org
3780 S:      Maintained
3781 F:      drivers/gpu/drm/imx/
3782 F:      drivers/gpu/ipu-v3/
3783 F:      Documentation/devicetree/bindings/display/imx/
3784
3785 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
3786 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
3787 L:      dri-devel@lists.freedesktop.org
3788 T:      git git://github.com/patjak/drm-gma500
3789 S:      Maintained
3790 F:      drivers/gpu/drm/gma500
3791 F:      include/drm/gma500*
3792
3793 DRM DRIVERS FOR NVIDIA TEGRA
3794 M:      Thierry Reding <thierry.reding@gmail.com>
3795 M:      Terje Bergström <tbergstrom@nvidia.com>
3796 L:      dri-devel@lists.freedesktop.org
3797 L:      linux-tegra@vger.kernel.org
3798 T:      git git://anongit.freedesktop.org/tegra/linux.git
3799 S:      Supported
3800 F:      drivers/gpu/drm/tegra/
3801 F:      drivers/gpu/host1x/
3802 F:      include/linux/host1x.h
3803 F:      include/uapi/drm/tegra_drm.h
3804 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
3805
3806 DRM DRIVERS FOR RENESAS
3807 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
3808 L:      dri-devel@lists.freedesktop.org
3809 L:      linux-renesas-soc@vger.kernel.org
3810 T:      git git://people.freedesktop.org/~airlied/linux
3811 S:      Supported
3812 F:      drivers/gpu/drm/rcar-du/
3813 F:      drivers/gpu/drm/shmobile/
3814 F:      include/linux/platform_data/shmob_drm.h
3815
3816 DRM DRIVERS FOR ROCKCHIP
3817 M:      Mark Yao <mark.yao@rock-chips.com>
3818 L:      dri-devel@lists.freedesktop.org
3819 S:      Maintained
3820 F:      drivers/gpu/drm/rockchip/
3821 F:      Documentation/devicetree/bindings/display/rockchip*
3822
3823 DRM DRIVERS FOR STI
3824 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
3825 M:      Vincent Abriou <vincent.abriou@st.com>
3826 L:      dri-devel@lists.freedesktop.org
3827 T:      git http://git.linaro.org/people/benjamin.gaignard/kernel.git
3828 S:      Maintained
3829 F:      drivers/gpu/drm/sti
3830 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
3831
3832 DRM DRIVERS FOR VIVANTE GPU IP
3833 M:      Lucas Stach <l.stach@pengutronix.de>
3834 R:      Russell King <linux+etnaviv@arm.linux.org.uk>
3835 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
3836 L:      dri-devel@lists.freedesktop.org
3837 S:      Maintained
3838 F:      drivers/gpu/drm/etnaviv
3839 F:      Documentation/devicetree/bindings/display/etnaviv
3840
3841 DSBR100 USB FM RADIO DRIVER
3842 M:      Alexey Klimov <klimov.linux@gmail.com>
3843 L:      linux-media@vger.kernel.org
3844 T:      git git://linuxtv.org/media_tree.git
3845 S:      Maintained
3846 F:      drivers/media/radio/dsbr100.c
3847
3848 DSCC4 DRIVER
3849 M:      Francois Romieu <romieu@fr.zoreil.com>
3850 L:      netdev@vger.kernel.org
3851 S:      Maintained
3852 F:      drivers/net/wan/dscc4.c
3853
3854 DT3155 MEDIA DRIVER
3855 M:      Hans Verkuil <hverkuil@xs4all.nl>
3856 L:      linux-media@vger.kernel.org
3857 T:      git git://linuxtv.org/media_tree.git
3858 W:      https://linuxtv.org
3859 S:      Odd Fixes
3860 F:      drivers/media/pci/dt3155/
3861
3862 DVB_USB_AF9015 MEDIA DRIVER
3863 M:      Antti Palosaari <crope@iki.fi>
3864 L:      linux-media@vger.kernel.org
3865 W:      https://linuxtv.org
3866 W:      http://palosaari.fi/linux/
3867 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3868 T:      git git://linuxtv.org/anttip/media_tree.git
3869 S:      Maintained
3870 F:      drivers/media/usb/dvb-usb-v2/af9015*
3871
3872 DVB_USB_AF9035 MEDIA DRIVER
3873 M:      Antti Palosaari <crope@iki.fi>
3874 L:      linux-media@vger.kernel.org
3875 W:      https://linuxtv.org
3876 W:      http://palosaari.fi/linux/
3877 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3878 T:      git git://linuxtv.org/anttip/media_tree.git
3879 S:      Maintained
3880 F:      drivers/media/usb/dvb-usb-v2/af9035*
3881
3882 DVB_USB_ANYSEE MEDIA DRIVER
3883 M:      Antti Palosaari <crope@iki.fi>
3884 L:      linux-media@vger.kernel.org
3885 W:      https://linuxtv.org
3886 W:      http://palosaari.fi/linux/
3887 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3888 T:      git git://linuxtv.org/anttip/media_tree.git
3889 S:      Maintained
3890 F:      drivers/media/usb/dvb-usb-v2/anysee*
3891
3892 DVB_USB_AU6610 MEDIA DRIVER
3893 M:      Antti Palosaari <crope@iki.fi>
3894 L:      linux-media@vger.kernel.org
3895 W:      https://linuxtv.org
3896 W:      http://palosaari.fi/linux/
3897 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3898 T:      git git://linuxtv.org/anttip/media_tree.git
3899 S:      Maintained
3900 F:      drivers/media/usb/dvb-usb-v2/au6610*
3901
3902 DVB_USB_CE6230 MEDIA DRIVER
3903 M:      Antti Palosaari <crope@iki.fi>
3904 L:      linux-media@vger.kernel.org
3905 W:      https://linuxtv.org
3906 W:      http://palosaari.fi/linux/
3907 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3908 T:      git git://linuxtv.org/anttip/media_tree.git
3909 S:      Maintained
3910 F:      drivers/media/usb/dvb-usb-v2/ce6230*
3911
3912 DVB_USB_CXUSB MEDIA DRIVER
3913 M:      Michael Krufky <mkrufky@linuxtv.org>
3914 L:      linux-media@vger.kernel.org
3915 W:      https://linuxtv.org
3916 W:      http://github.com/mkrufky
3917 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3918 T:      git git://linuxtv.org/media_tree.git
3919 S:      Maintained
3920 F:      drivers/media/usb/dvb-usb/cxusb*
3921
3922 DVB_USB_EC168 MEDIA DRIVER
3923 M:      Antti Palosaari <crope@iki.fi>
3924 L:      linux-media@vger.kernel.org
3925 W:      https://linuxtv.org
3926 W:      http://palosaari.fi/linux/
3927 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3928 T:      git git://linuxtv.org/anttip/media_tree.git
3929 S:      Maintained
3930 F:      drivers/media/usb/dvb-usb-v2/ec168*
3931
3932 DVB_USB_GL861 MEDIA DRIVER
3933 M:      Antti Palosaari <crope@iki.fi>
3934 L:      linux-media@vger.kernel.org
3935 W:      https://linuxtv.org
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/gl861*
3940
3941 DVB_USB_MXL111SF MEDIA DRIVER
3942 M:      Michael Krufky <mkrufky@linuxtv.org>
3943 L:      linux-media@vger.kernel.org
3944 W:      https://linuxtv.org
3945 W:      http://github.com/mkrufky
3946 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3947 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
3948 S:      Maintained
3949 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
3950
3951 DVB_USB_RTL28XXU MEDIA DRIVER
3952 M:      Antti Palosaari <crope@iki.fi>
3953 L:      linux-media@vger.kernel.org
3954 W:      https://linuxtv.org
3955 W:      http://palosaari.fi/linux/
3956 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3957 T:      git git://linuxtv.org/anttip/media_tree.git
3958 S:      Maintained
3959 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
3960
3961 DVB_USB_V2 MEDIA DRIVER
3962 M:      Antti Palosaari <crope@iki.fi>
3963 L:      linux-media@vger.kernel.org
3964 W:      https://linuxtv.org
3965 W:      http://palosaari.fi/linux/
3966 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3967 T:      git git://linuxtv.org/anttip/media_tree.git
3968 S:      Maintained
3969 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
3970 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
3971
3972 DYNAMIC DEBUG
3973 M:      Jason Baron <jbaron@akamai.com>
3974 S:      Maintained
3975 F:      lib/dynamic_debug.c
3976 F:      include/linux/dynamic_debug.h
3977
3978 DZ DECSTATION DZ11 SERIAL DRIVER
3979 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3980 S:      Maintained
3981 F:      drivers/tty/serial/dz.*
3982
3983 E3X0 POWER BUTTON DRIVER
3984 M:      Moritz Fischer <moritz.fischer@ettus.com>
3985 L:      usrp-users@lists.ettus.com
3986 W:      http://www.ettus.com
3987 S:      Supported
3988 F:      drivers/input/misc/e3x0-button.c
3989 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
3990
3991 E4000 MEDIA DRIVER
3992 M:      Antti Palosaari <crope@iki.fi>
3993 L:      linux-media@vger.kernel.org
3994 W:      https://linuxtv.org
3995 W:      http://palosaari.fi/linux/
3996 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3997 T:      git git://linuxtv.org/anttip/media_tree.git
3998 S:      Maintained
3999 F:      drivers/media/tuners/e4000*
4000
4001 EATA ISA/EISA/PCI SCSI DRIVER
4002 M:      Dario Ballabio <ballabio_dario@emc.com>
4003 L:      linux-scsi@vger.kernel.org
4004 S:      Maintained
4005 F:      drivers/scsi/eata.c
4006
4007 EC100 MEDIA DRIVER
4008 M:      Antti Palosaari <crope@iki.fi>
4009 L:      linux-media@vger.kernel.org
4010 W:      https://linuxtv.org
4011 W:      http://palosaari.fi/linux/
4012 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4013 T:      git git://linuxtv.org/anttip/media_tree.git
4014 S:      Maintained
4015 F:      drivers/media/dvb-frontends/ec100*
4016
4017 ECRYPT FILE SYSTEM
4018 M:      Tyler Hicks <tyhicks@canonical.com>
4019 L:      ecryptfs@vger.kernel.org
4020 W:      http://ecryptfs.org
4021 W:      https://launchpad.net/ecryptfs
4022 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
4023 S:      Supported
4024 F:      Documentation/filesystems/ecryptfs.txt
4025 F:      fs/ecryptfs/
4026
4027 EDAC-CORE
4028 M:      Doug Thompson <dougthompson@xmission.com>
4029 M:      Borislav Petkov <bp@alien8.de>
4030 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4031 L:      linux-edac@vger.kernel.org
4032 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git for-next
4033 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-edac.git linux_next
4034 S:      Supported
4035 F:      Documentation/edac.txt
4036 F:      drivers/edac/
4037 F:      include/linux/edac.h
4038
4039 EDAC-AMD64
4040 M:      Doug Thompson <dougthompson@xmission.com>
4041 M:      Borislav Petkov <bp@alien8.de>
4042 L:      linux-edac@vger.kernel.org
4043 S:      Maintained
4044 F:      drivers/edac/amd64_edac*
4045
4046 EDAC-CALXEDA
4047 M:      Doug Thompson <dougthompson@xmission.com>
4048 M:      Robert Richter <rric@kernel.org>
4049 L:      linux-edac@vger.kernel.org
4050 S:      Maintained
4051 F:      drivers/edac/highbank*
4052
4053 EDAC-CAVIUM
4054 M:      Ralf Baechle <ralf@linux-mips.org>
4055 M:      David Daney <david.daney@cavium.com>
4056 L:      linux-edac@vger.kernel.org
4057 L:      linux-mips@linux-mips.org
4058 S:      Supported
4059 F:      drivers/edac/octeon_edac*
4060
4061 EDAC-E752X
4062 M:      Mark Gross <mark.gross@intel.com>
4063 M:      Doug Thompson <dougthompson@xmission.com>
4064 L:      linux-edac@vger.kernel.org
4065 S:      Maintained
4066 F:      drivers/edac/e752x_edac.c
4067
4068 EDAC-E7XXX
4069 M:      Doug Thompson <dougthompson@xmission.com>
4070 L:      linux-edac@vger.kernel.org
4071 S:      Maintained
4072 F:      drivers/edac/e7xxx_edac.c
4073
4074 EDAC-GHES
4075 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4076 L:      linux-edac@vger.kernel.org
4077 S:      Maintained
4078 F:      drivers/edac/ghes_edac.c
4079
4080 EDAC-I82443BXGX
4081 M:      Tim Small <tim@buttersideup.com>
4082 L:      linux-edac@vger.kernel.org
4083 S:      Maintained
4084 F:      drivers/edac/i82443bxgx_edac.c
4085
4086 EDAC-I3000
4087 M:      Jason Uhlenkott <juhlenko@akamai.com>
4088 L:      linux-edac@vger.kernel.org
4089 S:      Maintained
4090 F:      drivers/edac/i3000_edac.c
4091
4092 EDAC-I5000
4093 M:      Doug Thompson <dougthompson@xmission.com>
4094 L:      linux-edac@vger.kernel.org
4095 S:      Maintained
4096 F:      drivers/edac/i5000_edac.c
4097
4098 EDAC-I5400
4099 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4100 L:      linux-edac@vger.kernel.org
4101 S:      Maintained
4102 F:      drivers/edac/i5400_edac.c
4103
4104 EDAC-I7300
4105 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4106 L:      linux-edac@vger.kernel.org
4107 S:      Maintained
4108 F:      drivers/edac/i7300_edac.c
4109
4110 EDAC-I7CORE
4111 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4112 L:      linux-edac@vger.kernel.org
4113 S:      Maintained
4114 F:      drivers/edac/i7core_edac.c
4115
4116 EDAC-I82975X
4117 M:      Ranganathan Desikan <ravi@jetztechnologies.com>
4118 M:      "Arvind R." <arvino55@gmail.com>
4119 L:      linux-edac@vger.kernel.org
4120 S:      Maintained
4121 F:      drivers/edac/i82975x_edac.c
4122
4123 EDAC-IE31200
4124 M:      Jason Baron <jbaron@akamai.com>
4125 L:      linux-edac@vger.kernel.org
4126 S:      Maintained
4127 F:      drivers/edac/ie31200_edac.c
4128
4129 EDAC-MPC85XX
4130 M:      Johannes Thumshirn <morbidrsa@gmail.com>
4131 L:      linux-edac@vger.kernel.org
4132 S:      Maintained
4133 F:      drivers/edac/mpc85xx_edac.[ch]
4134
4135 EDAC-PASEMI
4136 M:      Egor Martovetsky <egor@pasemi.com>
4137 L:      linux-edac@vger.kernel.org
4138 S:      Maintained
4139 F:      drivers/edac/pasemi_edac.c
4140
4141 EDAC-R82600
4142 M:      Tim Small <tim@buttersideup.com>
4143 L:      linux-edac@vger.kernel.org
4144 S:      Maintained
4145 F:      drivers/edac/r82600_edac.c
4146
4147 EDAC-SBRIDGE
4148 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4149 L:      linux-edac@vger.kernel.org
4150 S:      Maintained
4151 F:      drivers/edac/sb_edac.c
4152
4153 EDAC-XGENE
4154 APPLIED MICRO (APM) X-GENE SOC EDAC
4155 M:     Loc Ho <lho@apm.com>
4156 S:     Supported
4157 F:     drivers/edac/xgene_edac.c
4158 F:     Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
4159
4160 EDIROL UA-101/UA-1000 DRIVER
4161 M:      Clemens Ladisch <clemens@ladisch.de>
4162 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4163 T:      git git://git.alsa-project.org/alsa-kernel.git
4164 S:      Maintained
4165 F:      sound/usb/misc/ua101.c
4166
4167 EXTENSIBLE FIRMWARE INTERFACE (EFI)
4168 M:      Matt Fleming <matt@codeblueprint.co.uk>
4169 L:      linux-efi@vger.kernel.org
4170 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4171 S:      Maintained
4172 F:      Documentation/efi-stub.txt
4173 F:      arch/ia64/kernel/efi.c
4174 F:      arch/x86/boot/compressed/eboot.[ch]
4175 F:      arch/x86/include/asm/efi.h
4176 F:      arch/x86/platform/efi/*
4177 F:      drivers/firmware/efi/*
4178 F:      include/linux/efi*.h
4179
4180 EFI VARIABLE FILESYSTEM
4181 M:      Matthew Garrett <matthew.garrett@nebula.com>
4182 M:      Jeremy Kerr <jk@ozlabs.org>
4183 M:      Matt Fleming <matt@codeblueprint.co.uk>
4184 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4185 L:      linux-efi@vger.kernel.org
4186 S:      Maintained
4187 F:      fs/efivarfs/
4188
4189 EFIFB FRAMEBUFFER DRIVER
4190 L:      linux-fbdev@vger.kernel.org
4191 M:      Peter Jones <pjones@redhat.com>
4192 S:      Maintained
4193 F:      drivers/video/fbdev/efifb.c
4194
4195 EFS FILESYSTEM
4196 W:      http://aeschi.ch.eu.org/efs/
4197 S:      Orphan
4198 F:      fs/efs/
4199
4200 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
4201 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
4202 L:      netdev@vger.kernel.org
4203 S:      Maintained
4204 F:      drivers/net/ethernet/ibm/ehea/
4205
4206 EM28XX VIDEO4LINUX DRIVER
4207 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4208 L:      linux-media@vger.kernel.org
4209 W:      https://linuxtv.org
4210 T:      git git://linuxtv.org/media_tree.git
4211 S:      Maintained
4212 F:      drivers/media/usb/em28xx/
4213
4214 EMBEDDED LINUX
4215 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
4216 M:      Matt Mackall <mpm@selenic.com>
4217 M:      David Woodhouse <dwmw2@infradead.org>
4218 L:      linux-embedded@vger.kernel.org
4219 S:      Maintained
4220
4221 EMULEX/AVAGO LPFC FC/FCOE SCSI DRIVER
4222 M:      James Smart <james.smart@avagotech.com>
4223 M:      Dick Kennedy <dick.kennedy@avagotech.com>
4224 L:      linux-scsi@vger.kernel.org
4225 W:      http://www.avagotech.com
4226 S:      Supported
4227 F:      drivers/scsi/lpfc/
4228
4229 ENE CB710 FLASH CARD READER DRIVER
4230 M:      MichaÅ‚ MirosÅ‚aw <mirq-linux@rere.qmqm.pl>
4231 S:      Maintained
4232 F:      drivers/misc/cb710/
4233 F:      drivers/mmc/host/cb710-mmc.*
4234 F:      include/linux/cb710.h
4235
4236 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
4237 M:      Maxim Levitsky <maximlevitsky@gmail.com>
4238 S:      Maintained
4239 F:      drivers/media/rc/ene_ir.*
4240
4241 ENHANCED ERROR HANDLING (EEH)
4242 M:      Gavin Shan <shangw@linux.vnet.ibm.com>
4243 L:      linuxppc-dev@lists.ozlabs.org
4244 S:      Supported
4245 F:      Documentation/powerpc/eeh-pci-error-recovery.txt
4246 F:      arch/powerpc/kernel/eeh*.c
4247
4248 EPSON S1D13XXX FRAMEBUFFER DRIVER
4249 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
4250 S:      Maintained
4251 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
4252 F:      drivers/video/fbdev/s1d13xxxfb.c
4253 F:      include/video/s1d13xxxfb.h
4254
4255 ET131X NETWORK DRIVER
4256 M:      Mark Einon <mark.einon@gmail.com>
4257 S:      Odd Fixes
4258 F:      drivers/net/ethernet/agere/
4259
4260 ETHERNET BRIDGE
4261 M:      Stephen Hemminger <stephen@networkplumber.org>
4262 L:      bridge@lists.linux-foundation.org
4263 L:      netdev@vger.kernel.org
4264 W:      http://www.linuxfoundation.org/en/Net:Bridge
4265 S:      Maintained
4266 F:      include/linux/netfilter_bridge/
4267 F:      net/bridge/
4268
4269 ETHERNET PHY LIBRARY
4270 M:      Florian Fainelli <f.fainelli@gmail.com>
4271 L:      netdev@vger.kernel.org
4272 S:      Maintained
4273 F:      include/linux/phy.h
4274 F:      include/linux/phy_fixed.h
4275 F:      drivers/net/phy/
4276 F:      Documentation/networking/phy.txt
4277 F:      drivers/of/of_mdio.c
4278 F:      drivers/of/of_net.c
4279
4280 EXT2 FILE SYSTEM
4281 M:      Jan Kara <jack@suse.com>
4282 L:      linux-ext4@vger.kernel.org
4283 S:      Maintained
4284 F:      Documentation/filesystems/ext2.txt
4285 F:      fs/ext2/
4286 F:      include/linux/ext2*
4287
4288 EXT4 FILE SYSTEM
4289 M:      "Theodore Ts'o" <tytso@mit.edu>
4290 M:      Andreas Dilger <adilger.kernel@dilger.ca>
4291 L:      linux-ext4@vger.kernel.org
4292 W:      http://ext4.wiki.kernel.org
4293 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
4294 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
4295 S:      Maintained
4296 F:      Documentation/filesystems/ext4.txt
4297 F:      fs/ext4/
4298
4299 Extended Verification Module (EVM)
4300 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
4301 L:      linux-ima-devel@lists.sourceforge.net
4302 L:      linux-security-module@vger.kernel.org
4303 S:      Supported
4304 F:      security/integrity/evm/
4305
4306 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
4307 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
4308 M:      Chanwoo Choi <cw00.choi@samsung.com>
4309 L:      linux-kernel@vger.kernel.org
4310 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
4311 S:      Maintained
4312 F:      drivers/extcon/
4313 F:      include/linux/extcon/
4314 F:      include/linux/extcon.h
4315 F:      Documentation/extcon/
4316 F:      Documentation/devicetree/bindings/extcon/
4317
4318 EXYNOS DP DRIVER
4319 M:      Jingoo Han <jingoohan1@gmail.com>
4320 L:      dri-devel@lists.freedesktop.org
4321 S:      Maintained
4322 F:      drivers/gpu/drm/exynos/exynos_dp*
4323
4324 EXYNOS MIPI DISPLAY DRIVERS
4325 M:      Inki Dae <inki.dae@samsung.com>
4326 M:      Donghwa Lee <dh09.lee@samsung.com>
4327 M:      Kyungmin Park <kyungmin.park@samsung.com>
4328 L:      linux-fbdev@vger.kernel.org
4329 S:      Maintained
4330 F:      drivers/video/fbdev/exynos/exynos_mipi*
4331 F:      include/video/exynos_mipi*
4332
4333 F71805F HARDWARE MONITORING DRIVER
4334 M:      Jean Delvare <jdelvare@suse.com>
4335 L:      lm-sensors@lm-sensors.org
4336 S:      Maintained
4337 F:      Documentation/hwmon/f71805f
4338 F:      drivers/hwmon/f71805f.c
4339
4340 FC0011 TUNER DRIVER
4341 M:      Michael Buesch <m@bues.ch>
4342 L:      linux-media@vger.kernel.org
4343 S:      Maintained
4344 F:      drivers/media/tuners/fc0011.h
4345 F:      drivers/media/tuners/fc0011.c
4346
4347 FC2580 MEDIA DRIVER
4348 M:      Antti Palosaari <crope@iki.fi>
4349 L:      linux-media@vger.kernel.org
4350 W:      https://linuxtv.org
4351 W:      http://palosaari.fi/linux/
4352 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4353 T:      git git://linuxtv.org/anttip/media_tree.git
4354 S:      Maintained
4355 F:      drivers/media/tuners/fc2580*
4356
4357 FANOTIFY
4358 M:      Eric Paris <eparis@redhat.com>
4359 S:      Maintained
4360 F:      fs/notify/fanotify/
4361 F:      include/linux/fanotify.h
4362 F:      include/uapi/linux/fanotify.h
4363
4364 FARSYNC SYNCHRONOUS DRIVER
4365 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
4366 W:      http://www.farsite.co.uk/
4367 S:      Supported
4368 F:      drivers/net/wan/farsync.*
4369
4370 FAULT INJECTION SUPPORT
4371 M:      Akinobu Mita <akinobu.mita@gmail.com>
4372 S:      Supported
4373 F:      Documentation/fault-injection/
4374 F:      lib/fault-inject.c
4375
4376 FBTFT Framebuffer drivers
4377 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
4378 M:      Noralf Trønnes <noralf@tronnes.org>
4379 S:      Maintained
4380 F:      drivers/staging/fbtft/
4381
4382 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
4383 M:      Vasu Dev <vasu.dev@intel.com>
4384 L:      fcoe-devel@open-fcoe.org
4385 W:      www.Open-FCoE.org
4386 S:      Supported
4387 F:      drivers/scsi/libfc/
4388 F:      drivers/scsi/fcoe/
4389 F:      include/scsi/fc/
4390 F:      include/scsi/libfc.h
4391 F:      include/scsi/libfcoe.h
4392 F:      include/uapi/scsi/fc/
4393
4394 FILE LOCKING (flock() and fcntl()/lockf())
4395 M:      Jeff Layton <jlayton@poochiereds.net>
4396 M:      "J. Bruce Fields" <bfields@fieldses.org>
4397 L:      linux-fsdevel@vger.kernel.org
4398 S:      Maintained
4399 F:      include/linux/fcntl.h
4400 F:      include/linux/fs.h
4401 F:      include/uapi/linux/fcntl.h
4402 F:      include/uapi/linux/fs.h
4403 F:      fs/fcntl.c
4404 F:      fs/locks.c
4405
4406 FILESYSTEMS (VFS and infrastructure)
4407 M:      Alexander Viro <viro@zeniv.linux.org.uk>
4408 L:      linux-fsdevel@vger.kernel.org
4409 S:      Maintained
4410 F:      fs/*
4411
4412 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
4413 M:      Riku Voipio <riku.voipio@iki.fi>
4414 L:      lm-sensors@lm-sensors.org
4415 S:      Maintained
4416 F:      drivers/hwmon/f75375s.c
4417 F:      include/linux/f75375s.h
4418
4419 FIREWIRE AUDIO DRIVERS
4420 M:      Clemens Ladisch <clemens@ladisch.de>
4421 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4422 T:      git git://git.alsa-project.org/alsa-kernel.git
4423 S:      Maintained
4424 F:      sound/firewire/
4425
4426 FIREWIRE MEDIA DRIVERS (firedtv)
4427 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4428 L:      linux-media@vger.kernel.org
4429 L:      linux1394-devel@lists.sourceforge.net
4430 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
4431 S:      Maintained
4432 F:      drivers/media/firewire/
4433
4434 FIREWIRE SBP-2 TARGET
4435 M:      Chris Boot <bootc@bootc.net>
4436 L:      linux-scsi@vger.kernel.org
4437 L:      target-devel@vger.kernel.org
4438 L:      linux1394-devel@lists.sourceforge.net
4439 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
4440 S:      Maintained
4441 F:      drivers/target/sbp/
4442
4443 FIREWIRE SUBSYSTEM
4444 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4445 L:      linux1394-devel@lists.sourceforge.net
4446 W:      http://ieee1394.wiki.kernel.org/
4447 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
4448 S:      Maintained
4449 F:      drivers/firewire/
4450 F:      include/linux/firewire.h
4451 F:      include/uapi/linux/firewire*.h
4452 F:      tools/firewire/
4453
4454 FIRMWARE LOADER (request_firmware)
4455 M:      Ming Lei <ming.lei@canonical.com>
4456 L:      linux-kernel@vger.kernel.org
4457 S:      Maintained
4458 F:      Documentation/firmware_class/
4459 F:      drivers/base/firmware*.c
4460 F:      include/linux/firmware.h
4461
4462 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
4463 M:      Joshua Morris <josh.h.morris@us.ibm.com>
4464 M:      Philip Kelleher <pjk1939@linux.vnet.ibm.com>
4465 S:      Maintained
4466 F:      drivers/block/rsxx/
4467
4468 FLOPPY DRIVER
4469 M:      Jiri Kosina <jikos@kernel.org>
4470 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
4471 S:      Odd fixes
4472 F:      drivers/block/floppy.c
4473
4474 FMC SUBSYSTEM
4475 M:      Alessandro Rubini <rubini@gnudd.com>
4476 W:      http://www.ohwr.org/projects/fmc-bus
4477 S:      Supported
4478 F:      drivers/fmc/
4479 F:      include/linux/fmc*.h
4480 F:      include/linux/ipmi-fru.h
4481 K:      fmc_d.*register
4482
4483 FPGA MANAGER FRAMEWORK
4484 M:      Alan Tull <atull@opensource.altera.com>
4485 R:      Moritz Fischer <moritz.fischer@ettus.com>
4486 S:      Maintained
4487 F:      drivers/fpga/
4488 F:      include/linux/fpga/fpga-mgr.h
4489 W:      http://www.rocketboards.org
4490
4491 FPU EMULATOR
4492 M:      Bill Metzenthen <billm@melbpc.org.au>
4493 W:      http://floatingpoint.sourceforge.net/emulator/index.html
4494 S:      Maintained
4495 F:      arch/x86/math-emu/
4496
4497 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
4498 L:      netdev@vger.kernel.org
4499 S:      Orphan
4500 F:      drivers/net/wan/dlci.c
4501 F:      drivers/net/wan/sdla.c
4502
4503 FRAMEBUFFER LAYER
4504 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
4505 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
4506 L:      linux-fbdev@vger.kernel.org
4507 W:      http://linux-fbdev.sourceforge.net/
4508 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
4509 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git
4510 S:      Maintained
4511 F:      Documentation/fb/
4512 F:      drivers/video/
4513 F:      include/video/
4514 F:      include/linux/fb.h
4515 F:      include/uapi/video/
4516 F:      include/uapi/linux/fb.h
4517
4518 FREESCALE DIU FRAMEBUFFER DRIVER
4519 M:      Timur Tabi <timur@tabi.org>
4520 L:      linux-fbdev@vger.kernel.org
4521 S:      Maintained
4522 F:      drivers/video/fbdev/fsl-diu-fb.*
4523
4524 FREESCALE DMA DRIVER
4525 M:      Li Yang <leoli@freescale.com>
4526 M:      Zhang Wei <zw@zh-kernel.org>
4527 L:      linuxppc-dev@lists.ozlabs.org
4528 S:      Maintained
4529 F:      drivers/dma/fsldma.*
4530
4531 FREESCALE GPMI NAND DRIVER
4532 M:      Han Xu <han.xu@nxp.com>
4533 L:      linux-mtd@lists.infradead.org
4534 S:      Maintained
4535 F:      drivers/mtd/nand/gpmi-nand/*
4536
4537 FREESCALE I2C CPM DRIVER
4538 M:      Jochen Friedrich <jochen@scram.de>
4539 L:      linuxppc-dev@lists.ozlabs.org
4540 L:      linux-i2c@vger.kernel.org
4541 S:      Maintained
4542 F:      drivers/i2c/busses/i2c-cpm.c
4543
4544 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
4545 M:      Sascha Hauer <kernel@pengutronix.de>
4546 L:      linux-fbdev@vger.kernel.org
4547 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4548 S:      Maintained
4549 F:      include/linux/platform_data/video-imxfb.h
4550 F:      drivers/video/fbdev/imxfb.c
4551
4552 FREESCALE QUAD SPI DRIVER
4553 M:      Han Xu <han.xu@nxp.com>
4554 L:      linux-mtd@lists.infradead.org
4555 S:      Maintained
4556 F:      drivers/mtd/spi-nor/fsl-quadspi.c
4557
4558 FREESCALE SOC FS_ENET DRIVER
4559 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
4560 M:      Vitaly Bordug <vbordug@ru.mvista.com>
4561 L:      linuxppc-dev@lists.ozlabs.org
4562 L:      netdev@vger.kernel.org
4563 S:      Maintained
4564 F:      drivers/net/ethernet/freescale/fs_enet/
4565 F:      include/linux/fs_enet_pd.h
4566
4567 FREESCALE IMX / MXC FEC DRIVER
4568 M:      Fugang Duan <fugang.duan@nxp.com>
4569 L:      netdev@vger.kernel.org
4570 S:      Maintained
4571 F:      drivers/net/ethernet/freescale/fec_main.c
4572 F:      drivers/net/ethernet/freescale/fec_ptp.c
4573 F:      drivers/net/ethernet/freescale/fec.h
4574 F:      Documentation/devicetree/bindings/net/fsl-fec.txt
4575
4576 FREESCALE QUICC ENGINE LIBRARY
4577 L:      linuxppc-dev@lists.ozlabs.org
4578 S:      Orphan
4579 F:      drivers/soc/fsl/qe/
4580 F:      include/soc/fsl/*qe*.h
4581 F:      include/soc/fsl/*ucc*.h
4582
4583 FREESCALE USB PERIPHERAL DRIVERS
4584 M:      Li Yang <leoli@freescale.com>
4585 L:      linux-usb@vger.kernel.org
4586 L:      linuxppc-dev@lists.ozlabs.org
4587 S:      Maintained
4588 F:      drivers/usb/gadget/udc/fsl*
4589
4590 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
4591 M:      Li Yang <leoli@freescale.com>
4592 L:      netdev@vger.kernel.org
4593 L:      linuxppc-dev@lists.ozlabs.org
4594 S:      Maintained
4595 F:      drivers/net/ethernet/freescale/ucc_geth*
4596
4597 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
4598 M:      Claudiu Manoil <claudiu.manoil@freescale.com>
4599 L:      netdev@vger.kernel.org
4600 S:      Maintained
4601 F:      drivers/net/ethernet/freescale/gianfar*
4602 X:      drivers/net/ethernet/freescale/gianfar_ptp.c
4603 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
4604
4605 FREESCALE QUICC ENGINE UCC UART DRIVER
4606 M:      Timur Tabi <timur@tabi.org>
4607 L:      linuxppc-dev@lists.ozlabs.org
4608 S:      Maintained
4609 F:      drivers/tty/serial/ucc_uart.c
4610
4611 FREESCALE SOC SOUND DRIVERS
4612 M:      Timur Tabi <timur@tabi.org>
4613 M:      Nicolin Chen <nicoleotsuka@gmail.com>
4614 M:      Xiubo Li <Xiubo.Lee@gmail.com>
4615 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4616 L:      linuxppc-dev@lists.ozlabs.org
4617 S:      Maintained
4618 F:      sound/soc/fsl/fsl*
4619 F:      sound/soc/fsl/imx*
4620 F:      sound/soc/fsl/mpc8610_hpcd.c
4621
4622 FREESCALE QORIQ MANAGEMENT COMPLEX DRIVER
4623 M:      "J. German Rivera" <German.Rivera@freescale.com>
4624 L:      linux-kernel@vger.kernel.org
4625 S:      Maintained
4626 F:      drivers/staging/fsl-mc/
4627
4628 FREEVXFS FILESYSTEM
4629 M:      Christoph Hellwig <hch@infradead.org>
4630 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
4631 S:      Maintained
4632 F:      fs/freevxfs/
4633
4634 FREEZER
4635 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4636 M:      Pavel Machek <pavel@ucw.cz>
4637 L:      linux-pm@vger.kernel.org
4638 S:      Supported
4639 F:      Documentation/power/freezing-of-tasks.txt
4640 F:      include/linux/freezer.h
4641 F:      kernel/freezer.c
4642
4643 FRONTSWAP API
4644 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4645 L:      linux-kernel@vger.kernel.org
4646 S:      Maintained
4647 F:      mm/frontswap.c
4648 F:      include/linux/frontswap.h
4649
4650 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
4651 M:      David Howells <dhowells@redhat.com>
4652 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
4653 S:      Supported
4654 F:      Documentation/filesystems/caching/
4655 F:      fs/fscache/
4656 F:      include/linux/fscache*.h
4657
4658 F2FS FILE SYSTEM
4659 M:      Jaegeuk Kim <jaegeuk@kernel.org>
4660 M:      Changman Lee <cm224.lee@samsung.com>
4661 R:      Chao Yu <chao2.yu@samsung.com>
4662 L:      linux-f2fs-devel@lists.sourceforge.net
4663 W:      http://en.wikipedia.org/wiki/F2FS
4664 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
4665 S:      Maintained
4666 F:      Documentation/filesystems/f2fs.txt
4667 F:      Documentation/ABI/testing/sysfs-fs-f2fs
4668 F:      fs/f2fs/
4669 F:      include/linux/f2fs_fs.h
4670 F:      include/trace/events/f2fs.h
4671
4672 FUJITSU FR-V (FRV) PORT
4673 S:      Orphan
4674 F:      arch/frv/
4675
4676 FUJITSU LAPTOP EXTRAS
4677 M:      Jonathan Woithe <jwoithe@just42.net>
4678 L:      platform-driver-x86@vger.kernel.org
4679 S:      Maintained
4680 F:      drivers/platform/x86/fujitsu-laptop.c
4681
4682 FUJITSU M-5MO LS CAMERA ISP DRIVER
4683 M:      Kyungmin Park <kyungmin.park@samsung.com>
4684 M:      Heungjun Kim <riverful.kim@samsung.com>
4685 L:      linux-media@vger.kernel.org
4686 S:      Maintained
4687 F:      drivers/media/i2c/m5mols/
4688 F:      include/media/i2c/m5mols.h
4689
4690 FUJITSU TABLET EXTRAS
4691 M:      Robert Gerlach <khnz@gmx.de>
4692 L:      platform-driver-x86@vger.kernel.org
4693 S:      Maintained
4694 F:      drivers/platform/x86/fujitsu-tablet.c
4695
4696 FUSE: FILESYSTEM IN USERSPACE
4697 M:      Miklos Szeredi <miklos@szeredi.hu>
4698 L:      fuse-devel@lists.sourceforge.net
4699 W:      http://fuse.sourceforge.net/
4700 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
4701 S:      Maintained
4702 F:      fs/fuse/
4703 F:      include/uapi/linux/fuse.h
4704 F:      Documentation/filesystems/fuse.txt
4705
4706 FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
4707 M:      Rik Faith <faith@cs.unc.edu>
4708 L:      linux-scsi@vger.kernel.org
4709 S:      Odd Fixes (e.g., new signatures)
4710 F:      drivers/scsi/fdomain.*
4711
4712 GCOV BASED KERNEL PROFILING
4713 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
4714 S:      Maintained
4715 F:      kernel/gcov/
4716 F:      Documentation/gcov.txt
4717
4718 GDT SCSI DISK ARRAY CONTROLLER DRIVER
4719 M:      Achim Leubner <achim_leubner@adaptec.com>
4720 L:      linux-scsi@vger.kernel.org
4721 W:      http://www.icp-vortex.com/
4722 S:      Supported
4723 F:      drivers/scsi/gdt*
4724
4725 GDB KERNEL DEBUGGING HELPER SCRIPTS
4726 M:      Jan Kiszka <jan.kiszka@siemens.com>
4727 S:      Supported
4728 F:      scripts/gdb/
4729
4730 GEMTEK FM RADIO RECEIVER DRIVER
4731 M:      Hans Verkuil <hverkuil@xs4all.nl>
4732 L:      linux-media@vger.kernel.org
4733 T:      git git://linuxtv.org/media_tree.git
4734 W:      https://linuxtv.org
4735 S:      Maintained
4736 F:      drivers/media/radio/radio-gemtek*
4737
4738 GENERIC GPIO I2C DRIVER
4739 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
4740 S:      Supported
4741 F:      drivers/i2c/busses/i2c-gpio.c
4742 F:      include/linux/i2c-gpio.h
4743
4744 GENERIC GPIO I2C MULTIPLEXER DRIVER
4745 M:      Peter Korsgaard <peter.korsgaard@barco.com>
4746 L:      linux-i2c@vger.kernel.org
4747 S:      Supported
4748 F:      drivers/i2c/muxes/i2c-mux-gpio.c
4749 F:      include/linux/i2c-mux-gpio.h
4750 F:      Documentation/i2c/muxes/i2c-mux-gpio
4751
4752 GENERIC HDLC (WAN) DRIVERS
4753 M:      Krzysztof Halasa <khc@pm.waw.pl>
4754 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
4755 S:      Maintained
4756 F:      drivers/net/wan/c101.c
4757 F:      drivers/net/wan/hd6457*
4758 F:      drivers/net/wan/hdlc*
4759 F:      drivers/net/wan/n2.c
4760 F:      drivers/net/wan/pc300too.c
4761 F:      drivers/net/wan/pci200syn.c
4762 F:      drivers/net/wan/wanxl*
4763
4764 GENERIC INCLUDE/ASM HEADER FILES
4765 M:      Arnd Bergmann <arnd@arndb.de>
4766 L:      linux-arch@vger.kernel.org
4767 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
4768 S:      Maintained
4769 F:      include/asm-generic/
4770 F:      include/uapi/asm-generic/
4771
4772 GENERIC PHY FRAMEWORK
4773 M:      Kishon Vijay Abraham I <kishon@ti.com>
4774 L:      linux-kernel@vger.kernel.org
4775 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
4776 S:      Supported
4777 F:      drivers/phy/
4778 F:      include/linux/phy/
4779
4780 GENERIC PM DOMAINS
4781 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4782 M:      Kevin Hilman <khilman@kernel.org>
4783 M:      Ulf Hansson <ulf.hansson@linaro.org>
4784 L:      linux-pm@vger.kernel.org
4785 S:      Supported
4786 F:      drivers/base/power/domain*.c
4787 F:      include/linux/pm_domain.h
4788
4789 GENERIC UIO DRIVER FOR PCI DEVICES
4790 M:      "Michael S. Tsirkin" <mst@redhat.com>
4791 L:      kvm@vger.kernel.org
4792 S:      Supported
4793 F:      drivers/uio/uio_pci_generic.c
4794
4795 GET_MAINTAINER SCRIPT
4796 M:      Joe Perches <joe@perches.com>
4797 S:      Maintained
4798 F:      scripts/get_maintainer.pl
4799
4800 GFS2 FILE SYSTEM
4801 M:      Steven Whitehouse <swhiteho@redhat.com>
4802 M:      Bob Peterson <rpeterso@redhat.com>
4803 L:      cluster-devel@redhat.com
4804 W:      http://sources.redhat.com/cluster/
4805 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
4806 S:      Supported
4807 F:      Documentation/filesystems/gfs2*.txt
4808 F:      fs/gfs2/
4809 F:      include/uapi/linux/gfs2_ondisk.h
4810
4811 GIGASET ISDN DRIVERS
4812 M:      Paul Bolle <pebolle@tiscali.nl>
4813 L:      gigaset307x-common@lists.sourceforge.net
4814 W:      http://gigaset307x.sourceforge.net/
4815 S:      Odd Fixes
4816 F:      Documentation/isdn/README.gigaset
4817 F:      drivers/isdn/gigaset/
4818 F:      include/uapi/linux/gigaset_dev.h
4819
4820 GO7007 MPEG CODEC
4821 M:      Hans Verkuil <hans.verkuil@cisco.com>
4822 L:      linux-media@vger.kernel.org
4823 S:      Maintained
4824 F:      drivers/media/usb/go7007/
4825
4826 GOODIX TOUCHSCREEN
4827 M:      Bastien Nocera <hadess@hadess.net>
4828 L:      linux-input@vger.kernel.org
4829 S:      Maintained
4830 F:      drivers/input/touchscreen/goodix.c
4831
4832 GPIO SUBSYSTEM
4833 M:      Linus Walleij <linus.walleij@linaro.org>
4834 M:      Alexandre Courbot <gnurou@gmail.com>
4835 L:      linux-gpio@vger.kernel.org
4836 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
4837 S:      Maintained
4838 F:      Documentation/gpio/
4839 F:      drivers/gpio/
4840 F:      include/linux/gpio/
4841 F:      include/linux/gpio.h
4842 F:      include/asm-generic/gpio.h
4843
4844 GRE DEMULTIPLEXER DRIVER
4845 M:      Dmitry Kozlov <xeb@mail.ru>
4846 L:      netdev@vger.kernel.org
4847 S:      Maintained
4848 F:      net/ipv4/gre_demux.c
4849 F:      net/ipv4/gre_offload.c
4850 F:      include/net/gre.h
4851
4852 GRETH 10/100/1G Ethernet MAC device driver
4853 M:      Kristoffer Glembo <kristoffer@gaisler.com>
4854 L:      netdev@vger.kernel.org
4855 S:      Maintained
4856 F:      drivers/net/ethernet/aeroflex/
4857
4858 GSPCA FINEPIX SUBDRIVER
4859 M:      Frank Zago <frank@zago.net>
4860 L:      linux-media@vger.kernel.org
4861 T:      git git://linuxtv.org/media_tree.git
4862 S:      Maintained
4863 F:      drivers/media/usb/gspca/finepix.c
4864
4865 GSPCA GL860 SUBDRIVER
4866 M:      Olivier Lorin <o.lorin@laposte.net>
4867 L:      linux-media@vger.kernel.org
4868 T:      git git://linuxtv.org/media_tree.git
4869 S:      Maintained
4870 F:      drivers/media/usb/gspca/gl860/
4871
4872 GSPCA M5602 SUBDRIVER
4873 M:      Erik Andren <erik.andren@gmail.com>
4874 L:      linux-media@vger.kernel.org
4875 T:      git git://linuxtv.org/media_tree.git
4876 S:      Maintained
4877 F:      drivers/media/usb/gspca/m5602/
4878
4879 GSPCA PAC207 SONIXB SUBDRIVER
4880 M:      Hans de Goede <hdegoede@redhat.com>
4881 L:      linux-media@vger.kernel.org
4882 T:      git git://linuxtv.org/media_tree.git
4883 S:      Maintained
4884 F:      drivers/media/usb/gspca/pac207.c
4885
4886 GSPCA SN9C20X SUBDRIVER
4887 M:      Brian Johnson <brijohn@gmail.com>
4888 L:      linux-media@vger.kernel.org
4889 T:      git git://linuxtv.org/media_tree.git
4890 S:      Maintained
4891 F:      drivers/media/usb/gspca/sn9c20x.c
4892
4893 GSPCA T613 SUBDRIVER
4894 M:      Leandro Costantino <lcostantino@gmail.com>
4895 L:      linux-media@vger.kernel.org
4896 T:      git git://linuxtv.org/media_tree.git
4897 S:      Maintained
4898 F:      drivers/media/usb/gspca/t613.c
4899
4900 GSPCA USB WEBCAM DRIVER
4901 M:      Hans de Goede <hdegoede@redhat.com>
4902 L:      linux-media@vger.kernel.org
4903 T:      git git://linuxtv.org/media_tree.git
4904 S:      Maintained
4905 F:      drivers/media/usb/gspca/
4906
4907 GUID PARTITION TABLE (GPT)
4908 M:      Davidlohr Bueso <dave@stgolabs.net>
4909 L:      linux-efi@vger.kernel.org
4910 S:      Maintained
4911 F:      block/partitions/efi.*
4912
4913 STK1160 USB VIDEO CAPTURE DRIVER
4914 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
4915 L:      linux-media@vger.kernel.org
4916 T:      git git://linuxtv.org/media_tree.git
4917 S:      Maintained
4918 F:      drivers/media/usb/stk1160/
4919
4920 H8/300 ARCHITECTURE
4921 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
4922 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
4923 W:      http://uclinux-h8.sourceforge.jp
4924 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
4925 S:      Maintained
4926 F:      arch/h8300/
4927 F:      drivers/clocksource/h8300_*.c
4928 F:      drivers/clk/h8300/
4929 F:      drivers/irqchip/irq-renesas-h8*.c
4930
4931 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
4932 M:      Frank Seidel <frank@f-seidel.de>
4933 L:      platform-driver-x86@vger.kernel.org
4934 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
4935 S:      Maintained
4936 F:      drivers/platform/x86/hdaps.c
4937
4938 HDPVR USB VIDEO ENCODER DRIVER
4939 M:      Hans Verkuil <hverkuil@xs4all.nl>
4940 L:      linux-media@vger.kernel.org
4941 T:      git git://linuxtv.org/media_tree.git
4942 W:      https://linuxtv.org
4943 S:      Odd Fixes
4944 F:      drivers/media/usb/hdpvr/
4945
4946 HWPOISON MEMORY FAILURE HANDLING
4947 M:      Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
4948 L:      linux-mm@kvack.org
4949 S:      Maintained
4950 F:      mm/memory-failure.c
4951 F:      mm/hwpoison-inject.c
4952
4953 HYPERVISOR VIRTUAL CONSOLE DRIVER
4954 L:      linuxppc-dev@lists.ozlabs.org
4955 S:      Odd Fixes
4956 F:      drivers/tty/hvc/
4957
4958 HACKRF MEDIA DRIVER
4959 M:      Antti Palosaari <crope@iki.fi>
4960 L:      linux-media@vger.kernel.org
4961 W:      https://linuxtv.org
4962 W:      http://palosaari.fi/linux/
4963 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4964 T:      git git://linuxtv.org/anttip/media_tree.git
4965 S:      Maintained
4966 F:      drivers/media/usb/hackrf/
4967
4968 HARDWARE MONITORING
4969 M:      Jean Delvare <jdelvare@suse.com>
4970 M:      Guenter Roeck <linux@roeck-us.net>
4971 L:      lm-sensors@lm-sensors.org
4972 W:      http://www.lm-sensors.org/
4973 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/
4974 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
4975 S:      Maintained
4976 F:      Documentation/hwmon/
4977 F:      drivers/hwmon/
4978 F:      include/linux/hwmon*.h
4979
4980 HARDWARE RANDOM NUMBER GENERATOR CORE
4981 M:      Matt Mackall <mpm@selenic.com>
4982 M:      Herbert Xu <herbert@gondor.apana.org.au>
4983 L:      linux-crypto@vger.kernel.org
4984 S:      Odd fixes
4985 F:      Documentation/hw_random.txt
4986 F:      drivers/char/hw_random/
4987 F:      include/linux/hw_random.h
4988
4989 HARDWARE SPINLOCK CORE
4990 M:      Ohad Ben-Cohen <ohad@wizery.com>
4991 S:      Maintained
4992 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/hwspinlock.git
4993 F:      Documentation/hwspinlock.txt
4994 F:      drivers/hwspinlock/hwspinlock_*
4995 F:      include/linux/hwspinlock.h
4996
4997 HARMONY SOUND DRIVER
4998 L:      linux-parisc@vger.kernel.org
4999 S:      Maintained
5000 F:      sound/parisc/harmony.*
5001
5002 HD29L2 MEDIA DRIVER
5003 M:      Antti Palosaari <crope@iki.fi>
5004 L:      linux-media@vger.kernel.org
5005 W:      https://linuxtv.org
5006 W:      http://palosaari.fi/linux/
5007 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5008 T:      git git://linuxtv.org/anttip/media_tree.git
5009 S:      Maintained
5010 F:      drivers/media/dvb-frontends/hd29l2*
5011
5012 HEWLETT-PACKARD SMART2 RAID DRIVER
5013 L:      iss_storagedev@hp.com
5014 S:      Orphan
5015 F:      Documentation/blockdev/cpqarray.txt
5016 F:      drivers/block/cpqarray.*
5017
5018 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
5019 M:      Don Brace <don.brace@pmcs.com>
5020 L:      iss_storagedev@hp.com
5021 L:      storagedev@pmcs.com
5022 L:      linux-scsi@vger.kernel.org
5023 S:      Supported
5024 F:      Documentation/scsi/hpsa.txt
5025 F:      drivers/scsi/hpsa*.[ch]
5026 F:      include/linux/cciss*.h
5027 F:      include/uapi/linux/cciss*.h
5028
5029 HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
5030 M:      Don Brace <don.brace@pmcs.com>
5031 L:      iss_storagedev@hp.com
5032 L:      storagedev@pmcs.com
5033 L:      linux-scsi@vger.kernel.org
5034 S:      Supported
5035 F:      Documentation/blockdev/cciss.txt
5036 F:      drivers/block/cciss*
5037 F:      include/linux/cciss_ioctl.h
5038 F:      include/uapi/linux/cciss_ioctl.h
5039
5040 HFS FILESYSTEM
5041 L:      linux-fsdevel@vger.kernel.org
5042 S:      Orphan
5043 F:      Documentation/filesystems/hfs.txt
5044 F:      fs/hfs/
5045
5046 HFSPLUS FILESYSTEM
5047 L:      linux-fsdevel@vger.kernel.org
5048 S:      Orphan
5049 F:      Documentation/filesystems/hfsplus.txt
5050 F:      fs/hfsplus/
5051
5052 HGA FRAMEBUFFER DRIVER
5053 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
5054 L:      linux-nvidia@lists.surfsouth.com
5055 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
5056 S:      Maintained
5057 F:      drivers/video/fbdev/hgafb.c
5058
5059 HIBERNATION (aka Software Suspend, aka swsusp)
5060 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
5061 M:      Pavel Machek <pavel@ucw.cz>
5062 L:      linux-pm@vger.kernel.org
5063 S:      Supported
5064 F:      arch/x86/power/
5065 F:      drivers/base/power/
5066 F:      kernel/power/
5067 F:      include/linux/suspend.h
5068 F:      include/linux/freezer.h
5069 F:      include/linux/pm.h
5070 F:      arch/*/include/asm/suspend*.h
5071
5072 HID CORE LAYER
5073 M:      Jiri Kosina <jikos@kernel.org>
5074 R:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
5075 L:      linux-input@vger.kernel.org
5076 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
5077 S:      Maintained
5078 F:      drivers/hid/
5079 F:      include/linux/hid*
5080 F:      include/uapi/linux/hid*
5081
5082 HID SENSOR HUB DRIVERS
5083 M:      Jiri Kosina <jikos@kernel.org>
5084 M:      Jonathan Cameron <jic23@kernel.org>
5085 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
5086 L:      linux-input@vger.kernel.org
5087 L:      linux-iio@vger.kernel.org
5088 S:      Maintained
5089 F:      Documentation/hid/hid-sensor*
5090 F:      drivers/hid/hid-sensor-*
5091 F:      drivers/iio/*/hid-*
5092 F:      include/linux/hid-sensor-*
5093
5094 HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
5095 M:      Thomas Gleixner <tglx@linutronix.de>
5096 L:      linux-kernel@vger.kernel.org
5097 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
5098 S:      Maintained
5099 F:      Documentation/timers/
5100 F:      kernel/time/hrtimer.c
5101 F:      kernel/time/clockevents.c
5102 F:      kernel/time/tick*.*
5103 F:      kernel/time/timer_*.c
5104 F:      include/linux/clockchips.h
5105 F:      include/linux/hrtimer.h
5106
5107 HIGH-SPEED SCC DRIVER FOR AX.25
5108 L:      linux-hams@vger.kernel.org
5109 S:      Orphan
5110 F:      drivers/net/hamradio/dmascc.c
5111 F:      drivers/net/hamradio/scc.c
5112
5113 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
5114 M:      HighPoint Linux Team <linux@highpoint-tech.com>
5115 W:      http://www.highpoint-tech.com
5116 S:      Supported
5117 F:      Documentation/scsi/hptiop.txt
5118 F:      drivers/scsi/hptiop.c
5119
5120 HIPPI
5121 M:      Jes Sorensen <jes@trained-monkey.org>
5122 L:      linux-hippi@sunsite.dk
5123 S:      Maintained
5124 F:      include/linux/hippidevice.h
5125 F:      include/uapi/linux/if_hippi.h
5126 F:      net/802/hippi.c
5127 F:      drivers/net/hippi/
5128
5129 HISILICON SAS Controller
5130 M:      John Garry <john.garry@huawei.com>
5131 W:      http://www.hisilicon.com
5132 S:      Supported
5133 F:      drivers/scsi/hisi_sas/
5134 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
5135
5136 HOST AP DRIVER
5137 M:      Jouni Malinen <j@w1.fi>
5138 L:      hostap@shmoo.com (subscribers-only)
5139 L:      linux-wireless@vger.kernel.org
5140 W:      http://hostap.epitest.fi/
5141 S:      Maintained
5142 F:      drivers/net/wireless/intersil/hostap/
5143
5144 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
5145 L:      platform-driver-x86@vger.kernel.org
5146 S:      Orphan
5147 F:      drivers/platform/x86/tc1100-wmi.c
5148
5149 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
5150 M:      Jaroslav Kysela <perex@perex.cz>
5151 S:      Maintained
5152 F:      drivers/net/ethernet/hp/hp100.*
5153
5154 HPET:   High Precision Event Timers driver
5155 M:      Clemens Ladisch <clemens@ladisch.de>
5156 S:      Maintained
5157 F:      Documentation/timers/hpet.txt
5158 F:      drivers/char/hpet.c
5159 F:      include/linux/hpet.h
5160 F:      include/uapi/linux/hpet.h
5161
5162 HPET:   x86
5163 S:      Orphan
5164 F:      arch/x86/kernel/hpet.c
5165 F:      arch/x86/include/asm/hpet.h
5166
5167 HPFS FILESYSTEM
5168 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
5169 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
5170 S:      Maintained
5171 F:      fs/hpfs/
5172
5173 HSI SUBSYSTEM
5174 M:      Sebastian Reichel <sre@kernel.org>
5175 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
5176 S:      Maintained
5177 F:      Documentation/ABI/testing/sysfs-bus-hsi
5178 F:      Documentation/hsi.txt
5179 F:      drivers/hsi/
5180 F:      include/linux/hsi/
5181 F:      include/uapi/linux/hsi/
5182
5183 HSO 3G MODEM DRIVER
5184 M:      Jan Dumon <j.dumon@option.com>
5185 W:      http://www.pharscape.org
5186 S:      Maintained
5187 F:      drivers/net/usb/hso.c
5188
5189 HSR NETWORK PROTOCOL
5190 M:      Arvid Brodin <arvid.brodin@alten.se>
5191 L:      netdev@vger.kernel.org
5192 S:      Maintained
5193 F:      net/hsr/
5194
5195 HTCPEN TOUCHSCREEN DRIVER
5196 M:      Pau Oliva Fora <pof@eslack.org>
5197 L:      linux-input@vger.kernel.org
5198 S:      Maintained
5199 F:      drivers/input/touchscreen/htcpen.c
5200
5201 HUGETLB FILESYSTEM
5202 M:      Nadia Yvette Chambers <nyc@holomorphy.com>
5203 S:      Maintained
5204 F:      fs/hugetlbfs/
5205
5206 Hyper-V CORE AND DRIVERS
5207 M:      "K. Y. Srinivasan" <kys@microsoft.com>
5208 M:      Haiyang Zhang <haiyangz@microsoft.com>
5209 L:      devel@linuxdriverproject.org
5210 S:      Maintained
5211 F:      arch/x86/include/asm/mshyperv.h
5212 F:      arch/x86/include/uapi/asm/hyperv.h
5213 F:      arch/x86/kernel/cpu/mshyperv.c
5214 F:      drivers/hid/hid-hyperv.c
5215 F:      drivers/hv/
5216 F:      drivers/input/serio/hyperv-keyboard.c
5217 F:      drivers/net/hyperv/
5218 F:      drivers/scsi/storvsc_drv.c
5219 F:      drivers/video/fbdev/hyperv_fb.c
5220 F:      include/linux/hyperv.h
5221 F:      tools/hv/
5222 F:      Documentation/ABI/stable/sysfs-bus-vmbus
5223
5224 I2C OVER PARALLEL PORT
5225 M:      Jean Delvare <jdelvare@suse.com>
5226 L:      linux-i2c@vger.kernel.org
5227 S:      Maintained
5228 F:      Documentation/i2c/busses/i2c-parport
5229 F:      Documentation/i2c/busses/i2c-parport-light
5230 F:      drivers/i2c/busses/i2c-parport.c
5231 F:      drivers/i2c/busses/i2c-parport-light.c
5232
5233 I2C/SMBUS CONTROLLER DRIVERS FOR PC
5234 M:      Jean Delvare <jdelvare@suse.com>
5235 L:      linux-i2c@vger.kernel.org
5236 S:      Maintained
5237 F:      Documentation/i2c/busses/i2c-ali1535
5238 F:      Documentation/i2c/busses/i2c-ali1563
5239 F:      Documentation/i2c/busses/i2c-ali15x3
5240 F:      Documentation/i2c/busses/i2c-amd756
5241 F:      Documentation/i2c/busses/i2c-amd8111
5242 F:      Documentation/i2c/busses/i2c-i801
5243 F:      Documentation/i2c/busses/i2c-nforce2
5244 F:      Documentation/i2c/busses/i2c-piix4
5245 F:      Documentation/i2c/busses/i2c-sis5595
5246 F:      Documentation/i2c/busses/i2c-sis630
5247 F:      Documentation/i2c/busses/i2c-sis96x
5248 F:      Documentation/i2c/busses/i2c-via
5249 F:      Documentation/i2c/busses/i2c-viapro
5250 F:      drivers/i2c/busses/i2c-ali1535.c
5251 F:      drivers/i2c/busses/i2c-ali1563.c
5252 F:      drivers/i2c/busses/i2c-ali15x3.c
5253 F:      drivers/i2c/busses/i2c-amd756.c
5254 F:      drivers/i2c/busses/i2c-amd756-s4882.c
5255 F:      drivers/i2c/busses/i2c-amd8111.c
5256 F:      drivers/i2c/busses/i2c-i801.c
5257 F:      drivers/i2c/busses/i2c-isch.c
5258 F:      drivers/i2c/busses/i2c-nforce2.c
5259 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
5260 F:      drivers/i2c/busses/i2c-piix4.c
5261 F:      drivers/i2c/busses/i2c-sis5595.c
5262 F:      drivers/i2c/busses/i2c-sis630.c
5263 F:      drivers/i2c/busses/i2c-sis96x.c
5264 F:      drivers/i2c/busses/i2c-via.c
5265 F:      drivers/i2c/busses/i2c-viapro.c
5266
5267 I2C/SMBUS ISMT DRIVER
5268 M:      Seth Heasley <seth.heasley@intel.com>
5269 M:      Neil Horman <nhorman@tuxdriver.com>
5270 L:      linux-i2c@vger.kernel.org
5271 F:      drivers/i2c/busses/i2c-ismt.c
5272 F:      Documentation/i2c/busses/i2c-ismt
5273
5274 I2C/SMBUS STUB DRIVER
5275 M:      Jean Delvare <jdelvare@suse.com>
5276 L:      linux-i2c@vger.kernel.org
5277 S:      Maintained
5278 F:      drivers/i2c/i2c-stub.c
5279
5280 I2C SUBSYSTEM
5281 M:      Wolfram Sang <wsa@the-dreams.de>
5282 L:      linux-i2c@vger.kernel.org
5283 W:      https://i2c.wiki.kernel.org/
5284 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
5285 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
5286 S:      Maintained
5287 F:      Documentation/devicetree/bindings/i2c/
5288 F:      Documentation/i2c/
5289 F:      drivers/i2c/
5290 F:      drivers/i2c/*/
5291 F:      include/linux/i2c.h
5292 F:      include/linux/i2c-*.h
5293 F:      include/uapi/linux/i2c.h
5294 F:      include/uapi/linux/i2c-*.h
5295
5296 I2C ACPI SUPPORT
5297 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
5298 L:      linux-i2c@vger.kernel.org
5299 L:      linux-acpi@vger.kernel.org
5300 S:      Maintained
5301
5302 I2C-TAOS-EVM DRIVER
5303 M:      Jean Delvare <jdelvare@suse.com>
5304 L:      linux-i2c@vger.kernel.org
5305 S:      Maintained
5306 F:      Documentation/i2c/busses/i2c-taos-evm
5307 F:      drivers/i2c/busses/i2c-taos-evm.c
5308
5309 I2C-TINY-USB DRIVER
5310 M:      Till Harbaum <till@harbaum.org>
5311 L:      linux-i2c@vger.kernel.org
5312 W:      http://www.harbaum.org/till/i2c_tiny_usb
5313 S:      Maintained
5314 F:      drivers/i2c/busses/i2c-tiny-usb.c
5315
5316 i386 BOOT CODE
5317 M:      "H. Peter Anvin" <hpa@zytor.com>
5318 S:      Maintained
5319 F:      arch/x86/boot/
5320
5321 i386 SETUP CODE / CPU ERRATA WORKAROUNDS
5322 M:      "H. Peter Anvin" <hpa@zytor.com>
5323 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
5324 S:      Maintained
5325
5326 IA64 (Itanium) PLATFORM
5327 M:      Tony Luck <tony.luck@intel.com>
5328 M:      Fenghua Yu <fenghua.yu@intel.com>
5329 L:      linux-ia64@vger.kernel.org
5330 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
5331 S:      Maintained
5332 F:      arch/ia64/
5333
5334 IBM Power VMX Cryptographic instructions
5335 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5336 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5337 L:      linux-crypto@vger.kernel.org
5338 S:      Supported
5339 F:      drivers/crypto/vmx/Makefile
5340 F:      drivers/crypto/vmx/Kconfig
5341 F:      drivers/crypto/vmx/vmx.c
5342 F:      drivers/crypto/vmx/aes*
5343 F:      drivers/crypto/vmx/ghash*
5344 F:      drivers/crypto/vmx/ppc-xlate.pl
5345
5346 IBM Power in-Nest Crypto Acceleration
5347 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5348 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5349 L:      linux-crypto@vger.kernel.org
5350 S:      Supported
5351 F:      drivers/crypto/nx/Makefile
5352 F:      drivers/crypto/nx/Kconfig
5353 F:      drivers/crypto/nx/nx-aes*
5354 F:      drivers/crypto/nx/nx-sha*
5355 F:      drivers/crypto/nx/nx.*
5356 F:      drivers/crypto/nx/nx_csbcpb.h
5357 F:      drivers/crypto/nx/nx_debugfs.h
5358
5359 IBM Power 842 compression accelerator
5360 M:      Dan Streetman <ddstreet@ieee.org>
5361 S:      Supported
5362 F:      drivers/crypto/nx/Makefile
5363 F:      drivers/crypto/nx/Kconfig
5364 F:      drivers/crypto/nx/nx-842*
5365 F:      include/linux/sw842.h
5366 F:      crypto/842.c
5367 F:      lib/842/
5368
5369 IBM Power Linux RAID adapter
5370 M:      Brian King <brking@us.ibm.com>
5371 S:      Supported
5372 F:      drivers/scsi/ipr.*
5373
5374 IBM Power Virtual Ethernet Device Driver
5375 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
5376 L:      netdev@vger.kernel.org
5377 S:      Supported
5378 F:      drivers/net/ethernet/ibm/ibmveth.*
5379
5380 IBM Power SRIOV Virtual NIC Device Driver
5381 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
5382 M:      John Allen <jallen@linux.vnet.ibm.com>
5383 L:      netdev@vger.kernel.org
5384 S:      Supported
5385 F:      drivers/net/ethernet/ibm/ibmvnic.*
5386
5387 IBM Power Virtual SCSI Device Drivers
5388 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5389 L:      linux-scsi@vger.kernel.org
5390 S:      Supported
5391 F:      drivers/scsi/ibmvscsi/ibmvscsi*
5392 F:      drivers/scsi/ibmvscsi/viosrp.h
5393
5394 IBM Power Virtual FC Device Drivers
5395 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5396 L:      linux-scsi@vger.kernel.org
5397 S:      Supported
5398 F:      drivers/scsi/ibmvscsi/ibmvfc*
5399
5400 IBM ServeRAID RAID DRIVER
5401 S:      Orphan
5402 F:      drivers/scsi/ips.*
5403
5404 ICH LPC AND GPIO DRIVER
5405 M:      Peter Tyser <ptyser@xes-inc.com>
5406 S:      Maintained
5407 F:      drivers/mfd/lpc_ich.c
5408 F:      drivers/gpio/gpio-ich.c
5409
5410 IDE SUBSYSTEM
5411 M:      "David S. Miller" <davem@davemloft.net>
5412 L:      linux-ide@vger.kernel.org
5413 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
5414 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
5415 S:      Maintained
5416 F:      Documentation/ide/
5417 F:      drivers/ide/
5418 F:      include/linux/ide.h
5419
5420 IDEAPAD LAPTOP EXTRAS DRIVER
5421 M:      Ike Panhc <ike.pan@canonical.com>
5422 L:      platform-driver-x86@vger.kernel.org
5423 W:      http://launchpad.net/ideapad-laptop
5424 S:      Maintained
5425 F:      drivers/platform/x86/ideapad-laptop.c
5426
5427 IDEAPAD LAPTOP SLIDEBAR DRIVER
5428 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
5429 L:      linux-input@vger.kernel.org
5430 W:      https://github.com/o2genum/ideapad-slidebar
5431 S:      Maintained
5432 F:      drivers/input/misc/ideapad_slidebar.c
5433
5434 IDE/ATAPI DRIVERS
5435 M:      Borislav Petkov <bp@alien8.de>
5436 L:      linux-ide@vger.kernel.org
5437 S:      Maintained
5438 F:      Documentation/cdrom/ide-cd
5439 F:      drivers/ide/ide-cd*
5440
5441 IDLE-I7300
5442 M:      Andy Henroid <andrew.d.henroid@intel.com>
5443 L:      linux-pm@vger.kernel.org
5444 S:      Supported
5445 F:      drivers/idle/i7300_idle.c
5446
5447 IEEE 802.15.4 SUBSYSTEM
5448 M:      Alexander Aring <aar@pengutronix.de>
5449 L:      linux-wpan@vger.kernel.org
5450 W:      http://wpan.cakelab.org/
5451 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
5452 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
5453 S:      Maintained
5454 F:      net/ieee802154/
5455 F:      net/mac802154/
5456 F:      drivers/net/ieee802154/
5457 F:      include/linux/nl802154.h
5458 F:      include/linux/ieee802154.h
5459 F:      include/net/nl802154.h
5460 F:      include/net/mac802154.h
5461 F:      include/net/af_ieee802154.h
5462 F:      include/net/cfg802154.h
5463 F:      include/net/ieee802154_netdev.h
5464 F:      Documentation/networking/ieee802154.txt
5465
5466 IGORPLUG-USB IR RECEIVER
5467 M:      Sean Young <sean@mess.org>
5468 L:      linux-media@vger.kernel.org
5469 S:      Maintained
5470 F:      drivers/media/rc/igorplugusb.c
5471
5472 IGUANAWORKS USB IR TRANSCEIVER
5473 M:      Sean Young <sean@mess.org>
5474 L:      linux-media@vger.kernel.org
5475 S:      Maintained
5476 F:      drivers/media/rc/iguanair.c
5477
5478 IIO SUBSYSTEM AND DRIVERS
5479 M:      Jonathan Cameron <jic23@kernel.org>
5480 R:      Hartmut Knaack <knaack.h@gmx.de>
5481 R:      Lars-Peter Clausen <lars@metafoo.de>
5482 R:      Peter Meerwald <pmeerw@pmeerw.net>
5483 L:      linux-iio@vger.kernel.org
5484 S:      Maintained
5485 F:      drivers/iio/
5486 F:      drivers/staging/iio/
5487 F:      include/linux/iio/
5488 F:      tools/iio/
5489
5490 IKANOS/ADI EAGLE ADSL USB DRIVER
5491 M:      Matthieu Castet <castet.matthieu@free.fr>
5492 M:      Stanislaw Gruszka <stf_xl@wp.pl>
5493 S:      Maintained
5494 F:      drivers/usb/atm/ueagle-atm.c
5495
5496 INA209 HARDWARE MONITOR DRIVER
5497 M:      Guenter Roeck <linux@roeck-us.net>
5498 L:      lm-sensors@lm-sensors.org
5499 S:      Maintained
5500 F:      Documentation/hwmon/ina209
5501 F:      Documentation/devicetree/bindings/i2c/ina209.txt
5502 F:      drivers/hwmon/ina209.c
5503
5504 INA2XX HARDWARE MONITOR DRIVER
5505 M:      Guenter Roeck <linux@roeck-us.net>
5506 L:      lm-sensors@lm-sensors.org
5507 S:      Maintained
5508 F:      Documentation/hwmon/ina2xx
5509 F:      drivers/hwmon/ina2xx.c
5510 F:      include/linux/platform_data/ina2xx.h
5511
5512 INDUSTRY PACK SUBSYSTEM (IPACK)
5513 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
5514 M:      Jens Taprogge <jens.taprogge@taprogge.org>
5515 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5516 L:      industrypack-devel@lists.sourceforge.net
5517 W:      http://industrypack.sourceforge.net
5518 S:      Maintained
5519 F:      drivers/ipack/
5520
5521 INGENIC JZ4780 DMA Driver
5522 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
5523 S:      Maintained
5524 F:      drivers/dma/dma-jz4780.c
5525
5526 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
5527 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
5528 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
5529 L:      linux-ima-devel@lists.sourceforge.net
5530 L:      linux-ima-user@lists.sourceforge.net
5531 L:      linux-security-module@vger.kernel.org
5532 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
5533 S:      Supported
5534 F:      security/integrity/ima/
5535
5536 IMGTEC IR DECODER DRIVER
5537 M:      James Hogan <james.hogan@imgtec.com>
5538 S:      Maintained
5539 F:      drivers/media/rc/img-ir/
5540
5541 IMS TWINTURBO FRAMEBUFFER DRIVER
5542 L:      linux-fbdev@vger.kernel.org
5543 S:      Orphan
5544 F:      drivers/video/fbdev/imsttfb.c
5545
5546 INFINIBAND SUBSYSTEM
5547 M:      Doug Ledford <dledford@redhat.com>
5548 M:      Sean Hefty <sean.hefty@intel.com>
5549 M:      Hal Rosenstock <hal.rosenstock@gmail.com>
5550 L:      linux-rdma@vger.kernel.org
5551 W:      http://www.openfabrics.org/
5552 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5553 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git
5554 S:      Supported
5555 F:      Documentation/infiniband/
5556 F:      drivers/infiniband/
5557 F:      drivers/staging/rdma/
5558 F:      include/uapi/linux/if_infiniband.h
5559 F:      include/uapi/rdma/
5560 F:      include/rdma/
5561
5562 INOTIFY
5563 M:      John McCutchan <john@johnmccutchan.com>
5564 M:      Robert Love <rlove@rlove.org>
5565 M:      Eric Paris <eparis@parisplace.org>
5566 S:      Maintained
5567 F:      Documentation/filesystems/inotify.txt
5568 F:      fs/notify/inotify/
5569 F:      include/linux/inotify.h
5570 F:      include/uapi/linux/inotify.h
5571
5572 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
5573 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
5574 L:      linux-input@vger.kernel.org
5575 Q:      http://patchwork.kernel.org/project/linux-input/list/
5576 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
5577 S:      Maintained
5578 F:      drivers/input/
5579 F:      include/linux/input.h
5580 F:      include/uapi/linux/input.h
5581 F:      include/linux/input/
5582
5583 INPUT MULTITOUCH (MT) PROTOCOL
5584 M:      Henrik Rydberg <rydberg@bitmath.org>
5585 L:      linux-input@vger.kernel.org
5586 S:      Odd fixes
5587 F:      Documentation/input/multi-touch-protocol.txt
5588 F:      drivers/input/input-mt.c
5589 K:      \b(ABS|SYN)_MT_
5590
5591 INTEL ASoC BDW/HSW DRIVERS
5592 M:      Jie Yang <yang.jie@linux.intel.com>
5593 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5594 S:      Supported
5595 F:      sound/soc/intel/common/sst-dsp*
5596 F:      sound/soc/intel/common/sst-firmware.c
5597 F:      sound/soc/intel/boards/broadwell.c
5598 F:      sound/soc/intel/haswell/
5599
5600 INTEL C600 SERIES SAS CONTROLLER DRIVER
5601 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
5602 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
5603 L:      linux-scsi@vger.kernel.org
5604 T:      git git://git.code.sf.net/p/intel-sas/isci
5605 S:      Supported
5606 F:      drivers/scsi/isci/
5607
5608 INTEL HID EVENT DRIVER
5609 M:      Alex Hung <alex.hung@canonical.com>
5610 L:      platform-driver-x86@vger.kernel.org
5611 S:      Maintained
5612 F:      drivers/platform/x86/intel-hid.c
5613
5614 INTEL IDLE DRIVER
5615 M:      Len Brown <lenb@kernel.org>
5616 L:      linux-pm@vger.kernel.org
5617 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
5618 S:      Supported
5619 F:      drivers/idle/intel_idle.c
5620
5621 INTEL PSTATE DRIVER
5622 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
5623 M:      Len Brown <lenb@kernel.org>
5624 L:      linux-pm@vger.kernel.org
5625 S:      Supported
5626 F:      drivers/cpufreq/intel_pstate.c
5627
5628 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
5629 M:      Maik Broemme <mbroemme@plusserver.de>
5630 L:      linux-fbdev@vger.kernel.org
5631 S:      Maintained
5632 F:      Documentation/fb/intelfb.txt
5633 F:      drivers/video/fbdev/intelfb/
5634
5635 INTEL 810/815 FRAMEBUFFER DRIVER
5636 M:      Antonino Daplas <adaplas@gmail.com>
5637 L:      linux-fbdev@vger.kernel.org
5638 S:      Maintained
5639 F:      drivers/video/fbdev/i810/
5640
5641 INTEL MENLOW THERMAL DRIVER
5642 M:      Sujith Thomas <sujith.thomas@intel.com>
5643 L:      platform-driver-x86@vger.kernel.org
5644 W:      https://01.org/linux-acpi
5645 S:      Supported
5646 F:      drivers/platform/x86/intel_menlow.c
5647
5648 INTEL I/OAT DMA DRIVER
5649 M:      Dave Jiang <dave.jiang@intel.com>
5650 R:      Dan Williams <dan.j.williams@intel.com>
5651 L:      dmaengine@vger.kernel.org
5652 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5653 S:      Supported
5654 F:      drivers/dma/ioat*
5655
5656 INTEL IOMMU (VT-d)
5657 M:      David Woodhouse <dwmw2@infradead.org>
5658 L:      iommu@lists.linux-foundation.org
5659 T:      git git://git.infradead.org/iommu-2.6.git
5660 S:      Supported
5661 F:      drivers/iommu/intel-iommu.c
5662 F:      include/linux/intel-iommu.h
5663
5664 INTEL IOP-ADMA DMA DRIVER
5665 R:      Dan Williams <dan.j.williams@intel.com>
5666 S:      Odd fixes
5667 F:      drivers/dma/iop-adma.c
5668
5669 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
5670 M:      Krzysztof Halasa <khalasa@piap.pl>
5671 S:      Maintained
5672 F:      arch/arm/mach-ixp4xx/include/mach/qmgr.h
5673 F:      arch/arm/mach-ixp4xx/include/mach/npe.h
5674 F:      arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
5675 F:      arch/arm/mach-ixp4xx/ixp4xx_npe.c
5676 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
5677 F:      drivers/net/wan/ixp4xx_hss.c
5678
5679 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
5680 M:      Deepak Saxena <dsaxena@plexity.net>
5681 S:      Maintained
5682 F:      drivers/char/hw_random/ixp4xx-rng.c
5683
5684 INTEL ETHERNET DRIVERS
5685 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
5686 R:      Jesse Brandeburg <jesse.brandeburg@intel.com>
5687 R:      Shannon Nelson <shannon.nelson@intel.com>
5688 R:      Carolyn Wyborny <carolyn.wyborny@intel.com>
5689 R:      Don Skidmore <donald.c.skidmore@intel.com>
5690 R:      Bruce Allan <bruce.w.allan@intel.com>
5691 R:      John Ronciak <john.ronciak@intel.com>
5692 R:      Mitch Williams <mitch.a.williams@intel.com>
5693 L:      intel-wired-lan@lists.osuosl.org
5694 W:      http://www.intel.com/support/feedback.htm
5695 W:      http://e1000.sourceforge.net/
5696 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
5697 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
5698 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
5699 S:      Supported
5700 F:      Documentation/networking/e100.txt
5701 F:      Documentation/networking/e1000.txt
5702 F:      Documentation/networking/e1000e.txt
5703 F:      Documentation/networking/igb.txt
5704 F:      Documentation/networking/igbvf.txt
5705 F:      Documentation/networking/ixgb.txt
5706 F:      Documentation/networking/ixgbe.txt
5707 F:      Documentation/networking/ixgbevf.txt
5708 F:      Documentation/networking/i40e.txt
5709 F:      Documentation/networking/i40evf.txt
5710 F:      drivers/net/ethernet/intel/
5711 F:      drivers/net/ethernet/intel/*/
5712
5713 INTEL-MID GPIO DRIVER
5714 M:      David Cohen <david.a.cohen@linux.intel.com>
5715 L:      linux-gpio@vger.kernel.org
5716 S:      Maintained
5717 F:      drivers/gpio/gpio-intel-mid.c
5718
5719 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
5720 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
5721 L:      linux-wireless@vger.kernel.org
5722 S:      Maintained
5723 F:      Documentation/networking/README.ipw2100
5724 F:      Documentation/networking/README.ipw2200
5725 F:      drivers/net/wireless/intel/ipw2x00/
5726
5727 INTEL(R) TRACE HUB
5728 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
5729 S:      Supported
5730 F:      Documentation/trace/intel_th.txt
5731 F:      drivers/hwtracing/intel_th/
5732
5733 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
5734 M:      Ning Sun <ning.sun@intel.com>
5735 L:      tboot-devel@lists.sourceforge.net
5736 W:      http://tboot.sourceforge.net
5737 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
5738 S:      Supported
5739 F:      Documentation/intel_txt.txt
5740 F:      include/linux/tboot.h
5741 F:      arch/x86/kernel/tboot.c
5742
5743 INTEL WIRELESS WIMAX CONNECTION 2400
5744 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
5745 M:      linux-wimax@intel.com
5746 L:      wimax@linuxwimax.org (subscribers-only)
5747 S:      Supported
5748 W:      http://linuxwimax.org
5749 F:      Documentation/wimax/README.i2400m
5750 F:      drivers/net/wimax/i2400m/
5751 F:      include/uapi/linux/wimax/i2400m.h
5752
5753 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
5754 M:      Stanislaw Gruszka <sgruszka@redhat.com>
5755 L:      linux-wireless@vger.kernel.org
5756 S:      Supported
5757 F:      drivers/net/wireless/intel/iwlegacy/
5758
5759 INTEL WIRELESS WIFI LINK (iwlwifi)
5760 M:      Johannes Berg <johannes.berg@intel.com>
5761 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
5762 M:      Intel Linux Wireless <linuxwifi@intel.com>
5763 L:      linux-wireless@vger.kernel.org
5764 W:      http://intellinuxwireless.org
5765 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
5766 S:      Supported
5767 F:      drivers/net/wireless/intel/iwlwifi/
5768
5769 INTEL MANAGEMENT ENGINE (mei)
5770 M:      Tomas Winkler <tomas.winkler@intel.com>
5771 L:      linux-kernel@vger.kernel.org
5772 S:      Supported
5773 F:      include/uapi/linux/mei.h
5774 F:      include/linux/mei_cl_bus.h
5775 F:      drivers/misc/mei/*
5776 F:      Documentation/misc-devices/mei/*
5777
5778 INTEL MIC DRIVERS (mic)
5779 M:      Sudeep Dutt <sudeep.dutt@intel.com>
5780 M:      Ashutosh Dixit <ashutosh.dixit@intel.com>
5781 S:      Supported
5782 W:      https://github.com/sudeepdutt/mic
5783 W:      http://software.intel.com/en-us/mic-developer
5784 F:      include/linux/mic_bus.h
5785 F:      include/linux/scif.h
5786 F:      include/uapi/linux/mic_common.h
5787 F:      include/uapi/linux/mic_ioctl.h
5788 F:      include/uapi/linux/scif_ioctl.h
5789 F:      drivers/misc/mic/
5790 F:      drivers/dma/mic_x100_dma.c
5791 F:      drivers/dma/mic_x100_dma.h
5792 F:      Documentation/mic/
5793
5794 INTEL PMC/P-Unit IPC DRIVER
5795 M:      Zha Qipeng<qipeng.zha@intel.com>
5796 L:      platform-driver-x86@vger.kernel.org
5797 S:      Maintained
5798 F:      drivers/platform/x86/intel_pmc_ipc.c
5799 F:      drivers/platform/x86/intel_punit_ipc.c
5800 F:      arch/x86/include/asm/intel_pmc_ipc.h
5801 F:      arch/x86/include/asm/intel_punit_ipc.h
5802
5803 INTEL TELEMETRY DRIVER
5804 M:      Souvik Kumar Chakravarty <souvik.k.chakravarty@intel.com>
5805 L:      platform-driver-x86@vger.kernel.org
5806 S:      Maintained
5807 F:      arch/x86/include/asm/intel_telemetry.h
5808 F:      drivers/platform/x86/intel_telemetry*
5809
5810 IOC3 ETHERNET DRIVER
5811 M:      Ralf Baechle <ralf@linux-mips.org>
5812 L:      linux-mips@linux-mips.org
5813 S:      Maintained
5814 F:      drivers/net/ethernet/sgi/ioc3-eth.c
5815
5816 IOC3 SERIAL DRIVER
5817 M:      Pat Gefre <pfg@sgi.com>
5818 L:      linux-serial@vger.kernel.org
5819 S:      Maintained
5820 F:      drivers/tty/serial/ioc3_serial.c
5821
5822 IOMMU DRIVERS
5823 M:      Joerg Roedel <joro@8bytes.org>
5824 L:      iommu@lists.linux-foundation.org
5825 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
5826 S:      Maintained
5827 F:      drivers/iommu/
5828
5829 IP MASQUERADING
5830 M:      Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
5831 S:      Maintained
5832 F:      net/ipv4/netfilter/ipt_MASQUERADE.c
5833
5834 IPMI SUBSYSTEM
5835 M:      Corey Minyard <minyard@acm.org>
5836 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
5837 W:      http://openipmi.sourceforge.net/
5838 S:      Supported
5839 F:      Documentation/IPMI.txt
5840 F:      drivers/char/ipmi/
5841 F:      include/linux/ipmi*
5842 F:      include/uapi/linux/ipmi*
5843
5844 QCOM AUDIO (ASoC) DRIVERS
5845 M:      Patrick Lai <plai@codeaurora.org>
5846 M:      Banajit Goswami <bgoswami@codeaurora.org>
5847 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5848 S:      Supported
5849 F:      sound/soc/qcom/
5850
5851 IPS SCSI RAID DRIVER
5852 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
5853 L:      linux-scsi@vger.kernel.org
5854 W:      http://www.adaptec.com/
5855 S:      Maintained
5856 F:      drivers/scsi/ips*
5857
5858 IPVS
5859 M:      Wensong Zhang <wensong@linux-vs.org>
5860 M:      Simon Horman <horms@verge.net.au>
5861 M:      Julian Anastasov <ja@ssi.bg>
5862 L:      netdev@vger.kernel.org
5863 L:      lvs-devel@vger.kernel.org
5864 S:      Maintained
5865 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
5866 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
5867 F:      Documentation/networking/ipvs-sysctl.txt
5868 F:      include/net/ip_vs.h
5869 F:      include/uapi/linux/ip_vs.h
5870 F:      net/netfilter/ipvs/
5871
5872 IPWIRELESS DRIVER
5873 M:      Jiri Kosina <jikos@kernel.org>
5874 M:      David Sterba <dsterba@suse.com>
5875 S:      Odd Fixes
5876 F:      drivers/tty/ipwireless/
5877
5878 IPX NETWORK LAYER
5879 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
5880 L:      netdev@vger.kernel.org
5881 S:      Maintained
5882 F:      include/net/ipx.h
5883 F:      include/uapi/linux/ipx.h
5884 F:      net/ipx/
5885
5886 IRDA SUBSYSTEM
5887 M:      Samuel Ortiz <samuel@sortiz.org>
5888 L:      irda-users@lists.sourceforge.net (subscribers-only)
5889 L:      netdev@vger.kernel.org
5890 W:      http://irda.sourceforge.net/
5891 S:      Maintained
5892 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
5893 F:      Documentation/networking/irda.txt
5894 F:      drivers/net/irda/
5895 F:      include/net/irda/
5896 F:      net/irda/
5897
5898 IRQ SUBSYSTEM
5899 M:      Thomas Gleixner <tglx@linutronix.de>
5900 L:      linux-kernel@vger.kernel.org
5901 S:      Maintained
5902 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5903 F:      kernel/irq/
5904
5905 IRQCHIP DRIVERS
5906 M:      Thomas Gleixner <tglx@linutronix.de>
5907 M:      Jason Cooper <jason@lakedaemon.net>
5908 M:      Marc Zyngier <marc.zyngier@arm.com>
5909 L:      linux-kernel@vger.kernel.org
5910 S:      Maintained
5911 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5912 T:      git git://git.infradead.org/users/jcooper/linux.git irqchip/core
5913 F:      Documentation/devicetree/bindings/interrupt-controller/
5914 F:      drivers/irqchip/
5915
5916 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
5917 M:      Jiang Liu <jiang.liu@linux.intel.com>
5918 M:      Marc Zyngier <marc.zyngier@arm.com>
5919 S:      Maintained
5920 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5921 F:      Documentation/IRQ-domain.txt
5922 F:      include/linux/irqdomain.h
5923 F:      kernel/irq/irqdomain.c
5924 F:      kernel/irq/msi.c
5925
5926 ISAPNP
5927 M:      Jaroslav Kysela <perex@perex.cz>
5928 S:      Maintained
5929 F:      Documentation/isapnp.txt
5930 F:      drivers/pnp/isapnp/
5931 F:      include/linux/isapnp.h
5932
5933 ISA RADIO MODULE
5934 M:      Hans Verkuil <hverkuil@xs4all.nl>
5935 L:      linux-media@vger.kernel.org
5936 T:      git git://linuxtv.org/media_tree.git
5937 W:      https://linuxtv.org
5938 S:      Maintained
5939 F:      drivers/media/radio/radio-isa*
5940
5941 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
5942 M:      Peter Jones <pjones@redhat.com>
5943 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
5944 S:      Maintained
5945 F:      drivers/firmware/iscsi_ibft*
5946
5947 ISCSI
5948 M:      Mike Christie <michaelc@cs.wisc.edu>
5949 L:      open-iscsi@googlegroups.com
5950 W:      www.open-iscsi.org
5951 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
5952 S:      Maintained
5953 F:      drivers/scsi/*iscsi*
5954 F:      include/scsi/*iscsi*
5955
5956 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
5957 M:      Or Gerlitz <ogerlitz@mellanox.com>
5958 M:      Sagi Grimberg <sagig@mellanox.com>
5959 M:      Roi Dayan <roid@mellanox.com>
5960 L:      linux-rdma@vger.kernel.org
5961 S:      Supported
5962 W:      http://www.openfabrics.org
5963 W:      www.open-iscsi.org
5964 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5965 F:      drivers/infiniband/ulp/iser/
5966
5967 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
5968 M:      Sagi Grimberg <sagig@mellanox.com>
5969 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
5970 L:      linux-rdma@vger.kernel.org
5971 L:      target-devel@vger.kernel.org
5972 S:      Supported
5973 W:      http://www.linux-iscsi.org
5974 F:      drivers/infiniband/ulp/isert
5975
5976 ISDN SUBSYSTEM
5977 M:      Karsten Keil <isdn@linux-pingi.de>
5978 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5979 L:      netdev@vger.kernel.org
5980 W:      http://www.isdn4linux.de
5981 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
5982 S:      Maintained
5983 F:      Documentation/isdn/
5984 F:      drivers/isdn/
5985 F:      include/linux/isdn.h
5986 F:      include/linux/isdn/
5987 F:      include/uapi/linux/isdn.h
5988 F:      include/uapi/linux/isdn/
5989
5990 ISDN SUBSYSTEM (Eicon active card driver)
5991 M:      Armin Schindler <mac@melware.de>
5992 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5993 W:      http://www.melware.de
5994 S:      Maintained
5995 F:      drivers/isdn/hardware/eicon/
5996
5997 IT87 HARDWARE MONITORING DRIVER
5998 M:      Jean Delvare <jdelvare@suse.com>
5999 L:      lm-sensors@lm-sensors.org
6000 S:      Maintained
6001 F:      Documentation/hwmon/it87
6002 F:      drivers/hwmon/it87.c
6003
6004 IT913X MEDIA DRIVER
6005 M:      Antti Palosaari <crope@iki.fi>
6006 L:      linux-media@vger.kernel.org
6007 W:      https://linuxtv.org
6008 W:      http://palosaari.fi/linux/
6009 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6010 T:      git git://linuxtv.org/anttip/media_tree.git
6011 S:      Maintained
6012 F:      drivers/media/tuners/it913x*
6013
6014 IVTV VIDEO4LINUX DRIVER
6015 M:      Andy Walls <awalls@md.metrocast.net>
6016 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
6017 L:      linux-media@vger.kernel.org
6018 T:      git git://linuxtv.org/media_tree.git
6019 W:      http://www.ivtvdriver.org
6020 S:      Maintained
6021 F:      Documentation/video4linux/*.ivtv
6022 F:      drivers/media/pci/ivtv/
6023 F:      include/uapi/linux/ivtv*
6024
6025 IX2505V MEDIA DRIVER
6026 M:      Malcolm Priestley <tvboxspy@gmail.com>
6027 L:      linux-media@vger.kernel.org
6028 W:      https://linuxtv.org
6029 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6030 S:      Maintained
6031 F:      drivers/media/dvb-frontends/ix2505v*
6032
6033 JC42.4 TEMPERATURE SENSOR DRIVER
6034 M:      Guenter Roeck <linux@roeck-us.net>
6035 L:      lm-sensors@lm-sensors.org
6036 S:      Maintained
6037 F:      drivers/hwmon/jc42.c
6038 F:      Documentation/hwmon/jc42
6039
6040 JFS FILESYSTEM
6041 M:      Dave Kleikamp <shaggy@kernel.org>
6042 L:      jfs-discussion@lists.sourceforge.net
6043 W:      http://jfs.sourceforge.net/
6044 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
6045 S:      Maintained
6046 F:      Documentation/filesystems/jfs.txt
6047 F:      fs/jfs/
6048
6049 JME NETWORK DRIVER
6050 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
6051 L:      netdev@vger.kernel.org
6052 S:      Maintained
6053 F:      drivers/net/ethernet/jme.*
6054
6055 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
6056 M:      David Woodhouse <dwmw2@infradead.org>
6057 L:      linux-mtd@lists.infradead.org
6058 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
6059 S:      Maintained
6060 F:      fs/jffs2/
6061 F:      include/uapi/linux/jffs2.h
6062
6063 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
6064 M:      "Theodore Ts'o" <tytso@mit.edu>
6065 M:      Jan Kara <jack@suse.com>
6066 L:      linux-ext4@vger.kernel.org
6067 S:      Maintained
6068 F:      fs/jbd2/
6069 F:      include/linux/jbd2.h
6070
6071 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
6072 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
6073 L:      linux-media@vger.kernel.org
6074 S:      Maintained
6075 F:      drivers/media/platform/rcar_jpu.c
6076
6077 JSM Neo PCI based serial card
6078 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
6079 L:      linux-serial@vger.kernel.org
6080 S:      Maintained
6081 F:      drivers/tty/serial/jsm/
6082
6083 K10TEMP HARDWARE MONITORING DRIVER
6084 M:      Clemens Ladisch <clemens@ladisch.de>
6085 L:      lm-sensors@lm-sensors.org
6086 S:      Maintained
6087 F:      Documentation/hwmon/k10temp
6088 F:      drivers/hwmon/k10temp.c
6089
6090 K8TEMP HARDWARE MONITORING DRIVER
6091 M:      Rudolf Marek <r.marek@assembler.cz>
6092 L:      lm-sensors@lm-sensors.org
6093 S:      Maintained
6094 F:      Documentation/hwmon/k8temp
6095 F:      drivers/hwmon/k8temp.c
6096
6097 KCONFIG
6098 M:      "Yann E. MORIN" <yann.morin.1998@free.fr>
6099 L:      linux-kbuild@vger.kernel.org
6100 T:      git git://gitorious.org/linux-kconfig/linux-kconfig
6101 S:      Maintained
6102 F:      Documentation/kbuild/kconfig-language.txt
6103 F:      scripts/kconfig/
6104
6105 KDUMP
6106 M:      Vivek Goyal <vgoyal@redhat.com>
6107 M:      Haren Myneni <hbabu@us.ibm.com>
6108 L:      kexec@lists.infradead.org
6109 W:      http://lse.sourceforge.net/kdump/
6110 S:      Maintained
6111 F:      Documentation/kdump/
6112
6113 KEENE FM RADIO TRANSMITTER DRIVER
6114 M:      Hans Verkuil <hverkuil@xs4all.nl>
6115 L:      linux-media@vger.kernel.org
6116 T:      git git://linuxtv.org/media_tree.git
6117 W:      https://linuxtv.org
6118 S:      Maintained
6119 F:      drivers/media/radio/radio-keene*
6120
6121 KERNEL AUTOMOUNTER v4 (AUTOFS4)
6122 M:      Ian Kent <raven@themaw.net>
6123 L:      autofs@vger.kernel.org
6124 S:      Maintained
6125 F:      fs/autofs4/
6126
6127 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
6128 M:      Michal Marek <mmarek@suse.com>
6129 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
6130 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
6131 L:      linux-kbuild@vger.kernel.org
6132 S:      Maintained
6133 F:      Documentation/kbuild/
6134 F:      Makefile
6135 F:      scripts/Makefile.*
6136 F:      scripts/basic/
6137 F:      scripts/mk*
6138 F:      scripts/package/
6139
6140 KERNEL JANITORS
6141 L:      kernel-janitors@vger.kernel.org
6142 W:      http://kernelnewbies.org/KernelJanitors
6143 S:      Odd Fixes
6144
6145 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
6146 M:      "J. Bruce Fields" <bfields@fieldses.org>
6147 M:      Jeff Layton <jlayton@poochiereds.net>
6148 L:      linux-nfs@vger.kernel.org
6149 W:      http://nfs.sourceforge.net/
6150 T:      git git://linux-nfs.org/~bfields/linux.git
6151 S:      Supported
6152 F:      fs/nfsd/
6153 F:      include/uapi/linux/nfsd/
6154 F:      fs/lockd/
6155 F:      fs/nfs_common/
6156 F:      net/sunrpc/
6157 F:      include/linux/lockd/
6158 F:      include/linux/sunrpc/
6159 F:      include/uapi/linux/sunrpc/
6160
6161 KERNEL SELFTEST FRAMEWORK
6162 M:      Shuah Khan <shuahkh@osg.samsung.com>
6163 L:      linux-kselftest@vger.kernel.org
6164 T:      git git://git.kernel.org/pub/scm/shuah/linux-kselftest
6165 S:      Maintained
6166 F:      tools/testing/selftests
6167
6168 KERNEL VIRTUAL MACHINE (KVM)
6169 M:      Gleb Natapov <gleb@kernel.org>
6170 M:      Paolo Bonzini <pbonzini@redhat.com>
6171 L:      kvm@vger.kernel.org
6172 W:      http://www.linux-kvm.org
6173 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
6174 S:      Supported
6175 F:      Documentation/*/kvm*.txt
6176 F:      Documentation/virtual/kvm/
6177 F:      arch/*/kvm/
6178 F:      arch/x86/kernel/kvm.c
6179 F:      arch/x86/kernel/kvmclock.c
6180 F:      arch/*/include/asm/kvm*
6181 F:      include/linux/kvm*
6182 F:      include/uapi/linux/kvm*
6183 F:      virt/kvm/
6184
6185 KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
6186 M:      Joerg Roedel <joro@8bytes.org>
6187 L:      kvm@vger.kernel.org
6188 W:      http://www.linux-kvm.org/
6189 S:      Maintained
6190 F:      arch/x86/include/asm/svm.h
6191 F:      arch/x86/kvm/svm.c
6192
6193 KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
6194 M:      Alexander Graf <agraf@suse.com>
6195 L:      kvm-ppc@vger.kernel.org
6196 W:      http://www.linux-kvm.org/
6197 T:      git git://github.com/agraf/linux-2.6.git
6198 S:      Supported
6199 F:      arch/powerpc/include/asm/kvm*
6200 F:      arch/powerpc/kvm/
6201
6202 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
6203 M:      Christian Borntraeger <borntraeger@de.ibm.com>
6204 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
6205 L:      linux-s390@vger.kernel.org
6206 W:      http://www.ibm.com/developerworks/linux/linux390/
6207 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
6208 S:      Supported
6209 F:      Documentation/s390/kvm.txt
6210 F:      arch/s390/include/asm/kvm*
6211 F:      arch/s390/kvm/
6212
6213 KERNEL VIRTUAL MACHINE (KVM) FOR ARM
6214 M:      Christoffer Dall <christoffer.dall@linaro.org>
6215 M:      Marc Zyngier <marc.zyngier@arm.com>
6216 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6217 L:      kvmarm@lists.cs.columbia.edu
6218 W:      http://systems.cs.columbia.edu/projects/kvm-arm
6219 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
6220 S:      Supported
6221 F:      arch/arm/include/uapi/asm/kvm*
6222 F:      arch/arm/include/asm/kvm*
6223 F:      arch/arm/kvm/
6224 F:      virt/kvm/arm/
6225 F:      include/kvm/arm_*
6226
6227 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
6228 M:      Christoffer Dall <christoffer.dall@linaro.org>
6229 M:      Marc Zyngier <marc.zyngier@arm.com>
6230 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6231 L:      kvmarm@lists.cs.columbia.edu
6232 S:      Maintained
6233 F:      arch/arm64/include/uapi/asm/kvm*
6234 F:      arch/arm64/include/asm/kvm*
6235 F:      arch/arm64/kvm/
6236
6237 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
6238 M:      James Hogan <james.hogan@imgtec.com>
6239 L:      linux-mips@linux-mips.org
6240 S:      Supported
6241 F:      arch/mips/include/uapi/asm/kvm*
6242 F:      arch/mips/include/asm/kvm*
6243 F:      arch/mips/kvm/
6244
6245 KEXEC
6246 M:      Eric Biederman <ebiederm@xmission.com>
6247 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
6248 L:      kexec@lists.infradead.org
6249 S:      Maintained
6250 F:      include/linux/kexec.h
6251 F:      include/uapi/linux/kexec.h
6252 F:      kernel/kexec.c
6253
6254 KEYS/KEYRINGS:
6255 M:      David Howells <dhowells@redhat.com>
6256 L:      keyrings@vger.kernel.org
6257 S:      Maintained
6258 F:      Documentation/security/keys.txt
6259 F:      include/linux/key.h
6260 F:      include/linux/key-type.h
6261 F:      include/keys/
6262 F:      security/keys/
6263
6264 KEYS-TRUSTED
6265 M:      David Safford <safford@us.ibm.com>
6266 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6267 L:      linux-security-module@vger.kernel.org
6268 L:      keyrings@vger.kernel.org
6269 S:      Supported
6270 F:      Documentation/security/keys-trusted-encrypted.txt
6271 F:      include/keys/trusted-type.h
6272 F:      security/keys/trusted.c
6273 F:      security/keys/trusted.h
6274
6275 KEYS-ENCRYPTED
6276 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6277 M:      David Safford <safford@us.ibm.com>
6278 L:      linux-security-module@vger.kernel.org
6279 L:      keyrings@vger.kernel.org
6280 S:      Supported
6281 F:      Documentation/security/keys-trusted-encrypted.txt
6282 F:      include/keys/encrypted-type.h
6283 F:      security/keys/encrypted-keys/
6284
6285 KGDB / KDB /debug_core
6286 M:      Jason Wessel <jason.wessel@windriver.com>
6287 W:      http://kgdb.wiki.kernel.org/
6288 L:      kgdb-bugreport@lists.sourceforge.net
6289 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
6290 S:      Maintained
6291 F:      Documentation/DocBook/kgdb.tmpl
6292 F:      drivers/misc/kgdbts.c
6293 F:      drivers/tty/serial/kgdboc.c
6294 F:      include/linux/kdb.h
6295 F:      include/linux/kgdb.h
6296 F:      kernel/debug/
6297
6298 KMEMCHECK
6299 M:      Vegard Nossum <vegardno@ifi.uio.no>
6300 M:      Pekka Enberg <penberg@kernel.org>
6301 S:      Maintained
6302 F:      Documentation/kmemcheck.txt
6303 F:      arch/x86/include/asm/kmemcheck.h
6304 F:      arch/x86/mm/kmemcheck/
6305 F:      include/linux/kmemcheck.h
6306 F:      mm/kmemcheck.c
6307
6308 KMEMLEAK
6309 M:      Catalin Marinas <catalin.marinas@arm.com>
6310 S:      Maintained
6311 F:      Documentation/kmemleak.txt
6312 F:      include/linux/kmemleak.h
6313 F:      mm/kmemleak.c
6314 F:      mm/kmemleak-test.c
6315
6316 KPROBES
6317 M:      Ananth N Mavinakayanahalli <ananth@in.ibm.com>
6318 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
6319 M:      "David S. Miller" <davem@davemloft.net>
6320 M:      Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
6321 S:      Maintained
6322 F:      Documentation/kprobes.txt
6323 F:      include/linux/kprobes.h
6324 F:      kernel/kprobes.c
6325
6326 KS0108 LCD CONTROLLER DRIVER
6327 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
6328 W:      http://miguelojeda.es/auxdisplay.htm
6329 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
6330 S:      Maintained
6331 F:      Documentation/auxdisplay/ks0108
6332 F:      drivers/auxdisplay/ks0108.c
6333 F:      include/linux/ks0108.h
6334
6335 L3MDEV
6336 M:      David Ahern <dsa@cumulusnetworks.com>
6337 L:      netdev@vger.kernel.org
6338 S:      Maintained
6339 F:      net/l3mdev
6340 F:      include/net/l3mdev.h
6341
6342 LANTIQ MIPS ARCHITECTURE
6343 M:      John Crispin <blogic@openwrt.org>
6344 L:      linux-mips@linux-mips.org
6345 S:      Maintained
6346 F:      arch/mips/lantiq
6347
6348 LAPB module
6349 L:      linux-x25@vger.kernel.org
6350 S:      Orphan
6351 F:      Documentation/networking/lapb-module.txt
6352 F:      include/*/lapb.h
6353 F:      net/lapb/
6354
6355 LASI 53c700 driver for PARISC
6356 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
6357 L:      linux-scsi@vger.kernel.org
6358 S:      Maintained
6359 F:      Documentation/scsi/53c700.txt
6360 F:      drivers/scsi/53c700*
6361
6362 LED SUBSYSTEM
6363 M:      Richard Purdie <rpurdie@rpsys.net>
6364 M:      Jacek Anaszewski <j.anaszewski@samsung.com>
6365 L:      linux-leds@vger.kernel.org
6366 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
6367 S:      Maintained
6368 F:      drivers/leds/
6369 F:      include/linux/leds.h
6370
6371 LEGACY EEPROM DRIVER
6372 M:      Jean Delvare <jdelvare@suse.com>
6373 S:      Maintained
6374 F:      Documentation/misc-devices/eeprom
6375 F:      drivers/misc/eeprom/eeprom.c
6376
6377 LEGO USB Tower driver
6378 M:      Juergen Stuber <starblue@users.sourceforge.net>
6379 L:      legousb-devel@lists.sourceforge.net
6380 W:      http://legousb.sourceforge.net/
6381 S:      Maintained
6382 F:      drivers/usb/misc/legousbtower.c
6383
6384 LG2160 MEDIA DRIVER
6385 M:      Michael Krufky <mkrufky@linuxtv.org>
6386 L:      linux-media@vger.kernel.org
6387 W:      https://linuxtv.org
6388 W:      http://github.com/mkrufky
6389 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6390 T:      git git://linuxtv.org/mkrufky/tuners.git
6391 S:      Maintained
6392 F:      drivers/media/dvb-frontends/lg2160.*
6393
6394 LGDT3305 MEDIA DRIVER
6395 M:      Michael Krufky <mkrufky@linuxtv.org>
6396 L:      linux-media@vger.kernel.org
6397 W:      https://linuxtv.org
6398 W:      http://github.com/mkrufky
6399 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6400 T:      git git://linuxtv.org/mkrufky/tuners.git
6401 S:      Maintained
6402 F:      drivers/media/dvb-frontends/lgdt3305.*
6403
6404 LGUEST
6405 M:      Rusty Russell <rusty@rustcorp.com.au>
6406 L:      lguest@lists.ozlabs.org
6407 W:      http://lguest.ozlabs.org/
6408 S:      Odd Fixes
6409 F:      arch/x86/include/asm/lguest*.h
6410 F:      arch/x86/lguest/
6411 F:      drivers/lguest/
6412 F:      include/linux/lguest*.h
6413 F:      tools/lguest/
6414
6415 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
6416 M:      Tejun Heo <tj@kernel.org>
6417 L:      linux-ide@vger.kernel.org
6418 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6419 S:      Maintained
6420 F:      drivers/ata/
6421 F:      include/linux/ata.h
6422 F:      include/linux/libata.h
6423
6424 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
6425 M:      Viresh Kumar <vireshk@kernel.org>
6426 L:      linux-ide@vger.kernel.org
6427 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6428 S:      Maintained
6429 F:      include/linux/pata_arasan_cf_data.h
6430 F:      drivers/ata/pata_arasan_cf.c
6431
6432 LIBATA PATA DRIVERS
6433 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6434 M:      Tejun Heo <tj@kernel.org>
6435 L:      linux-ide@vger.kernel.org
6436 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6437 S:      Maintained
6438 F:      drivers/ata/pata_*.c
6439 F:      drivers/ata/ata_generic.c
6440
6441 LIBATA SATA AHCI PLATFORM devices support
6442 M:      Hans de Goede <hdegoede@redhat.com>
6443 M:      Tejun Heo <tj@kernel.org>
6444 L:      linux-ide@vger.kernel.org
6445 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6446 S:      Maintained
6447 F:      drivers/ata/ahci_platform.c
6448 F:      drivers/ata/libahci_platform.c
6449 F:      include/linux/ahci_platform.h
6450
6451 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
6452 M:      Mikael Pettersson <mikpelinux@gmail.com>
6453 L:      linux-ide@vger.kernel.org
6454 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6455 S:      Maintained
6456 F:      drivers/ata/sata_promise.*
6457
6458 LIBLOCKDEP
6459 M:      Sasha Levin <sasha.levin@oracle.com>
6460 S:      Maintained
6461 F:      tools/lib/lockdep/
6462
6463 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
6464 M:      Dan Williams <dan.j.williams@intel.com>
6465 L:      linux-nvdimm@lists.01.org
6466 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6467 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
6468 S:      Supported
6469 F:      drivers/nvdimm/*
6470 F:      include/linux/nd.h
6471 F:      include/linux/libnvdimm.h
6472 F:      include/uapi/linux/ndctl.h
6473
6474 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
6475 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6476 L:      linux-nvdimm@lists.01.org
6477 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6478 S:      Supported
6479 F:      drivers/nvdimm/blk.c
6480 F:      drivers/nvdimm/region_devs.c
6481 F:      drivers/acpi/nfit*
6482
6483 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
6484 M:      Vishal Verma <vishal.l.verma@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/btt*
6489
6490 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
6491 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6492 L:      linux-nvdimm@lists.01.org
6493 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6494 S:      Supported
6495 F:      drivers/nvdimm/pmem.c
6496 F:      include/linux/pmem.h
6497 F:      arch/*/include/asm/pmem.h
6498
6499 LIGHTNVM PLATFORM SUPPORT
6500 M:      Matias Bjorling <mb@lightnvm.io>
6501 W:      http://github/OpenChannelSSD
6502 L:      linux-block@vger.kernel.org
6503 S:      Maintained
6504 F:      drivers/lightnvm/
6505 F:      include/linux/lightnvm.h
6506 F:      include/uapi/linux/lightnvm.h
6507
6508 LINUX FOR IBM pSERIES (RS/6000)
6509 M:      Paul Mackerras <paulus@au.ibm.com>
6510 W:      http://www.ibm.com/linux/ltc/projects/ppc
6511 S:      Supported
6512 F:      arch/powerpc/boot/rs6000.h
6513
6514 LINUX FOR POWERPC (32-BIT AND 64-BIT)
6515 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6516 M:      Paul Mackerras <paulus@samba.org>
6517 M:      Michael Ellerman <mpe@ellerman.id.au>
6518 W:      http://www.penguinppc.org/
6519 L:      linuxppc-dev@lists.ozlabs.org
6520 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
6521 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
6522 S:      Supported
6523 F:      Documentation/powerpc/
6524 F:      arch/powerpc/
6525
6526 LINUX FOR POWER MACINTOSH
6527 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6528 W:      http://www.penguinppc.org/
6529 L:      linuxppc-dev@lists.ozlabs.org
6530 S:      Maintained
6531 F:      arch/powerpc/platforms/powermac/
6532 F:      drivers/macintosh/
6533
6534 LINUX FOR POWERPC EMBEDDED MPC5XXX
6535 M:      Anatolij Gustschin <agust@denx.de>
6536 L:      linuxppc-dev@lists.ozlabs.org
6537 T:      git git://git.denx.de/linux-denx-agust.git
6538 S:      Maintained
6539 F:      arch/powerpc/platforms/512x/
6540 F:      arch/powerpc/platforms/52xx/
6541
6542 LINUX FOR POWERPC EMBEDDED PPC4XX
6543 M:      Alistair Popple <alistair@popple.id.au>
6544 M:      Matt Porter <mporter@kernel.crashing.org>
6545 W:      http://www.penguinppc.org/
6546 L:      linuxppc-dev@lists.ozlabs.org
6547 S:      Maintained
6548 F:      arch/powerpc/platforms/40x/
6549 F:      arch/powerpc/platforms/44x/
6550
6551 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
6552 L:      linuxppc-dev@lists.ozlabs.org
6553 S:      Orphan
6554 F:      arch/powerpc/*/*virtex*
6555 F:      arch/powerpc/*/*/*virtex*
6556
6557 LINUX FOR POWERPC EMBEDDED PPC8XX
6558 M:      Vitaly Bordug <vitb@kernel.crashing.org>
6559 W:      http://www.penguinppc.org/
6560 L:      linuxppc-dev@lists.ozlabs.org
6561 S:      Maintained
6562 F:      arch/powerpc/platforms/8xx/
6563
6564 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
6565 M:      Scott Wood <oss@buserror.net>
6566 M:      Kumar Gala <galak@kernel.crashing.org>
6567 W:      http://www.penguinppc.org/
6568 L:      linuxppc-dev@lists.ozlabs.org
6569 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
6570 S:      Maintained
6571 F:      arch/powerpc/platforms/83xx/
6572 F:      arch/powerpc/platforms/85xx/
6573
6574 LINUX FOR POWERPC PA SEMI PWRFICIENT
6575 M:      Olof Johansson <olof@lixom.net>
6576 L:      linuxppc-dev@lists.ozlabs.org
6577 S:      Maintained
6578 F:      arch/powerpc/platforms/pasemi/
6579 F:      drivers/*/*pasemi*
6580 F:      drivers/*/*/*pasemi*
6581
6582 LINUX SECURITY MODULE (LSM) FRAMEWORK
6583 M:      Chris Wright <chrisw@sous-sol.org>
6584 L:      linux-security-module@vger.kernel.org
6585 S:      Supported
6586
6587 LIS3LV02D ACCELEROMETER DRIVER
6588 M:      Eric Piel <eric.piel@tremplin-utc.net>
6589 S:      Maintained
6590 F:      Documentation/misc-devices/lis3lv02d
6591 F:      drivers/misc/lis3lv02d/
6592 F:      drivers/platform/x86/hp_accel.c
6593
6594 LIVE PATCHING
6595 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6596 M:      Seth Jennings <sjenning@redhat.com>
6597 M:      Jiri Kosina <jikos@kernel.org>
6598 M:      Vojtech Pavlik <vojtech@suse.com>
6599 S:      Maintained
6600 F:      kernel/livepatch/
6601 F:      include/linux/livepatch.h
6602 F:      arch/x86/include/asm/livepatch.h
6603 F:      arch/x86/kernel/livepatch.c
6604 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
6605 F:      samples/livepatch/
6606 L:      live-patching@vger.kernel.org
6607 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
6608
6609 LLC (802.2)
6610 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
6611 S:      Maintained
6612 F:      include/linux/llc.h
6613 F:      include/uapi/linux/llc.h
6614 F:      include/net/llc*
6615 F:      net/llc/
6616
6617 LM73 HARDWARE MONITOR DRIVER
6618 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
6619 L:      lm-sensors@lm-sensors.org
6620 S:      Maintained
6621 F:      drivers/hwmon/lm73.c
6622
6623 LM78 HARDWARE MONITOR DRIVER
6624 M:      Jean Delvare <jdelvare@suse.com>
6625 L:      lm-sensors@lm-sensors.org
6626 S:      Maintained
6627 F:      Documentation/hwmon/lm78
6628 F:      drivers/hwmon/lm78.c
6629
6630 LM83 HARDWARE MONITOR DRIVER
6631 M:      Jean Delvare <jdelvare@suse.com>
6632 L:      lm-sensors@lm-sensors.org
6633 S:      Maintained
6634 F:      Documentation/hwmon/lm83
6635 F:      drivers/hwmon/lm83.c
6636
6637 LM90 HARDWARE MONITOR DRIVER
6638 M:      Jean Delvare <jdelvare@suse.com>
6639 L:      lm-sensors@lm-sensors.org
6640 S:      Maintained
6641 F:      Documentation/hwmon/lm90
6642 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
6643 F:      drivers/hwmon/lm90.c
6644
6645 LM95234 HARDWARE MONITOR DRIVER
6646 M:      Guenter Roeck <linux@roeck-us.net>
6647 L:      lm-sensors@lm-sensors.org
6648 S:      Maintained
6649 F:      Documentation/hwmon/lm95234
6650 F:      drivers/hwmon/lm95234.c
6651
6652 LME2510 MEDIA DRIVER
6653 M:      Malcolm Priestley <tvboxspy@gmail.com>
6654 L:      linux-media@vger.kernel.org
6655 W:      https://linuxtv.org
6656 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6657 S:      Maintained
6658 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
6659
6660 LOCKDEP AND LOCKSTAT
6661 M:      Peter Zijlstra <peterz@infradead.org>
6662 M:      Ingo Molnar <mingo@redhat.com>
6663 L:      linux-kernel@vger.kernel.org
6664 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
6665 S:      Maintained
6666 F:      Documentation/locking/lockdep*.txt
6667 F:      Documentation/locking/lockstat.txt
6668 F:      include/linux/lockdep.h
6669 F:      kernel/locking/
6670
6671 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
6672 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
6673 L:      linux-ntfs-dev@lists.sourceforge.net
6674 W:      http://www.linux-ntfs.org/content/view/19/37/
6675 S:      Maintained
6676 F:      Documentation/ldm.txt
6677 F:      block/partitions/ldm.*
6678
6679 LogFS
6680 M:      Joern Engel <joern@logfs.org>
6681 M:      Prasad Joshi <prasadjoshi.linux@gmail.com>
6682 L:      logfs@logfs.org
6683 W:      logfs.org
6684 S:      Maintained
6685 F:      fs/logfs/
6686
6687 LPC32XX MACHINE SUPPORT
6688 M:      Roland Stigge <stigge@antcom.de>
6689 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6690 S:      Maintained
6691 F:      arch/arm/mach-lpc32xx/
6692
6693 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
6694 M:      Nagalakshmi Nandigama <nagalakshmi.nandigama@avagotech.com>
6695 M:      Praveen Krishnamoorthy <praveen.krishnamoorthy@avagotech.com>
6696 M:      Sreekanth Reddy <sreekanth.reddy@avagotech.com>
6697 M:      Abhijit Mahajan <abhijit.mahajan@avagotech.com>
6698 L:      MPT-FusionLinux.pdl@avagotech.com
6699 L:      linux-scsi@vger.kernel.org
6700 W:      http://www.lsilogic.com/support
6701 S:      Supported
6702 F:      drivers/message/fusion/
6703 F:      drivers/scsi/mpt2sas/
6704 F:      drivers/scsi/mpt3sas/
6705
6706 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
6707 M:      Matthew Wilcox <matthew@wil.cx>
6708 L:      linux-scsi@vger.kernel.org
6709 S:      Maintained
6710 F:      drivers/scsi/sym53c8xx_2/
6711
6712 LTC4261 HARDWARE MONITOR DRIVER
6713 M:      Guenter Roeck <linux@roeck-us.net>
6714 L:      lm-sensors@lm-sensors.org
6715 S:      Maintained
6716 F:      Documentation/hwmon/ltc4261
6717 F:      drivers/hwmon/ltc4261.c
6718
6719 LTP (Linux Test Project)
6720 M:      Mike Frysinger <vapier@gentoo.org>
6721 M:      Cyril Hrubis <chrubis@suse.cz>
6722 M:      Wanlong Gao <wanlong.gao@gmail.com>
6723 M:      Jan Stancek <jstancek@redhat.com>
6724 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
6725 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
6726 L:      ltp@lists.linux.it (subscribers-only)
6727 W:      http://linux-test-project.github.io/
6728 T:      git git://github.com/linux-test-project/ltp.git
6729 S:      Maintained
6730
6731 M32R ARCHITECTURE
6732 W:      http://www.linux-m32r.org/
6733 S:      Orphan
6734 F:      arch/m32r/
6735
6736 M68K ARCHITECTURE
6737 M:      Geert Uytterhoeven <geert@linux-m68k.org>
6738 L:      linux-m68k@lists.linux-m68k.org
6739 W:      http://www.linux-m68k.org/
6740 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
6741 S:      Maintained
6742 F:      arch/m68k/
6743 F:      drivers/zorro/
6744
6745 M68K ON APPLE MACINTOSH
6746 M:      Joshua Thompson <funaho@jurai.org>
6747 W:      http://www.mac.linux-m68k.org/
6748 L:      linux-m68k@lists.linux-m68k.org
6749 S:      Maintained
6750 F:      arch/m68k/mac/
6751
6752 M68K ON HP9000/300
6753 M:      Philip Blundell <philb@gnu.org>
6754 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
6755 S:      Maintained
6756 F:      arch/m68k/hp300/
6757
6758 M88DS3103 MEDIA DRIVER
6759 M:      Antti Palosaari <crope@iki.fi>
6760 L:      linux-media@vger.kernel.org
6761 W:      https://linuxtv.org
6762 W:      http://palosaari.fi/linux/
6763 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6764 T:      git git://linuxtv.org/anttip/media_tree.git
6765 S:      Maintained
6766 F:      drivers/media/dvb-frontends/m88ds3103*
6767
6768 M88RS2000 MEDIA DRIVER
6769 M:      Malcolm Priestley <tvboxspy@gmail.com>
6770 L:      linux-media@vger.kernel.org
6771 W:      https://linuxtv.org
6772 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6773 S:      Maintained
6774 F:      drivers/media/dvb-frontends/m88rs2000*
6775
6776 MA901 MASTERKIT USB FM RADIO DRIVER
6777 M:      Alexey Klimov <klimov.linux@gmail.com>
6778 L:      linux-media@vger.kernel.org
6779 T:      git git://linuxtv.org/media_tree.git
6780 S:      Maintained
6781 F:      drivers/media/radio/radio-ma901.c
6782
6783 MAC80211
6784 M:      Johannes Berg <johannes@sipsolutions.net>
6785 L:      linux-wireless@vger.kernel.org
6786 W:      http://wireless.kernel.org/
6787 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6788 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
6789 S:      Maintained
6790 F:      Documentation/networking/mac80211-injection.txt
6791 F:      include/net/mac80211.h
6792 F:      net/mac80211/
6793 F:      drivers/net/wireless/mac80211_hwsim.[ch]
6794
6795 MACVLAN DRIVER
6796 M:      Patrick McHardy <kaber@trash.net>
6797 L:      netdev@vger.kernel.org
6798 S:      Maintained
6799 F:      drivers/net/macvlan.c
6800 F:      include/linux/if_macvlan.h
6801
6802 MAILBOX API
6803 M:      Jassi Brar <jassisinghbrar@gmail.com>
6804 L:      linux-kernel@vger.kernel.org
6805 S:      Maintained
6806 F:      drivers/mailbox/
6807 F:      include/linux/mailbox_client.h
6808 F:      include/linux/mailbox_controller.h
6809
6810 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
6811 M:      Michael Kerrisk <mtk.manpages@gmail.com>
6812 W:      http://www.kernel.org/doc/man-pages
6813 L:      linux-man@vger.kernel.org
6814 S:      Maintained
6815
6816 MARVELL ARMADA DRM SUPPORT
6817 M:      Russell King <rmk+kernel@arm.linux.org.uk>
6818 S:      Maintained
6819 F:      drivers/gpu/drm/armada/
6820
6821 MARVELL 88E6352 DSA support
6822 M:      Guenter Roeck <linux@roeck-us.net>
6823 S:      Maintained
6824 F:      drivers/net/dsa/mv88e6352.c
6825
6826 MARVELL CRYPTO DRIVER
6827 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
6828 M:      Arnaud Ebalard <arno@natisbad.org>
6829 F:      drivers/crypto/marvell/
6830 S:      Maintained
6831 L:      linux-crypto@vger.kernel.org
6832
6833 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
6834 M:      Mirko Lindner <mlindner@marvell.com>
6835 M:      Stephen Hemminger <stephen@networkplumber.org>
6836 L:      netdev@vger.kernel.org
6837 S:      Maintained
6838 F:      drivers/net/ethernet/marvell/sk*
6839
6840 MARVELL LIBERTAS WIRELESS DRIVER
6841 L:      libertas-dev@lists.infradead.org
6842 S:      Orphan
6843 F:      drivers/net/wireless/marvell/libertas/
6844
6845 MARVELL MV643XX ETHERNET DRIVER
6846 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
6847 L:      netdev@vger.kernel.org
6848 S:      Maintained
6849 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
6850 F:      include/linux/mv643xx.h
6851
6852 MARVELL MVNETA ETHERNET DRIVER
6853 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
6854 L:      netdev@vger.kernel.org
6855 S:      Maintained
6856 F:      drivers/net/ethernet/marvell/mvneta.*
6857
6858 MARVELL MWIFIEX WIRELESS DRIVER
6859 M:      Amitkumar Karwar <akarwar@marvell.com>
6860 M:      Nishant Sarmukadam <nishants@marvell.com>
6861 L:      linux-wireless@vger.kernel.org
6862 S:      Maintained
6863 F:      drivers/net/wireless/marvell/mwifiex/
6864
6865 MARVELL MWL8K WIRELESS DRIVER
6866 M:      Lennert Buytenhek <buytenh@wantstofly.org>
6867 L:      linux-wireless@vger.kernel.org
6868 S:      Odd Fixes
6869 F:      drivers/net/wireless/marvell/mwl8k.c
6870
6871 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
6872 M:      Nicolas Pitre <nico@fluxnic.net>
6873 S:      Odd Fixes
6874 F:      drivers/mmc/host/mvsdio.*
6875
6876 MATROX FRAMEBUFFER DRIVER
6877 L:      linux-fbdev@vger.kernel.org
6878 S:      Orphan
6879 F:      drivers/video/fbdev/matrox/matroxfb_*
6880 F:      include/uapi/linux/matroxfb.h
6881
6882 MAX16065 HARDWARE MONITOR DRIVER
6883 M:      Guenter Roeck <linux@roeck-us.net>
6884 L:      lm-sensors@lm-sensors.org
6885 S:      Maintained
6886 F:      Documentation/hwmon/max16065
6887 F:      drivers/hwmon/max16065.c
6888
6889 MAX20751 HARDWARE MONITOR DRIVER
6890 M:      Guenter Roeck <linux@roeck-us.net>
6891 L:      lm-sensors@lm-sensors.org
6892 S:      Maintained
6893 F:      Documentation/hwmon/max20751
6894 F:      drivers/hwmon/max20751.c
6895
6896 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6897 M:      "Hans J. Koch" <hjk@hansjkoch.de>
6898 L:      lm-sensors@lm-sensors.org
6899 S:      Maintained
6900 F:      Documentation/hwmon/max6650
6901 F:      drivers/hwmon/max6650.c
6902
6903 MAX6697 HARDWARE MONITOR DRIVER
6904 M:      Guenter Roeck <linux@roeck-us.net>
6905 L:      lm-sensors@lm-sensors.org
6906 S:      Maintained
6907 F:      Documentation/hwmon/max6697
6908 F:      Documentation/devicetree/bindings/i2c/max6697.txt
6909 F:      drivers/hwmon/max6697.c
6910 F:      include/linux/platform_data/max6697.h
6911
6912 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
6913 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6914 L:      linux-pm@vger.kernel.org
6915 S:      Supported
6916 F:      drivers/power/max14577_charger.c
6917 F:      drivers/power/max77693_charger.c
6918
6919 MAXIM MAX77802 MULTIFUNCTION PMIC DEVICE DRIVERS
6920 M:      Javier Martinez Canillas <javier@osg.samsung.com>
6921 L:      linux-kernel@vger.kernel.org
6922 S:      Supported
6923 F:      drivers/*/*max77802.c
6924 F:      Documentation/devicetree/bindings/*/*max77802.txt
6925 F:      include/dt-bindings/*/*max77802.h
6926
6927 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
6928 M:      Chanwoo Choi <cw00.choi@samsung.com>
6929 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6930 L:      linux-kernel@vger.kernel.org
6931 S:      Supported
6932 F:      drivers/*/max14577.c
6933 F:      drivers/*/max77686.c
6934 F:      drivers/*/max77693.c
6935 F:      drivers/extcon/extcon-max14577.c
6936 F:      drivers/extcon/extcon-max77693.c
6937 F:      drivers/rtc/rtc-max77686.c
6938 F:      drivers/clk/clk-max77686.c
6939 F:      Documentation/devicetree/bindings/mfd/max14577.txt
6940 F:      Documentation/devicetree/bindings/*/max77686.txt
6941 F:      Documentation/devicetree/bindings/mfd/max77693.txt
6942 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
6943 F:      include/linux/mfd/max14577*.h
6944 F:      include/linux/mfd/max77686*.h
6945 F:      include/linux/mfd/max77693*.h
6946
6947 MAXIRADIO FM RADIO RECEIVER DRIVER
6948 M:      Hans Verkuil <hverkuil@xs4all.nl>
6949 L:      linux-media@vger.kernel.org
6950 T:      git git://linuxtv.org/media_tree.git
6951 W:      https://linuxtv.org
6952 S:      Maintained
6953 F:      drivers/media/radio/radio-maxiradio*
6954
6955 MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVER
6956 M:      Peter Rosin <peda@axentia.se>
6957 L:      linux-iio@vger.kernel.org
6958 S:      Maintained
6959 F:      drivers/iio/potentiometer/mcp4531.c
6960
6961 MEDIA DRIVERS FOR RENESAS - VSP1
6962 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6963 L:      linux-media@vger.kernel.org
6964 L:      linux-renesas-soc@vger.kernel.org
6965 T:      git git://linuxtv.org/media_tree.git
6966 S:      Supported
6967 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
6968 F:      drivers/media/platform/vsp1/
6969
6970 MEDIA DRIVERS FOR ASCOT2E
6971 M:      Sergey Kozlov <serjk@netup.ru>
6972 L:      linux-media@vger.kernel.org
6973 W:      https://linuxtv.org
6974 W:      http://netup.tv/
6975 T:      git git://linuxtv.org/media_tree.git
6976 S:      Supported
6977 F:      drivers/media/dvb-frontends/ascot2e*
6978
6979 MEDIA DRIVERS FOR CXD2841ER
6980 M:      Sergey Kozlov <serjk@netup.ru>
6981 L:      linux-media@vger.kernel.org
6982 W:      https://linuxtv.org
6983 W:      http://netup.tv/
6984 T:      git git://linuxtv.org/media_tree.git
6985 S:      Supported
6986 F:      drivers/media/dvb-frontends/cxd2841er*
6987
6988 MEDIA DRIVERS FOR HORUS3A
6989 M:      Sergey Kozlov <serjk@netup.ru>
6990 L:      linux-media@vger.kernel.org
6991 W:      https://linuxtv.org
6992 W:      http://netup.tv/
6993 T:      git git://linuxtv.org/media_tree.git
6994 S:      Supported
6995 F:      drivers/media/dvb-frontends/horus3a*
6996
6997 MEDIA DRIVERS FOR LNBH25
6998 M:      Sergey Kozlov <serjk@netup.ru>
6999 L:      linux-media@vger.kernel.org
7000 W:      https://linuxtv.org
7001 W:      http://netup.tv/
7002 T:      git git://linuxtv.org/media_tree.git
7003 S:      Supported
7004 F:      drivers/media/dvb-frontends/lnbh25*
7005
7006 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
7007 M:      Sergey Kozlov <serjk@netup.ru>
7008 L:      linux-media@vger.kernel.org
7009 W:      https://linuxtv.org
7010 W:      http://netup.tv/
7011 T:      git git://linuxtv.org/media_tree.git
7012 S:      Supported
7013 F:      drivers/media/pci/netup_unidvb/*
7014
7015 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
7016 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
7017 P:      LinuxTV.org Project
7018 L:      linux-media@vger.kernel.org
7019 W:      https://linuxtv.org
7020 Q:      http://patchwork.kernel.org/project/linux-media/list/
7021 T:      git git://linuxtv.org/media_tree.git
7022 S:      Maintained
7023 F:      Documentation/dvb/
7024 F:      Documentation/video4linux/
7025 F:      Documentation/DocBook/media/
7026 F:      drivers/media/
7027 F:      drivers/staging/media/
7028 F:      include/linux/platform_data/media/
7029 F:      include/media/
7030 F:      include/uapi/linux/dvb/
7031 F:      include/uapi/linux/videodev2.h
7032 F:      include/uapi/linux/media.h
7033 F:      include/uapi/linux/v4l2-*
7034 F:      include/uapi/linux/meye.h
7035 F:      include/uapi/linux/ivtv*
7036 F:      include/uapi/linux/uvcvideo.h
7037
7038 MEDIATEK MT7601U WIRELESS LAN DRIVER
7039 M:      Jakub Kicinski <kubakici@wp.pl>
7040 L:      linux-wireless@vger.kernel.org
7041 S:      Maintained
7042 F:      drivers/net/wireless/mediatek/mt7601u/
7043
7044 MEGARAID SCSI/SAS DRIVERS
7045 M:      Kashyap Desai <kashyap.desai@avagotech.com>
7046 M:      Sumit Saxena <sumit.saxena@avagotech.com>
7047 M:      Uday Lingala <uday.lingala@avagotech.com>
7048 L:      megaraidlinux.pdl@avagotech.com
7049 L:      linux-scsi@vger.kernel.org
7050 W:      http://www.lsi.com
7051 S:      Maintained
7052 F:      Documentation/scsi/megaraid.txt
7053 F:      drivers/scsi/megaraid.*
7054 F:      drivers/scsi/megaraid/
7055
7056 MELLANOX ETHERNET DRIVER (mlx4_en)
7057 M:      Eugenia Emantayev <eugenia@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/mlx4/en_*
7063
7064 MELLANOX ETHERNET DRIVER (mlx5e)
7065 M:      Saeed Mahameed <saeedm@mellanox.com>
7066 L:      netdev@vger.kernel.org
7067 S:      Supported
7068 W:      http://www.mellanox.com
7069 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7070 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
7071
7072 MELLANOX ETHERNET SWITCH DRIVERS
7073 M:      Jiri Pirko <jiri@mellanox.com>
7074 M:      Ido Schimmel <idosch@mellanox.com>
7075 L:      netdev@vger.kernel.org
7076 S:      Supported
7077 W:      http://www.mellanox.com
7078 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7079 F:      drivers/net/ethernet/mellanox/mlxsw/
7080
7081 MEMBARRIER SUPPORT
7082 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7083 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
7084 L:      linux-kernel@vger.kernel.org
7085 S:      Supported
7086 F:      kernel/membarrier.c
7087 F:      include/uapi/linux/membarrier.h
7088
7089 MEMORY MANAGEMENT
7090 L:      linux-mm@kvack.org
7091 W:      http://www.linux-mm.org
7092 S:      Maintained
7093 F:      include/linux/mm.h
7094 F:      include/linux/gfp.h
7095 F:      include/linux/mmzone.h
7096 F:      include/linux/memory_hotplug.h
7097 F:      include/linux/vmalloc.h
7098 F:      mm/
7099
7100 MEMORY TECHNOLOGY DEVICES (MTD)
7101 M:      David Woodhouse <dwmw2@infradead.org>
7102 M:      Brian Norris <computersforpeace@gmail.com>
7103 L:      linux-mtd@lists.infradead.org
7104 W:      http://www.linux-mtd.infradead.org/
7105 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
7106 T:      git git://git.infradead.org/linux-mtd.git
7107 T:      git git://git.infradead.org/l2-mtd.git
7108 S:      Maintained
7109 F:      drivers/mtd/
7110 F:      include/linux/mtd/
7111 F:      include/uapi/mtd/
7112
7113 MEN A21 WATCHDOG DRIVER
7114 M:      Johannes Thumshirn <morbidrsa@gmail.com>
7115 L:      linux-watchdog@vger.kernel.org
7116 S:      Maintained
7117 F:      drivers/watchdog/mena21_wdt.c
7118
7119 MEN CHAMELEON BUS (mcb)
7120 M:      Johannes Thumshirn <morbidrsa@gmail.com>
7121 S:      Maintained
7122 F:      drivers/mcb/
7123 F:      include/linux/mcb.h
7124 F:      Documentation/men-chameleon-bus.txt
7125
7126 MEN F21BMC (Board Management Controller)
7127 M:      Andreas Werner <andreas.werner@men.de>
7128 S:      Supported
7129 F:      drivers/mfd/menf21bmc.c
7130 F:      drivers/watchdog/menf21bmc_wdt.c
7131 F:      drivers/leds/leds-menf21bmc.c
7132 F:      drivers/hwmon/menf21bmc_hwmon.c
7133 F:      Documentation/hwmon/menf21bmc
7134
7135 METAG ARCHITECTURE
7136 M:      James Hogan <james.hogan@imgtec.com>
7137 L:      linux-metag@vger.kernel.org
7138 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jhogan/metag.git
7139 S:      Odd Fixes
7140 F:      arch/metag/
7141 F:      Documentation/metag/
7142 F:      Documentation/devicetree/bindings/metag/
7143 F:      Documentation/devicetree/bindings/interrupt-controller/img,*
7144 F:      drivers/clocksource/metag_generic.c
7145 F:      drivers/irqchip/irq-metag.c
7146 F:      drivers/irqchip/irq-metag-ext.c
7147 F:      drivers/tty/metag_da.c
7148
7149 MICROBLAZE ARCHITECTURE
7150 M:      Michal Simek <monstr@monstr.eu>
7151 W:      http://www.monstr.eu/fdt/
7152 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
7153 S:      Supported
7154 F:      arch/microblaze/
7155
7156 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
7157 M:      Chen Yu <yu.c.chen@intel.com>
7158 L:      platform-driver-x86@vger.kernel.org
7159 S:      Supported
7160 F:      drivers/platform/x86/surfacepro3_button.c
7161
7162 MICROTEK X6 SCANNER
7163 M:      Oliver Neukum <oliver@neukum.org>
7164 S:      Maintained
7165 F:      drivers/usb/image/microtek.*
7166
7167 MIPS
7168 M:      Ralf Baechle <ralf@linux-mips.org>
7169 L:      linux-mips@linux-mips.org
7170 W:      http://www.linux-mips.org/
7171 T:      git git://git.linux-mips.org/pub/scm/ralf/linux.git
7172 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
7173 S:      Supported
7174 F:      Documentation/mips/
7175 F:      arch/mips/
7176
7177 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
7178 M:      Hans Verkuil <hverkuil@xs4all.nl>
7179 L:      linux-media@vger.kernel.org
7180 T:      git git://linuxtv.org/media_tree.git
7181 W:      https://linuxtv.org
7182 S:      Odd Fixes
7183 F:      drivers/media/radio/radio-miropcm20*
7184
7185 MELLANOX MLX4 core VPI driver
7186 M:      Yishai Hadas <yishaih@mellanox.com>
7187 L:      netdev@vger.kernel.org
7188 L:      linux-rdma@vger.kernel.org
7189 W:      http://www.mellanox.com
7190 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7191 S:      Supported
7192 F:      drivers/net/ethernet/mellanox/mlx4/
7193 F:      include/linux/mlx4/
7194
7195 MELLANOX MLX4 IB driver
7196 M:      Yishai Hadas <yishaih@mellanox.com>
7197 L:      linux-rdma@vger.kernel.org
7198 W:      http://www.mellanox.com
7199 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
7200 S:      Supported
7201 F:      drivers/infiniband/hw/mlx4/
7202 F:      include/linux/mlx4/
7203
7204 MELLANOX MLX5 core VPI driver
7205 M:      Matan Barak <matanb@mellanox.com>
7206 M:      Leon Romanovsky <leonro@mellanox.com>
7207 L:      netdev@vger.kernel.org
7208 L:      linux-rdma@vger.kernel.org
7209 W:      http://www.mellanox.com
7210 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7211 S:      Supported
7212 F:      drivers/net/ethernet/mellanox/mlx5/core/
7213 F:      include/linux/mlx5/
7214
7215 MELLANOX MLX5 IB driver
7216 M:      Matan Barak <matanb@mellanox.com>
7217 M:      Leon Romanovsky <leonro@mellanox.com>
7218 L:      linux-rdma@vger.kernel.org
7219 W:      http://www.mellanox.com
7220 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
7221 S:      Supported
7222 F:      drivers/infiniband/hw/mlx5/
7223 F:      include/linux/mlx5/
7224
7225 MELEXIS MLX90614 DRIVER
7226 M:      Crt Mori <cmo@melexis.com>
7227 L:      linux-iio@vger.kernel.org
7228 W:      http://www.melexis.com
7229 S:      Supported
7230 F:      drivers/iio/temperature/mlx90614.c
7231
7232 MN88472 MEDIA DRIVER
7233 M:      Antti Palosaari <crope@iki.fi>
7234 L:      linux-media@vger.kernel.org
7235 W:      https://linuxtv.org
7236 W:      http://palosaari.fi/linux/
7237 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7238 T:      git git://linuxtv.org/anttip/media_tree.git
7239 S:      Maintained
7240 F:      drivers/staging/media/mn88472/
7241 F:      drivers/media/dvb-frontends/mn88472.h
7242
7243 MN88473 MEDIA DRIVER
7244 M:      Antti Palosaari <crope@iki.fi>
7245 L:      linux-media@vger.kernel.org
7246 W:      https://linuxtv.org
7247 W:      http://palosaari.fi/linux/
7248 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7249 T:      git git://linuxtv.org/anttip/media_tree.git
7250 S:      Maintained
7251 F:      drivers/staging/media/mn88473/
7252 F:      drivers/media/dvb-frontends/mn88473.h
7253
7254 MODULE SUPPORT
7255 M:      Rusty Russell <rusty@rustcorp.com.au>
7256 S:      Maintained
7257 F:      include/linux/module.h
7258 F:      kernel/module.c
7259
7260 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
7261 W:      http://popies.net/meye/
7262 S:      Orphan
7263 F:      Documentation/video4linux/meye.txt
7264 F:      drivers/media/pci/meye/
7265 F:      include/uapi/linux/meye.h
7266
7267 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
7268 M:      Jiri Slaby <jirislaby@gmail.com>
7269 S:      Maintained
7270 F:      Documentation/serial/moxa-smartio
7271 F:      drivers/tty/mxser.*
7272
7273 MR800 AVERMEDIA USB FM RADIO DRIVER
7274 M:      Alexey Klimov <klimov.linux@gmail.com>
7275 L:      linux-media@vger.kernel.org
7276 T:      git git://linuxtv.org/media_tree.git
7277 S:      Maintained
7278 F:      drivers/media/radio/radio-mr800.c
7279
7280 MRF24J40 IEEE 802.15.4 RADIO DRIVER
7281 M:      Alan Ott <alan@signal11.us>
7282 L:      linux-wpan@vger.kernel.org
7283 S:      Maintained
7284 F:      drivers/net/ieee802154/mrf24j40.c
7285 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
7286
7287 MSI LAPTOP SUPPORT
7288 M:      "Lee, Chun-Yi" <jlee@suse.com>
7289 L:      platform-driver-x86@vger.kernel.org
7290 S:      Maintained
7291 F:      drivers/platform/x86/msi-laptop.c
7292
7293 MSI WMI SUPPORT
7294 L:      platform-driver-x86@vger.kernel.org
7295 S:      Orphan
7296 F:      drivers/platform/x86/msi-wmi.c
7297
7298 MSI001 MEDIA DRIVER
7299 M:      Antti Palosaari <crope@iki.fi>
7300 L:      linux-media@vger.kernel.org
7301 W:      https://linuxtv.org
7302 W:      http://palosaari.fi/linux/
7303 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7304 T:      git git://linuxtv.org/anttip/media_tree.git
7305 S:      Maintained
7306 F:      drivers/media/tuners/msi001*
7307
7308 MSI2500 MEDIA DRIVER
7309 M:      Antti Palosaari <crope@iki.fi>
7310 L:      linux-media@vger.kernel.org
7311 W:      https://linuxtv.org
7312 W:      http://palosaari.fi/linux/
7313 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7314 T:      git git://linuxtv.org/anttip/media_tree.git
7315 S:      Maintained
7316 F:      drivers/media/usb/msi2500/
7317
7318 MSYSTEMS DISKONCHIP G3 MTD DRIVER
7319 M:      Robert Jarzmik <robert.jarzmik@free.fr>
7320 L:      linux-mtd@lists.infradead.org
7321 S:      Maintained
7322 F:      drivers/mtd/devices/docg3*
7323
7324 MT9M032 APTINA SENSOR DRIVER
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/mt9m032.c
7330 F:      include/media/i2c/mt9m032.h
7331
7332 MT9P031 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/mt9p031.c
7338 F:      include/media/i2c/mt9p031.h
7339
7340 MT9T001 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:      drivers/media/i2c/mt9t001.c
7346 F:      include/media/i2c/mt9t001.h
7347
7348 MT9V032 APTINA CAMERA SENSOR
7349 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7350 L:      linux-media@vger.kernel.org
7351 T:      git git://linuxtv.org/media_tree.git
7352 S:      Maintained
7353 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
7354 F:      drivers/media/i2c/mt9v032.c
7355 F:      include/media/i2c/mt9v032.h
7356
7357 MULTIFUNCTION DEVICES (MFD)
7358 M:      Lee Jones <lee.jones@linaro.org>
7359 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
7360 S:      Supported
7361 F:      drivers/mfd/
7362 F:      include/linux/mfd/
7363
7364 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
7365 M:      Ulf Hansson <ulf.hansson@linaro.org>
7366 L:      linux-mmc@vger.kernel.org
7367 T:      git git://git.linaro.org/people/ulf.hansson/mmc.git
7368 S:      Maintained
7369 F:      drivers/mmc/
7370 F:      include/linux/mmc/
7371 F:      include/uapi/linux/mmc/
7372
7373 MULTIMEDIA CARD (MMC) ETC. OVER SPI
7374 S:      Orphan
7375 F:      drivers/mmc/host/mmc_spi.c
7376 F:      include/linux/spi/mmc_spi.h
7377
7378 MULTISOUND SOUND DRIVER
7379 M:      Andrew Veliath <andrewtv@usa.net>
7380 S:      Maintained
7381 F:      Documentation/sound/oss/MultiSound
7382 F:      sound/oss/msnd*
7383
7384 MULTITECH MULTIPORT CARD (ISICOM)
7385 S:      Orphan
7386 F:      drivers/tty/isicom.c
7387 F:      include/linux/isicom.h
7388
7389 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
7390 M:      Bin Liu <b-liu@ti.com>
7391 L:      linux-usb@vger.kernel.org
7392 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7393 S:      Maintained
7394 F:      drivers/usb/musb/
7395
7396 MXL5007T MEDIA DRIVER
7397 M:      Michael Krufky <mkrufky@linuxtv.org>
7398 L:      linux-media@vger.kernel.org
7399 W:      https://linuxtv.org
7400 W:      http://github.com/mkrufky
7401 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7402 T:      git git://linuxtv.org/mkrufky/tuners.git
7403 S:      Maintained
7404 F:      drivers/media/tuners/mxl5007t.*
7405
7406 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
7407 M:      Hyong-Youb Kim <hykim@myri.com>
7408 L:      netdev@vger.kernel.org
7409 W:      https://www.myricom.com/support/downloads/myri10ge.html
7410 S:      Supported
7411 F:      drivers/net/ethernet/myricom/myri10ge/
7412
7413 NATSEMI ETHERNET DRIVER (DP8381x)
7414 S:      Orphan
7415 F:      drivers/net/ethernet/natsemi/natsemi.c
7416
7417 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
7418 M:      Daniel Mack <zonque@gmail.com>
7419 S:      Maintained
7420 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7421 W:      http://www.native-instruments.com
7422 F:      sound/usb/caiaq/
7423
7424 NCP FILESYSTEM
7425 M:      Petr Vandrovec <petr@vandrovec.name>
7426 S:      Odd Fixes
7427 F:      fs/ncpfs/
7428
7429 NCR 5380 SCSI DRIVERS
7430 M:      Finn Thain <fthain@telegraphics.com.au>
7431 M:      Michael Schmitz <schmitzmic@gmail.com>
7432 L:      linux-scsi@vger.kernel.org
7433 S:      Maintained
7434 F:      Documentation/scsi/g_NCR5380.txt
7435 F:      drivers/scsi/NCR5380.*
7436 F:      drivers/scsi/arm/cumana_1.c
7437 F:      drivers/scsi/arm/oak.c
7438 F:      drivers/scsi/atari_NCR5380.c
7439 F:      drivers/scsi/atari_scsi.*
7440 F:      drivers/scsi/dmx3191d.c
7441 F:      drivers/scsi/dtc.*
7442 F:      drivers/scsi/g_NCR5380.*
7443 F:      drivers/scsi/g_NCR5380_mmio.c
7444 F:      drivers/scsi/mac_scsi.*
7445 F:      drivers/scsi/pas16.*
7446 F:      drivers/scsi/sun3_scsi.*
7447 F:      drivers/scsi/sun3_scsi_vme.c
7448 F:      drivers/scsi/t128.*
7449
7450 NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
7451 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
7452 L:      linux-scsi@vger.kernel.org
7453 S:      Maintained
7454 F:      drivers/scsi/NCR_D700.*
7455
7456 NCT6775 HARDWARE MONITOR DRIVER
7457 M:      Guenter Roeck <linux@roeck-us.net>
7458 L:      lm-sensors@lm-sensors.org
7459 S:      Maintained
7460 F:      Documentation/hwmon/nct6775
7461 F:      drivers/hwmon/nct6775.c
7462
7463 NETEFFECT IWARP RNIC DRIVER (IW_NES)
7464 M:      Faisal Latif <faisal.latif@intel.com>
7465 L:      linux-rdma@vger.kernel.org
7466 W:      http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
7467 S:      Supported
7468 F:      drivers/infiniband/hw/nes/
7469
7470 NETEM NETWORK EMULATOR
7471 M:      Stephen Hemminger <stephen@networkplumber.org>
7472 L:      netem@lists.linux-foundation.org
7473 S:      Maintained
7474 F:      net/sched/sch_netem.c
7475
7476 NETERION 10GbE DRIVERS (s2io/vxge)
7477 M:      Jon Mason <jdmason@kudzu.us>
7478 L:      netdev@vger.kernel.org
7479 S:      Supported
7480 F:      Documentation/networking/s2io.txt
7481 F:      Documentation/networking/vxge.txt
7482 F:      drivers/net/ethernet/neterion/
7483
7484 NETFILTER ({IP,IP6,ARP,EB,NF}TABLES)
7485 M:      Pablo Neira Ayuso <pablo@netfilter.org>
7486 M:      Patrick McHardy <kaber@trash.net>
7487 M:      Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
7488 L:      netfilter-devel@vger.kernel.org
7489 L:      coreteam@netfilter.org
7490 W:      http://www.netfilter.org/
7491 W:      http://www.iptables.org/
7492 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
7493 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
7494 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
7495 S:      Supported
7496 F:      include/linux/netfilter*
7497 F:      include/linux/netfilter/
7498 F:      include/net/netfilter/
7499 F:      include/uapi/linux/netfilter*
7500 F:      include/uapi/linux/netfilter/
7501 F:      net/*/netfilter.c
7502 F:      net/*/netfilter/
7503 F:      net/netfilter/
7504 F:      net/bridge/br_netfilter*.c
7505
7506 NETLABEL
7507 M:      Paul Moore <paul@paul-moore.com>
7508 W:      http://netlabel.sf.net
7509 L:      netdev@vger.kernel.org
7510 S:      Maintained
7511 F:      Documentation/netlabel/
7512 F:      include/net/netlabel.h
7513 F:      net/netlabel/
7514
7515 NETROM NETWORK LAYER
7516 M:      Ralf Baechle <ralf@linux-mips.org>
7517 L:      linux-hams@vger.kernel.org
7518 W:      http://www.linux-ax25.org/
7519 S:      Maintained
7520 F:      include/net/netrom.h
7521 F:      include/uapi/linux/netrom.h
7522 F:      net/netrom/
7523
7524 NETRONOME ETHERNET DRIVERS
7525 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
7526 L:      oss-drivers@netronome.com
7527 S:      Maintained
7528 F:      drivers/net/ethernet/netronome/
7529
7530 NETWORK BLOCK DEVICE (NBD)
7531 M:      Markus Pargmann <mpa@pengutronix.de>
7532 S:      Maintained
7533 L:      nbd-general@lists.sourceforge.net
7534 T:      git git://git.pengutronix.de/git/mpa/linux-nbd.git
7535 F:      Documentation/blockdev/nbd.txt
7536 F:      drivers/block/nbd.c
7537 F:      include/uapi/linux/nbd.h
7538
7539 NETWORK DROP MONITOR
7540 M:      Neil Horman <nhorman@tuxdriver.com>
7541 L:      netdev@vger.kernel.org
7542 S:      Maintained
7543 W:      https://fedorahosted.org/dropwatch/
7544 F:      net/core/drop_monitor.c
7545
7546 NETWORKING [GENERAL]
7547 M:      "David S. Miller" <davem@davemloft.net>
7548 L:      netdev@vger.kernel.org
7549 W:      http://www.linuxfoundation.org/en/Net
7550 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7551 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7552 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7553 S:      Maintained
7554 F:      net/
7555 F:      include/net/
7556 F:      include/linux/in.h
7557 F:      include/linux/net.h
7558 F:      include/linux/netdevice.h
7559 F:      include/uapi/linux/in.h
7560 F:      include/uapi/linux/net.h
7561 F:      include/uapi/linux/netdevice.h
7562 F:      include/uapi/linux/net_namespace.h
7563 F:      tools/net/
7564 F:      tools/testing/selftests/net/
7565 F:      lib/random32.c
7566 F:      lib/test_bpf.c
7567
7568 NETWORKING [IPv4/IPv6]
7569 M:      "David S. Miller" <davem@davemloft.net>
7570 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
7571 M:      James Morris <jmorris@namei.org>
7572 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
7573 M:      Patrick McHardy <kaber@trash.net>
7574 L:      netdev@vger.kernel.org
7575 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7576 S:      Maintained
7577 F:      net/ipv4/
7578 F:      net/ipv6/
7579 F:      include/net/ip*
7580 F:      arch/x86/net/*
7581
7582 NETWORKING [IPSEC]
7583 M:      Steffen Klassert <steffen.klassert@secunet.com>
7584 M:      Herbert Xu <herbert@gondor.apana.org.au>
7585 M:      "David S. Miller" <davem@davemloft.net>
7586 L:      netdev@vger.kernel.org
7587 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
7588 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
7589 S:      Maintained
7590 F:      net/core/flow.c
7591 F:      net/xfrm/
7592 F:      net/key/
7593 F:      net/ipv4/xfrm*
7594 F:      net/ipv4/esp4.c
7595 F:      net/ipv4/ah4.c
7596 F:      net/ipv4/ipcomp.c
7597 F:      net/ipv4/ip_vti.c
7598 F:      net/ipv6/xfrm*
7599 F:      net/ipv6/esp6.c
7600 F:      net/ipv6/ah6.c
7601 F:      net/ipv6/ipcomp6.c
7602 F:      net/ipv6/ip6_vti.c
7603 F:      include/uapi/linux/xfrm.h
7604 F:      include/net/xfrm.h
7605
7606 NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
7607 M:      Paul Moore <paul@paul-moore.com>
7608 L:      netdev@vger.kernel.org
7609 S:      Maintained
7610
7611 NETWORKING [WIRELESS]
7612 L:      linux-wireless@vger.kernel.org
7613 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7614
7615 NETWORKING DRIVERS
7616 L:      netdev@vger.kernel.org
7617 W:      http://www.linuxfoundation.org/en/Net
7618 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7619 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7620 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7621 S:      Odd Fixes
7622 F:      drivers/net/
7623 F:      include/linux/if_*
7624 F:      include/linux/netdevice.h
7625 F:      include/linux/etherdevice.h
7626 F:      include/linux/fcdevice.h
7627 F:      include/linux/fddidevice.h
7628 F:      include/linux/hippidevice.h
7629 F:      include/linux/inetdevice.h
7630 F:      include/uapi/linux/if_*
7631 F:      include/uapi/linux/netdevice.h
7632
7633 NETWORKING DRIVERS (WIRELESS)
7634 M:      Kalle Valo <kvalo@codeaurora.org>
7635 L:      linux-wireless@vger.kernel.org
7636 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7637 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
7638 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
7639 S:      Maintained
7640 F:      drivers/net/wireless/
7641
7642 NETXEN (1/10) GbE SUPPORT
7643 M:      Manish Chopra <manish.chopra@qlogic.com>
7644 M:      Sony Chacko <sony.chacko@qlogic.com>
7645 M:      Rajesh Borundia <rajesh.borundia@qlogic.com>
7646 L:      netdev@vger.kernel.org
7647 W:      http://www.qlogic.com
7648 S:      Supported
7649 F:      drivers/net/ethernet/qlogic/netxen/
7650
7651 NFC SUBSYSTEM
7652 M:      Lauro Ramos Venancio <lauro.venancio@openbossa.org>
7653 M:      Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
7654 M:      Samuel Ortiz <sameo@linux.intel.com>
7655 L:      linux-wireless@vger.kernel.org
7656 L:      linux-nfc@lists.01.org (subscribers-only)
7657 S:      Supported
7658 F:      net/nfc/
7659 F:      include/net/nfc/
7660 F:      include/uapi/linux/nfc.h
7661 F:      drivers/nfc/
7662 F:      include/linux/platform_data/microread.h
7663 F:      include/linux/platform_data/nfcmrvl.h
7664 F:      include/linux/platform_data/nxp-nci.h
7665 F:      include/linux/platform_data/pn544.h
7666 F:      include/linux/platform_data/st21nfca.h
7667 F:      include/linux/platform_data/st-nci.h
7668 F:      Documentation/devicetree/bindings/net/nfc/
7669
7670 NFS, SUNRPC, AND LOCKD CLIENTS
7671 M:      Trond Myklebust <trond.myklebust@primarydata.com>
7672 M:      Anna Schumaker <anna.schumaker@netapp.com>
7673 L:      linux-nfs@vger.kernel.org
7674 W:      http://client.linux-nfs.org
7675 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
7676 S:      Maintained
7677 F:      fs/lockd/
7678 F:      fs/nfs/
7679 F:      fs/nfs_common/
7680 F:      net/sunrpc/
7681 F:      include/linux/lockd/
7682 F:      include/linux/nfs*
7683 F:      include/linux/sunrpc/
7684 F:      include/uapi/linux/nfs*
7685 F:      include/uapi/linux/sunrpc/
7686
7687 NILFS2 FILESYSTEM
7688 M:      Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
7689 L:      linux-nilfs@vger.kernel.org
7690 W:      http://nilfs.sourceforge.net/
7691 T:      git git://github.com/konis/nilfs2.git
7692 S:      Supported
7693 F:      Documentation/filesystems/nilfs2.txt
7694 F:      fs/nilfs2/
7695 F:      include/linux/nilfs2_fs.h
7696 F:      include/trace/events/nilfs2.h
7697
7698 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
7699 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7700 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7701 S:      Maintained
7702 F:      Documentation/scsi/NinjaSCSI.txt
7703 F:      drivers/scsi/pcmcia/nsp_*
7704
7705 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
7706 M:      GOTO Masanori <gotom@debian.or.jp>
7707 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7708 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7709 S:      Maintained
7710 F:      Documentation/scsi/NinjaSCSI.txt
7711 F:      drivers/scsi/nsp32*
7712
7713 NIOS2 ARCHITECTURE
7714 M:      Ley Foon Tan <lftan@altera.com>
7715 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
7716 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
7717 S:      Maintained
7718 F:      arch/nios2/
7719
7720 NOKIA N900 POWER SUPPLY DRIVERS
7721 R:      Pali RohĂ¡r <pali.rohar@gmail.com>
7722 F:      include/linux/power/bq2415x_charger.h
7723 F:      include/linux/power/bq27xxx_battery.h
7724 F:      include/linux/power/isp1704_charger.h
7725 F:      drivers/power/bq2415x_charger.c
7726 F:      drivers/power/bq27xxx_battery.c
7727 F:      drivers/power/bq27xxx_battery_i2c.c
7728 F:      drivers/power/isp1704_charger.c
7729 F:      drivers/power/rx51_battery.c
7730
7731 NTB DRIVER CORE
7732 M:      Jon Mason <jdmason@kudzu.us>
7733 M:      Dave Jiang <dave.jiang@intel.com>
7734 M:      Allen Hubbe <Allen.Hubbe@emc.com>
7735 L:      linux-ntb@googlegroups.com
7736 S:      Supported
7737 W:      https://github.com/jonmason/ntb/wiki
7738 T:      git git://github.com/jonmason/ntb.git
7739 F:      drivers/ntb/
7740 F:      drivers/net/ntb_netdev.c
7741 F:      include/linux/ntb.h
7742 F:      include/linux/ntb_transport.h
7743
7744 NTB INTEL DRIVER
7745 M:      Jon Mason <jdmason@kudzu.us>
7746 M:      Dave Jiang <dave.jiang@intel.com>
7747 L:      linux-ntb@googlegroups.com
7748 S:      Supported
7749 W:      https://github.com/jonmason/ntb/wiki
7750 T:      git git://github.com/jonmason/ntb.git
7751 F:      drivers/ntb/hw/intel/
7752
7753 NTB AMD DRIVER
7754 M:      Xiangliang Yu <Xiangliang.Yu@amd.com>
7755 L:      linux-ntb@googlegroups.com
7756 S:      Supported
7757 F:      drivers/ntb/hw/amd/
7758
7759 NTFS FILESYSTEM
7760 M:      Anton Altaparmakov <anton@tuxera.com>
7761 L:      linux-ntfs-dev@lists.sourceforge.net
7762 W:      http://www.tuxera.com/
7763 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
7764 S:      Supported
7765 F:      Documentation/filesystems/ntfs.txt
7766 F:      fs/ntfs/
7767
7768 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
7769 M:      Antonino Daplas <adaplas@gmail.com>
7770 L:      linux-fbdev@vger.kernel.org
7771 S:      Maintained
7772 F:      drivers/video/fbdev/riva/
7773 F:      drivers/video/fbdev/nvidia/
7774
7775 NVM EXPRESS DRIVER
7776 M:      Keith Busch <keith.busch@intel.com>
7777 M:      Jens Axboe <axboe@fb.com>
7778 L:      linux-nvme@lists.infradead.org
7779 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
7780 W:      https://kernel.googlesource.com/pub/scm/linux/kernel/git/axboe/linux-block/
7781 S:      Supported
7782 F:      drivers/nvme/host/
7783 F:      include/linux/nvme.h
7784
7785 NVMEM FRAMEWORK
7786 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
7787 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
7788 S:      Maintained
7789 F:      drivers/nvmem/
7790 F:      Documentation/devicetree/bindings/nvmem/
7791 F:      include/linux/nvmem-consumer.h
7792 F:      include/linux/nvmem-provider.h
7793
7794 NXP-NCI NFC DRIVER
7795 M:      ClĂ©ment Perrochaud <clement.perrochaud@effinnov.com>
7796 R:      Charles Gorand <charles.gorand@effinnov.com>
7797 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
7798 S:      Supported
7799 F:      drivers/nfc/nxp-nci
7800
7801 NXP TDA998X DRM DRIVER
7802 M:      Russell King <rmk+kernel@arm.linux.org.uk>
7803 S:      Supported
7804 F:      drivers/gpu/drm/i2c/tda998x_drv.c
7805 F:      include/drm/i2c/tda998x.h
7806
7807 NXP TFA9879 DRIVER
7808 M:      Peter Rosin <peda@axentia.se>
7809 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7810 S:      Maintained
7811 F:      sound/soc/codecs/tfa9879*
7812
7813 OMAP SUPPORT
7814 M:      Tony Lindgren <tony@atomide.com>
7815 L:      linux-omap@vger.kernel.org
7816 W:      http://www.muru.com/linux/omap/
7817 W:      http://linux.omap.com/
7818 Q:      http://patchwork.kernel.org/project/linux-omap/list/
7819 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
7820 S:      Maintained
7821 F:      arch/arm/*omap*/
7822 F:      arch/arm/configs/omap1_defconfig
7823 F:      arch/arm/configs/omap2plus_defconfig
7824 F:      drivers/i2c/busses/i2c-omap.c
7825 F:      drivers/irqchip/irq-omap-intc.c
7826 F:      drivers/mfd/*omap*.c
7827 F:      drivers/mfd/menelaus.c
7828 F:      drivers/mfd/palmas.c
7829 F:      drivers/mfd/tps65217.c
7830 F:      drivers/mfd/tps65218.c
7831 F:      drivers/mfd/tps65910.c
7832 F:      drivers/mfd/twl-core.[ch]
7833 F:      drivers/mfd/twl4030*.c
7834 F:      drivers/mfd/twl6030*.c
7835 F:      drivers/mfd/twl6040*.c
7836 F:      drivers/regulator/palmas-regulator*.c
7837 F:      drivers/regulator/pbias-regulator.c
7838 F:      drivers/regulator/tps65217-regulator.c
7839 F:      drivers/regulator/tps65218-regulator.c
7840 F:      drivers/regulator/tps65910-regulator.c
7841 F:      drivers/regulator/twl-regulator.c
7842 F:      include/linux/i2c-omap.h
7843
7844 OMAP DEVICE TREE SUPPORT
7845 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7846 M:      Tony Lindgren <tony@atomide.com>
7847 L:      linux-omap@vger.kernel.org
7848 L:      devicetree@vger.kernel.org
7849 S:      Maintained
7850 F:      arch/arm/boot/dts/*omap*
7851 F:      arch/arm/boot/dts/*am3*
7852 F:      arch/arm/boot/dts/*am4*
7853 F:      arch/arm/boot/dts/*am5*
7854 F:      arch/arm/boot/dts/*dra7*
7855
7856 OMAP CLOCK FRAMEWORK SUPPORT
7857 M:      Paul Walmsley <paul@pwsan.com>
7858 L:      linux-omap@vger.kernel.org
7859 S:      Maintained
7860 F:      arch/arm/*omap*/*clock*
7861
7862 OMAP POWER MANAGEMENT SUPPORT
7863 M:      Kevin Hilman <khilman@deeprootsystems.com>
7864 L:      linux-omap@vger.kernel.org
7865 S:      Maintained
7866 F:      arch/arm/*omap*/*pm*
7867 F:      drivers/cpufreq/omap-cpufreq.c
7868
7869 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
7870 M:      Rajendra Nayak <rnayak@ti.com>
7871 M:      Paul Walmsley <paul@pwsan.com>
7872 L:      linux-omap@vger.kernel.org
7873 S:      Maintained
7874 F:      arch/arm/mach-omap2/prm*
7875
7876 OMAP AUDIO SUPPORT
7877 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
7878 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
7879 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7880 L:      linux-omap@vger.kernel.org
7881 S:      Maintained
7882 F:      sound/soc/omap/
7883
7884 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
7885 M:      Roger Quadros <rogerq@ti.com>
7886 M:      Tony Lindgren <tony@atomide.com>
7887 L:      linux-omap@vger.kernel.org
7888 S:      Maintained
7889 F:      drivers/memory/omap-gpmc.c
7890 F:      arch/arm/mach-omap2/*gpmc*
7891
7892 OMAP FRAMEBUFFER SUPPORT
7893 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
7894 L:      linux-fbdev@vger.kernel.org
7895 L:      linux-omap@vger.kernel.org
7896 S:      Maintained
7897 F:      drivers/video/fbdev/omap/
7898
7899 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
7900 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
7901 L:      linux-omap@vger.kernel.org
7902 L:      linux-fbdev@vger.kernel.org
7903 S:      Maintained
7904 F:      drivers/video/fbdev/omap2/
7905 F:      Documentation/arm/OMAP/DSS
7906
7907 OMAP HARDWARE SPINLOCK SUPPORT
7908 M:      Ohad Ben-Cohen <ohad@wizery.com>
7909 L:      linux-omap@vger.kernel.org
7910 S:      Maintained
7911 F:      drivers/hwspinlock/omap_hwspinlock.c
7912
7913 OMAP MMC SUPPORT
7914 M:      Jarkko Lavinen <jarkko.lavinen@nokia.com>
7915 L:      linux-omap@vger.kernel.org
7916 S:      Maintained
7917 F:      drivers/mmc/host/omap.c
7918
7919 OMAP HS MMC SUPPORT
7920 L:      linux-mmc@vger.kernel.org
7921 L:      linux-omap@vger.kernel.org
7922 S:      Orphan
7923 F:      drivers/mmc/host/omap_hsmmc.c
7924
7925 OMAP RANDOM NUMBER GENERATOR SUPPORT
7926 M:      Deepak Saxena <dsaxena@plexity.net>
7927 S:      Maintained
7928 F:      drivers/char/hw_random/omap-rng.c
7929
7930 OMAP HWMOD SUPPORT
7931 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7932 M:      Paul Walmsley <paul@pwsan.com>
7933 L:      linux-omap@vger.kernel.org
7934 S:      Maintained
7935 F:      arch/arm/mach-omap2/omap_hwmod.*
7936
7937 OMAP HWMOD DATA
7938 M:      Paul Walmsley <paul@pwsan.com>
7939 L:      linux-omap@vger.kernel.org
7940 S:      Maintained
7941 F:      arch/arm/mach-omap2/omap_hwmod*data*
7942
7943 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
7944 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7945 L:      linux-omap@vger.kernel.org
7946 S:      Maintained
7947 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
7948
7949 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
7950 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7951 L:      linux-media@vger.kernel.org
7952 S:      Maintained
7953 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
7954 F:      drivers/media/platform/omap3isp/
7955 F:      drivers/staging/media/omap4iss/
7956
7957 OMAP USB SUPPORT
7958 L:      linux-usb@vger.kernel.org
7959 L:      linux-omap@vger.kernel.org
7960 S:      Orphan
7961 F:      drivers/usb/*/*omap*
7962 F:      arch/arm/*omap*/usb*
7963
7964 OMAP GPIO DRIVER
7965 M:      Grygorii Strashko <grygorii.strashko@ti.com>
7966 M:      Santosh Shilimkar <ssantosh@kernel.org>
7967 M:      Kevin Hilman <khilman@deeprootsystems.com>
7968 L:      linux-omap@vger.kernel.org
7969 S:      Maintained
7970 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
7971 F:      drivers/gpio/gpio-omap.c
7972
7973 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
7974 M:      Mark Jackson <mpfj@newflow.co.uk>
7975 L:      linux-omap@vger.kernel.org
7976 S:      Maintained
7977 F:      arch/arm/boot/dts/am335x-nano.dts
7978
7979 OMFS FILESYSTEM
7980 M:      Bob Copeland <me@bobcopeland.com>
7981 L:      linux-karma-devel@lists.sourceforge.net
7982 S:      Maintained
7983 F:      Documentation/filesystems/omfs.txt
7984 F:      fs/omfs/
7985
7986 OMNIKEY CARDMAN 4000 DRIVER
7987 M:      Harald Welte <laforge@gnumonks.org>
7988 S:      Maintained
7989 F:      drivers/char/pcmcia/cm4000_cs.c
7990 F:      include/linux/cm4000_cs.h
7991 F:      include/uapi/linux/cm4000_cs.h
7992
7993 OMNIKEY CARDMAN 4040 DRIVER
7994 M:      Harald Welte <laforge@gnumonks.org>
7995 S:      Maintained
7996 F:      drivers/char/pcmcia/cm4040_cs.*
7997
7998 OMNIVISION OV7670 SENSOR DRIVER
7999 M:      Jonathan Corbet <corbet@lwn.net>
8000 L:      linux-media@vger.kernel.org
8001 T:      git git://linuxtv.org/media_tree.git
8002 S:      Maintained
8003 F:      drivers/media/i2c/ov7670.c
8004
8005 ONENAND FLASH DRIVER
8006 M:      Kyungmin Park <kyungmin.park@samsung.com>
8007 L:      linux-mtd@lists.infradead.org
8008 S:      Maintained
8009 F:      drivers/mtd/onenand/
8010 F:      include/linux/mtd/onenand*.h
8011
8012 ONSTREAM SCSI TAPE DRIVER
8013 M:      Willem Riede <osst@riede.org>
8014 L:      osst-users@lists.sourceforge.net
8015 L:      linux-scsi@vger.kernel.org
8016 S:      Maintained
8017 F:      Documentation/scsi/osst.txt
8018 F:      drivers/scsi/osst.*
8019 F:      drivers/scsi/osst_*.h
8020 F:      drivers/scsi/st.h
8021
8022 OPENCORES I2C BUS DRIVER
8023 M:      Peter Korsgaard <jacmet@sunsite.dk>
8024 L:      linux-i2c@vger.kernel.org
8025 S:      Maintained
8026 F:      Documentation/i2c/busses/i2c-ocores
8027 F:      drivers/i2c/busses/i2c-ocores.c
8028
8029 OPEN FIRMWARE AND FLATTENED DEVICE TREE
8030 M:      Rob Herring <robh+dt@kernel.org>
8031 M:      Frank Rowand <frowand.list@gmail.com>
8032 M:      Grant Likely <grant.likely@linaro.org>
8033 L:      devicetree@vger.kernel.org
8034 W:      http://www.devicetree.org/
8035 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/glikely/linux.git
8036 S:      Maintained
8037 F:      drivers/of/
8038 F:      include/linux/of*.h
8039 F:      scripts/dtc/
8040
8041 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
8042 M:      Rob Herring <robh+dt@kernel.org>
8043 M:      Pawel Moll <pawel.moll@arm.com>
8044 M:      Mark Rutland <mark.rutland@arm.com>
8045 M:      Ian Campbell <ijc+devicetree@hellion.org.uk>
8046 M:      Kumar Gala <galak@codeaurora.org>
8047 L:      devicetree@vger.kernel.org
8048 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
8049 S:      Maintained
8050 F:      Documentation/devicetree/
8051 F:      arch/*/boot/dts/
8052 F:      include/dt-bindings/
8053
8054 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
8055 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
8056 L:      devicetree@vger.kernel.org
8057 S:      Maintained
8058 F:      Documentation/devicetree/dynamic-resolution-notes.txt
8059 F:      Documentation/devicetree/overlay-notes.txt
8060 F:      drivers/of/overlay.c
8061 F:      drivers/of/resolver.c
8062
8063 OPENRISC ARCHITECTURE
8064 M:      Jonas Bonn <jonas@southpole.se>
8065 W:      http://openrisc.net
8066 L:      linux@lists.openrisc.net (moderated for non-subscribers)
8067 S:      Maintained
8068 T:      git git://openrisc.net/~jonas/linux
8069 F:      arch/openrisc/
8070
8071 OPENVSWITCH
8072 M:      Pravin Shelar <pshelar@nicira.com>
8073 L:      netdev@vger.kernel.org
8074 L:      dev@openvswitch.org
8075 W:      http://openvswitch.org
8076 S:      Maintained
8077 F:      net/openvswitch/
8078 F:      include/uapi/linux/openvswitch.h
8079
8080 OPERATING PERFORMANCE POINTS (OPP)
8081 M:      Viresh Kumar <vireshk@kernel.org>
8082 M:      Nishanth Menon <nm@ti.com>
8083 M:      Stephen Boyd <sboyd@codeaurora.org>
8084 L:      linux-pm@vger.kernel.org
8085 S:      Maintained
8086 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
8087 F:      drivers/base/power/opp/
8088 F:      include/linux/pm_opp.h
8089 F:      Documentation/power/opp.txt
8090 F:      Documentation/devicetree/bindings/opp/
8091
8092 OPL4 DRIVER
8093 M:      Clemens Ladisch <clemens@ladisch.de>
8094 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8095 T:      git git://git.alsa-project.org/alsa-kernel.git
8096 S:      Maintained
8097 F:      sound/drivers/opl4/
8098
8099 OPROFILE
8100 M:      Robert Richter <rric@kernel.org>
8101 L:      oprofile-list@lists.sf.net
8102 S:      Maintained
8103 F:      arch/*/include/asm/oprofile*.h
8104 F:      arch/*/oprofile/
8105 F:      drivers/oprofile/
8106 F:      include/linux/oprofile.h
8107
8108 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
8109 M:      Mark Fasheh <mfasheh@suse.com>
8110 M:      Joel Becker <jlbec@evilplan.org>
8111 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
8112 W:      http://ocfs2.wiki.kernel.org
8113 S:      Supported
8114 F:      Documentation/filesystems/ocfs2.txt
8115 F:      Documentation/filesystems/dlmfs.txt
8116 F:      fs/ocfs2/
8117
8118 ORINOCO DRIVER
8119 L:      linux-wireless@vger.kernel.org
8120 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
8121 W:      http://www.nongnu.org/orinoco/
8122 S:      Orphan
8123 F:      drivers/net/wireless/intersil/orinoco/
8124
8125 OSD LIBRARY and FILESYSTEM
8126 M:      Boaz Harrosh <ooo@electrozaur.com>
8127 M:      Benny Halevy <bhalevy@primarydata.com>
8128 L:      osd-dev@open-osd.org
8129 W:      http://open-osd.org
8130 T:      git git://git.open-osd.org/open-osd.git
8131 S:      Maintained
8132 F:      drivers/scsi/osd/
8133 F:      include/scsi/osd_*
8134 F:      fs/exofs/
8135
8136 OVERLAY FILESYSTEM
8137 M:      Miklos Szeredi <miklos@szeredi.hu>
8138 L:      linux-unionfs@vger.kernel.org
8139 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
8140 S:      Supported
8141 F:      fs/overlayfs/
8142 F:      Documentation/filesystems/overlayfs.txt
8143
8144 P54 WIRELESS DRIVER
8145 M:      Christian Lamparter <chunkeey@googlemail.com>
8146 L:      linux-wireless@vger.kernel.org
8147 W:      http://wireless.kernel.org/en/users/Drivers/p54
8148 S:      Maintained
8149 F:      drivers/net/wireless/intersil/p54/
8150
8151 PA SEMI ETHERNET DRIVER
8152 M:      Olof Johansson <olof@lixom.net>
8153 L:      netdev@vger.kernel.org
8154 S:      Maintained
8155 F:      drivers/net/ethernet/pasemi/*
8156
8157 PA SEMI SMBUS DRIVER
8158 M:      Olof Johansson <olof@lixom.net>
8159 L:      linux-i2c@vger.kernel.org
8160 S:      Maintained
8161 F:      drivers/i2c/busses/i2c-pasemi.c
8162
8163 PADATA PARALLEL EXECUTION MECHANISM
8164 M:      Steffen Klassert <steffen.klassert@secunet.com>
8165 L:      linux-crypto@vger.kernel.org
8166 S:      Maintained
8167 F:      kernel/padata.c
8168 F:      include/linux/padata.h
8169 F:      Documentation/padata.txt
8170
8171 PANASONIC LAPTOP ACPI EXTRAS DRIVER
8172 M:      Harald Welte <laforge@gnumonks.org>
8173 L:      platform-driver-x86@vger.kernel.org
8174 S:      Maintained
8175 F:      drivers/platform/x86/panasonic-laptop.c
8176
8177 PANASONIC MN10300/AM33/AM34 PORT
8178 M:      David Howells <dhowells@redhat.com>
8179 M:      Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
8180 L:      linux-am33-list@redhat.com (moderated for non-subscribers)
8181 W:      ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
8182 S:      Maintained
8183 F:      Documentation/mn10300/
8184 F:      arch/mn10300/
8185
8186 PARALLEL PORT SUBSYSTEM
8187 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
8188 M:      Sudip Mukherjee <sudip@vectorindia.org>
8189 L:      linux-parport@lists.infradead.org (subscribers-only)
8190 S:      Maintained
8191 F:      drivers/parport/
8192 F:      include/linux/parport*.h
8193 F:      drivers/char/ppdev.c
8194 F:      include/uapi/linux/ppdev.h
8195 F:      Documentation/parport*.txt
8196
8197 PARAVIRT_OPS INTERFACE
8198 M:      Jeremy Fitzhardinge <jeremy@goop.org>
8199 M:      Chris Wright <chrisw@sous-sol.org>
8200 M:      Alok Kataria <akataria@vmware.com>
8201 M:      Rusty Russell <rusty@rustcorp.com.au>
8202 L:      virtualization@lists.linux-foundation.org
8203 S:      Supported
8204 F:      Documentation/virtual/paravirt_ops.txt
8205 F:      arch/*/kernel/paravirt*
8206 F:      arch/*/include/asm/paravirt.h
8207
8208 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
8209 M:      Tim Waugh <tim@cyberelk.net>
8210 L:      linux-parport@lists.infradead.org (subscribers-only)
8211 S:      Maintained
8212 F:      Documentation/blockdev/paride.txt
8213 F:      drivers/block/paride/
8214
8215 PARISC ARCHITECTURE
8216 M:      "James E.J. Bottomley" <jejb@parisc-linux.org>
8217 M:      Helge Deller <deller@gmx.de>
8218 L:      linux-parisc@vger.kernel.org
8219 W:      http://www.parisc-linux.org/
8220 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
8221 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
8222 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
8223 S:      Maintained
8224 F:      arch/parisc/
8225 F:      Documentation/parisc/
8226 F:      drivers/parisc/
8227 F:      drivers/char/agp/parisc-agp.c
8228 F:      drivers/input/serio/gscps2.c
8229 F:      drivers/parport/parport_gsc.*
8230 F:      drivers/tty/serial/8250/8250_gsc.c
8231 F:      drivers/video/fbdev/sti*
8232 F:      drivers/video/console/sti*
8233 F:      drivers/video/logo/logo_parisc*
8234
8235 PC87360 HARDWARE MONITORING DRIVER
8236 M:      Jim Cromie <jim.cromie@gmail.com>
8237 L:      lm-sensors@lm-sensors.org
8238 S:      Maintained
8239 F:      Documentation/hwmon/pc87360
8240 F:      drivers/hwmon/pc87360.c
8241
8242 PC8736x GPIO DRIVER
8243 M:      Jim Cromie <jim.cromie@gmail.com>
8244 S:      Maintained
8245 F:      drivers/char/pc8736x_gpio.c
8246
8247 PC87427 HARDWARE MONITORING DRIVER
8248 M:      Jean Delvare <jdelvare@suse.com>
8249 L:      lm-sensors@lm-sensors.org
8250 S:      Maintained
8251 F:      Documentation/hwmon/pc87427
8252 F:      drivers/hwmon/pc87427.c
8253
8254 PCA9532 LED DRIVER
8255 M:      Riku Voipio <riku.voipio@iki.fi>
8256 S:      Maintained
8257 F:      drivers/leds/leds-pca9532.c
8258 F:      include/linux/leds-pca9532.h
8259
8260 PCA9541 I2C BUS MASTER SELECTOR DRIVER
8261 M:      Guenter Roeck <linux@roeck-us.net>
8262 L:      linux-i2c@vger.kernel.org
8263 S:      Maintained
8264 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
8265
8266 PCDP - PRIMARY CONSOLE AND DEBUG PORT
8267 M:      Khalid Aziz <khalid@gonehiking.org>
8268 S:      Maintained
8269 F:      drivers/firmware/pcdp.*
8270
8271 PCI ERROR RECOVERY
8272 M:      Linas Vepstas <linasvepstas@gmail.com>
8273 L:      linux-pci@vger.kernel.org
8274 S:      Supported
8275 F:      Documentation/PCI/pci-error-recovery.txt
8276
8277 PCI SUBSYSTEM
8278 M:      Bjorn Helgaas <bhelgaas@google.com>
8279 L:      linux-pci@vger.kernel.org
8280 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
8281 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
8282 S:      Supported
8283 F:      Documentation/PCI/
8284 F:      drivers/pci/
8285 F:      include/linux/pci*
8286 F:      arch/x86/pci/
8287 F:      arch/x86/kernel/quirks.c
8288
8289 PCI DRIVER FOR ALTERA PCIE IP
8290 M:      Ley Foon Tan <lftan@altera.com>
8291 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
8292 L:      linux-pci@vger.kernel.org
8293 S:      Supported
8294 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
8295 F:      drivers/pci/host/pcie-altera.c
8296
8297 PCI DRIVER FOR ARM VERSATILE PLATFORM
8298 M:      Rob Herring <robh@kernel.org>
8299 L:      linux-pci@vger.kernel.org
8300 L:      linux-arm-kernel@lists.infradead.org
8301 S:      Maintained
8302 F:      Documentation/devicetree/bindings/pci/versatile.txt
8303 F:      drivers/pci/host/pci-versatile.c
8304
8305 PCI DRIVER FOR APPLIEDMICRO XGENE
8306 M:      Tanmay Inamdar <tinamdar@apm.com>
8307 L:      linux-pci@vger.kernel.org
8308 L:      linux-arm-kernel@lists.infradead.org
8309 S:      Maintained
8310 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
8311 F:      drivers/pci/host/pci-xgene.c
8312
8313 PCI DRIVER FOR FREESCALE LAYERSCAPE
8314 M:      Minghuan Lian <minghuan.Lian@freescale.com>
8315 M:      Mingkai Hu <mingkai.hu@freescale.com>
8316 M:      Roy Zang <tie-fei.zang@freescale.com>
8317 L:      linuxppc-dev@lists.ozlabs.org
8318 L:      linux-pci@vger.kernel.org
8319 L:      linux-arm-kernel@lists.infradead.org
8320 S:      Maintained
8321 F:      drivers/pci/host/*layerscape*
8322
8323 PCI DRIVER FOR IMX6
8324 M:      Richard Zhu <Richard.Zhu@freescale.com>
8325 M:      Lucas Stach <l.stach@pengutronix.de>
8326 L:      linux-pci@vger.kernel.org
8327 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8328 S:      Maintained
8329 F:      drivers/pci/host/*imx6*
8330
8331 PCI DRIVER FOR TI KEYSTONE
8332 M:      Murali Karicheri <m-karicheri2@ti.com>
8333 L:      linux-pci@vger.kernel.org
8334 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8335 S:      Maintained
8336 F:      drivers/pci/host/*keystone*
8337
8338 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
8339 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8340 M:      Jason Cooper <jason@lakedaemon.net>
8341 L:      linux-pci@vger.kernel.org
8342 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8343 S:      Maintained
8344 F:      drivers/pci/host/*mvebu*
8345
8346 PCI DRIVER FOR NVIDIA TEGRA
8347 M:      Thierry Reding <thierry.reding@gmail.com>
8348 L:      linux-tegra@vger.kernel.org
8349 L:      linux-pci@vger.kernel.org
8350 S:      Supported
8351 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
8352 F:      drivers/pci/host/pci-tegra.c
8353
8354 PCI DRIVER FOR TI DRA7XX
8355 M:      Kishon Vijay Abraham I <kishon@ti.com>
8356 L:      linux-omap@vger.kernel.org
8357 L:      linux-pci@vger.kernel.org
8358 S:      Supported
8359 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
8360 F:      drivers/pci/host/pci-dra7xx.c
8361
8362 PCI DRIVER FOR RENESAS R-CAR
8363 M:      Simon Horman <horms@verge.net.au>
8364 L:      linux-pci@vger.kernel.org
8365 L:      linux-renesas-soc@vger.kernel.org
8366 S:      Maintained
8367 F:      drivers/pci/host/*rcar*
8368
8369 PCI DRIVER FOR SAMSUNG EXYNOS
8370 M:      Jingoo Han <jingoohan1@gmail.com>
8371 L:      linux-pci@vger.kernel.org
8372 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8373 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8374 S:      Maintained
8375 F:      drivers/pci/host/pci-exynos.c
8376
8377 PCI DRIVER FOR SYNOPSIS DESIGNWARE
8378 M:      Jingoo Han <jingoohan1@gmail.com>
8379 M:      Pratyush Anand <pratyush.anand@gmail.com>
8380 L:      linux-pci@vger.kernel.org
8381 S:      Maintained
8382 F:      drivers/pci/host/*designware*
8383
8384 PCI DRIVER FOR GENERIC OF HOSTS
8385 M:      Will Deacon <will.deacon@arm.com>
8386 L:      linux-pci@vger.kernel.org
8387 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8388 S:      Maintained
8389 F:      Documentation/devicetree/bindings/pci/host-generic-pci.txt
8390 F:      drivers/pci/host/pci-host-generic.c
8391
8392 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
8393 M:      Keith Busch <keith.busch@intel.com>
8394 L:      linux-pci@vger.kernel.org
8395 S:      Supported
8396 F:      arch/x86/pci/vmd.c
8397
8398 PCIE DRIVER FOR ST SPEAR13XX
8399 M:      Pratyush Anand <pratyush.anand@gmail.com>
8400 L:      linux-pci@vger.kernel.org
8401 S:      Maintained
8402 F:      drivers/pci/host/*spear*
8403
8404 PCI MSI DRIVER FOR ALTERA MSI IP
8405 M:      Ley Foon Tan <lftan@altera.com>
8406 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
8407 L:      linux-pci@vger.kernel.org
8408 S:      Supported
8409 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
8410 F:      drivers/pci/host/pcie-altera-msi.c
8411
8412 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
8413 M:      Duc Dang <dhdang@apm.com>
8414 L:      linux-pci@vger.kernel.org
8415 L:      linux-arm-kernel@lists.infradead.org
8416 S:      Maintained
8417 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
8418 F:      drivers/pci/host/pci-xgene-msi.c
8419
8420 PCIE DRIVER FOR HISILICON
8421 M:      Zhou Wang <wangzhou1@hisilicon.com>
8422 M:      Gabriele Paoloni <gabriele.paoloni@huawei.com>
8423 L:      linux-pci@vger.kernel.org
8424 S:      Maintained
8425 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
8426 F:      drivers/pci/host/pcie-hisi.c
8427
8428 PCIE DRIVER FOR QUALCOMM MSM
8429 M:     Stanimir Varbanov <svarbanov@mm-sol.com>
8430 L:     linux-pci@vger.kernel.org
8431 L:     linux-arm-msm@vger.kernel.org
8432 S:     Maintained
8433 F:     drivers/pci/host/*qcom*
8434
8435 PCMCIA SUBSYSTEM
8436 P:      Linux PCMCIA Team
8437 L:      linux-pcmcia@lists.infradead.org
8438 W:      http://lists.infradead.org/mailman/listinfo/linux-pcmcia
8439 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
8440 S:      Maintained
8441 F:      Documentation/pcmcia/
8442 F:      drivers/pcmcia/
8443 F:      include/pcmcia/
8444
8445 PCNET32 NETWORK DRIVER
8446 M:      Don Fry <pcnet32@frontier.com>
8447 L:      netdev@vger.kernel.org
8448 S:      Maintained
8449 F:      drivers/net/ethernet/amd/pcnet32.c
8450
8451 PCRYPT PARALLEL CRYPTO ENGINE
8452 M:      Steffen Klassert <steffen.klassert@secunet.com>
8453 L:      linux-crypto@vger.kernel.org
8454 S:      Maintained
8455 F:      crypto/pcrypt.c
8456 F:      include/crypto/pcrypt.h
8457
8458 PER-CPU MEMORY ALLOCATOR
8459 M:      Tejun Heo <tj@kernel.org>
8460 M:      Christoph Lameter <cl@linux-foundation.org>
8461 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
8462 S:      Maintained
8463 F:      include/linux/percpu*.h
8464 F:      mm/percpu*.c
8465 F:      arch/*/include/asm/percpu.h
8466
8467 PER-TASK DELAY ACCOUNTING
8468 M:      Balbir Singh <bsingharora@gmail.com>
8469 S:      Maintained
8470 F:      include/linux/delayacct.h
8471 F:      kernel/delayacct.c
8472
8473 PERFORMANCE EVENTS SUBSYSTEM
8474 M:      Peter Zijlstra <peterz@infradead.org>
8475 M:      Ingo Molnar <mingo@redhat.com>
8476 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
8477 L:      linux-kernel@vger.kernel.org
8478 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
8479 S:      Supported
8480 F:      kernel/events/*
8481 F:      include/linux/perf_event.h
8482 F:      include/uapi/linux/perf_event.h
8483 F:      arch/*/kernel/perf_event*.c
8484 F:      arch/*/kernel/*/perf_event*.c
8485 F:      arch/*/kernel/*/*/perf_event*.c
8486 F:      arch/*/include/asm/perf_event.h
8487 F:      arch/*/kernel/perf_callchain.c
8488 F:      tools/perf/
8489
8490 PERSONALITY HANDLING
8491 M:      Christoph Hellwig <hch@infradead.org>
8492 L:      linux-abi-devel@lists.sourceforge.net
8493 S:      Maintained
8494 F:      include/linux/personality.h
8495 F:      include/uapi/linux/personality.h
8496
8497 PHONET PROTOCOL
8498 M:      Remi Denis-Courmont <courmisch@gmail.com>
8499 S:      Supported
8500 F:      Documentation/networking/phonet.txt
8501 F:      include/linux/phonet.h
8502 F:      include/net/phonet/
8503 F:      include/uapi/linux/phonet.h
8504 F:      net/phonet/
8505
8506 PHRAM MTD DRIVER
8507 M:      Joern Engel <joern@lazybastard.org>
8508 L:      linux-mtd@lists.infradead.org
8509 S:      Maintained
8510 F:      drivers/mtd/devices/phram.c
8511
8512 PICOLCD HID DRIVER
8513 M:      Bruno PrĂ©mont <bonbons@linux-vserver.org>
8514 L:      linux-input@vger.kernel.org
8515 S:      Maintained
8516 F:      drivers/hid/hid-picolcd*
8517
8518 PICOXCELL SUPPORT
8519 M:      Jamie Iles <jamie@jamieiles.com>
8520 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8521 T:      git git://github.com/jamieiles/linux-2.6-ji.git
8522 S:      Supported
8523 F:      arch/arm/boot/dts/picoxcell*
8524 F:      arch/arm/mach-picoxcell/
8525 F:      drivers/crypto/picoxcell*
8526
8527 PIN CONTROL SUBSYSTEM
8528 M:      Linus Walleij <linus.walleij@linaro.org>
8529 L:      linux-gpio@vger.kernel.org
8530 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
8531 S:      Maintained
8532 F:      drivers/pinctrl/
8533 F:      include/linux/pinctrl/
8534
8535 PIN CONTROLLER - ATMEL AT91
8536 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
8537 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8538 S:      Maintained
8539 F:      drivers/pinctrl/pinctrl-at91.*
8540
8541 PIN CONTROLLER - ATMEL AT91 PIO4
8542 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
8543 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8544 L:      linux-gpio@vger.kernel.org
8545 S:      Supported
8546 F:      drivers/pinctrl/pinctrl-at91-pio4.*
8547
8548 PIN CONTROLLER - INTEL
8549 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8550 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
8551 S:      Maintained
8552 F:      drivers/pinctrl/intel/
8553
8554 PIN CONTROLLER - RENESAS
8555 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8556 M:      Geert Uytterhoeven <geert+renesas@glider.be>
8557 L:      linux-renesas-soc@vger.kernel.org
8558 S:      Maintained
8559 F:      drivers/pinctrl/sh-pfc/
8560
8561 PIN CONTROLLER - SAMSUNG
8562 M:      Tomasz Figa <tomasz.figa@gmail.com>
8563 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8564 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8565 S:      Maintained
8566 F:      drivers/pinctrl/samsung/
8567
8568 PIN CONTROLLER - SINGLE
8569 M:      Tony Lindgren <tony@atomide.com>
8570 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
8571 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8572 L:      linux-omap@vger.kernel.org
8573 S:      Maintained
8574 F:      drivers/pinctrl/pinctrl-single.c
8575
8576 PIN CONTROLLER - ST SPEAR
8577 M:      Viresh Kumar <vireshk@kernel.org>
8578 L:      spear-devel@list.st.com
8579 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8580 W:      http://www.st.com/spear
8581 S:      Maintained
8582 F:      drivers/pinctrl/spear/
8583
8584 PKTCDVD DRIVER
8585 M:      Jiri Kosina <jikos@kernel.org>
8586 S:      Maintained
8587 F:      drivers/block/pktcdvd.c
8588 F:      include/linux/pktcdvd.h
8589 F:      include/uapi/linux/pktcdvd.h
8590
8591 PKUNITY SOC DRIVERS
8592 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
8593 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
8594 S:      Maintained
8595 T:      git git://github.com/gxt/linux.git
8596 F:      drivers/input/serio/i8042-unicore32io.h
8597 F:      drivers/i2c/busses/i2c-puv3.c
8598 F:      drivers/video/fbdev/fb-puv3.c
8599 F:      drivers/rtc/rtc-puv3.c
8600
8601 PMBUS HARDWARE MONITORING DRIVERS
8602 M:      Guenter Roeck <linux@roeck-us.net>
8603 L:      lm-sensors@lm-sensors.org
8604 W:      http://www.lm-sensors.org/
8605 W:      http://www.roeck-us.net/linux/drivers/
8606 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8607 S:      Maintained
8608 F:      Documentation/hwmon/pmbus
8609 F:      drivers/hwmon/pmbus/
8610 F:      include/linux/i2c/pmbus.h
8611
8612 PMC SIERRA MaxRAID DRIVER
8613 L:      linux-scsi@vger.kernel.org
8614 W:      http://www.pmc-sierra.com/
8615 S:      Orphan
8616 F:      drivers/scsi/pmcraid.*
8617
8618 PMC SIERRA PM8001 DRIVER
8619 M:      Jack Wang <jinpu.wang@profitbricks.com>
8620 M:      lindar_liu@usish.com
8621 L:      pmchba@pmcs.com
8622 L:      linux-scsi@vger.kernel.org
8623 S:      Supported
8624 F:      drivers/scsi/pm8001/
8625
8626 POSIX CLOCKS and TIMERS
8627 M:      Thomas Gleixner <tglx@linutronix.de>
8628 L:      linux-kernel@vger.kernel.org
8629 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8630 S:      Maintained
8631 F:      fs/timerfd.c
8632 F:      include/linux/timer*
8633 F:      kernel/time/*timer*
8634
8635 POWER MANAGEMENT CORE
8636 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
8637 L:      linux-pm@vger.kernel.org
8638 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
8639 S:      Supported
8640 F:      drivers/base/power/
8641 F:      include/linux/pm.h
8642 F:      include/linux/pm_*
8643 F:      include/linux/powercap.h
8644 F:      drivers/powercap/
8645
8646 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
8647 M:      Sebastian Reichel <sre@kernel.org>
8648 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
8649 M:      David Woodhouse <dwmw2@infradead.org>
8650 L:      linux-pm@vger.kernel.org
8651 T:      git git://git.infradead.org/battery-2.6.git
8652 S:      Maintained
8653 F:      include/linux/power_supply.h
8654 F:      drivers/power/
8655 X:      drivers/power/avs/
8656
8657 POWER STATE COORDINATION INTERFACE (PSCI)
8658 M:      Mark Rutland <mark.rutland@arm.com>
8659 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
8660 L:      linux-arm-kernel@lists.infradead.org
8661 S:      Maintained
8662 F:      drivers/firmware/psci.c
8663 F:      include/linux/psci.h
8664 F:      include/uapi/linux/psci.h
8665
8666 PNP SUPPORT
8667 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
8668 S:      Maintained
8669 F:      drivers/pnp/
8670
8671 PPP PROTOCOL DRIVERS AND COMPRESSORS
8672 M:      Paul Mackerras <paulus@samba.org>
8673 L:      linux-ppp@vger.kernel.org
8674 S:      Maintained
8675 F:      drivers/net/ppp/ppp_*
8676
8677 PPP OVER ATM (RFC 2364)
8678 M:      Mitchell Blank Jr <mitch@sfgoth.com>
8679 S:      Maintained
8680 F:      net/atm/pppoatm.c
8681 F:      include/uapi/linux/atmppp.h
8682
8683 PPP OVER ETHERNET
8684 M:      Michal Ostrowski <mostrows@earthlink.net>
8685 S:      Maintained
8686 F:      drivers/net/ppp/pppoe.c
8687 F:      drivers/net/ppp/pppox.c
8688
8689 PPP OVER L2TP
8690 M:      James Chapman <jchapman@katalix.com>
8691 S:      Maintained
8692 F:      net/l2tp/l2tp_ppp.c
8693 F:      include/linux/if_pppol2tp.h
8694 F:      include/uapi/linux/if_pppol2tp.h
8695
8696 PPS SUPPORT
8697 M:      Rodolfo Giometti <giometti@enneenne.com>
8698 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
8699 L:      linuxpps@ml.enneenne.com (subscribers-only)
8700 S:      Maintained
8701 F:      Documentation/pps/
8702 F:      drivers/pps/
8703 F:      include/linux/pps*.h
8704
8705 PPTP DRIVER
8706 M:      Dmitry Kozlov <xeb@mail.ru>
8707 L:      netdev@vger.kernel.org
8708 S:      Maintained
8709 F:      drivers/net/ppp/pptp.c
8710 W:      http://sourceforge.net/projects/accel-pptp
8711
8712 PREEMPTIBLE KERNEL
8713 M:      Robert Love <rml@tech9.net>
8714 L:      kpreempt-tech@lists.sourceforge.net
8715 W:      ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
8716 S:      Supported
8717 F:      Documentation/preempt-locking.txt
8718 F:      include/linux/preempt.h
8719
8720 PRISM54 WIRELESS DRIVER
8721 M:      "Luis R. Rodriguez" <mcgrof@gmail.com>
8722 L:      linux-wireless@vger.kernel.org
8723 W:      http://wireless.kernel.org/en/users/Drivers/p54
8724 S:      Obsolete
8725 F:      drivers/net/wireless/intersil/prism54/
8726
8727 PS3 NETWORK SUPPORT
8728 M:      Geoff Levand <geoff@infradead.org>
8729 L:      netdev@vger.kernel.org
8730 L:      linuxppc-dev@lists.ozlabs.org
8731 S:      Maintained
8732 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
8733
8734 PS3 PLATFORM SUPPORT
8735 M:      Geoff Levand <geoff@infradead.org>
8736 L:      linuxppc-dev@lists.ozlabs.org
8737 S:      Maintained
8738 F:      arch/powerpc/boot/ps3*
8739 F:      arch/powerpc/include/asm/lv1call.h
8740 F:      arch/powerpc/include/asm/ps3*.h
8741 F:      arch/powerpc/platforms/ps3/
8742 F:      drivers/*/ps3*
8743 F:      drivers/ps3/
8744 F:      drivers/rtc/rtc-ps3.c
8745 F:      drivers/usb/host/*ps3.c
8746 F:      sound/ppc/snd_ps3*
8747
8748 PS3VRAM DRIVER
8749 M:      Jim Paris <jim@jtan.com>
8750 M:      Geoff Levand <geoff@infradead.org>
8751 L:      linuxppc-dev@lists.ozlabs.org
8752 S:      Maintained
8753 F:      drivers/block/ps3vram.c
8754
8755 PSTORE FILESYSTEM
8756 M:      Anton Vorontsov <anton@enomsg.org>
8757 M:      Colin Cross <ccross@android.com>
8758 M:      Kees Cook <keescook@chromium.org>
8759 M:      Tony Luck <tony.luck@intel.com>
8760 S:      Maintained
8761 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
8762 F:      fs/pstore/
8763 F:      include/linux/pstore*
8764 F:      drivers/firmware/efi/efi-pstore.c
8765 F:      drivers/acpi/apei/erst.c
8766
8767 PTP HARDWARE CLOCK SUPPORT
8768 M:      Richard Cochran <richardcochran@gmail.com>
8769 L:      netdev@vger.kernel.org
8770 S:      Maintained
8771 W:      http://linuxptp.sourceforge.net/
8772 F:      Documentation/ABI/testing/sysfs-ptp
8773 F:      Documentation/ptp/*
8774 F:      drivers/net/ethernet/freescale/gianfar_ptp.c
8775 F:      drivers/net/phy/dp83640*
8776 F:      drivers/ptp/*
8777 F:      include/linux/ptp_cl*
8778
8779 PTRACE SUPPORT
8780 M:      Roland McGrath <roland@hack.frob.com>
8781 M:      Oleg Nesterov <oleg@redhat.com>
8782 S:      Maintained
8783 F:      include/asm-generic/syscall.h
8784 F:      include/linux/ptrace.h
8785 F:      include/linux/regset.h
8786 F:      include/linux/tracehook.h
8787 F:      include/uapi/linux/ptrace.h
8788 F:      kernel/ptrace.c
8789
8790 PVRUSB2 VIDEO4LINUX DRIVER
8791 M:      Mike Isely <isely@pobox.com>
8792 L:      pvrusb2@isely.net       (subscribers-only)
8793 L:      linux-media@vger.kernel.org
8794 W:      http://www.isely.net/pvrusb2/
8795 T:      git git://linuxtv.org/media_tree.git
8796 S:      Maintained
8797 F:      Documentation/video4linux/README.pvrusb2
8798 F:      drivers/media/usb/pvrusb2/
8799
8800 PWC WEBCAM DRIVER
8801 M:      Hans de Goede <hdegoede@redhat.com>
8802 L:      linux-media@vger.kernel.org
8803 T:      git git://linuxtv.org/media_tree.git
8804 S:      Maintained
8805 F:      drivers/media/usb/pwc/*
8806
8807 PWM FAN DRIVER
8808 M:      Kamil Debski <k.debski@samsung.com>
8809 L:      lm-sensors@lm-sensors.org
8810 S:      Supported
8811 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
8812 F:      Documentation/hwmon/pwm-fan
8813 F:      drivers/hwmon/pwm-fan.c
8814
8815 PWM SUBSYSTEM
8816 M:      Thierry Reding <thierry.reding@gmail.com>
8817 L:      linux-pwm@vger.kernel.org
8818 S:      Maintained
8819 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
8820 F:      Documentation/pwm.txt
8821 F:      Documentation/devicetree/bindings/pwm/
8822 F:      include/linux/pwm.h
8823 F:      drivers/pwm/
8824 F:      drivers/video/backlight/pwm_bl.c
8825 F:      include/linux/pwm_backlight.h
8826
8827 PXA2xx/PXA3xx SUPPORT
8828 M:      Daniel Mack <daniel@zonque.org>
8829 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
8830 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8831 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8832 T:      git git://github.com/hzhuang1/linux.git
8833 T:      git git://github.com/rjarzmik/linux.git
8834 S:      Maintained
8835 F:      arch/arm/boot/dts/pxa*
8836 F:      arch/arm/mach-pxa/
8837 F:      drivers/dma/pxa*
8838 F:      drivers/pcmcia/pxa2xx*
8839 F:      drivers/pinctrl/pxa/
8840 F:      drivers/spi/spi-pxa2xx*
8841 F:      drivers/usb/gadget/udc/pxa2*
8842 F:      include/sound/pxa2xx-lib.h
8843 F:      sound/arm/pxa*
8844 F:      sound/soc/pxa/
8845
8846 PXA GPIO DRIVER
8847 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8848 L:      linux-gpio@vger.kernel.org
8849 S:      Maintained
8850 F:      drivers/gpio/gpio-pxa.c
8851
8852 PXA3xx NAND FLASH DRIVER
8853 M:      Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
8854 L:      linux-mtd@lists.infradead.org
8855 S:      Maintained
8856 F:      drivers/mtd/nand/pxa3xx_nand.c
8857
8858 MMP SUPPORT
8859 M:      Eric Miao <eric.y.miao@gmail.com>
8860 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
8861 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8862 T:      git git://github.com/hzhuang1/linux.git
8863 T:      git git://git.linaro.org/people/ycmiao/pxa-linux.git
8864 S:      Maintained
8865 F:      arch/arm/boot/dts/mmp*
8866 F:      arch/arm/mach-mmp/
8867
8868 PXA MMCI DRIVER
8869 S:      Orphan
8870
8871 PXA RTC DRIVER
8872 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8873 L:      rtc-linux@googlegroups.com
8874 S:      Maintained
8875
8876 QAT DRIVER
8877 M:      Tadeusz Struk <tadeusz.struk@intel.com>
8878 L:      qat-linux@intel.com
8879 S:      Supported
8880 F:      drivers/crypto/qat/
8881
8882 QIB DRIVER
8883 M:      Mike Marciniszyn <infinipath@intel.com>
8884 L:      linux-rdma@vger.kernel.org
8885 S:      Supported
8886 F:      drivers/infiniband/hw/qib/
8887
8888 QLOGIC QLA1280 SCSI DRIVER
8889 M:      Michael Reed <mdr@sgi.com>
8890 L:      linux-scsi@vger.kernel.org
8891 S:      Maintained
8892 F:      drivers/scsi/qla1280.[ch]
8893
8894 QLOGIC QLA2XXX FC-SCSI DRIVER
8895 M:      qla2xxx-upstream@qlogic.com
8896 L:      linux-scsi@vger.kernel.org
8897 S:      Supported
8898 F:      Documentation/scsi/LICENSE.qla2xxx
8899 F:      drivers/scsi/qla2xxx/
8900
8901 QLOGIC QLA4XXX iSCSI DRIVER
8902 M:      QLogic-Storage-Upstream@qlogic.com
8903 L:      linux-scsi@vger.kernel.org
8904 S:      Supported
8905 F:      Documentation/scsi/LICENSE.qla4xxx
8906 F:      drivers/scsi/qla4xxx/
8907
8908 QLOGIC QLA3XXX NETWORK DRIVER
8909 M:      Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
8910 M:      Ron Mercer <ron.mercer@qlogic.com>
8911 M:      linux-driver@qlogic.com
8912 L:      netdev@vger.kernel.org
8913 S:      Supported
8914 F:      Documentation/networking/LICENSE.qla3xxx
8915 F:      drivers/net/ethernet/qlogic/qla3xxx.*
8916
8917 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
8918 M:      Dept-GELinuxNICDev@qlogic.com
8919 L:      netdev@vger.kernel.org
8920 S:      Supported
8921 F:      drivers/net/ethernet/qlogic/qlcnic/
8922
8923 QLOGIC QLGE 10Gb ETHERNET DRIVER
8924 M:      Harish Patil <harish.patil@qlogic.com>
8925 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
8926 M:      Dept-GELinuxNICDev@qlogic.com
8927 M:      linux-driver@qlogic.com
8928 L:      netdev@vger.kernel.org
8929 S:      Supported
8930 F:      drivers/net/ethernet/qlogic/qlge/
8931
8932 QLOGIC QL4xxx ETHERNET DRIVER
8933 M:      Yuval Mintz <Yuval.Mintz@qlogic.com>
8934 M:      Ariel Elior <Ariel.Elior@qlogic.com>
8935 M:      everest-linux-l2@qlogic.com
8936 L:      netdev@vger.kernel.org
8937 S:      Supported
8938 F:      drivers/net/ethernet/qlogic/qed/
8939 F:      include/linux/qed/
8940 F:      drivers/net/ethernet/qlogic/qede/
8941
8942 QNX4 FILESYSTEM
8943 M:      Anders Larsen <al@alarsen.net>
8944 W:      http://www.alarsen.net/linux/qnx4fs/
8945 S:      Maintained
8946 F:      fs/qnx4/
8947 F:      include/uapi/linux/qnx4_fs.h
8948 F:      include/uapi/linux/qnxtypes.h
8949
8950 QT1010 MEDIA DRIVER
8951 M:      Antti Palosaari <crope@iki.fi>
8952 L:      linux-media@vger.kernel.org
8953 W:      https://linuxtv.org
8954 W:      http://palosaari.fi/linux/
8955 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8956 T:      git git://linuxtv.org/anttip/media_tree.git
8957 S:      Maintained
8958 F:      drivers/media/tuners/qt1010*
8959
8960 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
8961 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
8962 L:      linux-wireless@vger.kernel.org
8963 L:      ath9k-devel@lists.ath9k.org
8964 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
8965 S:      Supported
8966 F:      drivers/net/wireless/ath/ath9k/
8967
8968 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
8969 M:      Kalle Valo <kvalo@qca.qualcomm.com>
8970 L:      ath10k@lists.infradead.org
8971 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
8972 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
8973 S:      Supported
8974 F:      drivers/net/wireless/ath/ath10k/
8975
8976 QUALCOMM HEXAGON ARCHITECTURE
8977 M:      Richard Kuo <rkuo@codeaurora.org>
8978 L:      linux-hexagon@vger.kernel.org
8979 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rkuo/linux-hexagon-kernel.git
8980 S:      Supported
8981 F:      arch/hexagon/
8982
8983 QUALCOMM WCN36XX WIRELESS DRIVER
8984 M:      Eugene Krasnikov <k.eugene.e@gmail.com>
8985 L:      wcn36xx@lists.infradead.org
8986 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
8987 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
8988 S:      Supported
8989 F:      drivers/net/wireless/ath/wcn36xx/
8990
8991 RADOS BLOCK DEVICE (RBD)
8992 M:      Ilya Dryomov <idryomov@gmail.com>
8993 M:      Sage Weil <sage@redhat.com>
8994 M:      Alex Elder <elder@kernel.org>
8995 L:      ceph-devel@vger.kernel.org
8996 W:      http://ceph.com/
8997 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
8998 T:      git git://github.com/ceph/ceph-client.git
8999 S:      Supported
9000 F:      Documentation/ABI/testing/sysfs-bus-rbd
9001 F:      drivers/block/rbd.c
9002 F:      drivers/block/rbd_types.h
9003
9004 RADEON FRAMEBUFFER DISPLAY DRIVER
9005 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
9006 L:      linux-fbdev@vger.kernel.org
9007 S:      Maintained
9008 F:      drivers/video/fbdev/aty/radeon*
9009 F:      include/uapi/linux/radeonfb.h
9010
9011 RADIOSHARK RADIO DRIVER
9012 M:      Hans de Goede <hdegoede@redhat.com>
9013 L:      linux-media@vger.kernel.org
9014 T:      git git://linuxtv.org/media_tree.git
9015 S:      Maintained
9016 F:      drivers/media/radio/radio-shark.c
9017
9018 RADIOSHARK2 RADIO DRIVER
9019 M:      Hans de Goede <hdegoede@redhat.com>
9020 L:      linux-media@vger.kernel.org
9021 T:      git git://linuxtv.org/media_tree.git
9022 S:      Maintained
9023 F:      drivers/media/radio/radio-shark2.c
9024 F:      drivers/media/radio/radio-tea5777.c
9025
9026 RAGE128 FRAMEBUFFER DISPLAY DRIVER
9027 M:      Paul Mackerras <paulus@samba.org>
9028 L:      linux-fbdev@vger.kernel.org
9029 S:      Maintained
9030 F:      drivers/video/fbdev/aty/aty128fb.c
9031
9032 RALINK MIPS ARCHITECTURE
9033 M:      John Crispin <blogic@openwrt.org>
9034 L:      linux-mips@linux-mips.org
9035 S:      Maintained
9036 F:      arch/mips/ralink
9037
9038 RALINK RT2X00 WIRELESS LAN DRIVER
9039 P:      rt2x00 project
9040 M:      Stanislaw Gruszka <sgruszka@redhat.com>
9041 M:      Helmut Schaa <helmut.schaa@googlemail.com>
9042 L:      linux-wireless@vger.kernel.org
9043 S:      Maintained
9044 F:      drivers/net/wireless/ralink/rt2x00/
9045
9046 RAMDISK RAM BLOCK DEVICE DRIVER
9047 M:      Jens Axboe <axboe@kernel.dk>
9048 S:      Maintained
9049 F:      Documentation/blockdev/ramdisk.txt
9050 F:      drivers/block/brd.c
9051
9052 RANDOM NUMBER DRIVER
9053 M:      "Theodore Ts'o" <tytso@mit.edu>
9054 S:      Maintained
9055 F:      drivers/char/random.c
9056
9057 RAPIDIO SUBSYSTEM
9058 M:      Matt Porter <mporter@kernel.crashing.org>
9059 M:      Alexandre Bounine <alexandre.bounine@idt.com>
9060 S:      Maintained
9061 F:      drivers/rapidio/
9062
9063 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
9064 L:      linux-wireless@vger.kernel.org
9065 S:      Orphan
9066 F:      drivers/net/wireless/ray*
9067
9068 RCUTORTURE MODULE
9069 M:      Josh Triplett <josh@joshtriplett.org>
9070 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9071 L:      linux-kernel@vger.kernel.org
9072 S:      Supported
9073 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9074 F:      Documentation/RCU/torture.txt
9075 F:      kernel/rcu/rcutorture.c
9076
9077 RCUTORTURE TEST FRAMEWORK
9078 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9079 M:      Josh Triplett <josh@joshtriplett.org>
9080 R:      Steven Rostedt <rostedt@goodmis.org>
9081 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9082 R:      Lai Jiangshan <jiangshanlai@gmail.com>
9083 L:      linux-kernel@vger.kernel.org
9084 S:      Supported
9085 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9086 F:      tools/testing/selftests/rcutorture
9087
9088 RDC R-321X SoC
9089 M:      Florian Fainelli <florian@openwrt.org>
9090 S:      Maintained
9091
9092 RDC R6040 FAST ETHERNET DRIVER
9093 M:      Florian Fainelli <florian@openwrt.org>
9094 L:      netdev@vger.kernel.org
9095 S:      Maintained
9096 F:      drivers/net/ethernet/rdc/r6040.c
9097
9098 RDS - RELIABLE DATAGRAM SOCKETS
9099 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
9100 L:      netdev@vger.kernel.org
9101 L:      linux-rdma@vger.kernel.org
9102 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
9103 W:      https://oss.oracle.com/projects/rds/
9104 S:      Supported
9105 F:      net/rds/
9106 F:      Documentation/networking/rds.txt
9107
9108 READ-COPY UPDATE (RCU)
9109 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9110 M:      Josh Triplett <josh@joshtriplett.org>
9111 R:      Steven Rostedt <rostedt@goodmis.org>
9112 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9113 R:      Lai Jiangshan <jiangshanlai@gmail.com>
9114 L:      linux-kernel@vger.kernel.org
9115 W:      http://www.rdrop.com/users/paulmck/RCU/
9116 S:      Supported
9117 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9118 F:      Documentation/RCU/
9119 X:      Documentation/RCU/torture.txt
9120 F:      include/linux/rcu*
9121 X:      include/linux/srcu.h
9122 F:      kernel/rcu/
9123 X:      kernel/torture.c
9124
9125 REAL TIME CLOCK (RTC) SUBSYSTEM
9126 M:      Alessandro Zummo <a.zummo@towertech.it>
9127 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
9128 L:      rtc-linux@googlegroups.com
9129 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
9130 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
9131 S:      Maintained
9132 F:      Documentation/rtc.txt
9133 F:      drivers/rtc/
9134 F:      include/linux/rtc.h
9135 F:      include/uapi/linux/rtc.h
9136
9137 REALTEK AUDIO CODECS
9138 M:      Bard Liao <bardliao@realtek.com>
9139 M:      Oder Chiou <oder_chiou@realtek.com>
9140 S:      Maintained
9141 F:      sound/soc/codecs/rt*
9142 F:      include/sound/rt*.h
9143
9144 REISERFS FILE SYSTEM
9145 L:      reiserfs-devel@vger.kernel.org
9146 S:      Supported
9147 F:      fs/reiserfs/
9148
9149 REGISTER MAP ABSTRACTION
9150 M:      Mark Brown <broonie@kernel.org>
9151 L:      linux-kernel@vger.kernel.org
9152 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
9153 S:      Supported
9154 F:      drivers/base/regmap/
9155 F:      include/linux/regmap.h
9156
9157 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
9158 M:      Ohad Ben-Cohen <ohad@wizery.com>
9159 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
9160 S:      Maintained
9161 F:      drivers/remoteproc/
9162 F:      Documentation/remoteproc.txt
9163 F:      include/linux/remoteproc.h
9164
9165 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
9166 M:      Ohad Ben-Cohen <ohad@wizery.com>
9167 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
9168 S:      Maintained
9169 F:      drivers/rpmsg/
9170 F:      Documentation/rpmsg.txt
9171 F:      include/linux/rpmsg.h
9172
9173 RENESAS ETHERNET DRIVERS
9174 R:      Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
9175 L:      netdev@vger.kernel.org
9176 L:      linux-renesas-soc@vger.kernel.org
9177 F:      drivers/net/ethernet/renesas/
9178 F:      include/linux/sh_eth.h
9179
9180 RENESAS USB2 PHY DRIVER
9181 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
9182 L:      linux-renesas-soc@vger.kernel.org
9183 S:      Maintained
9184 F:      drivers/phy/phy-rcar-gen3-usb2.c
9185
9186 RESET CONTROLLER FRAMEWORK
9187 M:      Philipp Zabel <p.zabel@pengutronix.de>
9188 T:      git git://git.pengutronix.de/git/pza/linux
9189 S:      Maintained
9190 F:      drivers/reset/
9191 F:      Documentation/devicetree/bindings/reset/
9192 F:      include/dt-bindings/reset/
9193 F:      include/linux/reset.h
9194 F:      include/linux/reset-controller.h
9195
9196 RFKILL
9197 M:      Johannes Berg <johannes@sipsolutions.net>
9198 L:      linux-wireless@vger.kernel.org
9199 W:      http://wireless.kernel.org/
9200 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
9201 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
9202 S:      Maintained
9203 F:      Documentation/rfkill.txt
9204 F:      net/rfkill/
9205
9206 RHASHTABLE
9207 M:      Thomas Graf <tgraf@suug.ch>
9208 L:      netdev@vger.kernel.org
9209 S:      Maintained
9210 F:      lib/rhashtable.c
9211 F:      include/linux/rhashtable.h
9212
9213 RICOH SMARTMEDIA/XD DRIVER
9214 M:      Maxim Levitsky <maximlevitsky@gmail.com>
9215 S:      Maintained
9216 F:      drivers/mtd/nand/r852.c
9217 F:      drivers/mtd/nand/r852.h
9218
9219 RICOH R5C592 MEMORYSTICK DRIVER
9220 M:      Maxim Levitsky <maximlevitsky@gmail.com>
9221 S:      Maintained
9222 F:      drivers/memstick/host/r592.*
9223
9224 ROCCAT DRIVERS
9225 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
9226 W:      http://sourceforge.net/projects/roccat/
9227 S:      Maintained
9228 F:      drivers/hid/hid-roccat*
9229 F:      include/linux/hid-roccat*
9230 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
9231
9232 ROCKER DRIVER
9233 M:      Jiri Pirko <jiri@resnulli.us>
9234 M:      Scott Feldman <sfeldma@gmail.com>
9235 L:      netdev@vger.kernel.org
9236 S:      Supported
9237 F:      drivers/net/ethernet/rocker/
9238
9239 ROCKETPORT DRIVER
9240 P:      Comtrol Corp.
9241 W:      http://www.comtrol.com
9242 S:      Maintained
9243 F:      Documentation/serial/rocket.txt
9244 F:      drivers/tty/rocket*
9245
9246 ROCKETPORT EXPRESS/INFINITY DRIVER
9247 M:      Kevin Cernekee <cernekee@gmail.com>
9248 L:      linux-serial@vger.kernel.org
9249 S:      Odd Fixes
9250 F:      drivers/tty/serial/rp2.*
9251
9252 ROSE NETWORK LAYER
9253 M:      Ralf Baechle <ralf@linux-mips.org>
9254 L:      linux-hams@vger.kernel.org
9255 W:      http://www.linux-ax25.org/
9256 S:      Maintained
9257 F:      include/net/rose.h
9258 F:      include/uapi/linux/rose.h
9259 F:      net/rose/
9260
9261 RTL2830 MEDIA DRIVER
9262 M:      Antti Palosaari <crope@iki.fi>
9263 L:      linux-media@vger.kernel.org
9264 W:      https://linuxtv.org
9265 W:      http://palosaari.fi/linux/
9266 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9267 T:      git git://linuxtv.org/anttip/media_tree.git
9268 S:      Maintained
9269 F:      drivers/media/dvb-frontends/rtl2830*
9270
9271 RTL2832 MEDIA DRIVER
9272 M:      Antti Palosaari <crope@iki.fi>
9273 L:      linux-media@vger.kernel.org
9274 W:      https://linuxtv.org
9275 W:      http://palosaari.fi/linux/
9276 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9277 T:      git git://linuxtv.org/anttip/media_tree.git
9278 S:      Maintained
9279 F:      drivers/media/dvb-frontends/rtl2832*
9280
9281 RTL2832_SDR MEDIA DRIVER
9282 M:      Antti Palosaari <crope@iki.fi>
9283 L:      linux-media@vger.kernel.org
9284 W:      https://linuxtv.org
9285 W:      http://palosaari.fi/linux/
9286 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9287 T:      git git://linuxtv.org/anttip/media_tree.git
9288 S:      Maintained
9289 F:      drivers/media/dvb-frontends/rtl2832_sdr*
9290
9291 RTL8180 WIRELESS DRIVER
9292 L:      linux-wireless@vger.kernel.org
9293 W:      http://wireless.kernel.org/
9294 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9295 S:      Orphan
9296 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
9297
9298 RTL8187 WIRELESS DRIVER
9299 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
9300 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
9301 M:      Larry Finger <Larry.Finger@lwfinger.net>
9302 L:      linux-wireless@vger.kernel.org
9303 W:      http://wireless.kernel.org/
9304 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9305 S:      Maintained
9306 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
9307
9308 RTL8192CE WIRELESS DRIVER
9309 M:      Larry Finger <Larry.Finger@lwfinger.net>
9310 M:      Chaoming Li <chaoming_li@realsil.com.cn>
9311 L:      linux-wireless@vger.kernel.org
9312 W:      http://wireless.kernel.org/
9313 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9314 S:      Maintained
9315 F:      drivers/net/wireless/realtek/rtlwifi/
9316 F:      drivers/net/wireless/realtek/rtlwifi/rtl8192ce/
9317
9318 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
9319 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
9320 L:      linux-wireless@vger.kernel.org
9321 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8723au-mac80211
9322 S:      Maintained
9323 F:      drivers/net/wireless/realtek/rtl8xxxu/
9324
9325 S3 SAVAGE FRAMEBUFFER DRIVER
9326 M:      Antonino Daplas <adaplas@gmail.com>
9327 L:      linux-fbdev@vger.kernel.org
9328 S:      Maintained
9329 F:      drivers/video/fbdev/savage/
9330
9331 S390
9332 M:      Martin Schwidefsky <schwidefsky@de.ibm.com>
9333 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
9334 L:      linux-s390@vger.kernel.org
9335 W:      http://www.ibm.com/developerworks/linux/linux390/
9336 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
9337 S:      Supported
9338 F:      arch/s390/
9339 F:      drivers/s390/
9340 F:      Documentation/s390/
9341 F:      Documentation/DocBook/s390*
9342
9343 S390 COMMON I/O LAYER
9344 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
9345 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
9346 L:      linux-s390@vger.kernel.org
9347 W:      http://www.ibm.com/developerworks/linux/linux390/
9348 S:      Supported
9349 F:      drivers/s390/cio/
9350
9351 S390 DASD DRIVER
9352 M:      Stefan Weinhuber <wein@de.ibm.com>
9353 M:      Stefan Haberland <stefan.haberland@de.ibm.com>
9354 L:      linux-s390@vger.kernel.org
9355 W:      http://www.ibm.com/developerworks/linux/linux390/
9356 S:      Supported
9357 F:      drivers/s390/block/dasd*
9358 F:      block/partitions/ibm.c
9359
9360 S390 NETWORK DRIVERS
9361 M:      Ursula Braun <ubraun@linux.vnet.ibm.com>
9362 L:      linux-s390@vger.kernel.org
9363 W:      http://www.ibm.com/developerworks/linux/linux390/
9364 S:      Supported
9365 F:      drivers/s390/net/
9366
9367 S390 PCI SUBSYSTEM
9368 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
9369 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
9370 L:      linux-s390@vger.kernel.org
9371 W:      http://www.ibm.com/developerworks/linux/linux390/
9372 S:      Supported
9373 F:      arch/s390/pci/
9374 F:      drivers/pci/hotplug/s390_pci_hpc.c
9375
9376 S390 ZCRYPT DRIVER
9377 M:      Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
9378 L:      linux-s390@vger.kernel.org
9379 W:      http://www.ibm.com/developerworks/linux/linux390/
9380 S:      Supported
9381 F:      drivers/s390/crypto/
9382
9383 S390 ZFCP DRIVER
9384 M:      Steffen Maier <maier@linux.vnet.ibm.com>
9385 L:      linux-s390@vger.kernel.org
9386 W:      http://www.ibm.com/developerworks/linux/linux390/
9387 S:      Supported
9388 F:      drivers/s390/scsi/zfcp_*
9389
9390 S390 IUCV NETWORK LAYER
9391 M:      Ursula Braun <ubraun@linux.vnet.ibm.com>
9392 L:      linux-s390@vger.kernel.org
9393 W:      http://www.ibm.com/developerworks/linux/linux390/
9394 S:      Supported
9395 F:      drivers/s390/net/*iucv*
9396 F:      include/net/iucv/
9397 F:      net/iucv/
9398
9399 S390 IOMMU (PCI)
9400 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
9401 L:      linux-s390@vger.kernel.org
9402 W:      http://www.ibm.com/developerworks/linux/linux390/
9403 S:      Supported
9404 F:      drivers/iommu/s390-iommu.c
9405
9406 S3C24XX SD/MMC Driver
9407 M:      Ben Dooks <ben-linux@fluff.org>
9408 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9409 S:      Supported
9410 F:      drivers/mmc/host/s3cmci.*
9411
9412 SAA6588 RDS RECEIVER DRIVER
9413 M:      Hans Verkuil <hverkuil@xs4all.nl>
9414 L:      linux-media@vger.kernel.org
9415 T:      git git://linuxtv.org/media_tree.git
9416 W:      https://linuxtv.org
9417 S:      Odd Fixes
9418 F:      drivers/media/i2c/saa6588*
9419
9420 SAA7134 VIDEO4LINUX DRIVER
9421 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9422 L:      linux-media@vger.kernel.org
9423 W:      https://linuxtv.org
9424 T:      git git://linuxtv.org/media_tree.git
9425 S:      Odd fixes
9426 F:      Documentation/video4linux/*.saa7134
9427 F:      drivers/media/pci/saa7134/
9428
9429 SAA7146 VIDEO4LINUX-2 DRIVER
9430 M:      Hans Verkuil <hverkuil@xs4all.nl>
9431 L:      linux-media@vger.kernel.org
9432 T:      git git://linuxtv.org/media_tree.git
9433 S:      Maintained
9434 F:      drivers/media/common/saa7146/
9435 F:      drivers/media/pci/saa7146/
9436 F:      include/media/saa7146*
9437
9438 SAMSUNG LAPTOP DRIVER
9439 M:      Corentin Chary <corentin.chary@gmail.com>
9440 L:      platform-driver-x86@vger.kernel.org
9441 S:      Maintained
9442 F:      drivers/platform/x86/samsung-laptop.c
9443
9444 SAMSUNG AUDIO (ASoC) DRIVERS
9445 M:      Sangbeom Kim <sbkim73@samsung.com>
9446 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9447 S:      Supported
9448 F:      sound/soc/samsung/
9449
9450 SAMSUNG FRAMEBUFFER DRIVER
9451 M:      Jingoo Han <jingoohan1@gmail.com>
9452 L:      linux-fbdev@vger.kernel.org
9453 S:      Maintained
9454 F:      drivers/video/fbdev/s3c-fb.c
9455
9456 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
9457 M:      Sangbeom Kim <sbkim73@samsung.com>
9458 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
9459 L:      linux-kernel@vger.kernel.org
9460 L:      linux-samsung-soc@vger.kernel.org
9461 S:      Supported
9462 F:      drivers/mfd/sec*.c
9463 F:      drivers/regulator/s2m*.c
9464 F:      drivers/regulator/s5m*.c
9465 F:      drivers/clk/clk-s2mps11.c
9466 F:      drivers/rtc/rtc-s5m.c
9467 F:      include/linux/mfd/samsung/
9468 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
9469 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
9470 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
9471 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
9472
9473 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
9474 M:      Kyungmin Park <kyungmin.park@samsung.com>
9475 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
9476 L:      linux-media@vger.kernel.org
9477 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
9478 S:      Supported
9479 F:      drivers/media/platform/exynos4-is/
9480
9481 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
9482 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
9483 L:      linux-media@vger.kernel.org
9484 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9485 S:      Maintained
9486 F:      drivers/media/platform/s3c-camif/
9487 F:      include/media/drv-intf/s3c_camif.h
9488
9489 SAMSUNG S5C73M3 CAMERA DRIVER
9490 M:      Kyungmin Park <kyungmin.park@samsung.com>
9491 M:      Andrzej Hajda <a.hajda@samsung.com>
9492 L:      linux-media@vger.kernel.org
9493 S:      Supported
9494 F:      drivers/media/i2c/s5c73m3/*
9495
9496 SAMSUNG S5K5BAF CAMERA DRIVER
9497 M:      Kyungmin Park <kyungmin.park@samsung.com>
9498 M:      Andrzej Hajda <a.hajda@samsung.com>
9499 L:      linux-media@vger.kernel.org
9500 S:      Supported
9501 F:      drivers/media/i2c/s5k5baf.c
9502
9503 SAMSUNG S3FWRN5 NFC DRIVER
9504 M:      Robert Baldyga <r.baldyga@samsung.com>
9505 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
9506 S:      Supported
9507 F:      drivers/nfc/s3fwrn5
9508
9509 SAMSUNG SOC CLOCK DRIVERS
9510 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
9511 M:      Tomasz Figa <tomasz.figa@gmail.com>
9512 S:      Supported
9513 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9514 F:      drivers/clk/samsung/
9515
9516 SAMSUNG SXGBE DRIVERS
9517 M:      Byungho An <bh74.an@samsung.com>
9518 M:      Girish K S <ks.giri@samsung.com>
9519 M:      Vipul Pandya <vipul.pandya@samsung.com>
9520 S:      Supported
9521 L:      netdev@vger.kernel.org
9522 F:      drivers/net/ethernet/samsung/sxgbe/
9523
9524 SAMSUNG THERMAL DRIVER
9525 M:      Lukasz Majewski <l.majewski@samsung.com>
9526 L:      linux-pm@vger.kernel.org
9527 L:      linux-samsung-soc@vger.kernel.org
9528 S:      Supported
9529 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
9530 F:      drivers/thermal/samsung/
9531
9532 SAMSUNG USB2 PHY DRIVER
9533 M:      Kamil Debski <k.debski@samsung.com>
9534 L:      linux-kernel@vger.kernel.org
9535 S:      Supported
9536 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
9537 F:      Documentation/phy/samsung-usb2.txt
9538 F:      drivers/phy/phy-exynos4210-usb2.c
9539 F:      drivers/phy/phy-exynos4x12-usb2.c
9540 F:      drivers/phy/phy-exynos5250-usb2.c
9541 F:      drivers/phy/phy-s5pv210-usb2.c
9542 F:      drivers/phy/phy-samsung-usb2.c
9543 F:      drivers/phy/phy-samsung-usb2.h
9544
9545 SERIAL DRIVERS
9546 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9547 L:      linux-serial@vger.kernel.org
9548 S:      Maintained
9549 F:      drivers/tty/serial/
9550
9551 SYNOPSYS DESIGNWARE DMAC DRIVER
9552 M:      Viresh Kumar <vireshk@kernel.org>
9553 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9554 S:      Maintained
9555 F:      include/linux/dma/dw.h
9556 F:      include/linux/platform_data/dma-dw.h
9557 F:      drivers/dma/dw/
9558
9559 SYNOPSYS DESIGNWARE ETHERNET QOS 4.10a driver
9560 M: Lars Persson <lars.persson@axis.com>
9561 L: netdev@vger.kernel.org
9562 S: Supported
9563 F: Documentation/devicetree/bindings/net/snps,dwc-qos-ethernet.txt
9564 F: drivers/net/ethernet/synopsys/dwc_eth_qos.c
9565
9566 SYNOPSYS DESIGNWARE I2C DRIVER
9567 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9568 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
9569 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9570 L:      linux-i2c@vger.kernel.org
9571 S:      Maintained
9572 F:      drivers/i2c/busses/i2c-designware-*
9573 F:      include/linux/platform_data/i2c-designware.h
9574
9575 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
9576 M:      Jaehoon Chung <jh80.chung@samsung.com>
9577 L:      linux-mmc@vger.kernel.org
9578 S:      Maintained
9579 F:      include/linux/mmc/dw_mmc.h
9580 F:      drivers/mmc/host/dw_mmc*
9581
9582 SYSTEM TRACE MODULE CLASS
9583 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
9584 S:      Maintained
9585 F:      Documentation/trace/stm.txt
9586 F:      drivers/hwtracing/stm/
9587 F:      include/linux/stm.h
9588 F:      include/uapi/linux/stm.h
9589
9590 THUNDERBOLT DRIVER
9591 M:      Andreas Noever <andreas.noever@gmail.com>
9592 S:      Maintained
9593 F:      drivers/thunderbolt/
9594
9595 TI BQ27XXX POWER SUPPLY DRIVER
9596 R:      Andrew F. Davis <afd@ti.com>
9597 F:      include/linux/power/bq27xxx_battery.h
9598 F:      drivers/power/bq27xxx_battery.c
9599 F:      drivers/power/bq27xxx_battery_i2c.c
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 - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
10425 M:      Jens Frederich <jfrederich@gmail.com>
10426 M:      Daniel Drake <dsd@laptop.org>
10427 M:      Jon Nettleton <jon.nettleton@gmail.com>
10428 W:      http://wiki.laptop.org/go/DCON
10429 S:      Maintained
10430 F:      drivers/staging/olpc_dcon/
10431
10432 STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
10433 M:      Willy Tarreau <willy@meta-x.org>
10434 S:      Odd Fixes
10435 F:      drivers/staging/panel/
10436
10437 STAGING - REALTEK RTL8712U DRIVERS
10438 M:      Larry Finger <Larry.Finger@lwfinger.net>
10439 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
10440 S:      Odd Fixes
10441 F:      drivers/staging/rtl8712/
10442
10443 STAGING - REALTEK RTL8723U WIRELESS DRIVER
10444 M:      Larry Finger <Larry.Finger@lwfinger.net>
10445 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
10446 L:      linux-wireless@vger.kernel.org
10447 S:      Maintained
10448 F:      drivers/staging/rtl8723au/
10449
10450 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
10451 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
10452 M:      Teddy Wang <teddy.wang@siliconmotion.com>
10453 M:      Sudip Mukherjee <sudip@vectorindia.org>
10454 L:      linux-fbdev@vger.kernel.org
10455 S:      Maintained
10456 F:      drivers/staging/sm750fb/
10457
10458 STAGING - SLICOSS
10459 M:      Lior Dotan <liodot@gmail.com>
10460 M:      Christopher Harrer <charrer@alacritech.com>
10461 S:      Odd Fixes
10462 F:      drivers/staging/slicoss/
10463
10464 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
10465 M:      William Hubbs <w.d.hubbs@gmail.com>
10466 M:      Chris Brannon <chris@the-brannons.com>
10467 M:      Kirk Reiser <kirk@reisers.ca>
10468 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
10469 L:      speakup@linux-speakup.org
10470 W:      http://www.linux-speakup.org/
10471 S:      Odd Fixes
10472 F:      drivers/staging/speakup/
10473
10474 STAGING - VIA VT665X DRIVERS
10475 M:      Forest Bond <forest@alittletooquiet.net>
10476 S:      Odd Fixes
10477 F:      drivers/staging/vt665?/
10478
10479 STAGING - WILC1000 WIFI DRIVER
10480 M:      Johnny Kim <johnny.kim@atmel.com>
10481 M:      Austin Shin <austin.shin@atmel.com>
10482 M:      Chris Park <chris.park@atmel.com>
10483 M:      Tony Cho <tony.cho@atmel.com>
10484 M:      Glen Lee <glen.lee@atmel.com>
10485 M:      Leo Kim <leo.kim@atmel.com>
10486 L:      linux-wireless@vger.kernel.org
10487 S:      Supported
10488 F:      drivers/staging/wilc1000/
10489
10490 STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
10491 M:      Arnaud Patard <arnaud.patard@rtp-net.org>
10492 S:      Odd Fixes
10493 F:      drivers/staging/xgifb/
10494
10495 HFI1 DRIVER
10496 M:      Mike Marciniszyn <infinipath@intel.com>
10497 L:      linux-rdma@vger.kernel.org
10498 S:      Supported
10499 F:      drivers/staging/rdma/hfi1
10500
10501 STARFIRE/DURALAN NETWORK DRIVER
10502 M:      Ion Badulescu <ionut@badula.org>
10503 S:      Odd Fixes
10504 F:      drivers/net/ethernet/adaptec/starfire*
10505
10506 SUN3/3X
10507 M:      Sam Creasey <sammy@sammy.net>
10508 W:      http://sammy.net/sun3/
10509 S:      Maintained
10510 F:      arch/m68k/kernel/*sun3*
10511 F:      arch/m68k/sun3*/
10512 F:      arch/m68k/include/asm/sun3*
10513 F:      drivers/net/ethernet/i825xx/sun3*
10514
10515 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
10516 M:      Hans de Goede <hdegoede@redhat.com>
10517 L:      linux-input@vger.kernel.org
10518 S:      Maintained
10519 F:      Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
10520 F:      drivers/input/keyboard/sun4i-lradc-keys.c
10521
10522 SUNDANCE NETWORK DRIVER
10523 M:      Denis Kirjanov <kda@linux-powerpc.org>
10524 L:      netdev@vger.kernel.org
10525 S:      Maintained
10526 F:      drivers/net/ethernet/dlink/sundance.c
10527
10528 SUPERH
10529 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
10530 M:      Rich Felker <dalias@libc.org>
10531 L:      linux-sh@vger.kernel.org
10532 Q:      http://patchwork.kernel.org/project/linux-sh/list/
10533 S:      Maintained
10534 F:      Documentation/sh/
10535 F:      arch/sh/
10536 F:      drivers/sh/
10537
10538 SUSPEND TO RAM
10539 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
10540 M:      Len Brown <len.brown@intel.com>
10541 M:      Pavel Machek <pavel@ucw.cz>
10542 L:      linux-pm@vger.kernel.org
10543 S:      Supported
10544 F:      Documentation/power/
10545 F:      arch/x86/kernel/acpi/
10546 F:      drivers/base/power/
10547 F:      kernel/power/
10548 F:      include/linux/suspend.h
10549 F:      include/linux/freezer.h
10550 F:      include/linux/pm.h
10551
10552 SVGA HANDLING
10553 M:      Martin Mares <mj@ucw.cz>
10554 L:      linux-video@atrey.karlin.mff.cuni.cz
10555 S:      Maintained
10556 F:      Documentation/svga.txt
10557 F:      arch/x86/boot/video*
10558
10559 SWIOTLB SUBSYSTEM
10560 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10561 L:      linux-kernel@vger.kernel.org
10562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
10563 S:      Supported
10564 F:      lib/swiotlb.c
10565 F:      arch/*/kernel/pci-swiotlb.c
10566 F:      include/linux/swiotlb.h
10567
10568 SWITCHDEV
10569 M:      Jiri Pirko <jiri@resnulli.us>
10570 L:      netdev@vger.kernel.org
10571 S:      Supported
10572 F:      net/switchdev/
10573 F:      include/net/switchdev.h
10574
10575 SYNOPSYS ARC ARCHITECTURE
10576 M:      Vineet Gupta <vgupta@synopsys.com>
10577 L:      linux-snps-arc@lists.infradead.org
10578 S:      Supported
10579 F:      arch/arc/
10580 F:      Documentation/devicetree/bindings/arc/*
10581 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
10582 F:      drivers/tty/serial/arc_uart.c
10583 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
10584
10585 SYNOPSYS ARC SDP platform support
10586 M:      Alexey Brodkin <abrodkin@synopsys.com>
10587 S:      Supported
10588 F:      arch/arc/plat-axs10x
10589 F:      arch/arc/boot/dts/ax*
10590 F:      Documentation/devicetree/bindings/arc/axs10*
10591
10592 SYSTEM CONFIGURATION (SYSCON)
10593 M:      Lee Jones <lee.jones@linaro.org>
10594 M:      Arnd Bergmann <arnd@arndb.de>
10595 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
10596 S:      Supported
10597 F:      drivers/mfd/syscon.c
10598
10599 SYSV FILESYSTEM
10600 M:      Christoph Hellwig <hch@infradead.org>
10601 S:      Maintained
10602 F:      Documentation/filesystems/sysv-fs.txt
10603 F:      fs/sysv/
10604 F:      include/linux/sysv_fs.h
10605
10606 TARGET SUBSYSTEM
10607 M:      "Nicholas A. Bellinger" <nab@linux-iscsi.org>
10608 L:      linux-scsi@vger.kernel.org
10609 L:      target-devel@vger.kernel.org
10610 W:      http://www.linux-iscsi.org
10611 W:      http://groups.google.com/group/linux-iscsi-target-dev
10612 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10613 S:      Supported
10614 F:      drivers/target/
10615 F:      include/target/
10616 F:      Documentation/target/
10617
10618 TASKSTATS STATISTICS INTERFACE
10619 M:      Balbir Singh <bsingharora@gmail.com>
10620 S:      Maintained
10621 F:      Documentation/accounting/taskstats*
10622 F:      include/linux/taskstats*
10623 F:      kernel/taskstats.c
10624
10625 TC CLASSIFIER
10626 M:      Jamal Hadi Salim <jhs@mojatatu.com>
10627 L:      netdev@vger.kernel.org
10628 S:      Maintained
10629 F:      include/net/pkt_cls.h
10630 F:      include/uapi/linux/pkt_cls.h
10631 F:      net/sched/
10632
10633 TCP LOW PRIORITY MODULE
10634 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
10635 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
10636 W:      http://tcp-lp-mod.sourceforge.net/
10637 S:      Maintained
10638 F:      net/ipv4/tcp_lp.c
10639
10640 TDA10071 MEDIA DRIVER
10641 M:      Antti Palosaari <crope@iki.fi>
10642 L:      linux-media@vger.kernel.org
10643 W:      https://linuxtv.org
10644 W:      http://palosaari.fi/linux/
10645 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10646 T:      git git://linuxtv.org/anttip/media_tree.git
10647 S:      Maintained
10648 F:      drivers/media/dvb-frontends/tda10071*
10649
10650 TDA18212 MEDIA DRIVER
10651 M:      Antti Palosaari <crope@iki.fi>
10652 L:      linux-media@vger.kernel.org
10653 W:      https://linuxtv.org
10654 W:      http://palosaari.fi/linux/
10655 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10656 T:      git git://linuxtv.org/anttip/media_tree.git
10657 S:      Maintained
10658 F:      drivers/media/tuners/tda18212*
10659
10660 TDA18218 MEDIA DRIVER
10661 M:      Antti Palosaari <crope@iki.fi>
10662 L:      linux-media@vger.kernel.org
10663 W:      https://linuxtv.org
10664 W:      http://palosaari.fi/linux/
10665 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10666 T:      git git://linuxtv.org/anttip/media_tree.git
10667 S:      Maintained
10668 F:      drivers/media/tuners/tda18218*
10669
10670 TDA18271 MEDIA DRIVER
10671 M:      Michael Krufky <mkrufky@linuxtv.org>
10672 L:      linux-media@vger.kernel.org
10673 W:      https://linuxtv.org
10674 W:      http://github.com/mkrufky
10675 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10676 T:      git git://linuxtv.org/mkrufky/tuners.git
10677 S:      Maintained
10678 F:      drivers/media/tuners/tda18271*
10679
10680 TDA827x MEDIA DRIVER
10681 M:      Michael Krufky <mkrufky@linuxtv.org>
10682 L:      linux-media@vger.kernel.org
10683 W:      https://linuxtv.org
10684 W:      http://github.com/mkrufky
10685 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10686 T:      git git://linuxtv.org/mkrufky/tuners.git
10687 S:      Maintained
10688 F:      drivers/media/tuners/tda8290.*
10689
10690 TDA8290 MEDIA DRIVER
10691 M:      Michael Krufky <mkrufky@linuxtv.org>
10692 L:      linux-media@vger.kernel.org
10693 W:      https://linuxtv.org
10694 W:      http://github.com/mkrufky
10695 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10696 T:      git git://linuxtv.org/mkrufky/tuners.git
10697 S:      Maintained
10698 F:      drivers/media/tuners/tda8290.*
10699
10700 TDA9840 MEDIA DRIVER
10701 M:      Hans Verkuil <hverkuil@xs4all.nl>
10702 L:      linux-media@vger.kernel.org
10703 T:      git git://linuxtv.org/media_tree.git
10704 W:      https://linuxtv.org
10705 S:      Maintained
10706 F:      drivers/media/i2c/tda9840*
10707
10708 TEA5761 TUNER DRIVER
10709 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10710 L:      linux-media@vger.kernel.org
10711 W:      https://linuxtv.org
10712 T:      git git://linuxtv.org/media_tree.git
10713 S:      Odd fixes
10714 F:      drivers/media/tuners/tea5761.*
10715
10716 TEA5767 TUNER DRIVER
10717 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10718 L:      linux-media@vger.kernel.org
10719 W:      https://linuxtv.org
10720 T:      git git://linuxtv.org/media_tree.git
10721 S:      Maintained
10722 F:      drivers/media/tuners/tea5767.*
10723
10724 TEA6415C MEDIA DRIVER
10725 M:      Hans Verkuil <hverkuil@xs4all.nl>
10726 L:      linux-media@vger.kernel.org
10727 T:      git git://linuxtv.org/media_tree.git
10728 W:      https://linuxtv.org
10729 S:      Maintained
10730 F:      drivers/media/i2c/tea6415c*
10731
10732 TEA6420 MEDIA DRIVER
10733 M:      Hans Verkuil <hverkuil@xs4all.nl>
10734 L:      linux-media@vger.kernel.org
10735 T:      git git://linuxtv.org/media_tree.git
10736 W:      https://linuxtv.org
10737 S:      Maintained
10738 F:      drivers/media/i2c/tea6420*
10739
10740 TEAM DRIVER
10741 M:      Jiri Pirko <jiri@resnulli.us>
10742 L:      netdev@vger.kernel.org
10743 S:      Supported
10744 F:      drivers/net/team/
10745 F:      include/linux/if_team.h
10746 F:      include/uapi/linux/if_team.h
10747
10748 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
10749 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
10750 S:      Maintained
10751 F:      arch/x86/platform/ts5500/
10752
10753 TECHNOTREND USB IR RECEIVER
10754 M:      Sean Young <sean@mess.org>
10755 L:      linux-media@vger.kernel.org
10756 S:      Maintained
10757 F:      drivers/media/rc/ttusbir.c
10758
10759 TEGRA ARCHITECTURE SUPPORT
10760 M:      Stephen Warren <swarren@wwwdotorg.org>
10761 M:      Thierry Reding <thierry.reding@gmail.com>
10762 M:      Alexandre Courbot <gnurou@gmail.com>
10763 L:      linux-tegra@vger.kernel.org
10764 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
10765 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
10766 S:      Supported
10767 N:      [^a-z]tegra
10768
10769 TEGRA CLOCK DRIVER
10770 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
10771 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
10772 S:      Supported
10773 F:      drivers/clk/tegra/
10774
10775 TEGRA DMA DRIVER
10776 M:      Laxman Dewangan <ldewangan@nvidia.com>
10777 S:      Supported
10778 F:      drivers/dma/tegra20-apb-dma.c
10779
10780 TEGRA I2C DRIVER
10781 M:      Laxman Dewangan <ldewangan@nvidia.com>
10782 S:      Supported
10783 F:      drivers/i2c/busses/i2c-tegra.c
10784
10785 TEGRA IOMMU DRIVERS
10786 M:      Hiroshi Doyu <hdoyu@nvidia.com>
10787 S:      Supported
10788 F:      drivers/iommu/tegra*
10789
10790 TEGRA KBC DRIVER
10791 M:      Rakesh Iyer <riyer@nvidia.com>
10792 M:      Laxman Dewangan <ldewangan@nvidia.com>
10793 S:      Supported
10794 F:      drivers/input/keyboard/tegra-kbc.c
10795
10796 TEGRA PWM DRIVER
10797 M:      Thierry Reding <thierry.reding@gmail.com>
10798 S:      Supported
10799 F:      drivers/pwm/pwm-tegra.c
10800
10801 TEGRA SERIAL DRIVER
10802 M:      Laxman Dewangan <ldewangan@nvidia.com>
10803 S:      Supported
10804 F:      drivers/tty/serial/serial-tegra.c
10805
10806 TEGRA SPI DRIVER
10807 M:      Laxman Dewangan <ldewangan@nvidia.com>
10808 S:      Supported
10809 F:      drivers/spi/spi-tegra*
10810
10811 TEHUTI ETHERNET DRIVER
10812 M:      Andy Gospodarek <andy@greyhouse.net>
10813 L:      netdev@vger.kernel.org
10814 S:      Supported
10815 F:      drivers/net/ethernet/tehuti/*
10816
10817 Telecom Clock Driver for MCPL0010
10818 M:      Mark Gross <mark.gross@intel.com>
10819 S:      Supported
10820 F:      drivers/char/tlclk.c
10821
10822 TENSILICA XTENSA PORT (xtensa)
10823 M:      Chris Zankel <chris@zankel.net>
10824 M:      Max Filippov <jcmvbkbc@gmail.com>
10825 L:      linux-xtensa@linux-xtensa.org
10826 T:      git git://github.com/czankel/xtensa-linux.git
10827 S:      Maintained
10828 F:      arch/xtensa/
10829 F:      drivers/irqchip/irq-xtensa-*
10830
10831 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
10832 M:      Hans Verkuil <hverkuil@xs4all.nl>
10833 L:      linux-media@vger.kernel.org
10834 T:      git git://linuxtv.org/media_tree.git
10835 W:      https://linuxtv.org
10836 S:      Maintained
10837 F:      drivers/media/radio/radio-raremono.c
10838
10839 THERMAL
10840 M:      Zhang Rui <rui.zhang@intel.com>
10841 M:      Eduardo Valentin <edubezval@gmail.com>
10842 L:      linux-pm@vger.kernel.org
10843 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
10844 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
10845 Q:      https://patchwork.kernel.org/project/linux-pm/list/
10846 S:      Supported
10847 F:      drivers/thermal/
10848 F:      include/linux/thermal.h
10849 F:      include/uapi/linux/thermal.h
10850 F:      include/linux/cpu_cooling.h
10851 F:      Documentation/devicetree/bindings/thermal/
10852
10853 THERMAL/CPU_COOLING
10854 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
10855 M:      Viresh Kumar <viresh.kumar@linaro.org>
10856 M:      Javi Merino <javi.merino@arm.com>
10857 L:      linux-pm@vger.kernel.org
10858 S:      Supported
10859 F:      Documentation/thermal/cpu-cooling-api.txt
10860 F:      drivers/thermal/cpu_cooling.c
10861 F:      include/linux/cpu_cooling.h
10862
10863 THINGM BLINK(1) USB RGB LED DRIVER
10864 M:      Vivien Didelot <vivien.didelot@savoirfairelinux.com>
10865 S:      Maintained
10866 F:      drivers/hid/hid-thingm.c
10867
10868 THINKPAD ACPI EXTRAS DRIVER
10869 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
10870 L:      ibm-acpi-devel@lists.sourceforge.net
10871 L:      platform-driver-x86@vger.kernel.org
10872 W:      http://ibm-acpi.sourceforge.net
10873 W:      http://thinkwiki.org/wiki/Ibm-acpi
10874 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
10875 S:      Maintained
10876 F:      drivers/platform/x86/thinkpad_acpi.c
10877
10878 TI BANDGAP AND THERMAL DRIVER
10879 M:      Eduardo Valentin <edubezval@gmail.com>
10880 L:      linux-pm@vger.kernel.org
10881 L:      linux-omap@vger.kernel.org
10882 S:      Maintained
10883 F:      drivers/thermal/ti-soc-thermal/
10884
10885 TI CDCE706 CLOCK DRIVER
10886 M:      Max Filippov <jcmvbkbc@gmail.com>
10887 S:      Maintained
10888 F:      drivers/clk/clk-cdce706.c
10889
10890 TI CLOCK DRIVER
10891 M:      Tero Kristo <t-kristo@ti.com>
10892 L:      linux-omap@vger.kernel.org
10893 S:      Maintained
10894 F:      drivers/clk/ti/
10895 F:      include/linux/clk/ti.h
10896
10897 TI FLASH MEDIA INTERFACE DRIVER
10898 M:      Alex Dubov <oakad@yahoo.com>
10899 S:      Maintained
10900 F:      drivers/misc/tifm*
10901 F:      drivers/mmc/host/tifm_sd.c
10902 F:      include/linux/tifm.h
10903
10904 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
10905 M:      Santosh Shilimkar <ssantosh@kernel.org>
10906 L:      linux-kernel@vger.kernel.org
10907 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10908 S:      Maintained
10909 F:      drivers/soc/ti/*
10910 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
10911
10912
10913 TI LM49xxx FAMILY ASoC CODEC DRIVERS
10914 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
10915 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
10916 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10917 S:      Maintained
10918 F:      sound/soc/codecs/lm49453*
10919 F:      sound/soc/codecs/isabelle*
10920
10921 TI LP855x BACKLIGHT DRIVER
10922 M:      Milo Kim <milo.kim@ti.com>
10923 S:      Maintained
10924 F:      Documentation/backlight/lp855x-driver.txt
10925 F:      drivers/video/backlight/lp855x_bl.c
10926 F:      include/linux/platform_data/lp855x.h
10927
10928 TI LP8727 CHARGER DRIVER
10929 M:      Milo Kim <milo.kim@ti.com>
10930 S:      Maintained
10931 F:      drivers/power/lp8727_charger.c
10932 F:      include/linux/platform_data/lp8727.h
10933
10934 TI LP8788 MFD DRIVER
10935 M:      Milo Kim <milo.kim@ti.com>
10936 S:      Maintained
10937 F:      drivers/iio/adc/lp8788_adc.c
10938 F:      drivers/leds/leds-lp8788.c
10939 F:      drivers/mfd/lp8788*.c
10940 F:      drivers/power/lp8788-charger.c
10941 F:      drivers/regulator/lp8788-*.c
10942 F:      include/linux/mfd/lp8788*.h
10943
10944 TI NETCP ETHERNET DRIVER
10945 M:      Wingman Kwok <w-kwok2@ti.com>
10946 M:      Murali Karicheri <m-karicheri2@ti.com>
10947 L:      netdev@vger.kernel.org
10948 S:      Maintained
10949 F:      drivers/net/ethernet/ti/netcp*
10950
10951 TI TAS571X FAMILY ASoC CODEC DRIVER
10952 M:      Kevin Cernekee <cernekee@chromium.org>
10953 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10954 S:      Odd Fixes
10955 F:      sound/soc/codecs/tas571x*
10956
10957 TI TWL4030 SERIES SOC CODEC DRIVER
10958 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
10959 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10960 S:      Maintained
10961 F:      sound/soc/codecs/twl4030*
10962
10963 TI WILINK WIRELESS DRIVERS
10964 L:      linux-wireless@vger.kernel.org
10965 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
10966 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
10967 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
10968 S:      Orphan
10969 F:      drivers/net/wireless/ti/
10970 F:      include/linux/wl12xx.h
10971
10972 TIPC NETWORK LAYER
10973 M:      Jon Maloy <jon.maloy@ericsson.com>
10974 M:      Ying Xue <ying.xue@windriver.com>
10975 L:      netdev@vger.kernel.org (core kernel code)
10976 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
10977 W:      http://tipc.sourceforge.net/
10978 S:      Maintained
10979 F:      include/uapi/linux/tipc*.h
10980 F:      net/tipc/
10981
10982 TILE ARCHITECTURE
10983 M:      Chris Metcalf <cmetcalf@ezchip.com>
10984 W:      http://www.ezchip.com/scm/
10985 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cmetcalf/linux-tile.git
10986 S:      Supported
10987 F:      arch/tile/
10988 F:      drivers/char/tile-srom.c
10989 F:      drivers/edac/tile_edac.c
10990 F:      drivers/net/ethernet/tile/
10991 F:      drivers/rtc/rtc-tile.c
10992 F:      drivers/tty/hvc/hvc_tile.c
10993 F:      drivers/tty/serial/tilegx.c
10994 F:      drivers/usb/host/*-tilegx.c
10995 F:      include/linux/usb/tilegx.h
10996
10997 TLAN NETWORK DRIVER
10998 M:      Samuel Chessman <chessman@tux.org>
10999 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
11000 W:      http://sourceforge.net/projects/tlan/
11001 S:      Maintained
11002 F:      Documentation/networking/tlan.txt
11003 F:      drivers/net/ethernet/ti/tlan.*
11004
11005 TOMOYO SECURITY MODULE
11006 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
11007 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
11008 L:      tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
11009 L:      tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
11010 L:      tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
11011 L:      tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
11012 W:      http://tomoyo.sourceforge.jp/
11013 T:      quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
11014 S:      Maintained
11015 F:      security/tomoyo/
11016
11017 TOPSTAR LAPTOP EXTRAS DRIVER
11018 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
11019 L:      platform-driver-x86@vger.kernel.org
11020 S:      Maintained
11021 F:      drivers/platform/x86/topstar-laptop.c
11022
11023 TOSHIBA ACPI EXTRAS DRIVER
11024 M:      Azael Avalos <coproscefalo@gmail.com>
11025 L:      platform-driver-x86@vger.kernel.org
11026 S:      Maintained
11027 F:      drivers/platform/x86/toshiba_acpi.c
11028
11029 TOSHIBA BLUETOOTH DRIVER
11030 M:      Azael Avalos <coproscefalo@gmail.com>
11031 L:      platform-driver-x86@vger.kernel.org
11032 S:      Maintained
11033 F:      drivers/platform/x86/toshiba_bluetooth.c
11034
11035 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
11036 M:      Azael Avalos <coproscefalo@gmail.com>
11037 L:      platform-driver-x86@vger.kernel.org
11038 S:      Maintained
11039 F:      drivers/platform/x86/toshiba_haps.c
11040
11041 TOSHIBA WMI HOTKEYS DRIVER
11042 M:      Azael Avalos <coproscefalo@gmail.com>
11043 L:      platform-driver-x86@vger.kernel.org
11044 S:      Maintained
11045 F:      drivers/platform/x86/toshiba-wmi.c
11046
11047 TOSHIBA SMM DRIVER
11048 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
11049 W:      http://www.buzzard.org.uk/toshiba/
11050 S:      Maintained
11051 F:      drivers/char/toshiba.c
11052 F:      include/linux/toshiba.h
11053 F:      include/uapi/linux/toshiba.h
11054
11055 TOSHIBA TC358743 DRIVER
11056 M:      Mats Randgaard <matrandg@cisco.com>
11057 L:      linux-media@vger.kernel.org
11058 S:      Maintained
11059 F:      drivers/media/i2c/tc358743*
11060 F:      include/media/i2c/tc358743.h
11061
11062 TMIO MMC DRIVER
11063 M:      Ian Molton <ian@mnementh.co.uk>
11064 L:      linux-mmc@vger.kernel.org
11065 S:      Maintained
11066 F:      drivers/mmc/host/tmio_mmc*
11067 F:      drivers/mmc/host/sh_mobile_sdhi.c
11068 F:      include/linux/mmc/tmio.h
11069 F:      include/linux/mmc/sh_mobile_sdhi.h
11070
11071 TMP401 HARDWARE MONITOR DRIVER
11072 M:      Guenter Roeck <linux@roeck-us.net>
11073 L:      lm-sensors@lm-sensors.org
11074 S:      Maintained
11075 F:      Documentation/hwmon/tmp401
11076 F:      drivers/hwmon/tmp401.c
11077
11078 TMPFS (SHMEM FILESYSTEM)
11079 M:      Hugh Dickins <hughd@google.com>
11080 L:      linux-mm@kvack.org
11081 S:      Maintained
11082 F:      include/linux/shmem_fs.h
11083 F:      mm/shmem.c
11084
11085 TM6000 VIDEO4LINUX DRIVER
11086 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
11087 L:      linux-media@vger.kernel.org
11088 W:      https://linuxtv.org
11089 T:      git git://linuxtv.org/media_tree.git
11090 S:      Odd fixes
11091 F:      drivers/media/usb/tm6000/
11092
11093 TW68 VIDEO4LINUX DRIVER
11094 M:      Hans Verkuil <hverkuil@xs4all.nl>
11095 L:      linux-media@vger.kernel.org
11096 T:      git git://linuxtv.org/media_tree.git
11097 W:      https://linuxtv.org
11098 S:      Odd Fixes
11099 F:      drivers/media/pci/tw68/
11100
11101 TPM DEVICE DRIVER
11102 M:      Peter Huewe <peterhuewe@gmx.de>
11103 M:      Marcel Selhorst <tpmdd@selhorst.net>
11104 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
11105 R:      Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
11106 W:      http://tpmdd.sourceforge.net
11107 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
11108 Q:      git git://github.com/PeterHuewe/linux-tpmdd.git
11109 T:      git https://github.com/PeterHuewe/linux-tpmdd
11110 S:      Maintained
11111 F:      drivers/char/tpm/
11112
11113 TPM IBM_VTPM DEVICE DRIVER
11114 M:      Ashley Lai <ashleydlai@gmail.com>
11115 W:      http://tpmdd.sourceforge.net
11116 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
11117 S:      Maintained
11118 F:      drivers/char/tpm/tpm_ibmvtpm*
11119
11120 TRACING
11121 M:      Steven Rostedt <rostedt@goodmis.org>
11122 M:      Ingo Molnar <mingo@redhat.com>
11123 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
11124 S:      Maintained
11125 F:      Documentation/trace/ftrace.txt
11126 F:      arch/*/*/*/ftrace.h
11127 F:      arch/*/kernel/ftrace.c
11128 F:      include/*/ftrace.h
11129 F:      include/linux/trace*.h
11130 F:      include/trace/
11131 F:      kernel/trace/
11132 F:      tools/testing/selftests/ftrace/
11133
11134 TRIVIAL PATCHES
11135 M:      Jiri Kosina <trivial@kernel.org>
11136 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
11137 S:      Maintained
11138 K:      ^Subject:.*(?i)trivial
11139
11140 TTY LAYER
11141 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11142 M:      Jiri Slaby <jslaby@suse.com>
11143 S:      Supported
11144 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
11145 F:      Documentation/serial/
11146 F:      drivers/tty/
11147 F:      drivers/tty/serial/serial_core.c
11148 F:      include/linux/serial_core.h
11149 F:      include/linux/serial.h
11150 F:      include/linux/tty.h
11151 F:      include/uapi/linux/serial_core.h
11152 F:      include/uapi/linux/serial.h
11153 F:      include/uapi/linux/tty.h
11154
11155 TUA9001 MEDIA DRIVER
11156 M:      Antti Palosaari <crope@iki.fi>
11157 L:      linux-media@vger.kernel.org
11158 W:      https://linuxtv.org
11159 W:      http://palosaari.fi/linux/
11160 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11161 T:      git git://linuxtv.org/anttip/media_tree.git
11162 S:      Maintained
11163 F:      drivers/media/tuners/tua9001*
11164
11165 TULIP NETWORK DRIVERS
11166 L:      netdev@vger.kernel.org
11167 L:      linux-parisc@vger.kernel.org
11168 S:      Orphan
11169 F:      drivers/net/ethernet/dec/tulip/
11170
11171 TUN/TAP driver
11172 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
11173 W:      http://vtun.sourceforge.net/tun
11174 S:      Maintained
11175 F:      Documentation/networking/tuntap.txt
11176 F:      arch/um/os-Linux/drivers/
11177
11178 TURBOCHANNEL SUBSYSTEM
11179 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
11180 M:      Ralf Baechle <ralf@linux-mips.org>
11181 L:      linux-mips@linux-mips.org
11182 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
11183 S:      Maintained
11184 F:      drivers/tc/
11185 F:      include/linux/tc.h
11186
11187 U14-34F SCSI DRIVER
11188 M:      Dario Ballabio <ballabio_dario@emc.com>
11189 L:      linux-scsi@vger.kernel.org
11190 S:      Maintained
11191 F:      drivers/scsi/u14-34f.c
11192
11193 UBI FILE SYSTEM (UBIFS)
11194 M:      Artem Bityutskiy <dedekind1@gmail.com>
11195 M:      Adrian Hunter <adrian.hunter@intel.com>
11196 L:      linux-mtd@lists.infradead.org
11197 T:      git git://git.infradead.org/ubifs-2.6.git
11198 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
11199 S:      Maintained
11200 F:      Documentation/filesystems/ubifs.txt
11201 F:      fs/ubifs/
11202
11203 UCLINUX (M68KNOMMU AND COLDFIRE)
11204 M:      Greg Ungerer <gerg@uclinux.org>
11205 W:      http://www.uclinux.org/
11206 L:      linux-m68k@lists.linux-m68k.org
11207 L:      uclinux-dev@uclinux.org  (subscribers-only)
11208 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
11209 S:      Maintained
11210 F:      arch/m68k/coldfire/
11211 F:      arch/m68k/68*/
11212 F:      arch/m68k/*/*_no.*
11213 F:      arch/m68k/include/asm/*_no.*
11214
11215 UDF FILESYSTEM
11216 M:      Jan Kara <jack@suse.com>
11217 S:      Maintained
11218 F:      Documentation/filesystems/udf.txt
11219 F:      fs/udf/
11220
11221 UFS FILESYSTEM
11222 M:      Evgeniy Dushistov <dushistov@mail.ru>
11223 S:      Maintained
11224 F:      Documentation/filesystems/ufs.txt
11225 F:      fs/ufs/
11226
11227 UHID USERSPACE HID IO DRIVER:
11228 M:      David Herrmann <dh.herrmann@googlemail.com>
11229 L:      linux-input@vger.kernel.org
11230 S:      Maintained
11231 F:      drivers/hid/uhid.c
11232 F:      include/uapi/linux/uhid.h
11233
11234 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
11235 L:      linux-usb@vger.kernel.org
11236 S:      Orphan
11237 F:      drivers/uwb/
11238 F:      include/linux/uwb.h
11239 F:      include/linux/uwb/
11240
11241 UNICORE32 ARCHITECTURE:
11242 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
11243 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
11244 S:      Maintained
11245 T:      git git://github.com/gxt/linux.git
11246 F:      arch/unicore32/
11247
11248 UNIFDEF
11249 M:      Tony Finch <dot@dotat.at>
11250 W:      http://dotat.at/prog/unifdef
11251 S:      Maintained
11252 F:      scripts/unifdef.c
11253
11254 UNIFORM CDROM DRIVER
11255 M:      Jens Axboe <axboe@kernel.dk>
11256 W:      http://www.kernel.dk
11257 S:      Maintained
11258 F:      Documentation/cdrom/
11259 F:      drivers/cdrom/cdrom.c
11260 F:      include/linux/cdrom.h
11261 F:      include/uapi/linux/cdrom.h
11262
11263 UNISYS S-PAR DRIVERS
11264 M:      Benjamin Romer <benjamin.romer@unisys.com>
11265 M:      David Kershner <david.kershner@unisys.com>
11266 L:      sparmaintainer@unisys.com (Unisys internal)
11267 S:      Supported
11268 F:      drivers/staging/unisys/
11269
11270 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
11271 M:      Vinayak Holikatti <vinholikatti@gmail.com>
11272 L:      linux-scsi@vger.kernel.org
11273 S:      Supported
11274 F:      Documentation/scsi/ufs.txt
11275 F:      drivers/scsi/ufs/
11276
11277 UNSORTED BLOCK IMAGES (UBI)
11278 M:      Artem Bityutskiy <dedekind1@gmail.com>
11279 M:      Richard Weinberger <richard@nod.at>
11280 W:      http://www.linux-mtd.infradead.org/
11281 L:      linux-mtd@lists.infradead.org
11282 T:      git git://git.infradead.org/ubifs-2.6.git
11283 S:      Supported
11284 F:      drivers/mtd/ubi/
11285 F:      include/linux/mtd/ubi.h
11286 F:      include/uapi/mtd/ubi-user.h
11287
11288 USB ACM DRIVER
11289 M:      Oliver Neukum <oliver@neukum.org>
11290 L:      linux-usb@vger.kernel.org
11291 S:      Maintained
11292 F:      Documentation/usb/acm.txt
11293 F:      drivers/usb/class/cdc-acm.*
11294
11295 USB AR5523 WIRELESS DRIVER
11296 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
11297 L:      linux-wireless@vger.kernel.org
11298 S:      Maintained
11299 F:      drivers/net/wireless/ath/ar5523/
11300
11301 USB ATTACHED SCSI
11302 M:      Hans de Goede <hdegoede@redhat.com>
11303 M:      Gerd Hoffmann <kraxel@redhat.com>
11304 L:      linux-usb@vger.kernel.org
11305 L:      linux-scsi@vger.kernel.org
11306 S:      Maintained
11307 F:      drivers/usb/storage/uas.c
11308
11309 USB CDC ETHERNET DRIVER
11310 M:      Oliver Neukum <oliver@neukum.org>
11311 L:      linux-usb@vger.kernel.org
11312 S:      Maintained
11313 F:      drivers/net/usb/cdc_*.c
11314 F:      include/uapi/linux/usb/cdc.h
11315
11316 USB CHAOSKEY DRIVER
11317 M:      Keith Packard <keithp@keithp.com>
11318 L:      linux-usb@vger.kernel.org
11319 S:      Maintained
11320 F:      drivers/usb/misc/chaoskey.c
11321
11322 USB CYPRESS C67X00 DRIVER
11323 M:      Peter Korsgaard <jacmet@sunsite.dk>
11324 L:      linux-usb@vger.kernel.org
11325 S:      Maintained
11326 F:      drivers/usb/c67x00/
11327
11328 USB DAVICOM DM9601 DRIVER
11329 M:      Peter Korsgaard <jacmet@sunsite.dk>
11330 L:      netdev@vger.kernel.org
11331 W:      http://www.linux-usb.org/usbnet
11332 S:      Maintained
11333 F:      drivers/net/usb/dm9601.c
11334
11335 USB DIAMOND RIO500 DRIVER
11336 M:      Cesar Miquel <miquel@df.uba.ar>
11337 L:      rio500-users@lists.sourceforge.net
11338 W:      http://rio500.sourceforge.net
11339 S:      Maintained
11340 F:      drivers/usb/misc/rio500*
11341
11342 USB EHCI DRIVER
11343 M:      Alan Stern <stern@rowland.harvard.edu>
11344 L:      linux-usb@vger.kernel.org
11345 S:      Maintained
11346 F:      Documentation/usb/ehci.txt
11347 F:      drivers/usb/host/ehci*
11348
11349 USB GADGET/PERIPHERAL SUBSYSTEM
11350 M:      Felipe Balbi <balbi@kernel.org>
11351 L:      linux-usb@vger.kernel.org
11352 W:      http://www.linux-usb.org/gadget
11353 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
11354 S:      Maintained
11355 F:      drivers/usb/gadget/
11356 F:      include/linux/usb/gadget*
11357
11358 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
11359 M:      Jiri Kosina <jikos@kernel.org>
11360 R:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
11361 L:      linux-usb@vger.kernel.org
11362 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
11363 S:      Maintained
11364 F:      Documentation/hid/hiddev.txt
11365 F:      drivers/hid/usbhid/
11366
11367 USB ISP116X DRIVER
11368 M:      Olav Kongas <ok@artecdesign.ee>
11369 L:      linux-usb@vger.kernel.org
11370 S:      Maintained
11371 F:      drivers/usb/host/isp116x*
11372 F:      include/linux/usb/isp116x.h
11373
11374 USB LAN78XX ETHERNET DRIVER
11375 M:      Woojung Huh <woojung.huh@microchip.com>
11376 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11377 L:      netdev@vger.kernel.org
11378 S:      Maintained
11379 F:      drivers/net/usb/lan78xx.*
11380
11381 USB MASS STORAGE DRIVER
11382 M:      Matthew Dharm <mdharm-usb@one-eyed-alien.net>
11383 L:      linux-usb@vger.kernel.org
11384 L:      usb-storage@lists.one-eyed-alien.net
11385 S:      Maintained
11386 W:      http://www.one-eyed-alien.net/~mdharm/linux-usb/
11387 F:      drivers/usb/storage/
11388
11389 USB MIDI DRIVER
11390 M:      Clemens Ladisch <clemens@ladisch.de>
11391 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11392 T:      git git://git.alsa-project.org/alsa-kernel.git
11393 S:      Maintained
11394 F:      sound/usb/midi.*
11395
11396 USB NETWORKING DRIVERS
11397 L:      linux-usb@vger.kernel.org
11398 S:      Odd Fixes
11399 F:      drivers/net/usb/
11400
11401 USB OHCI DRIVER
11402 M:      Alan Stern <stern@rowland.harvard.edu>
11403 L:      linux-usb@vger.kernel.org
11404 S:      Maintained
11405 F:      Documentation/usb/ohci.txt
11406 F:      drivers/usb/host/ohci*
11407
11408 USB OTG FSM (Finite State Machine)
11409 M:      Peter Chen <Peter.Chen@nxp.com>
11410 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
11411 L:      linux-usb@vger.kernel.org
11412 S:      Maintained
11413 F:      drivers/usb/common/usb-otg-fsm.c
11414
11415 USB OVER IP DRIVER
11416 M:      Valentina Manea <valentina.manea.m@gmail.com>
11417 M:      Shuah Khan <shuah.kh@samsung.com>
11418 L:      linux-usb@vger.kernel.org
11419 S:      Maintained
11420 F:      drivers/usb/usbip/
11421 F:      tools/usb/usbip/
11422
11423 USB PEGASUS DRIVER
11424 M:      Petko Manolov <petkan@nucleusys.com>
11425 L:      linux-usb@vger.kernel.org
11426 L:      netdev@vger.kernel.org
11427 T:      git git://github.com/petkan/pegasus.git
11428 W:      https://github.com/petkan/pegasus
11429 S:      Maintained
11430 F:      drivers/net/usb/pegasus.*
11431
11432 USB PHY LAYER
11433 M:      Felipe Balbi <balbi@kernel.org>
11434 L:      linux-usb@vger.kernel.org
11435 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
11436 S:      Maintained
11437 F:      drivers/usb/phy/
11438
11439 USB PRINTER DRIVER (usblp)
11440 M:      Pete Zaitcev <zaitcev@redhat.com>
11441 L:      linux-usb@vger.kernel.org
11442 S:      Supported
11443 F:      drivers/usb/class/usblp.c
11444
11445 USB QMI WWAN NETWORK DRIVER
11446 M:      Bjørn Mork <bjorn@mork.no>
11447 L:      netdev@vger.kernel.org
11448 S:      Maintained
11449 F:      Documentation/ABI/testing/sysfs-class-net-qmi
11450 F:      drivers/net/usb/qmi_wwan.c
11451
11452 USB RTL8150 DRIVER
11453 M:      Petko Manolov <petkan@nucleusys.com>
11454 L:      linux-usb@vger.kernel.org
11455 L:      netdev@vger.kernel.org
11456 T:      git git://github.com/petkan/rtl8150.git
11457 W:      https://github.com/petkan/rtl8150
11458 S:      Maintained
11459 F:      drivers/net/usb/rtl8150.c
11460
11461 USB SERIAL SUBSYSTEM
11462 M:      Johan Hovold <johan@kernel.org>
11463 L:      linux-usb@vger.kernel.org
11464 S:      Maintained
11465 F:      Documentation/usb/usb-serial.txt
11466 F:      drivers/usb/serial/
11467 F:      include/linux/usb/serial.h
11468
11469 USB SMSC75XX ETHERNET DRIVER
11470 M:      Steve Glendinning <steve.glendinning@shawell.net>
11471 L:      netdev@vger.kernel.org
11472 S:      Maintained
11473 F:      drivers/net/usb/smsc75xx.*
11474
11475 USB SMSC95XX ETHERNET DRIVER
11476 M:      Steve Glendinning <steve.glendinning@shawell.net>
11477 L:      netdev@vger.kernel.org
11478 S:      Maintained
11479 F:      drivers/net/usb/smsc95xx.*
11480
11481 USB SUBSYSTEM
11482 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11483 L:      linux-usb@vger.kernel.org
11484 W:      http://www.linux-usb.org
11485 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
11486 S:      Supported
11487 F:      Documentation/usb/
11488 F:      drivers/usb/
11489 F:      include/linux/usb.h
11490 F:      include/linux/usb/
11491
11492 USB UHCI DRIVER
11493 M:      Alan Stern <stern@rowland.harvard.edu>
11494 L:      linux-usb@vger.kernel.org
11495 S:      Maintained
11496 F:      drivers/usb/host/uhci*
11497
11498 USB "USBNET" DRIVER FRAMEWORK
11499 M:      Oliver Neukum <oneukum@suse.com>
11500 L:      netdev@vger.kernel.org
11501 W:      http://www.linux-usb.org/usbnet
11502 S:      Maintained
11503 F:      drivers/net/usb/usbnet.c
11504 F:      include/linux/usb/usbnet.h
11505
11506 USB VIDEO CLASS
11507 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11508 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
11509 L:      linux-media@vger.kernel.org
11510 T:      git git://linuxtv.org/media_tree.git
11511 W:      http://www.ideasonboard.org/uvc/
11512 S:      Maintained
11513 F:      drivers/media/usb/uvc/
11514 F:      include/uapi/linux/uvcvideo.h
11515
11516 USB VISION DRIVER
11517 M:      Hans Verkuil <hverkuil@xs4all.nl>
11518 L:      linux-media@vger.kernel.org
11519 T:      git git://linuxtv.org/media_tree.git
11520 W:      https://linuxtv.org
11521 S:      Odd Fixes
11522 F:      drivers/media/usb/usbvision/
11523
11524 USB WEBCAM GADGET
11525 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11526 L:      linux-usb@vger.kernel.org
11527 S:      Maintained
11528 F:      drivers/usb/gadget/function/*uvc*
11529 F:      drivers/usb/gadget/legacy/webcam.c
11530
11531 USB WIRELESS RNDIS DRIVER (rndis_wlan)
11532 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
11533 L:      linux-wireless@vger.kernel.org
11534 S:      Maintained
11535 F:      drivers/net/wireless/rndis_wlan.c
11536
11537 USB XHCI DRIVER
11538 M:      Mathias Nyman <mathias.nyman@intel.com>
11539 L:      linux-usb@vger.kernel.org
11540 S:      Supported
11541 F:      drivers/usb/host/xhci*
11542 F:      drivers/usb/host/pci-quirks*
11543
11544 USB ZD1201 DRIVER
11545 L:      linux-wireless@vger.kernel.org
11546 W:      http://linux-lc100020.sourceforge.net
11547 S:      Orphan
11548 F:      drivers/net/wireless/zydas/zd1201.*
11549
11550 USB ZR364XX DRIVER
11551 M:      Antoine Jacquet <royale@zerezo.com>
11552 L:      linux-usb@vger.kernel.org
11553 L:      linux-media@vger.kernel.org
11554 T:      git git://linuxtv.org/media_tree.git
11555 W:      http://royale.zerezo.com/zr364xx/
11556 S:      Maintained
11557 F:      Documentation/video4linux/zr364xx.txt
11558 F:      drivers/media/usb/zr364xx/
11559
11560 ULPI BUS
11561 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
11562 L:      linux-usb@vger.kernel.org
11563 S:      Maintained
11564 F:      drivers/usb/common/ulpi.c
11565 F:      include/linux/ulpi/
11566
11567 USER-MODE LINUX (UML)
11568 M:      Jeff Dike <jdike@addtoit.com>
11569 M:      Richard Weinberger <richard@nod.at>
11570 L:      user-mode-linux-devel@lists.sourceforge.net
11571 L:      user-mode-linux-user@lists.sourceforge.net
11572 W:      http://user-mode-linux.sourceforge.net
11573 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
11574 S:      Maintained
11575 F:      Documentation/virtual/uml/
11576 F:      arch/um/
11577 F:      arch/x86/um/
11578 F:      fs/hostfs/
11579 F:      fs/hppfs/
11580
11581 USERSPACE I/O (UIO)
11582 M:      "Hans J. Koch" <hjk@hansjkoch.de>
11583 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11584 S:      Maintained
11585 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
11586 F:      Documentation/DocBook/uio-howto.tmpl
11587 F:      drivers/uio/
11588 F:      include/linux/uio*.h
11589
11590 UTIL-LINUX PACKAGE
11591 M:      Karel Zak <kzak@redhat.com>
11592 L:      util-linux@vger.kernel.org
11593 W:      http://en.wikipedia.org/wiki/Util-linux
11594 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
11595 S:      Maintained
11596
11597 UVESAFB DRIVER
11598 M:      Michal Januszewski <spock@gentoo.org>
11599 L:      linux-fbdev@vger.kernel.org
11600 W:      http://dev.gentoo.org/~spock/projects/uvesafb/
11601 S:      Maintained
11602 F:      Documentation/fb/uvesafb.txt
11603 F:      drivers/video/fbdev/uvesafb.*
11604
11605 VF610 NAND DRIVER
11606 M:      Stefan Agner <stefan@agner.ch>
11607 L:      linux-mtd@lists.infradead.org
11608 S:      Supported
11609 F:      drivers/mtd/nand/vf610_nfc.c
11610
11611 VFAT/FAT/MSDOS FILESYSTEM
11612 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
11613 S:      Maintained
11614 F:      Documentation/filesystems/vfat.txt
11615 F:      fs/fat/
11616
11617 VFIO DRIVER
11618 M:      Alex Williamson <alex.williamson@redhat.com>
11619 L:      kvm@vger.kernel.org
11620 T:      git git://github.com/awilliam/linux-vfio.git
11621 S:      Maintained
11622 F:      Documentation/vfio.txt
11623 F:      drivers/vfio/
11624 F:      include/linux/vfio.h
11625 F:      include/uapi/linux/vfio.h
11626
11627 VFIO PLATFORM DRIVER
11628 M:      Baptiste Reynal <b.reynal@virtualopensystems.com>
11629 L:      kvm@vger.kernel.org
11630 S:      Maintained
11631 F:      drivers/vfio/platform/
11632
11633 VIDEOBUF2 FRAMEWORK
11634 M:      Pawel Osciak <pawel@osciak.com>
11635 M:      Marek Szyprowski <m.szyprowski@samsung.com>
11636 M:      Kyungmin Park <kyungmin.park@samsung.com>
11637 L:      linux-media@vger.kernel.org
11638 S:      Maintained
11639 F:      drivers/media/v4l2-core/videobuf2-*
11640 F:      include/media/videobuf2-*
11641
11642 VIRTUAL SERIO DEVICE DRIVER
11643 M:      Stephen Chandler Paul <thatslyude@gmail.com>
11644 S:      Maintained
11645 F:      drivers/input/serio/userio.c
11646 F:      include/uapi/linux/userio.h
11647
11648 VIRTIO CONSOLE DRIVER
11649 M:      Amit Shah <amit.shah@redhat.com>
11650 L:      virtualization@lists.linux-foundation.org
11651 S:      Maintained
11652 F:      drivers/char/virtio_console.c
11653 F:      include/linux/virtio_console.h
11654 F:      include/uapi/linux/virtio_console.h
11655
11656 VIRTIO CORE, NET AND BLOCK DRIVERS
11657 M:      "Michael S. Tsirkin" <mst@redhat.com>
11658 L:      virtualization@lists.linux-foundation.org
11659 S:      Maintained
11660 F:      drivers/virtio/
11661 F:      tools/virtio/
11662 F:      drivers/net/virtio_net.c
11663 F:      drivers/block/virtio_blk.c
11664 F:      include/linux/virtio_*.h
11665 F:      include/uapi/linux/virtio_*.h
11666
11667 VIRTIO DRIVERS FOR S390
11668 M:      Christian Borntraeger <borntraeger@de.ibm.com>
11669 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
11670 L:      linux-s390@vger.kernel.org
11671 L:      virtualization@lists.linux-foundation.org
11672 L:      kvm@vger.kernel.org
11673 S:      Supported
11674 F:      drivers/s390/virtio/
11675
11676 VIRTIO GPU DRIVER
11677 M:      David Airlie <airlied@linux.ie>
11678 M:      Gerd Hoffmann <kraxel@redhat.com>
11679 L:      dri-devel@lists.freedesktop.org
11680 L:      virtualization@lists.linux-foundation.org
11681 S:      Maintained
11682 F:      drivers/gpu/drm/virtio/
11683 F:      include/uapi/linux/virtio_gpu.h
11684
11685 VIRTIO HOST (VHOST)
11686 M:      "Michael S. Tsirkin" <mst@redhat.com>
11687 L:      kvm@vger.kernel.org
11688 L:      virtualization@lists.linux-foundation.org
11689 L:      netdev@vger.kernel.org
11690 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
11691 S:      Maintained
11692 F:      drivers/vhost/
11693 F:      include/uapi/linux/vhost.h
11694
11695 VIRTIO INPUT DRIVER
11696 M:      Gerd Hoffmann <kraxel@redhat.com>
11697 S:      Maintained
11698 F:      drivers/virtio/virtio_input.c
11699 F:      include/uapi/linux/virtio_input.h
11700
11701 VIA RHINE NETWORK DRIVER
11702 S:      Orphan
11703 F:      drivers/net/ethernet/via/via-rhine.c
11704
11705 VIA SD/MMC CARD CONTROLLER DRIVER
11706 M:      Bruce Chang <brucechang@via.com.tw>
11707 M:      Harald Welte <HaraldWelte@viatech.com>
11708 S:      Maintained
11709 F:      drivers/mmc/host/via-sdmmc.c
11710
11711 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
11712 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
11713 L:      linux-fbdev@vger.kernel.org
11714 S:      Maintained
11715 F:      include/linux/via-core.h
11716 F:      include/linux/via-gpio.h
11717 F:      include/linux/via_i2c.h
11718 F:      drivers/video/fbdev/via/
11719
11720 VIA VELOCITY NETWORK DRIVER
11721 M:      Francois Romieu <romieu@fr.zoreil.com>
11722 L:      netdev@vger.kernel.org
11723 S:      Maintained
11724 F:      drivers/net/ethernet/via/via-velocity.*
11725
11726 VIRT LIB
11727 M:      Alex Williamson <alex.williamson@redhat.com>
11728 M:      Paolo Bonzini <pbonzini@redhat.com>
11729 L:      kvm@vger.kernel.org
11730 S:      Supported
11731 F:      virt/lib/
11732
11733 VIVID VIRTUAL VIDEO DRIVER
11734 M:      Hans Verkuil <hverkuil@xs4all.nl>
11735 L:      linux-media@vger.kernel.org
11736 T:      git git://linuxtv.org/media_tree.git
11737 W:      https://linuxtv.org
11738 S:      Maintained
11739 F:      drivers/media/platform/vivid/*
11740
11741 VLAN (802.1Q)
11742 M:      Patrick McHardy <kaber@trash.net>
11743 L:      netdev@vger.kernel.org
11744 S:      Maintained
11745 F:      drivers/net/macvlan.c
11746 F:      include/linux/if_*vlan.h
11747 F:      net/8021q/
11748
11749 VLYNQ BUS
11750 M:      Florian Fainelli <florian@openwrt.org>
11751 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
11752 S:      Maintained
11753 F:      drivers/vlynq/vlynq.c
11754 F:      include/linux/vlynq.h
11755
11756 VME SUBSYSTEM
11757 M:      Martyn Welch <martyn@welchs.me.uk>
11758 M:      Manohar Vanga <manohar.vanga@gmail.com>
11759 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11760 L:      devel@driverdev.osuosl.org
11761 S:      Maintained
11762 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
11763 F:      Documentation/vme_api.txt
11764 F:      drivers/staging/vme/
11765 F:      drivers/vme/
11766 F:      include/linux/vme*
11767
11768 VMWARE HYPERVISOR INTERFACE
11769 M:      Alok Kataria <akataria@vmware.com>
11770 L:      virtualization@lists.linux-foundation.org
11771 S:      Supported
11772 F:      arch/x86/kernel/cpu/vmware.c
11773
11774 VMWARE BALLOON DRIVER
11775 M:      Xavier Deguillard <xdeguillard@vmware.com>
11776 M:      Philip Moltmann <moltmann@vmware.com>
11777 M:      "VMware, Inc." <pv-drivers@vmware.com>
11778 L:      linux-kernel@vger.kernel.org
11779 S:      Maintained
11780 F:      drivers/misc/vmw_balloon.c
11781
11782 VMWARE VMMOUSE SUBDRIVER
11783 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
11784 M:      "VMware, Inc." <pv-drivers@vmware.com>
11785 L:      linux-input@vger.kernel.org
11786 S:      Maintained
11787 F:      drivers/input/mouse/vmmouse.c
11788 F:      drivers/input/mouse/vmmouse.h
11789
11790 VMWARE VMXNET3 ETHERNET DRIVER
11791 M:      Shrikrishna Khare <skhare@vmware.com>
11792 M:      "VMware, Inc." <pv-drivers@vmware.com>
11793 L:      netdev@vger.kernel.org
11794 S:      Maintained
11795 F:      drivers/net/vmxnet3/
11796
11797 VMware PVSCSI driver
11798 M:      Arvind Kumar <arvindkumar@vmware.com>
11799 M:      VMware PV-Drivers <pv-drivers@vmware.com>
11800 L:      linux-scsi@vger.kernel.org
11801 S:      Maintained
11802 F:      drivers/scsi/vmw_pvscsi.c
11803 F:      drivers/scsi/vmw_pvscsi.h
11804
11805 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
11806 M:      Liam Girdwood <lgirdwood@gmail.com>
11807 M:      Mark Brown <broonie@kernel.org>
11808 L:      linux-kernel@vger.kernel.org
11809 W:      http://www.slimlogic.co.uk/?p=48
11810 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
11811 S:      Supported
11812 F:      drivers/regulator/
11813 F:      include/linux/regulator/
11814
11815 VRF
11816 M:      David Ahern <dsa@cumulusnetworks.com>
11817 M:      Shrijeet Mukherjee <shm@cumulusnetworks.com>
11818 L:      netdev@vger.kernel.org
11819 S:      Maintained
11820 F:      drivers/net/vrf.c
11821 F:      Documentation/networking/vrf.txt
11822
11823 VT1211 HARDWARE MONITOR DRIVER
11824 M:      Juerg Haefliger <juergh@gmail.com>
11825 L:      lm-sensors@lm-sensors.org
11826 S:      Maintained
11827 F:      Documentation/hwmon/vt1211
11828 F:      drivers/hwmon/vt1211.c
11829
11830 VT8231 HARDWARE MONITOR DRIVER
11831 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
11832 L:      lm-sensors@lm-sensors.org
11833 S:      Maintained
11834 F:      drivers/hwmon/vt8231.c
11835
11836 VUB300 USB to SDIO/SD/MMC bridge chip
11837 M:      Tony Olech <tony.olech@elandigitalsystems.com>
11838 L:      linux-mmc@vger.kernel.org
11839 L:      linux-usb@vger.kernel.org
11840 S:      Supported
11841 F:      drivers/mmc/host/vub300.c
11842
11843 W1 DALLAS'S 1-WIRE BUS
11844 M:      Evgeniy Polyakov <zbr@ioremap.net>
11845 S:      Maintained
11846 F:      Documentation/w1/
11847 F:      drivers/w1/
11848
11849 W83791D HARDWARE MONITORING DRIVER
11850 M:      Marc Hulsman <m.hulsman@tudelft.nl>
11851 L:      lm-sensors@lm-sensors.org
11852 S:      Maintained
11853 F:      Documentation/hwmon/w83791d
11854 F:      drivers/hwmon/w83791d.c
11855
11856 W83793 HARDWARE MONITORING DRIVER
11857 M:      Rudolf Marek <r.marek@assembler.cz>
11858 L:      lm-sensors@lm-sensors.org
11859 S:      Maintained
11860 F:      Documentation/hwmon/w83793
11861 F:      drivers/hwmon/w83793.c
11862
11863 W83795 HARDWARE MONITORING DRIVER
11864 M:      Jean Delvare <jdelvare@suse.com>
11865 L:      lm-sensors@lm-sensors.org
11866 S:      Maintained
11867 F:      drivers/hwmon/w83795.c
11868
11869 W83L51xD SD/MMC CARD INTERFACE DRIVER
11870 M:      Pierre Ossman <pierre@ossman.eu>
11871 S:      Maintained
11872 F:      drivers/mmc/host/wbsd.*
11873
11874 WACOM PROTOCOL 4 SERIAL TABLETS
11875 M:      Julian Squires <julian@cipht.net>
11876 M:      Hans de Goede <hdegoede@redhat.com>
11877 L:      linux-input@vger.kernel.org
11878 S:      Maintained
11879 F:      drivers/input/tablet/wacom_serial4.c
11880
11881 WATCHDOG DEVICE DRIVERS
11882 M:      Wim Van Sebroeck <wim@iguana.be>
11883 R:      Guenter Roeck <linux@roeck-us.net>
11884 L:      linux-watchdog@vger.kernel.org
11885 W:      http://www.linux-watchdog.org/
11886 T:      git git://www.linux-watchdog.org/linux-watchdog.git
11887 S:      Maintained
11888 F:      Documentation/watchdog/
11889 F:      drivers/watchdog/
11890 F:      include/linux/watchdog.h
11891 F:      include/uapi/linux/watchdog.h
11892
11893 WD7000 SCSI DRIVER
11894 M:      Miroslav Zagorac <zaga@fly.cc.fer.hr>
11895 L:      linux-scsi@vger.kernel.org
11896 S:      Maintained
11897 F:      drivers/scsi/wd7000.c
11898
11899 WIIMOTE HID DRIVER
11900 M:      David Herrmann <dh.herrmann@googlemail.com>
11901 L:      linux-input@vger.kernel.org
11902 S:      Maintained
11903 F:      drivers/hid/hid-wiimote*
11904
11905 WINBOND CIR DRIVER
11906 M:      David Härdeman <david@hardeman.nu>
11907 S:      Maintained
11908 F:      drivers/media/rc/winbond-cir.c
11909
11910 WIMAX STACK
11911 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
11912 M:      linux-wimax@intel.com
11913 L:      wimax@linuxwimax.org (subscribers-only)
11914 S:      Supported
11915 W:      http://linuxwimax.org
11916 F:      Documentation/wimax/README.wimax
11917 F:      include/linux/wimax/debug.h
11918 F:      include/net/wimax.h
11919 F:      include/uapi/linux/wimax.h
11920 F:      net/wimax/
11921
11922 WISTRON LAPTOP BUTTON DRIVER
11923 M:      Miloslav Trmac <mitr@volny.cz>
11924 S:      Maintained
11925 F:      drivers/input/misc/wistron_btns.c
11926
11927 WL3501 WIRELESS PCMCIA CARD DRIVER
11928 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
11929 L:      linux-wireless@vger.kernel.org
11930 W:      http://oops.ghostprotocols.net:81/blog
11931 S:      Maintained
11932 F:      drivers/net/wireless/wl3501*
11933
11934 WOLFSON MICROELECTRONICS DRIVERS
11935 L:      patches@opensource.wolfsonmicro.com
11936 T:      git https://github.com/CirrusLogic/linux-drivers.git
11937 W:      https://github.com/CirrusLogic/linux-drivers/wiki
11938 S:      Supported
11939 F:      Documentation/hwmon/wm83??
11940 F:      Documentation/devicetree/bindings/extcon/extcon-arizona.txt
11941 F:      Documentation/devicetree/bindings/regulator/arizona-regulator.txt
11942 F:      Documentation/devicetree/bindings/mfd/arizona.txt
11943 F:      arch/arm/mach-s3c64xx/mach-crag6410*
11944 F:      drivers/clk/clk-wm83*.c
11945 F:      drivers/extcon/extcon-arizona.c
11946 F:      drivers/leds/leds-wm83*.c
11947 F:      drivers/gpio/gpio-*wm*.c
11948 F:      drivers/gpio/gpio-arizona.c
11949 F:      drivers/hwmon/wm83??-hwmon.c
11950 F:      drivers/input/misc/wm831x-on.c
11951 F:      drivers/input/touchscreen/wm831x-ts.c
11952 F:      drivers/input/touchscreen/wm97*.c
11953 F:      drivers/mfd/arizona*
11954 F:      drivers/mfd/wm*.c
11955 F:      drivers/mfd/cs47l24*
11956 F:      drivers/power/wm83*.c
11957 F:      drivers/rtc/rtc-wm83*.c
11958 F:      drivers/regulator/wm8*.c
11959 F:      drivers/video/backlight/wm83*_bl.c
11960 F:      drivers/watchdog/wm83*_wdt.c
11961 F:      include/linux/mfd/arizona/
11962 F:      include/linux/mfd/wm831x/
11963 F:      include/linux/mfd/wm8350/
11964 F:      include/linux/mfd/wm8400*
11965 F:      include/linux/wm97xx.h
11966 F:      include/sound/wm????.h
11967 F:      sound/soc/codecs/arizona.?
11968 F:      sound/soc/codecs/wm*
11969 F:      sound/soc/codecs/cs47l24*
11970
11971 WORKQUEUE
11972 M:      Tejun Heo <tj@kernel.org>
11973 R:      Lai Jiangshan <jiangshanlai@gmail.com>
11974 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
11975 S:      Maintained
11976 F:      include/linux/workqueue.h
11977 F:      kernel/workqueue.c
11978 F:      Documentation/workqueue.txt
11979
11980 X.25 NETWORK LAYER
11981 M:      Andrew Hendry <andrew.hendry@gmail.com>
11982 L:      linux-x25@vger.kernel.org
11983 S:      Odd Fixes
11984 F:      Documentation/networking/x25*
11985 F:      include/net/x25*
11986 F:      net/x25/
11987
11988 X86 ARCHITECTURE (32-BIT AND 64-BIT)
11989 M:      Thomas Gleixner <tglx@linutronix.de>
11990 M:      Ingo Molnar <mingo@redhat.com>
11991 M:      "H. Peter Anvin" <hpa@zytor.com>
11992 M:      x86@kernel.org
11993 L:      linux-kernel@vger.kernel.org
11994 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
11995 S:      Maintained
11996 F:      Documentation/x86/
11997 F:      arch/x86/
11998
11999 X86 PLATFORM DRIVERS
12000 M:      Darren Hart <dvhart@infradead.org>
12001 L:      platform-driver-x86@vger.kernel.org
12002 T:      git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git
12003 S:      Maintained
12004 F:      drivers/platform/x86/
12005 F:      drivers/platform/olpc/
12006
12007 X86 MCE INFRASTRUCTURE
12008 M:      Tony Luck <tony.luck@intel.com>
12009 M:      Borislav Petkov <bp@alien8.de>
12010 L:      linux-edac@vger.kernel.org
12011 S:      Maintained
12012 F:      arch/x86/kernel/cpu/mcheck/*
12013
12014 X86 MICROCODE UPDATE SUPPORT
12015 M:      Borislav Petkov <bp@alien8.de>
12016 S:      Maintained
12017 F:      arch/x86/kernel/cpu/microcode/*
12018
12019 X86 VDSO
12020 M:      Andy Lutomirski <luto@amacapital.net>
12021 L:      linux-kernel@vger.kernel.org
12022 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
12023 S:      Maintained
12024 F:      arch/x86/entry/vdso/
12025
12026 XC2028/3028 TUNER DRIVER
12027 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
12028 L:      linux-media@vger.kernel.org
12029 W:      https://linuxtv.org
12030 T:      git git://linuxtv.org/media_tree.git
12031 S:      Maintained
12032 F:      drivers/media/tuners/tuner-xc2028.*
12033
12034 XEN HYPERVISOR INTERFACE
12035 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
12036 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
12037 M:      David Vrabel <david.vrabel@citrix.com>
12038 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12039 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
12040 S:      Supported
12041 F:      arch/x86/xen/
12042 F:      drivers/*/xen-*front.c
12043 F:      drivers/xen/
12044 F:      arch/x86/include/asm/xen/
12045 F:      include/xen/
12046 F:      include/uapi/xen/
12047
12048 XEN HYPERVISOR ARM
12049 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
12050 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12051 S:      Supported
12052 F:      arch/arm/xen/
12053 F:      arch/arm/include/asm/xen/
12054
12055 XEN HYPERVISOR ARM64
12056 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
12057 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12058 S:      Supported
12059 F:      arch/arm64/xen/
12060 F:      arch/arm64/include/asm/xen/
12061
12062 XEN NETWORK BACKEND DRIVER
12063 M:      Wei Liu <wei.liu2@citrix.com>
12064 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12065 L:      netdev@vger.kernel.org
12066 S:      Supported
12067 F:      drivers/net/xen-netback/*
12068
12069 XEN PCI SUBSYSTEM
12070 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
12071 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12072 S:      Supported
12073 F:      arch/x86/pci/*xen*
12074 F:      drivers/pci/*xen*
12075
12076 XEN BLOCK SUBSYSTEM
12077 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
12078 M:      Roger Pau MonnĂ© <roger.pau@citrix.com>
12079 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12080 S:      Supported
12081 F:      drivers/block/xen-blkback/*
12082 F:      drivers/block/xen*
12083
12084 XEN PVSCSI DRIVERS
12085 M:      Juergen Gross <jgross@suse.com>
12086 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12087 L:      linux-scsi@vger.kernel.org
12088 S:      Supported
12089 F:      drivers/scsi/xen-scsifront.c
12090 F:      drivers/xen/xen-scsiback.c
12091 F:      include/xen/interface/io/vscsiif.h
12092
12093 XEN SWIOTLB SUBSYSTEM
12094 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
12095 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12096 S:      Supported
12097 F:      arch/x86/xen/*swiotlb*
12098 F:      drivers/xen/*swiotlb*
12099
12100 XFS FILESYSTEM
12101 P:      Silicon Graphics Inc
12102 M:      Dave Chinner <david@fromorbit.com>
12103 M:      xfs@oss.sgi.com
12104 L:      xfs@oss.sgi.com
12105 W:      http://oss.sgi.com/projects/xfs
12106 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dgc/linux-xfs.git
12107 S:      Supported
12108 F:      Documentation/filesystems/xfs.txt
12109 F:      fs/xfs/
12110
12111 XILINX AXI ETHERNET DRIVER
12112 M:      Anirudha Sarangi <anirudh@xilinx.com>
12113 M:      John Linn <John.Linn@xilinx.com>
12114 S:      Maintained
12115 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
12116
12117 XILINX UARTLITE SERIAL DRIVER
12118 M:      Peter Korsgaard <jacmet@sunsite.dk>
12119 L:      linux-serial@vger.kernel.org
12120 S:      Maintained
12121 F:      drivers/tty/serial/uartlite.c
12122
12123 XILINX VIDEO IP CORES
12124 M:      Hyun Kwon <hyun.kwon@xilinx.com>
12125 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12126 L:      linux-media@vger.kernel.org
12127 T:      git git://linuxtv.org/media_tree.git
12128 S:      Supported
12129 F:      Documentation/devicetree/bindings/media/xilinx/
12130 F:      drivers/media/platform/xilinx/
12131 F:      include/uapi/linux/xilinx-v4l2-controls.h
12132
12133 XILLYBUS DRIVER
12134 M:      Eli Billauer <eli.billauer@gmail.com>
12135 L:      linux-kernel@vger.kernel.org
12136 S:      Supported
12137 F:      drivers/char/xillybus/
12138
12139 XTENSA XTFPGA PLATFORM SUPPORT
12140 M:      Max Filippov <jcmvbkbc@gmail.com>
12141 L:      linux-xtensa@linux-xtensa.org
12142 S:      Maintained
12143 F:      drivers/spi/spi-xtensa-xtfpga.c
12144 F:      sound/soc/xtensa/xtfpga-i2s.c
12145
12146 YAM DRIVER FOR AX.25
12147 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
12148 L:      linux-hams@vger.kernel.org
12149 S:      Maintained
12150 F:      drivers/net/hamradio/yam*
12151 F:      include/linux/yam.h
12152
12153 YEALINK PHONE DRIVER
12154 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
12155 L:      usbb2k-api-dev@nongnu.org
12156 S:      Maintained
12157 F:      Documentation/input/yealink.txt
12158 F:      drivers/input/misc/yealink.*
12159
12160 Z8530 DRIVER FOR AX.25
12161 M:      Joerg Reuter <jreuter@yaina.de>
12162 W:      http://yaina.de/jreuter/
12163 W:      http://www.qsl.net/dl1bke/
12164 L:      linux-hams@vger.kernel.org
12165 S:      Maintained
12166 F:      Documentation/networking/z8530drv.txt
12167 F:      drivers/net/hamradio/*scc.c
12168 F:      drivers/net/hamradio/z8530.h
12169
12170 ZBUD COMPRESSED PAGE ALLOCATOR
12171 M:      Seth Jennings <sjenning@redhat.com>
12172 L:      linux-mm@kvack.org
12173 S:      Maintained
12174 F:      mm/zbud.c
12175 F:      include/linux/zbud.h
12176
12177 ZD1211RW WIRELESS DRIVER
12178 M:      Daniel Drake <dsd@gentoo.org>
12179 M:      Ulrich Kunitz <kune@deine-taler.de>
12180 W:      http://zd1211.ath.cx/wiki/DriverRewrite
12181 L:      linux-wireless@vger.kernel.org
12182 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
12183 S:      Maintained
12184 F:      drivers/net/wireless/zydas/zd1211rw/
12185
12186 ZPOOL COMPRESSED PAGE STORAGE API
12187 M:      Dan Streetman <ddstreet@ieee.org>
12188 L:      linux-mm@kvack.org
12189 S:      Maintained
12190 F:      mm/zpool.c
12191 F:      include/linux/zpool.h
12192
12193 ZR36067 VIDEO FOR LINUX DRIVER
12194 L:      mjpeg-users@lists.sourceforge.net
12195 L:      linux-media@vger.kernel.org
12196 W:      http://mjpeg.sourceforge.net/driver-zoran/
12197 T:      hg https://linuxtv.org/hg/v4l-dvb
12198 S:      Odd Fixes
12199 F:      drivers/media/pci/zoran/
12200
12201 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
12202 M:      Minchan Kim <minchan@kernel.org>
12203 M:      Nitin Gupta <ngupta@vflare.org>
12204 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
12205 L:      linux-kernel@vger.kernel.org
12206 S:      Maintained
12207 F:      drivers/block/zram/
12208 F:      Documentation/blockdev/zram.txt
12209
12210 ZS DECSTATION Z85C30 SERIAL DRIVER
12211 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
12212 S:      Maintained
12213 F:      drivers/tty/serial/zs.*
12214
12215 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
12216 M:      Minchan Kim <minchan@kernel.org>
12217 M:      Nitin Gupta <ngupta@vflare.org>
12218 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
12219 L:      linux-mm@kvack.org
12220 S:      Maintained
12221 F:      mm/zsmalloc.c
12222 F:      include/linux/zsmalloc.h
12223 F:      Documentation/vm/zsmalloc.txt
12224
12225 ZSWAP COMPRESSED SWAP CACHING
12226 M:      Seth Jennings <sjenning@redhat.com>
12227 L:      linux-mm@kvack.org
12228 S:      Maintained
12229 F:      mm/zswap.c
12230
12231 THE REST
12232 M:      Linus Torvalds <torvalds@linux-foundation.org>
12233 L:      linux-kernel@vger.kernel.org
12234 Q:      http://patchwork.kernel.org/project/LKML/list/
12235 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
12236 S:      Buried alive in reporters
12237 F:      *
12238 F:      */