team: don't call netdev_change_features under team->lock
[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 S:      Maintained
179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
180 F:      drivers/tty/serial/8250*
181 F:      include/linux/serial_8250.h
182
183 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
184 L:      netdev@vger.kernel.org
185 S:      Orphan / Obsolete
186 F:      drivers/net/ethernet/8390/
187
188 9P FILE SYSTEM
189 M:      Eric Van Hensbergen <ericvh@gmail.com>
190 M:      Ron Minnich <rminnich@sandia.gov>
191 M:      Latchesar Ionkov <lucho@ionkov.net>
192 L:      v9fs-developer@lists.sourceforge.net
193 W:      http://swik.net/v9fs
194 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
195 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
196 S:      Maintained
197 F:      Documentation/filesystems/9p.txt
198 F:      fs/9p/
199 F:      net/9p/
200 F:      include/net/9p/
201 F:      include/uapi/linux/virtio_9p.h
202 F:      include/trace/events/9p.h
203
204
205 A8293 MEDIA DRIVER
206 M:      Antti Palosaari <crope@iki.fi>
207 L:      linux-media@vger.kernel.org
208 W:      https://linuxtv.org
209 W:      http://palosaari.fi/linux/
210 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
211 T:      git git://linuxtv.org/anttip/media_tree.git
212 S:      Maintained
213 F:      drivers/media/dvb-frontends/a8293*
214
215 AACRAID SCSI RAID DRIVER
216 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
217 L:      linux-scsi@vger.kernel.org
218 W:      http://www.adaptec.com/
219 S:      Supported
220 F:      Documentation/scsi/aacraid.txt
221 F:      drivers/scsi/aacraid/
222
223 ABI/API
224 L:      linux-api@vger.kernel.org
225 F:      include/linux/syscalls.h
226 F:      kernel/sys_ni.c
227
228 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
229 M:      Hans de Goede <hdegoede@redhat.com>
230 L:      linux-hwmon@vger.kernel.org
231 S:      Maintained
232 F:      drivers/hwmon/abituguru.c
233
234 ABIT UGURU 3 HARDWARE MONITOR DRIVER
235 M:      Alistair John Strachan <alistair@devzero.co.uk>
236 L:      linux-hwmon@vger.kernel.org
237 S:      Maintained
238 F:      drivers/hwmon/abituguru3.c
239
240 ACCES 104-DIO-48E GPIO DRIVER
241 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
242 L:      linux-gpio@vger.kernel.org
243 S:      Maintained
244 F:      drivers/gpio/gpio-104-dio-48e.c
245
246 ACCES 104-IDI-48 GPIO DRIVER
247 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
248 L:      linux-gpio@vger.kernel.org
249 S:      Maintained
250 F:      drivers/gpio/gpio-104-idi-48.c
251
252 ACCES 104-IDIO-16 GPIO DRIVER
253 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
254 L:      linux-gpio@vger.kernel.org
255 S:      Maintained
256 F:      drivers/gpio/gpio-104-idio-16.c
257
258 ACENIC DRIVER
259 M:      Jes Sorensen <jes@trained-monkey.org>
260 L:      linux-acenic@sunsite.dk
261 S:      Maintained
262 F:      drivers/net/ethernet/alteon/acenic*
263
264 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
265 M:      Peter Feuerer <peter@piie.net>
266 L:      platform-driver-x86@vger.kernel.org
267 W:      http://piie.net/?section=acerhdf
268 S:      Maintained
269 F:      drivers/platform/x86/acerhdf.c
270
271 ACER WMI LAPTOP EXTRAS
272 M:      "Lee, Chun-Yi" <jlee@suse.com>
273 L:      platform-driver-x86@vger.kernel.org
274 S:      Maintained
275 F:      drivers/platform/x86/acer-wmi.c
276
277 ACPI
278 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
279 M:      Len Brown <lenb@kernel.org>
280 L:      linux-acpi@vger.kernel.org
281 W:      https://01.org/linux-acpi
282 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
283 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
284 S:      Supported
285 F:      drivers/acpi/
286 F:      drivers/pnp/pnpacpi/
287 F:      include/linux/acpi.h
288 F:      include/acpi/
289 F:      Documentation/acpi/
290 F:      Documentation/ABI/testing/sysfs-bus-acpi
291 F:      drivers/pci/*acpi*
292 F:      drivers/pci/*/*acpi*
293 F:      drivers/pci/*/*/*acpi*
294 F:      tools/power/acpi/
295
296 ACPI COMPONENT ARCHITECTURE (ACPICA)
297 M:      Robert Moore <robert.moore@intel.com>
298 M:      Lv Zheng <lv.zheng@intel.com>
299 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
300 L:      linux-acpi@vger.kernel.org
301 L:      devel@acpica.org
302 W:      https://acpica.org/
303 W:      https://github.com/acpica/acpica/
304 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
305 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
306 S:      Supported
307 F:      drivers/acpi/acpica/
308 F:      include/acpi/
309 F:      tools/power/acpi/
310
311 ACPI FAN DRIVER
312 M:      Zhang Rui <rui.zhang@intel.com>
313 L:      linux-acpi@vger.kernel.org
314 W:      https://01.org/linux-acpi
315 S:      Supported
316 F:      drivers/acpi/fan.c
317
318 ACPI THERMAL DRIVER
319 M:      Zhang Rui <rui.zhang@intel.com>
320 L:      linux-acpi@vger.kernel.org
321 W:      https://01.org/linux-acpi
322 S:      Supported
323 F:      drivers/acpi/*thermal*
324
325 ACPI VIDEO DRIVER
326 M:      Zhang Rui <rui.zhang@intel.com>
327 L:      linux-acpi@vger.kernel.org
328 W:      https://01.org/linux-acpi
329 S:      Supported
330 F:      drivers/acpi/acpi_video.c
331
332 ACPI WMI DRIVER
333 L:      platform-driver-x86@vger.kernel.org
334 S:      Orphan
335 F:      drivers/platform/x86/wmi.c
336
337 AD1889 ALSA SOUND DRIVER
338 M:      Thibaut Varene <T-Bone@parisc-linux.org>
339 W:      http://wiki.parisc-linux.org/AD1889
340 L:      linux-parisc@vger.kernel.org
341 S:      Maintained
342 F:      sound/pci/ad1889.*
343
344 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
345 M:      Michael Hennerich <michael.hennerich@analog.com>
346 W:      http://wiki.analog.com/AD5254
347 W:      http://ez.analog.com/community/linux-device-drivers
348 S:      Supported
349 F:      drivers/misc/ad525x_dpot.c
350
351 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
352 M:      Michael Hennerich <michael.hennerich@analog.com>
353 W:      http://wiki.analog.com/AD5398
354 W:      http://ez.analog.com/community/linux-device-drivers
355 S:      Supported
356 F:      drivers/regulator/ad5398.c
357
358 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
359 M:      Michael Hennerich <michael.hennerich@analog.com>
360 W:      http://wiki.analog.com/AD7142
361 W:      http://ez.analog.com/community/linux-device-drivers
362 S:      Supported
363 F:      drivers/input/misc/ad714x.c
364
365 AD7877 TOUCHSCREEN DRIVER
366 M:      Michael Hennerich <michael.hennerich@analog.com>
367 W:      http://wiki.analog.com/AD7877
368 W:      http://ez.analog.com/community/linux-device-drivers
369 S:      Supported
370 F:      drivers/input/touchscreen/ad7877.c
371
372 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
373 M:      Michael Hennerich <michael.hennerich@analog.com>
374 W:      http://wiki.analog.com/AD7879
375 W:      http://ez.analog.com/community/linux-device-drivers
376 S:      Supported
377 F:      drivers/input/touchscreen/ad7879.c
378
379 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
380 M:      Jiri Kosina <jikos@kernel.org>
381 S:      Maintained
382
383 ADF7242 IEEE 802.15.4 RADIO DRIVER
384 M:      Michael Hennerich <michael.hennerich@analog.com>
385 W:      https://wiki.analog.com/ADF7242
386 W:      http://ez.analog.com/community/linux-device-drivers
387 L:      linux-wpan@vger.kernel.org
388 S:      Supported
389 F:      drivers/net/ieee802154/adf7242.c
390 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
391
392 ADM1025 HARDWARE MONITOR DRIVER
393 M:      Jean Delvare <jdelvare@suse.com>
394 L:      linux-hwmon@vger.kernel.org
395 S:      Maintained
396 F:      Documentation/hwmon/adm1025
397 F:      drivers/hwmon/adm1025.c
398
399 ADM1029 HARDWARE MONITOR DRIVER
400 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
401 L:      linux-hwmon@vger.kernel.org
402 S:      Maintained
403 F:      drivers/hwmon/adm1029.c
404
405 ADM8211 WIRELESS DRIVER
406 L:      linux-wireless@vger.kernel.org
407 W:      http://wireless.kernel.org/
408 S:      Orphan
409 F:      drivers/net/wireless/admtek/adm8211.*
410
411 ADP1653 FLASH CONTROLLER DRIVER
412 M:      Sakari Ailus <sakari.ailus@iki.fi>
413 L:      linux-media@vger.kernel.org
414 S:      Maintained
415 F:      drivers/media/i2c/adp1653.c
416 F:      include/media/i2c/adp1653.h
417
418 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
419 M:      Michael Hennerich <michael.hennerich@analog.com>
420 W:      http://wiki.analog.com/ADP5520
421 W:      http://ez.analog.com/community/linux-device-drivers
422 S:      Supported
423 F:      drivers/mfd/adp5520.c
424 F:      drivers/video/backlight/adp5520_bl.c
425 F:      drivers/leds/leds-adp5520.c
426 F:      drivers/gpio/gpio-adp5520.c
427 F:      drivers/input/keyboard/adp5520-keys.c
428
429 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
430 M:      Michael Hennerich <michael.hennerich@analog.com>
431 W:      http://wiki.analog.com/ADP5588
432 W:      http://ez.analog.com/community/linux-device-drivers
433 S:      Supported
434 F:      drivers/input/keyboard/adp5588-keys.c
435 F:      drivers/gpio/gpio-adp5588.c
436
437 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
438 M:      Michael Hennerich <michael.hennerich@analog.com>
439 W:      http://wiki.analog.com/ADP8860
440 W:      http://ez.analog.com/community/linux-device-drivers
441 S:      Supported
442 F:      drivers/video/backlight/adp8860_bl.c
443
444 ADS1015 HARDWARE MONITOR DRIVER
445 M:      Dirk Eibach <eibach@gdsys.de>
446 L:      linux-hwmon@vger.kernel.org
447 S:      Maintained
448 F:      Documentation/hwmon/ads1015
449 F:      drivers/hwmon/ads1015.c
450 F:      include/linux/i2c/ads1015.h
451
452 ADT746X FAN DRIVER
453 M:      Colin Leroy <colin@colino.net>
454 S:      Maintained
455 F:      drivers/macintosh/therm_adt746x.c
456
457 ADT7475 HARDWARE MONITOR DRIVER
458 M:      Jean Delvare <jdelvare@suse.com>
459 L:      linux-hwmon@vger.kernel.org
460 S:      Maintained
461 F:      Documentation/hwmon/adt7475
462 F:      drivers/hwmon/adt7475.c
463
464 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
465 M:      Michael Hennerich <michael.hennerich@analog.com>
466 W:      http://wiki.analog.com/ADXL345
467 W:      http://ez.analog.com/community/linux-device-drivers
468 S:      Supported
469 F:      drivers/input/misc/adxl34x.c
470
471 ADVANSYS SCSI DRIVER
472 M:      Matthew Wilcox <matthew@wil.cx>
473 M:      Hannes Reinecke <hare@suse.com>
474 L:      linux-scsi@vger.kernel.org
475 S:      Maintained
476 F:      Documentation/scsi/advansys.txt
477 F:      drivers/scsi/advansys.c
478
479 AEDSP16 DRIVER
480 M:      Riccardo Facchetti <fizban@tin.it>
481 S:      Maintained
482 F:      sound/oss/aedsp16.c
483
484 AF9013 MEDIA DRIVER
485 M:      Antti Palosaari <crope@iki.fi>
486 L:      linux-media@vger.kernel.org
487 W:      https://linuxtv.org
488 W:      http://palosaari.fi/linux/
489 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
490 T:      git git://linuxtv.org/anttip/media_tree.git
491 S:      Maintained
492 F:      drivers/media/dvb-frontends/af9013*
493
494 AF9033 MEDIA DRIVER
495 M:      Antti Palosaari <crope@iki.fi>
496 L:      linux-media@vger.kernel.org
497 W:      https://linuxtv.org
498 W:      http://palosaari.fi/linux/
499 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
500 T:      git git://linuxtv.org/anttip/media_tree.git
501 S:      Maintained
502 F:      drivers/media/dvb-frontends/af9033*
503
504 AFFS FILE SYSTEM
505 L:      linux-fsdevel@vger.kernel.org
506 S:      Orphan
507 F:      Documentation/filesystems/affs.txt
508 F:      fs/affs/
509
510 AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
511 M:      David Howells <dhowells@redhat.com>
512 L:      linux-afs@lists.infradead.org
513 S:      Supported
514 F:      fs/afs/
515 F:      include/net/af_rxrpc.h
516 F:      net/rxrpc/af_rxrpc.c
517
518 AGPGART DRIVER
519 M:      David Airlie <airlied@linux.ie>
520 T:      git git://people.freedesktop.org/~airlied/linux (part of drm maint)
521 S:      Maintained
522 F:      drivers/char/agp/
523 F:      include/linux/agp*
524 F:      include/uapi/linux/agp*
525
526 AHA152X SCSI DRIVER
527 M:      "Juergen E. Fischer" <fischer@norbit.de>
528 L:      linux-scsi@vger.kernel.org
529 S:      Maintained
530 F:      drivers/scsi/aha152x*
531 F:      drivers/scsi/pcmcia/aha152x*
532
533 AIC7XXX / AIC79XX SCSI DRIVER
534 M:      Hannes Reinecke <hare@suse.com>
535 L:      linux-scsi@vger.kernel.org
536 S:      Maintained
537 F:      drivers/scsi/aic7xxx/
538
539 AIMSLAB FM RADIO RECEIVER DRIVER
540 M:      Hans Verkuil <hverkuil@xs4all.nl>
541 L:      linux-media@vger.kernel.org
542 T:      git git://linuxtv.org/media_tree.git
543 W:      https://linuxtv.org
544 S:      Maintained
545 F:      drivers/media/radio/radio-aimslab*
546
547 AIO
548 M:      Benjamin LaHaise <bcrl@kvack.org>
549 L:      linux-aio@kvack.org
550 S:      Supported
551 F:      fs/aio.c
552 F:      include/linux/*aio*.h
553
554 AIRSPY MEDIA DRIVER
555 M:      Antti Palosaari <crope@iki.fi>
556 L:      linux-media@vger.kernel.org
557 W:      https://linuxtv.org
558 W:      http://palosaari.fi/linux/
559 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
560 T:      git git://linuxtv.org/anttip/media_tree.git
561 S:      Maintained
562 F:      drivers/media/usb/airspy/
563
564 ALCATEL SPEEDTOUCH USB DRIVER
565 M:      Duncan Sands <duncan.sands@free.fr>
566 L:      linux-usb@vger.kernel.org
567 W:      http://www.linux-usb.org/SpeedTouch/
568 S:      Maintained
569 F:      drivers/usb/atm/speedtch.c
570 F:      drivers/usb/atm/usbatm.c
571
572 ALCHEMY AU1XX0 MMC DRIVER
573 M:      Manuel Lauss <manuel.lauss@gmail.com>
574 S:      Maintained
575 F:      drivers/mmc/host/au1xmmc.c
576
577 ALI1563 I2C DRIVER
578 M:      Rudolf Marek <r.marek@assembler.cz>
579 L:      linux-i2c@vger.kernel.org
580 S:      Maintained
581 F:      Documentation/i2c/busses/i2c-ali1563
582 F:      drivers/i2c/busses/i2c-ali1563.c
583
584 ALLWINNER SECURITY SYSTEM
585 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
586 L:      linux-crypto@vger.kernel.org
587 S:      Maintained
588 F:      drivers/crypto/sunxi-ss/
589
590 ALPHA PORT
591 M:      Richard Henderson <rth@twiddle.net>
592 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
593 M:      Matt Turner <mattst88@gmail.com>
594 S:      Odd Fixes
595 L:      linux-alpha@vger.kernel.org
596 F:      arch/alpha/
597
598 ALTERA MAILBOX DRIVER
599 M:      Ley Foon Tan <lftan@altera.com>
600 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
601 S:      Maintained
602 F:      drivers/mailbox/mailbox-altera.c
603
604 ALTERA PIO DRIVER
605 M:      Tien Hock Loh <thloh@altera.com>
606 L:      linux-gpio@vger.kernel.org
607 S:      Maintained
608 F:      drivers/gpio/gpio-altera.c
609
610 ALTERA TRIPLE SPEED ETHERNET DRIVER
611 M:      Vince Bridgers <vbridger@opensource.altera.com>
612 L:      netdev@vger.kernel.org
613 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
614 S:      Maintained
615 F:      drivers/net/ethernet/altera/
616
617 ALTERA UART/JTAG UART SERIAL DRIVERS
618 M:      Tobias Klauser <tklauser@distanz.ch>
619 L:      linux-serial@vger.kernel.org
620 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
621 S:      Maintained
622 F:      drivers/tty/serial/altera_uart.c
623 F:      drivers/tty/serial/altera_jtaguart.c
624 F:      include/linux/altera_uart.h
625 F:      include/linux/altera_jtaguart.h
626
627 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
628 M:      Tom Lendacky <thomas.lendacky@amd.com>
629 M:      Gary Hook <gary.hook@amd.com>
630 L:      linux-crypto@vger.kernel.org
631 S:      Supported
632 F:      drivers/crypto/ccp/
633 F:      include/linux/ccp.h
634
635 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
636 M:      Huang Rui <ray.huang@amd.com>
637 L:      linux-hwmon@vger.kernel.org
638 S:      Supported
639 F:      Documentation/hwmon/fam15h_power
640 F:      drivers/hwmon/fam15h_power.c
641
642 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
643 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
644 S:      Orphan
645 F:      drivers/usb/gadget/udc/amd5536udc.*
646
647 AMD GEODE PROCESSOR/CHIPSET SUPPORT
648 P:      Andres Salomon <dilinger@queued.net>
649 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
650 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
651 S:      Supported
652 F:      drivers/char/hw_random/geode-rng.c
653 F:      drivers/crypto/geode*
654 F:      drivers/video/fbdev/geode/
655 F:      arch/x86/include/asm/geode.h
656
657 AMD IOMMU (AMD-VI)
658 M:      Joerg Roedel <joro@8bytes.org>
659 L:      iommu@lists.linux-foundation.org
660 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
661 S:      Maintained
662 F:      drivers/iommu/amd_iommu*.[ch]
663 F:      include/linux/amd-iommu.h
664
665 AMD KFD
666 M:      Oded Gabbay <oded.gabbay@gmail.com>
667 L:      dri-devel@lists.freedesktop.org
668 T:      git git://people.freedesktop.org/~gabbayo/linux.git
669 S:      Supported
670 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c
671 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
672 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
673 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
674 F:      drivers/gpu/drm/amd/amdkfd/
675 F:      drivers/gpu/drm/amd/include/cik_structs.h
676 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
677 F:      drivers/gpu/drm/amd/include/vi_structs.h
678 F:      drivers/gpu/drm/radeon/radeon_kfd.c
679 F:      drivers/gpu/drm/radeon/radeon_kfd.h
680 F:      include/uapi/linux/kfd_ioctl.h
681
682 AMD SEATTLE DEVICE TREE SUPPORT
683 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
684 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
685 M:      Tom Lendacky <thomas.lendacky@amd.com>
686 S:      Supported
687 F:      arch/arm64/boot/dts/amd/
688
689 AMD XGBE DRIVER
690 M:      Tom Lendacky <thomas.lendacky@amd.com>
691 L:      netdev@vger.kernel.org
692 S:      Supported
693 F:      drivers/net/ethernet/amd/xgbe/
694 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
695
696 AMS (Apple Motion Sensor) DRIVER
697 M:      Michael Hanselmann <linux-kernel@hansmi.ch>
698 S:      Supported
699 F:      drivers/macintosh/ams/
700
701 ANALOG DEVICES INC AD9389B DRIVER
702 M:      Hans Verkuil <hans.verkuil@cisco.com>
703 L:      linux-media@vger.kernel.org
704 S:      Maintained
705 F:      drivers/media/i2c/ad9389b*
706
707 ANALOG DEVICES INC ADV7180 DRIVER
708 M:      Lars-Peter Clausen <lars@metafoo.de>
709 L:      linux-media@vger.kernel.org
710 W:      http://ez.analog.com/community/linux-device-drivers
711 S:      Supported
712 F:      drivers/media/i2c/adv7180.c
713
714 ANALOG DEVICES INC ADV7511 DRIVER
715 M:      Hans Verkuil <hans.verkuil@cisco.com>
716 L:      linux-media@vger.kernel.org
717 S:      Maintained
718 F:      drivers/media/i2c/adv7511*
719
720 ANALOG DEVICES INC ADV7604 DRIVER
721 M:      Hans Verkuil <hans.verkuil@cisco.com>
722 L:      linux-media@vger.kernel.org
723 S:      Maintained
724 F:      drivers/media/i2c/adv7604*
725
726 ANALOG DEVICES INC ADV7842 DRIVER
727 M:      Hans Verkuil <hans.verkuil@cisco.com>
728 L:      linux-media@vger.kernel.org
729 S:      Maintained
730 F:      drivers/media/i2c/adv7842*
731
732 ANALOG DEVICES INC ASOC CODEC DRIVERS
733 M:      Lars-Peter Clausen <lars@metafoo.de>
734 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
735 W:      http://wiki.analog.com/
736 W:      http://ez.analog.com/community/linux-device-drivers
737 S:      Supported
738 F:      sound/soc/codecs/adau*
739 F:      sound/soc/codecs/adav*
740 F:      sound/soc/codecs/ad1*
741 F:      sound/soc/codecs/ad7*
742 F:      sound/soc/codecs/ssm*
743 F:      sound/soc/codecs/sigmadsp.*
744
745 ANALOG DEVICES INC ASOC DRIVERS
746 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
747 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
748 W:      http://blackfin.uclinux.org/
749 S:      Supported
750 F:      sound/soc/blackfin/*
751
752 ANALOG DEVICES INC IIO DRIVERS
753 M:      Lars-Peter Clausen <lars@metafoo.de>
754 M:      Michael Hennerich <Michael.Hennerich@analog.com>
755 W:      http://wiki.analog.com/
756 W:      http://ez.analog.com/community/linux-device-drivers
757 S:      Supported
758 F:      drivers/iio/*/ad*
759 X:      drivers/iio/*/adjd*
760 F:      drivers/staging/iio/*/ad*
761 F:      staging/iio/trigger/iio-trig-bfin-timer.c
762
763 ANALOG DEVICES INC DMA DRIVERS
764 M:      Lars-Peter Clausen <lars@metafoo.de>
765 W:      http://ez.analog.com/community/linux-device-drivers
766 S:      Supported
767 F:      drivers/dma/dma-axi-dmac.c
768
769 ANDROID DRIVERS
770 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
771 M:      Arve Hjønnevåg <arve@android.com>
772 M:      Riley Andrews <riandrews@android.com>
773 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
774 L:      devel@driverdev.osuosl.org
775 S:      Supported
776 F:      drivers/android/
777 F:      drivers/staging/android/
778
779 ANDROID ION DRIVER
780 M:      Laura Abbott <labbott@redhat.com>
781 M:      Sumit Semwal <sumit.semwal@linaro.org>
782 L:      devel@driverdev.osuosl.org
783 S:      Supported
784 F:      drivers/staging/android/ion
785 F:      drivers/staging/android/uapi/ion.h
786 F:      drivers/staging/android/uapi/ion_test.h
787
788 AOA (Apple Onboard Audio) ALSA DRIVER
789 M:      Johannes Berg <johannes@sipsolutions.net>
790 L:      linuxppc-dev@lists.ozlabs.org
791 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
792 S:      Maintained
793 F:      sound/aoa/
794
795 APEX EMBEDDED SYSTEMS STX104 DAC DRIVER
796 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
797 L:      linux-iio@vger.kernel.org
798 S:      Maintained
799 F:      drivers/iio/dac/stx104.c
800
801 APM DRIVER
802 M:      Jiri Kosina <jikos@kernel.org>
803 S:      Odd fixes
804 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
805 F:      arch/x86/kernel/apm_32.c
806 F:      include/linux/apm_bios.h
807 F:      include/uapi/linux/apm_bios.h
808 F:      drivers/char/apm-emulation.c
809
810 APPLE BCM5974 MULTITOUCH DRIVER
811 M:      Henrik Rydberg <rydberg@bitmath.org>
812 L:      linux-input@vger.kernel.org
813 S:      Odd fixes
814 F:      drivers/input/mouse/bcm5974.c
815
816 APPLE SMC DRIVER
817 M:      Henrik Rydberg <rydberg@bitmath.org>
818 L:      linux-hwmon@vger.kernel.org
819 S:      Odd fixes
820 F:      drivers/hwmon/applesmc.c
821
822 APPLETALK NETWORK LAYER
823 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
824 S:      Maintained
825 F:      drivers/net/appletalk/
826 F:      net/appletalk/
827
828 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
829 M:      Duc Dang <dhdang@apm.com>
830 S:      Supported
831 F:      arch/arm64/boot/dts/apm/
832
833 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
834 M:      Iyappan Subramanian <isubramanian@apm.com>
835 M:      Keyur Chudgar <kchudgar@apm.com>
836 S:      Supported
837 F:      drivers/net/ethernet/apm/xgene/
838 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
839
840 APTINA CAMERA SENSOR PLL
841 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
842 L:      linux-media@vger.kernel.org
843 S:      Maintained
844 F:      drivers/media/i2c/aptina-pll.*
845
846 ARC FRAMEBUFFER DRIVER
847 M:      Jaya Kumar <jayalk@intworks.biz>
848 S:      Maintained
849 F:      drivers/video/fbdev/arcfb.c
850 F:      drivers/video/fbdev/core/fb_defio.c
851
852 ARCNET NETWORK LAYER
853 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
854 L:      netdev@vger.kernel.org
855 S:      Maintained
856 F:      drivers/net/arcnet/
857 F:      include/uapi/linux/if_arcnet.h
858
859 ARM HDLCD DRM DRIVER
860 M:      Liviu Dudau <liviu.dudau@arm.com>
861 S:      Supported
862 F:      drivers/gpu/drm/arm/
863 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
864
865 ARM MFM AND FLOPPY DRIVERS
866 M:      Ian Molton <spyro@f2s.com>
867 S:      Maintained
868 F:      arch/arm/lib/floppydma.S
869 F:      arch/arm/include/asm/floppy.h
870
871 ARM PMU PROFILING AND DEBUGGING
872 M:      Will Deacon <will.deacon@arm.com>
873 R:      Mark Rutland <mark.rutland@arm.com>
874 S:      Maintained
875 F:      arch/arm*/kernel/perf_*
876 F:      arch/arm/oprofile/common.c
877 F:      arch/arm*/kernel/hw_breakpoint.c
878 F:      arch/arm*/include/asm/hw_breakpoint.h
879 F:      arch/arm*/include/asm/perf_event.h
880 F:      drivers/perf/arm_pmu.c
881 F:      include/linux/perf/arm_pmu.h
882
883 ARM PORT
884 M:      Russell King <linux@armlinux.org.uk>
885 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
886 W:      http://www.armlinux.org.uk/
887 S:      Maintained
888 F:      arch/arm/
889
890 ARM SUB-ARCHITECTURES
891 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
892 S:      Maintained
893 F:      arch/arm/mach-*/
894 F:      arch/arm/plat-*/
895 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
896
897 ARM PRIMECELL AACI PL041 DRIVER
898 M:      Russell King <linux@armlinux.org.uk>
899 S:      Maintained
900 F:      sound/arm/aaci.*
901
902 ARM PRIMECELL CLCD PL110 DRIVER
903 M:      Russell King <linux@armlinux.org.uk>
904 S:      Maintained
905 F:      drivers/video/fbdev/amba-clcd.*
906
907 ARM PRIMECELL KMI PL050 DRIVER
908 M:      Russell King <linux@armlinux.org.uk>
909 S:      Maintained
910 F:      drivers/input/serio/ambakmi.*
911 F:      include/linux/amba/kmi.h
912
913 ARM PRIMECELL MMCI PL180/1 DRIVER
914 M:      Russell King <linux@armlinux.org.uk>
915 S:      Maintained
916 F:      drivers/mmc/host/mmci.*
917 F:      include/linux/amba/mmci.h
918
919 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
920 M:      Russell King <linux@armlinux.org.uk>
921 S:      Maintained
922 F:      drivers/tty/serial/amba-pl01*.c
923 F:      include/linux/amba/serial.h
924
925 ARM PRIMECELL BUS SUPPORT
926 M:      Russell King <linux@armlinux.org.uk>
927 S:      Maintained
928 F:      drivers/amba/
929 F:      include/linux/amba/bus.h
930
931 ARM/ADS SPHERE MACHINE SUPPORT
932 M:      Lennert Buytenhek <kernel@wantstofly.org>
933 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
934 S:      Maintained
935
936 ARM/AFEB9260 MACHINE SUPPORT
937 M:      Sergey Lapin <slapin@ossfans.org>
938 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
939 S:      Maintained
940
941 ARM/AJECO 1ARM MACHINE SUPPORT
942 M:      Lennert Buytenhek <kernel@wantstofly.org>
943 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
944 S:      Maintained
945
946 ARM/Allwinner sunXi SoC support
947 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
948 M:      Chen-Yu Tsai <wens@csie.org>
949 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
950 S:      Maintained
951 N:      sun[x456789]i
952
953 ARM/Allwinner SoC Clock Support
954 M:      Emilio López <emilio@elopez.com.ar>
955 S:      Maintained
956 F:      drivers/clk/sunxi/
957
958 ARM/Amlogic Meson SoC support
959 M:      Carlo Caione <carlo@caione.org>
960 M:      Kevin Hilman <khilman@baylibre.com>
961 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
962 L:      linux-amlogic@lists.infradead.org
963 W:      http://linux-meson.com/
964 S:      Maintained
965 F:      arch/arm/mach-meson/
966 F:      arch/arm/boot/dts/meson*
967 F:      arch/arm64/boot/dts/amlogic/
968 F:      drivers/pinctrl/meson/
969 N:      meson
970
971 ARM/Annapurna Labs ALPINE ARCHITECTURE
972 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
973 M:      Antoine Tenart <antoine.tenart@free-electrons.com>
974 S:      Maintained
975 F:      arch/arm/mach-alpine/
976 F:      arch/arm/boot/dts/alpine*
977 F:      arch/arm64/boot/dts/al/
978 F:      drivers/*/*alpine*
979
980 ARM/ARTPEC MACHINE SUPPORT
981 M:      Jesper Nilsson <jesper.nilsson@axis.com>
982 M:      Lars Persson <lars.persson@axis.com>
983 M:      Niklas Cassel <niklas.cassel@axis.com>
984 S:      Maintained
985 L:      linux-arm-kernel@axis.com
986 F:      arch/arm/mach-artpec
987 F:      arch/arm/boot/dts/artpec6*
988 F:      drivers/clk/axis
989
990 ARM/ASPEED MACHINE SUPPORT
991 M:      Joel Stanley <joel@jms.id.au>
992 S:      Maintained
993 F:      arch/arm/mach-aspeed/
994 F:      arch/arm/boot/dts/aspeed-*
995 F:      drivers/*/*aspeed*
996
997 ARM/ATMEL AT91RM9200, AT91SAM9 AND SAMA5 SOC SUPPORT
998 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
999 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
1000 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
1001 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1002 W:      http://www.linux4sam.org
1003 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nferre/linux-at91.git
1004 S:      Supported
1005 F:      arch/arm/mach-at91/
1006 F:      include/soc/at91/
1007 F:      arch/arm/boot/dts/at91*.dts
1008 F:      arch/arm/boot/dts/at91*.dtsi
1009 F:      arch/arm/boot/dts/sama*.dts
1010 F:      arch/arm/boot/dts/sama*.dtsi
1011 F:      arch/arm/include/debug/at91.S
1012
1013 ARM/ATMEL AT91 Clock Support
1014 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
1015 S:      Maintained
1016 F:      drivers/clk/at91
1017
1018 ARM/CALXEDA HIGHBANK ARCHITECTURE
1019 M:      Rob Herring <robh@kernel.org>
1020 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1021 S:      Maintained
1022 F:      arch/arm/mach-highbank/
1023 F:      arch/arm/boot/dts/highbank.dts
1024 F:      arch/arm/boot/dts/ecx-*.dts*
1025
1026 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1027 M:      Krzysztof Halasa <khalasa@piap.pl>
1028 S:      Maintained
1029 F:      arch/arm/mach-cns3xxx/
1030
1031 ARM/CAVIUM THUNDER NETWORK DRIVER
1032 M:      Sunil Goutham <sgoutham@cavium.com>
1033 M:      Robert Richter <rric@kernel.org>
1034 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1035 S:      Supported
1036 F:      drivers/net/ethernet/cavium/thunder/
1037
1038 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1039 M:      Alexander Shiyan <shc_work@mail.ru>
1040 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1041 S:      Odd Fixes
1042 N:      clps711x
1043
1044 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1045 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1046 M:      Ryan Mallon <rmallon@gmail.com>
1047 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1048 S:      Maintained
1049 F:      arch/arm/mach-ep93xx/
1050 F:      arch/arm/mach-ep93xx/include/mach/
1051
1052 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1053 M:      Lennert Buytenhek <kernel@wantstofly.org>
1054 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1055 S:      Maintained
1056
1057 ARM/CLKDEV SUPPORT
1058 M:      Russell King <linux@armlinux.org.uk>
1059 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1060 S:      Maintained
1061 F:      arch/arm/include/asm/clkdev.h
1062 F:      drivers/clk/clkdev.c
1063
1064 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
1065 M:      Mike Rapoport <mike@compulab.co.il>
1066 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1067 S:      Maintained
1068
1069 ARM/CONTEC MICRO9 MACHINE SUPPORT
1070 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1071 S:      Maintained
1072 F:      arch/arm/mach-ep93xx/micro9.c
1073
1074 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1075 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1076 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1077 S:      Maintained
1078 F:      drivers/hwtracing/coresight/*
1079 F:      Documentation/trace/coresight.txt
1080 F:      Documentation/devicetree/bindings/arm/coresight.txt
1081 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1082
1083 ARM/CORGI MACHINE SUPPORT
1084 M:      Richard Purdie <rpurdie@rpsys.net>
1085 S:      Maintained
1086
1087 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1088 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1089 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1090 T:      git git://github.com/ulli-kroll/linux.git
1091 S:      Maintained
1092 F:      arch/arm/mach-gemini/
1093 F:      drivers/rtc/rtc-gemini.c
1094
1095 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1096 M:      Barry Song <baohua@kernel.org>
1097 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1098 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1099 S:      Maintained
1100 F:      arch/arm/boot/dts/prima2*
1101 F:      arch/arm/mach-prima2/
1102 F:      drivers/clk/sirf/
1103 F:      drivers/clocksource/timer-prima2.c
1104 F:      drivers/clocksource/timer-atlas7.c
1105 N:      [^a-z]sirf
1106
1107 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1108 M:      Baruch Siach <baruch@tkos.co.il>
1109 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1110 S:      Maintained
1111 F:      arch/arm/boot/dts/cx92755*
1112 N:      digicolor
1113
1114 ARM/EBSA110 MACHINE SUPPORT
1115 M:      Russell King <linux@armlinux.org.uk>
1116 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1117 W:      http://www.armlinux.org.uk/
1118 S:      Maintained
1119 F:      arch/arm/mach-ebsa110/
1120 F:      drivers/net/ethernet/amd/am79c961a.*
1121
1122 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1123 M:      Uwe Kleine-König <kernel@pengutronix.de>
1124 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1125 S:      Maintained
1126 N:      efm32
1127
1128 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1129 M:      Daniel Ribeiro <drwyrm@gmail.com>
1130 M:      Stefan Schmidt <stefan@openezx.org>
1131 M:      Harald Welte <laforge@openezx.org>
1132 L:      openezx-devel@lists.openezx.org (moderated for non-subscribers)
1133 W:      http://www.openezx.org/
1134 S:      Maintained
1135 T:      topgit git://git.openezx.org/openezx.git
1136 F:      arch/arm/mach-pxa/ezx.c
1137
1138 ARM/FARADAY FA526 PORT
1139 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1140 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1141 S:      Maintained
1142 T:      git git://git.berlios.de/gemini-board
1143 F:      arch/arm/mm/*-fa*
1144
1145 ARM/FOOTBRIDGE ARCHITECTURE
1146 M:      Russell King <linux@armlinux.org.uk>
1147 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1148 W:      http://www.armlinux.org.uk/
1149 S:      Maintained
1150 F:      arch/arm/include/asm/hardware/dec21285.h
1151 F:      arch/arm/mach-footbridge/
1152
1153 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1154 M:      Shawn Guo <shawnguo@kernel.org>
1155 M:      Sascha Hauer <kernel@pengutronix.de>
1156 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1157 S:      Maintained
1158 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1159 F:      arch/arm/mach-imx/
1160 F:      arch/arm/mach-mxs/
1161 F:      arch/arm/boot/dts/imx*
1162 F:      arch/arm/configs/imx*_defconfig
1163 F:      drivers/clk/imx/
1164 F:      include/soc/imx/
1165
1166 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1167 M:      Shawn Guo <shawnguo@kernel.org>
1168 M:      Sascha Hauer <kernel@pengutronix.de>
1169 R:      Stefan Agner <stefan@agner.ch>
1170 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1171 S:      Maintained
1172 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1173 F:      arch/arm/mach-imx/*vf610*
1174 F:      arch/arm/boot/dts/vf*
1175
1176 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1177 M:      Lennert Buytenhek <kernel@wantstofly.org>
1178 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1179 S:      Maintained
1180
1181 ARM/GUMSTIX MACHINE SUPPORT
1182 M:      Steve Sakoman <sakoman@gmail.com>
1183 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1184 S:      Maintained
1185
1186 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1187 M:      Philipp Zabel <philipp.zabel@gmail.com>
1188 M:      Paul Parsons <lost.distance@yahoo.com>
1189 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1190 S:      Maintained
1191 F:      arch/arm/mach-pxa/hx4700.c
1192 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1193 F:      sound/soc/pxa/hx4700.c
1194
1195 ARM/HISILICON SOC SUPPORT
1196 M:      Wei Xu <xuwei5@hisilicon.com>
1197 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1198 W:      http://www.hisilicon.com
1199 S:      Supported
1200 T:      git git://github.com/hisilicon/linux-hisi.git
1201 F:      arch/arm/mach-hisi/
1202 F:      arch/arm/boot/dts/hi3*
1203 F:      arch/arm/boot/dts/hip*
1204 F:      arch/arm/boot/dts/hisi*
1205 F:      arch/arm64/boot/dts/hisilicon/
1206
1207 ARM/HP JORNADA 7XX MACHINE SUPPORT
1208 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1209 W:      www.jlime.com
1210 S:      Maintained
1211 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1212 F:      arch/arm/mach-sa1100/jornada720.c
1213 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1214
1215 ARM/IGEP MACHINE SUPPORT
1216 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1217 M:      Javier Martinez Canillas <javier@dowhile0.org>
1218 L:      linux-omap@vger.kernel.org
1219 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1220 S:      Maintained
1221 F:      arch/arm/boot/dts/omap3-igep*
1222
1223 ARM/INCOME PXA270 SUPPORT
1224 M:      Marek Vasut <marek.vasut@gmail.com>
1225 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1226 S:      Maintained
1227 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1228
1229 ARM/INTEL IOP32X ARM ARCHITECTURE
1230 M:      Lennert Buytenhek <kernel@wantstofly.org>
1231 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1232 S:      Maintained
1233
1234 ARM/INTEL IOP33X ARM ARCHITECTURE
1235 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1236 S:      Orphan
1237
1238 ARM/INTEL IOP13XX ARM ARCHITECTURE
1239 M:      Lennert Buytenhek <kernel@wantstofly.org>
1240 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1241 S:      Maintained
1242
1243 ARM/INTEL IQ81342EX MACHINE SUPPORT
1244 M:      Lennert Buytenhek <kernel@wantstofly.org>
1245 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1246 S:      Maintained
1247
1248 ARM/INTEL IXDP2850 MACHINE SUPPORT
1249 M:      Lennert Buytenhek <kernel@wantstofly.org>
1250 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1251 S:      Maintained
1252
1253 ARM/INTEL IXP4XX ARM ARCHITECTURE
1254 M:      Imre Kaloz <kaloz@openwrt.org>
1255 M:      Krzysztof Halasa <khalasa@piap.pl>
1256 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1257 S:      Maintained
1258 F:      arch/arm/mach-ixp4xx/
1259
1260 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1261 M:      Jonathan Cameron <jic23@cam.ac.uk>
1262 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1263 S:      Maintained
1264 F:      arch/arm/mach-pxa/stargate2.c
1265 F:      drivers/pcmcia/pxa2xx_stargate2.c
1266
1267 ARM/INTEL XSC3 (MANZANO) ARM CORE
1268 M:      Lennert Buytenhek <kernel@wantstofly.org>
1269 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1270 S:      Maintained
1271
1272 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1273 M:      Lennert Buytenhek <kernel@wantstofly.org>
1274 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1275 S:      Maintained
1276
1277 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
1278 M:      Santosh Shilimkar <ssantosh@kernel.org>
1279 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1280 S:      Maintained
1281 F:      arch/arm/mach-keystone/
1282 F:      arch/arm/boot/dts/keystone-*
1283 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
1284
1285 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
1286 M:      Santosh Shilimkar <ssantosh@kernel.org>
1287 L:      linux-kernel@vger.kernel.org
1288 S:      Maintained
1289 F:      drivers/clk/keystone/
1290
1291 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
1292 M:      Santosh Shilimkar <ssantosh@kernel.org>
1293 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1294 L:      linux-kernel@vger.kernel.org
1295 S:      Maintained
1296 F:      drivers/clocksource/timer-keystone.c
1297
1298 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
1299 M:      Santosh Shilimkar <ssantosh@kernel.org>
1300 L:      linux-kernel@vger.kernel.org
1301 S:      Maintained
1302 F:      drivers/power/reset/keystone-reset.c
1303
1304 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
1305 M:      Santosh Shilimkar <ssantosh@kernel.org>
1306 L:      linux-kernel@vger.kernel.org
1307 S:      Maintained
1308 F:      drivers/memory/*emif*
1309
1310 ARM/LG1K ARCHITECTURE
1311 M:      Chanho Min <chanho.min@lge.com>
1312 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1313 S:      Maintained
1314 F:      arch/arm64/boot/dts/lg/
1315
1316 ARM/LOGICPD PXA270 MACHINE SUPPORT
1317 M:      Lennert Buytenhek <kernel@wantstofly.org>
1318 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1319 S:      Maintained
1320
1321 ARM/LPC18XX ARCHITECTURE
1322 M:      Joachim Eastwood <manabian@gmail.com>
1323 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1324 S:      Maintained
1325 F:      arch/arm/boot/dts/lpc43*
1326 F:      drivers/clk/nxp/clk-lpc18xx*
1327 F:      drivers/clocksource/time-lpc32xx.c
1328 F:      drivers/i2c/busses/i2c-lpc2k.c
1329 F:      drivers/memory/pl172.c
1330 F:      drivers/mtd/spi-nor/nxp-spifi.c
1331 F:      drivers/rtc/rtc-lpc24xx.c
1332 N:      lpc18xx
1333
1334 ARM/LPC32XX SOC SUPPORT
1335 M:      Vladimir Zapolskiy <vz@mleia.com>
1336 M:      Sylvain Lemieux <slemieux.tyco@gmail.com>
1337 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1338 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
1339 S:      Maintained
1340 F:      arch/arm/boot/dts/lpc32*
1341 F:      arch/arm/mach-lpc32xx/
1342 F:      drivers/i2c/busses/i2c-pnx.c
1343 F:      drivers/net/ethernet/nxp/lpc_eth.c
1344 F:      drivers/usb/host/ohci-nxp.c
1345 F:      drivers/watchdog/pnx4008_wdt.c
1346 N:      lpc32xx
1347
1348 ARM/MAGICIAN MACHINE SUPPORT
1349 M:      Philipp Zabel <philipp.zabel@gmail.com>
1350 S:      Maintained
1351
1352 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K SOC support
1353 M:      Jason Cooper <jason@lakedaemon.net>
1354 M:      Andrew Lunn <andrew@lunn.ch>
1355 M:      Gregory Clement <gregory.clement@free-electrons.com>
1356 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1357 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1358 S:      Maintained
1359 F:      arch/arm/mach-mvebu/
1360 F:      drivers/rtc/rtc-armada38x.c
1361 F:      arch/arm/boot/dts/armada*
1362 F:      arch/arm/boot/dts/kirkwood*
1363 F:      arch/arm64/boot/dts/marvell/armada*
1364 F:      drivers/cpufreq/mvebu-cpufreq.c
1365 F:      arch/arm/configs/mvebu_*_defconfig
1366
1367 ARM/Marvell Berlin SoC support
1368 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1369 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1370 S:      Maintained
1371 F:      arch/arm/mach-berlin/
1372 F:      arch/arm/boot/dts/berlin*
1373 F:      arch/arm64/boot/dts/marvell/berlin*
1374
1375
1376 ARM/Marvell Dove/MV78xx0/Orion SOC support
1377 M:      Jason Cooper <jason@lakedaemon.net>
1378 M:      Andrew Lunn <andrew@lunn.ch>
1379 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1380 M:      Gregory Clement <gregory.clement@free-electrons.com>
1381 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1382 S:      Maintained
1383 F:      arch/arm/mach-dove/
1384 F:      arch/arm/mach-mv78xx0/
1385 F:      arch/arm/mach-orion5x/
1386 F:      arch/arm/plat-orion/
1387 F:      arch/arm/boot/dts/dove*
1388 F:      arch/arm/boot/dts/orion5x*
1389
1390
1391 ARM/Orion SoC/Technologic Systems TS-78xx platform support
1392 M:      Alexander Clouter <alex@digriz.org.uk>
1393 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1394 W:      http://www.digriz.org.uk/ts78xx/kernel
1395 S:      Maintained
1396 F:      arch/arm/mach-orion5x/ts78xx-*
1397
1398 ARM/OXNAS platform support
1399 M:      Neil Armstrong <narmstrong@baylibre.com>
1400 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1401 S:      Maintained
1402 F:      arch/arm/mach-oxnas/
1403 F:      arch/arm/boot/dts/oxnas*
1404 F:      arch/arm/boot/dts/wd-mbwe.dts
1405 N:      oxnas
1406
1407 ARM/Mediatek RTC DRIVER
1408 M:      Eddie Huang <eddie.huang@mediatek.com>
1409 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1410 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1411 S:      Maintained
1412 F:      drivers/rtc/rtc-mt6397.c
1413
1414 ARM/Mediatek SoC support
1415 M:      Matthias Brugger <matthias.bgg@gmail.com>
1416 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1417 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1418 S:      Maintained
1419 F:      arch/arm/boot/dts/mt6*
1420 F:      arch/arm/boot/dts/mt8*
1421 F:      arch/arm/mach-mediatek/
1422 N:      mtk
1423 K:      mediatek
1424
1425 ARM/Mediatek USB3 PHY DRIVER
1426 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
1427 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1428 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1429 S:      Maintained
1430 F:      drivers/phy/phy-mt65xx-usb3.c
1431
1432 ARM/MICREL KS8695 ARCHITECTURE
1433 M:      Greg Ungerer <gerg@uclinux.org>
1434 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1435 F:      arch/arm/mach-ks8695/
1436 S:      Odd Fixes
1437
1438 ARM/MIOA701 MACHINE SUPPORT
1439 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1440 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1441 F:      arch/arm/mach-pxa/mioa701.c
1442 S:      Maintained
1443
1444 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1445 M:      Michael Petchkovsky <mkpetch@internode.on.net>
1446 S:      Maintained
1447
1448 ARM/NOMADIK ARCHITECTURE
1449 M:      Alessandro Rubini <rubini@unipv.it>
1450 M:      Linus Walleij <linus.walleij@linaro.org>
1451 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1452 S:      Maintained
1453 F:      arch/arm/mach-nomadik/
1454 F:      drivers/pinctrl/nomadik/
1455 F:      drivers/i2c/busses/i2c-nomadik.c
1456 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
1457
1458 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
1459 M:      Nelson Castillo <arhuaco@freaks-unidos.net>
1460 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
1461 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
1462 S:      Supported
1463
1464 ARM/TOSA MACHINE SUPPORT
1465 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1466 M:      Dirk Opfer <dirk@opfer-online.de>
1467 S:      Maintained
1468
1469 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
1470 M:      Marek Vasut <marek.vasut@gmail.com>
1471 L:      linux-arm-kernel@lists.infradead.org
1472 W:      http://hackndev.com
1473 S:      Maintained
1474 F:      arch/arm/mach-pxa/include/mach/palmtx.h
1475 F:      arch/arm/mach-pxa/palmtx.c
1476 F:      arch/arm/mach-pxa/include/mach/palmt5.h
1477 F:      arch/arm/mach-pxa/palmt5.c
1478 F:      arch/arm/mach-pxa/include/mach/palmld.h
1479 F:      arch/arm/mach-pxa/palmld.c
1480 F:      arch/arm/mach-pxa/include/mach/palmte2.h
1481 F:      arch/arm/mach-pxa/palmte2.c
1482 F:      arch/arm/mach-pxa/include/mach/palmtc.h
1483 F:      arch/arm/mach-pxa/palmtc.c
1484
1485 ARM/PALM TREO SUPPORT
1486 M:      Tomas Cech <sleep_walker@suse.com>
1487 L:      linux-arm-kernel@lists.infradead.org
1488 W:      http://hackndev.com
1489 S:      Maintained
1490 F:      arch/arm/mach-pxa/include/mach/palmtreo.h
1491 F:      arch/arm/mach-pxa/palmtreo.c
1492
1493 ARM/PALMZ72 SUPPORT
1494 M:      Sergey Lapin <slapin@ossfans.org>
1495 L:      linux-arm-kernel@lists.infradead.org
1496 W:      http://hackndev.com
1497 S:      Maintained
1498 F:      arch/arm/mach-pxa/include/mach/palmz72.h
1499 F:      arch/arm/mach-pxa/palmz72.c
1500
1501 ARM/PLEB SUPPORT
1502 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
1503 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1504 S:      Maintained
1505
1506 ARM/PT DIGITAL BOARD PORT
1507 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
1508 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1509 W:      http://www.armlinux.org.uk/
1510 S:      Maintained
1511
1512 ARM/QUALCOMM SUPPORT
1513 M:      Andy Gross <andy.gross@linaro.org>
1514 M:      David Brown <david.brown@linaro.org>
1515 L:      linux-arm-msm@vger.kernel.org
1516 L:      linux-soc@vger.kernel.org
1517 S:      Maintained
1518 F:      arch/arm/boot/dts/qcom-*.dts
1519 F:      arch/arm/boot/dts/qcom-*.dtsi
1520 F:      arch/arm/mach-qcom/
1521 F:      arch/arm64/boot/dts/qcom/*
1522 F:      drivers/i2c/busses/i2c-qup.c
1523 F:      drivers/clk/qcom/
1524 F:      drivers/soc/qcom/
1525 F:      drivers/spi/spi-qup.c
1526 F:      drivers/tty/serial/msm_serial.h
1527 F:      drivers/tty/serial/msm_serial.c
1528 F:      drivers/*/pm8???-*
1529 F:      drivers/mfd/ssbi.c
1530 F:      drivers/firmware/qcom_scm.c
1531 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/agross/linux.git
1532
1533 ARM/RADISYS ENP2611 MACHINE SUPPORT
1534 M:      Lennert Buytenhek <kernel@wantstofly.org>
1535 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1536 S:      Maintained
1537
1538 ARM/RENESAS ARM64 ARCHITECTURE
1539 M:      Simon Horman <horms@verge.net.au>
1540 M:      Magnus Damm <magnus.damm@gmail.com>
1541 L:      linux-renesas-soc@vger.kernel.org
1542 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
1543 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1544 S:      Supported
1545 F:      arch/arm64/boot/dts/renesas/
1546 F:      drivers/soc/renesas/
1547 F:      include/linux/soc/renesas/
1548
1549 ARM/RISCPC ARCHITECTURE
1550 M:      Russell King <linux@armlinux.org.uk>
1551 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1552 W:      http://www.armlinux.org.uk/
1553 S:      Maintained
1554 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
1555 F:      arch/arm/include/asm/hardware/ioc.h
1556 F:      arch/arm/include/asm/hardware/iomd.h
1557 F:      arch/arm/include/asm/hardware/memc.h
1558 F:      arch/arm/mach-rpc/
1559 F:      drivers/net/ethernet/8390/etherh.c
1560 F:      drivers/net/ethernet/i825xx/ether1*
1561 F:      drivers/net/ethernet/seeq/ether3*
1562 F:      drivers/scsi/arm/
1563
1564 ARM/Rockchip SoC support
1565 M:      Heiko Stuebner <heiko@sntech.de>
1566 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1567 L:      linux-rockchip@lists.infradead.org
1568 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
1569 S:      Maintained
1570 F:      arch/arm/boot/dts/rk3*
1571 F:      arch/arm/mach-rockchip/
1572 F:      drivers/clk/rockchip/
1573 F:      drivers/i2c/busses/i2c-rk3x.c
1574 F:      drivers/*/*rockchip*
1575 F:      drivers/*/*/*rockchip*
1576 F:      sound/soc/rockchip/
1577 N:      rockchip
1578
1579 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
1580 M:      Kukjin Kim <kgene@kernel.org>
1581 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
1582 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1583 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1584 S:      Maintained
1585 F:      arch/arm/boot/dts/s3c*
1586 F:      arch/arm/boot/dts/s5p*
1587 F:      arch/arm/boot/dts/samsung*
1588 F:      arch/arm/boot/dts/exynos*
1589 F:      arch/arm64/boot/dts/exynos/
1590 F:      arch/arm/plat-samsung/
1591 F:      arch/arm/mach-s3c24*/
1592 F:      arch/arm/mach-s3c64xx/
1593 F:      arch/arm/mach-s5p*/
1594 F:      arch/arm/mach-exynos*/
1595 F:      drivers/*/*s3c2410*
1596 F:      drivers/*/*/*s3c2410*
1597 F:      drivers/memory/samsung/*
1598 F:      drivers/soc/samsung/*
1599 F:      drivers/spi/spi-s3c*
1600 F:      sound/soc/samsung/*
1601 F:      Documentation/arm/Samsung/
1602 F:      Documentation/devicetree/bindings/arm/samsung/
1603 F:      Documentation/devicetree/bindings/sram/samsung-sram.txt
1604 F:      Documentation/devicetree/bindings/power/pd-samsung.txt
1605 N:      exynos
1606
1607 ARM/SAMSUNG MOBILE MACHINE SUPPORT
1608 M:      Kyungmin Park <kyungmin.park@samsung.com>
1609 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1610 S:      Maintained
1611 F:      arch/arm/mach-s5pv210/
1612
1613 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1614 M:      Kyungmin Park <kyungmin.park@samsung.com>
1615 M:      Kamil Debski <k.debski@samsung.com>
1616 L:      linux-arm-kernel@lists.infradead.org
1617 L:      linux-media@vger.kernel.org
1618 S:      Maintained
1619 F:      drivers/media/platform/s5p-g2d/
1620
1621 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1622 M:      Kyungmin Park <kyungmin.park@samsung.com>
1623 M:      Kamil Debski <k.debski@samsung.com>
1624 M:      Jeongtae Park <jtp.park@samsung.com>
1625 L:      linux-arm-kernel@lists.infradead.org
1626 L:      linux-media@vger.kernel.org
1627 S:      Maintained
1628 F:      arch/arm/plat-samsung/s5p-dev-mfc.c
1629 F:      drivers/media/platform/s5p-mfc/
1630
1631 ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1632 M:      Kyungmin Park <kyungmin.park@samsung.com>
1633 M:      Tomasz Stanislawski <t.stanislaws@samsung.com>
1634 L:      linux-arm-kernel@lists.infradead.org
1635 L:      linux-media@vger.kernel.org
1636 S:      Maintained
1637 F:      drivers/media/platform/s5p-tv/
1638
1639 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
1640 M:      Andrzej Pietrasiewicz <andrzej.p@samsung.com>
1641 M:      Jacek Anaszewski <j.anaszewski@samsung.com>
1642 L:      linux-arm-kernel@lists.infradead.org
1643 L:      linux-media@vger.kernel.org
1644 S:      Maintained
1645 F:      drivers/media/platform/s5p-jpeg/
1646
1647 ARM/SHMOBILE ARM ARCHITECTURE
1648 M:      Simon Horman <horms@verge.net.au>
1649 M:      Magnus Damm <magnus.damm@gmail.com>
1650 L:      linux-renesas-soc@vger.kernel.org
1651 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
1652 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1653 S:      Supported
1654 F:      arch/arm/boot/dts/emev2*
1655 F:      arch/arm/boot/dts/r7s*
1656 F:      arch/arm/boot/dts/r8a*
1657 F:      arch/arm/boot/dts/sh*
1658 F:      arch/arm/configs/shmobile_defconfig
1659 F:      arch/arm/include/debug/renesas-scif.S
1660 F:      arch/arm/mach-shmobile/
1661 F:      drivers/sh/
1662 F:      drivers/soc/renesas/
1663 F:      include/linux/soc/renesas/
1664
1665 ARM/SOCFPGA ARCHITECTURE
1666 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1667 S:      Maintained
1668 F:      arch/arm/mach-socfpga/
1669 F:      arch/arm/boot/dts/socfpga*
1670 F:      arch/arm/configs/socfpga_defconfig
1671 F:      arch/arm64/boot/dts/altera/
1672 W:      http://www.rocketboards.org
1673 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
1674
1675 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1676 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1677 S:      Maintained
1678 F:      drivers/clk/socfpga/
1679
1680 ARM/SOCFPGA EDAC SUPPORT
1681 M:      Thor Thayer <tthayer@opensource.altera.com>
1682 S:      Maintained
1683 F:      drivers/edac/altera_edac.
1684
1685 ARM/STI ARCHITECTURE
1686 M:      Srinivas Kandagatla <srinivas.kandagatla@gmail.com>
1687 M:      Maxime Coquelin <maxime.coquelin@st.com>
1688 M:      Patrice Chotard <patrice.chotard@st.com>
1689 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1690 L:      kernel@stlinux.com
1691 W:      http://www.stlinux.com
1692 S:      Maintained
1693 F:      arch/arm/mach-sti/
1694 F:      arch/arm/boot/dts/sti*
1695 F:      drivers/char/hw_random/st-rng.c
1696 F:      drivers/clocksource/arm_global_timer.c
1697 F:      drivers/clocksource/clksrc_st_lpc.c
1698 F:      drivers/cpufreq/sti-cpufreq.c
1699 F:      drivers/i2c/busses/i2c-st.c
1700 F:      drivers/media/rc/st_rc.c
1701 F:      drivers/media/platform/sti/c8sectpfe/
1702 F:      drivers/mmc/host/sdhci-st.c
1703 F:      drivers/phy/phy-miphy28lp.c
1704 F:      drivers/phy/phy-miphy365x.c
1705 F:      drivers/phy/phy-stih407-usb.c
1706 F:      drivers/phy/phy-stih41x-usb.c
1707 F:      drivers/pinctrl/pinctrl-st.c
1708 F:      drivers/remoteproc/st_remoteproc.c
1709 F:      drivers/reset/sti/
1710 F:      drivers/rtc/rtc-st-lpc.c
1711 F:      drivers/tty/serial/st-asc.c
1712 F:      drivers/usb/dwc3/dwc3-st.c
1713 F:      drivers/usb/host/ehci-st.c
1714 F:      drivers/usb/host/ohci-st.c
1715 F:      drivers/watchdog/st_lpc_wdt.c
1716 F:      drivers/ata/ahci_st.c
1717
1718 ARM/STM32 ARCHITECTURE
1719 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
1720 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1721 S:      Maintained
1722 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git
1723 N:      stm32
1724 F:      drivers/clocksource/armv7m_systick.c
1725
1726 ARM/TANGO ARCHITECTURE
1727 M:      Marc Gonzalez <marc_gonzalez@sigmadesigns.com>
1728 L:      linux-arm-kernel@lists.infradead.org
1729 S:      Maintained
1730 F:      arch/arm/mach-tango/
1731 F:      arch/arm/boot/dts/tango*
1732
1733 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
1734 M:      Lennert Buytenhek <kernel@wantstofly.org>
1735 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1736 S:      Maintained
1737
1738 ARM/TETON BGA MACHINE SUPPORT
1739 M:      "Mark F. Brown" <mark.brown314@gmail.com>
1740 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1741 S:      Maintained
1742
1743 ARM/THECUS N2100 MACHINE SUPPORT
1744 M:      Lennert Buytenhek <kernel@wantstofly.org>
1745 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1746 S:      Maintained
1747
1748 ARM/NUVOTON W90X900 ARM ARCHITECTURE
1749 M:      Wan ZongShun <mcuos.com@gmail.com>
1750 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1751 W:      http://www.mcuos.com
1752 S:      Maintained
1753 F:      arch/arm/mach-w90x900/
1754 F:      drivers/input/keyboard/w90p910_keypad.c
1755 F:      drivers/input/touchscreen/w90p910_ts.c
1756 F:      drivers/watchdog/nuc900_wdt.c
1757 F:      drivers/net/ethernet/nuvoton/w90p910_ether.c
1758 F:      drivers/mtd/nand/nuc900_nand.c
1759 F:      drivers/rtc/rtc-nuc900.c
1760 F:      drivers/spi/spi-nuc900.c
1761 F:      drivers/usb/host/ehci-w90x900.c
1762 F:      drivers/video/fbdev/nuc900fb.c
1763
1764 ARM/U300 MACHINE SUPPORT
1765 M:      Linus Walleij <linus.walleij@linaro.org>
1766 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1767 S:      Supported
1768 F:      arch/arm/mach-u300/
1769 F:      drivers/clocksource/timer-u300.c
1770 F:      drivers/i2c/busses/i2c-stu300.c
1771 F:      drivers/rtc/rtc-coh901331.c
1772 F:      drivers/watchdog/coh901327_wdt.c
1773 F:      drivers/dma/coh901318*
1774 F:      drivers/mfd/ab3100*
1775 F:      drivers/rtc/rtc-ab3100.c
1776 F:      drivers/rtc/rtc-coh901331.c
1777 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1778
1779 ARM/UNIPHIER ARCHITECTURE
1780 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
1781 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1782 S:      Maintained
1783 F:      arch/arm/boot/dts/uniphier*
1784 F:      arch/arm/include/asm/hardware/cache-uniphier.h
1785 F:      arch/arm/mach-uniphier/
1786 F:      arch/arm/mm/cache-uniphier.c
1787 F:      arch/arm64/boot/dts/socionext/
1788 F:      drivers/bus/uniphier-system-bus.c
1789 F:      drivers/i2c/busses/i2c-uniphier*
1790 F:      drivers/pinctrl/uniphier/
1791 F:      drivers/tty/serial/8250/8250_uniphier.c
1792 N:      uniphier
1793
1794 ARM/Ux500 ARM ARCHITECTURE
1795 M:      Linus Walleij <linus.walleij@linaro.org>
1796 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1797 S:      Maintained
1798 F:      arch/arm/mach-ux500/
1799 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
1800 F:      drivers/dma/ste_dma40*
1801 F:      drivers/hwspinlock/u8500_hsem.c
1802 F:      drivers/mfd/abx500*
1803 F:      drivers/mfd/ab8500*
1804 F:      drivers/mfd/dbx500*
1805 F:      drivers/mfd/db8500*
1806 F:      drivers/pinctrl/nomadik/pinctrl-ab*
1807 F:      drivers/pinctrl/nomadik/pinctrl-nomadik*
1808 F:      drivers/rtc/rtc-ab8500.c
1809 F:      drivers/rtc/rtc-pl031.c
1810 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1811
1812 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
1813 M:      Ulf Hansson <ulf.hansson@linaro.org>
1814 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1815 T:      git git://git.linaro.org/people/ulfh/clk.git
1816 S:      Maintained
1817 F:      drivers/clk/ux500/
1818 F:      include/linux/platform_data/clk-ux500.h
1819
1820 ARM/VERSATILE EXPRESS PLATFORM
1821 M:      Liviu Dudau <liviu.dudau@arm.com>
1822 M:      Sudeep Holla <sudeep.holla@arm.com>
1823 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
1824 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1825 S:      Maintained
1826 F:      arch/arm/boot/dts/vexpress*
1827 F:      arch/arm64/boot/dts/arm/
1828 F:      arch/arm/mach-vexpress/
1829 F:      */*/vexpress*
1830 F:      */*/*/vexpress*
1831 F:      drivers/clk/versatile/clk-vexpress-osc.c
1832 F:      drivers/clocksource/versatile.c
1833 N:      mps2
1834
1835 ARM/VFP SUPPORT
1836 M:      Russell King <linux@armlinux.org.uk>
1837 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1838 W:      http://www.armlinux.org.uk/
1839 S:      Maintained
1840 F:      arch/arm/vfp/
1841
1842 ARM/VOIPAC PXA270 SUPPORT
1843 M:      Marek Vasut <marek.vasut@gmail.com>
1844 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1845 S:      Maintained
1846 F:      arch/arm/mach-pxa/vpac270.c
1847 F:      arch/arm/mach-pxa/include/mach/vpac270.h
1848
1849 ARM/VT8500 ARM ARCHITECTURE
1850 M:      Tony Prisk <linux@prisktech.co.nz>
1851 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1852 S:      Maintained
1853 F:      arch/arm/mach-vt8500/
1854 F:      drivers/clocksource/vt8500_timer.c
1855 F:      drivers/i2c/busses/i2c-wmt.c
1856 F:      drivers/mmc/host/wmt-sdmmc.c
1857 F:      drivers/pwm/pwm-vt8500.c
1858 F:      drivers/rtc/rtc-vt8500.c
1859 F:      drivers/tty/serial/vt8500_serial.c
1860 F:      drivers/usb/host/ehci-platform.c
1861 F:      drivers/usb/host/uhci-platform.c
1862 F:      drivers/video/fbdev/vt8500lcdfb.*
1863 F:      drivers/video/fbdev/wm8505fb*
1864 F:      drivers/video/fbdev/wmt_ge_rops.*
1865
1866 ARM/ZIPIT Z2 SUPPORT
1867 M:      Marek Vasut <marek.vasut@gmail.com>
1868 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1869 S:      Maintained
1870 F:      arch/arm/mach-pxa/z2.c
1871 F:      arch/arm/mach-pxa/include/mach/z2.h
1872
1873 ARM/ZTE ARCHITECTURE
1874 M:      Jun Nie <jun.nie@linaro.org>
1875 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1876 S:      Maintained
1877 F:      arch/arm/mach-zx/
1878 F:      drivers/clk/zte/
1879 F:      Documentation/devicetree/bindings/arm/zte.txt
1880 F:      Documentation/devicetree/bindings/clock/zx296702-clk.txt
1881
1882 ARM/ZYNQ ARCHITECTURE
1883 M:      Michal Simek <michal.simek@xilinx.com>
1884 R:      Sören Brinkmann <soren.brinkmann@xilinx.com>
1885 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1886 W:      http://wiki.xilinx.com
1887 T:      git https://github.com/Xilinx/linux-xlnx.git
1888 S:      Supported
1889 F:      arch/arm/mach-zynq/
1890 F:      drivers/cpuidle/cpuidle-zynq.c
1891 F:      drivers/block/xsysace.c
1892 N:      zynq
1893 N:      xilinx
1894 F:      drivers/clocksource/cadence_ttc_timer.c
1895 F:      drivers/i2c/busses/i2c-cadence.c
1896 F:      drivers/mmc/host/sdhci-of-arasan.c
1897 F:      drivers/edac/synopsys_edac.c
1898
1899 ARM SMMU DRIVERS
1900 M:      Will Deacon <will.deacon@arm.com>
1901 R:      Robin Murphy <robin.murphy@arm.com>
1902 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1903 S:      Maintained
1904 F:      drivers/iommu/arm-smmu.c
1905 F:      drivers/iommu/arm-smmu-v3.c
1906 F:      drivers/iommu/io-pgtable-arm.c
1907 F:      drivers/iommu/io-pgtable-arm-v7s.c
1908
1909 ARM64 PORT (AARCH64 ARCHITECTURE)
1910 M:      Catalin Marinas <catalin.marinas@arm.com>
1911 M:      Will Deacon <will.deacon@arm.com>
1912 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1913 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
1914 S:      Maintained
1915 F:      arch/arm64/
1916 F:      Documentation/arm64/
1917
1918 AS3645A LED FLASH CONTROLLER DRIVER
1919 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1920 L:      linux-media@vger.kernel.org
1921 T:      git git://linuxtv.org/media_tree.git
1922 S:      Maintained
1923 F:      drivers/media/i2c/as3645a.c
1924 F:      include/media/i2c/as3645a.h
1925
1926 ASC7621 HARDWARE MONITOR DRIVER
1927 M:      George Joseph <george.joseph@fairview5.com>
1928 L:      linux-hwmon@vger.kernel.org
1929 S:      Maintained
1930 F:      Documentation/hwmon/asc7621
1931 F:      drivers/hwmon/asc7621.c
1932
1933 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
1934 M:      Corentin Chary <corentin.chary@gmail.com>
1935 L:      acpi4asus-user@lists.sourceforge.net
1936 L:      platform-driver-x86@vger.kernel.org
1937 W:      http://acpi4asus.sf.net
1938 S:      Maintained
1939 F:      drivers/platform/x86/asus*.c
1940 F:      drivers/platform/x86/eeepc*.c
1941
1942 ASUS WIRELESS RADIO CONTROL DRIVER
1943 M:      João Paulo Rechi Vita <jprvita@gmail.com>
1944 L:      platform-driver-x86@vger.kernel.org
1945 S:      Maintained
1946 F:      drivers/platform/x86/asus-wireless.c
1947
1948 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
1949 R:      Dan Williams <dan.j.williams@intel.com>
1950 W:      http://sourceforge.net/projects/xscaleiop
1951 S:      Odd fixes
1952 F:      Documentation/crypto/async-tx-api.txt
1953 F:      crypto/async_tx/
1954 F:      drivers/dma/
1955 F:      include/linux/dmaengine.h
1956 F:      include/linux/async_tx.h
1957
1958 AT24 EEPROM DRIVER
1959 M:      Wolfram Sang <wsa@the-dreams.de>
1960 L:      linux-i2c@vger.kernel.org
1961 S:      Maintained
1962 F:      drivers/misc/eeprom/at24.c
1963 F:      include/linux/platform_data/at24.h
1964
1965 ATA OVER ETHERNET (AOE) DRIVER
1966 M:      "Ed L. Cashin" <ed.cashin@acm.org>
1967 W:      http://www.openaoe.org/
1968 S:      Supported
1969 F:      Documentation/aoe/
1970 F:      drivers/block/aoe/
1971
1972 ATHEROS 71XX/9XXX GPIO DRIVER
1973 M:      Alban Bedel <albeu@free.fr>
1974 W:      https://github.com/AlbanBedel/linux
1975 T:      git git://github.com/AlbanBedel/linux
1976 S:      Maintained
1977 F:      drivers/gpio/gpio-ath79.c
1978 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
1979
1980 ATHEROS ATH GENERIC UTILITIES
1981 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1982 L:      linux-wireless@vger.kernel.org
1983 S:      Supported
1984 F:      drivers/net/wireless/ath/*
1985
1986 ATHEROS ATH5K WIRELESS DRIVER
1987 M:      Jiri Slaby <jirislaby@gmail.com>
1988 M:      Nick Kossifidis <mickflemm@gmail.com>
1989 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1990 L:      linux-wireless@vger.kernel.org
1991 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
1992 S:      Maintained
1993 F:      drivers/net/wireless/ath/ath5k/
1994
1995 ATHEROS ATH6KL WIRELESS DRIVER
1996 M:      Kalle Valo <kvalo@qca.qualcomm.com>
1997 L:      linux-wireless@vger.kernel.org
1998 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
1999 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2000 S:      Supported
2001 F:      drivers/net/wireless/ath/ath6kl/
2002
2003 WILOCITY WIL6210 WIRELESS DRIVER
2004 M:      Maya Erez <qca_merez@qca.qualcomm.com>
2005 L:      linux-wireless@vger.kernel.org
2006 L:      wil6210@qca.qualcomm.com
2007 S:      Supported
2008 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
2009 F:      drivers/net/wireless/ath/wil6210/
2010 F:      include/uapi/linux/wil6210_uapi.h
2011
2012 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
2013 M:      Christian Lamparter <chunkeey@googlemail.com>
2014 L:      linux-wireless@vger.kernel.org
2015 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
2016 S:      Maintained
2017 F:      drivers/net/wireless/ath/carl9170/
2018
2019 ATK0110 HWMON DRIVER
2020 M:      Luca Tettamanti <kronos.it@gmail.com>
2021 L:      linux-hwmon@vger.kernel.org
2022 S:      Maintained
2023 F:      drivers/hwmon/asus_atk0110.c
2024
2025 ATI_REMOTE2 DRIVER
2026 M:      Ville Syrjala <syrjala@sci.fi>
2027 S:      Maintained
2028 F:      drivers/input/misc/ati_remote2.c
2029
2030 ATLX ETHERNET DRIVERS
2031 M:      Jay Cliburn <jcliburn@gmail.com>
2032 M:      Chris Snook <chris.snook@gmail.com>
2033 L:      netdev@vger.kernel.org
2034 W:      http://sourceforge.net/projects/atl1
2035 W:      http://atl1.sourceforge.net
2036 S:      Maintained
2037 F:      drivers/net/ethernet/atheros/
2038
2039 ATM
2040 M:      Chas Williams <3chas3@gmail.com>
2041 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
2042 L:      netdev@vger.kernel.org
2043 W:      http://linux-atm.sourceforge.net
2044 S:      Maintained
2045 F:      drivers/atm/
2046 F:      include/linux/atm*
2047 F:      include/uapi/linux/atm*
2048
2049 ATMEL AT91 / AT32 MCI DRIVER
2050 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
2051 S:      Maintained
2052 F:      drivers/mmc/host/atmel-mci.c
2053
2054 ATMEL AT91 / AT32 SERIAL DRIVER
2055 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2056 S:      Supported
2057 F:      drivers/tty/serial/atmel_serial.c
2058
2059 ATMEL AT91 SAMA5D2-Compatible Shutdown Controller
2060 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2061 S:      Supported
2062 F:      drivers/power/reset/at91-sama5d2_shdwc.c
2063
2064 ATMEL SAMA5D2 ADC DRIVER
2065 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
2066 L:      linux-iio@vger.kernel.org
2067 S:      Supported
2068 F:      drivers/iio/adc/at91-sama5d2_adc.c
2069
2070 ATMEL Audio ALSA driver
2071 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2072 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2073 S:      Supported
2074 F:      sound/soc/atmel
2075
2076 ATMEL DMA DRIVER
2077 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2078 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2079 S:      Supported
2080 F:      drivers/dma/at_hdmac.c
2081 F:      drivers/dma/at_hdmac_regs.h
2082 F:      include/linux/platform_data/dma-atmel.h
2083
2084 ATMEL XDMA DRIVER
2085 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
2086 L:      linux-arm-kernel@lists.infradead.org
2087 L:      dmaengine@vger.kernel.org
2088 S:      Supported
2089 F:      drivers/dma/at_xdmac.c
2090
2091 ATMEL I2C DRIVER
2092 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
2093 L:      linux-i2c@vger.kernel.org
2094 S:      Supported
2095 F:      drivers/i2c/busses/i2c-at91.c
2096
2097 ATMEL ISI DRIVER
2098 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
2099 L:      linux-media@vger.kernel.org
2100 S:      Supported
2101 F:      drivers/media/platform/soc_camera/atmel-isi.c
2102 F:      include/media/atmel-isi.h
2103
2104 ATMEL LCDFB DRIVER
2105 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2106 L:      linux-fbdev@vger.kernel.org
2107 S:      Maintained
2108 F:      drivers/video/fbdev/atmel_lcdfb.c
2109 F:      include/video/atmel_lcdc.h
2110
2111 ATMEL MACB ETHERNET DRIVER
2112 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2113 S:      Supported
2114 F:      drivers/net/ethernet/cadence/
2115
2116 ATMEL NAND DRIVER
2117 M:      Wenyou Yang <wenyou.yang@atmel.com>
2118 M:      Josh Wu <rainyfeeling@outlook.com>
2119 L:      linux-mtd@lists.infradead.org
2120 S:      Supported
2121 F:      drivers/mtd/nand/atmel_nand*
2122
2123 ATMEL SDMMC DRIVER
2124 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
2125 L:      linux-mmc@vger.kernel.org
2126 S:      Supported
2127 F:      drivers/mmc/host/sdhci-of-at91.c
2128
2129 ATMEL SPI DRIVER
2130 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2131 S:      Supported
2132 F:      drivers/spi/spi-atmel.*
2133
2134 ATMEL SSC DRIVER
2135 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2136 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2137 S:      Supported
2138 F:      drivers/misc/atmel-ssc.c
2139 F:      include/linux/atmel-ssc.h
2140
2141 ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
2142 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2143 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2144 S:      Supported
2145 F:      drivers/misc/atmel_tclib.c
2146 F:      drivers/clocksource/tcb_clksrc.c
2147
2148 ATMEL USBA UDC DRIVER
2149 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2150 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2151 S:      Supported
2152 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
2153
2154 ATMEL WIRELESS DRIVER
2155 M:      Simon Kelley <simon@thekelleys.org.uk>
2156 L:      linux-wireless@vger.kernel.org
2157 W:      http://www.thekelleys.org.uk/atmel
2158 W:      http://atmelwlandriver.sourceforge.net/
2159 S:      Maintained
2160 F:      drivers/net/wireless/atmel/atmel*
2161
2162 ATMEL MAXTOUCH DRIVER
2163 M:      Nick Dyer <nick.dyer@itdev.co.uk>
2164 T:      git git://github.com/atmel-maxtouch/linux.git
2165 S:      Supported
2166 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2167 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2168 F:      include/linux/platform_data/atmel_mxt_ts.h
2169
2170 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2171 M:      Bradley Grove <linuxdrivers@attotech.com>
2172 L:      linux-scsi@vger.kernel.org
2173 W:      http://www.attotech.com
2174 S:      Supported
2175 F:      drivers/scsi/esas2r
2176
2177 ATUSB IEEE 802.15.4 RADIO DRIVER
2178 M:      Stefan Schmidt <stefan@osg.samsung.com>
2179 L:      linux-wpan@vger.kernel.org
2180 S:      Maintained
2181 F:      drivers/net/ieee802154/atusb.c
2182 F:      drivers/net/ieee802154/atusb.h
2183 F:      drivers/net/ieee802154/at86rf230.h
2184
2185 AUDIT SUBSYSTEM
2186 M:      Paul Moore <paul@paul-moore.com>
2187 M:      Eric Paris <eparis@redhat.com>
2188 L:      linux-audit@redhat.com (moderated for non-subscribers)
2189 W:      http://people.redhat.com/sgrubb/audit/
2190 T:      git git://git.infradead.org/users/pcmoore/audit
2191 S:      Maintained
2192 F:      include/linux/audit.h
2193 F:      include/uapi/linux/audit.h
2194 F:      kernel/audit*
2195
2196 AUXILIARY DISPLAY DRIVERS
2197 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2198 W:      http://miguelojeda.es/auxdisplay.htm
2199 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2200 S:      Maintained
2201 F:      drivers/auxdisplay/
2202 F:      include/linux/cfag12864b.h
2203
2204 AVR32 ARCHITECTURE
2205 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
2206 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
2207 W:      http://www.atmel.com/products/AVR32/
2208 W:      http://mirror.egtvedt.no/avr32linux.org/
2209 W:      http://avrfreaks.net/
2210 S:      Maintained
2211 F:      arch/avr32/
2212
2213 AVR32/AT32AP MACHINE SUPPORT
2214 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
2215 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
2216 S:      Maintained
2217 F:      arch/avr32/mach-at32ap/
2218
2219 AX.25 NETWORK LAYER
2220 M:      Ralf Baechle <ralf@linux-mips.org>
2221 L:      linux-hams@vger.kernel.org
2222 W:      http://www.linux-ax25.org/
2223 S:      Maintained
2224 F:      include/uapi/linux/ax25.h
2225 F:      include/net/ax25.h
2226 F:      net/ax25/
2227
2228 AZ6007 DVB DRIVER
2229 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2230 L:      linux-media@vger.kernel.org
2231 W:      https://linuxtv.org
2232 T:      git git://linuxtv.org/media_tree.git
2233 S:      Maintained
2234 F:      drivers/media/usb/dvb-usb-v2/az6007.c
2235
2236 AZTECH FM RADIO RECEIVER DRIVER
2237 M:      Hans Verkuil <hverkuil@xs4all.nl>
2238 L:      linux-media@vger.kernel.org
2239 T:      git git://linuxtv.org/media_tree.git
2240 W:      https://linuxtv.org
2241 S:      Maintained
2242 F:      drivers/media/radio/radio-aztech*
2243
2244 B43 WIRELESS DRIVER
2245 L:      linux-wireless@vger.kernel.org
2246 L:      b43-dev@lists.infradead.org
2247 W:      http://wireless.kernel.org/en/users/Drivers/b43
2248 S:      Odd Fixes
2249 F:      drivers/net/wireless/broadcom/b43/
2250
2251 B43LEGACY WIRELESS DRIVER
2252 M:      Larry Finger <Larry.Finger@lwfinger.net>
2253 L:      linux-wireless@vger.kernel.org
2254 L:      b43-dev@lists.infradead.org
2255 W:      http://wireless.kernel.org/en/users/Drivers/b43
2256 S:      Maintained
2257 F:      drivers/net/wireless/broadcom/b43legacy/
2258
2259 BACKLIGHT CLASS/SUBSYSTEM
2260 M:      Jingoo Han <jingoohan1@gmail.com>
2261 M:      Lee Jones <lee.jones@linaro.org>
2262 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
2263 S:      Maintained
2264 F:      drivers/video/backlight/
2265 F:      include/linux/backlight.h
2266
2267 BATMAN ADVANCED
2268 M:      Marek Lindner <mareklindner@neomailbox.ch>
2269 M:      Simon Wunderlich <sw@simonwunderlich.de>
2270 M:      Antonio Quartulli <a@unstable.cc>
2271 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
2272 W:      https://www.open-mesh.org/
2273 Q:      https://patchwork.open-mesh.org/project/batman/list/
2274 S:      Maintained
2275 F:      Documentation/ABI/testing/sysfs-class-net-batman-adv
2276 F:      Documentation/ABI/testing/sysfs-class-net-mesh
2277 F:      Documentation/networking/batman-adv.txt
2278 F:      net/batman-adv/
2279
2280 BAYCOM/HDLCDRV DRIVERS FOR AX.25
2281 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
2282 L:      linux-hams@vger.kernel.org
2283 W:      http://www.baycom.org/~tom/ham/ham.html
2284 S:      Maintained
2285 F:      drivers/net/hamradio/baycom*
2286
2287 BCACHE (BLOCK LAYER CACHE)
2288 M:      Kent Overstreet <kent.overstreet@gmail.com>
2289 L:      linux-bcache@vger.kernel.org
2290 W:      http://bcache.evilpiepirate.org
2291 S:      Maintained
2292 F:      drivers/md/bcache/
2293
2294 BDISP ST MEDIA DRIVER
2295 M:      Fabien Dessenne <fabien.dessenne@st.com>
2296 L:      linux-media@vger.kernel.org
2297 T:      git git://linuxtv.org/media_tree.git
2298 W:      https://linuxtv.org
2299 S:      Supported
2300 F:      drivers/media/platform/sti/bdisp
2301
2302 BEFS FILE SYSTEM
2303 S:      Orphan
2304 F:      Documentation/filesystems/befs.txt
2305 F:      fs/befs/
2306
2307 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
2308 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
2309 L:      netdev@vger.kernel.org
2310 S:      Maintained
2311 F:      drivers/net/ethernet/ec_bhf.c
2312
2313 BFS FILE SYSTEM
2314 M:      "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
2315 S:      Maintained
2316 F:      Documentation/filesystems/bfs.txt
2317 F:      fs/bfs/
2318 F:      include/uapi/linux/bfs_fs.h
2319
2320 BLACKFIN ARCHITECTURE
2321 M:      Steven Miao <realmz6@gmail.com>
2322 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2323 T:      git git://git.code.sf.net/p/adi-linux/code
2324 W:      http://blackfin.uclinux.org
2325 S:      Supported
2326 F:      arch/blackfin/
2327
2328 BLACKFIN EMAC DRIVER
2329 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2330 W:      http://blackfin.uclinux.org
2331 S:      Supported
2332 F:      drivers/net/ethernet/adi/
2333
2334 BLACKFIN RTC DRIVER
2335 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2336 W:      http://blackfin.uclinux.org
2337 S:      Supported
2338 F:      drivers/rtc/rtc-bfin.c
2339
2340 BLACKFIN SDH DRIVER
2341 M:      Sonic Zhang <sonic.zhang@analog.com>
2342 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2343 W:      http://blackfin.uclinux.org
2344 S:      Supported
2345 F:      drivers/mmc/host/bfin_sdh.c
2346
2347 BLACKFIN SERIAL DRIVER
2348 M:      Sonic Zhang <sonic.zhang@analog.com>
2349 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2350 W:      http://blackfin.uclinux.org
2351 S:      Supported
2352 F:      drivers/tty/serial/bfin_uart.c
2353
2354 BLACKFIN WATCHDOG DRIVER
2355 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2356 W:      http://blackfin.uclinux.org
2357 S:      Supported
2358 F:      drivers/watchdog/bfin_wdt.c
2359
2360 BLACKFIN I2C TWI DRIVER
2361 M:      Sonic Zhang <sonic.zhang@analog.com>
2362 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2363 W:      http://blackfin.uclinux.org/
2364 S:      Supported
2365 F:      drivers/i2c/busses/i2c-bfin-twi.c
2366
2367 BLACKFIN MEDIA DRIVER
2368 M:      Scott Jiang <scott.jiang.linux@gmail.com>
2369 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2370 W:      http://blackfin.uclinux.org/
2371 S:      Supported
2372 F:      drivers/media/platform/blackfin/
2373 F:      drivers/media/i2c/adv7183*
2374 F:      drivers/media/i2c/vs6624*
2375
2376 BLINKM RGB LED DRIVER
2377 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
2378 S:      Maintained
2379 F:      drivers/leds/leds-blinkm.c
2380
2381 BLOCK LAYER
2382 M:      Jens Axboe <axboe@kernel.dk>
2383 L:      linux-block@vger.kernel.org
2384 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
2385 S:      Maintained
2386 F:      block/
2387 F:      kernel/trace/blktrace.c
2388
2389 BLOCK2MTD DRIVER
2390 M:      Joern Engel <joern@lazybastard.org>
2391 L:      linux-mtd@lists.infradead.org
2392 S:      Maintained
2393 F:      drivers/mtd/devices/block2mtd.c
2394
2395 BLUETOOTH DRIVERS
2396 M:      Marcel Holtmann <marcel@holtmann.org>
2397 M:      Gustavo Padovan <gustavo@padovan.org>
2398 M:      Johan Hedberg <johan.hedberg@gmail.com>
2399 L:      linux-bluetooth@vger.kernel.org
2400 W:      http://www.bluez.org/
2401 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2402 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2403 S:      Maintained
2404 F:      drivers/bluetooth/
2405
2406 BLUETOOTH SUBSYSTEM
2407 M:      Marcel Holtmann <marcel@holtmann.org>
2408 M:      Gustavo Padovan <gustavo@padovan.org>
2409 M:      Johan Hedberg <johan.hedberg@gmail.com>
2410 L:      linux-bluetooth@vger.kernel.org
2411 W:      http://www.bluez.org/
2412 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2413 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2414 S:      Maintained
2415 F:      net/bluetooth/
2416 F:      include/net/bluetooth/
2417
2418 BONDING DRIVER
2419 M:      Jay Vosburgh <j.vosburgh@gmail.com>
2420 M:      Veaceslav Falico <vfalico@gmail.com>
2421 M:      Andy Gospodarek <gospo@cumulusnetworks.com>
2422 L:      netdev@vger.kernel.org
2423 W:      http://sourceforge.net/projects/bonding/
2424 S:      Supported
2425 F:      drivers/net/bonding/
2426 F:      include/uapi/linux/if_bonding.h
2427
2428 BPF (Safe dynamic programs and tools)
2429 M:      Alexei Starovoitov <ast@kernel.org>
2430 L:      netdev@vger.kernel.org
2431 L:      linux-kernel@vger.kernel.org
2432 S:      Supported
2433 F:      kernel/bpf/
2434
2435 BROADCOM B44 10/100 ETHERNET DRIVER
2436 M:      Gary Zambrano <zambrano@broadcom.com>
2437 L:      netdev@vger.kernel.org
2438 S:      Supported
2439 F:      drivers/net/ethernet/broadcom/b44.*
2440
2441 BROADCOM GENET ETHERNET DRIVER
2442 M:      Florian Fainelli <f.fainelli@gmail.com>
2443 L:      netdev@vger.kernel.org
2444 S:      Supported
2445 F:      drivers/net/ethernet/broadcom/genet/
2446
2447 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
2448 M:      Sony Chacko <sony.chacko@qlogic.com>
2449 M:      Dept-HSGLinuxNICDev@qlogic.com
2450 L:      netdev@vger.kernel.org
2451 S:      Supported
2452 F:      drivers/net/ethernet/broadcom/bnx2.*
2453 F:      drivers/net/ethernet/broadcom/bnx2_*
2454
2455 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
2456 M:      Ariel Elior <ariel.elior@qlogic.com>
2457 L:      netdev@vger.kernel.org
2458 S:      Supported
2459 F:      drivers/net/ethernet/broadcom/bnx2x/
2460
2461 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
2462 M:      Florian Fainelli <f.fainelli@gmail.com>
2463 M:      Ray Jui <rjui@broadcom.com>
2464 M:      Scott Branden <sbranden@broadcom.com>
2465 L:      bcm-kernel-feedback-list@broadcom.com
2466 T:      git git://github.com/broadcom/mach-bcm
2467 S:      Maintained
2468 F:      arch/arm/mach-bcm/
2469 F:      arch/arm/boot/dts/bcm113*
2470 F:      arch/arm/boot/dts/bcm216*
2471 F:      arch/arm/boot/dts/bcm281*
2472 F:      arch/arm64/boot/dts/broadcom/
2473 F:      arch/arm/configs/bcm_defconfig
2474 F:      drivers/mmc/host/sdhci-bcm-kona.c
2475 F:      drivers/clocksource/bcm_kona_timer.c
2476
2477 BROADCOM BCM2835 ARM ARCHITECTURE
2478 M:      Stephen Warren <swarren@wwwdotorg.org>
2479 M:      Lee Jones <lee@kernel.org>
2480 M:      Eric Anholt <eric@anholt.net>
2481 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
2482 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2483 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rpi/linux-rpi.git
2484 S:      Maintained
2485 N:      bcm2835
2486
2487 BROADCOM BCM47XX MIPS ARCHITECTURE
2488 M:      Hauke Mehrtens <hauke@hauke-m.de>
2489 M:      Rafał Miłecki <zajec5@gmail.com>
2490 L:      linux-mips@linux-mips.org
2491 S:      Maintained
2492 F:      arch/mips/bcm47xx/*
2493 F:      arch/mips/include/asm/mach-bcm47xx/*
2494
2495 BROADCOM BCM5301X ARM ARCHITECTURE
2496 M:      Hauke Mehrtens <hauke@hauke-m.de>
2497 L:      linux-arm-kernel@lists.infradead.org
2498 S:      Maintained
2499 F:      arch/arm/mach-bcm/bcm_5301x.c
2500 F:      arch/arm/boot/dts/bcm5301x.dtsi
2501 F:      arch/arm/boot/dts/bcm470*
2502
2503 BROADCOM BCM63XX ARM ARCHITECTURE
2504 M:      Florian Fainelli <f.fainelli@gmail.com>
2505 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2506 L:      bcm-kernel-feedback-list@broadcom.com
2507 T:      git git://github.com/broadcom/stblinux.git
2508 S:      Maintained
2509 F:      arch/arm/mach-bcm/bcm63xx.c
2510 F:      arch/arm/include/debug/bcm63xx.S
2511
2512 BROADCOM BCM63XX/BCM33XX UDC DRIVER
2513 M:      Kevin Cernekee <cernekee@gmail.com>
2514 L:      linux-usb@vger.kernel.org
2515 S:      Maintained
2516 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
2517
2518 BROADCOM BCM7XXX ARM ARCHITECTURE
2519 M:      Brian Norris <computersforpeace@gmail.com>
2520 M:      Gregory Fong <gregory.0xf0@gmail.com>
2521 M:      Florian Fainelli <f.fainelli@gmail.com>
2522 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2523 L:      bcm-kernel-feedback-list@broadcom.com
2524 T:      git git://github.com/broadcom/stblinux.git
2525 S:      Maintained
2526 F:      arch/arm/mach-bcm/*brcmstb*
2527 F:      arch/arm/boot/dts/bcm7*.dts*
2528 F:      drivers/bus/brcmstb_gisb.c
2529 N:      brcmstb
2530
2531 BROADCOM BMIPS MIPS ARCHITECTURE
2532 M:      Kevin Cernekee <cernekee@gmail.com>
2533 M:      Florian Fainelli <f.fainelli@gmail.com>
2534 L:      linux-mips@linux-mips.org
2535 T:      git git://github.com/broadcom/stblinux.git
2536 S:      Maintained
2537 F:      arch/mips/bmips/*
2538 F:      arch/mips/include/asm/mach-bmips/*
2539 F:      arch/mips/kernel/*bmips*
2540 F:      arch/mips/boot/dts/brcm/bcm*.dts*
2541 F:      drivers/irqchip/irq-bcm63*
2542 F:      drivers/irqchip/irq-bcm7*
2543 F:      drivers/irqchip/irq-brcmstb*
2544 F:      include/linux/bcm963xx_nvram.h
2545 F:      include/linux/bcm963xx_tag.h
2546
2547 BROADCOM TG3 GIGABIT ETHERNET DRIVER
2548 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
2549 M:      Prashant Sreedharan <prashant@broadcom.com>
2550 M:      Michael Chan <mchan@broadcom.com>
2551 L:      netdev@vger.kernel.org
2552 S:      Supported
2553 F:      drivers/net/ethernet/broadcom/tg3.*
2554
2555 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2556 M:      Brett Rudley <brudley@broadcom.com>
2557 M:      Arend van Spriel <arend@broadcom.com>
2558 M:      Franky (Zhenhui) Lin <frankyl@broadcom.com>
2559 M:      Hante Meuleman <meuleman@broadcom.com>
2560 L:      linux-wireless@vger.kernel.org
2561 L:      brcm80211-dev-list@broadcom.com
2562 S:      Supported
2563 F:      drivers/net/wireless/broadcom/brcm80211/
2564
2565 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
2566 M:      QLogic-Storage-Upstream@qlogic.com
2567 L:      linux-scsi@vger.kernel.org
2568 S:      Supported
2569 F:      drivers/scsi/bnx2fc/
2570
2571 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
2572 M:      QLogic-Storage-Upstream@qlogic.com
2573 L:      linux-scsi@vger.kernel.org
2574 S:      Supported
2575 F:      drivers/scsi/bnx2i/
2576
2577 BROADCOM IPROC ARM ARCHITECTURE
2578 M:      Ray Jui <rjui@broadcom.com>
2579 M:      Scott Branden <sbranden@broadcom.com>
2580 M:      Jon Mason <jonmason@broadcom.com>
2581 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2582 L:      bcm-kernel-feedback-list@broadcom.com
2583 T:      git git://github.com/broadcom/cygnus-linux.git
2584 S:      Maintained
2585 N:      iproc
2586 N:      cygnus
2587 N:      nsp
2588 N:      bcm9113*
2589 N:      bcm9583*
2590 N:      bcm9585*
2591 N:      bcm9586*
2592 N:      bcm988312
2593 N:      bcm113*
2594 N:      bcm583*
2595 N:      bcm585*
2596 N:      bcm586*
2597 N:      bcm88312
2598
2599 BROADCOM BRCMSTB GPIO DRIVER
2600 M:      Gregory Fong <gregory.0xf0@gmail.com>
2601 L:      bcm-kernel-feedback-list@broadcom.com
2602 S:      Supported
2603 F:      drivers/gpio/gpio-brcmstb.c
2604 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
2605
2606 BROADCOM KONA GPIO DRIVER
2607 M:      Ray Jui <rjui@broadcom.com>
2608 L:      bcm-kernel-feedback-list@broadcom.com
2609 S:      Supported
2610 F:      drivers/gpio/gpio-bcm-kona.c
2611 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
2612
2613 BROADCOM NVRAM DRIVER
2614 M:      Rafał Miłecki <zajec5@gmail.com>
2615 L:      linux-mips@linux-mips.org
2616 S:      Maintained
2617 F:      drivers/firmware/broadcom/*
2618
2619 BROADCOM STB NAND FLASH DRIVER
2620 M:      Brian Norris <computersforpeace@gmail.com>
2621 M:      Kamal Dasu <kdasu.kdev@gmail.com>
2622 L:      linux-mtd@lists.infradead.org
2623 L:      bcm-kernel-feedback-list@broadcom.com
2624 S:      Maintained
2625 F:      drivers/mtd/nand/brcmnand/
2626
2627 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2628 M:      Rafał Miłecki <zajec5@gmail.com>
2629 L:      linux-wireless@vger.kernel.org
2630 S:      Maintained
2631 F:      drivers/bcma/
2632 F:      include/linux/bcma/
2633
2634 BROADCOM SYSTEMPORT ETHERNET DRIVER
2635 M:      Florian Fainelli <f.fainelli@gmail.com>
2636 L:      netdev@vger.kernel.org
2637 S:      Supported
2638 F:      drivers/net/ethernet/broadcom/bcmsysport.*
2639
2640 BROADCOM VULCAN ARM64 SOC
2641 M:      Jayachandran C. <jchandra@broadcom.com>
2642 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2643 L:      bcm-kernel-feedback-list@broadcom.com
2644 S:      Maintained
2645 F:      arch/arm64/boot/dts/broadcom/vulcan*
2646
2647 BROCADE BFA FC SCSI DRIVER
2648 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
2649 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
2650 L:      linux-scsi@vger.kernel.org
2651 S:      Supported
2652 F:      drivers/scsi/bfa/
2653
2654 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
2655 M:      Rasesh Mody <rasesh.mody@qlogic.com>
2656 L:      netdev@vger.kernel.org
2657 S:      Supported
2658 F:      drivers/net/ethernet/brocade/bna/
2659
2660 BSG (block layer generic sg v4 driver)
2661 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
2662 L:      linux-scsi@vger.kernel.org
2663 S:      Supported
2664 F:      block/bsg.c
2665 F:      include/linux/bsg.h
2666 F:      include/uapi/linux/bsg.h
2667
2668 BT87X AUDIO DRIVER
2669 M:      Clemens Ladisch <clemens@ladisch.de>
2670 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2671 T:      git git://git.alsa-project.org/alsa-kernel.git
2672 S:      Maintained
2673 F:      Documentation/sound/alsa/Bt87x.txt
2674 F:      sound/pci/bt87x.c
2675
2676 BT8XXGPIO DRIVER
2677 M:      Michael Buesch <m@bues.ch>
2678 W:      http://bu3sch.de/btgpio.php
2679 S:      Maintained
2680 F:      drivers/gpio/gpio-bt8xx.c
2681
2682 BTRFS FILE SYSTEM
2683 M:      Chris Mason <clm@fb.com>
2684 M:      Josef Bacik <jbacik@fb.com>
2685 M:      David Sterba <dsterba@suse.com>
2686 L:      linux-btrfs@vger.kernel.org
2687 W:      http://btrfs.wiki.kernel.org/
2688 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
2689 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
2690 S:      Maintained
2691 F:      Documentation/filesystems/btrfs.txt
2692 F:      fs/btrfs/
2693
2694 BTTV VIDEO4LINUX DRIVER
2695 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2696 L:      linux-media@vger.kernel.org
2697 W:      https://linuxtv.org
2698 T:      git git://linuxtv.org/media_tree.git
2699 S:      Odd fixes
2700 F:      Documentation/video4linux/bttv/
2701 F:      drivers/media/pci/bt8xx/bttv*
2702
2703 BUSLOGIC SCSI DRIVER
2704 M:      Khalid Aziz <khalid@gonehiking.org>
2705 L:      linux-scsi@vger.kernel.org
2706 S:      Maintained
2707 F:      drivers/scsi/BusLogic.*
2708 F:      drivers/scsi/FlashPoint.*
2709
2710 C-MEDIA CMI8788 DRIVER
2711 M:      Clemens Ladisch <clemens@ladisch.de>
2712 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2713 T:      git git://git.alsa-project.org/alsa-kernel.git
2714 S:      Maintained
2715 F:      sound/pci/oxygen/
2716
2717 C6X ARCHITECTURE
2718 M:      Mark Salter <msalter@redhat.com>
2719 M:      Aurelien Jacquiot <a-jacquiot@ti.com>
2720 L:      linux-c6x-dev@linux-c6x.org
2721 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
2722 S:      Maintained
2723 F:      arch/c6x/
2724
2725 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
2726 M:      David Howells <dhowells@redhat.com>
2727 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
2728 S:      Supported
2729 F:      Documentation/filesystems/caching/cachefiles.txt
2730 F:      fs/cachefiles/
2731
2732 CADET FM/AM RADIO RECEIVER DRIVER
2733 M:      Hans Verkuil <hverkuil@xs4all.nl>
2734 L:      linux-media@vger.kernel.org
2735 T:      git git://linuxtv.org/media_tree.git
2736 W:      https://linuxtv.org
2737 S:      Maintained
2738 F:      drivers/media/radio/radio-cadet*
2739
2740 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
2741 M:      Jonathan Corbet <corbet@lwn.net>
2742 L:      linux-media@vger.kernel.org
2743 T:      git git://linuxtv.org/media_tree.git
2744 S:      Maintained
2745 F:      Documentation/video4linux/cafe_ccic
2746 F:      drivers/media/platform/marvell-ccic/
2747
2748 CAIF NETWORK LAYER
2749 M:      Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
2750 L:      netdev@vger.kernel.org
2751 S:      Supported
2752 F:      Documentation/networking/caif/
2753 F:      drivers/net/caif/
2754 F:      include/uapi/linux/caif/
2755 F:      include/net/caif/
2756 F:      net/caif/
2757
2758 CALGARY x86-64 IOMMU
2759 M:      Muli Ben-Yehuda <muli@il.ibm.com>
2760 M:      "Jon D. Mason" <jdmason@kudzu.us>
2761 L:      discuss@x86-64.org
2762 S:      Maintained
2763 F:      arch/x86/kernel/pci-calgary_64.c
2764 F:      arch/x86/kernel/tce_64.c
2765 F:      arch/x86/include/asm/calgary.h
2766 F:      arch/x86/include/asm/tce.h
2767
2768 CAN NETWORK LAYER
2769 M:      Oliver Hartkopp <socketcan@hartkopp.net>
2770 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2771 L:      linux-can@vger.kernel.org
2772 W:      https://github.com/linux-can
2773 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2774 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2775 S:      Maintained
2776 F:      Documentation/networking/can.txt
2777 F:      net/can/
2778 F:      include/linux/can/core.h
2779 F:      include/uapi/linux/can.h
2780 F:      include/uapi/linux/can/bcm.h
2781 F:      include/uapi/linux/can/raw.h
2782 F:      include/uapi/linux/can/gw.h
2783
2784 CAN NETWORK DRIVERS
2785 M:      Wolfgang Grandegger <wg@grandegger.com>
2786 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2787 L:      linux-can@vger.kernel.org
2788 W:      https://github.com/linux-can
2789 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2790 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2791 S:      Maintained
2792 F:      drivers/net/can/
2793 F:      include/linux/can/dev.h
2794 F:      include/linux/can/platform/
2795 F:      include/uapi/linux/can/error.h
2796 F:      include/uapi/linux/can/netlink.h
2797
2798 CAPABILITIES
2799 M:      Serge Hallyn <serge.hallyn@canonical.com>
2800 L:      linux-security-module@vger.kernel.org
2801 S:      Supported
2802 F:      include/linux/capability.h
2803 F:      include/uapi/linux/capability.h
2804 F:      security/commoncap.c
2805 F:      kernel/capability.c
2806
2807 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
2808 M:      Kevin Tsai <ktsai@capellamicro.com>
2809 S:      Maintained
2810 F:      drivers/iio/light/cm*
2811 F:      Documentation/devicetree/bindings/i2c/trivial-devices.txt
2812
2813 CAVIUM LIQUIDIO NETWORK DRIVER
2814 M:     Derek Chickles <derek.chickles@caviumnetworks.com>
2815 M:     Satanand Burla <satananda.burla@caviumnetworks.com>
2816 M:     Felix Manlunas <felix.manlunas@caviumnetworks.com>
2817 M:     Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com>
2818 L:     netdev@vger.kernel.org
2819 W:     http://www.cavium.com
2820 S:     Supported
2821 F:     drivers/net/ethernet/cavium/liquidio/
2822
2823 CC2520 IEEE-802.15.4 RADIO DRIVER
2824 M:      Varka Bhadram <varkabhadram@gmail.com>
2825 L:      linux-wpan@vger.kernel.org
2826 S:      Maintained
2827 F:      drivers/net/ieee802154/cc2520.c
2828 F:      include/linux/spi/cc2520.h
2829 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
2830
2831 CELL BROADBAND ENGINE ARCHITECTURE
2832 M:      Arnd Bergmann <arnd@arndb.de>
2833 L:      linuxppc-dev@lists.ozlabs.org
2834 W:      http://www.ibm.com/developerworks/power/cell/
2835 S:      Supported
2836 F:      arch/powerpc/include/asm/cell*.h
2837 F:      arch/powerpc/include/asm/spu*.h
2838 F:      arch/powerpc/include/uapi/asm/spu*.h
2839 F:      arch/powerpc/oprofile/*cell*
2840 F:      arch/powerpc/platforms/cell/
2841
2842 CEPH COMMON CODE (LIBCEPH)
2843 M:      Ilya Dryomov <idryomov@gmail.com>
2844 M:      "Yan, Zheng" <zyan@redhat.com>
2845 M:      Sage Weil <sage@redhat.com>
2846 L:      ceph-devel@vger.kernel.org
2847 W:      http://ceph.com/
2848 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2849 T:      git git://github.com/ceph/ceph-client.git
2850 S:      Supported
2851 F:      net/ceph/
2852 F:      include/linux/ceph/
2853 F:      include/linux/crush/
2854
2855 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
2856 M:      "Yan, Zheng" <zyan@redhat.com>
2857 M:      Sage Weil <sage@redhat.com>
2858 M:      Ilya Dryomov <idryomov@gmail.com>
2859 L:      ceph-devel@vger.kernel.org
2860 W:      http://ceph.com/
2861 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2862 T:      git git://github.com/ceph/ceph-client.git
2863 S:      Supported
2864 F:      Documentation/filesystems/ceph.txt
2865 F:      fs/ceph/
2866
2867 CERTIFICATE HANDLING:
2868 M:      David Howells <dhowells@redhat.com>
2869 M:      David Woodhouse <dwmw2@infradead.org>
2870 L:      keyrings@vger.kernel.org
2871 S:      Maintained
2872 F:      Documentation/module-signing.txt
2873 F:      certs/
2874 F:      scripts/sign-file.c
2875 F:      scripts/extract-cert.c
2876
2877 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
2878 L:      linux-usb@vger.kernel.org
2879 S:      Orphan
2880 F:      Documentation/usb/WUSB-Design-overview.txt
2881 F:      Documentation/usb/wusb-cbaf
2882 F:      drivers/usb/host/hwa-hc.c
2883 F:      drivers/usb/host/whci/
2884 F:      drivers/usb/wusbcore/
2885 F:      include/linux/usb/wusb*
2886
2887 CFAG12864B LCD DRIVER
2888 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2889 W:      http://miguelojeda.es/auxdisplay.htm
2890 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2891 S:      Maintained
2892 F:      drivers/auxdisplay/cfag12864b.c
2893 F:      include/linux/cfag12864b.h
2894
2895 CFAG12864BFB LCD FRAMEBUFFER DRIVER
2896 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2897 W:      http://miguelojeda.es/auxdisplay.htm
2898 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2899 S:      Maintained
2900 F:      drivers/auxdisplay/cfag12864bfb.c
2901 F:      include/linux/cfag12864b.h
2902
2903 CFG80211 and NL80211
2904 M:      Johannes Berg <johannes@sipsolutions.net>
2905 L:      linux-wireless@vger.kernel.org
2906 W:      http://wireless.kernel.org/
2907 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2908 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
2909 S:      Maintained
2910 F:      include/uapi/linux/nl80211.h
2911 F:      include/net/cfg80211.h
2912 F:      net/wireless/*
2913 X:      net/wireless/wext*
2914
2915 CHAR and MISC DRIVERS
2916 M:      Arnd Bergmann <arnd@arndb.de>
2917 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2918 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
2919 S:      Supported
2920 F:      drivers/char/*
2921 F:      drivers/misc/*
2922 F:      include/linux/miscdevice.h
2923
2924 CHECKPATCH
2925 M:      Andy Whitcroft <apw@canonical.com>
2926 M:      Joe Perches <joe@perches.com>
2927 S:      Maintained
2928 F:      scripts/checkpatch.pl
2929
2930 CHINESE DOCUMENTATION
2931 M:      Harry Wei <harryxiyou@gmail.com>
2932 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
2933 L:      linux-kernel@zh-kernel.org (moderated for non-subscribers)
2934 S:      Maintained
2935 F:      Documentation/zh_CN/
2936
2937 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
2938 M:      Peter Chen <Peter.Chen@nxp.com>
2939 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
2940 L:      linux-usb@vger.kernel.org
2941 S:      Maintained
2942 F:      drivers/usb/chipidea/
2943
2944 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
2945 M:      Hans de Goede <hdegoede@redhat.com>
2946 L:      linux-input@vger.kernel.org
2947 S:      Maintained
2948 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
2949 F:      drivers/input/touchscreen/chipone_icn8318.c
2950
2951 CHROME HARDWARE PLATFORM SUPPORT
2952 M:      Olof Johansson <olof@lixom.net>
2953 S:      Maintained
2954 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/olof/chrome-platform.git
2955 F:      drivers/platform/chrome/
2956
2957 CISCO VIC ETHERNET NIC DRIVER
2958 M:      Christian Benvenuti <benve@cisco.com>
2959 M:      Sujith Sankar <ssujith@cisco.com>
2960 M:      Govindarajulu Varadarajan <_govind@gmx.com>
2961 M:      Neel Patel <neepatel@cisco.com>
2962 S:      Supported
2963 F:      drivers/net/ethernet/cisco/enic/
2964
2965 CISCO VIC LOW LATENCY NIC DRIVER
2966 M:      Christian Benvenuti <benve@cisco.com>
2967 M:      Dave Goodell <dgoodell@cisco.com>
2968 S:      Supported
2969 F:      drivers/infiniband/hw/usnic/
2970
2971 CIRRUS LOGIC EP93XX ETHERNET DRIVER
2972 M:      Hartley Sweeten <hsweeten@visionengravers.com>
2973 L:      netdev@vger.kernel.org
2974 S:      Maintained
2975 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
2976
2977 CIRRUS LOGIC AUDIO CODEC DRIVERS
2978 M:      Brian Austin <brian.austin@cirrus.com>
2979 M:      Paul Handrigan <Paul.Handrigan@cirrus.com>
2980 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2981 S:      Maintained
2982 F:      sound/soc/codecs/cs*
2983
2984 CLEANCACHE API
2985 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2986 L:      linux-kernel@vger.kernel.org
2987 S:      Maintained
2988 F:      mm/cleancache.c
2989 F:      include/linux/cleancache.h
2990
2991 CLK API
2992 M:      Russell King <linux@armlinux.org.uk>
2993 L:      linux-clk@vger.kernel.org
2994 S:      Maintained
2995 F:      include/linux/clk.h
2996
2997 CLOCKSOURCE, CLOCKEVENT DRIVERS
2998 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2999 M:      Thomas Gleixner <tglx@linutronix.de>
3000 L:      linux-kernel@vger.kernel.org
3001 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
3002 S:      Supported
3003 F:      drivers/clocksource
3004
3005 CISCO FCOE HBA DRIVER
3006 M:      Hiral Patel <hiralpat@cisco.com>
3007 M:      Suma Ramars <sramars@cisco.com>
3008 M:      Brian Uchino <buchino@cisco.com>
3009 L:      linux-scsi@vger.kernel.org
3010 S:      Supported
3011 F:      drivers/scsi/fnic/
3012
3013 CISCO SCSI HBA DRIVER
3014 M:      Narsimhulu Musini <nmusini@cisco.com>
3015 M:      Sesidhar Baddela <sebaddel@cisco.com>
3016 L:      linux-scsi@vger.kernel.org
3017 S:      Supported
3018 F:      drivers/scsi/snic/
3019
3020 CMPC ACPI DRIVER
3021 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
3022 M:      Daniel Oliveira Nascimento <don@syst.com.br>
3023 L:      platform-driver-x86@vger.kernel.org
3024 S:      Supported
3025 F:      drivers/platform/x86/classmate-laptop.c
3026
3027 COBALT MEDIA DRIVER
3028 M:      Hans Verkuil <hans.verkuil@cisco.com>
3029 L:      linux-media@vger.kernel.org
3030 T:      git git://linuxtv.org/media_tree.git
3031 W:      https://linuxtv.org
3032 S:      Supported
3033 F:      drivers/media/pci/cobalt/
3034
3035 COCCINELLE/Semantic Patches (SmPL)
3036 M:      Julia Lawall <Julia.Lawall@lip6.fr>
3037 M:      Gilles Muller <Gilles.Muller@lip6.fr>
3038 M:      Nicolas Palix <nicolas.palix@imag.fr>
3039 M:      Michal Marek <mmarek@suse.com>
3040 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
3041 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
3042 W:      http://coccinelle.lip6.fr/
3043 S:      Supported
3044 F:      Documentation/coccinelle.txt
3045 F:      scripts/coccinelle/
3046 F:      scripts/coccicheck
3047
3048 CODA FILE SYSTEM
3049 M:      Jan Harkes <jaharkes@cs.cmu.edu>
3050 M:      coda@cs.cmu.edu
3051 L:      codalist@coda.cs.cmu.edu
3052 W:      http://www.coda.cs.cmu.edu/
3053 S:      Maintained
3054 F:      Documentation/filesystems/coda.txt
3055 F:      fs/coda/
3056 F:      include/linux/coda*.h
3057 F:      include/uapi/linux/coda*.h
3058
3059 CODA V4L2 MEM2MEM DRIVER
3060 M:      Philipp Zabel <p.zabel@pengutronix.de>
3061 L:      linux-media@vger.kernel.org
3062 S:      Maintained
3063 F:      Documentation/devicetree/bindings/media/coda.txt
3064 F:      drivers/media/platform/coda/
3065
3066 COMMON CLK FRAMEWORK
3067 M:      Michael Turquette <mturquette@baylibre.com>
3068 M:      Stephen Boyd <sboyd@codeaurora.org>
3069 L:      linux-clk@vger.kernel.org
3070 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
3071 S:      Maintained
3072 F:      drivers/clk/
3073 X:      drivers/clk/clkdev.c
3074 F:      include/linux/clk-pr*
3075 F:      include/linux/clk/
3076
3077 COMMON INTERNET FILE SYSTEM (CIFS)
3078 M:      Steve French <sfrench@samba.org>
3079 L:      linux-cifs@vger.kernel.org
3080 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
3081 W:      http://linux-cifs.samba.org/
3082 T:      git git://git.samba.org/sfrench/cifs-2.6.git
3083 S:      Supported
3084 F:      Documentation/filesystems/cifs/
3085 F:      fs/cifs/
3086
3087 COMPACTPCI HOTPLUG CORE
3088 M:      Scott Murray <scott@spiteful.org>
3089 L:      linux-pci@vger.kernel.org
3090 S:      Maintained
3091 F:      drivers/pci/hotplug/cpci_hotplug*
3092
3093 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
3094 M:      Scott Murray <scott@spiteful.org>
3095 L:      linux-pci@vger.kernel.org
3096 S:      Maintained
3097 F:      drivers/pci/hotplug/cpcihp_zt5550.*
3098
3099 COMPACTPCI HOTPLUG GENERIC DRIVER
3100 M:      Scott Murray <scott@spiteful.org>
3101 L:      linux-pci@vger.kernel.org
3102 S:      Maintained
3103 F:      drivers/pci/hotplug/cpcihp_generic.c
3104
3105 COMPAL LAPTOP SUPPORT
3106 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
3107 L:      platform-driver-x86@vger.kernel.org
3108 S:      Maintained
3109 F:      drivers/platform/x86/compal-laptop.c
3110
3111 CONEXANT ACCESSRUNNER USB DRIVER
3112 L:      accessrunner-general@lists.sourceforge.net
3113 W:      http://accessrunner.sourceforge.net/
3114 S:      Orphan
3115 F:      drivers/usb/atm/cxacru.c
3116
3117 CONFIGFS
3118 M:      Joel Becker <jlbec@evilplan.org>
3119 M:      Christoph Hellwig <hch@lst.de>
3120 T:      git git://git.infradead.org/users/hch/configfs.git
3121 S:      Supported
3122 F:      fs/configfs/
3123 F:      include/linux/configfs.h
3124
3125 CONNECTOR
3126 M:      Evgeniy Polyakov <zbr@ioremap.net>
3127 L:      netdev@vger.kernel.org
3128 S:      Maintained
3129 F:      drivers/connector/
3130
3131 CONTROL GROUP (CGROUP)
3132 M:      Tejun Heo <tj@kernel.org>
3133 M:      Li Zefan <lizefan@huawei.com>
3134 M:      Johannes Weiner <hannes@cmpxchg.org>
3135 L:      cgroups@vger.kernel.org
3136 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3137 S:      Maintained
3138 F:      Documentation/cgroups/
3139 F:      include/linux/cgroup*
3140 F:      kernel/cgroup*
3141
3142 CONTROL GROUP - CPUSET
3143 M:      Li Zefan <lizefan@huawei.com>
3144 L:      cgroups@vger.kernel.org
3145 W:      http://www.bullopensource.org/cpuset/
3146 W:      http://oss.sgi.com/projects/cpusets/
3147 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3148 S:      Maintained
3149 F:      Documentation/cgroups/cpusets.txt
3150 F:      include/linux/cpuset.h
3151 F:      kernel/cpuset.c
3152
3153 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
3154 M:      Johannes Weiner <hannes@cmpxchg.org>
3155 M:      Michal Hocko <mhocko@kernel.org>
3156 M:      Vladimir Davydov <vdavydov@virtuozzo.com>
3157 L:      cgroups@vger.kernel.org
3158 L:      linux-mm@kvack.org
3159 S:      Maintained
3160 F:      mm/memcontrol.c
3161 F:      mm/swap_cgroup.c
3162
3163 CORETEMP HARDWARE MONITORING DRIVER
3164 M:      Fenghua Yu <fenghua.yu@intel.com>
3165 L:      linux-hwmon@vger.kernel.org
3166 S:      Maintained
3167 F:      Documentation/hwmon/coretemp
3168 F:      drivers/hwmon/coretemp.c
3169
3170 COSA/SRP SYNC SERIAL DRIVER
3171 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
3172 W:      http://www.fi.muni.cz/~kas/cosa/
3173 S:      Maintained
3174 F:      drivers/net/wan/cosa*
3175
3176 CPMAC ETHERNET DRIVER
3177 M:      Florian Fainelli <florian@openwrt.org>
3178 L:      netdev@vger.kernel.org
3179 S:      Maintained
3180 F:      drivers/net/ethernet/ti/cpmac.c
3181
3182 CPU FREQUENCY DRIVERS
3183 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
3184 M:      Viresh Kumar <viresh.kumar@linaro.org>
3185 L:      linux-pm@vger.kernel.org
3186 S:      Maintained
3187 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3188 T:      git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
3189 F:      drivers/cpufreq/
3190 F:      include/linux/cpufreq.h
3191
3192 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
3193 M:      Viresh Kumar <viresh.kumar@linaro.org>
3194 M:      Sudeep Holla <sudeep.holla@arm.com>
3195 L:      linux-pm@vger.kernel.org
3196 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
3197 S:      Maintained
3198 F:      drivers/cpufreq/arm_big_little.h
3199 F:      drivers/cpufreq/arm_big_little.c
3200 F:      drivers/cpufreq/arm_big_little_dt.c
3201
3202 CPUIDLE DRIVER - ARM BIG LITTLE
3203 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
3204 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3205 L:      linux-pm@vger.kernel.org
3206 L:      linux-arm-kernel@lists.infradead.org
3207 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3208 S:      Maintained
3209 F:      drivers/cpuidle/cpuidle-big_little.c
3210
3211 CPUIDLE DRIVER - ARM EXYNOS
3212 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
3213 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3214 M:      Kukjin Kim <kgene@kernel.org>
3215 L:      linux-pm@vger.kernel.org
3216 L:      linux-samsung-soc@vger.kernel.org
3217 S:      Supported
3218 F:      drivers/cpuidle/cpuidle-exynos.c
3219 F:      arch/arm/mach-exynos/pm.c
3220
3221 CPUIDLE DRIVERS
3222 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
3223 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3224 L:      linux-pm@vger.kernel.org
3225 S:      Maintained
3226 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3227 F:      drivers/cpuidle/*
3228 F:      include/linux/cpuidle.h
3229
3230 CPUID/MSR DRIVER
3231 M:      "H. Peter Anvin" <hpa@zytor.com>
3232 S:      Maintained
3233 F:      arch/x86/kernel/cpuid.c
3234 F:      arch/x86/kernel/msr.c
3235
3236 CPU POWER MONITORING SUBSYSTEM
3237 M:      Thomas Renninger <trenn@suse.com>
3238 L:      linux-pm@vger.kernel.org
3239 S:      Maintained
3240 F:      tools/power/cpupower/
3241
3242 CRAMFS FILESYSTEM
3243 W:      http://sourceforge.net/projects/cramfs/
3244 S:      Orphan / Obsolete
3245 F:      Documentation/filesystems/cramfs.txt
3246 F:      fs/cramfs/
3247
3248 CRIS PORT
3249 M:      Mikael Starvik <starvik@axis.com>
3250 M:      Jesper Nilsson <jesper.nilsson@axis.com>
3251 L:      linux-cris-kernel@axis.com
3252 W:      http://developer.axis.com
3253 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jesper/cris.git
3254 S:      Maintained
3255 F:      arch/cris/
3256 F:      drivers/tty/serial/crisv10.*
3257
3258 CRYPTO API
3259 M:      Herbert Xu <herbert@gondor.apana.org.au>
3260 M:      "David S. Miller" <davem@davemloft.net>
3261 L:      linux-crypto@vger.kernel.org
3262 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
3263 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
3264 S:      Maintained
3265 F:      Documentation/crypto/
3266 F:      Documentation/DocBook/crypto-API.tmpl
3267 F:      arch/*/crypto/
3268 F:      crypto/
3269 F:      drivers/crypto/
3270 F:      include/crypto/
3271
3272 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
3273 M:      Neil Horman <nhorman@tuxdriver.com>
3274 L:      linux-crypto@vger.kernel.org
3275 S:      Maintained
3276 F:      crypto/ansi_cprng.c
3277 F:      crypto/rng.c
3278
3279 CS3308 MEDIA DRIVER
3280 M:      Hans Verkuil <hverkuil@xs4all.nl>
3281 L:      linux-media@vger.kernel.org
3282 T:      git git://linuxtv.org/media_tree.git
3283 W:      http://linuxtv.org
3284 S:      Odd Fixes
3285 F:      drivers/media/i2c/cs3308.c
3286 F:      drivers/media/i2c/cs3308.h
3287
3288 CS5535 Audio ALSA driver
3289 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
3290 S:      Maintained
3291 F:      sound/pci/cs5535audio/
3292
3293 CW1200 WLAN driver
3294 M:      Solomon Peachy <pizza@shaftnet.org>
3295 S:      Maintained
3296 F:      drivers/net/wireless/st/cw1200/
3297
3298 CX18 VIDEO4LINUX DRIVER
3299 M:      Andy Walls <awalls@md.metrocast.net>
3300 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
3301 L:      linux-media@vger.kernel.org
3302 T:      git git://linuxtv.org/media_tree.git
3303 W:      https://linuxtv.org
3304 W:      http://www.ivtvdriver.org/index.php/Cx18
3305 S:      Maintained
3306 F:      Documentation/video4linux/cx18.txt
3307 F:      drivers/media/pci/cx18/
3308 F:      include/uapi/linux/ivtv*
3309
3310 CX2341X MPEG ENCODER HELPER MODULE
3311 M:      Hans Verkuil <hverkuil@xs4all.nl>
3312 L:      linux-media@vger.kernel.org
3313 T:      git git://linuxtv.org/media_tree.git
3314 W:      https://linuxtv.org
3315 S:      Maintained
3316 F:      drivers/media/common/cx2341x*
3317 F:      include/media/cx2341x*
3318
3319 CX24120 MEDIA DRIVER
3320 M:      Jemma Denson <jdenson@gmail.com>
3321 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
3322 L:      linux-media@vger.kernel.org
3323 W:      https://linuxtv.org
3324 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3325 S:      Maintained
3326 F:      drivers/media/dvb-frontends/cx24120*
3327
3328 CX88 VIDEO4LINUX DRIVER
3329 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3330 L:      linux-media@vger.kernel.org
3331 W:      https://linuxtv.org
3332 T:      git git://linuxtv.org/media_tree.git
3333 S:      Odd fixes
3334 F:      Documentation/video4linux/cx88/
3335 F:      drivers/media/pci/cx88/
3336
3337 CXD2820R MEDIA DRIVER
3338 M:      Antti Palosaari <crope@iki.fi>
3339 L:      linux-media@vger.kernel.org
3340 W:      https://linuxtv.org
3341 W:      http://palosaari.fi/linux/
3342 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3343 T:      git git://linuxtv.org/anttip/media_tree.git
3344 S:      Maintained
3345 F:      drivers/media/dvb-frontends/cxd2820r*
3346
3347 CXGB3 ETHERNET DRIVER (CXGB3)
3348 M:      Santosh Raspatur <santosh@chelsio.com>
3349 L:      netdev@vger.kernel.org
3350 W:      http://www.chelsio.com
3351 S:      Supported
3352 F:      drivers/net/ethernet/chelsio/cxgb3/
3353
3354 CXGB3 ISCSI DRIVER (CXGB3I)
3355 M:      Karen Xie <kxie@chelsio.com>
3356 L:      linux-scsi@vger.kernel.org
3357 W:      http://www.chelsio.com
3358 S:      Supported
3359 F:      drivers/scsi/cxgbi/cxgb3i
3360
3361 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
3362 M:      Steve Wise <swise@chelsio.com>
3363 L:      linux-rdma@vger.kernel.org
3364 W:      http://www.openfabrics.org
3365 S:      Supported
3366 F:      drivers/infiniband/hw/cxgb3/
3367
3368 CXGB4 ETHERNET DRIVER (CXGB4)
3369 M:      Hariprasad S <hariprasad@chelsio.com>
3370 L:      netdev@vger.kernel.org
3371 W:      http://www.chelsio.com
3372 S:      Supported
3373 F:      drivers/net/ethernet/chelsio/cxgb4/
3374
3375 CXGB4 ISCSI DRIVER (CXGB4I)
3376 M:      Karen Xie <kxie@chelsio.com>
3377 L:      linux-scsi@vger.kernel.org
3378 W:      http://www.chelsio.com
3379 S:      Supported
3380 F:      drivers/scsi/cxgbi/cxgb4i
3381
3382 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
3383 M:      Steve Wise <swise@chelsio.com>
3384 L:      linux-rdma@vger.kernel.org
3385 W:      http://www.openfabrics.org
3386 S:      Supported
3387 F:      drivers/infiniband/hw/cxgb4/
3388
3389 CXGB4VF ETHERNET DRIVER (CXGB4VF)
3390 M:      Casey Leedom <leedom@chelsio.com>
3391 L:      netdev@vger.kernel.org
3392 W:      http://www.chelsio.com
3393 S:      Supported
3394 F:      drivers/net/ethernet/chelsio/cxgb4vf/
3395
3396 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
3397 M:      Ian Munsie <imunsie@au1.ibm.com>
3398 M:      Michael Neuling <mikey@neuling.org>
3399 L:      linuxppc-dev@lists.ozlabs.org
3400 S:      Supported
3401 F:      drivers/misc/cxl/
3402 F:      include/misc/cxl*
3403 F:      include/uapi/misc/cxl.h
3404 F:      Documentation/powerpc/cxl.txt
3405 F:      Documentation/powerpc/cxl.txt
3406 F:      Documentation/ABI/testing/sysfs-class-cxl
3407
3408 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
3409 M:      Manoj N. Kumar <manoj@linux.vnet.ibm.com>
3410 M:      Matthew R. Ochs <mrochs@linux.vnet.ibm.com>
3411 L:      linux-scsi@vger.kernel.org
3412 S:      Supported
3413 F:      drivers/scsi/cxlflash/
3414 F:      include/uapi/scsi/cxlflash_ioctls.h
3415 F:      Documentation/powerpc/cxlflash.txt
3416
3417 STMMAC ETHERNET DRIVER
3418 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
3419 M:      Alexandre Torgue <alexandre.torgue@st.com>
3420 L:      netdev@vger.kernel.org
3421 W:      http://www.stlinux.com
3422 S:      Supported
3423 F:      drivers/net/ethernet/stmicro/stmmac/
3424
3425 CYBERPRO FB DRIVER
3426 M:      Russell King <linux@armlinux.org.uk>
3427 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3428 W:      http://www.armlinux.org.uk/
3429 S:      Maintained
3430 F:      drivers/video/fbdev/cyber2000fb.*
3431
3432 CYCLADES ASYNC MUX DRIVER
3433 W:      http://www.cyclades.com/
3434 S:      Orphan
3435 F:      drivers/tty/cyclades.c
3436 F:      include/linux/cyclades.h
3437 F:      include/uapi/linux/cyclades.h
3438
3439 CYCLADES PC300 DRIVER
3440 W:      http://www.cyclades.com/
3441 S:      Orphan
3442 F:      drivers/net/wan/pc300*
3443
3444 CYPRESS_FIRMWARE MEDIA DRIVER
3445 M:      Antti Palosaari <crope@iki.fi>
3446 L:      linux-media@vger.kernel.org
3447 W:      https://linuxtv.org
3448 W:      http://palosaari.fi/linux/
3449 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3450 T:      git git://linuxtv.org/anttip/media_tree.git
3451 S:      Maintained
3452 F:      drivers/media/common/cypress_firmware*
3453
3454 CYTTSP TOUCHSCREEN DRIVER
3455 M:      Ferruh Yigit <fery@cypress.com>
3456 L:      linux-input@vger.kernel.org
3457 S:      Supported
3458 F:      drivers/input/touchscreen/cyttsp*
3459 F:      include/linux/input/cyttsp.h
3460
3461 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
3462 M:      Joshua Kinard <kumba@gentoo.org>
3463 S:      Maintained
3464 F:      drivers/rtc/rtc-ds1685.c
3465 F:      include/linux/rtc/ds1685.h
3466
3467 DAMA SLAVE for AX.25
3468 M:      Joerg Reuter <jreuter@yaina.de>
3469 W:      http://yaina.de/jreuter/
3470 W:      http://www.qsl.net/dl1bke/
3471 L:      linux-hams@vger.kernel.org
3472 S:      Maintained
3473 F:      net/ax25/af_ax25.c
3474 F:      net/ax25/ax25_dev.c
3475 F:      net/ax25/ax25_ds_*
3476 F:      net/ax25/ax25_in.c
3477 F:      net/ax25/ax25_out.c
3478 F:      net/ax25/ax25_timer.c
3479 F:      net/ax25/sysctl_net_ax25.c
3480
3481 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
3482 L:      netdev@vger.kernel.org
3483 S:      Orphan
3484 F:      Documentation/networking/dmfe.txt
3485 F:      drivers/net/ethernet/dec/tulip/dmfe.c
3486
3487 DC390/AM53C974 SCSI driver
3488 M:      Hannes Reinecke <hare@suse.com>
3489 L:      linux-scsi@vger.kernel.org
3490 S:      Maintained
3491 F:      drivers/scsi/am53c974.c
3492
3493 DC395x SCSI driver
3494 M:      Oliver Neukum <oliver@neukum.org>
3495 M:      Ali Akcaagac <aliakc@web.de>
3496 M:      Jamie Lenehan <lenehan@twibble.org>
3497 L:      dc395x@twibble.org
3498 W:      http://twibble.org/dist/dc395x/
3499 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
3500 S:      Maintained
3501 F:      Documentation/scsi/dc395x.txt
3502 F:      drivers/scsi/dc395x.*
3503
3504 DCCP PROTOCOL
3505 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
3506 L:      dccp@vger.kernel.org
3507 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
3508 S:      Maintained
3509 F:      include/linux/dccp.h
3510 F:      include/uapi/linux/dccp.h
3511 F:      include/linux/tfrc.h
3512 F:      net/dccp/
3513
3514 DECnet NETWORK LAYER
3515 W:      http://linux-decnet.sourceforge.net
3516 L:      linux-decnet-user@lists.sourceforge.net
3517 S:      Orphan
3518 F:      Documentation/networking/decnet.txt
3519 F:      net/decnet/
3520
3521 DECSTATION PLATFORM SUPPORT
3522 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3523 L:      linux-mips@linux-mips.org
3524 W:      http://www.linux-mips.org/wiki/DECstation
3525 S:      Maintained
3526 F:      arch/mips/dec/
3527 F:      arch/mips/include/asm/dec/
3528 F:      arch/mips/include/asm/mach-dec/
3529
3530 DEFXX FDDI NETWORK DRIVER
3531 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3532 S:      Maintained
3533 F:      drivers/net/fddi/defxx.*
3534
3535 DELL LAPTOP DRIVER
3536 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3537 M:      Pali Rohár <pali.rohar@gmail.com>
3538 L:      platform-driver-x86@vger.kernel.org
3539 S:      Maintained
3540 F:      drivers/platform/x86/dell-laptop.c
3541
3542 DELL LAPTOP RBTN DRIVER
3543 M:      Pali Rohár <pali.rohar@gmail.com>
3544 S:      Maintained
3545 F:      drivers/platform/x86/dell-rbtn.*
3546
3547 DELL LAPTOP FREEFALL DRIVER
3548 M:      Pali Rohár <pali.rohar@gmail.com>
3549 S:      Maintained
3550 F:      drivers/platform/x86/dell-smo8800.c
3551
3552 DELL LAPTOP SMM DRIVER
3553 M:      Pali Rohár <pali.rohar@gmail.com>
3554 S:      Maintained
3555 F:      drivers/hwmon/dell-smm-hwmon.c
3556 F:      include/uapi/linux/i8k.h
3557
3558 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
3559 M:      Doug Warzecha <Douglas_Warzecha@dell.com>
3560 S:      Maintained
3561 F:      Documentation/dcdbas.txt
3562 F:      drivers/firmware/dcdbas.*
3563
3564 DELL WMI EXTRAS DRIVER
3565 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3566 M:      Pali Rohár <pali.rohar@gmail.com>
3567 S:      Maintained
3568 F:      drivers/platform/x86/dell-wmi.c
3569
3570 DESIGNWARE USB2 DRD IP DRIVER
3571 M:      John Youn <johnyoun@synopsys.com>
3572 L:      linux-usb@vger.kernel.org
3573 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3574 S:      Maintained
3575 F:      drivers/usb/dwc2/
3576
3577 DESIGNWARE USB3 DRD IP DRIVER
3578 M:      Felipe Balbi <balbi@kernel.org>
3579 L:      linux-usb@vger.kernel.org
3580 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3581 S:      Maintained
3582 F:      drivers/usb/dwc3/
3583
3584 DEVICE COREDUMP (DEV_COREDUMP)
3585 M:      Johannes Berg <johannes@sipsolutions.net>
3586 L:      linux-kernel@vger.kernel.org
3587 S:      Maintained
3588 F:      drivers/base/devcoredump.c
3589 F:      include/linux/devcoredump.h
3590
3591 DEVICE FREQUENCY (DEVFREQ)
3592 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
3593 M:      Kyungmin Park <kyungmin.park@samsung.com>
3594 L:      linux-pm@vger.kernel.org
3595 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3596 S:      Maintained
3597 F:      drivers/devfreq/
3598 F:      include/linux/devfreq.h
3599 F:      Documentation/devicetree/bindings/devfreq/
3600
3601 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
3602 M:      Chanwoo Choi <cw00.choi@samsung.com>
3603 L:      linux-pm@vger.kernel.org
3604 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3605 S:      Supported
3606 F:      drivers/devfreq/event/
3607 F:      drivers/devfreq/devfreq-event.c
3608 F:      include/linux/devfreq-event.h
3609 F:      Documentation/devicetree/bindings/devfreq/event/
3610
3611 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3612 M:      Chanwoo Choi <cw00.choi@samsung.com>
3613 L:      linux-pm@vger.kernel.org
3614 L:      linux-samsung-soc@vger.kernel.org
3615 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3616 S:      Maintained
3617 F:      drivers/devfreq/exynos-bus.c
3618 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3619
3620 DEVICE NUMBER REGISTRY
3621 M:      Torben Mathiasen <device@lanana.org>
3622 W:      http://lanana.org/docs/device-list/index.html
3623 S:      Maintained
3624
3625 DEVICE-MAPPER  (LVM)
3626 M:      Alasdair Kergon <agk@redhat.com>
3627 M:      Mike Snitzer <snitzer@redhat.com>
3628 M:      dm-devel@redhat.com
3629 L:      dm-devel@redhat.com
3630 W:      http://sources.redhat.com/dm
3631 Q:      http://patchwork.kernel.org/project/dm-devel/list/
3632 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
3633 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
3634 S:      Maintained
3635 F:      Documentation/device-mapper/
3636 F:      drivers/md/dm*
3637 F:      drivers/md/persistent-data/
3638 F:      include/linux/device-mapper.h
3639 F:      include/linux/dm-*.h
3640 F:      include/uapi/linux/dm-*.h
3641
3642 DEVLINK
3643 M:      Jiri Pirko <jiri@mellanox.com>
3644 L:      netdev@vger.kernel.org
3645 S:      Supported
3646 F:      net/core/devlink.c
3647 F:      include/net/devlink.h
3648 F:      include/uapi/linux/devlink.h
3649
3650 DIALOG SEMICONDUCTOR DRIVERS
3651 M:      Support Opensource <support.opensource@diasemi.com>
3652 W:      http://www.dialog-semiconductor.com/products
3653 S:      Supported
3654 F:      Documentation/hwmon/da90??
3655 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
3656 F:      drivers/gpio/gpio-da90??.c
3657 F:      drivers/hwmon/da90??-hwmon.c
3658 F:      drivers/iio/adc/da91??-*.c
3659 F:      drivers/input/misc/da90??_onkey.c
3660 F:      drivers/input/touchscreen/da9052_tsi.c
3661 F:      drivers/leds/leds-da90??.c
3662 F:      drivers/mfd/da903x.c
3663 F:      drivers/mfd/da90??-*.c
3664 F:      drivers/mfd/da91??-*.c
3665 F:      drivers/power/da9052-battery.c
3666 F:      drivers/power/da91??-*.c
3667 F:      drivers/regulator/da903x.c
3668 F:      drivers/regulator/da9???-regulator.[ch]
3669 F:      drivers/rtc/rtc-da90??.c
3670 F:      drivers/video/backlight/da90??_bl.c
3671 F:      drivers/watchdog/da90??_wdt.c
3672 F:      include/linux/mfd/da903x.h
3673 F:      include/linux/mfd/da9052/
3674 F:      include/linux/mfd/da9055/
3675 F:      include/linux/mfd/da9063/
3676 F:      include/linux/mfd/da9150/
3677 F:      include/sound/da[79]*.h
3678 F:      sound/soc/codecs/da[79]*.[ch]
3679
3680 DIGI NEO AND CLASSIC PCI PRODUCTS
3681 M:      Lidza Louina <lidza.louina@gmail.com>
3682 M:      Mark Hounschell <markh@compro.net>
3683 L:      driverdev-devel@linuxdriverproject.org
3684 S:      Maintained
3685 F:      drivers/staging/dgnc/
3686
3687 DIOLAN U2C-12 I2C DRIVER
3688 M:      Guenter Roeck <linux@roeck-us.net>
3689 L:      linux-i2c@vger.kernel.org
3690 S:      Maintained
3691 F:      drivers/i2c/busses/i2c-diolan-u2c.c
3692
3693 DIRECT ACCESS (DAX)
3694 M:      Matthew Wilcox <willy@linux.intel.com>
3695 L:      linux-fsdevel@vger.kernel.org
3696 S:      Supported
3697 F:      fs/dax.c
3698
3699 DIRECTORY NOTIFICATION (DNOTIFY)
3700 M:      Eric Paris <eparis@parisplace.org>
3701 S:      Maintained
3702 F:      Documentation/filesystems/dnotify.txt
3703 F:      fs/notify/dnotify/
3704 F:      include/linux/dnotify.h
3705
3706 DISK GEOMETRY AND PARTITION HANDLING
3707 M:      Andries Brouwer <aeb@cwi.nl>
3708 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
3709 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
3710 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
3711 S:      Maintained
3712
3713 DISKQUOTA
3714 M:      Jan Kara <jack@suse.com>
3715 S:      Maintained
3716 F:      Documentation/filesystems/quota.txt
3717 F:      fs/quota/
3718 F:      include/linux/quota*.h
3719 F:      include/uapi/linux/quota*.h
3720
3721 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
3722 M:      Bernie Thompson <bernie@plugable.com>
3723 L:      linux-fbdev@vger.kernel.org
3724 S:      Maintained
3725 W:      http://plugable.com/category/projects/udlfb/
3726 F:      drivers/video/fbdev/udlfb.c
3727 F:      include/video/udlfb.h
3728 F:      Documentation/fb/udlfb.txt
3729
3730 DISTRIBUTED LOCK MANAGER (DLM)
3731 M:      Christine Caulfield <ccaulfie@redhat.com>
3732 M:      David Teigland <teigland@redhat.com>
3733 L:      cluster-devel@redhat.com
3734 W:      http://sources.redhat.com/cluster/
3735 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
3736 S:      Supported
3737 F:      fs/dlm/
3738
3739 DMA BUFFER SHARING FRAMEWORK
3740 M:      Sumit Semwal <sumit.semwal@linaro.org>
3741 S:      Maintained
3742 L:      linux-media@vger.kernel.org
3743 L:      dri-devel@lists.freedesktop.org
3744 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
3745 F:      drivers/dma-buf/
3746 F:      include/linux/dma-buf*
3747 F:      include/linux/reservation.h
3748 F:      include/linux/*fence.h
3749 F:      Documentation/dma-buf-sharing.txt
3750 T:      git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
3751
3752 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
3753 M:      Vinod Koul <vinod.koul@intel.com>
3754 L:      dmaengine@vger.kernel.org
3755 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
3756 S:      Maintained
3757 F:      drivers/dma/
3758 F:      include/linux/dmaengine.h
3759 F:      Documentation/dmaengine/
3760 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
3761
3762 DME1737 HARDWARE MONITOR DRIVER
3763 M:      Juerg Haefliger <juergh@gmail.com>
3764 L:      linux-hwmon@vger.kernel.org
3765 S:      Maintained
3766 F:      Documentation/hwmon/dme1737
3767 F:      drivers/hwmon/dme1737.c
3768
3769 DMI/SMBIOS SUPPORT
3770 M:      Jean Delvare <jdelvare@suse.com>
3771 S:      Maintained
3772 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
3773 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
3774 F:      drivers/firmware/dmi-id.c
3775 F:      drivers/firmware/dmi_scan.c
3776 F:      include/linux/dmi.h
3777
3778 DOCUMENTATION
3779 M:      Jonathan Corbet <corbet@lwn.net>
3780 L:      linux-doc@vger.kernel.org
3781 S:      Maintained
3782 F:      Documentation/
3783 F:      scripts/docproc.c
3784 F:      scripts/kernel-doc*
3785 X:      Documentation/ABI/
3786 X:      Documentation/devicetree/
3787 X:      Documentation/acpi
3788 X:      Documentation/power
3789 X:      Documentation/spi
3790 X:      Documentation/DocBook/media
3791 T:      git git://git.lwn.net/linux.git docs-next
3792
3793 DOUBLETALK DRIVER
3794 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
3795 L:      blinux-list@redhat.com
3796 S:      Maintained
3797 F:      drivers/char/dtlk.c
3798 F:      include/linux/dtlk.h
3799
3800 DPT_I2O SCSI RAID DRIVER
3801 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
3802 L:      linux-scsi@vger.kernel.org
3803 W:      http://www.adaptec.com/
3804 S:      Maintained
3805 F:      drivers/scsi/dpt*
3806 F:      drivers/scsi/dpt/
3807
3808 DRBD DRIVER
3809 M:      Philipp Reisner <philipp.reisner@linbit.com>
3810 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
3811 L:      drbd-dev@lists.linbit.com
3812 W:      http://www.drbd.org
3813 T:      git git://git.linbit.com/linux-drbd.git
3814 T:      git git://git.linbit.com/drbd-8.4.git
3815 S:      Supported
3816 F:      drivers/block/drbd/
3817 F:      lib/lru_cache.c
3818 F:      Documentation/blockdev/drbd/
3819
3820 DRIVER CORE, KOBJECTS, DEBUGFS, KERNFS AND SYSFS
3821 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3822 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
3823 S:      Supported
3824 F:      Documentation/kobject.txt
3825 F:      drivers/base/
3826 F:      fs/debugfs/
3827 F:      fs/kernfs/
3828 F:      fs/sysfs/
3829 F:      include/linux/debugfs.h
3830 F:      include/linux/kobj*
3831 F:      lib/kobj*
3832
3833 DRM DRIVERS
3834 M:      David Airlie <airlied@linux.ie>
3835 L:      dri-devel@lists.freedesktop.org
3836 T:      git git://people.freedesktop.org/~airlied/linux
3837 S:      Maintained
3838 F:      drivers/gpu/drm/
3839 F:      drivers/gpu/vga/
3840 F:      include/drm/
3841 F:      include/uapi/drm/
3842
3843 RADEON and AMDGPU DRM DRIVERS
3844 M:      Alex Deucher <alexander.deucher@amd.com>
3845 M:      Christian König <christian.koenig@amd.com>
3846 L:      dri-devel@lists.freedesktop.org
3847 T:      git git://people.freedesktop.org/~agd5f/linux
3848 S:      Supported
3849 F:      drivers/gpu/drm/radeon/
3850 F:      include/uapi/drm/radeon*
3851 F:      drivers/gpu/drm/amd/
3852 F:      include/uapi/drm/amdgpu*
3853
3854 DRM PANEL DRIVERS
3855 M:      Thierry Reding <thierry.reding@gmail.com>
3856 L:      dri-devel@lists.freedesktop.org
3857 T:      git git://anongit.freedesktop.org/tegra/linux.git
3858 S:      Maintained
3859 F:      drivers/gpu/drm/drm_panel.c
3860 F:      drivers/gpu/drm/panel/
3861 F:      include/drm/drm_panel.h
3862 F:      Documentation/devicetree/bindings/display/panel/
3863
3864 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
3865 M:      Daniel Vetter <daniel.vetter@intel.com>
3866 M:      Jani Nikula <jani.nikula@linux.intel.com>
3867 L:      intel-gfx@lists.freedesktop.org
3868 L:      dri-devel@lists.freedesktop.org
3869 W:      https://01.org/linuxgraphics/
3870 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
3871 T:      git git://anongit.freedesktop.org/drm-intel
3872 S:      Supported
3873 F:      drivers/gpu/drm/i915/
3874 F:      include/drm/i915*
3875 F:      include/uapi/drm/i915*
3876
3877 DRM DRIVERS FOR ATMEL HLCDC
3878 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
3879 L:      dri-devel@lists.freedesktop.org
3880 S:      Supported
3881 F:      drivers/gpu/drm/atmel-hlcdc/
3882 F:      Documentation/devicetree/bindings/drm/atmel/
3883
3884 DRM DRIVERS FOR EXYNOS
3885 M:      Inki Dae <inki.dae@samsung.com>
3886 M:      Joonyoung Shim <jy0922.shim@samsung.com>
3887 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
3888 M:      Kyungmin Park <kyungmin.park@samsung.com>
3889 L:      dri-devel@lists.freedesktop.org
3890 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
3891 S:      Supported
3892 F:      drivers/gpu/drm/exynos/
3893 F:      include/drm/exynos*
3894 F:      include/uapi/drm/exynos*
3895
3896 DRM DRIVERS FOR FREESCALE DCU
3897 M:      Stefan Agner <stefan@agner.ch>
3898 M:      Alison Wang <alison.wang@freescale.com>
3899 L:      dri-devel@lists.freedesktop.org
3900 S:      Supported
3901 F:      drivers/gpu/drm/fsl-dcu/
3902 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
3903 F:      Documentation/devicetree/bindings/display/panel/nec,nl4827hc19_05b.txt
3904
3905 DRM DRIVERS FOR FREESCALE IMX
3906 M:      Philipp Zabel <p.zabel@pengutronix.de>
3907 L:      dri-devel@lists.freedesktop.org
3908 S:      Maintained
3909 F:      drivers/gpu/drm/imx/
3910 F:      drivers/gpu/ipu-v3/
3911 F:      Documentation/devicetree/bindings/display/imx/
3912
3913 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
3914 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
3915 L:      dri-devel@lists.freedesktop.org
3916 T:      git git://github.com/patjak/drm-gma500
3917 S:      Maintained
3918 F:      drivers/gpu/drm/gma500
3919 F:      include/drm/gma500*
3920
3921 DRM DRIVERS FOR NVIDIA TEGRA
3922 M:      Thierry Reding <thierry.reding@gmail.com>
3923 M:      Terje Bergström <tbergstrom@nvidia.com>
3924 L:      dri-devel@lists.freedesktop.org
3925 L:      linux-tegra@vger.kernel.org
3926 T:      git git://anongit.freedesktop.org/tegra/linux.git
3927 S:      Supported
3928 F:      drivers/gpu/drm/tegra/
3929 F:      drivers/gpu/host1x/
3930 F:      include/linux/host1x.h
3931 F:      include/uapi/drm/tegra_drm.h
3932 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
3933
3934 DRM DRIVERS FOR RENESAS
3935 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
3936 L:      dri-devel@lists.freedesktop.org
3937 L:      linux-renesas-soc@vger.kernel.org
3938 T:      git git://people.freedesktop.org/~airlied/linux
3939 S:      Supported
3940 F:      drivers/gpu/drm/rcar-du/
3941 F:      drivers/gpu/drm/shmobile/
3942 F:      include/linux/platform_data/shmob_drm.h
3943
3944 DRM DRIVERS FOR ROCKCHIP
3945 M:      Mark Yao <mark.yao@rock-chips.com>
3946 L:      dri-devel@lists.freedesktop.org
3947 S:      Maintained
3948 F:      drivers/gpu/drm/rockchip/
3949 F:      Documentation/devicetree/bindings/display/rockchip*
3950
3951 DRM DRIVERS FOR STI
3952 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
3953 M:      Vincent Abriou <vincent.abriou@st.com>
3954 L:      dri-devel@lists.freedesktop.org
3955 T:      git http://git.linaro.org/people/benjamin.gaignard/kernel.git
3956 S:      Maintained
3957 F:      drivers/gpu/drm/sti
3958 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
3959
3960 DRM DRIVERS FOR VIVANTE GPU IP
3961 M:      Lucas Stach <l.stach@pengutronix.de>
3962 R:      Russell King <linux+etnaviv@armlinux.org.uk>
3963 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
3964 L:      dri-devel@lists.freedesktop.org
3965 S:      Maintained
3966 F:      drivers/gpu/drm/etnaviv
3967 F:      Documentation/devicetree/bindings/display/etnaviv
3968
3969 DSBR100 USB FM RADIO DRIVER
3970 M:      Alexey Klimov <klimov.linux@gmail.com>
3971 L:      linux-media@vger.kernel.org
3972 T:      git git://linuxtv.org/media_tree.git
3973 S:      Maintained
3974 F:      drivers/media/radio/dsbr100.c
3975
3976 DSCC4 DRIVER
3977 M:      Francois Romieu <romieu@fr.zoreil.com>
3978 L:      netdev@vger.kernel.org
3979 S:      Maintained
3980 F:      drivers/net/wan/dscc4.c
3981
3982 DT3155 MEDIA DRIVER
3983 M:      Hans Verkuil <hverkuil@xs4all.nl>
3984 L:      linux-media@vger.kernel.org
3985 T:      git git://linuxtv.org/media_tree.git
3986 W:      https://linuxtv.org
3987 S:      Odd Fixes
3988 F:      drivers/media/pci/dt3155/
3989
3990 DVB_USB_AF9015 MEDIA DRIVER
3991 M:      Antti Palosaari <crope@iki.fi>
3992 L:      linux-media@vger.kernel.org
3993 W:      https://linuxtv.org
3994 W:      http://palosaari.fi/linux/
3995 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3996 T:      git git://linuxtv.org/anttip/media_tree.git
3997 S:      Maintained
3998 F:      drivers/media/usb/dvb-usb-v2/af9015*
3999
4000 DVB_USB_AF9035 MEDIA DRIVER
4001 M:      Antti Palosaari <crope@iki.fi>
4002 L:      linux-media@vger.kernel.org
4003 W:      https://linuxtv.org
4004 W:      http://palosaari.fi/linux/
4005 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4006 T:      git git://linuxtv.org/anttip/media_tree.git
4007 S:      Maintained
4008 F:      drivers/media/usb/dvb-usb-v2/af9035*
4009
4010 DVB_USB_ANYSEE MEDIA DRIVER
4011 M:      Antti Palosaari <crope@iki.fi>
4012 L:      linux-media@vger.kernel.org
4013 W:      https://linuxtv.org
4014 W:      http://palosaari.fi/linux/
4015 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4016 T:      git git://linuxtv.org/anttip/media_tree.git
4017 S:      Maintained
4018 F:      drivers/media/usb/dvb-usb-v2/anysee*
4019
4020 DVB_USB_AU6610 MEDIA DRIVER
4021 M:      Antti Palosaari <crope@iki.fi>
4022 L:      linux-media@vger.kernel.org
4023 W:      https://linuxtv.org
4024 W:      http://palosaari.fi/linux/
4025 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4026 T:      git git://linuxtv.org/anttip/media_tree.git
4027 S:      Maintained
4028 F:      drivers/media/usb/dvb-usb-v2/au6610*
4029
4030 DVB_USB_CE6230 MEDIA DRIVER
4031 M:      Antti Palosaari <crope@iki.fi>
4032 L:      linux-media@vger.kernel.org
4033 W:      https://linuxtv.org
4034 W:      http://palosaari.fi/linux/
4035 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4036 T:      git git://linuxtv.org/anttip/media_tree.git
4037 S:      Maintained
4038 F:      drivers/media/usb/dvb-usb-v2/ce6230*
4039
4040 DVB_USB_CXUSB MEDIA DRIVER
4041 M:      Michael Krufky <mkrufky@linuxtv.org>
4042 L:      linux-media@vger.kernel.org
4043 W:      https://linuxtv.org
4044 W:      http://github.com/mkrufky
4045 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4046 T:      git git://linuxtv.org/media_tree.git
4047 S:      Maintained
4048 F:      drivers/media/usb/dvb-usb/cxusb*
4049
4050 DVB_USB_EC168 MEDIA DRIVER
4051 M:      Antti Palosaari <crope@iki.fi>
4052 L:      linux-media@vger.kernel.org
4053 W:      https://linuxtv.org
4054 W:      http://palosaari.fi/linux/
4055 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4056 T:      git git://linuxtv.org/anttip/media_tree.git
4057 S:      Maintained
4058 F:      drivers/media/usb/dvb-usb-v2/ec168*
4059
4060 DVB_USB_GL861 MEDIA DRIVER
4061 M:      Antti Palosaari <crope@iki.fi>
4062 L:      linux-media@vger.kernel.org
4063 W:      https://linuxtv.org
4064 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4065 T:      git git://linuxtv.org/anttip/media_tree.git
4066 S:      Maintained
4067 F:      drivers/media/usb/dvb-usb-v2/gl861*
4068
4069 DVB_USB_MXL111SF MEDIA DRIVER
4070 M:      Michael Krufky <mkrufky@linuxtv.org>
4071 L:      linux-media@vger.kernel.org
4072 W:      https://linuxtv.org
4073 W:      http://github.com/mkrufky
4074 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4075 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
4076 S:      Maintained
4077 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
4078
4079 DVB_USB_RTL28XXU MEDIA DRIVER
4080 M:      Antti Palosaari <crope@iki.fi>
4081 L:      linux-media@vger.kernel.org
4082 W:      https://linuxtv.org
4083 W:      http://palosaari.fi/linux/
4084 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4085 T:      git git://linuxtv.org/anttip/media_tree.git
4086 S:      Maintained
4087 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
4088
4089 DVB_USB_V2 MEDIA DRIVER
4090 M:      Antti Palosaari <crope@iki.fi>
4091 L:      linux-media@vger.kernel.org
4092 W:      https://linuxtv.org
4093 W:      http://palosaari.fi/linux/
4094 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4095 T:      git git://linuxtv.org/anttip/media_tree.git
4096 S:      Maintained
4097 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
4098 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
4099
4100 DYNAMIC DEBUG
4101 M:      Jason Baron <jbaron@akamai.com>
4102 S:      Maintained
4103 F:      lib/dynamic_debug.c
4104 F:      include/linux/dynamic_debug.h
4105
4106 DZ DECSTATION DZ11 SERIAL DRIVER
4107 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4108 S:      Maintained
4109 F:      drivers/tty/serial/dz.*
4110
4111 E3X0 POWER BUTTON DRIVER
4112 M:      Moritz Fischer <moritz.fischer@ettus.com>
4113 L:      usrp-users@lists.ettus.com
4114 W:      http://www.ettus.com
4115 S:      Supported
4116 F:      drivers/input/misc/e3x0-button.c
4117 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
4118
4119 E4000 MEDIA DRIVER
4120 M:      Antti Palosaari <crope@iki.fi>
4121 L:      linux-media@vger.kernel.org
4122 W:      https://linuxtv.org
4123 W:      http://palosaari.fi/linux/
4124 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4125 T:      git git://linuxtv.org/anttip/media_tree.git
4126 S:      Maintained
4127 F:      drivers/media/tuners/e4000*
4128
4129 EATA ISA/EISA/PCI SCSI DRIVER
4130 M:      Dario Ballabio <ballabio_dario@emc.com>
4131 L:      linux-scsi@vger.kernel.org
4132 S:      Maintained
4133 F:      drivers/scsi/eata.c
4134
4135 EC100 MEDIA DRIVER
4136 M:      Antti Palosaari <crope@iki.fi>
4137 L:      linux-media@vger.kernel.org
4138 W:      https://linuxtv.org
4139 W:      http://palosaari.fi/linux/
4140 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4141 T:      git git://linuxtv.org/anttip/media_tree.git
4142 S:      Maintained
4143 F:      drivers/media/dvb-frontends/ec100*
4144
4145 ECRYPT FILE SYSTEM
4146 M:      Tyler Hicks <tyhicks@canonical.com>
4147 L:      ecryptfs@vger.kernel.org
4148 W:      http://ecryptfs.org
4149 W:      https://launchpad.net/ecryptfs
4150 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
4151 S:      Supported
4152 F:      Documentation/filesystems/ecryptfs.txt
4153 F:      fs/ecryptfs/
4154
4155 EDAC-CORE
4156 M:      Doug Thompson <dougthompson@xmission.com>
4157 M:      Borislav Petkov <bp@alien8.de>
4158 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4159 L:      linux-edac@vger.kernel.org
4160 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git for-next
4161 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-edac.git linux_next
4162 S:      Supported
4163 F:      Documentation/edac.txt
4164 F:      drivers/edac/
4165 F:      include/linux/edac.h
4166
4167 EDAC-AMD64
4168 M:      Doug Thompson <dougthompson@xmission.com>
4169 M:      Borislav Petkov <bp@alien8.de>
4170 L:      linux-edac@vger.kernel.org
4171 S:      Maintained
4172 F:      drivers/edac/amd64_edac*
4173
4174 EDAC-CALXEDA
4175 M:      Doug Thompson <dougthompson@xmission.com>
4176 M:      Robert Richter <rric@kernel.org>
4177 L:      linux-edac@vger.kernel.org
4178 S:      Maintained
4179 F:      drivers/edac/highbank*
4180
4181 EDAC-CAVIUM
4182 M:      Ralf Baechle <ralf@linux-mips.org>
4183 M:      David Daney <david.daney@cavium.com>
4184 L:      linux-edac@vger.kernel.org
4185 L:      linux-mips@linux-mips.org
4186 S:      Supported
4187 F:      drivers/edac/octeon_edac*
4188
4189 EDAC-E752X
4190 M:      Mark Gross <mark.gross@intel.com>
4191 M:      Doug Thompson <dougthompson@xmission.com>
4192 L:      linux-edac@vger.kernel.org
4193 S:      Maintained
4194 F:      drivers/edac/e752x_edac.c
4195
4196 EDAC-E7XXX
4197 M:      Doug Thompson <dougthompson@xmission.com>
4198 L:      linux-edac@vger.kernel.org
4199 S:      Maintained
4200 F:      drivers/edac/e7xxx_edac.c
4201
4202 EDAC-GHES
4203 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4204 L:      linux-edac@vger.kernel.org
4205 S:      Maintained
4206 F:      drivers/edac/ghes_edac.c
4207
4208 EDAC-I82443BXGX
4209 M:      Tim Small <tim@buttersideup.com>
4210 L:      linux-edac@vger.kernel.org
4211 S:      Maintained
4212 F:      drivers/edac/i82443bxgx_edac.c
4213
4214 EDAC-I3000
4215 M:      Jason Uhlenkott <juhlenko@akamai.com>
4216 L:      linux-edac@vger.kernel.org
4217 S:      Maintained
4218 F:      drivers/edac/i3000_edac.c
4219
4220 EDAC-I5000
4221 M:      Doug Thompson <dougthompson@xmission.com>
4222 L:      linux-edac@vger.kernel.org
4223 S:      Maintained
4224 F:      drivers/edac/i5000_edac.c
4225
4226 EDAC-I5400
4227 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4228 L:      linux-edac@vger.kernel.org
4229 S:      Maintained
4230 F:      drivers/edac/i5400_edac.c
4231
4232 EDAC-I7300
4233 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4234 L:      linux-edac@vger.kernel.org
4235 S:      Maintained
4236 F:      drivers/edac/i7300_edac.c
4237
4238 EDAC-I7CORE
4239 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4240 L:      linux-edac@vger.kernel.org
4241 S:      Maintained
4242 F:      drivers/edac/i7core_edac.c
4243
4244 EDAC-I82975X
4245 M:      Ranganathan Desikan <ravi@jetztechnologies.com>
4246 M:      "Arvind R." <arvino55@gmail.com>
4247 L:      linux-edac@vger.kernel.org
4248 S:      Maintained
4249 F:      drivers/edac/i82975x_edac.c
4250
4251 EDAC-IE31200
4252 M:      Jason Baron <jbaron@akamai.com>
4253 L:      linux-edac@vger.kernel.org
4254 S:      Maintained
4255 F:      drivers/edac/ie31200_edac.c
4256
4257 EDAC-MPC85XX
4258 M:      Johannes Thumshirn <morbidrsa@gmail.com>
4259 L:      linux-edac@vger.kernel.org
4260 S:      Maintained
4261 F:      drivers/edac/mpc85xx_edac.[ch]
4262
4263 EDAC-PASEMI
4264 M:      Egor Martovetsky <egor@pasemi.com>
4265 L:      linux-edac@vger.kernel.org
4266 S:      Maintained
4267 F:      drivers/edac/pasemi_edac.c
4268
4269 EDAC-R82600
4270 M:      Tim Small <tim@buttersideup.com>
4271 L:      linux-edac@vger.kernel.org
4272 S:      Maintained
4273 F:      drivers/edac/r82600_edac.c
4274
4275 EDAC-SBRIDGE
4276 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4277 L:      linux-edac@vger.kernel.org
4278 S:      Maintained
4279 F:      drivers/edac/sb_edac.c
4280
4281 EDAC-XGENE
4282 APPLIED MICRO (APM) X-GENE SOC EDAC
4283 M:     Loc Ho <lho@apm.com>
4284 S:     Supported
4285 F:     drivers/edac/xgene_edac.c
4286 F:     Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
4287
4288 EDIROL UA-101/UA-1000 DRIVER
4289 M:      Clemens Ladisch <clemens@ladisch.de>
4290 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4291 T:      git git://git.alsa-project.org/alsa-kernel.git
4292 S:      Maintained
4293 F:      sound/usb/misc/ua101.c
4294
4295 EXTENSIBLE FIRMWARE INTERFACE (EFI)
4296 M:      Matt Fleming <matt@codeblueprint.co.uk>
4297 L:      linux-efi@vger.kernel.org
4298 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4299 S:      Maintained
4300 F:      Documentation/efi-stub.txt
4301 F:      arch/ia64/kernel/efi.c
4302 F:      arch/x86/boot/compressed/eboot.[ch]
4303 F:      arch/x86/include/asm/efi.h
4304 F:      arch/x86/platform/efi/
4305 F:      drivers/firmware/efi/
4306 F:      include/linux/efi*.h
4307
4308 EFI VARIABLE FILESYSTEM
4309 M:      Matthew Garrett <matthew.garrett@nebula.com>
4310 M:      Jeremy Kerr <jk@ozlabs.org>
4311 M:      Matt Fleming <matt@codeblueprint.co.uk>
4312 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4313 L:      linux-efi@vger.kernel.org
4314 S:      Maintained
4315 F:      fs/efivarfs/
4316
4317 EFIFB FRAMEBUFFER DRIVER
4318 L:      linux-fbdev@vger.kernel.org
4319 M:      Peter Jones <pjones@redhat.com>
4320 S:      Maintained
4321 F:      drivers/video/fbdev/efifb.c
4322
4323 EFS FILESYSTEM
4324 W:      http://aeschi.ch.eu.org/efs/
4325 S:      Orphan
4326 F:      fs/efs/
4327
4328 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
4329 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
4330 L:      netdev@vger.kernel.org
4331 S:      Maintained
4332 F:      drivers/net/ethernet/ibm/ehea/
4333
4334 EM28XX VIDEO4LINUX DRIVER
4335 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4336 L:      linux-media@vger.kernel.org
4337 W:      https://linuxtv.org
4338 T:      git git://linuxtv.org/media_tree.git
4339 S:      Maintained
4340 F:      drivers/media/usb/em28xx/
4341
4342 EMBEDDED LINUX
4343 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
4344 M:      Matt Mackall <mpm@selenic.com>
4345 M:      David Woodhouse <dwmw2@infradead.org>
4346 L:      linux-embedded@vger.kernel.org
4347 S:      Maintained
4348
4349 EMULEX/AVAGO LPFC FC/FCOE SCSI DRIVER
4350 M:      James Smart <james.smart@avagotech.com>
4351 M:      Dick Kennedy <dick.kennedy@avagotech.com>
4352 L:      linux-scsi@vger.kernel.org
4353 W:      http://www.avagotech.com
4354 S:      Supported
4355 F:      drivers/scsi/lpfc/
4356
4357 ENE CB710 FLASH CARD READER DRIVER
4358 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
4359 S:      Maintained
4360 F:      drivers/misc/cb710/
4361 F:      drivers/mmc/host/cb710-mmc.*
4362 F:      include/linux/cb710.h
4363
4364 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
4365 M:      Maxim Levitsky <maximlevitsky@gmail.com>
4366 S:      Maintained
4367 F:      drivers/media/rc/ene_ir.*
4368
4369 EPSON S1D13XXX FRAMEBUFFER DRIVER
4370 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
4371 S:      Maintained
4372 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
4373 F:      drivers/video/fbdev/s1d13xxxfb.c
4374 F:      include/video/s1d13xxxfb.h
4375
4376 ET131X NETWORK DRIVER
4377 M:      Mark Einon <mark.einon@gmail.com>
4378 S:      Odd Fixes
4379 F:      drivers/net/ethernet/agere/
4380
4381 ETHERNET BRIDGE
4382 M:      Stephen Hemminger <stephen@networkplumber.org>
4383 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
4384 L:      netdev@vger.kernel.org
4385 W:      http://www.linuxfoundation.org/en/Net:Bridge
4386 S:      Maintained
4387 F:      include/linux/netfilter_bridge/
4388 F:      net/bridge/
4389
4390 ETHERNET PHY LIBRARY
4391 M:      Florian Fainelli <f.fainelli@gmail.com>
4392 L:      netdev@vger.kernel.org
4393 S:      Maintained
4394 F:      include/linux/phy.h
4395 F:      include/linux/phy_fixed.h
4396 F:      drivers/net/phy/
4397 F:      Documentation/networking/phy.txt
4398 F:      drivers/of/of_mdio.c
4399 F:      drivers/of/of_net.c
4400
4401 EXT2 FILE SYSTEM
4402 M:      Jan Kara <jack@suse.com>
4403 L:      linux-ext4@vger.kernel.org
4404 S:      Maintained
4405 F:      Documentation/filesystems/ext2.txt
4406 F:      fs/ext2/
4407 F:      include/linux/ext2*
4408
4409 EXT4 FILE SYSTEM
4410 M:      "Theodore Ts'o" <tytso@mit.edu>
4411 M:      Andreas Dilger <adilger.kernel@dilger.ca>
4412 L:      linux-ext4@vger.kernel.org
4413 W:      http://ext4.wiki.kernel.org
4414 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
4415 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
4416 S:      Maintained
4417 F:      Documentation/filesystems/ext4.txt
4418 F:      fs/ext4/
4419
4420 Extended Verification Module (EVM)
4421 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
4422 L:      linux-ima-devel@lists.sourceforge.net
4423 L:      linux-security-module@vger.kernel.org
4424 S:      Supported
4425 F:      security/integrity/evm/
4426
4427 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
4428 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
4429 M:      Chanwoo Choi <cw00.choi@samsung.com>
4430 L:      linux-kernel@vger.kernel.org
4431 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
4432 S:      Maintained
4433 F:      drivers/extcon/
4434 F:      include/linux/extcon/
4435 F:      include/linux/extcon.h
4436 F:      Documentation/extcon/
4437 F:      Documentation/devicetree/bindings/extcon/
4438
4439 EXYNOS DP DRIVER
4440 M:      Jingoo Han <jingoohan1@gmail.com>
4441 L:      dri-devel@lists.freedesktop.org
4442 S:      Maintained
4443 F:      drivers/gpu/drm/exynos/exynos_dp*
4444
4445 EXYNOS SYSMMU (IOMMU) driver
4446 M:      Marek Szyprowski <m.szyprowski@samsung.com>
4447 L:      iommu@lists.linux-foundation.org
4448 S:      Maintained
4449 F:      drivers/iommu/exynos-iommu.c
4450
4451 EXYNOS MIPI DISPLAY DRIVERS
4452 M:      Inki Dae <inki.dae@samsung.com>
4453 M:      Donghwa Lee <dh09.lee@samsung.com>
4454 M:      Kyungmin Park <kyungmin.park@samsung.com>
4455 L:      linux-fbdev@vger.kernel.org
4456 S:      Maintained
4457 F:      drivers/video/fbdev/exynos/exynos_mipi*
4458 F:      include/video/exynos_mipi*
4459
4460 EZchip NPS platform support
4461 M:      Noam Camus <noamc@ezchip.com>
4462 S:      Supported
4463 F:      arch/arc/plat-eznps
4464 F:      arch/arc/boot/dts/eznps.dts
4465
4466 F71805F HARDWARE MONITORING DRIVER
4467 M:      Jean Delvare <jdelvare@suse.com>
4468 L:      linux-hwmon@vger.kernel.org
4469 S:      Maintained
4470 F:      Documentation/hwmon/f71805f
4471 F:      drivers/hwmon/f71805f.c
4472
4473 FC0011 TUNER DRIVER
4474 M:      Michael Buesch <m@bues.ch>
4475 L:      linux-media@vger.kernel.org
4476 S:      Maintained
4477 F:      drivers/media/tuners/fc0011.h
4478 F:      drivers/media/tuners/fc0011.c
4479
4480 FC2580 MEDIA DRIVER
4481 M:      Antti Palosaari <crope@iki.fi>
4482 L:      linux-media@vger.kernel.org
4483 W:      https://linuxtv.org
4484 W:      http://palosaari.fi/linux/
4485 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4486 T:      git git://linuxtv.org/anttip/media_tree.git
4487 S:      Maintained
4488 F:      drivers/media/tuners/fc2580*
4489
4490 FANOTIFY
4491 M:      Eric Paris <eparis@redhat.com>
4492 S:      Maintained
4493 F:      fs/notify/fanotify/
4494 F:      include/linux/fanotify.h
4495 F:      include/uapi/linux/fanotify.h
4496
4497 FARSYNC SYNCHRONOUS DRIVER
4498 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
4499 W:      http://www.farsite.co.uk/
4500 S:      Supported
4501 F:      drivers/net/wan/farsync.*
4502
4503 FAULT INJECTION SUPPORT
4504 M:      Akinobu Mita <akinobu.mita@gmail.com>
4505 S:      Supported
4506 F:      Documentation/fault-injection/
4507 F:      lib/fault-inject.c
4508
4509 FBTFT Framebuffer drivers
4510 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
4511 M:      Noralf Trønnes <noralf@tronnes.org>
4512 S:      Maintained
4513 F:      drivers/staging/fbtft/
4514
4515 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
4516 M:      Vasu Dev <vasu.dev@intel.com>
4517 L:      fcoe-devel@open-fcoe.org
4518 W:      www.Open-FCoE.org
4519 S:      Supported
4520 F:      drivers/scsi/libfc/
4521 F:      drivers/scsi/fcoe/
4522 F:      include/scsi/fc/
4523 F:      include/scsi/libfc.h
4524 F:      include/scsi/libfcoe.h
4525 F:      include/uapi/scsi/fc/
4526
4527 FILE LOCKING (flock() and fcntl()/lockf())
4528 M:      Jeff Layton <jlayton@poochiereds.net>
4529 M:      "J. Bruce Fields" <bfields@fieldses.org>
4530 L:      linux-fsdevel@vger.kernel.org
4531 S:      Maintained
4532 F:      include/linux/fcntl.h
4533 F:      include/linux/fs.h
4534 F:      include/uapi/linux/fcntl.h
4535 F:      include/uapi/linux/fs.h
4536 F:      fs/fcntl.c
4537 F:      fs/locks.c
4538
4539 FILESYSTEMS (VFS and infrastructure)
4540 M:      Alexander Viro <viro@zeniv.linux.org.uk>
4541 L:      linux-fsdevel@vger.kernel.org
4542 S:      Maintained
4543 F:      fs/*
4544
4545 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
4546 M:      Riku Voipio <riku.voipio@iki.fi>
4547 L:      linux-hwmon@vger.kernel.org
4548 S:      Maintained
4549 F:      drivers/hwmon/f75375s.c
4550 F:      include/linux/f75375s.h
4551
4552 FIREWIRE AUDIO DRIVERS
4553 M:      Clemens Ladisch <clemens@ladisch.de>
4554 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4555 T:      git git://git.alsa-project.org/alsa-kernel.git
4556 S:      Maintained
4557 F:      sound/firewire/
4558
4559 FIREWIRE MEDIA DRIVERS (firedtv)
4560 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4561 L:      linux-media@vger.kernel.org
4562 L:      linux1394-devel@lists.sourceforge.net
4563 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
4564 S:      Maintained
4565 F:      drivers/media/firewire/
4566
4567 FIREWIRE SBP-2 TARGET
4568 M:      Chris Boot <bootc@bootc.net>
4569 L:      linux-scsi@vger.kernel.org
4570 L:      target-devel@vger.kernel.org
4571 L:      linux1394-devel@lists.sourceforge.net
4572 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
4573 S:      Maintained
4574 F:      drivers/target/sbp/
4575
4576 FIREWIRE SUBSYSTEM
4577 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4578 L:      linux1394-devel@lists.sourceforge.net
4579 W:      http://ieee1394.wiki.kernel.org/
4580 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
4581 S:      Maintained
4582 F:      drivers/firewire/
4583 F:      include/linux/firewire.h
4584 F:      include/uapi/linux/firewire*.h
4585 F:      tools/firewire/
4586
4587 FIRMWARE LOADER (request_firmware)
4588 M:      Ming Lei <ming.lei@canonical.com>
4589 L:      linux-kernel@vger.kernel.org
4590 S:      Maintained
4591 F:      Documentation/firmware_class/
4592 F:      drivers/base/firmware*.c
4593 F:      include/linux/firmware.h
4594
4595 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
4596 M:      Joshua Morris <josh.h.morris@us.ibm.com>
4597 M:      Philip Kelleher <pjk1939@linux.vnet.ibm.com>
4598 S:      Maintained
4599 F:      drivers/block/rsxx/
4600
4601 FLOPPY DRIVER
4602 M:      Jiri Kosina <jikos@kernel.org>
4603 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
4604 S:      Odd fixes
4605 F:      drivers/block/floppy.c
4606
4607 FMC SUBSYSTEM
4608 M:      Alessandro Rubini <rubini@gnudd.com>
4609 W:      http://www.ohwr.org/projects/fmc-bus
4610 S:      Supported
4611 F:      drivers/fmc/
4612 F:      include/linux/fmc*.h
4613 F:      include/linux/ipmi-fru.h
4614 K:      fmc_d.*register
4615
4616 FPGA MANAGER FRAMEWORK
4617 M:      Alan Tull <atull@opensource.altera.com>
4618 R:      Moritz Fischer <moritz.fischer@ettus.com>
4619 S:      Maintained
4620 F:      drivers/fpga/
4621 F:      include/linux/fpga/fpga-mgr.h
4622 W:      http://www.rocketboards.org
4623
4624 FPU EMULATOR
4625 M:      Bill Metzenthen <billm@melbpc.org.au>
4626 W:      http://floatingpoint.sourceforge.net/emulator/index.html
4627 S:      Maintained
4628 F:      arch/x86/math-emu/
4629
4630 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
4631 L:      netdev@vger.kernel.org
4632 S:      Orphan
4633 F:      drivers/net/wan/dlci.c
4634 F:      drivers/net/wan/sdla.c
4635
4636 FRAMEBUFFER LAYER
4637 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
4638 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
4639 L:      linux-fbdev@vger.kernel.org
4640 W:      http://linux-fbdev.sourceforge.net/
4641 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
4642 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git
4643 S:      Maintained
4644 F:      Documentation/fb/
4645 F:      drivers/video/
4646 F:      include/video/
4647 F:      include/linux/fb.h
4648 F:      include/uapi/video/
4649 F:      include/uapi/linux/fb.h
4650
4651 FREESCALE DIU FRAMEBUFFER DRIVER
4652 M:      Timur Tabi <timur@tabi.org>
4653 L:      linux-fbdev@vger.kernel.org
4654 S:      Maintained
4655 F:      drivers/video/fbdev/fsl-diu-fb.*
4656
4657 FREESCALE DMA DRIVER
4658 M:      Li Yang <leoli@freescale.com>
4659 M:      Zhang Wei <zw@zh-kernel.org>
4660 L:      linuxppc-dev@lists.ozlabs.org
4661 S:      Maintained
4662 F:      drivers/dma/fsldma.*
4663
4664 FREESCALE GPMI NAND DRIVER
4665 M:      Han Xu <han.xu@nxp.com>
4666 L:      linux-mtd@lists.infradead.org
4667 S:      Maintained
4668 F:      drivers/mtd/nand/gpmi-nand/*
4669
4670 FREESCALE I2C CPM DRIVER
4671 M:      Jochen Friedrich <jochen@scram.de>
4672 L:      linuxppc-dev@lists.ozlabs.org
4673 L:      linux-i2c@vger.kernel.org
4674 S:      Maintained
4675 F:      drivers/i2c/busses/i2c-cpm.c
4676
4677 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
4678 M:      Sascha Hauer <kernel@pengutronix.de>
4679 L:      linux-fbdev@vger.kernel.org
4680 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4681 S:      Maintained
4682 F:      include/linux/platform_data/video-imxfb.h
4683 F:      drivers/video/fbdev/imxfb.c
4684
4685 FREESCALE QUAD SPI DRIVER
4686 M:      Han Xu <han.xu@nxp.com>
4687 L:      linux-mtd@lists.infradead.org
4688 S:      Maintained
4689 F:      drivers/mtd/spi-nor/fsl-quadspi.c
4690
4691 FREESCALE SOC FS_ENET DRIVER
4692 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
4693 M:      Vitaly Bordug <vbordug@ru.mvista.com>
4694 L:      linuxppc-dev@lists.ozlabs.org
4695 L:      netdev@vger.kernel.org
4696 S:      Maintained
4697 F:      drivers/net/ethernet/freescale/fs_enet/
4698 F:      include/linux/fs_enet_pd.h
4699
4700 FREESCALE IMX / MXC FEC DRIVER
4701 M:      Fugang Duan <fugang.duan@nxp.com>
4702 L:      netdev@vger.kernel.org
4703 S:      Maintained
4704 F:      drivers/net/ethernet/freescale/fec_main.c
4705 F:      drivers/net/ethernet/freescale/fec_ptp.c
4706 F:      drivers/net/ethernet/freescale/fec.h
4707 F:      Documentation/devicetree/bindings/net/fsl-fec.txt
4708
4709 FREESCALE QUICC ENGINE LIBRARY
4710 L:      linuxppc-dev@lists.ozlabs.org
4711 S:      Orphan
4712 F:      drivers/soc/fsl/qe/
4713 F:      include/soc/fsl/*qe*.h
4714 F:      include/soc/fsl/*ucc*.h
4715
4716 FREESCALE USB PERIPHERAL DRIVERS
4717 M:      Li Yang <leoli@freescale.com>
4718 L:      linux-usb@vger.kernel.org
4719 L:      linuxppc-dev@lists.ozlabs.org
4720 S:      Maintained
4721 F:      drivers/usb/gadget/udc/fsl*
4722
4723 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
4724 M:      Li Yang <leoli@freescale.com>
4725 L:      netdev@vger.kernel.org
4726 L:      linuxppc-dev@lists.ozlabs.org
4727 S:      Maintained
4728 F:      drivers/net/ethernet/freescale/ucc_geth*
4729
4730 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
4731 M:      Claudiu Manoil <claudiu.manoil@freescale.com>
4732 L:      netdev@vger.kernel.org
4733 S:      Maintained
4734 F:      drivers/net/ethernet/freescale/gianfar*
4735 X:      drivers/net/ethernet/freescale/gianfar_ptp.c
4736 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
4737
4738 FREESCALE QUICC ENGINE UCC UART DRIVER
4739 M:      Timur Tabi <timur@tabi.org>
4740 L:      linuxppc-dev@lists.ozlabs.org
4741 S:      Maintained
4742 F:      drivers/tty/serial/ucc_uart.c
4743
4744 FREESCALE SOC SOUND DRIVERS
4745 M:      Timur Tabi <timur@tabi.org>
4746 M:      Nicolin Chen <nicoleotsuka@gmail.com>
4747 M:      Xiubo Li <Xiubo.Lee@gmail.com>
4748 R:      Fabio Estevam <fabio.estevam@nxp.com>
4749 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4750 L:      linuxppc-dev@lists.ozlabs.org
4751 S:      Maintained
4752 F:      sound/soc/fsl/fsl*
4753 F:      sound/soc/fsl/imx*
4754 F:      sound/soc/fsl/mpc8610_hpcd.c
4755
4756 FREESCALE QORIQ MANAGEMENT COMPLEX DRIVER
4757 M:      "J. German Rivera" <German.Rivera@freescale.com>
4758 M:      Stuart Yoder <stuart.yoder@nxp.com>
4759 L:      linux-kernel@vger.kernel.org
4760 S:      Maintained
4761 F:      drivers/staging/fsl-mc/
4762
4763 FREEVXFS FILESYSTEM
4764 M:      Christoph Hellwig <hch@infradead.org>
4765 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
4766 S:      Maintained
4767 F:      fs/freevxfs/
4768
4769 FREEZER
4770 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4771 M:      Pavel Machek <pavel@ucw.cz>
4772 L:      linux-pm@vger.kernel.org
4773 S:      Supported
4774 F:      Documentation/power/freezing-of-tasks.txt
4775 F:      include/linux/freezer.h
4776 F:      kernel/freezer.c
4777
4778 FRONTSWAP API
4779 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4780 L:      linux-kernel@vger.kernel.org
4781 S:      Maintained
4782 F:      mm/frontswap.c
4783 F:      include/linux/frontswap.h
4784
4785 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
4786 M:      David Howells <dhowells@redhat.com>
4787 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
4788 S:      Supported
4789 F:      Documentation/filesystems/caching/
4790 F:      fs/fscache/
4791 F:      include/linux/fscache*.h
4792
4793 F2FS FILE SYSTEM
4794 M:      Jaegeuk Kim <jaegeuk@kernel.org>
4795 M:      Changman Lee <cm224.lee@samsung.com>
4796 R:      Chao Yu <yuchao0@huawei.com>
4797 L:      linux-f2fs-devel@lists.sourceforge.net
4798 W:      http://en.wikipedia.org/wiki/F2FS
4799 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
4800 S:      Maintained
4801 F:      Documentation/filesystems/f2fs.txt
4802 F:      Documentation/ABI/testing/sysfs-fs-f2fs
4803 F:      fs/f2fs/
4804 F:      include/linux/f2fs_fs.h
4805 F:      include/trace/events/f2fs.h
4806
4807 FUJITSU FR-V (FRV) PORT
4808 S:      Orphan
4809 F:      arch/frv/
4810
4811 FUJITSU LAPTOP EXTRAS
4812 M:      Jonathan Woithe <jwoithe@just42.net>
4813 L:      platform-driver-x86@vger.kernel.org
4814 S:      Maintained
4815 F:      drivers/platform/x86/fujitsu-laptop.c
4816
4817 FUJITSU M-5MO LS CAMERA ISP DRIVER
4818 M:      Kyungmin Park <kyungmin.park@samsung.com>
4819 M:      Heungjun Kim <riverful.kim@samsung.com>
4820 L:      linux-media@vger.kernel.org
4821 S:      Maintained
4822 F:      drivers/media/i2c/m5mols/
4823 F:      include/media/i2c/m5mols.h
4824
4825 FUJITSU TABLET EXTRAS
4826 M:      Robert Gerlach <khnz@gmx.de>
4827 L:      platform-driver-x86@vger.kernel.org
4828 S:      Maintained
4829 F:      drivers/platform/x86/fujitsu-tablet.c
4830
4831 FUSE: FILESYSTEM IN USERSPACE
4832 M:      Miklos Szeredi <miklos@szeredi.hu>
4833 L:      linux-fsdevel@vger.kernel.org
4834 W:      http://fuse.sourceforge.net/
4835 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
4836 S:      Maintained
4837 F:      fs/fuse/
4838 F:      include/uapi/linux/fuse.h
4839 F:      Documentation/filesystems/fuse.txt
4840
4841 FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
4842 M:      Rik Faith <faith@cs.unc.edu>
4843 L:      linux-scsi@vger.kernel.org
4844 S:      Odd Fixes (e.g., new signatures)
4845 F:      drivers/scsi/fdomain.*
4846
4847 GCOV BASED KERNEL PROFILING
4848 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
4849 S:      Maintained
4850 F:      kernel/gcov/
4851 F:      Documentation/gcov.txt
4852
4853 GDT SCSI DISK ARRAY CONTROLLER DRIVER
4854 M:      Achim Leubner <achim_leubner@adaptec.com>
4855 L:      linux-scsi@vger.kernel.org
4856 W:      http://www.icp-vortex.com/
4857 S:      Supported
4858 F:      drivers/scsi/gdt*
4859
4860 GDB KERNEL DEBUGGING HELPER SCRIPTS
4861 M:      Jan Kiszka <jan.kiszka@siemens.com>
4862 S:      Supported
4863 F:      scripts/gdb/
4864
4865 GEMTEK FM RADIO RECEIVER DRIVER
4866 M:      Hans Verkuil <hverkuil@xs4all.nl>
4867 L:      linux-media@vger.kernel.org
4868 T:      git git://linuxtv.org/media_tree.git
4869 W:      https://linuxtv.org
4870 S:      Maintained
4871 F:      drivers/media/radio/radio-gemtek*
4872
4873 GENERIC GPIO I2C DRIVER
4874 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
4875 S:      Supported
4876 F:      drivers/i2c/busses/i2c-gpio.c
4877 F:      include/linux/i2c-gpio.h
4878
4879 GENERIC GPIO I2C MULTIPLEXER DRIVER
4880 M:      Peter Korsgaard <peter.korsgaard@barco.com>
4881 L:      linux-i2c@vger.kernel.org
4882 S:      Supported
4883 F:      drivers/i2c/muxes/i2c-mux-gpio.c
4884 F:      include/linux/i2c-mux-gpio.h
4885 F:      Documentation/i2c/muxes/i2c-mux-gpio
4886
4887 GENERIC HDLC (WAN) DRIVERS
4888 M:      Krzysztof Halasa <khc@pm.waw.pl>
4889 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
4890 S:      Maintained
4891 F:      drivers/net/wan/c101.c
4892 F:      drivers/net/wan/hd6457*
4893 F:      drivers/net/wan/hdlc*
4894 F:      drivers/net/wan/n2.c
4895 F:      drivers/net/wan/pc300too.c
4896 F:      drivers/net/wan/pci200syn.c
4897 F:      drivers/net/wan/wanxl*
4898
4899 GENERIC INCLUDE/ASM HEADER FILES
4900 M:      Arnd Bergmann <arnd@arndb.de>
4901 L:      linux-arch@vger.kernel.org
4902 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
4903 S:      Maintained
4904 F:      include/asm-generic/
4905 F:      include/uapi/asm-generic/
4906
4907 GENERIC PHY FRAMEWORK
4908 M:      Kishon Vijay Abraham I <kishon@ti.com>
4909 L:      linux-kernel@vger.kernel.org
4910 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
4911 S:      Supported
4912 F:      drivers/phy/
4913 F:      include/linux/phy/
4914
4915 GENERIC PM DOMAINS
4916 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4917 M:      Kevin Hilman <khilman@kernel.org>
4918 M:      Ulf Hansson <ulf.hansson@linaro.org>
4919 L:      linux-pm@vger.kernel.org
4920 S:      Supported
4921 F:      drivers/base/power/domain*.c
4922 F:      include/linux/pm_domain.h
4923
4924 GENERIC UIO DRIVER FOR PCI DEVICES
4925 M:      "Michael S. Tsirkin" <mst@redhat.com>
4926 L:      kvm@vger.kernel.org
4927 S:      Supported
4928 F:      drivers/uio/uio_pci_generic.c
4929
4930 GET_MAINTAINER SCRIPT
4931 M:      Joe Perches <joe@perches.com>
4932 S:      Maintained
4933 F:      scripts/get_maintainer.pl
4934
4935 GFS2 FILE SYSTEM
4936 M:      Steven Whitehouse <swhiteho@redhat.com>
4937 M:      Bob Peterson <rpeterso@redhat.com>
4938 L:      cluster-devel@redhat.com
4939 W:      http://sources.redhat.com/cluster/
4940 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
4941 S:      Supported
4942 F:      Documentation/filesystems/gfs2*.txt
4943 F:      fs/gfs2/
4944 F:      include/uapi/linux/gfs2_ondisk.h
4945
4946 GIGASET ISDN DRIVERS
4947 M:      Paul Bolle <pebolle@tiscali.nl>
4948 L:      gigaset307x-common@lists.sourceforge.net
4949 W:      http://gigaset307x.sourceforge.net/
4950 S:      Odd Fixes
4951 F:      Documentation/isdn/README.gigaset
4952 F:      drivers/isdn/gigaset/
4953 F:      include/uapi/linux/gigaset_dev.h
4954
4955 GO7007 MPEG CODEC
4956 M:      Hans Verkuil <hans.verkuil@cisco.com>
4957 L:      linux-media@vger.kernel.org
4958 S:      Maintained
4959 F:      drivers/media/usb/go7007/
4960
4961 GOODIX TOUCHSCREEN
4962 M:      Bastien Nocera <hadess@hadess.net>
4963 L:      linux-input@vger.kernel.org
4964 S:      Maintained
4965 F:      drivers/input/touchscreen/goodix.c
4966
4967 GPIO SUBSYSTEM
4968 M:      Linus Walleij <linus.walleij@linaro.org>
4969 M:      Alexandre Courbot <gnurou@gmail.com>
4970 L:      linux-gpio@vger.kernel.org
4971 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
4972 S:      Maintained
4973 F:      Documentation/devicetree/bindings/gpio/
4974 F:      Documentation/gpio/
4975 F:      Documentation/ABI/testing/gpio-cdev
4976 F:      Documentation/ABI/obsolete/sysfs-gpio
4977 F:      drivers/gpio/
4978 F:      include/linux/gpio/
4979 F:      include/linux/gpio.h
4980 F:      include/asm-generic/gpio.h
4981 F:      include/uapi/linux/gpio.h
4982 F:      tools/gpio/
4983
4984 GRE DEMULTIPLEXER DRIVER
4985 M:      Dmitry Kozlov <xeb@mail.ru>
4986 L:      netdev@vger.kernel.org
4987 S:      Maintained
4988 F:      net/ipv4/gre_demux.c
4989 F:      net/ipv4/gre_offload.c
4990 F:      include/net/gre.h
4991
4992 GRETH 10/100/1G Ethernet MAC device driver
4993 M:      Andreas Larsson <andreas@gaisler.com>
4994 L:      netdev@vger.kernel.org
4995 S:      Maintained
4996 F:      drivers/net/ethernet/aeroflex/
4997
4998 GSPCA FINEPIX SUBDRIVER
4999 M:      Frank Zago <frank@zago.net>
5000 L:      linux-media@vger.kernel.org
5001 T:      git git://linuxtv.org/media_tree.git
5002 S:      Maintained
5003 F:      drivers/media/usb/gspca/finepix.c
5004
5005 GSPCA GL860 SUBDRIVER
5006 M:      Olivier Lorin <o.lorin@laposte.net>
5007 L:      linux-media@vger.kernel.org
5008 T:      git git://linuxtv.org/media_tree.git
5009 S:      Maintained
5010 F:      drivers/media/usb/gspca/gl860/
5011
5012 GSPCA M5602 SUBDRIVER
5013 M:      Erik Andren <erik.andren@gmail.com>
5014 L:      linux-media@vger.kernel.org
5015 T:      git git://linuxtv.org/media_tree.git
5016 S:      Maintained
5017 F:      drivers/media/usb/gspca/m5602/
5018
5019 GSPCA PAC207 SONIXB SUBDRIVER
5020 M:      Hans de Goede <hdegoede@redhat.com>
5021 L:      linux-media@vger.kernel.org
5022 T:      git git://linuxtv.org/media_tree.git
5023 S:      Maintained
5024 F:      drivers/media/usb/gspca/pac207.c
5025
5026 GSPCA SN9C20X SUBDRIVER
5027 M:      Brian Johnson <brijohn@gmail.com>
5028 L:      linux-media@vger.kernel.org
5029 T:      git git://linuxtv.org/media_tree.git
5030 S:      Maintained
5031 F:      drivers/media/usb/gspca/sn9c20x.c
5032
5033 GSPCA T613 SUBDRIVER
5034 M:      Leandro Costantino <lcostantino@gmail.com>
5035 L:      linux-media@vger.kernel.org
5036 T:      git git://linuxtv.org/media_tree.git
5037 S:      Maintained
5038 F:      drivers/media/usb/gspca/t613.c
5039
5040 GSPCA USB WEBCAM DRIVER
5041 M:      Hans de Goede <hdegoede@redhat.com>
5042 L:      linux-media@vger.kernel.org
5043 T:      git git://linuxtv.org/media_tree.git
5044 S:      Maintained
5045 F:      drivers/media/usb/gspca/
5046
5047 GUID PARTITION TABLE (GPT)
5048 M:      Davidlohr Bueso <dave@stgolabs.net>
5049 L:      linux-efi@vger.kernel.org
5050 S:      Maintained
5051 F:      block/partitions/efi.*
5052
5053 STK1160 USB VIDEO CAPTURE DRIVER
5054 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
5055 L:      linux-media@vger.kernel.org
5056 T:      git git://linuxtv.org/media_tree.git
5057 S:      Maintained
5058 F:      drivers/media/usb/stk1160/
5059
5060 H8/300 ARCHITECTURE
5061 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
5062 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
5063 W:      http://uclinux-h8.sourceforge.jp
5064 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
5065 S:      Maintained
5066 F:      arch/h8300/
5067 F:      drivers/clocksource/h8300_*.c
5068 F:      drivers/clk/h8300/
5069 F:      drivers/irqchip/irq-renesas-h8*.c
5070
5071 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
5072 M:      Frank Seidel <frank@f-seidel.de>
5073 L:      platform-driver-x86@vger.kernel.org
5074 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
5075 S:      Maintained
5076 F:      drivers/platform/x86/hdaps.c
5077
5078 HDPVR USB VIDEO ENCODER DRIVER
5079 M:      Hans Verkuil <hverkuil@xs4all.nl>
5080 L:      linux-media@vger.kernel.org
5081 T:      git git://linuxtv.org/media_tree.git
5082 W:      https://linuxtv.org
5083 S:      Odd Fixes
5084 F:      drivers/media/usb/hdpvr/
5085
5086 HWPOISON MEMORY FAILURE HANDLING
5087 M:      Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
5088 L:      linux-mm@kvack.org
5089 S:      Maintained
5090 F:      mm/memory-failure.c
5091 F:      mm/hwpoison-inject.c
5092
5093 HYPERVISOR VIRTUAL CONSOLE DRIVER
5094 L:      linuxppc-dev@lists.ozlabs.org
5095 S:      Odd Fixes
5096 F:      drivers/tty/hvc/
5097
5098 HACKRF MEDIA DRIVER
5099 M:      Antti Palosaari <crope@iki.fi>
5100 L:      linux-media@vger.kernel.org
5101 W:      https://linuxtv.org
5102 W:      http://palosaari.fi/linux/
5103 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5104 T:      git git://linuxtv.org/anttip/media_tree.git
5105 S:      Maintained
5106 F:      drivers/media/usb/hackrf/
5107
5108 HARDWARE MONITORING
5109 M:      Jean Delvare <jdelvare@suse.com>
5110 M:      Guenter Roeck <linux@roeck-us.net>
5111 L:      linux-hwmon@vger.kernel.org
5112 W:      http://hwmon.wiki.kernel.org/
5113 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/
5114 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
5115 S:      Maintained
5116 F:      Documentation/hwmon/
5117 F:      drivers/hwmon/
5118 F:      include/linux/hwmon*.h
5119
5120 HARDWARE RANDOM NUMBER GENERATOR CORE
5121 M:      Matt Mackall <mpm@selenic.com>
5122 M:      Herbert Xu <herbert@gondor.apana.org.au>
5123 L:      linux-crypto@vger.kernel.org
5124 S:      Odd fixes
5125 F:      Documentation/hw_random.txt
5126 F:      drivers/char/hw_random/
5127 F:      include/linux/hw_random.h
5128
5129 HARDWARE SPINLOCK CORE
5130 M:      Ohad Ben-Cohen <ohad@wizery.com>
5131 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
5132 L:      linux-remoteproc@vger.kernel.org
5133 S:      Maintained
5134 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/hwspinlock.git
5135 F:      Documentation/hwspinlock.txt
5136 F:      drivers/hwspinlock/hwspinlock_*
5137 F:      include/linux/hwspinlock.h
5138
5139 HARMONY SOUND DRIVER
5140 L:      linux-parisc@vger.kernel.org
5141 S:      Maintained
5142 F:      sound/parisc/harmony.*
5143
5144 HD29L2 MEDIA DRIVER
5145 M:      Antti Palosaari <crope@iki.fi>
5146 L:      linux-media@vger.kernel.org
5147 W:      https://linuxtv.org
5148 W:      http://palosaari.fi/linux/
5149 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5150 T:      git git://linuxtv.org/anttip/media_tree.git
5151 S:      Maintained
5152 F:      drivers/media/dvb-frontends/hd29l2*
5153
5154 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
5155 M:      Don Brace <don.brace@microsemi.com>
5156 L:      iss_storagedev@hp.com
5157 L:      esc.storagedev@microsemi.com
5158 L:      linux-scsi@vger.kernel.org
5159 S:      Supported
5160 F:      Documentation/scsi/hpsa.txt
5161 F:      drivers/scsi/hpsa*.[ch]
5162 F:      include/linux/cciss*.h
5163 F:      include/uapi/linux/cciss*.h
5164
5165 HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
5166 M:      Don Brace <don.brace@microsemi.com>
5167 L:      iss_storagedev@hp.com
5168 L:      esc.storagedev@microsemi.com
5169 L:      linux-scsi@vger.kernel.org
5170 S:      Supported
5171 F:      Documentation/blockdev/cciss.txt
5172 F:      drivers/block/cciss*
5173 F:      include/linux/cciss_ioctl.h
5174 F:      include/uapi/linux/cciss_ioctl.h
5175
5176 HFS FILESYSTEM
5177 L:      linux-fsdevel@vger.kernel.org
5178 S:      Orphan
5179 F:      Documentation/filesystems/hfs.txt
5180 F:      fs/hfs/
5181
5182 HFSPLUS FILESYSTEM
5183 L:      linux-fsdevel@vger.kernel.org
5184 S:      Orphan
5185 F:      Documentation/filesystems/hfsplus.txt
5186 F:      fs/hfsplus/
5187
5188 HGA FRAMEBUFFER DRIVER
5189 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
5190 L:      linux-nvidia@lists.surfsouth.com
5191 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
5192 S:      Maintained
5193 F:      drivers/video/fbdev/hgafb.c
5194
5195 HIBERNATION (aka Software Suspend, aka swsusp)
5196 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
5197 M:      Pavel Machek <pavel@ucw.cz>
5198 L:      linux-pm@vger.kernel.org
5199 S:      Supported
5200 F:      arch/x86/power/
5201 F:      drivers/base/power/
5202 F:      kernel/power/
5203 F:      include/linux/suspend.h
5204 F:      include/linux/freezer.h
5205 F:      include/linux/pm.h
5206 F:      arch/*/include/asm/suspend*.h
5207
5208 HID CORE LAYER
5209 M:      Jiri Kosina <jikos@kernel.org>
5210 R:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
5211 L:      linux-input@vger.kernel.org
5212 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
5213 S:      Maintained
5214 F:      drivers/hid/
5215 F:      include/linux/hid*
5216 F:      include/uapi/linux/hid*
5217
5218 HID SENSOR HUB DRIVERS
5219 M:      Jiri Kosina <jikos@kernel.org>
5220 M:      Jonathan Cameron <jic23@kernel.org>
5221 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
5222 L:      linux-input@vger.kernel.org
5223 L:      linux-iio@vger.kernel.org
5224 S:      Maintained
5225 F:      Documentation/hid/hid-sensor*
5226 F:      drivers/hid/hid-sensor-*
5227 F:      drivers/iio/*/hid-*
5228 F:      include/linux/hid-sensor-*
5229
5230 HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
5231 M:      Thomas Gleixner <tglx@linutronix.de>
5232 L:      linux-kernel@vger.kernel.org
5233 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
5234 S:      Maintained
5235 F:      Documentation/timers/
5236 F:      kernel/time/hrtimer.c
5237 F:      kernel/time/clockevents.c
5238 F:      kernel/time/tick*.*
5239 F:      kernel/time/timer_*.c
5240 F:      include/linux/clockchips.h
5241 F:      include/linux/hrtimer.h
5242
5243 HIGH-SPEED SCC DRIVER FOR AX.25
5244 L:      linux-hams@vger.kernel.org
5245 S:      Orphan
5246 F:      drivers/net/hamradio/dmascc.c
5247 F:      drivers/net/hamradio/scc.c
5248
5249 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
5250 M:      HighPoint Linux Team <linux@highpoint-tech.com>
5251 W:      http://www.highpoint-tech.com
5252 S:      Supported
5253 F:      Documentation/scsi/hptiop.txt
5254 F:      drivers/scsi/hptiop.c
5255
5256 HIPPI
5257 M:      Jes Sorensen <jes@trained-monkey.org>
5258 L:      linux-hippi@sunsite.dk
5259 S:      Maintained
5260 F:      include/linux/hippidevice.h
5261 F:      include/uapi/linux/if_hippi.h
5262 F:      net/802/hippi.c
5263 F:      drivers/net/hippi/
5264
5265 HISILICON SAS Controller
5266 M:      John Garry <john.garry@huawei.com>
5267 W:      http://www.hisilicon.com
5268 S:      Supported
5269 F:      drivers/scsi/hisi_sas/
5270 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
5271
5272 HOST AP DRIVER
5273 M:      Jouni Malinen <j@w1.fi>
5274 L:      hostap@shmoo.com (subscribers-only)
5275 L:      linux-wireless@vger.kernel.org
5276 W:      http://hostap.epitest.fi/
5277 S:      Maintained
5278 F:      drivers/net/wireless/intersil/hostap/
5279
5280 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
5281 L:      platform-driver-x86@vger.kernel.org
5282 S:      Orphan
5283 F:      drivers/platform/x86/tc1100-wmi.c
5284
5285 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
5286 M:      Jaroslav Kysela <perex@perex.cz>
5287 S:      Maintained
5288 F:      drivers/net/ethernet/hp/hp100.*
5289
5290 HPET:   High Precision Event Timers driver
5291 M:      Clemens Ladisch <clemens@ladisch.de>
5292 S:      Maintained
5293 F:      Documentation/timers/hpet.txt
5294 F:      drivers/char/hpet.c
5295 F:      include/linux/hpet.h
5296 F:      include/uapi/linux/hpet.h
5297
5298 HPET:   x86
5299 S:      Orphan
5300 F:      arch/x86/kernel/hpet.c
5301 F:      arch/x86/include/asm/hpet.h
5302
5303 HPFS FILESYSTEM
5304 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
5305 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
5306 S:      Maintained
5307 F:      fs/hpfs/
5308
5309 HSI SUBSYSTEM
5310 M:      Sebastian Reichel <sre@kernel.org>
5311 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
5312 S:      Maintained
5313 F:      Documentation/ABI/testing/sysfs-bus-hsi
5314 F:      Documentation/hsi.txt
5315 F:      drivers/hsi/
5316 F:      include/linux/hsi/
5317 F:      include/uapi/linux/hsi/
5318
5319 HSO 3G MODEM DRIVER
5320 M:      Jan Dumon <j.dumon@option.com>
5321 W:      http://www.pharscape.org
5322 S:      Maintained
5323 F:      drivers/net/usb/hso.c
5324
5325 HSR NETWORK PROTOCOL
5326 M:      Arvid Brodin <arvid.brodin@alten.se>
5327 L:      netdev@vger.kernel.org
5328 S:      Maintained
5329 F:      net/hsr/
5330
5331 HTCPEN TOUCHSCREEN DRIVER
5332 M:      Pau Oliva Fora <pof@eslack.org>
5333 L:      linux-input@vger.kernel.org
5334 S:      Maintained
5335 F:      drivers/input/touchscreen/htcpen.c
5336
5337 HUGETLB FILESYSTEM
5338 M:      Nadia Yvette Chambers <nyc@holomorphy.com>
5339 S:      Maintained
5340 F:      fs/hugetlbfs/
5341
5342 Hyper-V CORE AND DRIVERS
5343 M:      "K. Y. Srinivasan" <kys@microsoft.com>
5344 M:      Haiyang Zhang <haiyangz@microsoft.com>
5345 L:      devel@linuxdriverproject.org
5346 S:      Maintained
5347 F:      arch/x86/include/asm/mshyperv.h
5348 F:      arch/x86/include/uapi/asm/hyperv.h
5349 F:      arch/x86/kernel/cpu/mshyperv.c
5350 F:      drivers/hid/hid-hyperv.c
5351 F:      drivers/hv/
5352 F:      drivers/input/serio/hyperv-keyboard.c
5353 F:      drivers/pci/host/pci-hyperv.c
5354 F:      drivers/net/hyperv/
5355 F:      drivers/scsi/storvsc_drv.c
5356 F:      drivers/video/fbdev/hyperv_fb.c
5357 F:      include/linux/hyperv.h
5358 F:      tools/hv/
5359 F:      Documentation/ABI/stable/sysfs-bus-vmbus
5360
5361 I2C MUXES
5362 M:      Peter Rosin <peda@axentia.se>
5363 L:      linux-i2c@vger.kernel.org
5364 S:      Maintained
5365 F:      Documentation/i2c/i2c-topology
5366 F:      Documentation/i2c/muxes/
5367 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
5368 F:      drivers/i2c/i2c-mux.c
5369 F:      drivers/i2c/muxes/
5370 F:      include/linux/i2c-mux.h
5371
5372 I2C OVER PARALLEL PORT
5373 M:      Jean Delvare <jdelvare@suse.com>
5374 L:      linux-i2c@vger.kernel.org
5375 S:      Maintained
5376 F:      Documentation/i2c/busses/i2c-parport
5377 F:      Documentation/i2c/busses/i2c-parport-light
5378 F:      drivers/i2c/busses/i2c-parport.c
5379 F:      drivers/i2c/busses/i2c-parport-light.c
5380
5381 I2C/SMBUS CONTROLLER DRIVERS FOR PC
5382 M:      Jean Delvare <jdelvare@suse.com>
5383 L:      linux-i2c@vger.kernel.org
5384 S:      Maintained
5385 F:      Documentation/i2c/busses/i2c-ali1535
5386 F:      Documentation/i2c/busses/i2c-ali1563
5387 F:      Documentation/i2c/busses/i2c-ali15x3
5388 F:      Documentation/i2c/busses/i2c-amd756
5389 F:      Documentation/i2c/busses/i2c-amd8111
5390 F:      Documentation/i2c/busses/i2c-i801
5391 F:      Documentation/i2c/busses/i2c-nforce2
5392 F:      Documentation/i2c/busses/i2c-piix4
5393 F:      Documentation/i2c/busses/i2c-sis5595
5394 F:      Documentation/i2c/busses/i2c-sis630
5395 F:      Documentation/i2c/busses/i2c-sis96x
5396 F:      Documentation/i2c/busses/i2c-via
5397 F:      Documentation/i2c/busses/i2c-viapro
5398 F:      drivers/i2c/busses/i2c-ali1535.c
5399 F:      drivers/i2c/busses/i2c-ali1563.c
5400 F:      drivers/i2c/busses/i2c-ali15x3.c
5401 F:      drivers/i2c/busses/i2c-amd756.c
5402 F:      drivers/i2c/busses/i2c-amd756-s4882.c
5403 F:      drivers/i2c/busses/i2c-amd8111.c
5404 F:      drivers/i2c/busses/i2c-i801.c
5405 F:      drivers/i2c/busses/i2c-isch.c
5406 F:      drivers/i2c/busses/i2c-nforce2.c
5407 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
5408 F:      drivers/i2c/busses/i2c-piix4.c
5409 F:      drivers/i2c/busses/i2c-sis5595.c
5410 F:      drivers/i2c/busses/i2c-sis630.c
5411 F:      drivers/i2c/busses/i2c-sis96x.c
5412 F:      drivers/i2c/busses/i2c-via.c
5413 F:      drivers/i2c/busses/i2c-viapro.c
5414
5415 I2C/SMBUS ISMT DRIVER
5416 M:      Seth Heasley <seth.heasley@intel.com>
5417 M:      Neil Horman <nhorman@tuxdriver.com>
5418 L:      linux-i2c@vger.kernel.org
5419 F:      drivers/i2c/busses/i2c-ismt.c
5420 F:      Documentation/i2c/busses/i2c-ismt
5421
5422 I2C/SMBUS STUB DRIVER
5423 M:      Jean Delvare <jdelvare@suse.com>
5424 L:      linux-i2c@vger.kernel.org
5425 S:      Maintained
5426 F:      drivers/i2c/i2c-stub.c
5427
5428 I2C SUBSYSTEM
5429 M:      Wolfram Sang <wsa@the-dreams.de>
5430 L:      linux-i2c@vger.kernel.org
5431 W:      https://i2c.wiki.kernel.org/
5432 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
5433 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
5434 S:      Maintained
5435 F:      Documentation/devicetree/bindings/i2c/
5436 F:      Documentation/i2c/
5437 F:      drivers/i2c/
5438 F:      drivers/i2c/*/
5439 F:      include/linux/i2c.h
5440 F:      include/linux/i2c-*.h
5441 F:      include/uapi/linux/i2c.h
5442 F:      include/uapi/linux/i2c-*.h
5443
5444 I2C ACPI SUPPORT
5445 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
5446 L:      linux-i2c@vger.kernel.org
5447 L:      linux-acpi@vger.kernel.org
5448 S:      Maintained
5449
5450 I2C-TAOS-EVM DRIVER
5451 M:      Jean Delvare <jdelvare@suse.com>
5452 L:      linux-i2c@vger.kernel.org
5453 S:      Maintained
5454 F:      Documentation/i2c/busses/i2c-taos-evm
5455 F:      drivers/i2c/busses/i2c-taos-evm.c
5456
5457 I2C-TINY-USB DRIVER
5458 M:      Till Harbaum <till@harbaum.org>
5459 L:      linux-i2c@vger.kernel.org
5460 W:      http://www.harbaum.org/till/i2c_tiny_usb
5461 S:      Maintained
5462 F:      drivers/i2c/busses/i2c-tiny-usb.c
5463
5464 i386 BOOT CODE
5465 M:      "H. Peter Anvin" <hpa@zytor.com>
5466 S:      Maintained
5467 F:      arch/x86/boot/
5468
5469 i386 SETUP CODE / CPU ERRATA WORKAROUNDS
5470 M:      "H. Peter Anvin" <hpa@zytor.com>
5471 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
5472 S:      Maintained
5473
5474 IA64 (Itanium) PLATFORM
5475 M:      Tony Luck <tony.luck@intel.com>
5476 M:      Fenghua Yu <fenghua.yu@intel.com>
5477 L:      linux-ia64@vger.kernel.org
5478 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
5479 S:      Maintained
5480 F:      arch/ia64/
5481
5482 IBM Power VMX Cryptographic instructions
5483 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5484 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5485 L:      linux-crypto@vger.kernel.org
5486 S:      Supported
5487 F:      drivers/crypto/vmx/Makefile
5488 F:      drivers/crypto/vmx/Kconfig
5489 F:      drivers/crypto/vmx/vmx.c
5490 F:      drivers/crypto/vmx/aes*
5491 F:      drivers/crypto/vmx/ghash*
5492 F:      drivers/crypto/vmx/ppc-xlate.pl
5493
5494 IBM Power in-Nest Crypto Acceleration
5495 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5496 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5497 L:      linux-crypto@vger.kernel.org
5498 S:      Supported
5499 F:      drivers/crypto/nx/Makefile
5500 F:      drivers/crypto/nx/Kconfig
5501 F:      drivers/crypto/nx/nx-aes*
5502 F:      drivers/crypto/nx/nx-sha*
5503 F:      drivers/crypto/nx/nx.*
5504 F:      drivers/crypto/nx/nx_csbcpb.h
5505 F:      drivers/crypto/nx/nx_debugfs.h
5506
5507 IBM Power 842 compression accelerator
5508 M:      Dan Streetman <ddstreet@ieee.org>
5509 S:      Supported
5510 F:      drivers/crypto/nx/Makefile
5511 F:      drivers/crypto/nx/Kconfig
5512 F:      drivers/crypto/nx/nx-842*
5513 F:      include/linux/sw842.h
5514 F:      crypto/842.c
5515 F:      lib/842/
5516
5517 IBM Power Linux RAID adapter
5518 M:      Brian King <brking@us.ibm.com>
5519 S:      Supported
5520 F:      drivers/scsi/ipr.*
5521
5522 IBM Power Virtual Ethernet Device Driver
5523 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
5524 L:      netdev@vger.kernel.org
5525 S:      Supported
5526 F:      drivers/net/ethernet/ibm/ibmveth.*
5527
5528 IBM Power SRIOV Virtual NIC Device Driver
5529 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
5530 M:      John Allen <jallen@linux.vnet.ibm.com>
5531 L:      netdev@vger.kernel.org
5532 S:      Supported
5533 F:      drivers/net/ethernet/ibm/ibmvnic.*
5534
5535 IBM Power Virtual SCSI Device Drivers
5536 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5537 L:      linux-scsi@vger.kernel.org
5538 S:      Supported
5539 F:      drivers/scsi/ibmvscsi/ibmvscsi*
5540 F:      drivers/scsi/ibmvscsi/viosrp.h
5541
5542 IBM Power Virtual FC Device Drivers
5543 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5544 L:      linux-scsi@vger.kernel.org
5545 S:      Supported
5546 F:      drivers/scsi/ibmvscsi/ibmvfc*
5547
5548 IBM ServeRAID RAID DRIVER
5549 S:      Orphan
5550 F:      drivers/scsi/ips.*
5551
5552 ICH LPC AND GPIO DRIVER
5553 M:      Peter Tyser <ptyser@xes-inc.com>
5554 S:      Maintained
5555 F:      drivers/mfd/lpc_ich.c
5556 F:      drivers/gpio/gpio-ich.c
5557
5558 IDE SUBSYSTEM
5559 M:      "David S. Miller" <davem@davemloft.net>
5560 L:      linux-ide@vger.kernel.org
5561 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
5562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
5563 S:      Maintained
5564 F:      Documentation/ide/
5565 F:      drivers/ide/
5566 F:      include/linux/ide.h
5567
5568 IDEAPAD LAPTOP EXTRAS DRIVER
5569 M:      Ike Panhc <ike.pan@canonical.com>
5570 L:      platform-driver-x86@vger.kernel.org
5571 W:      http://launchpad.net/ideapad-laptop
5572 S:      Maintained
5573 F:      drivers/platform/x86/ideapad-laptop.c
5574
5575 IDEAPAD LAPTOP SLIDEBAR DRIVER
5576 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
5577 L:      linux-input@vger.kernel.org
5578 W:      https://github.com/o2genum/ideapad-slidebar
5579 S:      Maintained
5580 F:      drivers/input/misc/ideapad_slidebar.c
5581
5582 IDE/ATAPI DRIVERS
5583 M:      Borislav Petkov <bp@alien8.de>
5584 L:      linux-ide@vger.kernel.org
5585 S:      Maintained
5586 F:      Documentation/cdrom/ide-cd
5587 F:      drivers/ide/ide-cd*
5588
5589 IDLE-I7300
5590 M:      Andy Henroid <andrew.d.henroid@intel.com>
5591 L:      linux-pm@vger.kernel.org
5592 S:      Supported
5593 F:      drivers/idle/i7300_idle.c
5594
5595 IEEE 802.15.4 SUBSYSTEM
5596 M:      Alexander Aring <aar@pengutronix.de>
5597 L:      linux-wpan@vger.kernel.org
5598 W:      http://wpan.cakelab.org/
5599 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
5600 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
5601 S:      Maintained
5602 F:      net/ieee802154/
5603 F:      net/mac802154/
5604 F:      drivers/net/ieee802154/
5605 F:      include/linux/nl802154.h
5606 F:      include/linux/ieee802154.h
5607 F:      include/net/nl802154.h
5608 F:      include/net/mac802154.h
5609 F:      include/net/af_ieee802154.h
5610 F:      include/net/cfg802154.h
5611 F:      include/net/ieee802154_netdev.h
5612 F:      Documentation/networking/ieee802154.txt
5613
5614 IGORPLUG-USB IR RECEIVER
5615 M:      Sean Young <sean@mess.org>
5616 L:      linux-media@vger.kernel.org
5617 S:      Maintained
5618 F:      drivers/media/rc/igorplugusb.c
5619
5620 IGUANAWORKS USB IR TRANSCEIVER
5621 M:      Sean Young <sean@mess.org>
5622 L:      linux-media@vger.kernel.org
5623 S:      Maintained
5624 F:      drivers/media/rc/iguanair.c
5625
5626 IIO SUBSYSTEM AND DRIVERS
5627 M:      Jonathan Cameron <jic23@kernel.org>
5628 R:      Hartmut Knaack <knaack.h@gmx.de>
5629 R:      Lars-Peter Clausen <lars@metafoo.de>
5630 R:      Peter Meerwald-Stadler <pmeerw@pmeerw.net>
5631 L:      linux-iio@vger.kernel.org
5632 S:      Maintained
5633 F:      drivers/iio/
5634 F:      drivers/staging/iio/
5635 F:      include/linux/iio/
5636 F:      tools/iio/
5637
5638 IKANOS/ADI EAGLE ADSL USB DRIVER
5639 M:      Matthieu Castet <castet.matthieu@free.fr>
5640 M:      Stanislaw Gruszka <stf_xl@wp.pl>
5641 S:      Maintained
5642 F:      drivers/usb/atm/ueagle-atm.c
5643
5644 INA209 HARDWARE MONITOR DRIVER
5645 M:      Guenter Roeck <linux@roeck-us.net>
5646 L:      linux-hwmon@vger.kernel.org
5647 S:      Maintained
5648 F:      Documentation/hwmon/ina209
5649 F:      Documentation/devicetree/bindings/i2c/ina209.txt
5650 F:      drivers/hwmon/ina209.c
5651
5652 INA2XX HARDWARE MONITOR DRIVER
5653 M:      Guenter Roeck <linux@roeck-us.net>
5654 L:      linux-hwmon@vger.kernel.org
5655 S:      Maintained
5656 F:      Documentation/hwmon/ina2xx
5657 F:      drivers/hwmon/ina2xx.c
5658 F:      include/linux/platform_data/ina2xx.h
5659
5660 INDUSTRY PACK SUBSYSTEM (IPACK)
5661 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
5662 M:      Jens Taprogge <jens.taprogge@taprogge.org>
5663 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5664 L:      industrypack-devel@lists.sourceforge.net
5665 W:      http://industrypack.sourceforge.net
5666 S:      Maintained
5667 F:      drivers/ipack/
5668
5669 INGENIC JZ4780 DMA Driver
5670 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
5671 S:      Maintained
5672 F:      drivers/dma/dma-jz4780.c
5673
5674 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
5675 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
5676 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
5677 L:      linux-ima-devel@lists.sourceforge.net
5678 L:      linux-ima-user@lists.sourceforge.net
5679 L:      linux-security-module@vger.kernel.org
5680 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
5681 S:      Supported
5682 F:      security/integrity/ima/
5683
5684 IMGTEC IR DECODER DRIVER
5685 M:      James Hogan <james.hogan@imgtec.com>
5686 S:      Maintained
5687 F:      drivers/media/rc/img-ir/
5688
5689 IMS TWINTURBO FRAMEBUFFER DRIVER
5690 L:      linux-fbdev@vger.kernel.org
5691 S:      Orphan
5692 F:      drivers/video/fbdev/imsttfb.c
5693
5694 INFINIBAND SUBSYSTEM
5695 M:      Doug Ledford <dledford@redhat.com>
5696 M:      Sean Hefty <sean.hefty@intel.com>
5697 M:      Hal Rosenstock <hal.rosenstock@gmail.com>
5698 L:      linux-rdma@vger.kernel.org
5699 W:      http://www.openfabrics.org/
5700 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5701 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git
5702 S:      Supported
5703 F:      Documentation/infiniband/
5704 F:      drivers/infiniband/
5705 F:      drivers/staging/rdma/
5706 F:      include/uapi/linux/if_infiniband.h
5707 F:      include/uapi/rdma/
5708 F:      include/rdma/
5709
5710 INOTIFY
5711 M:      John McCutchan <john@johnmccutchan.com>
5712 M:      Robert Love <rlove@rlove.org>
5713 M:      Eric Paris <eparis@parisplace.org>
5714 S:      Maintained
5715 F:      Documentation/filesystems/inotify.txt
5716 F:      fs/notify/inotify/
5717 F:      include/linux/inotify.h
5718 F:      include/uapi/linux/inotify.h
5719
5720 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
5721 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
5722 L:      linux-input@vger.kernel.org
5723 Q:      http://patchwork.kernel.org/project/linux-input/list/
5724 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
5725 S:      Maintained
5726 F:      drivers/input/
5727 F:      include/linux/input.h
5728 F:      include/uapi/linux/input.h
5729 F:      include/linux/input/
5730 F:      Documentation/devicetree/bindings/input/
5731
5732 INPUT MULTITOUCH (MT) PROTOCOL
5733 M:      Henrik Rydberg <rydberg@bitmath.org>
5734 L:      linux-input@vger.kernel.org
5735 S:      Odd fixes
5736 F:      Documentation/input/multi-touch-protocol.txt
5737 F:      drivers/input/input-mt.c
5738 K:      \b(ABS|SYN)_MT_
5739
5740 INTEL ASoC BDW/HSW DRIVERS
5741 M:      Jie Yang <yang.jie@linux.intel.com>
5742 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5743 S:      Supported
5744 F:      sound/soc/intel/common/sst-dsp*
5745 F:      sound/soc/intel/common/sst-firmware.c
5746 F:      sound/soc/intel/boards/broadwell.c
5747 F:      sound/soc/intel/haswell/
5748
5749 INTEL C600 SERIES SAS CONTROLLER DRIVER
5750 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
5751 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
5752 L:      linux-scsi@vger.kernel.org
5753 T:      git git://git.code.sf.net/p/intel-sas/isci
5754 S:      Supported
5755 F:      drivers/scsi/isci/
5756
5757 INTEL HID EVENT DRIVER
5758 M:      Alex Hung <alex.hung@canonical.com>
5759 L:      platform-driver-x86@vger.kernel.org
5760 S:      Maintained
5761 F:      drivers/platform/x86/intel-hid.c
5762
5763 INTEL IDLE DRIVER
5764 M:      Len Brown <lenb@kernel.org>
5765 L:      linux-pm@vger.kernel.org
5766 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
5767 S:      Supported
5768 F:      drivers/idle/intel_idle.c
5769
5770 INTEL PSTATE DRIVER
5771 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
5772 M:      Len Brown <lenb@kernel.org>
5773 L:      linux-pm@vger.kernel.org
5774 S:      Supported
5775 F:      drivers/cpufreq/intel_pstate.c
5776
5777 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
5778 M:      Maik Broemme <mbroemme@plusserver.de>
5779 L:      linux-fbdev@vger.kernel.org
5780 S:      Maintained
5781 F:      Documentation/fb/intelfb.txt
5782 F:      drivers/video/fbdev/intelfb/
5783
5784 INTEL 810/815 FRAMEBUFFER DRIVER
5785 M:      Antonino Daplas <adaplas@gmail.com>
5786 L:      linux-fbdev@vger.kernel.org
5787 S:      Maintained
5788 F:      drivers/video/fbdev/i810/
5789
5790 INTEL MENLOW THERMAL DRIVER
5791 M:      Sujith Thomas <sujith.thomas@intel.com>
5792 L:      platform-driver-x86@vger.kernel.org
5793 W:      https://01.org/linux-acpi
5794 S:      Supported
5795 F:      drivers/platform/x86/intel_menlow.c
5796
5797 INTEL I/OAT DMA DRIVER
5798 M:      Dave Jiang <dave.jiang@intel.com>
5799 R:      Dan Williams <dan.j.williams@intel.com>
5800 L:      dmaengine@vger.kernel.org
5801 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5802 S:      Supported
5803 F:      drivers/dma/ioat*
5804
5805 INTEL IOMMU (VT-d)
5806 M:      David Woodhouse <dwmw2@infradead.org>
5807 L:      iommu@lists.linux-foundation.org
5808 T:      git git://git.infradead.org/iommu-2.6.git
5809 S:      Supported
5810 F:      drivers/iommu/intel-iommu.c
5811 F:      include/linux/intel-iommu.h
5812
5813 INTEL IOP-ADMA DMA DRIVER
5814 R:      Dan Williams <dan.j.williams@intel.com>
5815 S:      Odd fixes
5816 F:      drivers/dma/iop-adma.c
5817
5818 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
5819 M:      Krzysztof Halasa <khalasa@piap.pl>
5820 S:      Maintained
5821 F:      arch/arm/mach-ixp4xx/include/mach/qmgr.h
5822 F:      arch/arm/mach-ixp4xx/include/mach/npe.h
5823 F:      arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
5824 F:      arch/arm/mach-ixp4xx/ixp4xx_npe.c
5825 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
5826 F:      drivers/net/wan/ixp4xx_hss.c
5827
5828 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
5829 M:      Deepak Saxena <dsaxena@plexity.net>
5830 S:      Maintained
5831 F:      drivers/char/hw_random/ixp4xx-rng.c
5832
5833 INTEL ETHERNET DRIVERS
5834 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
5835 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
5836 W:      http://www.intel.com/support/feedback.htm
5837 W:      http://e1000.sourceforge.net/
5838 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
5839 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
5840 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
5841 S:      Supported
5842 F:      Documentation/networking/e100.txt
5843 F:      Documentation/networking/e1000.txt
5844 F:      Documentation/networking/e1000e.txt
5845 F:      Documentation/networking/igb.txt
5846 F:      Documentation/networking/igbvf.txt
5847 F:      Documentation/networking/ixgb.txt
5848 F:      Documentation/networking/ixgbe.txt
5849 F:      Documentation/networking/ixgbevf.txt
5850 F:      Documentation/networking/i40e.txt
5851 F:      Documentation/networking/i40evf.txt
5852 F:      drivers/net/ethernet/intel/
5853 F:      drivers/net/ethernet/intel/*/
5854
5855 INTEL RDMA RNIC DRIVER
5856 M:     Faisal Latif <faisal.latif@intel.com>
5857 R:     Chien Tin Tung <chien.tin.tung@intel.com>
5858 R:     Mustafa Ismail <mustafa.ismail@intel.com>
5859 R:     Shiraz Saleem <shiraz.saleem@intel.com>
5860 R:     Tatyana Nikolova <tatyana.e.nikolova@intel.com>
5861 L:     linux-rdma@vger.kernel.org
5862 S:     Supported
5863 F:     drivers/infiniband/hw/i40iw/
5864
5865 INTEL-MID GPIO DRIVER
5866 M:      David Cohen <david.a.cohen@linux.intel.com>
5867 L:      linux-gpio@vger.kernel.org
5868 S:      Maintained
5869 F:      drivers/gpio/gpio-intel-mid.c
5870
5871 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
5872 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
5873 L:      linux-wireless@vger.kernel.org
5874 S:      Maintained
5875 F:      Documentation/networking/README.ipw2100
5876 F:      Documentation/networking/README.ipw2200
5877 F:      drivers/net/wireless/intel/ipw2x00/
5878
5879 INTEL(R) TRACE HUB
5880 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
5881 S:      Supported
5882 F:      Documentation/trace/intel_th.txt
5883 F:      drivers/hwtracing/intel_th/
5884
5885 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
5886 M:      Ning Sun <ning.sun@intel.com>
5887 L:      tboot-devel@lists.sourceforge.net
5888 W:      http://tboot.sourceforge.net
5889 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
5890 S:      Supported
5891 F:      Documentation/intel_txt.txt
5892 F:      include/linux/tboot.h
5893 F:      arch/x86/kernel/tboot.c
5894
5895 INTEL WIRELESS WIMAX CONNECTION 2400
5896 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
5897 M:      linux-wimax@intel.com
5898 L:      wimax@linuxwimax.org (subscribers-only)
5899 S:      Supported
5900 W:      http://linuxwimax.org
5901 F:      Documentation/wimax/README.i2400m
5902 F:      drivers/net/wimax/i2400m/
5903 F:      include/uapi/linux/wimax/i2400m.h
5904
5905 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
5906 M:      Stanislaw Gruszka <sgruszka@redhat.com>
5907 L:      linux-wireless@vger.kernel.org
5908 S:      Supported
5909 F:      drivers/net/wireless/intel/iwlegacy/
5910
5911 INTEL WIRELESS WIFI LINK (iwlwifi)
5912 M:      Johannes Berg <johannes.berg@intel.com>
5913 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
5914 M:      Luca Coelho <luciano.coelho@intel.com>
5915 M:      Intel Linux Wireless <linuxwifi@intel.com>
5916 L:      linux-wireless@vger.kernel.org
5917 W:      http://intellinuxwireless.org
5918 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
5919 S:      Supported
5920 F:      drivers/net/wireless/intel/iwlwifi/
5921
5922 INTEL MANAGEMENT ENGINE (mei)
5923 M:      Tomas Winkler <tomas.winkler@intel.com>
5924 L:      linux-kernel@vger.kernel.org
5925 S:      Supported
5926 F:      include/uapi/linux/mei.h
5927 F:      include/linux/mei_cl_bus.h
5928 F:      drivers/misc/mei/*
5929 F:      drivers/watchdog/mei_wdt.c
5930 F:      Documentation/misc-devices/mei/*
5931
5932 INTEL MIC DRIVERS (mic)
5933 M:      Sudeep Dutt <sudeep.dutt@intel.com>
5934 M:      Ashutosh Dixit <ashutosh.dixit@intel.com>
5935 S:      Supported
5936 W:      https://github.com/sudeepdutt/mic
5937 W:      http://software.intel.com/en-us/mic-developer
5938 F:      include/linux/mic_bus.h
5939 F:      include/linux/scif.h
5940 F:      include/uapi/linux/mic_common.h
5941 F:      include/uapi/linux/mic_ioctl.h
5942 F:      include/uapi/linux/scif_ioctl.h
5943 F:      drivers/misc/mic/
5944 F:      drivers/dma/mic_x100_dma.c
5945 F:      drivers/dma/mic_x100_dma.h
5946 F:      Documentation/mic/
5947
5948 INTEL PMC/P-Unit IPC DRIVER
5949 M:      Zha Qipeng<qipeng.zha@intel.com>
5950 L:      platform-driver-x86@vger.kernel.org
5951 S:      Maintained
5952 F:      drivers/platform/x86/intel_pmc_ipc.c
5953 F:      drivers/platform/x86/intel_punit_ipc.c
5954 F:      arch/x86/include/asm/intel_pmc_ipc.h
5955 F:      arch/x86/include/asm/intel_punit_ipc.h
5956
5957 INTEL TELEMETRY DRIVER
5958 M:      Souvik Kumar Chakravarty <souvik.k.chakravarty@intel.com>
5959 L:      platform-driver-x86@vger.kernel.org
5960 S:      Maintained
5961 F:      arch/x86/include/asm/intel_telemetry.h
5962 F:      drivers/platform/x86/intel_telemetry*
5963
5964 IOC3 ETHERNET DRIVER
5965 M:      Ralf Baechle <ralf@linux-mips.org>
5966 L:      linux-mips@linux-mips.org
5967 S:      Maintained
5968 F:      drivers/net/ethernet/sgi/ioc3-eth.c
5969
5970 IOC3 SERIAL DRIVER
5971 M:      Pat Gefre <pfg@sgi.com>
5972 L:      linux-serial@vger.kernel.org
5973 S:      Maintained
5974 F:      drivers/tty/serial/ioc3_serial.c
5975
5976 IOMMU DRIVERS
5977 M:      Joerg Roedel <joro@8bytes.org>
5978 L:      iommu@lists.linux-foundation.org
5979 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
5980 S:      Maintained
5981 F:      drivers/iommu/
5982
5983 IP MASQUERADING
5984 M:      Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
5985 S:      Maintained
5986 F:      net/ipv4/netfilter/ipt_MASQUERADE.c
5987
5988 IPMI SUBSYSTEM
5989 M:      Corey Minyard <minyard@acm.org>
5990 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
5991 W:      http://openipmi.sourceforge.net/
5992 S:      Supported
5993 F:      Documentation/IPMI.txt
5994 F:      drivers/char/ipmi/
5995 F:      include/linux/ipmi*
5996 F:      include/uapi/linux/ipmi*
5997
5998 QCOM AUDIO (ASoC) DRIVERS
5999 M:      Patrick Lai <plai@codeaurora.org>
6000 M:      Banajit Goswami <bgoswami@codeaurora.org>
6001 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6002 S:      Supported
6003 F:      sound/soc/qcom/
6004
6005 IPS SCSI RAID DRIVER
6006 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
6007 L:      linux-scsi@vger.kernel.org
6008 W:      http://www.adaptec.com/
6009 S:      Maintained
6010 F:      drivers/scsi/ips*
6011
6012 IPVS
6013 M:      Wensong Zhang <wensong@linux-vs.org>
6014 M:      Simon Horman <horms@verge.net.au>
6015 M:      Julian Anastasov <ja@ssi.bg>
6016 L:      netdev@vger.kernel.org
6017 L:      lvs-devel@vger.kernel.org
6018 S:      Maintained
6019 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
6020 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
6021 F:      Documentation/networking/ipvs-sysctl.txt
6022 F:      include/net/ip_vs.h
6023 F:      include/uapi/linux/ip_vs.h
6024 F:      net/netfilter/ipvs/
6025
6026 IPWIRELESS DRIVER
6027 M:      Jiri Kosina <jikos@kernel.org>
6028 M:      David Sterba <dsterba@suse.com>
6029 S:      Odd Fixes
6030 F:      drivers/tty/ipwireless/
6031
6032 IPX NETWORK LAYER
6033 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
6034 L:      netdev@vger.kernel.org
6035 S:      Maintained
6036 F:      include/net/ipx.h
6037 F:      include/uapi/linux/ipx.h
6038 F:      net/ipx/
6039
6040 IRDA SUBSYSTEM
6041 M:      Samuel Ortiz <samuel@sortiz.org>
6042 L:      irda-users@lists.sourceforge.net (subscribers-only)
6043 L:      netdev@vger.kernel.org
6044 W:      http://irda.sourceforge.net/
6045 S:      Maintained
6046 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
6047 F:      Documentation/networking/irda.txt
6048 F:      drivers/net/irda/
6049 F:      include/net/irda/
6050 F:      net/irda/
6051
6052 IRQ SUBSYSTEM
6053 M:      Thomas Gleixner <tglx@linutronix.de>
6054 L:      linux-kernel@vger.kernel.org
6055 S:      Maintained
6056 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
6057 F:      kernel/irq/
6058
6059 IRQCHIP DRIVERS
6060 M:      Thomas Gleixner <tglx@linutronix.de>
6061 M:      Jason Cooper <jason@lakedaemon.net>
6062 M:      Marc Zyngier <marc.zyngier@arm.com>
6063 L:      linux-kernel@vger.kernel.org
6064 S:      Maintained
6065 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
6066 T:      git git://git.infradead.org/users/jcooper/linux.git irqchip/core
6067 F:      Documentation/devicetree/bindings/interrupt-controller/
6068 F:      drivers/irqchip/
6069
6070 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
6071 M:      Jiang Liu <jiang.liu@linux.intel.com>
6072 M:      Marc Zyngier <marc.zyngier@arm.com>
6073 S:      Maintained
6074 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
6075 F:      Documentation/IRQ-domain.txt
6076 F:      include/linux/irqdomain.h
6077 F:      kernel/irq/irqdomain.c
6078 F:      kernel/irq/msi.c
6079
6080 ISA
6081 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
6082 S:      Maintained
6083 F:      Documentation/isa.txt
6084 F:      drivers/base/isa.c
6085 F:      include/linux/isa.h
6086
6087 ISAPNP
6088 M:      Jaroslav Kysela <perex@perex.cz>
6089 S:      Maintained
6090 F:      Documentation/isapnp.txt
6091 F:      drivers/pnp/isapnp/
6092 F:      include/linux/isapnp.h
6093
6094 ISA RADIO MODULE
6095 M:      Hans Verkuil <hverkuil@xs4all.nl>
6096 L:      linux-media@vger.kernel.org
6097 T:      git git://linuxtv.org/media_tree.git
6098 W:      https://linuxtv.org
6099 S:      Maintained
6100 F:      drivers/media/radio/radio-isa*
6101
6102 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
6103 M:      Peter Jones <pjones@redhat.com>
6104 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
6105 S:      Maintained
6106 F:      drivers/firmware/iscsi_ibft*
6107
6108 ISCSI
6109 M:      Mike Christie <michaelc@cs.wisc.edu>
6110 L:      open-iscsi@googlegroups.com
6111 W:      www.open-iscsi.org
6112 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
6113 S:      Maintained
6114 F:      drivers/scsi/*iscsi*
6115 F:      include/scsi/*iscsi*
6116
6117 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
6118 M:      Or Gerlitz <ogerlitz@mellanox.com>
6119 M:      Sagi Grimberg <sagi@grimberg.me>
6120 M:      Roi Dayan <roid@mellanox.com>
6121 L:      linux-rdma@vger.kernel.org
6122 S:      Supported
6123 W:      http://www.openfabrics.org
6124 W:      www.open-iscsi.org
6125 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
6126 F:      drivers/infiniband/ulp/iser/
6127
6128 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
6129 M:      Sagi Grimberg <sagi@grimberg.me>
6130 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
6131 L:      linux-rdma@vger.kernel.org
6132 L:      target-devel@vger.kernel.org
6133 S:      Supported
6134 W:      http://www.linux-iscsi.org
6135 F:      drivers/infiniband/ulp/isert
6136
6137 ISDN SUBSYSTEM
6138 M:      Karsten Keil <isdn@linux-pingi.de>
6139 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
6140 L:      netdev@vger.kernel.org
6141 W:      http://www.isdn4linux.de
6142 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
6143 S:      Maintained
6144 F:      Documentation/isdn/
6145 F:      drivers/isdn/
6146 F:      include/linux/isdn.h
6147 F:      include/linux/isdn/
6148 F:      include/uapi/linux/isdn.h
6149 F:      include/uapi/linux/isdn/
6150
6151 ISDN SUBSYSTEM (Eicon active card driver)
6152 M:      Armin Schindler <mac@melware.de>
6153 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
6154 W:      http://www.melware.de
6155 S:      Maintained
6156 F:      drivers/isdn/hardware/eicon/
6157
6158 IT87 HARDWARE MONITORING DRIVER
6159 M:      Jean Delvare <jdelvare@suse.com>
6160 L:      linux-hwmon@vger.kernel.org
6161 S:      Maintained
6162 F:      Documentation/hwmon/it87
6163 F:      drivers/hwmon/it87.c
6164
6165 IT913X MEDIA DRIVER
6166 M:      Antti Palosaari <crope@iki.fi>
6167 L:      linux-media@vger.kernel.org
6168 W:      https://linuxtv.org
6169 W:      http://palosaari.fi/linux/
6170 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6171 T:      git git://linuxtv.org/anttip/media_tree.git
6172 S:      Maintained
6173 F:      drivers/media/tuners/it913x*
6174
6175 IVTV VIDEO4LINUX DRIVER
6176 M:      Andy Walls <awalls@md.metrocast.net>
6177 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
6178 L:      linux-media@vger.kernel.org
6179 T:      git git://linuxtv.org/media_tree.git
6180 W:      http://www.ivtvdriver.org
6181 S:      Maintained
6182 F:      Documentation/video4linux/*.ivtv
6183 F:      drivers/media/pci/ivtv/
6184 F:      include/uapi/linux/ivtv*
6185
6186 IX2505V MEDIA DRIVER
6187 M:      Malcolm Priestley <tvboxspy@gmail.com>
6188 L:      linux-media@vger.kernel.org
6189 W:      https://linuxtv.org
6190 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6191 S:      Maintained
6192 F:      drivers/media/dvb-frontends/ix2505v*
6193
6194 JC42.4 TEMPERATURE SENSOR DRIVER
6195 M:      Guenter Roeck <linux@roeck-us.net>
6196 L:      linux-hwmon@vger.kernel.org
6197 S:      Maintained
6198 F:      drivers/hwmon/jc42.c
6199 F:      Documentation/hwmon/jc42
6200
6201 JFS FILESYSTEM
6202 M:      Dave Kleikamp <shaggy@kernel.org>
6203 L:      jfs-discussion@lists.sourceforge.net
6204 W:      http://jfs.sourceforge.net/
6205 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
6206 S:      Maintained
6207 F:      Documentation/filesystems/jfs.txt
6208 F:      fs/jfs/
6209
6210 JME NETWORK DRIVER
6211 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
6212 L:      netdev@vger.kernel.org
6213 S:      Maintained
6214 F:      drivers/net/ethernet/jme.*
6215
6216 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
6217 M:      David Woodhouse <dwmw2@infradead.org>
6218 L:      linux-mtd@lists.infradead.org
6219 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
6220 S:      Maintained
6221 F:      fs/jffs2/
6222 F:      include/uapi/linux/jffs2.h
6223
6224 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
6225 M:      "Theodore Ts'o" <tytso@mit.edu>
6226 M:      Jan Kara <jack@suse.com>
6227 L:      linux-ext4@vger.kernel.org
6228 S:      Maintained
6229 F:      fs/jbd2/
6230 F:      include/linux/jbd2.h
6231
6232 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
6233 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
6234 L:      linux-media@vger.kernel.org
6235 S:      Maintained
6236 F:      drivers/media/platform/rcar_jpu.c
6237
6238 JSM Neo PCI based serial card
6239 M:      Gabriel Krisman Bertazi <krisman@linux.vnet.ibm.com>
6240 L:      linux-serial@vger.kernel.org
6241 S:      Maintained
6242 F:      drivers/tty/serial/jsm/
6243
6244 K10TEMP HARDWARE MONITORING DRIVER
6245 M:      Clemens Ladisch <clemens@ladisch.de>
6246 L:      linux-hwmon@vger.kernel.org
6247 S:      Maintained
6248 F:      Documentation/hwmon/k10temp
6249 F:      drivers/hwmon/k10temp.c
6250
6251 K8TEMP HARDWARE MONITORING DRIVER
6252 M:      Rudolf Marek <r.marek@assembler.cz>
6253 L:      linux-hwmon@vger.kernel.org
6254 S:      Maintained
6255 F:      Documentation/hwmon/k8temp
6256 F:      drivers/hwmon/k8temp.c
6257
6258 KASAN
6259 M:      Andrey Ryabinin <aryabinin@virtuozzo.com>
6260 R:      Alexander Potapenko <glider@google.com>
6261 R:      Dmitry Vyukov <dvyukov@google.com>
6262 L:      kasan-dev@googlegroups.com
6263 S:      Maintained
6264 F:      arch/*/include/asm/kasan.h
6265 F:      arch/*/mm/kasan_init*
6266 F:      Documentation/kasan.txt
6267 F:      include/linux/kasan*.h
6268 F:      lib/test_kasan.c
6269 F:      mm/kasan/
6270 F:      scripts/Makefile.kasan
6271
6272 KCONFIG
6273 M:      "Yann E. MORIN" <yann.morin.1998@free.fr>
6274 L:      linux-kbuild@vger.kernel.org
6275 T:      git git://gitorious.org/linux-kconfig/linux-kconfig
6276 S:      Maintained
6277 F:      Documentation/kbuild/kconfig-language.txt
6278 F:      scripts/kconfig/
6279
6280 KDUMP
6281 M:      Vivek Goyal <vgoyal@redhat.com>
6282 M:      Haren Myneni <hbabu@us.ibm.com>
6283 L:      kexec@lists.infradead.org
6284 W:      http://lse.sourceforge.net/kdump/
6285 S:      Maintained
6286 F:      Documentation/kdump/
6287
6288 KEENE FM RADIO TRANSMITTER DRIVER
6289 M:      Hans Verkuil <hverkuil@xs4all.nl>
6290 L:      linux-media@vger.kernel.org
6291 T:      git git://linuxtv.org/media_tree.git
6292 W:      https://linuxtv.org
6293 S:      Maintained
6294 F:      drivers/media/radio/radio-keene*
6295
6296 KERNEL AUTOMOUNTER v4 (AUTOFS4)
6297 M:      Ian Kent <raven@themaw.net>
6298 L:      autofs@vger.kernel.org
6299 S:      Maintained
6300 F:      fs/autofs4/
6301
6302 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
6303 M:      Michal Marek <mmarek@suse.com>
6304 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
6305 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
6306 L:      linux-kbuild@vger.kernel.org
6307 S:      Maintained
6308 F:      Documentation/kbuild/
6309 F:      Makefile
6310 F:      scripts/Makefile.*
6311 F:      scripts/basic/
6312 F:      scripts/mk*
6313 F:      scripts/package/
6314
6315 KERNEL JANITORS
6316 L:      kernel-janitors@vger.kernel.org
6317 W:      http://kernelnewbies.org/KernelJanitors
6318 S:      Odd Fixes
6319
6320 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
6321 M:      "J. Bruce Fields" <bfields@fieldses.org>
6322 M:      Jeff Layton <jlayton@poochiereds.net>
6323 L:      linux-nfs@vger.kernel.org
6324 W:      http://nfs.sourceforge.net/
6325 T:      git git://linux-nfs.org/~bfields/linux.git
6326 S:      Supported
6327 F:      fs/nfsd/
6328 F:      include/uapi/linux/nfsd/
6329 F:      fs/lockd/
6330 F:      fs/nfs_common/
6331 F:      net/sunrpc/
6332 F:      include/linux/lockd/
6333 F:      include/linux/sunrpc/
6334 F:      include/uapi/linux/sunrpc/
6335
6336 KERNEL SELFTEST FRAMEWORK
6337 M:      Shuah Khan <shuahkh@osg.samsung.com>
6338 L:      linux-kselftest@vger.kernel.org
6339 T:      git git://git.kernel.org/pub/scm/shuah/linux-kselftest
6340 S:      Maintained
6341 F:      tools/testing/selftests
6342
6343 KERNEL VIRTUAL MACHINE (KVM)
6344 M:      Paolo Bonzini <pbonzini@redhat.com>
6345 M:      Radim Krčmář <rkrcmar@redhat.com>
6346 L:      kvm@vger.kernel.org
6347 W:      http://www.linux-kvm.org
6348 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
6349 S:      Supported
6350 F:      Documentation/*/kvm*.txt
6351 F:      Documentation/virtual/kvm/
6352 F:      arch/*/kvm/
6353 F:      arch/x86/kernel/kvm.c
6354 F:      arch/x86/kernel/kvmclock.c
6355 F:      arch/*/include/asm/kvm*
6356 F:      include/linux/kvm*
6357 F:      include/uapi/linux/kvm*
6358 F:      virt/kvm/
6359
6360 KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
6361 M:      Joerg Roedel <joro@8bytes.org>
6362 L:      kvm@vger.kernel.org
6363 W:      http://www.linux-kvm.org/
6364 S:      Maintained
6365 F:      arch/x86/include/asm/svm.h
6366 F:      arch/x86/kvm/svm.c
6367
6368 KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
6369 M:      Alexander Graf <agraf@suse.com>
6370 L:      kvm-ppc@vger.kernel.org
6371 W:      http://www.linux-kvm.org/
6372 T:      git git://github.com/agraf/linux-2.6.git
6373 S:      Supported
6374 F:      arch/powerpc/include/asm/kvm*
6375 F:      arch/powerpc/kvm/
6376
6377 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
6378 M:      Christian Borntraeger <borntraeger@de.ibm.com>
6379 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
6380 L:      linux-s390@vger.kernel.org
6381 W:      http://www.ibm.com/developerworks/linux/linux390/
6382 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
6383 S:      Supported
6384 F:      Documentation/s390/kvm.txt
6385 F:      arch/s390/include/asm/kvm*
6386 F:      arch/s390/kvm/
6387
6388 KERNEL VIRTUAL MACHINE (KVM) FOR ARM
6389 M:      Christoffer Dall <christoffer.dall@linaro.org>
6390 M:      Marc Zyngier <marc.zyngier@arm.com>
6391 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6392 L:      kvmarm@lists.cs.columbia.edu
6393 W:      http://systems.cs.columbia.edu/projects/kvm-arm
6394 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
6395 S:      Supported
6396 F:      arch/arm/include/uapi/asm/kvm*
6397 F:      arch/arm/include/asm/kvm*
6398 F:      arch/arm/kvm/
6399 F:      virt/kvm/arm/
6400 F:      include/kvm/arm_*
6401
6402 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
6403 M:      Christoffer Dall <christoffer.dall@linaro.org>
6404 M:      Marc Zyngier <marc.zyngier@arm.com>
6405 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6406 L:      kvmarm@lists.cs.columbia.edu
6407 S:      Maintained
6408 F:      arch/arm64/include/uapi/asm/kvm*
6409 F:      arch/arm64/include/asm/kvm*
6410 F:      arch/arm64/kvm/
6411
6412 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
6413 M:      James Hogan <james.hogan@imgtec.com>
6414 L:      linux-mips@linux-mips.org
6415 S:      Supported
6416 F:      arch/mips/include/uapi/asm/kvm*
6417 F:      arch/mips/include/asm/kvm*
6418 F:      arch/mips/kvm/
6419
6420 KEXEC
6421 M:      Eric Biederman <ebiederm@xmission.com>
6422 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
6423 L:      kexec@lists.infradead.org
6424 S:      Maintained
6425 F:      include/linux/kexec.h
6426 F:      include/uapi/linux/kexec.h
6427 F:      kernel/kexec.c
6428
6429 KEYS/KEYRINGS:
6430 M:      David Howells <dhowells@redhat.com>
6431 L:      keyrings@vger.kernel.org
6432 S:      Maintained
6433 F:      Documentation/security/keys.txt
6434 F:      include/linux/key.h
6435 F:      include/linux/key-type.h
6436 F:      include/keys/
6437 F:      security/keys/
6438
6439 KEYS-TRUSTED
6440 M:      David Safford <safford@us.ibm.com>
6441 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6442 L:      linux-security-module@vger.kernel.org
6443 L:      keyrings@vger.kernel.org
6444 S:      Supported
6445 F:      Documentation/security/keys-trusted-encrypted.txt
6446 F:      include/keys/trusted-type.h
6447 F:      security/keys/trusted.c
6448 F:      security/keys/trusted.h
6449
6450 KEYS-ENCRYPTED
6451 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6452 M:      David Safford <safford@us.ibm.com>
6453 L:      linux-security-module@vger.kernel.org
6454 L:      keyrings@vger.kernel.org
6455 S:      Supported
6456 F:      Documentation/security/keys-trusted-encrypted.txt
6457 F:      include/keys/encrypted-type.h
6458 F:      security/keys/encrypted-keys/
6459
6460 KGDB / KDB /debug_core
6461 M:      Jason Wessel <jason.wessel@windriver.com>
6462 W:      http://kgdb.wiki.kernel.org/
6463 L:      kgdb-bugreport@lists.sourceforge.net
6464 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
6465 S:      Maintained
6466 F:      Documentation/DocBook/kgdb.tmpl
6467 F:      drivers/misc/kgdbts.c
6468 F:      drivers/tty/serial/kgdboc.c
6469 F:      include/linux/kdb.h
6470 F:      include/linux/kgdb.h
6471 F:      kernel/debug/
6472
6473 KMEMCHECK
6474 M:      Vegard Nossum <vegardno@ifi.uio.no>
6475 M:      Pekka Enberg <penberg@kernel.org>
6476 S:      Maintained
6477 F:      Documentation/kmemcheck.txt
6478 F:      arch/x86/include/asm/kmemcheck.h
6479 F:      arch/x86/mm/kmemcheck/
6480 F:      include/linux/kmemcheck.h
6481 F:      mm/kmemcheck.c
6482
6483 KMEMLEAK
6484 M:      Catalin Marinas <catalin.marinas@arm.com>
6485 S:      Maintained
6486 F:      Documentation/kmemleak.txt
6487 F:      include/linux/kmemleak.h
6488 F:      mm/kmemleak.c
6489 F:      mm/kmemleak-test.c
6490
6491 KPROBES
6492 M:      Ananth N Mavinakayanahalli <ananth@linux.vnet.ibm.com>
6493 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
6494 M:      "David S. Miller" <davem@davemloft.net>
6495 M:      Masami Hiramatsu <mhiramat@kernel.org>
6496 S:      Maintained
6497 F:      Documentation/kprobes.txt
6498 F:      include/linux/kprobes.h
6499 F:      kernel/kprobes.c
6500
6501 KS0108 LCD CONTROLLER DRIVER
6502 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
6503 W:      http://miguelojeda.es/auxdisplay.htm
6504 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
6505 S:      Maintained
6506 F:      Documentation/auxdisplay/ks0108
6507 F:      drivers/auxdisplay/ks0108.c
6508 F:      include/linux/ks0108.h
6509
6510 L3MDEV
6511 M:      David Ahern <dsa@cumulusnetworks.com>
6512 L:      netdev@vger.kernel.org
6513 S:      Maintained
6514 F:      net/l3mdev
6515 F:      include/net/l3mdev.h
6516
6517 LANTIQ MIPS ARCHITECTURE
6518 M:      John Crispin <john@phrozen.org>
6519 L:      linux-mips@linux-mips.org
6520 S:      Maintained
6521 F:      arch/mips/lantiq
6522
6523 LAPB module
6524 L:      linux-x25@vger.kernel.org
6525 S:      Orphan
6526 F:      Documentation/networking/lapb-module.txt
6527 F:      include/*/lapb.h
6528 F:      net/lapb/
6529
6530 LASI 53c700 driver for PARISC
6531 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
6532 L:      linux-scsi@vger.kernel.org
6533 S:      Maintained
6534 F:      Documentation/scsi/53c700.txt
6535 F:      drivers/scsi/53c700*
6536
6537 LED SUBSYSTEM
6538 M:      Richard Purdie <rpurdie@rpsys.net>
6539 M:      Jacek Anaszewski <j.anaszewski@samsung.com>
6540 L:      linux-leds@vger.kernel.org
6541 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
6542 S:      Maintained
6543 F:      drivers/leds/
6544 F:      include/linux/leds.h
6545
6546 LEGACY EEPROM DRIVER
6547 M:      Jean Delvare <jdelvare@suse.com>
6548 S:      Maintained
6549 F:      Documentation/misc-devices/eeprom
6550 F:      drivers/misc/eeprom/eeprom.c
6551
6552 LEGO USB Tower driver
6553 M:      Juergen Stuber <starblue@users.sourceforge.net>
6554 L:      legousb-devel@lists.sourceforge.net
6555 W:      http://legousb.sourceforge.net/
6556 S:      Maintained
6557 F:      drivers/usb/misc/legousbtower.c
6558
6559 LG2160 MEDIA DRIVER
6560 M:      Michael Krufky <mkrufky@linuxtv.org>
6561 L:      linux-media@vger.kernel.org
6562 W:      https://linuxtv.org
6563 W:      http://github.com/mkrufky
6564 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6565 T:      git git://linuxtv.org/mkrufky/tuners.git
6566 S:      Maintained
6567 F:      drivers/media/dvb-frontends/lg2160.*
6568
6569 LGDT3305 MEDIA DRIVER
6570 M:      Michael Krufky <mkrufky@linuxtv.org>
6571 L:      linux-media@vger.kernel.org
6572 W:      https://linuxtv.org
6573 W:      http://github.com/mkrufky
6574 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6575 T:      git git://linuxtv.org/mkrufky/tuners.git
6576 S:      Maintained
6577 F:      drivers/media/dvb-frontends/lgdt3305.*
6578
6579 LGUEST
6580 M:      Rusty Russell <rusty@rustcorp.com.au>
6581 L:      lguest@lists.ozlabs.org
6582 W:      http://lguest.ozlabs.org/
6583 S:      Odd Fixes
6584 F:      arch/x86/include/asm/lguest*.h
6585 F:      arch/x86/lguest/
6586 F:      drivers/lguest/
6587 F:      include/linux/lguest*.h
6588 F:      tools/lguest/
6589
6590 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
6591 M:      Tejun Heo <tj@kernel.org>
6592 L:      linux-ide@vger.kernel.org
6593 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6594 S:      Maintained
6595 F:      drivers/ata/
6596 F:      include/linux/ata.h
6597 F:      include/linux/libata.h
6598
6599 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
6600 M:      Viresh Kumar <vireshk@kernel.org>
6601 L:      linux-ide@vger.kernel.org
6602 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6603 S:      Maintained
6604 F:      include/linux/pata_arasan_cf_data.h
6605 F:      drivers/ata/pata_arasan_cf.c
6606
6607 LIBATA PATA DRIVERS
6608 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6609 M:      Tejun Heo <tj@kernel.org>
6610 L:      linux-ide@vger.kernel.org
6611 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6612 S:      Maintained
6613 F:      drivers/ata/pata_*.c
6614 F:      drivers/ata/ata_generic.c
6615
6616 LIBATA SATA AHCI PLATFORM devices support
6617 M:      Hans de Goede <hdegoede@redhat.com>
6618 M:      Tejun Heo <tj@kernel.org>
6619 L:      linux-ide@vger.kernel.org
6620 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6621 S:      Maintained
6622 F:      drivers/ata/ahci_platform.c
6623 F:      drivers/ata/libahci_platform.c
6624 F:      include/linux/ahci_platform.h
6625
6626 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
6627 M:      Mikael Pettersson <mikpelinux@gmail.com>
6628 L:      linux-ide@vger.kernel.org
6629 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6630 S:      Maintained
6631 F:      drivers/ata/sata_promise.*
6632
6633 LIBLOCKDEP
6634 M:      Sasha Levin <sasha.levin@oracle.com>
6635 S:      Maintained
6636 F:      tools/lib/lockdep/
6637
6638 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
6639 M:      Dan Williams <dan.j.williams@intel.com>
6640 L:      linux-nvdimm@lists.01.org
6641 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6642 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
6643 S:      Supported
6644 F:      drivers/nvdimm/*
6645 F:      include/linux/nd.h
6646 F:      include/linux/libnvdimm.h
6647 F:      include/uapi/linux/ndctl.h
6648
6649 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
6650 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6651 L:      linux-nvdimm@lists.01.org
6652 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6653 S:      Supported
6654 F:      drivers/nvdimm/blk.c
6655 F:      drivers/nvdimm/region_devs.c
6656 F:      drivers/acpi/nfit*
6657
6658 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
6659 M:      Vishal Verma <vishal.l.verma@intel.com>
6660 L:      linux-nvdimm@lists.01.org
6661 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6662 S:      Supported
6663 F:      drivers/nvdimm/btt*
6664
6665 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
6666 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6667 L:      linux-nvdimm@lists.01.org
6668 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6669 S:      Supported
6670 F:      drivers/nvdimm/pmem.c
6671 F:      include/linux/pmem.h
6672 F:      arch/*/include/asm/pmem.h
6673
6674 LIGHTNVM PLATFORM SUPPORT
6675 M:      Matias Bjorling <mb@lightnvm.io>
6676 W:      http://github/OpenChannelSSD
6677 L:      linux-block@vger.kernel.org
6678 S:      Maintained
6679 F:      drivers/lightnvm/
6680 F:      include/linux/lightnvm.h
6681 F:      include/uapi/linux/lightnvm.h
6682
6683 LINUX FOR IBM pSERIES (RS/6000)
6684 M:      Paul Mackerras <paulus@au.ibm.com>
6685 W:      http://www.ibm.com/linux/ltc/projects/ppc
6686 S:      Supported
6687 F:      arch/powerpc/boot/rs6000.h
6688
6689 LINUX FOR POWERPC (32-BIT AND 64-BIT)
6690 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6691 M:      Paul Mackerras <paulus@samba.org>
6692 M:      Michael Ellerman <mpe@ellerman.id.au>
6693 W:      http://www.penguinppc.org/
6694 L:      linuxppc-dev@lists.ozlabs.org
6695 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
6696 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
6697 S:      Supported
6698 F:      Documentation/powerpc/
6699 F:      arch/powerpc/
6700 F:      drivers/char/tpm/tpm_ibmvtpm*
6701 F:      drivers/crypto/nx/
6702 F:      drivers/crypto/vmx/
6703 F:      drivers/net/ethernet/ibm/ibmveth.*
6704 F:      drivers/net/ethernet/ibm/ibmvnic.*
6705 F:      drivers/pci/hotplug/rpa*
6706 F:      drivers/scsi/ibmvscsi/
6707 N:      opal
6708 N:      /pmac
6709 N:      powermac
6710 N:      powernv
6711 N:      [^a-z0-9]ps3
6712 N:      pseries
6713
6714 LINUX FOR POWER MACINTOSH
6715 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6716 W:      http://www.penguinppc.org/
6717 L:      linuxppc-dev@lists.ozlabs.org
6718 S:      Maintained
6719 F:      arch/powerpc/platforms/powermac/
6720 F:      drivers/macintosh/
6721
6722 LINUX FOR POWERPC EMBEDDED MPC5XXX
6723 M:      Anatolij Gustschin <agust@denx.de>
6724 L:      linuxppc-dev@lists.ozlabs.org
6725 T:      git git://git.denx.de/linux-denx-agust.git
6726 S:      Maintained
6727 F:      arch/powerpc/platforms/512x/
6728 F:      arch/powerpc/platforms/52xx/
6729
6730 LINUX FOR POWERPC EMBEDDED PPC4XX
6731 M:      Alistair Popple <alistair@popple.id.au>
6732 M:      Matt Porter <mporter@kernel.crashing.org>
6733 W:      http://www.penguinppc.org/
6734 L:      linuxppc-dev@lists.ozlabs.org
6735 S:      Maintained
6736 F:      arch/powerpc/platforms/40x/
6737 F:      arch/powerpc/platforms/44x/
6738
6739 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
6740 L:      linuxppc-dev@lists.ozlabs.org
6741 S:      Orphan
6742 F:      arch/powerpc/*/*virtex*
6743 F:      arch/powerpc/*/*/*virtex*
6744
6745 LINUX FOR POWERPC EMBEDDED PPC8XX
6746 M:      Vitaly Bordug <vitb@kernel.crashing.org>
6747 W:      http://www.penguinppc.org/
6748 L:      linuxppc-dev@lists.ozlabs.org
6749 S:      Maintained
6750 F:      arch/powerpc/platforms/8xx/
6751
6752 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
6753 M:      Scott Wood <oss@buserror.net>
6754 M:      Kumar Gala <galak@kernel.crashing.org>
6755 W:      http://www.penguinppc.org/
6756 L:      linuxppc-dev@lists.ozlabs.org
6757 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
6758 S:      Maintained
6759 F:      arch/powerpc/platforms/83xx/
6760 F:      arch/powerpc/platforms/85xx/
6761
6762 LINUX FOR POWERPC PA SEMI PWRFICIENT
6763 M:      Olof Johansson <olof@lixom.net>
6764 L:      linuxppc-dev@lists.ozlabs.org
6765 S:      Maintained
6766 F:      arch/powerpc/platforms/pasemi/
6767 F:      drivers/*/*pasemi*
6768 F:      drivers/*/*/*pasemi*
6769
6770 LINUX SECURITY MODULE (LSM) FRAMEWORK
6771 M:      Chris Wright <chrisw@sous-sol.org>
6772 L:      linux-security-module@vger.kernel.org
6773 S:      Supported
6774
6775 LIS3LV02D ACCELEROMETER DRIVER
6776 M:      Eric Piel <eric.piel@tremplin-utc.net>
6777 S:      Maintained
6778 F:      Documentation/misc-devices/lis3lv02d
6779 F:      drivers/misc/lis3lv02d/
6780 F:      drivers/platform/x86/hp_accel.c
6781
6782 LIVE PATCHING
6783 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6784 M:      Jessica Yu <jeyu@redhat.com>
6785 M:      Jiri Kosina <jikos@kernel.org>
6786 M:      Miroslav Benes <mbenes@suse.cz>
6787 R:      Petr Mladek <pmladek@suse.com>
6788 S:      Maintained
6789 F:      kernel/livepatch/
6790 F:      include/linux/livepatch.h
6791 F:      arch/x86/include/asm/livepatch.h
6792 F:      arch/x86/kernel/livepatch.c
6793 F:      Documentation/livepatch/
6794 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
6795 F:      samples/livepatch/
6796 L:      live-patching@vger.kernel.org
6797 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
6798
6799 LINUX KERNEL DUMP TEST MODULE (LKDTM)
6800 M:      Kees Cook <keescook@chromium.org>
6801 S:      Maintained
6802 F:      drivers/misc/lkdtm.c
6803
6804 LLC (802.2)
6805 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
6806 S:      Maintained
6807 F:      include/linux/llc.h
6808 F:      include/uapi/linux/llc.h
6809 F:      include/net/llc*
6810 F:      net/llc/
6811
6812 LM73 HARDWARE MONITOR DRIVER
6813 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
6814 L:      linux-hwmon@vger.kernel.org
6815 S:      Maintained
6816 F:      drivers/hwmon/lm73.c
6817
6818 LM78 HARDWARE MONITOR DRIVER
6819 M:      Jean Delvare <jdelvare@suse.com>
6820 L:      linux-hwmon@vger.kernel.org
6821 S:      Maintained
6822 F:      Documentation/hwmon/lm78
6823 F:      drivers/hwmon/lm78.c
6824
6825 LM83 HARDWARE MONITOR DRIVER
6826 M:      Jean Delvare <jdelvare@suse.com>
6827 L:      linux-hwmon@vger.kernel.org
6828 S:      Maintained
6829 F:      Documentation/hwmon/lm83
6830 F:      drivers/hwmon/lm83.c
6831
6832 LM90 HARDWARE MONITOR DRIVER
6833 M:      Jean Delvare <jdelvare@suse.com>
6834 L:      linux-hwmon@vger.kernel.org
6835 S:      Maintained
6836 F:      Documentation/hwmon/lm90
6837 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
6838 F:      drivers/hwmon/lm90.c
6839
6840 LM95234 HARDWARE MONITOR DRIVER
6841 M:      Guenter Roeck <linux@roeck-us.net>
6842 L:      linux-hwmon@vger.kernel.org
6843 S:      Maintained
6844 F:      Documentation/hwmon/lm95234
6845 F:      drivers/hwmon/lm95234.c
6846
6847 LME2510 MEDIA DRIVER
6848 M:      Malcolm Priestley <tvboxspy@gmail.com>
6849 L:      linux-media@vger.kernel.org
6850 W:      https://linuxtv.org
6851 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6852 S:      Maintained
6853 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
6854
6855 LOCKDEP AND LOCKSTAT
6856 M:      Peter Zijlstra <peterz@infradead.org>
6857 M:      Ingo Molnar <mingo@redhat.com>
6858 L:      linux-kernel@vger.kernel.org
6859 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
6860 S:      Maintained
6861 F:      Documentation/locking/lockdep*.txt
6862 F:      Documentation/locking/lockstat.txt
6863 F:      include/linux/lockdep.h
6864 F:      kernel/locking/
6865
6866 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
6867 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
6868 L:      linux-ntfs-dev@lists.sourceforge.net
6869 W:      http://www.linux-ntfs.org/content/view/19/37/
6870 S:      Maintained
6871 F:      Documentation/ldm.txt
6872 F:      block/partitions/ldm.*
6873
6874 LogFS
6875 M:      Joern Engel <joern@logfs.org>
6876 M:      Prasad Joshi <prasadjoshi.linux@gmail.com>
6877 L:      logfs@logfs.org
6878 W:      logfs.org
6879 S:      Maintained
6880 F:      fs/logfs/
6881
6882 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
6883 M:      Sathya Prakash <sathya.prakash@broadcom.com>
6884 M:      Chaitra P B <chaitra.basappa@broadcom.com>
6885 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
6886 L:      MPT-FusionLinux.pdl@broadcom.com
6887 L:      linux-scsi@vger.kernel.org
6888 W:      http://www.avagotech.com/support/
6889 S:      Supported
6890 F:      drivers/message/fusion/
6891 F:      drivers/scsi/mpt2sas/
6892 F:      drivers/scsi/mpt3sas/
6893
6894 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
6895 M:      Matthew Wilcox <matthew@wil.cx>
6896 L:      linux-scsi@vger.kernel.org
6897 S:      Maintained
6898 F:      drivers/scsi/sym53c8xx_2/
6899
6900 LTC4261 HARDWARE MONITOR DRIVER
6901 M:      Guenter Roeck <linux@roeck-us.net>
6902 L:      linux-hwmon@vger.kernel.org
6903 S:      Maintained
6904 F:      Documentation/hwmon/ltc4261
6905 F:      drivers/hwmon/ltc4261.c
6906
6907 LTP (Linux Test Project)
6908 M:      Mike Frysinger <vapier@gentoo.org>
6909 M:      Cyril Hrubis <chrubis@suse.cz>
6910 M:      Wanlong Gao <wanlong.gao@gmail.com>
6911 M:      Jan Stancek <jstancek@redhat.com>
6912 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
6913 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
6914 L:      ltp@lists.linux.it (subscribers-only)
6915 W:      http://linux-test-project.github.io/
6916 T:      git git://github.com/linux-test-project/ltp.git
6917 S:      Maintained
6918
6919 M32R ARCHITECTURE
6920 W:      http://www.linux-m32r.org/
6921 S:      Orphan
6922 F:      arch/m32r/
6923
6924 M68K ARCHITECTURE
6925 M:      Geert Uytterhoeven <geert@linux-m68k.org>
6926 L:      linux-m68k@lists.linux-m68k.org
6927 W:      http://www.linux-m68k.org/
6928 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
6929 S:      Maintained
6930 F:      arch/m68k/
6931 F:      drivers/zorro/
6932
6933 M68K ON APPLE MACINTOSH
6934 M:      Joshua Thompson <funaho@jurai.org>
6935 W:      http://www.mac.linux-m68k.org/
6936 L:      linux-m68k@lists.linux-m68k.org
6937 S:      Maintained
6938 F:      arch/m68k/mac/
6939
6940 M68K ON HP9000/300
6941 M:      Philip Blundell <philb@gnu.org>
6942 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
6943 S:      Maintained
6944 F:      arch/m68k/hp300/
6945
6946 M88DS3103 MEDIA DRIVER
6947 M:      Antti Palosaari <crope@iki.fi>
6948 L:      linux-media@vger.kernel.org
6949 W:      https://linuxtv.org
6950 W:      http://palosaari.fi/linux/
6951 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6952 T:      git git://linuxtv.org/anttip/media_tree.git
6953 S:      Maintained
6954 F:      drivers/media/dvb-frontends/m88ds3103*
6955
6956 M88RS2000 MEDIA DRIVER
6957 M:      Malcolm Priestley <tvboxspy@gmail.com>
6958 L:      linux-media@vger.kernel.org
6959 W:      https://linuxtv.org
6960 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6961 S:      Maintained
6962 F:      drivers/media/dvb-frontends/m88rs2000*
6963
6964 MA901 MASTERKIT USB FM RADIO DRIVER
6965 M:      Alexey Klimov <klimov.linux@gmail.com>
6966 L:      linux-media@vger.kernel.org
6967 T:      git git://linuxtv.org/media_tree.git
6968 S:      Maintained
6969 F:      drivers/media/radio/radio-ma901.c
6970
6971 MAC80211
6972 M:      Johannes Berg <johannes@sipsolutions.net>
6973 L:      linux-wireless@vger.kernel.org
6974 W:      http://wireless.kernel.org/
6975 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6976 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
6977 S:      Maintained
6978 F:      Documentation/networking/mac80211-injection.txt
6979 F:      include/net/mac80211.h
6980 F:      net/mac80211/
6981 F:      drivers/net/wireless/mac80211_hwsim.[ch]
6982
6983 MACVLAN DRIVER
6984 M:      Patrick McHardy <kaber@trash.net>
6985 L:      netdev@vger.kernel.org
6986 S:      Maintained
6987 F:      drivers/net/macvlan.c
6988 F:      include/linux/if_macvlan.h
6989
6990 MAILBOX API
6991 M:      Jassi Brar <jassisinghbrar@gmail.com>
6992 L:      linux-kernel@vger.kernel.org
6993 S:      Maintained
6994 F:      drivers/mailbox/
6995 F:      include/linux/mailbox_client.h
6996 F:      include/linux/mailbox_controller.h
6997
6998 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
6999 M:      Michael Kerrisk <mtk.manpages@gmail.com>
7000 W:      http://www.kernel.org/doc/man-pages
7001 L:      linux-man@vger.kernel.org
7002 S:      Maintained
7003
7004 MARVELL ARMADA DRM SUPPORT
7005 M:      Russell King <rmk+kernel@armlinux.org.uk>
7006 S:      Maintained
7007 F:      drivers/gpu/drm/armada/
7008
7009 MARVELL 88E6352 DSA support
7010 M:      Guenter Roeck <linux@roeck-us.net>
7011 S:      Maintained
7012 F:      drivers/net/dsa/mv88e6352.c
7013
7014 MARVELL CRYPTO DRIVER
7015 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
7016 M:      Arnaud Ebalard <arno@natisbad.org>
7017 F:      drivers/crypto/marvell/
7018 S:      Maintained
7019 L:      linux-crypto@vger.kernel.org
7020
7021 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
7022 M:      Mirko Lindner <mlindner@marvell.com>
7023 M:      Stephen Hemminger <stephen@networkplumber.org>
7024 L:      netdev@vger.kernel.org
7025 S:      Maintained
7026 F:      drivers/net/ethernet/marvell/sk*
7027
7028 MARVELL LIBERTAS WIRELESS DRIVER
7029 L:      libertas-dev@lists.infradead.org
7030 S:      Orphan
7031 F:      drivers/net/wireless/marvell/libertas/
7032
7033 MARVELL MV643XX ETHERNET DRIVER
7034 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
7035 L:      netdev@vger.kernel.org
7036 S:      Maintained
7037 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
7038 F:      include/linux/mv643xx.h
7039
7040 MARVELL MVNETA ETHERNET DRIVER
7041 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7042 L:      netdev@vger.kernel.org
7043 S:      Maintained
7044 F:      drivers/net/ethernet/marvell/mvneta.*
7045
7046 MARVELL MWIFIEX WIRELESS DRIVER
7047 M:      Amitkumar Karwar <akarwar@marvell.com>
7048 M:      Nishant Sarmukadam <nishants@marvell.com>
7049 L:      linux-wireless@vger.kernel.org
7050 S:      Maintained
7051 F:      drivers/net/wireless/marvell/mwifiex/
7052
7053 MARVELL MWL8K WIRELESS DRIVER
7054 M:      Lennert Buytenhek <buytenh@wantstofly.org>
7055 L:      linux-wireless@vger.kernel.org
7056 S:      Odd Fixes
7057 F:      drivers/net/wireless/marvell/mwl8k.c
7058
7059 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
7060 M:      Nicolas Pitre <nico@fluxnic.net>
7061 S:      Odd Fixes
7062 F:      drivers/mmc/host/mvsdio.*
7063
7064 MATROX FRAMEBUFFER DRIVER
7065 L:      linux-fbdev@vger.kernel.org
7066 S:      Orphan
7067 F:      drivers/video/fbdev/matrox/matroxfb_*
7068 F:      include/uapi/linux/matroxfb.h
7069
7070 MAX16065 HARDWARE MONITOR DRIVER
7071 M:      Guenter Roeck <linux@roeck-us.net>
7072 L:      linux-hwmon@vger.kernel.org
7073 S:      Maintained
7074 F:      Documentation/hwmon/max16065
7075 F:      drivers/hwmon/max16065.c
7076
7077 MAX20751 HARDWARE MONITOR DRIVER
7078 M:      Guenter Roeck <linux@roeck-us.net>
7079 L:      linux-hwmon@vger.kernel.org
7080 S:      Maintained
7081 F:      Documentation/hwmon/max20751
7082 F:      drivers/hwmon/max20751.c
7083
7084 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7085 M:      "Hans J. Koch" <hjk@hansjkoch.de>
7086 L:      linux-hwmon@vger.kernel.org
7087 S:      Maintained
7088 F:      Documentation/hwmon/max6650
7089 F:      drivers/hwmon/max6650.c
7090
7091 MAX6697 HARDWARE MONITOR DRIVER
7092 M:      Guenter Roeck <linux@roeck-us.net>
7093 L:      linux-hwmon@vger.kernel.org
7094 S:      Maintained
7095 F:      Documentation/hwmon/max6697
7096 F:      Documentation/devicetree/bindings/i2c/max6697.txt
7097 F:      drivers/hwmon/max6697.c
7098 F:      include/linux/platform_data/max6697.h
7099
7100 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
7101 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
7102 L:      linux-pm@vger.kernel.org
7103 S:      Supported
7104 F:      drivers/power/max14577_charger.c
7105 F:      drivers/power/max77693_charger.c
7106
7107 MAXIM MAX77802 MULTIFUNCTION PMIC DEVICE DRIVERS
7108 M:      Javier Martinez Canillas <javier@osg.samsung.com>
7109 L:      linux-kernel@vger.kernel.org
7110 S:      Supported
7111 F:      drivers/*/*max77802*.c
7112 F:      Documentation/devicetree/bindings/*/*max77802.txt
7113 F:      include/dt-bindings/*/*max77802.h
7114
7115 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
7116 M:      Chanwoo Choi <cw00.choi@samsung.com>
7117 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
7118 L:      linux-kernel@vger.kernel.org
7119 S:      Supported
7120 F:      drivers/*/max14577*.c
7121 F:      drivers/*/max77686*.c
7122 F:      drivers/*/max77693*.c
7123 F:      drivers/extcon/extcon-max14577.c
7124 F:      drivers/extcon/extcon-max77693.c
7125 F:      drivers/rtc/rtc-max77686.c
7126 F:      drivers/clk/clk-max77686.c
7127 F:      Documentation/devicetree/bindings/mfd/max14577.txt
7128 F:      Documentation/devicetree/bindings/*/max77686.txt
7129 F:      Documentation/devicetree/bindings/mfd/max77693.txt
7130 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
7131 F:      include/linux/mfd/max14577*.h
7132 F:      include/linux/mfd/max77686*.h
7133 F:      include/linux/mfd/max77693*.h
7134
7135 MAXIRADIO FM RADIO RECEIVER DRIVER
7136 M:      Hans Verkuil <hverkuil@xs4all.nl>
7137 L:      linux-media@vger.kernel.org
7138 T:      git git://linuxtv.org/media_tree.git
7139 W:      https://linuxtv.org
7140 S:      Maintained
7141 F:      drivers/media/radio/radio-maxiradio*
7142
7143 MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVER
7144 M:      Peter Rosin <peda@axentia.se>
7145 L:      linux-iio@vger.kernel.org
7146 S:      Maintained
7147 F:      drivers/iio/potentiometer/mcp4531.c
7148
7149 MEDIA DRIVERS FOR RENESAS - VSP1
7150 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7151 L:      linux-media@vger.kernel.org
7152 L:      linux-renesas-soc@vger.kernel.org
7153 T:      git git://linuxtv.org/media_tree.git
7154 S:      Supported
7155 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
7156 F:      drivers/media/platform/vsp1/
7157
7158 MEDIA DRIVERS FOR ASCOT2E
7159 M:      Sergey Kozlov <serjk@netup.ru>
7160 L:      linux-media@vger.kernel.org
7161 W:      https://linuxtv.org
7162 W:      http://netup.tv/
7163 T:      git git://linuxtv.org/media_tree.git
7164 S:      Supported
7165 F:      drivers/media/dvb-frontends/ascot2e*
7166
7167 MEDIA DRIVERS FOR CXD2841ER
7168 M:      Sergey Kozlov <serjk@netup.ru>
7169 L:      linux-media@vger.kernel.org
7170 W:      https://linuxtv.org
7171 W:      http://netup.tv/
7172 T:      git git://linuxtv.org/media_tree.git
7173 S:      Supported
7174 F:      drivers/media/dvb-frontends/cxd2841er*
7175
7176 MEDIA DRIVERS FOR HORUS3A
7177 M:      Sergey Kozlov <serjk@netup.ru>
7178 L:      linux-media@vger.kernel.org
7179 W:      https://linuxtv.org
7180 W:      http://netup.tv/
7181 T:      git git://linuxtv.org/media_tree.git
7182 S:      Supported
7183 F:      drivers/media/dvb-frontends/horus3a*
7184
7185 MEDIA DRIVERS FOR LNBH25
7186 M:      Sergey Kozlov <serjk@netup.ru>
7187 L:      linux-media@vger.kernel.org
7188 W:      https://linuxtv.org
7189 W:      http://netup.tv/
7190 T:      git git://linuxtv.org/media_tree.git
7191 S:      Supported
7192 F:      drivers/media/dvb-frontends/lnbh25*
7193
7194 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
7195 M:      Sergey Kozlov <serjk@netup.ru>
7196 L:      linux-media@vger.kernel.org
7197 W:      https://linuxtv.org
7198 W:      http://netup.tv/
7199 T:      git git://linuxtv.org/media_tree.git
7200 S:      Supported
7201 F:      drivers/media/pci/netup_unidvb/*
7202
7203 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
7204 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
7205 P:      LinuxTV.org Project
7206 L:      linux-media@vger.kernel.org
7207 W:      https://linuxtv.org
7208 Q:      http://patchwork.kernel.org/project/linux-media/list/
7209 T:      git git://linuxtv.org/media_tree.git
7210 S:      Maintained
7211 F:      Documentation/dvb/
7212 F:      Documentation/video4linux/
7213 F:      Documentation/DocBook/media/
7214 F:      drivers/media/
7215 F:      drivers/staging/media/
7216 F:      include/linux/platform_data/media/
7217 F:      include/media/
7218 F:      include/uapi/linux/dvb/
7219 F:      include/uapi/linux/videodev2.h
7220 F:      include/uapi/linux/media.h
7221 F:      include/uapi/linux/v4l2-*
7222 F:      include/uapi/linux/meye.h
7223 F:      include/uapi/linux/ivtv*
7224 F:      include/uapi/linux/uvcvideo.h
7225
7226 MEDIATEK ETHERNET DRIVER
7227 M:      Felix Fietkau <nbd@openwrt.org>
7228 M:      John Crispin <blogic@openwrt.org>
7229 L:      netdev@vger.kernel.org
7230 S:      Maintained
7231 F:      drivers/net/ethernet/mediatek/
7232
7233 MEDIATEK MT7601U WIRELESS LAN DRIVER
7234 M:      Jakub Kicinski <kubakici@wp.pl>
7235 L:      linux-wireless@vger.kernel.org
7236 S:      Maintained
7237 F:      drivers/net/wireless/mediatek/mt7601u/
7238
7239 MEGARAID SCSI/SAS DRIVERS
7240 M:      Kashyap Desai <kashyap.desai@avagotech.com>
7241 M:      Sumit Saxena <sumit.saxena@avagotech.com>
7242 M:      Uday Lingala <uday.lingala@avagotech.com>
7243 L:      megaraidlinux.pdl@avagotech.com
7244 L:      linux-scsi@vger.kernel.org
7245 W:      http://www.lsi.com
7246 S:      Maintained
7247 F:      Documentation/scsi/megaraid.txt
7248 F:      drivers/scsi/megaraid.*
7249 F:      drivers/scsi/megaraid/
7250
7251 MELLANOX ETHERNET DRIVER (mlx4_en)
7252 M:      Eugenia Emantayev <eugenia@mellanox.com>
7253 L:      netdev@vger.kernel.org
7254 S:      Supported
7255 W:      http://www.mellanox.com
7256 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7257 F:      drivers/net/ethernet/mellanox/mlx4/en_*
7258
7259 MELLANOX ETHERNET DRIVER (mlx5e)
7260 M:      Saeed Mahameed <saeedm@mellanox.com>
7261 L:      netdev@vger.kernel.org
7262 S:      Supported
7263 W:      http://www.mellanox.com
7264 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7265 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
7266
7267 MELLANOX ETHERNET SWITCH DRIVERS
7268 M:      Jiri Pirko <jiri@mellanox.com>
7269 M:      Ido Schimmel <idosch@mellanox.com>
7270 L:      netdev@vger.kernel.org
7271 S:      Supported
7272 W:      http://www.mellanox.com
7273 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7274 F:      drivers/net/ethernet/mellanox/mlxsw/
7275
7276 MEMBARRIER SUPPORT
7277 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7278 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
7279 L:      linux-kernel@vger.kernel.org
7280 S:      Supported
7281 F:      kernel/membarrier.c
7282 F:      include/uapi/linux/membarrier.h
7283
7284 MEMORY MANAGEMENT
7285 L:      linux-mm@kvack.org
7286 W:      http://www.linux-mm.org
7287 S:      Maintained
7288 F:      include/linux/mm.h
7289 F:      include/linux/gfp.h
7290 F:      include/linux/mmzone.h
7291 F:      include/linux/memory_hotplug.h
7292 F:      include/linux/vmalloc.h
7293 F:      mm/
7294
7295 MEMORY TECHNOLOGY DEVICES (MTD)
7296 M:      David Woodhouse <dwmw2@infradead.org>
7297 M:      Brian Norris <computersforpeace@gmail.com>
7298 L:      linux-mtd@lists.infradead.org
7299 W:      http://www.linux-mtd.infradead.org/
7300 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
7301 T:      git git://git.infradead.org/linux-mtd.git
7302 T:      git git://git.infradead.org/l2-mtd.git
7303 S:      Maintained
7304 F:      drivers/mtd/
7305 F:      include/linux/mtd/
7306 F:      include/uapi/mtd/
7307
7308 MEN A21 WATCHDOG DRIVER
7309 M:      Johannes Thumshirn <morbidrsa@gmail.com>
7310 L:      linux-watchdog@vger.kernel.org
7311 S:      Maintained
7312 F:      drivers/watchdog/mena21_wdt.c
7313
7314 MEN CHAMELEON BUS (mcb)
7315 M:      Johannes Thumshirn <morbidrsa@gmail.com>
7316 S:      Maintained
7317 F:      drivers/mcb/
7318 F:      include/linux/mcb.h
7319 F:      Documentation/men-chameleon-bus.txt
7320
7321 MEN F21BMC (Board Management Controller)
7322 M:      Andreas Werner <andreas.werner@men.de>
7323 S:      Supported
7324 F:      drivers/mfd/menf21bmc.c
7325 F:      drivers/watchdog/menf21bmc_wdt.c
7326 F:      drivers/leds/leds-menf21bmc.c
7327 F:      drivers/hwmon/menf21bmc_hwmon.c
7328 F:      Documentation/hwmon/menf21bmc
7329
7330 METAG ARCHITECTURE
7331 M:      James Hogan <james.hogan@imgtec.com>
7332 L:      linux-metag@vger.kernel.org
7333 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jhogan/metag.git
7334 S:      Odd Fixes
7335 F:      arch/metag/
7336 F:      Documentation/metag/
7337 F:      Documentation/devicetree/bindings/metag/
7338 F:      Documentation/devicetree/bindings/interrupt-controller/img,*
7339 F:      drivers/clocksource/metag_generic.c
7340 F:      drivers/irqchip/irq-metag.c
7341 F:      drivers/irqchip/irq-metag-ext.c
7342 F:      drivers/tty/metag_da.c
7343
7344 MICROBLAZE ARCHITECTURE
7345 M:      Michal Simek <monstr@monstr.eu>
7346 W:      http://www.monstr.eu/fdt/
7347 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
7348 S:      Supported
7349 F:      arch/microblaze/
7350
7351 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
7352 M:      Chen Yu <yu.c.chen@intel.com>
7353 L:      platform-driver-x86@vger.kernel.org
7354 S:      Supported
7355 F:      drivers/platform/x86/surfacepro3_button.c
7356
7357 MICROTEK X6 SCANNER
7358 M:      Oliver Neukum <oliver@neukum.org>
7359 S:      Maintained
7360 F:      drivers/usb/image/microtek.*
7361
7362 MIPS
7363 M:      Ralf Baechle <ralf@linux-mips.org>
7364 L:      linux-mips@linux-mips.org
7365 W:      http://www.linux-mips.org/
7366 T:      git git://git.linux-mips.org/pub/scm/ralf/linux.git
7367 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
7368 S:      Supported
7369 F:      Documentation/mips/
7370 F:      arch/mips/
7371
7372 MIPS/LOONGSON1 ARCHITECTURE
7373 M:      Keguang Zhang <keguang.zhang@gmail.com>
7374 L:      linux-mips@linux-mips.org
7375 S:      Maintained
7376 F:      arch/mips/loongson32/
7377 F:      arch/mips/include/asm/mach-loongson32/
7378 F:      drivers/*/*loongson1*
7379 F:      drivers/*/*/*loongson1*
7380
7381 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
7382 M:      Hans Verkuil <hverkuil@xs4all.nl>
7383 L:      linux-media@vger.kernel.org
7384 T:      git git://linuxtv.org/media_tree.git
7385 W:      https://linuxtv.org
7386 S:      Odd Fixes
7387 F:      drivers/media/radio/radio-miropcm20*
7388
7389 MELLANOX MLX4 core VPI driver
7390 M:      Yishai Hadas <yishaih@mellanox.com>
7391 L:      netdev@vger.kernel.org
7392 L:      linux-rdma@vger.kernel.org
7393 W:      http://www.mellanox.com
7394 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7395 S:      Supported
7396 F:      drivers/net/ethernet/mellanox/mlx4/
7397 F:      include/linux/mlx4/
7398
7399 MELLANOX MLX4 IB driver
7400 M:      Yishai Hadas <yishaih@mellanox.com>
7401 L:      linux-rdma@vger.kernel.org
7402 W:      http://www.mellanox.com
7403 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
7404 S:      Supported
7405 F:      drivers/infiniband/hw/mlx4/
7406 F:      include/linux/mlx4/
7407
7408 MELLANOX MLX5 core VPI driver
7409 M:      Matan Barak <matanb@mellanox.com>
7410 M:      Leon Romanovsky <leonro@mellanox.com>
7411 L:      netdev@vger.kernel.org
7412 L:      linux-rdma@vger.kernel.org
7413 W:      http://www.mellanox.com
7414 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7415 S:      Supported
7416 F:      drivers/net/ethernet/mellanox/mlx5/core/
7417 F:      include/linux/mlx5/
7418
7419 MELLANOX MLX5 IB driver
7420 M:      Matan Barak <matanb@mellanox.com>
7421 M:      Leon Romanovsky <leonro@mellanox.com>
7422 L:      linux-rdma@vger.kernel.org
7423 W:      http://www.mellanox.com
7424 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
7425 S:      Supported
7426 F:      drivers/infiniband/hw/mlx5/
7427 F:      include/linux/mlx5/
7428
7429 MELEXIS MLX90614 DRIVER
7430 M:      Crt Mori <cmo@melexis.com>
7431 L:      linux-iio@vger.kernel.org
7432 W:      http://www.melexis.com
7433 S:      Supported
7434 F:      drivers/iio/temperature/mlx90614.c
7435
7436 MN88472 MEDIA DRIVER
7437 M:      Antti Palosaari <crope@iki.fi>
7438 L:      linux-media@vger.kernel.org
7439 W:      https://linuxtv.org
7440 W:      http://palosaari.fi/linux/
7441 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7442 T:      git git://linuxtv.org/anttip/media_tree.git
7443 S:      Maintained
7444 F:      drivers/staging/media/mn88472/
7445 F:      drivers/media/dvb-frontends/mn88472.h
7446
7447 MN88473 MEDIA DRIVER
7448 M:      Antti Palosaari <crope@iki.fi>
7449 L:      linux-media@vger.kernel.org
7450 W:      https://linuxtv.org
7451 W:      http://palosaari.fi/linux/
7452 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7453 S:      Maintained
7454 F:      drivers/media/dvb-frontends/mn88473*
7455
7456 MODULE SUPPORT
7457 M:      Rusty Russell <rusty@rustcorp.com.au>
7458 S:      Maintained
7459 F:      include/linux/module.h
7460 F:      kernel/module.c
7461
7462 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
7463 W:      http://popies.net/meye/
7464 S:      Orphan
7465 F:      Documentation/video4linux/meye.txt
7466 F:      drivers/media/pci/meye/
7467 F:      include/uapi/linux/meye.h
7468
7469 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
7470 M:      Jiri Slaby <jirislaby@gmail.com>
7471 S:      Maintained
7472 F:      Documentation/serial/moxa-smartio
7473 F:      drivers/tty/mxser.*
7474
7475 MR800 AVERMEDIA USB FM RADIO DRIVER
7476 M:      Alexey Klimov <klimov.linux@gmail.com>
7477 L:      linux-media@vger.kernel.org
7478 T:      git git://linuxtv.org/media_tree.git
7479 S:      Maintained
7480 F:      drivers/media/radio/radio-mr800.c
7481
7482 MRF24J40 IEEE 802.15.4 RADIO DRIVER
7483 M:      Alan Ott <alan@signal11.us>
7484 L:      linux-wpan@vger.kernel.org
7485 S:      Maintained
7486 F:      drivers/net/ieee802154/mrf24j40.c
7487 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
7488
7489 MSI LAPTOP SUPPORT
7490 M:      "Lee, Chun-Yi" <jlee@suse.com>
7491 L:      platform-driver-x86@vger.kernel.org
7492 S:      Maintained
7493 F:      drivers/platform/x86/msi-laptop.c
7494
7495 MSI WMI SUPPORT
7496 L:      platform-driver-x86@vger.kernel.org
7497 S:      Orphan
7498 F:      drivers/platform/x86/msi-wmi.c
7499
7500 MSI001 MEDIA DRIVER
7501 M:      Antti Palosaari <crope@iki.fi>
7502 L:      linux-media@vger.kernel.org
7503 W:      https://linuxtv.org
7504 W:      http://palosaari.fi/linux/
7505 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7506 T:      git git://linuxtv.org/anttip/media_tree.git
7507 S:      Maintained
7508 F:      drivers/media/tuners/msi001*
7509
7510 MSI2500 MEDIA DRIVER
7511 M:      Antti Palosaari <crope@iki.fi>
7512 L:      linux-media@vger.kernel.org
7513 W:      https://linuxtv.org
7514 W:      http://palosaari.fi/linux/
7515 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7516 T:      git git://linuxtv.org/anttip/media_tree.git
7517 S:      Maintained
7518 F:      drivers/media/usb/msi2500/
7519
7520 MSYSTEMS DISKONCHIP G3 MTD DRIVER
7521 M:      Robert Jarzmik <robert.jarzmik@free.fr>
7522 L:      linux-mtd@lists.infradead.org
7523 S:      Maintained
7524 F:      drivers/mtd/devices/docg3*
7525
7526 MT9M032 APTINA SENSOR DRIVER
7527 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7528 L:      linux-media@vger.kernel.org
7529 T:      git git://linuxtv.org/media_tree.git
7530 S:      Maintained
7531 F:      drivers/media/i2c/mt9m032.c
7532 F:      include/media/i2c/mt9m032.h
7533
7534 MT9P031 APTINA CAMERA SENSOR
7535 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7536 L:      linux-media@vger.kernel.org
7537 T:      git git://linuxtv.org/media_tree.git
7538 S:      Maintained
7539 F:      drivers/media/i2c/mt9p031.c
7540 F:      include/media/i2c/mt9p031.h
7541
7542 MT9T001 APTINA CAMERA SENSOR
7543 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7544 L:      linux-media@vger.kernel.org
7545 T:      git git://linuxtv.org/media_tree.git
7546 S:      Maintained
7547 F:      drivers/media/i2c/mt9t001.c
7548 F:      include/media/i2c/mt9t001.h
7549
7550 MT9V032 APTINA CAMERA SENSOR
7551 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7552 L:      linux-media@vger.kernel.org
7553 T:      git git://linuxtv.org/media_tree.git
7554 S:      Maintained
7555 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
7556 F:      drivers/media/i2c/mt9v032.c
7557 F:      include/media/i2c/mt9v032.h
7558
7559 MULTIFUNCTION DEVICES (MFD)
7560 M:      Lee Jones <lee.jones@linaro.org>
7561 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
7562 S:      Supported
7563 F:      drivers/mfd/
7564 F:      include/linux/mfd/
7565
7566 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
7567 M:      Ulf Hansson <ulf.hansson@linaro.org>
7568 L:      linux-mmc@vger.kernel.org
7569 T:      git git://git.linaro.org/people/ulf.hansson/mmc.git
7570 S:      Maintained
7571 F:      drivers/mmc/
7572 F:      include/linux/mmc/
7573 F:      include/uapi/linux/mmc/
7574
7575 MULTIMEDIA CARD (MMC) ETC. OVER SPI
7576 S:      Orphan
7577 F:      drivers/mmc/host/mmc_spi.c
7578 F:      include/linux/spi/mmc_spi.h
7579
7580 MULTISOUND SOUND DRIVER
7581 M:      Andrew Veliath <andrewtv@usa.net>
7582 S:      Maintained
7583 F:      Documentation/sound/oss/MultiSound
7584 F:      sound/oss/msnd*
7585
7586 MULTITECH MULTIPORT CARD (ISICOM)
7587 S:      Orphan
7588 F:      drivers/tty/isicom.c
7589 F:      include/linux/isicom.h
7590
7591 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
7592 M:      Bin Liu <b-liu@ti.com>
7593 L:      linux-usb@vger.kernel.org
7594 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7595 S:      Maintained
7596 F:      drivers/usb/musb/
7597
7598 MXL5007T MEDIA DRIVER
7599 M:      Michael Krufky <mkrufky@linuxtv.org>
7600 L:      linux-media@vger.kernel.org
7601 W:      https://linuxtv.org
7602 W:      http://github.com/mkrufky
7603 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7604 T:      git git://linuxtv.org/mkrufky/tuners.git
7605 S:      Maintained
7606 F:      drivers/media/tuners/mxl5007t.*
7607
7608 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
7609 M:      Hyong-Youb Kim <hykim@myri.com>
7610 L:      netdev@vger.kernel.org
7611 W:      https://www.myricom.com/support/downloads/myri10ge.html
7612 S:      Supported
7613 F:      drivers/net/ethernet/myricom/myri10ge/
7614
7615 NAND FLASH SUBSYSTEM
7616 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
7617 R:      Richard Weinberger <richard@nod.at>
7618 L:      linux-mtd@lists.infradead.org
7619 W:      http://www.linux-mtd.infradead.org/
7620 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
7621 T:      git git://github.com/linux-nand/linux.git
7622 S:      Maintained
7623 F:      drivers/mtd/nand/
7624 F:      include/linux/mtd/nand*.h
7625
7626 NATSEMI ETHERNET DRIVER (DP8381x)
7627 S:      Orphan
7628 F:      drivers/net/ethernet/natsemi/natsemi.c
7629
7630 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
7631 M:      Daniel Mack <zonque@gmail.com>
7632 S:      Maintained
7633 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7634 W:      http://www.native-instruments.com
7635 F:      sound/usb/caiaq/
7636
7637 NCP FILESYSTEM
7638 M:      Petr Vandrovec <petr@vandrovec.name>
7639 S:      Odd Fixes
7640 F:      fs/ncpfs/
7641
7642 NCR 5380 SCSI DRIVERS
7643 M:      Finn Thain <fthain@telegraphics.com.au>
7644 M:      Michael Schmitz <schmitzmic@gmail.com>
7645 L:      linux-scsi@vger.kernel.org
7646 S:      Maintained
7647 F:      Documentation/scsi/g_NCR5380.txt
7648 F:      Documentation/scsi/dtc3x80.txt
7649 F:      drivers/scsi/NCR5380.*
7650 F:      drivers/scsi/arm/cumana_1.c
7651 F:      drivers/scsi/arm/oak.c
7652 F:      drivers/scsi/atari_scsi.*
7653 F:      drivers/scsi/dmx3191d.c
7654 F:      drivers/scsi/dtc.*
7655 F:      drivers/scsi/g_NCR5380.*
7656 F:      drivers/scsi/g_NCR5380_mmio.c
7657 F:      drivers/scsi/mac_scsi.*
7658 F:      drivers/scsi/pas16.*
7659 F:      drivers/scsi/sun3_scsi.*
7660 F:      drivers/scsi/sun3_scsi_vme.c
7661 F:      drivers/scsi/t128.*
7662
7663 NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
7664 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
7665 L:      linux-scsi@vger.kernel.org
7666 S:      Maintained
7667 F:      drivers/scsi/NCR_D700.*
7668
7669 NCT6775 HARDWARE MONITOR DRIVER
7670 M:      Guenter Roeck <linux@roeck-us.net>
7671 L:      linux-hwmon@vger.kernel.org
7672 S:      Maintained
7673 F:      Documentation/hwmon/nct6775
7674 F:      drivers/hwmon/nct6775.c
7675
7676 NETEFFECT IWARP RNIC DRIVER (IW_NES)
7677 M:      Faisal Latif <faisal.latif@intel.com>
7678 L:      linux-rdma@vger.kernel.org
7679 W:      http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
7680 S:      Supported
7681 F:      drivers/infiniband/hw/nes/
7682
7683 NETEM NETWORK EMULATOR
7684 M:      Stephen Hemminger <stephen@networkplumber.org>
7685 L:      netem@lists.linux-foundation.org (moderated for non-subscribers)
7686 S:      Maintained
7687 F:      net/sched/sch_netem.c
7688
7689 NETERION 10GbE DRIVERS (s2io/vxge)
7690 M:      Jon Mason <jdmason@kudzu.us>
7691 L:      netdev@vger.kernel.org
7692 S:      Supported
7693 F:      Documentation/networking/s2io.txt
7694 F:      Documentation/networking/vxge.txt
7695 F:      drivers/net/ethernet/neterion/
7696
7697 NETFILTER ({IP,IP6,ARP,EB,NF}TABLES)
7698 M:      Pablo Neira Ayuso <pablo@netfilter.org>
7699 M:      Patrick McHardy <kaber@trash.net>
7700 M:      Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
7701 L:      netfilter-devel@vger.kernel.org
7702 L:      coreteam@netfilter.org
7703 W:      http://www.netfilter.org/
7704 W:      http://www.iptables.org/
7705 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
7706 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
7707 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
7708 S:      Supported
7709 F:      include/linux/netfilter*
7710 F:      include/linux/netfilter/
7711 F:      include/net/netfilter/
7712 F:      include/uapi/linux/netfilter*
7713 F:      include/uapi/linux/netfilter/
7714 F:      net/*/netfilter.c
7715 F:      net/*/netfilter/
7716 F:      net/netfilter/
7717 F:      net/bridge/br_netfilter*.c
7718
7719 NETLABEL
7720 M:      Paul Moore <paul@paul-moore.com>
7721 W:      http://netlabel.sf.net
7722 L:      netdev@vger.kernel.org
7723 S:      Maintained
7724 F:      Documentation/netlabel/
7725 F:      include/net/netlabel.h
7726 F:      net/netlabel/
7727
7728 NETROM NETWORK LAYER
7729 M:      Ralf Baechle <ralf@linux-mips.org>
7730 L:      linux-hams@vger.kernel.org
7731 W:      http://www.linux-ax25.org/
7732 S:      Maintained
7733 F:      include/net/netrom.h
7734 F:      include/uapi/linux/netrom.h
7735 F:      net/netrom/
7736
7737 NETRONOME ETHERNET DRIVERS
7738 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
7739 L:      oss-drivers@netronome.com
7740 S:      Maintained
7741 F:      drivers/net/ethernet/netronome/
7742
7743 NETWORK BLOCK DEVICE (NBD)
7744 M:      Markus Pargmann <mpa@pengutronix.de>
7745 S:      Maintained
7746 L:      nbd-general@lists.sourceforge.net
7747 T:      git git://git.pengutronix.de/git/mpa/linux-nbd.git
7748 F:      Documentation/blockdev/nbd.txt
7749 F:      drivers/block/nbd.c
7750 F:      include/uapi/linux/nbd.h
7751
7752 NETWORK DROP MONITOR
7753 M:      Neil Horman <nhorman@tuxdriver.com>
7754 L:      netdev@vger.kernel.org
7755 S:      Maintained
7756 W:      https://fedorahosted.org/dropwatch/
7757 F:      net/core/drop_monitor.c
7758
7759 NETWORKING [GENERAL]
7760 M:      "David S. Miller" <davem@davemloft.net>
7761 L:      netdev@vger.kernel.org
7762 W:      http://www.linuxfoundation.org/en/Net
7763 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7764 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7765 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7766 S:      Maintained
7767 F:      net/
7768 F:      include/net/
7769 F:      include/linux/in.h
7770 F:      include/linux/net.h
7771 F:      include/linux/netdevice.h
7772 F:      include/uapi/linux/in.h
7773 F:      include/uapi/linux/net.h
7774 F:      include/uapi/linux/netdevice.h
7775 F:      include/uapi/linux/net_namespace.h
7776 F:      tools/net/
7777 F:      tools/testing/selftests/net/
7778 F:      lib/random32.c
7779 F:      lib/test_bpf.c
7780
7781 NETWORKING [IPv4/IPv6]
7782 M:      "David S. Miller" <davem@davemloft.net>
7783 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
7784 M:      James Morris <jmorris@namei.org>
7785 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
7786 M:      Patrick McHardy <kaber@trash.net>
7787 L:      netdev@vger.kernel.org
7788 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7789 S:      Maintained
7790 F:      net/ipv4/
7791 F:      net/ipv6/
7792 F:      include/net/ip*
7793 F:      arch/x86/net/*
7794
7795 NETWORKING [IPSEC]
7796 M:      Steffen Klassert <steffen.klassert@secunet.com>
7797 M:      Herbert Xu <herbert@gondor.apana.org.au>
7798 M:      "David S. Miller" <davem@davemloft.net>
7799 L:      netdev@vger.kernel.org
7800 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
7801 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
7802 S:      Maintained
7803 F:      net/core/flow.c
7804 F:      net/xfrm/
7805 F:      net/key/
7806 F:      net/ipv4/xfrm*
7807 F:      net/ipv4/esp4.c
7808 F:      net/ipv4/ah4.c
7809 F:      net/ipv4/ipcomp.c
7810 F:      net/ipv4/ip_vti.c
7811 F:      net/ipv6/xfrm*
7812 F:      net/ipv6/esp6.c
7813 F:      net/ipv6/ah6.c
7814 F:      net/ipv6/ipcomp6.c
7815 F:      net/ipv6/ip6_vti.c
7816 F:      include/uapi/linux/xfrm.h
7817 F:      include/net/xfrm.h
7818
7819 NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
7820 M:      Paul Moore <paul@paul-moore.com>
7821 L:      netdev@vger.kernel.org
7822 S:      Maintained
7823
7824 NETWORKING [WIRELESS]
7825 L:      linux-wireless@vger.kernel.org
7826 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7827
7828 NETWORKING DRIVERS
7829 L:      netdev@vger.kernel.org
7830 W:      http://www.linuxfoundation.org/en/Net
7831 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7832 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7833 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7834 S:      Odd Fixes
7835 F:      Documentation/devicetree/bindings/net/
7836 F:      drivers/net/
7837 F:      include/linux/if_*
7838 F:      include/linux/netdevice.h
7839 F:      include/linux/etherdevice.h
7840 F:      include/linux/fcdevice.h
7841 F:      include/linux/fddidevice.h
7842 F:      include/linux/hippidevice.h
7843 F:      include/linux/inetdevice.h
7844 F:      include/uapi/linux/if_*
7845 F:      include/uapi/linux/netdevice.h
7846
7847 NETWORKING DRIVERS (WIRELESS)
7848 M:      Kalle Valo <kvalo@codeaurora.org>
7849 L:      linux-wireless@vger.kernel.org
7850 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7851 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
7852 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
7853 S:      Maintained
7854 F:      drivers/net/wireless/
7855
7856 NETXEN (1/10) GbE SUPPORT
7857 M:      Manish Chopra <manish.chopra@qlogic.com>
7858 M:      Sony Chacko <sony.chacko@qlogic.com>
7859 M:      Rajesh Borundia <rajesh.borundia@qlogic.com>
7860 L:      netdev@vger.kernel.org
7861 W:      http://www.qlogic.com
7862 S:      Supported
7863 F:      drivers/net/ethernet/qlogic/netxen/
7864
7865 NFC SUBSYSTEM
7866 M:      Lauro Ramos Venancio <lauro.venancio@openbossa.org>
7867 M:      Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
7868 M:      Samuel Ortiz <sameo@linux.intel.com>
7869 L:      linux-wireless@vger.kernel.org
7870 L:      linux-nfc@lists.01.org (subscribers-only)
7871 S:      Supported
7872 F:      net/nfc/
7873 F:      include/net/nfc/
7874 F:      include/uapi/linux/nfc.h
7875 F:      drivers/nfc/
7876 F:      include/linux/platform_data/nfcmrvl.h
7877 F:      include/linux/platform_data/nxp-nci.h
7878 F:      include/linux/platform_data/pn544.h
7879 F:      include/linux/platform_data/st21nfca.h
7880 F:      include/linux/platform_data/st-nci.h
7881 F:      Documentation/devicetree/bindings/net/nfc/
7882
7883 NFS, SUNRPC, AND LOCKD CLIENTS
7884 M:      Trond Myklebust <trond.myklebust@primarydata.com>
7885 M:      Anna Schumaker <anna.schumaker@netapp.com>
7886 L:      linux-nfs@vger.kernel.org
7887 W:      http://client.linux-nfs.org
7888 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
7889 S:      Maintained
7890 F:      fs/lockd/
7891 F:      fs/nfs/
7892 F:      fs/nfs_common/
7893 F:      net/sunrpc/
7894 F:      include/linux/lockd/
7895 F:      include/linux/nfs*
7896 F:      include/linux/sunrpc/
7897 F:      include/uapi/linux/nfs*
7898 F:      include/uapi/linux/sunrpc/
7899
7900 NILFS2 FILESYSTEM
7901 M:      Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
7902 L:      linux-nilfs@vger.kernel.org
7903 W:      http://nilfs.sourceforge.net/
7904 T:      git git://github.com/konis/nilfs2.git
7905 S:      Supported
7906 F:      Documentation/filesystems/nilfs2.txt
7907 F:      fs/nilfs2/
7908 F:      include/linux/nilfs2_fs.h
7909 F:      include/trace/events/nilfs2.h
7910
7911 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
7912 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7913 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7914 S:      Maintained
7915 F:      Documentation/scsi/NinjaSCSI.txt
7916 F:      drivers/scsi/pcmcia/nsp_*
7917
7918 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
7919 M:      GOTO Masanori <gotom@debian.or.jp>
7920 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7921 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7922 S:      Maintained
7923 F:      Documentation/scsi/NinjaSCSI.txt
7924 F:      drivers/scsi/nsp32*
7925
7926 NIOS2 ARCHITECTURE
7927 M:      Ley Foon Tan <lftan@altera.com>
7928 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
7929 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
7930 S:      Maintained
7931 F:      arch/nios2/
7932
7933 NOKIA N900 POWER SUPPLY DRIVERS
7934 R:      Pali Rohár <pali.rohar@gmail.com>
7935 F:      include/linux/power/bq2415x_charger.h
7936 F:      include/linux/power/bq27xxx_battery.h
7937 F:      include/linux/power/isp1704_charger.h
7938 F:      drivers/power/bq2415x_charger.c
7939 F:      drivers/power/bq27xxx_battery.c
7940 F:      drivers/power/bq27xxx_battery_i2c.c
7941 F:      drivers/power/isp1704_charger.c
7942 F:      drivers/power/rx51_battery.c
7943
7944 NTB DRIVER CORE
7945 M:      Jon Mason <jdmason@kudzu.us>
7946 M:      Dave Jiang <dave.jiang@intel.com>
7947 M:      Allen Hubbe <Allen.Hubbe@emc.com>
7948 L:      linux-ntb@googlegroups.com
7949 S:      Supported
7950 W:      https://github.com/jonmason/ntb/wiki
7951 T:      git git://github.com/jonmason/ntb.git
7952 F:      drivers/ntb/
7953 F:      drivers/net/ntb_netdev.c
7954 F:      include/linux/ntb.h
7955 F:      include/linux/ntb_transport.h
7956
7957 NTB INTEL DRIVER
7958 M:      Jon Mason <jdmason@kudzu.us>
7959 M:      Dave Jiang <dave.jiang@intel.com>
7960 L:      linux-ntb@googlegroups.com
7961 S:      Supported
7962 W:      https://github.com/jonmason/ntb/wiki
7963 T:      git git://github.com/jonmason/ntb.git
7964 F:      drivers/ntb/hw/intel/
7965
7966 NTB AMD DRIVER
7967 M:      Xiangliang Yu <Xiangliang.Yu@amd.com>
7968 L:      linux-ntb@googlegroups.com
7969 S:      Supported
7970 F:      drivers/ntb/hw/amd/
7971
7972 NTFS FILESYSTEM
7973 M:      Anton Altaparmakov <anton@tuxera.com>
7974 L:      linux-ntfs-dev@lists.sourceforge.net
7975 W:      http://www.tuxera.com/
7976 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
7977 S:      Supported
7978 F:      Documentation/filesystems/ntfs.txt
7979 F:      fs/ntfs/
7980
7981 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
7982 M:      Antonino Daplas <adaplas@gmail.com>
7983 L:      linux-fbdev@vger.kernel.org
7984 S:      Maintained
7985 F:      drivers/video/fbdev/riva/
7986 F:      drivers/video/fbdev/nvidia/
7987
7988 NVM EXPRESS DRIVER
7989 M:      Keith Busch <keith.busch@intel.com>
7990 M:      Jens Axboe <axboe@fb.com>
7991 L:      linux-nvme@lists.infradead.org
7992 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
7993 W:      https://kernel.googlesource.com/pub/scm/linux/kernel/git/axboe/linux-block/
7994 S:      Supported
7995 F:      drivers/nvme/host/
7996 F:      include/linux/nvme.h
7997
7998 NVMEM FRAMEWORK
7999 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
8000 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
8001 S:      Maintained
8002 F:      drivers/nvmem/
8003 F:      Documentation/devicetree/bindings/nvmem/
8004 F:      include/linux/nvmem-consumer.h
8005 F:      include/linux/nvmem-provider.h
8006
8007 NXP-NCI NFC DRIVER
8008 M:      Clément Perrochaud <clement.perrochaud@effinnov.com>
8009 R:      Charles Gorand <charles.gorand@effinnov.com>
8010 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
8011 S:      Supported
8012 F:      drivers/nfc/nxp-nci
8013
8014 NXP TDA998X DRM DRIVER
8015 M:      Russell King <rmk+kernel@armlinux.org.uk>
8016 S:      Supported
8017 F:      drivers/gpu/drm/i2c/tda998x_drv.c
8018 F:      include/drm/i2c/tda998x.h
8019
8020 NXP TFA9879 DRIVER
8021 M:      Peter Rosin <peda@axentia.se>
8022 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8023 S:      Maintained
8024 F:      sound/soc/codecs/tfa9879*
8025
8026 OBJTOOL
8027 M:      Josh Poimboeuf <jpoimboe@redhat.com>
8028 S:      Supported
8029 F:      tools/objtool/
8030
8031 OMAP SUPPORT
8032 M:      Tony Lindgren <tony@atomide.com>
8033 L:      linux-omap@vger.kernel.org
8034 W:      http://www.muru.com/linux/omap/
8035 W:      http://linux.omap.com/
8036 Q:      http://patchwork.kernel.org/project/linux-omap/list/
8037 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
8038 S:      Maintained
8039 F:      arch/arm/*omap*/
8040 F:      arch/arm/configs/omap1_defconfig
8041 F:      arch/arm/configs/omap2plus_defconfig
8042 F:      drivers/i2c/busses/i2c-omap.c
8043 F:      drivers/irqchip/irq-omap-intc.c
8044 F:      drivers/mfd/*omap*.c
8045 F:      drivers/mfd/menelaus.c
8046 F:      drivers/mfd/palmas.c
8047 F:      drivers/mfd/tps65217.c
8048 F:      drivers/mfd/tps65218.c
8049 F:      drivers/mfd/tps65910.c
8050 F:      drivers/mfd/twl-core.[ch]
8051 F:      drivers/mfd/twl4030*.c
8052 F:      drivers/mfd/twl6030*.c
8053 F:      drivers/mfd/twl6040*.c
8054 F:      drivers/regulator/palmas-regulator*.c
8055 F:      drivers/regulator/pbias-regulator.c
8056 F:      drivers/regulator/tps65217-regulator.c
8057 F:      drivers/regulator/tps65218-regulator.c
8058 F:      drivers/regulator/tps65910-regulator.c
8059 F:      drivers/regulator/twl-regulator.c
8060 F:      include/linux/i2c-omap.h
8061
8062 OMAP DEVICE TREE SUPPORT
8063 M:      Benoît Cousson <bcousson@baylibre.com>
8064 M:      Tony Lindgren <tony@atomide.com>
8065 L:      linux-omap@vger.kernel.org
8066 L:      devicetree@vger.kernel.org
8067 S:      Maintained
8068 F:      arch/arm/boot/dts/*omap*
8069 F:      arch/arm/boot/dts/*am3*
8070 F:      arch/arm/boot/dts/*am4*
8071 F:      arch/arm/boot/dts/*am5*
8072 F:      arch/arm/boot/dts/*dra7*
8073
8074 OMAP CLOCK FRAMEWORK SUPPORT
8075 M:      Paul Walmsley <paul@pwsan.com>
8076 L:      linux-omap@vger.kernel.org
8077 S:      Maintained
8078 F:      arch/arm/*omap*/*clock*
8079
8080 OMAP POWER MANAGEMENT SUPPORT
8081 M:      Kevin Hilman <khilman@kernel.org>
8082 L:      linux-omap@vger.kernel.org
8083 S:      Maintained
8084 F:      arch/arm/*omap*/*pm*
8085 F:      drivers/cpufreq/omap-cpufreq.c
8086
8087 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
8088 M:      Rajendra Nayak <rnayak@codeaurora.org>
8089 M:      Paul Walmsley <paul@pwsan.com>
8090 L:      linux-omap@vger.kernel.org
8091 S:      Maintained
8092 F:      arch/arm/mach-omap2/prm*
8093
8094 OMAP AUDIO SUPPORT
8095 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
8096 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
8097 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8098 L:      linux-omap@vger.kernel.org
8099 S:      Maintained
8100 F:      sound/soc/omap/
8101
8102 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
8103 M:      Roger Quadros <rogerq@ti.com>
8104 M:      Tony Lindgren <tony@atomide.com>
8105 L:      linux-omap@vger.kernel.org
8106 S:      Maintained
8107 F:      drivers/memory/omap-gpmc.c
8108 F:      arch/arm/mach-omap2/*gpmc*
8109
8110 OMAP FRAMEBUFFER SUPPORT
8111 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
8112 L:      linux-fbdev@vger.kernel.org
8113 L:      linux-omap@vger.kernel.org
8114 S:      Maintained
8115 F:      drivers/video/fbdev/omap/
8116
8117 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
8118 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
8119 L:      linux-omap@vger.kernel.org
8120 L:      linux-fbdev@vger.kernel.org
8121 S:      Maintained
8122 F:      drivers/video/fbdev/omap2/
8123 F:      Documentation/arm/OMAP/DSS
8124
8125 OMAP HARDWARE SPINLOCK SUPPORT
8126 M:      Ohad Ben-Cohen <ohad@wizery.com>
8127 L:      linux-omap@vger.kernel.org
8128 S:      Maintained
8129 F:      drivers/hwspinlock/omap_hwspinlock.c
8130
8131 OMAP MMC SUPPORT
8132 M:      Jarkko Lavinen <jarkko.lavinen@nokia.com>
8133 L:      linux-omap@vger.kernel.org
8134 S:      Maintained
8135 F:      drivers/mmc/host/omap.c
8136
8137 OMAP HS MMC SUPPORT
8138 L:      linux-mmc@vger.kernel.org
8139 L:      linux-omap@vger.kernel.org
8140 S:      Orphan
8141 F:      drivers/mmc/host/omap_hsmmc.c
8142
8143 OMAP RANDOM NUMBER GENERATOR SUPPORT
8144 M:      Deepak Saxena <dsaxena@plexity.net>
8145 S:      Maintained
8146 F:      drivers/char/hw_random/omap-rng.c
8147
8148 OMAP HWMOD SUPPORT
8149 M:      Benoît Cousson <bcousson@baylibre.com>
8150 M:      Paul Walmsley <paul@pwsan.com>
8151 L:      linux-omap@vger.kernel.org
8152 S:      Maintained
8153 F:      arch/arm/mach-omap2/omap_hwmod.*
8154
8155 OMAP HWMOD DATA
8156 M:      Paul Walmsley <paul@pwsan.com>
8157 L:      linux-omap@vger.kernel.org
8158 S:      Maintained
8159 F:      arch/arm/mach-omap2/omap_hwmod*data*
8160
8161 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
8162 M:      Benoît Cousson <bcousson@baylibre.com>
8163 L:      linux-omap@vger.kernel.org
8164 S:      Maintained
8165 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
8166
8167 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
8168 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8169 L:      linux-media@vger.kernel.org
8170 S:      Maintained
8171 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
8172 F:      drivers/media/platform/omap3isp/
8173 F:      drivers/staging/media/omap4iss/
8174
8175 OMAP USB SUPPORT
8176 L:      linux-usb@vger.kernel.org
8177 L:      linux-omap@vger.kernel.org
8178 S:      Orphan
8179 F:      drivers/usb/*/*omap*
8180 F:      arch/arm/*omap*/usb*
8181
8182 OMAP GPIO DRIVER
8183 M:      Grygorii Strashko <grygorii.strashko@ti.com>
8184 M:      Santosh Shilimkar <ssantosh@kernel.org>
8185 M:      Kevin Hilman <khilman@kernel.org>
8186 L:      linux-omap@vger.kernel.org
8187 S:      Maintained
8188 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
8189 F:      drivers/gpio/gpio-omap.c
8190
8191 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
8192 M:      Mark Jackson <mpfj@newflow.co.uk>
8193 L:      linux-omap@vger.kernel.org
8194 S:      Maintained
8195 F:      arch/arm/boot/dts/am335x-nano.dts
8196
8197 OMFS FILESYSTEM
8198 M:      Bob Copeland <me@bobcopeland.com>
8199 L:      linux-karma-devel@lists.sourceforge.net
8200 S:      Maintained
8201 F:      Documentation/filesystems/omfs.txt
8202 F:      fs/omfs/
8203
8204 OMNIKEY CARDMAN 4000 DRIVER
8205 M:      Harald Welte <laforge@gnumonks.org>
8206 S:      Maintained
8207 F:      drivers/char/pcmcia/cm4000_cs.c
8208 F:      include/linux/cm4000_cs.h
8209 F:      include/uapi/linux/cm4000_cs.h
8210
8211 OMNIKEY CARDMAN 4040 DRIVER
8212 M:      Harald Welte <laforge@gnumonks.org>
8213 S:      Maintained
8214 F:      drivers/char/pcmcia/cm4040_cs.*
8215
8216 OMNIVISION OV7670 SENSOR DRIVER
8217 M:      Jonathan Corbet <corbet@lwn.net>
8218 L:      linux-media@vger.kernel.org
8219 T:      git git://linuxtv.org/media_tree.git
8220 S:      Maintained
8221 F:      drivers/media/i2c/ov7670.c
8222
8223 ONENAND FLASH DRIVER
8224 M:      Kyungmin Park <kyungmin.park@samsung.com>
8225 L:      linux-mtd@lists.infradead.org
8226 S:      Maintained
8227 F:      drivers/mtd/onenand/
8228 F:      include/linux/mtd/onenand*.h
8229
8230 ONSTREAM SCSI TAPE DRIVER
8231 M:      Willem Riede <osst@riede.org>
8232 L:      osst-users@lists.sourceforge.net
8233 L:      linux-scsi@vger.kernel.org
8234 S:      Maintained
8235 F:      Documentation/scsi/osst.txt
8236 F:      drivers/scsi/osst.*
8237 F:      drivers/scsi/osst_*.h
8238 F:      drivers/scsi/st.h
8239
8240 OPENCORES I2C BUS DRIVER
8241 M:      Peter Korsgaard <jacmet@sunsite.dk>
8242 L:      linux-i2c@vger.kernel.org
8243 S:      Maintained
8244 F:      Documentation/i2c/busses/i2c-ocores
8245 F:      drivers/i2c/busses/i2c-ocores.c
8246
8247 OPEN FIRMWARE AND FLATTENED DEVICE TREE
8248 M:      Rob Herring <robh+dt@kernel.org>
8249 M:      Frank Rowand <frowand.list@gmail.com>
8250 M:      Grant Likely <grant.likely@linaro.org>
8251 L:      devicetree@vger.kernel.org
8252 W:      http://www.devicetree.org/
8253 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/glikely/linux.git
8254 S:      Maintained
8255 F:      drivers/of/
8256 F:      include/linux/of*.h
8257 F:      scripts/dtc/
8258
8259 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
8260 M:      Rob Herring <robh+dt@kernel.org>
8261 M:      Pawel Moll <pawel.moll@arm.com>
8262 M:      Mark Rutland <mark.rutland@arm.com>
8263 M:      Ian Campbell <ijc+devicetree@hellion.org.uk>
8264 M:      Kumar Gala <galak@codeaurora.org>
8265 L:      devicetree@vger.kernel.org
8266 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
8267 S:      Maintained
8268 F:      Documentation/devicetree/
8269 F:      arch/*/boot/dts/
8270 F:      include/dt-bindings/
8271
8272 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
8273 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
8274 L:      devicetree@vger.kernel.org
8275 S:      Maintained
8276 F:      Documentation/devicetree/dynamic-resolution-notes.txt
8277 F:      Documentation/devicetree/overlay-notes.txt
8278 F:      drivers/of/overlay.c
8279 F:      drivers/of/resolver.c
8280
8281 OPENRISC ARCHITECTURE
8282 M:      Jonas Bonn <jonas@southpole.se>
8283 W:      http://openrisc.net
8284 S:      Maintained
8285 T:      git git://openrisc.net/~jonas/linux
8286 F:      arch/openrisc/
8287
8288 OPENVSWITCH
8289 M:      Pravin Shelar <pshelar@nicira.com>
8290 L:      netdev@vger.kernel.org
8291 L:      dev@openvswitch.org
8292 W:      http://openvswitch.org
8293 S:      Maintained
8294 F:      net/openvswitch/
8295 F:      include/uapi/linux/openvswitch.h
8296
8297 OPERATING PERFORMANCE POINTS (OPP)
8298 M:      Viresh Kumar <vireshk@kernel.org>
8299 M:      Nishanth Menon <nm@ti.com>
8300 M:      Stephen Boyd <sboyd@codeaurora.org>
8301 L:      linux-pm@vger.kernel.org
8302 S:      Maintained
8303 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
8304 F:      drivers/base/power/opp/
8305 F:      include/linux/pm_opp.h
8306 F:      Documentation/power/opp.txt
8307 F:      Documentation/devicetree/bindings/opp/
8308
8309 OPL4 DRIVER
8310 M:      Clemens Ladisch <clemens@ladisch.de>
8311 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8312 T:      git git://git.alsa-project.org/alsa-kernel.git
8313 S:      Maintained
8314 F:      sound/drivers/opl4/
8315
8316 OPROFILE
8317 M:      Robert Richter <rric@kernel.org>
8318 L:      oprofile-list@lists.sf.net
8319 S:      Maintained
8320 F:      arch/*/include/asm/oprofile*.h
8321 F:      arch/*/oprofile/
8322 F:      drivers/oprofile/
8323 F:      include/linux/oprofile.h
8324
8325 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
8326 M:      Mark Fasheh <mfasheh@suse.com>
8327 M:      Joel Becker <jlbec@evilplan.org>
8328 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
8329 W:      http://ocfs2.wiki.kernel.org
8330 S:      Supported
8331 F:      Documentation/filesystems/ocfs2.txt
8332 F:      Documentation/filesystems/dlmfs.txt
8333 F:      fs/ocfs2/
8334
8335 ORINOCO DRIVER
8336 L:      linux-wireless@vger.kernel.org
8337 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
8338 W:      http://www.nongnu.org/orinoco/
8339 S:      Orphan
8340 F:      drivers/net/wireless/intersil/orinoco/
8341
8342 OSD LIBRARY and FILESYSTEM
8343 M:      Boaz Harrosh <ooo@electrozaur.com>
8344 M:      Benny Halevy <bhalevy@primarydata.com>
8345 L:      osd-dev@open-osd.org
8346 W:      http://open-osd.org
8347 T:      git git://git.open-osd.org/open-osd.git
8348 S:      Maintained
8349 F:      drivers/scsi/osd/
8350 F:      include/scsi/osd_*
8351 F:      fs/exofs/
8352
8353 OVERLAY FILESYSTEM
8354 M:      Miklos Szeredi <miklos@szeredi.hu>
8355 L:      linux-unionfs@vger.kernel.org
8356 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
8357 S:      Supported
8358 F:      fs/overlayfs/
8359 F:      Documentation/filesystems/overlayfs.txt
8360
8361 ORANGEFS FILESYSTEM
8362 M:      Mike Marshall <hubcap@omnibond.com>
8363 L:      pvfs2-developers@beowulf-underground.org (subscribers-only)
8364 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
8365 S:      Supported
8366 F:      fs/orangefs/
8367 F:      Documentation/filesystems/orangefs.txt
8368
8369 P54 WIRELESS DRIVER
8370 M:      Christian Lamparter <chunkeey@googlemail.com>
8371 L:      linux-wireless@vger.kernel.org
8372 W:      http://wireless.kernel.org/en/users/Drivers/p54
8373 S:      Maintained
8374 F:      drivers/net/wireless/intersil/p54/
8375
8376 PA SEMI ETHERNET DRIVER
8377 M:      Olof Johansson <olof@lixom.net>
8378 L:      netdev@vger.kernel.org
8379 S:      Maintained
8380 F:      drivers/net/ethernet/pasemi/*
8381
8382 PA SEMI SMBUS DRIVER
8383 M:      Olof Johansson <olof@lixom.net>
8384 L:      linux-i2c@vger.kernel.org
8385 S:      Maintained
8386 F:      drivers/i2c/busses/i2c-pasemi.c
8387
8388 PADATA PARALLEL EXECUTION MECHANISM
8389 M:      Steffen Klassert <steffen.klassert@secunet.com>
8390 L:      linux-crypto@vger.kernel.org
8391 S:      Maintained
8392 F:      kernel/padata.c
8393 F:      include/linux/padata.h
8394 F:      Documentation/padata.txt
8395
8396 PANASONIC LAPTOP ACPI EXTRAS DRIVER
8397 M:      Harald Welte <laforge@gnumonks.org>
8398 L:      platform-driver-x86@vger.kernel.org
8399 S:      Maintained
8400 F:      drivers/platform/x86/panasonic-laptop.c
8401
8402 PANASONIC MN10300/AM33/AM34 PORT
8403 M:      David Howells <dhowells@redhat.com>
8404 L:      linux-am33-list@redhat.com (moderated for non-subscribers)
8405 W:      ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
8406 S:      Maintained
8407 F:      Documentation/mn10300/
8408 F:      arch/mn10300/
8409
8410 PARALLEL LCD/KEYPAD PANEL DRIVER
8411 M:      Willy Tarreau <willy@haproxy.com>
8412 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
8413 S:      Odd Fixes
8414 F:      Documentation/misc-devices/lcd-panel-cgram.txt
8415 F:      drivers/misc/panel.c
8416
8417 PARALLEL PORT SUBSYSTEM
8418 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
8419 M:      Sudip Mukherjee <sudip@vectorindia.org>
8420 L:      linux-parport@lists.infradead.org (subscribers-only)
8421 S:      Maintained
8422 F:      drivers/parport/
8423 F:      include/linux/parport*.h
8424 F:      drivers/char/ppdev.c
8425 F:      include/uapi/linux/ppdev.h
8426 F:      Documentation/parport*.txt
8427
8428 PARAVIRT_OPS INTERFACE
8429 M:      Jeremy Fitzhardinge <jeremy@goop.org>
8430 M:      Chris Wright <chrisw@sous-sol.org>
8431 M:      Alok Kataria <akataria@vmware.com>
8432 M:      Rusty Russell <rusty@rustcorp.com.au>
8433 L:      virtualization@lists.linux-foundation.org
8434 S:      Supported
8435 F:      Documentation/virtual/paravirt_ops.txt
8436 F:      arch/*/kernel/paravirt*
8437 F:      arch/*/include/asm/paravirt.h
8438
8439 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
8440 M:      Tim Waugh <tim@cyberelk.net>
8441 L:      linux-parport@lists.infradead.org (subscribers-only)
8442 S:      Maintained
8443 F:      Documentation/blockdev/paride.txt
8444 F:      drivers/block/paride/
8445
8446 PARISC ARCHITECTURE
8447 M:      "James E.J. Bottomley" <jejb@parisc-linux.org>
8448 M:      Helge Deller <deller@gmx.de>
8449 L:      linux-parisc@vger.kernel.org
8450 W:      http://www.parisc-linux.org/
8451 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
8452 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
8453 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
8454 S:      Maintained
8455 F:      arch/parisc/
8456 F:      Documentation/parisc/
8457 F:      drivers/parisc/
8458 F:      drivers/char/agp/parisc-agp.c
8459 F:      drivers/input/serio/gscps2.c
8460 F:      drivers/parport/parport_gsc.*
8461 F:      drivers/tty/serial/8250/8250_gsc.c
8462 F:      drivers/video/fbdev/sti*
8463 F:      drivers/video/console/sti*
8464 F:      drivers/video/logo/logo_parisc*
8465
8466 PC87360 HARDWARE MONITORING DRIVER
8467 M:      Jim Cromie <jim.cromie@gmail.com>
8468 L:      linux-hwmon@vger.kernel.org
8469 S:      Maintained
8470 F:      Documentation/hwmon/pc87360
8471 F:      drivers/hwmon/pc87360.c
8472
8473 PC8736x GPIO DRIVER
8474 M:      Jim Cromie <jim.cromie@gmail.com>
8475 S:      Maintained
8476 F:      drivers/char/pc8736x_gpio.c
8477
8478 PC87427 HARDWARE MONITORING DRIVER
8479 M:      Jean Delvare <jdelvare@suse.com>
8480 L:      linux-hwmon@vger.kernel.org
8481 S:      Maintained
8482 F:      Documentation/hwmon/pc87427
8483 F:      drivers/hwmon/pc87427.c
8484
8485 PCA9532 LED DRIVER
8486 M:      Riku Voipio <riku.voipio@iki.fi>
8487 S:      Maintained
8488 F:      drivers/leds/leds-pca9532.c
8489 F:      include/linux/leds-pca9532.h
8490
8491 PCA9541 I2C BUS MASTER SELECTOR DRIVER
8492 M:      Guenter Roeck <linux@roeck-us.net>
8493 L:      linux-i2c@vger.kernel.org
8494 S:      Maintained
8495 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
8496
8497 PCDP - PRIMARY CONSOLE AND DEBUG PORT
8498 M:      Khalid Aziz <khalid@gonehiking.org>
8499 S:      Maintained
8500 F:      drivers/firmware/pcdp.*
8501
8502 PCI ERROR RECOVERY
8503 M:      Linas Vepstas <linasvepstas@gmail.com>
8504 L:      linux-pci@vger.kernel.org
8505 S:      Supported
8506 F:      Documentation/PCI/pci-error-recovery.txt
8507
8508 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
8509 M:      Russell Currey <ruscur@russell.cc>
8510 L:      linuxppc-dev@lists.ozlabs.org
8511 S:      Supported
8512 F:      Documentation/powerpc/eeh-pci-error-recovery.txt
8513 F:      arch/powerpc/kernel/eeh*.c
8514 F:      arch/powerpc/platforms/*/eeh*.c
8515 F:      arch/powerpc/include/*/eeh*.h
8516
8517 PCI SUBSYSTEM
8518 M:      Bjorn Helgaas <bhelgaas@google.com>
8519 L:      linux-pci@vger.kernel.org
8520 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
8521 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
8522 S:      Supported
8523 F:      Documentation/PCI/
8524 F:      drivers/pci/
8525 F:      include/linux/pci*
8526 F:      arch/x86/pci/
8527 F:      arch/x86/kernel/quirks.c
8528
8529 PCI DRIVER FOR ALTERA PCIE IP
8530 M:      Ley Foon Tan <lftan@altera.com>
8531 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
8532 L:      linux-pci@vger.kernel.org
8533 S:      Supported
8534 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
8535 F:      drivers/pci/host/pcie-altera.c
8536
8537 PCI DRIVER FOR ARM VERSATILE PLATFORM
8538 M:      Rob Herring <robh@kernel.org>
8539 L:      linux-pci@vger.kernel.org
8540 L:      linux-arm-kernel@lists.infradead.org
8541 S:      Maintained
8542 F:      Documentation/devicetree/bindings/pci/versatile.txt
8543 F:      drivers/pci/host/pci-versatile.c
8544
8545 PCI DRIVER FOR APPLIEDMICRO XGENE
8546 M:      Tanmay Inamdar <tinamdar@apm.com>
8547 L:      linux-pci@vger.kernel.org
8548 L:      linux-arm-kernel@lists.infradead.org
8549 S:      Maintained
8550 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
8551 F:      drivers/pci/host/pci-xgene.c
8552
8553 PCI DRIVER FOR FREESCALE LAYERSCAPE
8554 M:      Minghuan Lian <minghuan.Lian@freescale.com>
8555 M:      Mingkai Hu <mingkai.hu@freescale.com>
8556 M:      Roy Zang <tie-fei.zang@freescale.com>
8557 L:      linuxppc-dev@lists.ozlabs.org
8558 L:      linux-pci@vger.kernel.org
8559 L:      linux-arm-kernel@lists.infradead.org
8560 S:      Maintained
8561 F:      drivers/pci/host/*layerscape*
8562
8563 PCI DRIVER FOR IMX6
8564 M:      Richard Zhu <Richard.Zhu@freescale.com>
8565 M:      Lucas Stach <l.stach@pengutronix.de>
8566 L:      linux-pci@vger.kernel.org
8567 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8568 S:      Maintained
8569 F:      drivers/pci/host/*imx6*
8570
8571 PCI DRIVER FOR TI KEYSTONE
8572 M:      Murali Karicheri <m-karicheri2@ti.com>
8573 L:      linux-pci@vger.kernel.org
8574 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8575 S:      Maintained
8576 F:      drivers/pci/host/*keystone*
8577
8578 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
8579 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8580 M:      Jason Cooper <jason@lakedaemon.net>
8581 L:      linux-pci@vger.kernel.org
8582 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8583 S:      Maintained
8584 F:      drivers/pci/host/*mvebu*
8585
8586 PCI DRIVER FOR NVIDIA TEGRA
8587 M:      Thierry Reding <thierry.reding@gmail.com>
8588 L:      linux-tegra@vger.kernel.org
8589 L:      linux-pci@vger.kernel.org
8590 S:      Supported
8591 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
8592 F:      drivers/pci/host/pci-tegra.c
8593
8594 PCI DRIVER FOR TI DRA7XX
8595 M:      Kishon Vijay Abraham I <kishon@ti.com>
8596 L:      linux-omap@vger.kernel.org
8597 L:      linux-pci@vger.kernel.org
8598 S:      Supported
8599 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
8600 F:      drivers/pci/host/pci-dra7xx.c
8601
8602 PCI DRIVER FOR RENESAS R-CAR
8603 M:      Simon Horman <horms@verge.net.au>
8604 L:      linux-pci@vger.kernel.org
8605 L:      linux-renesas-soc@vger.kernel.org
8606 S:      Maintained
8607 F:      drivers/pci/host/*rcar*
8608
8609 PCI DRIVER FOR SAMSUNG EXYNOS
8610 M:      Jingoo Han <jingoohan1@gmail.com>
8611 L:      linux-pci@vger.kernel.org
8612 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8613 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8614 S:      Maintained
8615 F:      drivers/pci/host/pci-exynos.c
8616
8617 PCI DRIVER FOR SYNOPSIS DESIGNWARE
8618 M:      Jingoo Han <jingoohan1@gmail.com>
8619 M:      Pratyush Anand <pratyush.anand@gmail.com>
8620 L:      linux-pci@vger.kernel.org
8621 S:      Maintained
8622 F:      drivers/pci/host/*designware*
8623
8624 PCI DRIVER FOR SYNOPSYS PROTOTYPING DEVICE
8625 M:      Joao Pinto <jpinto@synopsys.com>
8626 L:      linux-pci@vger.kernel.org
8627 S:      Maintained
8628 F:      Documentation/devicetree/bindings/pci/designware-pcie.txt
8629 F:      drivers/pci/host/pcie-designware-plat.c
8630
8631 PCI DRIVER FOR GENERIC OF HOSTS
8632 M:      Will Deacon <will.deacon@arm.com>
8633 L:      linux-pci@vger.kernel.org
8634 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8635 S:      Maintained
8636 F:      Documentation/devicetree/bindings/pci/host-generic-pci.txt
8637 F:      drivers/pci/host/pci-host-common.c
8638 F:      drivers/pci/host/pci-host-generic.c
8639
8640 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
8641 M:      Keith Busch <keith.busch@intel.com>
8642 L:      linux-pci@vger.kernel.org
8643 S:      Supported
8644 F:      arch/x86/pci/vmd.c
8645
8646 PCIE DRIVER FOR ST SPEAR13XX
8647 M:      Pratyush Anand <pratyush.anand@gmail.com>
8648 L:      linux-pci@vger.kernel.org
8649 S:      Maintained
8650 F:      drivers/pci/host/*spear*
8651
8652 PCI MSI DRIVER FOR ALTERA MSI IP
8653 M:      Ley Foon Tan <lftan@altera.com>
8654 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
8655 L:      linux-pci@vger.kernel.org
8656 S:      Supported
8657 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
8658 F:      drivers/pci/host/pcie-altera-msi.c
8659
8660 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
8661 M:      Duc Dang <dhdang@apm.com>
8662 L:      linux-pci@vger.kernel.org
8663 L:      linux-arm-kernel@lists.infradead.org
8664 S:      Maintained
8665 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
8666 F:      drivers/pci/host/pci-xgene-msi.c
8667
8668 PCIE DRIVER FOR HISILICON
8669 M:      Zhou Wang <wangzhou1@hisilicon.com>
8670 M:      Gabriele Paoloni <gabriele.paoloni@huawei.com>
8671 L:      linux-pci@vger.kernel.org
8672 S:      Maintained
8673 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
8674 F:      drivers/pci/host/pcie-hisi.c
8675
8676 PCIE DRIVER FOR QUALCOMM MSM
8677 M:     Stanimir Varbanov <svarbanov@mm-sol.com>
8678 L:     linux-pci@vger.kernel.org
8679 L:     linux-arm-msm@vger.kernel.org
8680 S:     Maintained
8681 F:     drivers/pci/host/*qcom*
8682
8683 PCIE DRIVER FOR CAVIUM THUNDERX
8684 M:      David Daney <david.daney@cavium.com>
8685 L:      linux-pci@vger.kernel.org
8686 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8687 S:      Supported
8688 F:      Documentation/devicetree/bindings/pci/pci-thunder-*
8689 F:      drivers/pci/host/pci-thunder-*
8690
8691 PCMCIA SUBSYSTEM
8692 P:      Linux PCMCIA Team
8693 L:      linux-pcmcia@lists.infradead.org
8694 W:      http://lists.infradead.org/mailman/listinfo/linux-pcmcia
8695 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
8696 S:      Maintained
8697 F:      Documentation/pcmcia/
8698 F:      drivers/pcmcia/
8699 F:      include/pcmcia/
8700
8701 PCNET32 NETWORK DRIVER
8702 M:      Don Fry <pcnet32@frontier.com>
8703 L:      netdev@vger.kernel.org
8704 S:      Maintained
8705 F:      drivers/net/ethernet/amd/pcnet32.c
8706
8707 PCRYPT PARALLEL CRYPTO ENGINE
8708 M:      Steffen Klassert <steffen.klassert@secunet.com>
8709 L:      linux-crypto@vger.kernel.org
8710 S:      Maintained
8711 F:      crypto/pcrypt.c
8712 F:      include/crypto/pcrypt.h
8713
8714 PER-CPU MEMORY ALLOCATOR
8715 M:      Tejun Heo <tj@kernel.org>
8716 M:      Christoph Lameter <cl@linux.com>
8717 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
8718 S:      Maintained
8719 F:      include/linux/percpu*.h
8720 F:      mm/percpu*.c
8721 F:      arch/*/include/asm/percpu.h
8722
8723 PER-TASK DELAY ACCOUNTING
8724 M:      Balbir Singh <bsingharora@gmail.com>
8725 S:      Maintained
8726 F:      include/linux/delayacct.h
8727 F:      kernel/delayacct.c
8728
8729 PERFORMANCE EVENTS SUBSYSTEM
8730 M:      Peter Zijlstra <peterz@infradead.org>
8731 M:      Ingo Molnar <mingo@redhat.com>
8732 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
8733 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8734 L:      linux-kernel@vger.kernel.org
8735 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
8736 S:      Supported
8737 F:      kernel/events/*
8738 F:      include/linux/perf_event.h
8739 F:      include/uapi/linux/perf_event.h
8740 F:      arch/*/kernel/perf_event*.c
8741 F:      arch/*/kernel/*/perf_event*.c
8742 F:      arch/*/kernel/*/*/perf_event*.c
8743 F:      arch/*/include/asm/perf_event.h
8744 F:      arch/*/kernel/perf_callchain.c
8745 F:      tools/perf/
8746
8747 PERSONALITY HANDLING
8748 M:      Christoph Hellwig <hch@infradead.org>
8749 L:      linux-abi-devel@lists.sourceforge.net
8750 S:      Maintained
8751 F:      include/linux/personality.h
8752 F:      include/uapi/linux/personality.h
8753
8754 PHONET PROTOCOL
8755 M:      Remi Denis-Courmont <courmisch@gmail.com>
8756 S:      Supported
8757 F:      Documentation/networking/phonet.txt
8758 F:      include/linux/phonet.h
8759 F:      include/net/phonet/
8760 F:      include/uapi/linux/phonet.h
8761 F:      net/phonet/
8762
8763 PHRAM MTD DRIVER
8764 M:      Joern Engel <joern@lazybastard.org>
8765 L:      linux-mtd@lists.infradead.org
8766 S:      Maintained
8767 F:      drivers/mtd/devices/phram.c
8768
8769 PICOLCD HID DRIVER
8770 M:      Bruno Prémont <bonbons@linux-vserver.org>
8771 L:      linux-input@vger.kernel.org
8772 S:      Maintained
8773 F:      drivers/hid/hid-picolcd*
8774
8775 PICOXCELL SUPPORT
8776 M:      Jamie Iles <jamie@jamieiles.com>
8777 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8778 T:      git git://github.com/jamieiles/linux-2.6-ji.git
8779 S:      Supported
8780 F:      arch/arm/boot/dts/picoxcell*
8781 F:      arch/arm/mach-picoxcell/
8782 F:      drivers/crypto/picoxcell*
8783
8784 PIN CONTROL SUBSYSTEM
8785 M:      Linus Walleij <linus.walleij@linaro.org>
8786 L:      linux-gpio@vger.kernel.org
8787 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
8788 S:      Maintained
8789 F:      drivers/pinctrl/
8790 F:      include/linux/pinctrl/
8791
8792 PIN CONTROLLER - ATMEL AT91
8793 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
8794 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8795 S:      Maintained
8796 F:      drivers/pinctrl/pinctrl-at91.*
8797
8798 PIN CONTROLLER - ATMEL AT91 PIO4
8799 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
8800 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8801 L:      linux-gpio@vger.kernel.org
8802 S:      Supported
8803 F:      drivers/pinctrl/pinctrl-at91-pio4.*
8804
8805 PIN CONTROLLER - INTEL
8806 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8807 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
8808 S:      Maintained
8809 F:      drivers/pinctrl/intel/
8810
8811 PIN CONTROLLER - RENESAS
8812 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8813 M:      Geert Uytterhoeven <geert+renesas@glider.be>
8814 L:      linux-renesas-soc@vger.kernel.org
8815 S:      Maintained
8816 F:      drivers/pinctrl/sh-pfc/
8817
8818 PIN CONTROLLER - SAMSUNG
8819 M:      Tomasz Figa <tomasz.figa@gmail.com>
8820 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
8821 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
8822 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8823 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8824 S:      Maintained
8825 F:      drivers/pinctrl/samsung/
8826
8827 PIN CONTROLLER - SINGLE
8828 M:      Tony Lindgren <tony@atomide.com>
8829 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
8830 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8831 L:      linux-omap@vger.kernel.org
8832 S:      Maintained
8833 F:      drivers/pinctrl/pinctrl-single.c
8834
8835 PIN CONTROLLER - ST SPEAR
8836 M:      Viresh Kumar <vireshk@kernel.org>
8837 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8838 W:      http://www.st.com/spear
8839 S:      Maintained
8840 F:      drivers/pinctrl/spear/
8841
8842 PKTCDVD DRIVER
8843 M:      Jiri Kosina <jikos@kernel.org>
8844 S:      Maintained
8845 F:      drivers/block/pktcdvd.c
8846 F:      include/linux/pktcdvd.h
8847 F:      include/uapi/linux/pktcdvd.h
8848
8849 PKUNITY SOC DRIVERS
8850 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
8851 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
8852 S:      Maintained
8853 T:      git git://github.com/gxt/linux.git
8854 F:      drivers/input/serio/i8042-unicore32io.h
8855 F:      drivers/i2c/busses/i2c-puv3.c
8856 F:      drivers/video/fbdev/fb-puv3.c
8857 F:      drivers/rtc/rtc-puv3.c
8858
8859 PMBUS HARDWARE MONITORING DRIVERS
8860 M:      Guenter Roeck <linux@roeck-us.net>
8861 L:      linux-hwmon@vger.kernel.org
8862 W:      http://hwmon.wiki.kernel.org/
8863 W:      http://www.roeck-us.net/linux/drivers/
8864 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8865 S:      Maintained
8866 F:      Documentation/hwmon/pmbus
8867 F:      drivers/hwmon/pmbus/
8868 F:      include/linux/i2c/pmbus.h
8869
8870 PMC SIERRA MaxRAID DRIVER
8871 L:      linux-scsi@vger.kernel.org
8872 W:      http://www.pmc-sierra.com/
8873 S:      Orphan
8874 F:      drivers/scsi/pmcraid.*
8875
8876 PMC SIERRA PM8001 DRIVER
8877 M:      Jack Wang <jinpu.wang@profitbricks.com>
8878 M:      lindar_liu@usish.com
8879 L:      pmchba@pmcs.com
8880 L:      linux-scsi@vger.kernel.org
8881 S:      Supported
8882 F:      drivers/scsi/pm8001/
8883
8884 POSIX CLOCKS and TIMERS
8885 M:      Thomas Gleixner <tglx@linutronix.de>
8886 L:      linux-kernel@vger.kernel.org
8887 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8888 S:      Maintained
8889 F:      fs/timerfd.c
8890 F:      include/linux/timer*
8891 F:      kernel/time/*timer*
8892
8893 POWER MANAGEMENT CORE
8894 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
8895 L:      linux-pm@vger.kernel.org
8896 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
8897 S:      Supported
8898 F:      drivers/base/power/
8899 F:      include/linux/pm.h
8900 F:      include/linux/pm_*
8901 F:      include/linux/powercap.h
8902 F:      drivers/powercap/
8903
8904 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
8905 M:      Sebastian Reichel <sre@kernel.org>
8906 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
8907 M:      David Woodhouse <dwmw2@infradead.org>
8908 L:      linux-pm@vger.kernel.org
8909 T:      git git://git.infradead.org/battery-2.6.git
8910 S:      Maintained
8911 F:      include/linux/power_supply.h
8912 F:      drivers/power/
8913 X:      drivers/power/avs/
8914
8915 POWER STATE COORDINATION INTERFACE (PSCI)
8916 M:      Mark Rutland <mark.rutland@arm.com>
8917 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
8918 L:      linux-arm-kernel@lists.infradead.org
8919 S:      Maintained
8920 F:      drivers/firmware/psci.c
8921 F:      include/linux/psci.h
8922 F:      include/uapi/linux/psci.h
8923
8924 PNP SUPPORT
8925 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
8926 S:      Maintained
8927 F:      drivers/pnp/
8928
8929 PPP PROTOCOL DRIVERS AND COMPRESSORS
8930 M:      Paul Mackerras <paulus@samba.org>
8931 L:      linux-ppp@vger.kernel.org
8932 S:      Maintained
8933 F:      drivers/net/ppp/ppp_*
8934
8935 PPP OVER ATM (RFC 2364)
8936 M:      Mitchell Blank Jr <mitch@sfgoth.com>
8937 S:      Maintained
8938 F:      net/atm/pppoatm.c
8939 F:      include/uapi/linux/atmppp.h
8940
8941 PPP OVER ETHERNET
8942 M:      Michal Ostrowski <mostrows@earthlink.net>
8943 S:      Maintained
8944 F:      drivers/net/ppp/pppoe.c
8945 F:      drivers/net/ppp/pppox.c
8946
8947 PPP OVER L2TP
8948 M:      James Chapman <jchapman@katalix.com>
8949 S:      Maintained
8950 F:      net/l2tp/l2tp_ppp.c
8951 F:      include/linux/if_pppol2tp.h
8952 F:      include/uapi/linux/if_pppol2tp.h
8953
8954 PPS SUPPORT
8955 M:      Rodolfo Giometti <giometti@enneenne.com>
8956 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
8957 L:      linuxpps@ml.enneenne.com (subscribers-only)
8958 S:      Maintained
8959 F:      Documentation/pps/
8960 F:      drivers/pps/
8961 F:      include/linux/pps*.h
8962
8963 PPTP DRIVER
8964 M:      Dmitry Kozlov <xeb@mail.ru>
8965 L:      netdev@vger.kernel.org
8966 S:      Maintained
8967 F:      drivers/net/ppp/pptp.c
8968 W:      http://sourceforge.net/projects/accel-pptp
8969
8970 PREEMPTIBLE KERNEL
8971 M:      Robert Love <rml@tech9.net>
8972 L:      kpreempt-tech@lists.sourceforge.net
8973 W:      ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
8974 S:      Supported
8975 F:      Documentation/preempt-locking.txt
8976 F:      include/linux/preempt.h
8977
8978 PRISM54 WIRELESS DRIVER
8979 M:      "Luis R. Rodriguez" <mcgrof@gmail.com>
8980 L:      linux-wireless@vger.kernel.org
8981 W:      http://wireless.kernel.org/en/users/Drivers/p54
8982 S:      Obsolete
8983 F:      drivers/net/wireless/intersil/prism54/
8984
8985 PS3 NETWORK SUPPORT
8986 M:      Geoff Levand <geoff@infradead.org>
8987 L:      netdev@vger.kernel.org
8988 L:      linuxppc-dev@lists.ozlabs.org
8989 S:      Maintained
8990 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
8991
8992 PS3 PLATFORM SUPPORT
8993 M:      Geoff Levand <geoff@infradead.org>
8994 L:      linuxppc-dev@lists.ozlabs.org
8995 S:      Maintained
8996 F:      arch/powerpc/boot/ps3*
8997 F:      arch/powerpc/include/asm/lv1call.h
8998 F:      arch/powerpc/include/asm/ps3*.h
8999 F:      arch/powerpc/platforms/ps3/
9000 F:      drivers/*/ps3*
9001 F:      drivers/ps3/
9002 F:      drivers/rtc/rtc-ps3.c
9003 F:      drivers/usb/host/*ps3.c
9004 F:      sound/ppc/snd_ps3*
9005
9006 PS3VRAM DRIVER
9007 M:      Jim Paris <jim@jtan.com>
9008 M:      Geoff Levand <geoff@infradead.org>
9009 L:      linuxppc-dev@lists.ozlabs.org
9010 S:      Maintained
9011 F:      drivers/block/ps3vram.c
9012
9013 PSTORE FILESYSTEM
9014 M:      Anton Vorontsov <anton@enomsg.org>
9015 M:      Colin Cross <ccross@android.com>
9016 M:      Kees Cook <keescook@chromium.org>
9017 M:      Tony Luck <tony.luck@intel.com>
9018 S:      Maintained
9019 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
9020 F:      fs/pstore/
9021 F:      include/linux/pstore*
9022 F:      drivers/firmware/efi/efi-pstore.c
9023 F:      drivers/acpi/apei/erst.c
9024
9025 PTP HARDWARE CLOCK SUPPORT
9026 M:      Richard Cochran <richardcochran@gmail.com>
9027 L:      netdev@vger.kernel.org
9028 S:      Maintained
9029 W:      http://linuxptp.sourceforge.net/
9030 F:      Documentation/ABI/testing/sysfs-ptp
9031 F:      Documentation/ptp/*
9032 F:      drivers/net/ethernet/freescale/gianfar_ptp.c
9033 F:      drivers/net/phy/dp83640*
9034 F:      drivers/ptp/*
9035 F:      include/linux/ptp_cl*
9036
9037 PTRACE SUPPORT
9038 M:      Roland McGrath <roland@hack.frob.com>
9039 M:      Oleg Nesterov <oleg@redhat.com>
9040 S:      Maintained
9041 F:      include/asm-generic/syscall.h
9042 F:      include/linux/ptrace.h
9043 F:      include/linux/regset.h
9044 F:      include/linux/tracehook.h
9045 F:      include/uapi/linux/ptrace.h
9046 F:      kernel/ptrace.c
9047
9048 PVRUSB2 VIDEO4LINUX DRIVER
9049 M:      Mike Isely <isely@pobox.com>
9050 L:      pvrusb2@isely.net       (subscribers-only)
9051 L:      linux-media@vger.kernel.org
9052 W:      http://www.isely.net/pvrusb2/
9053 T:      git git://linuxtv.org/media_tree.git
9054 S:      Maintained
9055 F:      Documentation/video4linux/README.pvrusb2
9056 F:      drivers/media/usb/pvrusb2/
9057
9058 PWC WEBCAM DRIVER
9059 M:      Hans de Goede <hdegoede@redhat.com>
9060 L:      linux-media@vger.kernel.org
9061 T:      git git://linuxtv.org/media_tree.git
9062 S:      Maintained
9063 F:      drivers/media/usb/pwc/*
9064
9065 PWM FAN DRIVER
9066 M:      Kamil Debski <k.debski@samsung.com>
9067 L:      linux-hwmon@vger.kernel.org
9068 S:      Supported
9069 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
9070 F:      Documentation/hwmon/pwm-fan
9071 F:      drivers/hwmon/pwm-fan.c
9072
9073 PWM SUBSYSTEM
9074 M:      Thierry Reding <thierry.reding@gmail.com>
9075 L:      linux-pwm@vger.kernel.org
9076 S:      Maintained
9077 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
9078 F:      Documentation/pwm.txt
9079 F:      Documentation/devicetree/bindings/pwm/
9080 F:      include/linux/pwm.h
9081 F:      drivers/pwm/
9082 F:      drivers/video/backlight/pwm_bl.c
9083 F:      include/linux/pwm_backlight.h
9084
9085 PXA2xx/PXA3xx SUPPORT
9086 M:      Daniel Mack <daniel@zonque.org>
9087 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
9088 M:      Robert Jarzmik <robert.jarzmik@free.fr>
9089 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9090 T:      git git://github.com/hzhuang1/linux.git
9091 T:      git git://github.com/rjarzmik/linux.git
9092 S:      Maintained
9093 F:      arch/arm/boot/dts/pxa*
9094 F:      arch/arm/mach-pxa/
9095 F:      drivers/dma/pxa*
9096 F:      drivers/pcmcia/pxa2xx*
9097 F:      drivers/pinctrl/pxa/
9098 F:      drivers/spi/spi-pxa2xx*
9099 F:      drivers/usb/gadget/udc/pxa2*
9100 F:      include/sound/pxa2xx-lib.h
9101 F:      sound/arm/pxa*
9102 F:      sound/soc/pxa/
9103
9104 PXA GPIO DRIVER
9105 M:      Robert Jarzmik <robert.jarzmik@free.fr>
9106 L:      linux-gpio@vger.kernel.org
9107 S:      Maintained
9108 F:      drivers/gpio/gpio-pxa.c
9109
9110 PXA3xx NAND FLASH DRIVER
9111 M:      Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
9112 L:      linux-mtd@lists.infradead.org
9113 S:      Maintained
9114 F:      drivers/mtd/nand/pxa3xx_nand.c
9115
9116 MMP SUPPORT
9117 M:      Eric Miao <eric.y.miao@gmail.com>
9118 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
9119 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9120 T:      git git://github.com/hzhuang1/linux.git
9121 T:      git git://git.linaro.org/people/ycmiao/pxa-linux.git
9122 S:      Maintained
9123 F:      arch/arm/boot/dts/mmp*
9124 F:      arch/arm/mach-mmp/
9125
9126 PXA MMCI DRIVER
9127 S:      Orphan
9128
9129 PXA RTC DRIVER
9130 M:      Robert Jarzmik <robert.jarzmik@free.fr>
9131 L:      rtc-linux@googlegroups.com
9132 S:      Maintained
9133
9134 QAT DRIVER
9135 M:      Tadeusz Struk <tadeusz.struk@intel.com>
9136 L:      qat-linux@intel.com
9137 S:      Supported
9138 F:      drivers/crypto/qat/
9139
9140 QIB DRIVER
9141 M:      Mike Marciniszyn <infinipath@intel.com>
9142 L:      linux-rdma@vger.kernel.org
9143 S:      Supported
9144 F:      drivers/infiniband/hw/qib/
9145
9146 QLOGIC QLA1280 SCSI DRIVER
9147 M:      Michael Reed <mdr@sgi.com>
9148 L:      linux-scsi@vger.kernel.org
9149 S:      Maintained
9150 F:      drivers/scsi/qla1280.[ch]
9151
9152 QLOGIC QLA2XXX FC-SCSI DRIVER
9153 M:      qla2xxx-upstream@qlogic.com
9154 L:      linux-scsi@vger.kernel.org
9155 S:      Supported
9156 F:      Documentation/scsi/LICENSE.qla2xxx
9157 F:      drivers/scsi/qla2xxx/
9158
9159 QLOGIC QLA4XXX iSCSI DRIVER
9160 M:      QLogic-Storage-Upstream@qlogic.com
9161 L:      linux-scsi@vger.kernel.org
9162 S:      Supported
9163 F:      Documentation/scsi/LICENSE.qla4xxx
9164 F:      drivers/scsi/qla4xxx/
9165
9166 QLOGIC QLA3XXX NETWORK DRIVER
9167 M:      Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
9168 M:      Ron Mercer <ron.mercer@qlogic.com>
9169 M:      linux-driver@qlogic.com
9170 L:      netdev@vger.kernel.org
9171 S:      Supported
9172 F:      Documentation/networking/LICENSE.qla3xxx
9173 F:      drivers/net/ethernet/qlogic/qla3xxx.*
9174
9175 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
9176 M:      Dept-GELinuxNICDev@qlogic.com
9177 L:      netdev@vger.kernel.org
9178 S:      Supported
9179 F:      drivers/net/ethernet/qlogic/qlcnic/
9180
9181 QLOGIC QLGE 10Gb ETHERNET DRIVER
9182 M:      Harish Patil <harish.patil@qlogic.com>
9183 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
9184 M:      Dept-GELinuxNICDev@qlogic.com
9185 M:      linux-driver@qlogic.com
9186 L:      netdev@vger.kernel.org
9187 S:      Supported
9188 F:      drivers/net/ethernet/qlogic/qlge/
9189
9190 QLOGIC QL4xxx ETHERNET DRIVER
9191 M:      Yuval Mintz <Yuval.Mintz@qlogic.com>
9192 M:      Ariel Elior <Ariel.Elior@qlogic.com>
9193 M:      everest-linux-l2@qlogic.com
9194 L:      netdev@vger.kernel.org
9195 S:      Supported
9196 F:      drivers/net/ethernet/qlogic/qed/
9197 F:      include/linux/qed/
9198 F:      drivers/net/ethernet/qlogic/qede/
9199
9200 QNX4 FILESYSTEM
9201 M:      Anders Larsen <al@alarsen.net>
9202 W:      http://www.alarsen.net/linux/qnx4fs/
9203 S:      Maintained
9204 F:      fs/qnx4/
9205 F:      include/uapi/linux/qnx4_fs.h
9206 F:      include/uapi/linux/qnxtypes.h
9207
9208 QT1010 MEDIA DRIVER
9209 M:      Antti Palosaari <crope@iki.fi>
9210 L:      linux-media@vger.kernel.org
9211 W:      https://linuxtv.org
9212 W:      http://palosaari.fi/linux/
9213 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9214 T:      git git://linuxtv.org/anttip/media_tree.git
9215 S:      Maintained
9216 F:      drivers/media/tuners/qt1010*
9217
9218 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
9219 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
9220 L:      linux-wireless@vger.kernel.org
9221 L:      ath9k-devel@lists.ath9k.org
9222 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
9223 S:      Supported
9224 F:      drivers/net/wireless/ath/ath9k/
9225
9226 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
9227 M:      Kalle Valo <kvalo@qca.qualcomm.com>
9228 L:      ath10k@lists.infradead.org
9229 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
9230 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
9231 S:      Supported
9232 F:      drivers/net/wireless/ath/ath10k/
9233
9234 QUALCOMM HEXAGON ARCHITECTURE
9235 M:      Richard Kuo <rkuo@codeaurora.org>
9236 L:      linux-hexagon@vger.kernel.org
9237 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rkuo/linux-hexagon-kernel.git
9238 S:      Supported
9239 F:      arch/hexagon/
9240
9241 QUALCOMM WCN36XX WIRELESS DRIVER
9242 M:      Eugene Krasnikov <k.eugene.e@gmail.com>
9243 L:      wcn36xx@lists.infradead.org
9244 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
9245 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
9246 S:      Supported
9247 F:      drivers/net/wireless/ath/wcn36xx/
9248
9249 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
9250 M:      Gabriel Somlo <somlo@cmu.edu>
9251 M:      "Michael S. Tsirkin" <mst@redhat.com>
9252 L:      qemu-devel@nongnu.org
9253 S:      Maintained
9254 F:      drivers/firmware/qemu_fw_cfg.c
9255
9256 RADOS BLOCK DEVICE (RBD)
9257 M:      Ilya Dryomov <idryomov@gmail.com>
9258 M:      Sage Weil <sage@redhat.com>
9259 M:      Alex Elder <elder@kernel.org>
9260 L:      ceph-devel@vger.kernel.org
9261 W:      http://ceph.com/
9262 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
9263 T:      git git://github.com/ceph/ceph-client.git
9264 S:      Supported
9265 F:      Documentation/ABI/testing/sysfs-bus-rbd
9266 F:      drivers/block/rbd.c
9267 F:      drivers/block/rbd_types.h
9268
9269 RADEON FRAMEBUFFER DISPLAY DRIVER
9270 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
9271 L:      linux-fbdev@vger.kernel.org
9272 S:      Maintained
9273 F:      drivers/video/fbdev/aty/radeon*
9274 F:      include/uapi/linux/radeonfb.h
9275
9276 RADIOSHARK RADIO DRIVER
9277 M:      Hans de Goede <hdegoede@redhat.com>
9278 L:      linux-media@vger.kernel.org
9279 T:      git git://linuxtv.org/media_tree.git
9280 S:      Maintained
9281 F:      drivers/media/radio/radio-shark.c
9282
9283 RADIOSHARK2 RADIO DRIVER
9284 M:      Hans de Goede <hdegoede@redhat.com>
9285 L:      linux-media@vger.kernel.org
9286 T:      git git://linuxtv.org/media_tree.git
9287 S:      Maintained
9288 F:      drivers/media/radio/radio-shark2.c
9289 F:      drivers/media/radio/radio-tea5777.c
9290
9291 RAGE128 FRAMEBUFFER DISPLAY DRIVER
9292 M:      Paul Mackerras <paulus@samba.org>
9293 L:      linux-fbdev@vger.kernel.org
9294 S:      Maintained
9295 F:      drivers/video/fbdev/aty/aty128fb.c
9296
9297 RALINK MIPS ARCHITECTURE
9298 M:      John Crispin <john@phrozen.org>
9299 L:      linux-mips@linux-mips.org
9300 S:      Maintained
9301 F:      arch/mips/ralink
9302
9303 RALINK RT2X00 WIRELESS LAN DRIVER
9304 P:      rt2x00 project
9305 M:      Stanislaw Gruszka <sgruszka@redhat.com>
9306 M:      Helmut Schaa <helmut.schaa@googlemail.com>
9307 L:      linux-wireless@vger.kernel.org
9308 S:      Maintained
9309 F:      drivers/net/wireless/ralink/rt2x00/
9310
9311 RAMDISK RAM BLOCK DEVICE DRIVER
9312 M:      Jens Axboe <axboe@kernel.dk>
9313 S:      Maintained
9314 F:      Documentation/blockdev/ramdisk.txt
9315 F:      drivers/block/brd.c
9316
9317 RANDOM NUMBER DRIVER
9318 M:      "Theodore Ts'o" <tytso@mit.edu>
9319 S:      Maintained
9320 F:      drivers/char/random.c
9321
9322 RAPIDIO SUBSYSTEM
9323 M:      Matt Porter <mporter@kernel.crashing.org>
9324 M:      Alexandre Bounine <alexandre.bounine@idt.com>
9325 S:      Maintained
9326 F:      drivers/rapidio/
9327
9328 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
9329 L:      linux-wireless@vger.kernel.org
9330 S:      Orphan
9331 F:      drivers/net/wireless/ray*
9332
9333 RCUTORTURE MODULE
9334 M:      Josh Triplett <josh@joshtriplett.org>
9335 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9336 L:      linux-kernel@vger.kernel.org
9337 S:      Supported
9338 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9339 F:      Documentation/RCU/torture.txt
9340 F:      kernel/rcu/rcutorture.c
9341
9342 RCUTORTURE TEST FRAMEWORK
9343 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9344 M:      Josh Triplett <josh@joshtriplett.org>
9345 R:      Steven Rostedt <rostedt@goodmis.org>
9346 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9347 R:      Lai Jiangshan <jiangshanlai@gmail.com>
9348 L:      linux-kernel@vger.kernel.org
9349 S:      Supported
9350 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9351 F:      tools/testing/selftests/rcutorture
9352
9353 RDC R-321X SoC
9354 M:      Florian Fainelli <florian@openwrt.org>
9355 S:      Maintained
9356
9357 RDC R6040 FAST ETHERNET DRIVER
9358 M:      Florian Fainelli <florian@openwrt.org>
9359 L:      netdev@vger.kernel.org
9360 S:      Maintained
9361 F:      drivers/net/ethernet/rdc/r6040.c
9362
9363 RDS - RELIABLE DATAGRAM SOCKETS
9364 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
9365 L:      netdev@vger.kernel.org
9366 L:      linux-rdma@vger.kernel.org
9367 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
9368 W:      https://oss.oracle.com/projects/rds/
9369 S:      Supported
9370 F:      net/rds/
9371 F:      Documentation/networking/rds.txt
9372
9373 RDMAVT - RDMA verbs software
9374 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
9375 L:      linux-rdma@vger.kernel.org
9376 S:      Supported
9377 F:      drivers/infiniband/sw/rdmavt
9378
9379 READ-COPY UPDATE (RCU)
9380 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9381 M:      Josh Triplett <josh@joshtriplett.org>
9382 R:      Steven Rostedt <rostedt@goodmis.org>
9383 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9384 R:      Lai Jiangshan <jiangshanlai@gmail.com>
9385 L:      linux-kernel@vger.kernel.org
9386 W:      http://www.rdrop.com/users/paulmck/RCU/
9387 S:      Supported
9388 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9389 F:      Documentation/RCU/
9390 X:      Documentation/RCU/torture.txt
9391 F:      include/linux/rcu*
9392 X:      include/linux/srcu.h
9393 F:      kernel/rcu/
9394 X:      kernel/torture.c
9395
9396 REAL TIME CLOCK (RTC) SUBSYSTEM
9397 M:      Alessandro Zummo <a.zummo@towertech.it>
9398 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
9399 L:      rtc-linux@googlegroups.com
9400 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
9401 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
9402 S:      Maintained
9403 F:      Documentation/rtc.txt
9404 F:      drivers/rtc/
9405 F:      include/linux/rtc.h
9406 F:      include/uapi/linux/rtc.h
9407
9408 REALTEK AUDIO CODECS
9409 M:      Bard Liao <bardliao@realtek.com>
9410 M:      Oder Chiou <oder_chiou@realtek.com>
9411 S:      Maintained
9412 F:      sound/soc/codecs/rt*
9413 F:      include/sound/rt*.h
9414
9415 REISERFS FILE SYSTEM
9416 L:      reiserfs-devel@vger.kernel.org
9417 S:      Supported
9418 F:      fs/reiserfs/
9419
9420 REGISTER MAP ABSTRACTION
9421 M:      Mark Brown <broonie@kernel.org>
9422 L:      linux-kernel@vger.kernel.org
9423 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
9424 S:      Supported
9425 F:      drivers/base/regmap/
9426 F:      include/linux/regmap.h
9427
9428 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
9429 M:      Ohad Ben-Cohen <ohad@wizery.com>
9430 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
9431 L:      linux-remoteproc@vger.kernel.org
9432 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
9433 S:      Maintained
9434 F:      drivers/remoteproc/
9435 F:      Documentation/remoteproc.txt
9436 F:      include/linux/remoteproc.h
9437
9438 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
9439 M:      Ohad Ben-Cohen <ohad@wizery.com>
9440 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
9441 L:      linux-remoteproc@vger.kernel.org
9442 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
9443 S:      Maintained
9444 F:      drivers/rpmsg/
9445 F:      Documentation/rpmsg.txt
9446 F:      include/linux/rpmsg.h
9447
9448 RENESAS ETHERNET DRIVERS
9449 R:      Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
9450 L:      netdev@vger.kernel.org
9451 L:      linux-renesas-soc@vger.kernel.org
9452 F:      drivers/net/ethernet/renesas/
9453 F:      include/linux/sh_eth.h
9454
9455 RENESAS USB2 PHY DRIVER
9456 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
9457 L:      linux-renesas-soc@vger.kernel.org
9458 S:      Maintained
9459 F:      drivers/phy/phy-rcar-gen3-usb2.c
9460
9461 RESET CONTROLLER FRAMEWORK
9462 M:      Philipp Zabel <p.zabel@pengutronix.de>
9463 T:      git git://git.pengutronix.de/git/pza/linux
9464 S:      Maintained
9465 F:      drivers/reset/
9466 F:      Documentation/devicetree/bindings/reset/
9467 F:      include/dt-bindings/reset/
9468 F:      include/linux/reset.h
9469 F:      include/linux/reset-controller.h
9470
9471 RFKILL
9472 M:      Johannes Berg <johannes@sipsolutions.net>
9473 L:      linux-wireless@vger.kernel.org
9474 W:      http://wireless.kernel.org/
9475 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
9476 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
9477 S:      Maintained
9478 F:      Documentation/rfkill.txt
9479 F:      net/rfkill/
9480
9481 RHASHTABLE
9482 M:      Thomas Graf <tgraf@suug.ch>
9483 L:      netdev@vger.kernel.org
9484 S:      Maintained
9485 F:      lib/rhashtable.c
9486 F:      include/linux/rhashtable.h
9487
9488 RICOH SMARTMEDIA/XD DRIVER
9489 M:      Maxim Levitsky <maximlevitsky@gmail.com>
9490 S:      Maintained
9491 F:      drivers/mtd/nand/r852.c
9492 F:      drivers/mtd/nand/r852.h
9493
9494 RICOH R5C592 MEMORYSTICK DRIVER
9495 M:      Maxim Levitsky <maximlevitsky@gmail.com>
9496 S:      Maintained
9497 F:      drivers/memstick/host/r592.*
9498
9499 ROCCAT DRIVERS
9500 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
9501 W:      http://sourceforge.net/projects/roccat/
9502 S:      Maintained
9503 F:      drivers/hid/hid-roccat*
9504 F:      include/linux/hid-roccat*
9505 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
9506
9507 ROCKER DRIVER
9508 M:      Jiri Pirko <jiri@resnulli.us>
9509 M:      Scott Feldman <sfeldma@gmail.com>
9510 L:      netdev@vger.kernel.org
9511 S:      Supported
9512 F:      drivers/net/ethernet/rocker/
9513
9514 ROCKETPORT DRIVER
9515 P:      Comtrol Corp.
9516 W:      http://www.comtrol.com
9517 S:      Maintained
9518 F:      Documentation/serial/rocket.txt
9519 F:      drivers/tty/rocket*
9520
9521 ROCKETPORT EXPRESS/INFINITY DRIVER
9522 M:      Kevin Cernekee <cernekee@gmail.com>
9523 L:      linux-serial@vger.kernel.org
9524 S:      Odd Fixes
9525 F:      drivers/tty/serial/rp2.*
9526
9527 ROSE NETWORK LAYER
9528 M:      Ralf Baechle <ralf@linux-mips.org>
9529 L:      linux-hams@vger.kernel.org
9530 W:      http://www.linux-ax25.org/
9531 S:      Maintained
9532 F:      include/net/rose.h
9533 F:      include/uapi/linux/rose.h
9534 F:      net/rose/
9535
9536 RTL2830 MEDIA DRIVER
9537 M:      Antti Palosaari <crope@iki.fi>
9538 L:      linux-media@vger.kernel.org
9539 W:      https://linuxtv.org
9540 W:      http://palosaari.fi/linux/
9541 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9542 T:      git git://linuxtv.org/anttip/media_tree.git
9543 S:      Maintained
9544 F:      drivers/media/dvb-frontends/rtl2830*
9545
9546 RTL2832 MEDIA DRIVER
9547 M:      Antti Palosaari <crope@iki.fi>
9548 L:      linux-media@vger.kernel.org
9549 W:      https://linuxtv.org
9550 W:      http://palosaari.fi/linux/
9551 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9552 T:      git git://linuxtv.org/anttip/media_tree.git
9553 S:      Maintained
9554 F:      drivers/media/dvb-frontends/rtl2832*
9555
9556 RTL2832_SDR MEDIA DRIVER
9557 M:      Antti Palosaari <crope@iki.fi>
9558 L:      linux-media@vger.kernel.org
9559 W:      https://linuxtv.org
9560 W:      http://palosaari.fi/linux/
9561 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9562 T:      git git://linuxtv.org/anttip/media_tree.git
9563 S:      Maintained
9564 F:      drivers/media/dvb-frontends/rtl2832_sdr*
9565
9566 RTL8180 WIRELESS DRIVER
9567 L:      linux-wireless@vger.kernel.org
9568 W:      http://wireless.kernel.org/
9569 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9570 S:      Orphan
9571 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
9572
9573 RTL8187 WIRELESS DRIVER
9574 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
9575 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
9576 M:      Larry Finger <Larry.Finger@lwfinger.net>
9577 L:      linux-wireless@vger.kernel.org
9578 W:      http://wireless.kernel.org/
9579 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9580 S:      Maintained
9581 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
9582
9583 RTL8192CE WIRELESS DRIVER
9584 M:      Larry Finger <Larry.Finger@lwfinger.net>
9585 M:      Chaoming Li <chaoming_li@realsil.com.cn>
9586 L:      linux-wireless@vger.kernel.org
9587 W:      http://wireless.kernel.org/
9588 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9589 S:      Maintained
9590 F:      drivers/net/wireless/realtek/rtlwifi/
9591 F:      drivers/net/wireless/realtek/rtlwifi/rtl8192ce/
9592
9593 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
9594 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
9595 L:      linux-wireless@vger.kernel.org
9596 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
9597 S:      Maintained
9598 F:      drivers/net/wireless/realtek/rtl8xxxu/
9599
9600 S3 SAVAGE FRAMEBUFFER DRIVER
9601 M:      Antonino Daplas <adaplas@gmail.com>
9602 L:      linux-fbdev@vger.kernel.org
9603 S:      Maintained
9604 F:      drivers/video/fbdev/savage/
9605
9606 S390
9607 M:      Martin Schwidefsky <schwidefsky@de.ibm.com>
9608 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
9609 L:      linux-s390@vger.kernel.org
9610 W:      http://www.ibm.com/developerworks/linux/linux390/
9611 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
9612 S:      Supported
9613 F:      arch/s390/
9614 F:      drivers/s390/
9615 F:      Documentation/s390/
9616 F:      Documentation/DocBook/s390*
9617
9618 S390 COMMON I/O LAYER
9619 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
9620 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
9621 L:      linux-s390@vger.kernel.org
9622 W:      http://www.ibm.com/developerworks/linux/linux390/
9623 S:      Supported
9624 F:      drivers/s390/cio/
9625
9626 S390 DASD DRIVER
9627 M:      Stefan Weinhuber <wein@de.ibm.com>
9628 M:      Stefan Haberland <stefan.haberland@de.ibm.com>
9629 L:      linux-s390@vger.kernel.org
9630 W:      http://www.ibm.com/developerworks/linux/linux390/
9631 S:      Supported
9632 F:      drivers/s390/block/dasd*
9633 F:      block/partitions/ibm.c
9634
9635 S390 NETWORK DRIVERS
9636 M:      Ursula Braun <ubraun@linux.vnet.ibm.com>
9637 L:      linux-s390@vger.kernel.org
9638 W:      http://www.ibm.com/developerworks/linux/linux390/
9639 S:      Supported
9640 F:      drivers/s390/net/
9641
9642 S390 PCI SUBSYSTEM
9643 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
9644 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
9645 L:      linux-s390@vger.kernel.org
9646 W:      http://www.ibm.com/developerworks/linux/linux390/
9647 S:      Supported
9648 F:      arch/s390/pci/
9649 F:      drivers/pci/hotplug/s390_pci_hpc.c
9650
9651 S390 ZCRYPT DRIVER
9652 M:      Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
9653 L:      linux-s390@vger.kernel.org
9654 W:      http://www.ibm.com/developerworks/linux/linux390/
9655 S:      Supported
9656 F:      drivers/s390/crypto/
9657
9658 S390 ZFCP DRIVER
9659 M:      Steffen Maier <maier@linux.vnet.ibm.com>
9660 L:      linux-s390@vger.kernel.org
9661 W:      http://www.ibm.com/developerworks/linux/linux390/
9662 S:      Supported
9663 F:      drivers/s390/scsi/zfcp_*
9664
9665 S390 IUCV NETWORK LAYER
9666 M:      Ursula Braun <ubraun@linux.vnet.ibm.com>
9667 L:      linux-s390@vger.kernel.org
9668 W:      http://www.ibm.com/developerworks/linux/linux390/
9669 S:      Supported
9670 F:      drivers/s390/net/*iucv*
9671 F:      include/net/iucv/
9672 F:      net/iucv/
9673
9674 S390 IOMMU (PCI)
9675 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
9676 L:      linux-s390@vger.kernel.org
9677 W:      http://www.ibm.com/developerworks/linux/linux390/
9678 S:      Supported
9679 F:      drivers/iommu/s390-iommu.c
9680
9681 S3C24XX SD/MMC Driver
9682 M:      Ben Dooks <ben-linux@fluff.org>
9683 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9684 S:      Supported
9685 F:      drivers/mmc/host/s3cmci.*
9686
9687 SAA6588 RDS RECEIVER DRIVER
9688 M:      Hans Verkuil <hverkuil@xs4all.nl>
9689 L:      linux-media@vger.kernel.org
9690 T:      git git://linuxtv.org/media_tree.git
9691 W:      https://linuxtv.org
9692 S:      Odd Fixes
9693 F:      drivers/media/i2c/saa6588*
9694
9695 SAA7134 VIDEO4LINUX DRIVER
9696 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9697 L:      linux-media@vger.kernel.org
9698 W:      https://linuxtv.org
9699 T:      git git://linuxtv.org/media_tree.git
9700 S:      Odd fixes
9701 F:      Documentation/video4linux/*.saa7134
9702 F:      drivers/media/pci/saa7134/
9703
9704 SAA7146 VIDEO4LINUX-2 DRIVER
9705 M:      Hans Verkuil <hverkuil@xs4all.nl>
9706 L:      linux-media@vger.kernel.org
9707 T:      git git://linuxtv.org/media_tree.git
9708 S:      Maintained
9709 F:      drivers/media/common/saa7146/
9710 F:      drivers/media/pci/saa7146/
9711 F:      include/media/saa7146*
9712
9713 SAMSUNG LAPTOP DRIVER
9714 M:      Corentin Chary <corentin.chary@gmail.com>
9715 L:      platform-driver-x86@vger.kernel.org
9716 S:      Maintained
9717 F:      drivers/platform/x86/samsung-laptop.c
9718
9719 SAMSUNG AUDIO (ASoC) DRIVERS
9720 M:      Sangbeom Kim <sbkim73@samsung.com>
9721 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9722 S:      Supported
9723 F:      sound/soc/samsung/
9724
9725 SAMSUNG FRAMEBUFFER DRIVER
9726 M:      Jingoo Han <jingoohan1@gmail.com>
9727 L:      linux-fbdev@vger.kernel.org
9728 S:      Maintained
9729 F:      drivers/video/fbdev/s3c-fb.c
9730
9731 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
9732 M:      Sangbeom Kim <sbkim73@samsung.com>
9733 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
9734 L:      linux-kernel@vger.kernel.org
9735 L:      linux-samsung-soc@vger.kernel.org
9736 S:      Supported
9737 F:      drivers/mfd/sec*.c
9738 F:      drivers/regulator/s2m*.c
9739 F:      drivers/regulator/s5m*.c
9740 F:      drivers/clk/clk-s2mps11.c
9741 F:      drivers/rtc/rtc-s5m.c
9742 F:      include/linux/mfd/samsung/
9743 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
9744 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
9745 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
9746 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
9747
9748 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
9749 M:      Kyungmin Park <kyungmin.park@samsung.com>
9750 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
9751 L:      linux-media@vger.kernel.org
9752 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
9753 S:      Supported
9754 F:      drivers/media/platform/exynos4-is/
9755
9756 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
9757 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
9758 L:      linux-media@vger.kernel.org
9759 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9760 S:      Maintained
9761 F:      drivers/media/platform/s3c-camif/
9762 F:      include/media/drv-intf/s3c_camif.h
9763
9764 SAMSUNG S5C73M3 CAMERA DRIVER
9765 M:      Kyungmin Park <kyungmin.park@samsung.com>
9766 M:      Andrzej Hajda <a.hajda@samsung.com>
9767 L:      linux-media@vger.kernel.org
9768 S:      Supported
9769 F:      drivers/media/i2c/s5c73m3/*
9770
9771 SAMSUNG S5K5BAF CAMERA DRIVER
9772 M:      Kyungmin Park <kyungmin.park@samsung.com>
9773 M:      Andrzej Hajda <a.hajda@samsung.com>
9774 L:      linux-media@vger.kernel.org
9775 S:      Supported
9776 F:      drivers/media/i2c/s5k5baf.c
9777
9778 SAMSUNG S3FWRN5 NFC DRIVER
9779 M:      Robert Baldyga <r.baldyga@samsung.com>
9780 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
9781 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
9782 S:      Supported
9783 F:      drivers/nfc/s3fwrn5
9784
9785 SAMSUNG SOC CLOCK DRIVERS
9786 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
9787 M:      Tomasz Figa <tomasz.figa@gmail.com>
9788 S:      Supported
9789 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9790 F:      drivers/clk/samsung/
9791
9792 SAMSUNG SXGBE DRIVERS
9793 M:      Byungho An <bh74.an@samsung.com>
9794 M:      Girish K S <ks.giri@samsung.com>
9795 M:      Vipul Pandya <vipul.pandya@samsung.com>
9796 S:      Supported
9797 L:      netdev@vger.kernel.org
9798 F:      drivers/net/ethernet/samsung/sxgbe/
9799
9800 SAMSUNG THERMAL DRIVER
9801 M:      Lukasz Majewski <l.majewski@samsung.com>
9802 L:      linux-pm@vger.kernel.org
9803 L:      linux-samsung-soc@vger.kernel.org
9804 S:      Supported
9805 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
9806 F:      drivers/thermal/samsung/
9807
9808 SAMSUNG USB2 PHY DRIVER
9809 M:      Kamil Debski <k.debski@samsung.com>
9810 L:      linux-kernel@vger.kernel.org
9811 S:      Supported
9812 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
9813 F:      Documentation/phy/samsung-usb2.txt
9814 F:      drivers/phy/phy-exynos4210-usb2.c
9815 F:      drivers/phy/phy-exynos4x12-usb2.c
9816 F:      drivers/phy/phy-exynos5250-usb2.c
9817 F:      drivers/phy/phy-s5pv210-usb2.c
9818 F:      drivers/phy/phy-samsung-usb2.c
9819 F:      drivers/phy/phy-samsung-usb2.h
9820
9821 SERIAL DRIVERS
9822 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9823 L:      linux-serial@vger.kernel.org
9824 S:      Maintained
9825 F:      drivers/tty/serial/
9826
9827 SYNOPSYS DESIGNWARE DMAC DRIVER
9828 M:      Viresh Kumar <vireshk@kernel.org>
9829 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9830 S:      Maintained
9831 F:      include/linux/dma/dw.h
9832 F:      include/linux/platform_data/dma-dw.h
9833 F:      drivers/dma/dw/
9834
9835 SYNOPSYS DESIGNWARE ETHERNET QOS 4.10a driver
9836 M: Lars Persson <lars.persson@axis.com>
9837 L: netdev@vger.kernel.org
9838 S: Supported
9839 F: Documentation/devicetree/bindings/net/snps,dwc-qos-ethernet.txt
9840 F: drivers/net/ethernet/synopsys/dwc_eth_qos.c
9841
9842 SYNOPSYS DESIGNWARE I2C DRIVER
9843 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
9844 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9845 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
9846 L:      linux-i2c@vger.kernel.org
9847 S:      Maintained
9848 F:      drivers/i2c/busses/i2c-designware-*
9849 F:      include/linux/platform_data/i2c-designware.h
9850
9851 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
9852 M:      Jaehoon Chung <jh80.chung@samsung.com>
9853 L:      linux-mmc@vger.kernel.org
9854 S:      Maintained
9855 F:      include/linux/mmc/dw_mmc.h
9856 F:      drivers/mmc/host/dw_mmc*
9857
9858 SYSTEM TRACE MODULE CLASS
9859 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
9860 S:      Maintained
9861 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
9862 F:      Documentation/trace/stm.txt
9863 F:      drivers/hwtracing/stm/
9864 F:      include/linux/stm.h
9865 F:      include/uapi/linux/stm.h
9866
9867 THUNDERBOLT DRIVER
9868 M:      Andreas Noever <andreas.noever@gmail.com>
9869 S:      Maintained
9870 F:      drivers/thunderbolt/
9871
9872 TI BQ27XXX POWER SUPPLY DRIVER
9873 R:      Andrew F. Davis <afd@ti.com>
9874 F:      include/linux/power/bq27xxx_battery.h
9875 F:      drivers/power/bq27xxx_battery.c
9876 F:      drivers/power/bq27xxx_battery_i2c.c
9877
9878 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
9879 M:      John Stultz <john.stultz@linaro.org>
9880 M:      Thomas Gleixner <tglx@linutronix.de>
9881 L:      linux-kernel@vger.kernel.org
9882 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
9883 S:      Supported
9884 F:      include/linux/clocksource.h
9885 F:      include/linux/time.h
9886 F:      include/linux/timex.h
9887 F:      include/uapi/linux/time.h
9888 F:      include/uapi/linux/timex.h
9889 F:      kernel/time/clocksource.c
9890 F:      kernel/time/time*.c
9891 F:      kernel/time/alarmtimer.c
9892 F:      kernel/time/ntp.c
9893 F:      tools/testing/selftests/timers/
9894
9895 SC1200 WDT DRIVER
9896 M:      Zwane Mwaikambo <zwanem@gmail.com>
9897 S:      Maintained
9898 F:      drivers/watchdog/sc1200wdt.c
9899
9900 SCHEDULER
9901 M:      Ingo Molnar <mingo@redhat.com>
9902 M:      Peter Zijlstra <peterz@infradead.org>
9903 L:      linux-kernel@vger.kernel.org
9904 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
9905 S:      Maintained
9906 F:      kernel/sched/
9907 F:      include/linux/sched.h
9908 F:      include/uapi/linux/sched.h
9909 F:      include/linux/wait.h
9910
9911 SCORE ARCHITECTURE
9912 M:      Chen Liqin <liqin.linux@gmail.com>
9913 M:      Lennox Wu <lennox.wu@gmail.com>
9914 W:      http://www.sunplus.com
9915 S:      Supported
9916 F:      arch/score/
9917
9918 SYSTEM CONTROL & POWER INTERFACE (SCPI) Message Protocol drivers
9919 M:      Sudeep Holla <sudeep.holla@arm.com>
9920 L:      linux-arm-kernel@lists.infradead.org
9921 S:      Maintained
9922 F:      Documentation/devicetree/bindings/arm/arm,scpi.txt
9923 F:      drivers/clk/clk-scpi.c
9924 F:      drivers/cpufreq/scpi-cpufreq.c
9925 F:      drivers/firmware/arm_scpi.c
9926 F:      include/linux/scpi_protocol.h
9927
9928 SCSI CDROM DRIVER
9929 M:      Jens Axboe <axboe@kernel.dk>
9930 L:      linux-scsi@vger.kernel.org
9931 W:      http://www.kernel.dk
9932 S:      Maintained
9933 F:      drivers/scsi/sr*
9934
9935 SCSI RDMA PROTOCOL (SRP) INITIATOR
9936 M:      Bart Van Assche <bart.vanassche@sandisk.com>
9937 L:      linux-rdma@vger.kernel.org
9938 S:      Supported
9939 W:      http://www.openfabrics.org
9940 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9941 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
9942 F:      drivers/infiniband/ulp/srp/
9943 F:      include/scsi/srp.h
9944
9945 SCSI SG DRIVER
9946 M:      Doug Gilbert <dgilbert@interlog.com>
9947 L:      linux-scsi@vger.kernel.org
9948 W:      http://sg.danny.cz/sg
9949 S:      Maintained
9950 F:      Documentation/scsi/scsi-generic.txt
9951 F:      drivers/scsi/sg.c
9952 F:      include/scsi/sg.h
9953
9954 SCSI SUBSYSTEM
9955 M:      "James E.J. Bottomley" <jejb@linux.vnet.ibm.com>
9956 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
9957 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
9958 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
9959 L:      linux-scsi@vger.kernel.org
9960 S:      Maintained
9961 F:      drivers/scsi/
9962 F:      include/scsi/
9963
9964 SCSI TAPE DRIVER
9965 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
9966 L:      linux-scsi@vger.kernel.org
9967 S:      Maintained
9968 F:      Documentation/scsi/st.txt
9969 F:      drivers/scsi/st.*
9970 F:      drivers/scsi/st_*.h
9971
9972 SCTP PROTOCOL
9973 M:      Vlad Yasevich <vyasevich@gmail.com>
9974 M:      Neil Horman <nhorman@tuxdriver.com>
9975 L:      linux-sctp@vger.kernel.org
9976 W:      http://lksctp.sourceforge.net
9977 S:      Maintained
9978 F:      Documentation/networking/sctp.txt
9979 F:      include/linux/sctp.h
9980 F:      include/uapi/linux/sctp.h
9981 F:      include/net/sctp/
9982 F:      net/sctp/
9983
9984 SCx200 CPU SUPPORT
9985 M:      Jim Cromie <jim.cromie@gmail.com>
9986 S:      Odd Fixes
9987 F:      Documentation/i2c/busses/scx200_acb
9988 F:      arch/x86/platform/scx200/
9989 F:      drivers/watchdog/scx200_wdt.c
9990 F:      drivers/i2c/busses/scx200*
9991 F:      drivers/mtd/maps/scx200_docflash.c
9992 F:      include/linux/scx200.h
9993
9994 SCx200 GPIO DRIVER
9995 M:      Jim Cromie <jim.cromie@gmail.com>
9996 S:      Maintained
9997 F:      drivers/char/scx200_gpio.c
9998 F:      include/linux/scx200_gpio.h
9999
10000 SCx200 HRT CLOCKSOURCE DRIVER
10001 M:      Jim Cromie <jim.cromie@gmail.com>
10002 S:      Maintained
10003 F:      drivers/clocksource/scx200_hrt.c
10004
10005 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
10006 M:      Sascha Sommer <saschasommer@freenet.de>
10007 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
10008 S:      Maintained
10009 F:      drivers/mmc/host/sdricoh_cs.c
10010
10011 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
10012 M:      Adrian Hunter <adrian.hunter@intel.com>
10013 L:      linux-mmc@vger.kernel.org
10014 T:      git git://git.infradead.org/users/ahunter/linux-sdhci.git
10015 S:      Maintained
10016 F:      drivers/mmc/host/sdhci*
10017 F:      include/linux/mmc/sdhci*
10018
10019 SECURE COMPUTING
10020 M:      Kees Cook <keescook@chromium.org>
10021 R:      Andy Lutomirski <luto@amacapital.net>
10022 R:      Will Drewry <wad@chromium.org>
10023 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
10024 S:      Supported
10025 F:      kernel/seccomp.c
10026 F:      include/uapi/linux/seccomp.h
10027 F:      include/linux/seccomp.h
10028 F:      tools/testing/selftests/seccomp/*
10029 K:      \bsecure_computing
10030 K:      \bTIF_SECCOMP\b
10031
10032 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
10033 M:      Ben Dooks <ben-linux@fluff.org>
10034 M:      Jaehoon Chung <jh80.chung@samsung.com>
10035 L:      linux-mmc@vger.kernel.org
10036 S:      Maintained
10037 F:      drivers/mmc/host/sdhci-s3c*
10038
10039 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
10040 M:      Viresh Kumar <vireshk@kernel.org>
10041 L:      linux-mmc@vger.kernel.org
10042 S:      Maintained
10043 F:      drivers/mmc/host/sdhci-spear.c
10044
10045 SECURITY SUBSYSTEM
10046 M:      James Morris <james.l.morris@oracle.com>
10047 M:      "Serge E. Hallyn" <serge@hallyn.com>
10048 L:      linux-security-module@vger.kernel.org (suggested Cc:)
10049 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
10050 W:      http://kernsec.org/
10051 S:      Supported
10052 F:      security/
10053
10054 SECURITY CONTACT
10055 M:      Security Officers <security@kernel.org>
10056 S:      Supported
10057
10058 SELINUX SECURITY MODULE
10059 M:      Paul Moore <paul@paul-moore.com>
10060 M:      Stephen Smalley <sds@tycho.nsa.gov>
10061 M:      Eric Paris <eparis@parisplace.org>
10062 L:      selinux@tycho.nsa.gov (moderated for non-subscribers)
10063 W:      http://selinuxproject.org
10064 T:      git git://git.infradead.org/users/pcmoore/selinux
10065 S:      Supported
10066 F:      include/linux/selinux*
10067 F:      security/selinux/
10068 F:      scripts/selinux/
10069
10070 APPARMOR SECURITY MODULE
10071 M:      John Johansen <john.johansen@canonical.com>
10072 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
10073 W:      apparmor.wiki.kernel.org
10074 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
10075 S:      Supported
10076 F:      security/apparmor/
10077
10078 LOADPIN SECURITY MODULE
10079 M:      Kees Cook <keescook@chromium.org>
10080 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
10081 S:      Supported
10082 F:      security/loadpin/
10083
10084 YAMA SECURITY MODULE
10085 M:      Kees Cook <keescook@chromium.org>
10086 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
10087 S:      Supported
10088 F:      security/yama/
10089
10090 SENSABLE PHANTOM
10091 M:      Jiri Slaby <jirislaby@gmail.com>
10092 S:      Maintained
10093 F:      drivers/misc/phantom.c
10094 F:      include/uapi/linux/phantom.h
10095
10096 SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
10097 M:      Jayamohan Kallickal <jayamohan.kallickal@avagotech.com>
10098 M:      Ketan Mukadam <ketan.mukadam@avagotech.com>
10099 M:      John Soni Jose <sony.john@avagotech.com>
10100 L:      linux-scsi@vger.kernel.org
10101 W:      http://www.avagotech.com
10102 S:      Supported
10103 F:      drivers/scsi/be2iscsi/
10104
10105 Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER
10106 M:      Sathya Perla <sathya.perla@broadcom.com>
10107 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
10108 M:      Padmanabh Ratnakar <padmanabh.ratnakar@broadcom.com>
10109 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
10110 M:      Somnath Kotur <somnath.kotur@broadcom.com>
10111 L:      netdev@vger.kernel.org
10112 W:      http://www.emulex.com
10113 S:      Supported
10114 F:      drivers/net/ethernet/emulex/benet/
10115
10116 EMULEX ONECONNECT ROCE DRIVER
10117 M:      Selvin Xavier <selvin.xavier@avagotech.com>
10118 M:      Devesh Sharma <devesh.sharma@avagotech.com>
10119 M:      Mitesh Ahuja <mitesh.ahuja@avagotech.com>
10120 L:      linux-rdma@vger.kernel.org
10121 W:      http://www.emulex.com
10122 S:      Supported
10123 F:      drivers/infiniband/hw/ocrdma/
10124
10125 SFC NETWORK DRIVER
10126 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
10127 M:      Edward Cree <ecree@solarflare.com>
10128 M:      Bert Kenward <bkenward@solarflare.com>
10129 L:      netdev@vger.kernel.org
10130 S:      Supported
10131 F:      drivers/net/ethernet/sfc/
10132
10133 SGI GRU DRIVER
10134 M:      Dimitri Sivanich <sivanich@sgi.com>
10135 S:      Maintained
10136 F:      drivers/misc/sgi-gru/
10137
10138 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
10139 M:      Pat Gefre <pfg@sgi.com>
10140 L:      linux-ia64@vger.kernel.org
10141 S:      Supported
10142 F:      Documentation/ia64/serial.txt
10143 F:      drivers/tty/serial/ioc?_serial.c
10144 F:      include/linux/ioc?.h
10145
10146 SGI XP/XPC/XPNET DRIVER
10147 M:      Cliff Whickman <cpw@sgi.com>
10148 M:      Robin Holt <robinmholt@gmail.com>
10149 S:      Maintained
10150 F:      drivers/misc/sgi-xp/
10151
10152 SI2157 MEDIA DRIVER
10153 M:      Antti Palosaari <crope@iki.fi>
10154 L:      linux-media@vger.kernel.org
10155 W:      https://linuxtv.org
10156 W:      http://palosaari.fi/linux/
10157 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10158 T:      git git://linuxtv.org/anttip/media_tree.git
10159 S:      Maintained
10160 F:      drivers/media/tuners/si2157*
10161
10162 SI2168 MEDIA DRIVER
10163 M:      Antti Palosaari <crope@iki.fi>
10164 L:      linux-media@vger.kernel.org
10165 W:      https://linuxtv.org
10166 W:      http://palosaari.fi/linux/
10167 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10168 T:      git git://linuxtv.org/anttip/media_tree.git
10169 S:      Maintained
10170 F:      drivers/media/dvb-frontends/si2168*
10171
10172 SI470X FM RADIO RECEIVER I2C DRIVER
10173 M:      Hans Verkuil <hverkuil@xs4all.nl>
10174 L:      linux-media@vger.kernel.org
10175 T:      git git://linuxtv.org/media_tree.git
10176 W:      https://linuxtv.org
10177 S:      Odd Fixes
10178 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
10179
10180 SI470X FM RADIO RECEIVER USB DRIVER
10181 M:      Hans Verkuil <hverkuil@xs4all.nl>
10182 L:      linux-media@vger.kernel.org
10183 T:      git git://linuxtv.org/media_tree.git
10184 W:      https://linuxtv.org
10185 S:      Maintained
10186 F:      drivers/media/radio/si470x/radio-si470x-common.c
10187 F:      drivers/media/radio/si470x/radio-si470x.h
10188 F:      drivers/media/radio/si470x/radio-si470x-usb.c
10189
10190 SI4713 FM RADIO TRANSMITTER I2C DRIVER
10191 M:      Eduardo Valentin <edubezval@gmail.com>
10192 L:      linux-media@vger.kernel.org
10193 T:      git git://linuxtv.org/media_tree.git
10194 W:      https://linuxtv.org
10195 S:      Odd Fixes
10196 F:      drivers/media/radio/si4713/si4713.?
10197
10198 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
10199 M:      Eduardo Valentin <edubezval@gmail.com>
10200 L:      linux-media@vger.kernel.org
10201 T:      git git://linuxtv.org/media_tree.git
10202 W:      https://linuxtv.org
10203 S:      Odd Fixes
10204 F:      drivers/media/radio/si4713/radio-platform-si4713.c
10205
10206 SI4713 FM RADIO TRANSMITTER USB DRIVER
10207 M:      Hans Verkuil <hverkuil@xs4all.nl>
10208 L:      linux-media@vger.kernel.org
10209 T:      git git://linuxtv.org/media_tree.git
10210 W:      https://linuxtv.org
10211 S:      Maintained
10212 F:      drivers/media/radio/si4713/radio-usb-si4713.c
10213
10214 SIANO DVB DRIVER
10215 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10216 L:      linux-media@vger.kernel.org
10217 W:      https://linuxtv.org
10218 T:      git git://linuxtv.org/media_tree.git
10219 S:      Odd fixes
10220 F:      drivers/media/common/siano/
10221 F:      drivers/media/usb/siano/
10222 F:      drivers/media/usb/siano/
10223 F:      drivers/media/mmc/siano/
10224
10225 SIMPLEFB FB DRIVER
10226 M:      Hans de Goede <hdegoede@redhat.com>
10227 L:      linux-fbdev@vger.kernel.org
10228 S:      Maintained
10229 F:      Documentation/devicetree/bindings/display/simple-framebuffer.txt
10230 F:      drivers/video/fbdev/simplefb.c
10231 F:      include/linux/platform_data/simplefb.h
10232
10233 SH_VEU V4L2 MEM2MEM DRIVER
10234 L:      linux-media@vger.kernel.org
10235 S:      Orphan
10236 F:      drivers/media/platform/sh_veu.c
10237
10238 SH_VOU V4L2 OUTPUT DRIVER
10239 L:      linux-media@vger.kernel.org
10240 S:      Orphan
10241 F:      drivers/media/platform/sh_vou.c
10242 F:      include/media/drv-intf/sh_vou.h
10243
10244 SIMPLE FIRMWARE INTERFACE (SFI)
10245 M:      Len Brown <lenb@kernel.org>
10246 L:      sfi-devel@simplefirmware.org
10247 W:      http://simplefirmware.org/
10248 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
10249 S:      Supported
10250 F:      arch/x86/platform/sfi/
10251 F:      drivers/sfi/
10252 F:      include/linux/sfi*.h
10253
10254 SIMTEC EB110ATX (Chalice CATS)
10255 P:      Ben Dooks
10256 P:      Vincent Sanders <vince@simtec.co.uk>
10257 M:      Simtec Linux Team <linux@simtec.co.uk>
10258 W:      http://www.simtec.co.uk/products/EB110ATX/
10259 S:      Supported
10260
10261 SIMTEC EB2410ITX (BAST)
10262 P:      Ben Dooks
10263 P:      Vincent Sanders <vince@simtec.co.uk>
10264 M:      Simtec Linux Team <linux@simtec.co.uk>
10265 W:      http://www.simtec.co.uk/products/EB2410ITX/
10266 S:      Supported
10267 F:      arch/arm/mach-s3c24xx/mach-bast.c
10268 F:      arch/arm/mach-s3c24xx/bast-ide.c
10269 F:      arch/arm/mach-s3c24xx/bast-irq.c
10270
10271 TI DAVINCI MACHINE SUPPORT
10272 M:      Sekhar Nori <nsekhar@ti.com>
10273 M:      Kevin Hilman <khilman@kernel.org>
10274 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10275 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
10276 S:      Supported
10277 F:      arch/arm/mach-davinci/
10278 F:      drivers/i2c/busses/i2c-davinci.c
10279
10280 TI DAVINCI SERIES MEDIA DRIVER
10281 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
10282 L:      linux-media@vger.kernel.org
10283 W:      https://linuxtv.org
10284 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10285 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
10286 S:      Maintained
10287 F:      drivers/media/platform/davinci/
10288 F:      include/media/davinci/
10289
10290 TI AM437X VPFE DRIVER
10291 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
10292 L:      linux-media@vger.kernel.org
10293 W:      https://linuxtv.org
10294 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10295 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
10296 S:      Maintained
10297 F:      drivers/media/platform/am437x/
10298
10299 OV2659 OMNIVISION SENSOR DRIVER
10300 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
10301 L:      linux-media@vger.kernel.org
10302 W:      https://linuxtv.org
10303 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10304 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
10305 S:      Maintained
10306 F:      drivers/media/i2c/ov2659.c
10307 F:      include/media/i2c/ov2659.h
10308
10309 SILICON MOTION SM712 FRAME BUFFER DRIVER
10310 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
10311 M:      Teddy Wang <teddy.wang@siliconmotion.com>
10312 M:      Sudip Mukherjee <sudip@vectorindia.org>
10313 L:      linux-fbdev@vger.kernel.org
10314 S:      Maintained
10315 F:      drivers/video/fbdev/sm712*
10316 F:      Documentation/fb/sm712fb.txt
10317
10318 SIS 190 ETHERNET DRIVER
10319 M:      Francois Romieu <romieu@fr.zoreil.com>
10320 L:      netdev@vger.kernel.org
10321 S:      Maintained
10322 F:      drivers/net/ethernet/sis/sis190.c
10323
10324 SIS 900/7016 FAST ETHERNET DRIVER
10325 M:      Daniele Venzano <venza@brownhat.org>
10326 W:      http://www.brownhat.org/sis900.html
10327 L:      netdev@vger.kernel.org
10328 S:      Maintained
10329 F:      drivers/net/ethernet/sis/sis900.*
10330
10331 SIS FRAMEBUFFER DRIVER
10332 M:      Thomas Winischhofer <thomas@winischhofer.net>
10333 W:      http://www.winischhofer.net/linuxsisvga.shtml
10334 S:      Maintained
10335 F:      Documentation/fb/sisfb.txt
10336 F:      drivers/video/fbdev/sis/
10337 F:      include/video/sisfb.h
10338
10339 SIS USB2VGA DRIVER
10340 M:      Thomas Winischhofer <thomas@winischhofer.net>
10341 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
10342 S:      Maintained
10343 F:      drivers/usb/misc/sisusbvga/
10344
10345 SLAB ALLOCATOR
10346 M:      Christoph Lameter <cl@linux.com>
10347 M:      Pekka Enberg <penberg@kernel.org>
10348 M:      David Rientjes <rientjes@google.com>
10349 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
10350 M:      Andrew Morton <akpm@linux-foundation.org>
10351 L:      linux-mm@kvack.org
10352 S:      Maintained
10353 F:      include/linux/sl?b*.h
10354 F:      mm/sl?b*
10355
10356 SLEEPABLE READ-COPY UPDATE (SRCU)
10357 M:      Lai Jiangshan <jiangshanlai@gmail.com>
10358 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
10359 M:      Josh Triplett <josh@joshtriplett.org>
10360 R:      Steven Rostedt <rostedt@goodmis.org>
10361 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
10362 L:      linux-kernel@vger.kernel.org
10363 W:      http://www.rdrop.com/users/paulmck/RCU/
10364 S:      Supported
10365 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
10366 F:      include/linux/srcu.h
10367 F:      kernel/rcu/srcu.c
10368
10369 SMACK SECURITY MODULE
10370 M:      Casey Schaufler <casey@schaufler-ca.com>
10371 L:      linux-security-module@vger.kernel.org
10372 W:      http://schaufler-ca.com
10373 T:      git git://git.gitorious.org/smack-next/kernel.git
10374 S:      Maintained
10375 F:      Documentation/security/Smack.txt
10376 F:      security/smack/
10377
10378 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
10379 M:      Kevin Hilman <khilman@kernel.org>
10380 M:      Nishanth Menon <nm@ti.com>
10381 S:      Maintained
10382 F:      drivers/power/avs/
10383 F:      include/linux/power/smartreflex.h
10384 L:      linux-pm@vger.kernel.org
10385
10386 SMC91x ETHERNET DRIVER
10387 M:      Nicolas Pitre <nico@fluxnic.net>
10388 S:      Odd Fixes
10389 F:      drivers/net/ethernet/smsc/smc91x.*
10390
10391 SMIA AND SMIA++ IMAGE SENSOR DRIVER
10392 M:      Sakari Ailus <sakari.ailus@iki.fi>
10393 L:      linux-media@vger.kernel.org
10394 S:      Maintained
10395 F:      drivers/media/i2c/smiapp/
10396 F:      include/media/i2c/smiapp.h
10397 F:      drivers/media/i2c/smiapp-pll.c
10398 F:      drivers/media/i2c/smiapp-pll.h
10399 F:      include/uapi/linux/smiapp.h
10400 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
10401
10402 SMM665 HARDWARE MONITOR DRIVER
10403 M:      Guenter Roeck <linux@roeck-us.net>
10404 L:      linux-hwmon@vger.kernel.org
10405 S:      Maintained
10406 F:      Documentation/hwmon/smm665
10407 F:      drivers/hwmon/smm665.c
10408
10409 SMSC EMC2103 HARDWARE MONITOR DRIVER
10410 M:      Steve Glendinning <steve.glendinning@shawell.net>
10411 L:      linux-hwmon@vger.kernel.org
10412 S:      Maintained
10413 F:      Documentation/hwmon/emc2103
10414 F:      drivers/hwmon/emc2103.c
10415
10416 SMSC SCH5627 HARDWARE MONITOR DRIVER
10417 M:      Hans de Goede <hdegoede@redhat.com>
10418 L:      linux-hwmon@vger.kernel.org
10419 S:      Supported
10420 F:      Documentation/hwmon/sch5627
10421 F:      drivers/hwmon/sch5627.c
10422
10423 SMSC47B397 HARDWARE MONITOR DRIVER
10424 M:      Jean Delvare <jdelvare@suse.com>
10425 L:      linux-hwmon@vger.kernel.org
10426 S:      Maintained
10427 F:      Documentation/hwmon/smsc47b397
10428 F:      drivers/hwmon/smsc47b397.c
10429
10430 SMSC911x ETHERNET DRIVER
10431 M:      Steve Glendinning <steve.glendinning@shawell.net>
10432 L:      netdev@vger.kernel.org
10433 S:      Maintained
10434 F:      include/linux/smsc911x.h
10435 F:      drivers/net/ethernet/smsc/smsc911x.*
10436
10437 SMSC9420 PCI ETHERNET DRIVER
10438 M:      Steve Glendinning <steve.glendinning@shawell.net>
10439 L:      netdev@vger.kernel.org
10440 S:      Maintained
10441 F:      drivers/net/ethernet/smsc/smsc9420.*
10442
10443 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
10444 M:      Steve Glendinning <steve.glendinning@shawell.net>
10445 L:      linux-fbdev@vger.kernel.org
10446 S:      Maintained
10447 F:      drivers/video/fbdev/smscufx.c
10448
10449 SOC-CAMERA V4L2 SUBSYSTEM
10450 M:      Guennadi Liakhovetski <g.liakhovetski@gmx.de>
10451 L:      linux-media@vger.kernel.org
10452 T:      git git://linuxtv.org/media_tree.git
10453 S:      Maintained
10454 F:      include/media/soc*
10455 F:      drivers/media/i2c/soc_camera/
10456 F:      drivers/media/platform/soc_camera/
10457
10458 SOEKRIS NET48XX LED SUPPORT
10459 M:      Chris Boot <bootc@bootc.net>
10460 S:      Maintained
10461 F:      drivers/leds/leds-net48xx.c
10462
10463 SOFTLOGIC 6x10 MPEG CODEC
10464 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
10465 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
10466 M:      Andrey Utkin <andrey.krieger.utkin@gmail.com>
10467 M:      Ismael Luceno <ismael@iodev.co.uk>
10468 L:      linux-media@vger.kernel.org
10469 S:      Supported
10470 F:      drivers/media/pci/solo6x10/
10471
10472 SOFTWARE RAID (Multiple Disks) SUPPORT
10473 M:      Shaohua Li <shli@kernel.org>
10474 L:      linux-raid@vger.kernel.org
10475 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shli/md.git
10476 S:      Supported
10477 F:      drivers/md/
10478 F:      include/linux/raid/
10479 F:      include/uapi/linux/raid/
10480
10481 SONIC NETWORK DRIVER
10482 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
10483 L:      netdev@vger.kernel.org
10484 S:      Maintained
10485 F:      drivers/net/ethernet/natsemi/sonic.*
10486
10487 SONICS SILICON BACKPLANE DRIVER (SSB)
10488 M:      Michael Buesch <m@bues.ch>
10489 L:      linux-wireless@vger.kernel.org
10490 S:      Maintained
10491 F:      drivers/ssb/
10492 F:      include/linux/ssb/
10493
10494 SONY VAIO CONTROL DEVICE DRIVER
10495 M:      Mattia Dongili <malattia@linux.it>
10496 L:      platform-driver-x86@vger.kernel.org
10497 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
10498 S:      Maintained
10499 F:      Documentation/laptops/sony-laptop.txt
10500 F:      drivers/char/sonypi.c
10501 F:      drivers/platform/x86/sony-laptop.c
10502 F:      include/linux/sony-laptop.h
10503
10504 SONY MEMORYSTICK CARD SUPPORT
10505 M:      Alex Dubov <oakad@yahoo.com>
10506 W:      http://tifmxx.berlios.de/
10507 S:      Maintained
10508 F:      drivers/memstick/host/tifm_ms.c
10509
10510 SONY MEMORYSTICK STANDARD SUPPORT
10511 M:      Maxim Levitsky <maximlevitsky@gmail.com>
10512 S:      Maintained
10513 F:      drivers/memstick/core/ms_block.*
10514
10515 SOUND
10516 M:      Jaroslav Kysela <perex@perex.cz>
10517 M:      Takashi Iwai <tiwai@suse.com>
10518 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10519 W:      http://www.alsa-project.org/
10520 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
10521 T:      git git://git.alsa-project.org/alsa-kernel.git
10522 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
10523 S:      Maintained
10524 F:      Documentation/sound/
10525 F:      include/sound/
10526 F:      include/uapi/sound/
10527 F:      sound/
10528
10529 SOUND - COMPRESSED AUDIO
10530 M:      Vinod Koul <vinod.koul@intel.com>
10531 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10532 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
10533 S:      Supported
10534 F:      Documentation/sound/alsa/compress_offload.txt
10535 F:      include/sound/compress_driver.h
10536 F:      include/uapi/sound/compress_*
10537 F:      sound/core/compress_offload.c
10538 F:      sound/soc/soc-compress.c
10539
10540 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
10541 M:      Liam Girdwood <lgirdwood@gmail.com>
10542 M:      Mark Brown <broonie@kernel.org>
10543 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
10544 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10545 W:      http://alsa-project.org/main/index.php/ASoC
10546 S:      Supported
10547 F:      Documentation/sound/alsa/soc/
10548 F:      sound/soc/
10549 F:      include/sound/soc*
10550
10551 SOUND - DMAENGINE HELPERS
10552 M:      Lars-Peter Clausen <lars@metafoo.de>
10553 S:      Supported
10554 F:      include/sound/dmaengine_pcm.h
10555 F:      sound/core/pcm_dmaengine.c
10556 F:      sound/soc/soc-generic-dmaengine-pcm.c
10557
10558 SP2 MEDIA DRIVER
10559 M:      Olli Salonen <olli.salonen@iki.fi>
10560 L:      linux-media@vger.kernel.org
10561 W:      https://linuxtv.org
10562 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10563 S:      Maintained
10564 F:      drivers/media/dvb-frontends/sp2*
10565
10566 SPARC + UltraSPARC (sparc/sparc64)
10567 M:      "David S. Miller" <davem@davemloft.net>
10568 L:      sparclinux@vger.kernel.org
10569 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
10570 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
10571 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
10572 S:      Maintained
10573 F:      arch/sparc/
10574 F:      drivers/sbus/
10575
10576 SPARC SERIAL DRIVERS
10577 M:      "David S. Miller" <davem@davemloft.net>
10578 L:      sparclinux@vger.kernel.org
10579 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
10580 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
10581 S:      Maintained
10582 F:      include/linux/sunserialcore.h
10583 F:      drivers/tty/serial/suncore.c
10584 F:      drivers/tty/serial/sunhv.c
10585 F:      drivers/tty/serial/sunsab.c
10586 F:      drivers/tty/serial/sunsab.h
10587 F:      drivers/tty/serial/sunsu.c
10588 F:      drivers/tty/serial/sunzilog.c
10589 F:      drivers/tty/serial/sunzilog.h
10590
10591 SPARSE CHECKER
10592 M:      "Christopher Li" <sparse@chrisli.org>
10593 L:      linux-sparse@vger.kernel.org
10594 W:      https://sparse.wiki.kernel.org/
10595 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
10596 T:      git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
10597 S:      Maintained
10598 F:      include/linux/compiler.h
10599
10600 SPEAR PLATFORM SUPPORT
10601 M:      Viresh Kumar <vireshk@kernel.org>
10602 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
10603 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10604 W:      http://www.st.com/spear
10605 S:      Maintained
10606 F:      arch/arm/boot/dts/spear*
10607 F:      arch/arm/mach-spear/
10608
10609 SPEAR CLOCK FRAMEWORK SUPPORT
10610 M:      Viresh Kumar <vireshk@kernel.org>
10611 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10612 W:      http://www.st.com/spear
10613 S:      Maintained
10614 F:      drivers/clk/spear/
10615
10616 SPI SUBSYSTEM
10617 M:      Mark Brown <broonie@kernel.org>
10618 L:      linux-spi@vger.kernel.org
10619 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
10620 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
10621 S:      Maintained
10622 F:      Documentation/spi/
10623 F:      drivers/spi/
10624 F:      include/linux/spi/
10625 F:      include/uapi/linux/spi/
10626
10627 SPIDERNET NETWORK DRIVER for CELL
10628 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
10629 L:      netdev@vger.kernel.org
10630 S:      Supported
10631 F:      Documentation/networking/spider_net.txt
10632 F:      drivers/net/ethernet/toshiba/spider_net*
10633
10634 SPU FILE SYSTEM
10635 M:      Jeremy Kerr <jk@ozlabs.org>
10636 L:      linuxppc-dev@lists.ozlabs.org
10637 W:      http://www.ibm.com/developerworks/power/cell/
10638 S:      Supported
10639 F:      Documentation/filesystems/spufs.txt
10640 F:      arch/powerpc/platforms/cell/spufs/
10641
10642 SQUASHFS FILE SYSTEM
10643 M:      Phillip Lougher <phillip@squashfs.org.uk>
10644 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
10645 W:      http://squashfs.org.uk
10646 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
10647 S:      Maintained
10648 F:      Documentation/filesystems/squashfs.txt
10649 F:      fs/squashfs/
10650
10651 SRM (Alpha) environment access
10652 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
10653 S:      Maintained
10654 F:      arch/alpha/kernel/srm_env.c
10655
10656 STABLE BRANCH
10657 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10658 L:      stable@vger.kernel.org
10659 S:      Supported
10660 F:      Documentation/stable_kernel_rules.txt
10661
10662 STAGING SUBSYSTEM
10663 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10664 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
10665 L:      devel@driverdev.osuosl.org
10666 S:      Supported
10667 F:      drivers/staging/
10668
10669 STAGING - COMEDI
10670 M:      Ian Abbott <abbotti@mev.co.uk>
10671 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
10672 S:      Odd Fixes
10673 F:      drivers/staging/comedi/
10674
10675 STAGING - FLARION FT1000 DRIVERS
10676 M:      Marek Belisko <marek.belisko@gmail.com>
10677 S:      Odd Fixes
10678 F:      drivers/staging/ft1000/
10679
10680 STAGING - INDUSTRIAL IO
10681 M:      Jonathan Cameron <jic23@kernel.org>
10682 L:      linux-iio@vger.kernel.org
10683 S:      Odd Fixes
10684 F:      drivers/staging/iio/
10685
10686 STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
10687 M:      Jarod Wilson <jarod@wilsonet.com>
10688 W:      http://www.lirc.org/
10689 S:      Odd Fixes
10690 F:      drivers/staging/media/lirc/
10691
10692 STAGING - LUSTRE PARALLEL FILESYSTEM
10693 M:      Oleg Drokin <oleg.drokin@intel.com>
10694 M:      Andreas Dilger <andreas.dilger@intel.com>
10695 L:      lustre-devel@lists.lustre.org (moderated for non-subscribers)
10696 W:      http://wiki.lustre.org/
10697 S:      Maintained
10698 F:      drivers/staging/lustre
10699
10700 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
10701 M:      Marc Dietrich <marvin24@gmx.de>
10702 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
10703 L:      linux-tegra@vger.kernel.org
10704 S:      Maintained
10705 F:      drivers/staging/nvec/
10706
10707 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
10708 M:      Jens Frederich <jfrederich@gmail.com>
10709 M:      Daniel Drake <dsd@laptop.org>
10710 M:      Jon Nettleton <jon.nettleton@gmail.com>
10711 W:      http://wiki.laptop.org/go/DCON
10712 S:      Maintained
10713 F:      drivers/staging/olpc_dcon/
10714
10715 STAGING - REALTEK RTL8712U DRIVERS
10716 M:      Larry Finger <Larry.Finger@lwfinger.net>
10717 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
10718 S:      Odd Fixes
10719 F:      drivers/staging/rtl8712/
10720
10721 STAGING - REALTEK RTL8723U WIRELESS DRIVER
10722 M:      Larry Finger <Larry.Finger@lwfinger.net>
10723 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
10724 L:      linux-wireless@vger.kernel.org
10725 S:      Maintained
10726 F:      drivers/staging/rtl8723au/
10727
10728 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
10729 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
10730 M:      Teddy Wang <teddy.wang@siliconmotion.com>
10731 M:      Sudip Mukherjee <sudip@vectorindia.org>
10732 L:      linux-fbdev@vger.kernel.org
10733 S:      Maintained
10734 F:      drivers/staging/sm750fb/
10735
10736 STAGING - SLICOSS
10737 M:      Lior Dotan <liodot@gmail.com>
10738 M:      Christopher Harrer <charrer@alacritech.com>
10739 S:      Odd Fixes
10740 F:      drivers/staging/slicoss/
10741
10742 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
10743 M:      William Hubbs <w.d.hubbs@gmail.com>
10744 M:      Chris Brannon <chris@the-brannons.com>
10745 M:      Kirk Reiser <kirk@reisers.ca>
10746 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
10747 L:      speakup@linux-speakup.org
10748 W:      http://www.linux-speakup.org/
10749 S:      Odd Fixes
10750 F:      drivers/staging/speakup/
10751
10752 STAGING - VIA VT665X DRIVERS
10753 M:      Forest Bond <forest@alittletooquiet.net>
10754 S:      Odd Fixes
10755 F:      drivers/staging/vt665?/
10756
10757 STAGING - WILC1000 WIFI DRIVER
10758 M:      Johnny Kim <johnny.kim@atmel.com>
10759 M:      Austin Shin <austin.shin@atmel.com>
10760 M:      Chris Park <chris.park@atmel.com>
10761 M:      Tony Cho <tony.cho@atmel.com>
10762 M:      Glen Lee <glen.lee@atmel.com>
10763 M:      Leo Kim <leo.kim@atmel.com>
10764 L:      linux-wireless@vger.kernel.org
10765 S:      Supported
10766 F:      drivers/staging/wilc1000/
10767
10768 STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
10769 M:      Arnaud Patard <arnaud.patard@rtp-net.org>
10770 S:      Odd Fixes
10771 F:      drivers/staging/xgifb/
10772
10773 HFI1 DRIVER
10774 M:      Mike Marciniszyn <infinipath@intel.com>
10775 L:      linux-rdma@vger.kernel.org
10776 S:      Supported
10777 F:      drivers/staging/rdma/hfi1
10778
10779 STARFIRE/DURALAN NETWORK DRIVER
10780 M:      Ion Badulescu <ionut@badula.org>
10781 S:      Odd Fixes
10782 F:      drivers/net/ethernet/adaptec/starfire*
10783
10784 SUN3/3X
10785 M:      Sam Creasey <sammy@sammy.net>
10786 W:      http://sammy.net/sun3/
10787 S:      Maintained
10788 F:      arch/m68k/kernel/*sun3*
10789 F:      arch/m68k/sun3*/
10790 F:      arch/m68k/include/asm/sun3*
10791 F:      drivers/net/ethernet/i825xx/sun3*
10792
10793 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
10794 M:      Hans de Goede <hdegoede@redhat.com>
10795 L:      linux-input@vger.kernel.org
10796 S:      Maintained
10797 F:      Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
10798 F:      drivers/input/keyboard/sun4i-lradc-keys.c
10799
10800 SUNDANCE NETWORK DRIVER
10801 M:      Denis Kirjanov <kda@linux-powerpc.org>
10802 L:      netdev@vger.kernel.org
10803 S:      Maintained
10804 F:      drivers/net/ethernet/dlink/sundance.c
10805
10806 SUPERH
10807 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
10808 M:      Rich Felker <dalias@libc.org>
10809 L:      linux-sh@vger.kernel.org
10810 Q:      http://patchwork.kernel.org/project/linux-sh/list/
10811 S:      Maintained
10812 F:      Documentation/sh/
10813 F:      arch/sh/
10814 F:      drivers/sh/
10815
10816 SUSPEND TO RAM
10817 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
10818 M:      Len Brown <len.brown@intel.com>
10819 M:      Pavel Machek <pavel@ucw.cz>
10820 L:      linux-pm@vger.kernel.org
10821 S:      Supported
10822 F:      Documentation/power/
10823 F:      arch/x86/kernel/acpi/
10824 F:      drivers/base/power/
10825 F:      kernel/power/
10826 F:      include/linux/suspend.h
10827 F:      include/linux/freezer.h
10828 F:      include/linux/pm.h
10829
10830 SVGA HANDLING
10831 M:      Martin Mares <mj@ucw.cz>
10832 L:      linux-video@atrey.karlin.mff.cuni.cz
10833 S:      Maintained
10834 F:      Documentation/svga.txt
10835 F:      arch/x86/boot/video*
10836
10837 SWIOTLB SUBSYSTEM
10838 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10839 L:      linux-kernel@vger.kernel.org
10840 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
10841 S:      Supported
10842 F:      lib/swiotlb.c
10843 F:      arch/*/kernel/pci-swiotlb.c
10844 F:      include/linux/swiotlb.h
10845
10846 SWITCHDEV
10847 M:      Jiri Pirko <jiri@resnulli.us>
10848 L:      netdev@vger.kernel.org
10849 S:      Supported
10850 F:      net/switchdev/
10851 F:      include/net/switchdev.h
10852
10853 SYNOPSYS ARC ARCHITECTURE
10854 M:      Vineet Gupta <vgupta@synopsys.com>
10855 L:      linux-snps-arc@lists.infradead.org
10856 S:      Supported
10857 F:      arch/arc/
10858 F:      Documentation/devicetree/bindings/arc/*
10859 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
10860 F:      drivers/tty/serial/arc_uart.c
10861 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
10862
10863 SYNOPSYS ARC SDP platform support
10864 M:      Alexey Brodkin <abrodkin@synopsys.com>
10865 S:      Supported
10866 F:      arch/arc/plat-axs10x
10867 F:      arch/arc/boot/dts/ax*
10868 F:      Documentation/devicetree/bindings/arc/axs10*
10869
10870 SYSTEM CONFIGURATION (SYSCON)
10871 M:      Lee Jones <lee.jones@linaro.org>
10872 M:      Arnd Bergmann <arnd@arndb.de>
10873 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
10874 S:      Supported
10875 F:      drivers/mfd/syscon.c
10876
10877 SYSV FILESYSTEM
10878 M:      Christoph Hellwig <hch@infradead.org>
10879 S:      Maintained
10880 F:      Documentation/filesystems/sysv-fs.txt
10881 F:      fs/sysv/
10882 F:      include/linux/sysv_fs.h
10883
10884 TARGET SUBSYSTEM
10885 M:      "Nicholas A. Bellinger" <nab@linux-iscsi.org>
10886 L:      linux-scsi@vger.kernel.org
10887 L:      target-devel@vger.kernel.org
10888 W:      http://www.linux-iscsi.org
10889 W:      http://groups.google.com/group/linux-iscsi-target-dev
10890 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10891 S:      Supported
10892 F:      drivers/target/
10893 F:      include/target/
10894 F:      Documentation/target/
10895
10896 TASKSTATS STATISTICS INTERFACE
10897 M:      Balbir Singh <bsingharora@gmail.com>
10898 S:      Maintained
10899 F:      Documentation/accounting/taskstats*
10900 F:      include/linux/taskstats*
10901 F:      kernel/taskstats.c
10902
10903 TC CLASSIFIER
10904 M:      Jamal Hadi Salim <jhs@mojatatu.com>
10905 L:      netdev@vger.kernel.org
10906 S:      Maintained
10907 F:      include/net/pkt_cls.h
10908 F:      include/uapi/linux/pkt_cls.h
10909 F:      net/sched/
10910
10911 TCP LOW PRIORITY MODULE
10912 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
10913 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
10914 W:      http://tcp-lp-mod.sourceforge.net/
10915 S:      Maintained
10916 F:      net/ipv4/tcp_lp.c
10917
10918 TDA10071 MEDIA DRIVER
10919 M:      Antti Palosaari <crope@iki.fi>
10920 L:      linux-media@vger.kernel.org
10921 W:      https://linuxtv.org
10922 W:      http://palosaari.fi/linux/
10923 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10924 T:      git git://linuxtv.org/anttip/media_tree.git
10925 S:      Maintained
10926 F:      drivers/media/dvb-frontends/tda10071*
10927
10928 TDA18212 MEDIA DRIVER
10929 M:      Antti Palosaari <crope@iki.fi>
10930 L:      linux-media@vger.kernel.org
10931 W:      https://linuxtv.org
10932 W:      http://palosaari.fi/linux/
10933 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10934 T:      git git://linuxtv.org/anttip/media_tree.git
10935 S:      Maintained
10936 F:      drivers/media/tuners/tda18212*
10937
10938 TDA18218 MEDIA DRIVER
10939 M:      Antti Palosaari <crope@iki.fi>
10940 L:      linux-media@vger.kernel.org
10941 W:      https://linuxtv.org
10942 W:      http://palosaari.fi/linux/
10943 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10944 T:      git git://linuxtv.org/anttip/media_tree.git
10945 S:      Maintained
10946 F:      drivers/media/tuners/tda18218*
10947
10948 TDA18271 MEDIA DRIVER
10949 M:      Michael Krufky <mkrufky@linuxtv.org>
10950 L:      linux-media@vger.kernel.org
10951 W:      https://linuxtv.org
10952 W:      http://github.com/mkrufky
10953 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10954 T:      git git://linuxtv.org/mkrufky/tuners.git
10955 S:      Maintained
10956 F:      drivers/media/tuners/tda18271*
10957
10958 TDA827x MEDIA DRIVER
10959 M:      Michael Krufky <mkrufky@linuxtv.org>
10960 L:      linux-media@vger.kernel.org
10961 W:      https://linuxtv.org
10962 W:      http://github.com/mkrufky
10963 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10964 T:      git git://linuxtv.org/mkrufky/tuners.git
10965 S:      Maintained
10966 F:      drivers/media/tuners/tda8290.*
10967
10968 TDA8290 MEDIA DRIVER
10969 M:      Michael Krufky <mkrufky@linuxtv.org>
10970 L:      linux-media@vger.kernel.org
10971 W:      https://linuxtv.org
10972 W:      http://github.com/mkrufky
10973 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10974 T:      git git://linuxtv.org/mkrufky/tuners.git
10975 S:      Maintained
10976 F:      drivers/media/tuners/tda8290.*
10977
10978 TDA9840 MEDIA DRIVER
10979 M:      Hans Verkuil <hverkuil@xs4all.nl>
10980 L:      linux-media@vger.kernel.org
10981 T:      git git://linuxtv.org/media_tree.git
10982 W:      https://linuxtv.org
10983 S:      Maintained
10984 F:      drivers/media/i2c/tda9840*
10985
10986 TEA5761 TUNER DRIVER
10987 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10988 L:      linux-media@vger.kernel.org
10989 W:      https://linuxtv.org
10990 T:      git git://linuxtv.org/media_tree.git
10991 S:      Odd fixes
10992 F:      drivers/media/tuners/tea5761.*
10993
10994 TEA5767 TUNER DRIVER
10995 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10996 L:      linux-media@vger.kernel.org
10997 W:      https://linuxtv.org
10998 T:      git git://linuxtv.org/media_tree.git
10999 S:      Maintained
11000 F:      drivers/media/tuners/tea5767.*
11001
11002 TEA6415C MEDIA DRIVER
11003 M:      Hans Verkuil <hverkuil@xs4all.nl>
11004 L:      linux-media@vger.kernel.org
11005 T:      git git://linuxtv.org/media_tree.git
11006 W:      https://linuxtv.org
11007 S:      Maintained
11008 F:      drivers/media/i2c/tea6415c*
11009
11010 TEA6420 MEDIA DRIVER
11011 M:      Hans Verkuil <hverkuil@xs4all.nl>
11012 L:      linux-media@vger.kernel.org
11013 T:      git git://linuxtv.org/media_tree.git
11014 W:      https://linuxtv.org
11015 S:      Maintained
11016 F:      drivers/media/i2c/tea6420*
11017
11018 TEAM DRIVER
11019 M:      Jiri Pirko <jiri@resnulli.us>
11020 L:      netdev@vger.kernel.org
11021 S:      Supported
11022 F:      drivers/net/team/
11023 F:      include/linux/if_team.h
11024 F:      include/uapi/linux/if_team.h
11025
11026 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
11027 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
11028 S:      Maintained
11029 F:      arch/x86/platform/ts5500/
11030
11031 TECHNOTREND USB IR RECEIVER
11032 M:      Sean Young <sean@mess.org>
11033 L:      linux-media@vger.kernel.org
11034 S:      Maintained
11035 F:      drivers/media/rc/ttusbir.c
11036
11037 TEGRA ARCHITECTURE SUPPORT
11038 M:      Stephen Warren <swarren@wwwdotorg.org>
11039 M:      Thierry Reding <thierry.reding@gmail.com>
11040 M:      Alexandre Courbot <gnurou@gmail.com>
11041 L:      linux-tegra@vger.kernel.org
11042 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
11043 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
11044 S:      Supported
11045 N:      [^a-z]tegra
11046
11047 TEGRA CLOCK DRIVER
11048 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
11049 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
11050 S:      Supported
11051 F:      drivers/clk/tegra/
11052
11053 TEGRA DMA DRIVERS
11054 M:      Laxman Dewangan <ldewangan@nvidia.com>
11055 M:      Jon Hunter <jonathanh@nvidia.com>
11056 S:      Supported
11057 F:      drivers/dma/tegra*
11058
11059 TEGRA I2C DRIVER
11060 M:      Laxman Dewangan <ldewangan@nvidia.com>
11061 S:      Supported
11062 F:      drivers/i2c/busses/i2c-tegra.c
11063
11064 TEGRA IOMMU DRIVERS
11065 M:      Hiroshi Doyu <hdoyu@nvidia.com>
11066 S:      Supported
11067 F:      drivers/iommu/tegra*
11068
11069 TEGRA KBC DRIVER
11070 M:      Rakesh Iyer <riyer@nvidia.com>
11071 M:      Laxman Dewangan <ldewangan@nvidia.com>
11072 S:      Supported
11073 F:      drivers/input/keyboard/tegra-kbc.c
11074
11075 TEGRA PWM DRIVER
11076 M:      Thierry Reding <thierry.reding@gmail.com>
11077 S:      Supported
11078 F:      drivers/pwm/pwm-tegra.c
11079
11080 TEGRA SERIAL DRIVER
11081 M:      Laxman Dewangan <ldewangan@nvidia.com>
11082 S:      Supported
11083 F:      drivers/tty/serial/serial-tegra.c
11084
11085 TEGRA SPI DRIVER
11086 M:      Laxman Dewangan <ldewangan@nvidia.com>
11087 S:      Supported
11088 F:      drivers/spi/spi-tegra*
11089
11090 TEHUTI ETHERNET DRIVER
11091 M:      Andy Gospodarek <andy@greyhouse.net>
11092 L:      netdev@vger.kernel.org
11093 S:      Supported
11094 F:      drivers/net/ethernet/tehuti/*
11095
11096 Telecom Clock Driver for MCPL0010
11097 M:      Mark Gross <mark.gross@intel.com>
11098 S:      Supported
11099 F:      drivers/char/tlclk.c
11100
11101 TENSILICA XTENSA PORT (xtensa)
11102 M:      Chris Zankel <chris@zankel.net>
11103 M:      Max Filippov <jcmvbkbc@gmail.com>
11104 L:      linux-xtensa@linux-xtensa.org
11105 T:      git git://github.com/czankel/xtensa-linux.git
11106 S:      Maintained
11107 F:      arch/xtensa/
11108 F:      drivers/irqchip/irq-xtensa-*
11109
11110 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
11111 M:      Hans Verkuil <hverkuil@xs4all.nl>
11112 L:      linux-media@vger.kernel.org
11113 T:      git git://linuxtv.org/media_tree.git
11114 W:      https://linuxtv.org
11115 S:      Maintained
11116 F:      drivers/media/radio/radio-raremono.c
11117
11118 THERMAL
11119 M:      Zhang Rui <rui.zhang@intel.com>
11120 M:      Eduardo Valentin <edubezval@gmail.com>
11121 L:      linux-pm@vger.kernel.org
11122 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
11123 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
11124 Q:      https://patchwork.kernel.org/project/linux-pm/list/
11125 S:      Supported
11126 F:      drivers/thermal/
11127 F:      include/linux/thermal.h
11128 F:      include/uapi/linux/thermal.h
11129 F:      include/linux/cpu_cooling.h
11130 F:      Documentation/devicetree/bindings/thermal/
11131
11132 THERMAL/CPU_COOLING
11133 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
11134 M:      Viresh Kumar <viresh.kumar@linaro.org>
11135 M:      Javi Merino <javi.merino@arm.com>
11136 L:      linux-pm@vger.kernel.org
11137 S:      Supported
11138 F:      Documentation/thermal/cpu-cooling-api.txt
11139 F:      drivers/thermal/cpu_cooling.c
11140 F:      include/linux/cpu_cooling.h
11141
11142 THINGM BLINK(1) USB RGB LED DRIVER
11143 M:      Vivien Didelot <vivien.didelot@savoirfairelinux.com>
11144 S:      Maintained
11145 F:      drivers/hid/hid-thingm.c
11146
11147 THINKPAD ACPI EXTRAS DRIVER
11148 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
11149 L:      ibm-acpi-devel@lists.sourceforge.net
11150 L:      platform-driver-x86@vger.kernel.org
11151 W:      http://ibm-acpi.sourceforge.net
11152 W:      http://thinkwiki.org/wiki/Ibm-acpi
11153 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
11154 S:      Maintained
11155 F:      drivers/platform/x86/thinkpad_acpi.c
11156
11157 TI BANDGAP AND THERMAL DRIVER
11158 M:      Eduardo Valentin <edubezval@gmail.com>
11159 L:      linux-pm@vger.kernel.org
11160 L:      linux-omap@vger.kernel.org
11161 S:      Maintained
11162 F:      drivers/thermal/ti-soc-thermal/
11163
11164 TI VPE/CAL DRIVERS
11165 M:      Benoit Parrot <bparrot@ti.com>
11166 L:      linux-media@vger.kernel.org
11167 W:      http://linuxtv.org/
11168 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11169 S:      Maintained
11170 F:      drivers/media/platform/ti-vpe/
11171
11172 TI CDCE706 CLOCK DRIVER
11173 M:      Max Filippov <jcmvbkbc@gmail.com>
11174 S:      Maintained
11175 F:      drivers/clk/clk-cdce706.c
11176
11177 TI CLOCK DRIVER
11178 M:      Tero Kristo <t-kristo@ti.com>
11179 L:      linux-omap@vger.kernel.org
11180 S:      Maintained
11181 F:      drivers/clk/ti/
11182 F:      include/linux/clk/ti.h
11183
11184 TI ETHERNET SWITCH DRIVER (CPSW)
11185 M:      Mugunthan V N <mugunthanvnm@ti.com>
11186 R:      Grygorii Strashko <grygorii.strashko@ti.com>
11187 L:      linux-omap@vger.kernel.org
11188 L:      netdev@vger.kernel.org
11189 S:      Maintained
11190 F:      drivers/net/ethernet/ti/cpsw*
11191 F:      drivers/net/ethernet/ti/davinci*
11192
11193 TI FLASH MEDIA INTERFACE DRIVER
11194 M:      Alex Dubov <oakad@yahoo.com>
11195 S:      Maintained
11196 F:      drivers/misc/tifm*
11197 F:      drivers/mmc/host/tifm_sd.c
11198 F:      include/linux/tifm.h
11199
11200 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
11201 M:      Santosh Shilimkar <ssantosh@kernel.org>
11202 L:      linux-kernel@vger.kernel.org
11203 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11204 S:      Maintained
11205 F:      drivers/soc/ti/*
11206 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
11207
11208
11209 TI LM49xxx FAMILY ASoC CODEC DRIVERS
11210 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
11211 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
11212 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11213 S:      Maintained
11214 F:      sound/soc/codecs/lm49453*
11215 F:      sound/soc/codecs/isabelle*
11216
11217 TI LP855x BACKLIGHT DRIVER
11218 M:      Milo Kim <milo.kim@ti.com>
11219 S:      Maintained
11220 F:      Documentation/backlight/lp855x-driver.txt
11221 F:      drivers/video/backlight/lp855x_bl.c
11222 F:      include/linux/platform_data/lp855x.h
11223
11224 TI LP8727 CHARGER DRIVER
11225 M:      Milo Kim <milo.kim@ti.com>
11226 S:      Maintained
11227 F:      drivers/power/lp8727_charger.c
11228 F:      include/linux/platform_data/lp8727.h
11229
11230 TI LP8788 MFD DRIVER
11231 M:      Milo Kim <milo.kim@ti.com>
11232 S:      Maintained
11233 F:      drivers/iio/adc/lp8788_adc.c
11234 F:      drivers/leds/leds-lp8788.c
11235 F:      drivers/mfd/lp8788*.c
11236 F:      drivers/power/lp8788-charger.c
11237 F:      drivers/regulator/lp8788-*.c
11238 F:      include/linux/mfd/lp8788*.h
11239
11240 TI NETCP ETHERNET DRIVER
11241 M:      Wingman Kwok <w-kwok2@ti.com>
11242 M:      Murali Karicheri <m-karicheri2@ti.com>
11243 L:      netdev@vger.kernel.org
11244 S:      Maintained
11245 F:      drivers/net/ethernet/ti/netcp*
11246
11247 TI TAS571X FAMILY ASoC CODEC DRIVER
11248 M:      Kevin Cernekee <cernekee@chromium.org>
11249 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11250 S:      Odd Fixes
11251 F:      sound/soc/codecs/tas571x*
11252
11253 TI TWL4030 SERIES SOC CODEC DRIVER
11254 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
11255 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11256 S:      Maintained
11257 F:      sound/soc/codecs/twl4030*
11258
11259 TI WILINK WIRELESS DRIVERS
11260 L:      linux-wireless@vger.kernel.org
11261 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
11262 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
11263 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
11264 S:      Orphan
11265 F:      drivers/net/wireless/ti/
11266 F:      include/linux/wl12xx.h
11267
11268 TIPC NETWORK LAYER
11269 M:      Jon Maloy <jon.maloy@ericsson.com>
11270 M:      Ying Xue <ying.xue@windriver.com>
11271 L:      netdev@vger.kernel.org (core kernel code)
11272 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
11273 W:      http://tipc.sourceforge.net/
11274 S:      Maintained
11275 F:      include/uapi/linux/tipc*.h
11276 F:      net/tipc/
11277
11278 TILE ARCHITECTURE
11279 M:      Chris Metcalf <cmetcalf@mellanox.com>
11280 W:      http://www.mellanox.com/repository/solutions/tile-scm/
11281 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cmetcalf/linux-tile.git
11282 S:      Supported
11283 F:      arch/tile/
11284 F:      drivers/char/tile-srom.c
11285 F:      drivers/edac/tile_edac.c
11286 F:      drivers/net/ethernet/tile/
11287 F:      drivers/rtc/rtc-tile.c
11288 F:      drivers/tty/hvc/hvc_tile.c
11289 F:      drivers/tty/serial/tilegx.c
11290 F:      drivers/usb/host/*-tilegx.c
11291 F:      include/linux/usb/tilegx.h
11292
11293 TLAN NETWORK DRIVER
11294 M:      Samuel Chessman <chessman@tux.org>
11295 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
11296 W:      http://sourceforge.net/projects/tlan/
11297 S:      Maintained
11298 F:      Documentation/networking/tlan.txt
11299 F:      drivers/net/ethernet/ti/tlan.*
11300
11301 TOMOYO SECURITY MODULE
11302 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
11303 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
11304 L:      tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
11305 L:      tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
11306 L:      tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
11307 L:      tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
11308 W:      http://tomoyo.sourceforge.jp/
11309 T:      quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
11310 S:      Maintained
11311 F:      security/tomoyo/
11312
11313 TOPSTAR LAPTOP EXTRAS DRIVER
11314 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
11315 L:      platform-driver-x86@vger.kernel.org
11316 S:      Maintained
11317 F:      drivers/platform/x86/topstar-laptop.c
11318
11319 TOSHIBA ACPI EXTRAS DRIVER
11320 M:      Azael Avalos <coproscefalo@gmail.com>
11321 L:      platform-driver-x86@vger.kernel.org
11322 S:      Maintained
11323 F:      drivers/platform/x86/toshiba_acpi.c
11324
11325 TOSHIBA BLUETOOTH DRIVER
11326 M:      Azael Avalos <coproscefalo@gmail.com>
11327 L:      platform-driver-x86@vger.kernel.org
11328 S:      Maintained
11329 F:      drivers/platform/x86/toshiba_bluetooth.c
11330
11331 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
11332 M:      Azael Avalos <coproscefalo@gmail.com>
11333 L:      platform-driver-x86@vger.kernel.org
11334 S:      Maintained
11335 F:      drivers/platform/x86/toshiba_haps.c
11336
11337 TOSHIBA WMI HOTKEYS DRIVER
11338 M:      Azael Avalos <coproscefalo@gmail.com>
11339 L:      platform-driver-x86@vger.kernel.org
11340 S:      Maintained
11341 F:      drivers/platform/x86/toshiba-wmi.c
11342
11343 TOSHIBA SMM DRIVER
11344 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
11345 W:      http://www.buzzard.org.uk/toshiba/
11346 S:      Maintained
11347 F:      drivers/char/toshiba.c
11348 F:      include/linux/toshiba.h
11349 F:      include/uapi/linux/toshiba.h
11350
11351 TOSHIBA TC358743 DRIVER
11352 M:      Mats Randgaard <matrandg@cisco.com>
11353 L:      linux-media@vger.kernel.org
11354 S:      Maintained
11355 F:      drivers/media/i2c/tc358743*
11356 F:      include/media/i2c/tc358743.h
11357
11358 TMIO/SDHI MMC DRIVER
11359 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
11360 L:      linux-mmc@vger.kernel.org
11361 S:      Supported
11362 F:      drivers/mmc/host/tmio_mmc*
11363 F:      drivers/mmc/host/sh_mobile_sdhi.c
11364 F:      include/linux/mfd/tmio.h
11365
11366 TMP401 HARDWARE MONITOR DRIVER
11367 M:      Guenter Roeck <linux@roeck-us.net>
11368 L:      linux-hwmon@vger.kernel.org
11369 S:      Maintained
11370 F:      Documentation/hwmon/tmp401
11371 F:      drivers/hwmon/tmp401.c
11372
11373 TMPFS (SHMEM FILESYSTEM)
11374 M:      Hugh Dickins <hughd@google.com>
11375 L:      linux-mm@kvack.org
11376 S:      Maintained
11377 F:      include/linux/shmem_fs.h
11378 F:      mm/shmem.c
11379
11380 TM6000 VIDEO4LINUX DRIVER
11381 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
11382 L:      linux-media@vger.kernel.org
11383 W:      https://linuxtv.org
11384 T:      git git://linuxtv.org/media_tree.git
11385 S:      Odd fixes
11386 F:      drivers/media/usb/tm6000/
11387
11388 TW68 VIDEO4LINUX DRIVER
11389 M:      Hans Verkuil <hverkuil@xs4all.nl>
11390 L:      linux-media@vger.kernel.org
11391 T:      git git://linuxtv.org/media_tree.git
11392 W:      https://linuxtv.org
11393 S:      Odd Fixes
11394 F:      drivers/media/pci/tw68/
11395
11396 TW686X VIDEO4LINUX DRIVER
11397 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
11398 L:      linux-media@vger.kernel.org
11399 T:      git git://linuxtv.org/media_tree.git
11400 W:      http://linuxtv.org
11401 S:      Maintained
11402 F:      drivers/media/pci/tw686x/
11403
11404 TPM DEVICE DRIVER
11405 M:      Peter Huewe <peterhuewe@gmx.de>
11406 M:      Marcel Selhorst <tpmdd@selhorst.net>
11407 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
11408 R:      Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
11409 W:      http://tpmdd.sourceforge.net
11410 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
11411 Q:      https://patchwork.kernel.org/project/tpmdd-devel/list/
11412 T:      git git://git.infradead.org/users/jjs/linux-tpmdd.git
11413 S:      Maintained
11414 F:      drivers/char/tpm/
11415
11416 TPM IBM_VTPM DEVICE DRIVER
11417 M:      Ashley Lai <ashleydlai@gmail.com>
11418 W:      http://tpmdd.sourceforge.net
11419 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
11420 S:      Maintained
11421 F:      drivers/char/tpm/tpm_ibmvtpm*
11422
11423 TRACING
11424 M:      Steven Rostedt <rostedt@goodmis.org>
11425 M:      Ingo Molnar <mingo@redhat.com>
11426 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
11427 S:      Maintained
11428 F:      Documentation/trace/ftrace.txt
11429 F:      arch/*/*/*/ftrace.h
11430 F:      arch/*/kernel/ftrace.c
11431 F:      include/*/ftrace.h
11432 F:      include/linux/trace*.h
11433 F:      include/trace/
11434 F:      kernel/trace/
11435 F:      tools/testing/selftests/ftrace/
11436
11437 TRACING MMIO ACCESSES (MMIOTRACE)
11438 M:      Steven Rostedt <rostedt@goodmis.org>
11439 M:      Ingo Molnar <mingo@kernel.org>
11440 R:      Karol Herbst <karolherbst@gmail.com>
11441 R:      Pekka Paalanen <ppaalanen@gmail.com>
11442 S:      Maintained
11443 L:      linux-kernel@vger.kernel.org
11444 L:      nouveau@lists.freedesktop.org
11445 F:      kernel/trace/trace_mmiotrace.c
11446 F:      include/linux/mmiotrace.h
11447 F:      arch/x86/mm/kmmio.c
11448 F:      arch/x86/mm/mmio-mod.c
11449 F:      arch/x86/mm/testmmiotrace.c
11450
11451 TRIVIAL PATCHES
11452 M:      Jiri Kosina <trivial@kernel.org>
11453 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
11454 S:      Maintained
11455 K:      ^Subject:.*(?i)trivial
11456
11457 TTY LAYER
11458 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11459 M:      Jiri Slaby <jslaby@suse.com>
11460 S:      Supported
11461 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
11462 F:      Documentation/serial/
11463 F:      drivers/tty/
11464 F:      drivers/tty/serial/serial_core.c
11465 F:      include/linux/serial_core.h
11466 F:      include/linux/serial.h
11467 F:      include/linux/tty.h
11468 F:      include/uapi/linux/serial_core.h
11469 F:      include/uapi/linux/serial.h
11470 F:      include/uapi/linux/tty.h
11471
11472 TUA9001 MEDIA DRIVER
11473 M:      Antti Palosaari <crope@iki.fi>
11474 L:      linux-media@vger.kernel.org
11475 W:      https://linuxtv.org
11476 W:      http://palosaari.fi/linux/
11477 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11478 T:      git git://linuxtv.org/anttip/media_tree.git
11479 S:      Maintained
11480 F:      drivers/media/tuners/tua9001*
11481
11482 TULIP NETWORK DRIVERS
11483 L:      netdev@vger.kernel.org
11484 L:      linux-parisc@vger.kernel.org
11485 S:      Orphan
11486 F:      drivers/net/ethernet/dec/tulip/
11487
11488 TUN/TAP driver
11489 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
11490 W:      http://vtun.sourceforge.net/tun
11491 S:      Maintained
11492 F:      Documentation/networking/tuntap.txt
11493 F:      arch/um/os-Linux/drivers/
11494
11495 TURBOCHANNEL SUBSYSTEM
11496 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
11497 M:      Ralf Baechle <ralf@linux-mips.org>
11498 L:      linux-mips@linux-mips.org
11499 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
11500 S:      Maintained
11501 F:      drivers/tc/
11502 F:      include/linux/tc.h
11503
11504 U14-34F SCSI DRIVER
11505 M:      Dario Ballabio <ballabio_dario@emc.com>
11506 L:      linux-scsi@vger.kernel.org
11507 S:      Maintained
11508 F:      drivers/scsi/u14-34f.c
11509
11510 UBI FILE SYSTEM (UBIFS)
11511 M:      Richard Weinberger <richard@nod.at>
11512 M:      Artem Bityutskiy <dedekind1@gmail.com>
11513 M:      Adrian Hunter <adrian.hunter@intel.com>
11514 L:      linux-mtd@lists.infradead.org
11515 T:      git git://git.infradead.org/ubifs-2.6.git
11516 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
11517 S:      Supported
11518 F:      Documentation/filesystems/ubifs.txt
11519 F:      fs/ubifs/
11520
11521 UCLINUX (M68KNOMMU AND COLDFIRE)
11522 M:      Greg Ungerer <gerg@linux-m68k.org>
11523 W:      http://www.linux-m68k.org/
11524 W:      http://www.uclinux.org/
11525 L:      linux-m68k@lists.linux-m68k.org
11526 L:      uclinux-dev@uclinux.org  (subscribers-only)
11527 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
11528 S:      Maintained
11529 F:      arch/m68k/coldfire/
11530 F:      arch/m68k/68*/
11531 F:      arch/m68k/*/*_no.*
11532 F:      arch/m68k/include/asm/*_no.*
11533
11534 UDF FILESYSTEM
11535 M:      Jan Kara <jack@suse.com>
11536 S:      Maintained
11537 F:      Documentation/filesystems/udf.txt
11538 F:      fs/udf/
11539
11540 UFS FILESYSTEM
11541 M:      Evgeniy Dushistov <dushistov@mail.ru>
11542 S:      Maintained
11543 F:      Documentation/filesystems/ufs.txt
11544 F:      fs/ufs/
11545
11546 UHID USERSPACE HID IO DRIVER:
11547 M:      David Herrmann <dh.herrmann@googlemail.com>
11548 L:      linux-input@vger.kernel.org
11549 S:      Maintained
11550 F:      drivers/hid/uhid.c
11551 F:      include/uapi/linux/uhid.h
11552
11553 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
11554 L:      linux-usb@vger.kernel.org
11555 S:      Orphan
11556 F:      drivers/uwb/
11557 F:      include/linux/uwb.h
11558 F:      include/linux/uwb/
11559
11560 UNICORE32 ARCHITECTURE:
11561 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
11562 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
11563 S:      Maintained
11564 T:      git git://github.com/gxt/linux.git
11565 F:      arch/unicore32/
11566
11567 UNIFDEF
11568 M:      Tony Finch <dot@dotat.at>
11569 W:      http://dotat.at/prog/unifdef
11570 S:      Maintained
11571 F:      scripts/unifdef.c
11572
11573 UNIFORM CDROM DRIVER
11574 M:      Jens Axboe <axboe@kernel.dk>
11575 W:      http://www.kernel.dk
11576 S:      Maintained
11577 F:      Documentation/cdrom/
11578 F:      drivers/cdrom/cdrom.c
11579 F:      include/linux/cdrom.h
11580 F:      include/uapi/linux/cdrom.h
11581
11582 UNISYS S-PAR DRIVERS
11583 M:      David Kershner <david.kershner@unisys.com>
11584 L:      sparmaintainer@unisys.com (Unisys internal)
11585 S:      Supported
11586 F:      drivers/staging/unisys/
11587
11588 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
11589 M:      Vinayak Holikatti <vinholikatti@gmail.com>
11590 L:      linux-scsi@vger.kernel.org
11591 S:      Supported
11592 F:      Documentation/scsi/ufs.txt
11593 F:      drivers/scsi/ufs/
11594
11595 UNSORTED BLOCK IMAGES (UBI)
11596 M:      Artem Bityutskiy <dedekind1@gmail.com>
11597 M:      Richard Weinberger <richard@nod.at>
11598 W:      http://www.linux-mtd.infradead.org/
11599 L:      linux-mtd@lists.infradead.org
11600 T:      git git://git.infradead.org/ubifs-2.6.git
11601 S:      Supported
11602 F:      drivers/mtd/ubi/
11603 F:      include/linux/mtd/ubi.h
11604 F:      include/uapi/mtd/ubi-user.h
11605
11606 USB ACM DRIVER
11607 M:      Oliver Neukum <oneukum@suse.com>
11608 L:      linux-usb@vger.kernel.org
11609 S:      Maintained
11610 F:      Documentation/usb/acm.txt
11611 F:      drivers/usb/class/cdc-acm.*
11612
11613 USB AR5523 WIRELESS DRIVER
11614 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
11615 L:      linux-wireless@vger.kernel.org
11616 S:      Maintained
11617 F:      drivers/net/wireless/ath/ar5523/
11618
11619 USB ATTACHED SCSI
11620 M:      Hans de Goede <hdegoede@redhat.com>
11621 M:      Gerd Hoffmann <kraxel@redhat.com>
11622 L:      linux-usb@vger.kernel.org
11623 L:      linux-scsi@vger.kernel.org
11624 S:      Maintained
11625 F:      drivers/usb/storage/uas.c
11626
11627 USB CDC ETHERNET DRIVER
11628 M:      Oliver Neukum <oliver@neukum.org>
11629 L:      linux-usb@vger.kernel.org
11630 S:      Maintained
11631 F:      drivers/net/usb/cdc_*.c
11632 F:      include/uapi/linux/usb/cdc.h
11633
11634 USB CHAOSKEY DRIVER
11635 M:      Keith Packard <keithp@keithp.com>
11636 L:      linux-usb@vger.kernel.org
11637 S:      Maintained
11638 F:      drivers/usb/misc/chaoskey.c
11639
11640 USB CYPRESS C67X00 DRIVER
11641 M:      Peter Korsgaard <jacmet@sunsite.dk>
11642 L:      linux-usb@vger.kernel.org
11643 S:      Maintained
11644 F:      drivers/usb/c67x00/
11645
11646 USB DAVICOM DM9601 DRIVER
11647 M:      Peter Korsgaard <jacmet@sunsite.dk>
11648 L:      netdev@vger.kernel.org
11649 W:      http://www.linux-usb.org/usbnet
11650 S:      Maintained
11651 F:      drivers/net/usb/dm9601.c
11652
11653 USB DIAMOND RIO500 DRIVER
11654 M:      Cesar Miquel <miquel@df.uba.ar>
11655 L:      rio500-users@lists.sourceforge.net
11656 W:      http://rio500.sourceforge.net
11657 S:      Maintained
11658 F:      drivers/usb/misc/rio500*
11659
11660 USB EHCI DRIVER
11661 M:      Alan Stern <stern@rowland.harvard.edu>
11662 L:      linux-usb@vger.kernel.org
11663 S:      Maintained
11664 F:      Documentation/usb/ehci.txt
11665 F:      drivers/usb/host/ehci*
11666
11667 USB GADGET/PERIPHERAL SUBSYSTEM
11668 M:      Felipe Balbi <balbi@kernel.org>
11669 L:      linux-usb@vger.kernel.org
11670 W:      http://www.linux-usb.org/gadget
11671 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
11672 S:      Maintained
11673 F:      drivers/usb/gadget/
11674 F:      include/linux/usb/gadget*
11675
11676 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
11677 M:      Jiri Kosina <jikos@kernel.org>
11678 R:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
11679 L:      linux-usb@vger.kernel.org
11680 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
11681 S:      Maintained
11682 F:      Documentation/hid/hiddev.txt
11683 F:      drivers/hid/usbhid/
11684
11685 USB ISP116X DRIVER
11686 M:      Olav Kongas <ok@artecdesign.ee>
11687 L:      linux-usb@vger.kernel.org
11688 S:      Maintained
11689 F:      drivers/usb/host/isp116x*
11690 F:      include/linux/usb/isp116x.h
11691
11692 USB LAN78XX ETHERNET DRIVER
11693 M:      Woojung Huh <woojung.huh@microchip.com>
11694 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11695 L:      netdev@vger.kernel.org
11696 S:      Maintained
11697 F:      drivers/net/usb/lan78xx.*
11698
11699 USB MASS STORAGE DRIVER
11700 M:      Matthew Dharm <mdharm-usb@one-eyed-alien.net>
11701 L:      linux-usb@vger.kernel.org
11702 L:      usb-storage@lists.one-eyed-alien.net
11703 S:      Maintained
11704 W:      http://www.one-eyed-alien.net/~mdharm/linux-usb/
11705 F:      drivers/usb/storage/
11706
11707 USB MIDI DRIVER
11708 M:      Clemens Ladisch <clemens@ladisch.de>
11709 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11710 T:      git git://git.alsa-project.org/alsa-kernel.git
11711 S:      Maintained
11712 F:      sound/usb/midi.*
11713
11714 USB NETWORKING DRIVERS
11715 L:      linux-usb@vger.kernel.org
11716 S:      Odd Fixes
11717 F:      drivers/net/usb/
11718
11719 USB OHCI DRIVER
11720 M:      Alan Stern <stern@rowland.harvard.edu>
11721 L:      linux-usb@vger.kernel.org
11722 S:      Maintained
11723 F:      Documentation/usb/ohci.txt
11724 F:      drivers/usb/host/ohci*
11725
11726 USB OTG FSM (Finite State Machine)
11727 M:      Peter Chen <Peter.Chen@nxp.com>
11728 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
11729 L:      linux-usb@vger.kernel.org
11730 S:      Maintained
11731 F:      drivers/usb/common/usb-otg-fsm.c
11732
11733 USB OVER IP DRIVER
11734 M:      Valentina Manea <valentina.manea.m@gmail.com>
11735 M:      Shuah Khan <shuah.kh@samsung.com>
11736 L:      linux-usb@vger.kernel.org
11737 S:      Maintained
11738 F:      Documentation/usb/usbip_protocol.txt
11739 F:      drivers/usb/usbip/
11740 F:      tools/usb/usbip/
11741
11742 USB PEGASUS DRIVER
11743 M:      Petko Manolov <petkan@nucleusys.com>
11744 L:      linux-usb@vger.kernel.org
11745 L:      netdev@vger.kernel.org
11746 T:      git git://github.com/petkan/pegasus.git
11747 W:      https://github.com/petkan/pegasus
11748 S:      Maintained
11749 F:      drivers/net/usb/pegasus.*
11750
11751 USB PHY LAYER
11752 M:      Felipe Balbi <balbi@kernel.org>
11753 L:      linux-usb@vger.kernel.org
11754 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
11755 S:      Maintained
11756 F:      drivers/usb/phy/
11757
11758 USB PRINTER DRIVER (usblp)
11759 M:      Pete Zaitcev <zaitcev@redhat.com>
11760 L:      linux-usb@vger.kernel.org
11761 S:      Supported
11762 F:      drivers/usb/class/usblp.c
11763
11764 USB QMI WWAN NETWORK DRIVER
11765 M:      Bjørn Mork <bjorn@mork.no>
11766 L:      netdev@vger.kernel.org
11767 S:      Maintained
11768 F:      Documentation/ABI/testing/sysfs-class-net-qmi
11769 F:      drivers/net/usb/qmi_wwan.c
11770
11771 USB RTL8150 DRIVER
11772 M:      Petko Manolov <petkan@nucleusys.com>
11773 L:      linux-usb@vger.kernel.org
11774 L:      netdev@vger.kernel.org
11775 T:      git git://github.com/petkan/rtl8150.git
11776 W:      https://github.com/petkan/rtl8150
11777 S:      Maintained
11778 F:      drivers/net/usb/rtl8150.c
11779
11780 USB SERIAL SUBSYSTEM
11781 M:      Johan Hovold <johan@kernel.org>
11782 L:      linux-usb@vger.kernel.org
11783 S:      Maintained
11784 F:      Documentation/usb/usb-serial.txt
11785 F:      drivers/usb/serial/
11786 F:      include/linux/usb/serial.h
11787
11788 USB SMSC75XX ETHERNET DRIVER
11789 M:      Steve Glendinning <steve.glendinning@shawell.net>
11790 L:      netdev@vger.kernel.org
11791 S:      Maintained
11792 F:      drivers/net/usb/smsc75xx.*
11793
11794 USB SMSC95XX ETHERNET DRIVER
11795 M:      Steve Glendinning <steve.glendinning@shawell.net>
11796 L:      netdev@vger.kernel.org
11797 S:      Maintained
11798 F:      drivers/net/usb/smsc95xx.*
11799
11800 USB SUBSYSTEM
11801 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11802 L:      linux-usb@vger.kernel.org
11803 W:      http://www.linux-usb.org
11804 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
11805 S:      Supported
11806 F:      Documentation/usb/
11807 F:      drivers/usb/
11808 F:      include/linux/usb.h
11809 F:      include/linux/usb/
11810
11811 USB UHCI DRIVER
11812 M:      Alan Stern <stern@rowland.harvard.edu>
11813 L:      linux-usb@vger.kernel.org
11814 S:      Maintained
11815 F:      drivers/usb/host/uhci*
11816
11817 USB "USBNET" DRIVER FRAMEWORK
11818 M:      Oliver Neukum <oneukum@suse.com>
11819 L:      netdev@vger.kernel.org
11820 W:      http://www.linux-usb.org/usbnet
11821 S:      Maintained
11822 F:      drivers/net/usb/usbnet.c
11823 F:      include/linux/usb/usbnet.h
11824
11825 USB VIDEO CLASS
11826 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11827 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
11828 L:      linux-media@vger.kernel.org
11829 T:      git git://linuxtv.org/media_tree.git
11830 W:      http://www.ideasonboard.org/uvc/
11831 S:      Maintained
11832 F:      drivers/media/usb/uvc/
11833 F:      include/uapi/linux/uvcvideo.h
11834
11835 USB VISION DRIVER
11836 M:      Hans Verkuil <hverkuil@xs4all.nl>
11837 L:      linux-media@vger.kernel.org
11838 T:      git git://linuxtv.org/media_tree.git
11839 W:      https://linuxtv.org
11840 S:      Odd Fixes
11841 F:      drivers/media/usb/usbvision/
11842
11843 USB WEBCAM GADGET
11844 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11845 L:      linux-usb@vger.kernel.org
11846 S:      Maintained
11847 F:      drivers/usb/gadget/function/*uvc*
11848 F:      drivers/usb/gadget/legacy/webcam.c
11849
11850 USB WIRELESS RNDIS DRIVER (rndis_wlan)
11851 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
11852 L:      linux-wireless@vger.kernel.org
11853 S:      Maintained
11854 F:      drivers/net/wireless/rndis_wlan.c
11855
11856 USB XHCI DRIVER
11857 M:      Mathias Nyman <mathias.nyman@intel.com>
11858 L:      linux-usb@vger.kernel.org
11859 S:      Supported
11860 F:      drivers/usb/host/xhci*
11861 F:      drivers/usb/host/pci-quirks*
11862
11863 USB ZD1201 DRIVER
11864 L:      linux-wireless@vger.kernel.org
11865 W:      http://linux-lc100020.sourceforge.net
11866 S:      Orphan
11867 F:      drivers/net/wireless/zydas/zd1201.*
11868
11869 USB ZR364XX DRIVER
11870 M:      Antoine Jacquet <royale@zerezo.com>
11871 L:      linux-usb@vger.kernel.org
11872 L:      linux-media@vger.kernel.org
11873 T:      git git://linuxtv.org/media_tree.git
11874 W:      http://royale.zerezo.com/zr364xx/
11875 S:      Maintained
11876 F:      Documentation/video4linux/zr364xx.txt
11877 F:      drivers/media/usb/zr364xx/
11878
11879 ULPI BUS
11880 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
11881 L:      linux-usb@vger.kernel.org
11882 S:      Maintained
11883 F:      drivers/usb/common/ulpi.c
11884 F:      include/linux/ulpi/
11885
11886 USER-MODE LINUX (UML)
11887 M:      Jeff Dike <jdike@addtoit.com>
11888 M:      Richard Weinberger <richard@nod.at>
11889 L:      user-mode-linux-devel@lists.sourceforge.net
11890 L:      user-mode-linux-user@lists.sourceforge.net
11891 W:      http://user-mode-linux.sourceforge.net
11892 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
11893 S:      Maintained
11894 F:      Documentation/virtual/uml/
11895 F:      arch/um/
11896 F:      arch/x86/um/
11897 F:      fs/hostfs/
11898 F:      fs/hppfs/
11899
11900 USERSPACE I/O (UIO)
11901 M:      "Hans J. Koch" <hjk@hansjkoch.de>
11902 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11903 S:      Maintained
11904 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
11905 F:      Documentation/DocBook/uio-howto.tmpl
11906 F:      drivers/uio/
11907 F:      include/linux/uio*.h
11908
11909 UTIL-LINUX PACKAGE
11910 M:      Karel Zak <kzak@redhat.com>
11911 L:      util-linux@vger.kernel.org
11912 W:      http://en.wikipedia.org/wiki/Util-linux
11913 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
11914 S:      Maintained
11915
11916 UVESAFB DRIVER
11917 M:      Michal Januszewski <spock@gentoo.org>
11918 L:      linux-fbdev@vger.kernel.org
11919 W:      http://dev.gentoo.org/~spock/projects/uvesafb/
11920 S:      Maintained
11921 F:      Documentation/fb/uvesafb.txt
11922 F:      drivers/video/fbdev/uvesafb.*
11923
11924 VF610 NAND DRIVER
11925 M:      Stefan Agner <stefan@agner.ch>
11926 L:      linux-mtd@lists.infradead.org
11927 S:      Supported
11928 F:      drivers/mtd/nand/vf610_nfc.c
11929
11930 VFAT/FAT/MSDOS FILESYSTEM
11931 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
11932 S:      Maintained
11933 F:      Documentation/filesystems/vfat.txt
11934 F:      fs/fat/
11935
11936 VFIO DRIVER
11937 M:      Alex Williamson <alex.williamson@redhat.com>
11938 L:      kvm@vger.kernel.org
11939 T:      git git://github.com/awilliam/linux-vfio.git
11940 S:      Maintained
11941 F:      Documentation/vfio.txt
11942 F:      drivers/vfio/
11943 F:      include/linux/vfio.h
11944 F:      include/uapi/linux/vfio.h
11945
11946 VFIO PLATFORM DRIVER
11947 M:      Baptiste Reynal <b.reynal@virtualopensystems.com>
11948 L:      kvm@vger.kernel.org
11949 S:      Maintained
11950 F:      drivers/vfio/platform/
11951
11952 VIDEOBUF2 FRAMEWORK
11953 M:      Pawel Osciak <pawel@osciak.com>
11954 M:      Marek Szyprowski <m.szyprowski@samsung.com>
11955 M:      Kyungmin Park <kyungmin.park@samsung.com>
11956 L:      linux-media@vger.kernel.org
11957 S:      Maintained
11958 F:      drivers/media/v4l2-core/videobuf2-*
11959 F:      include/media/videobuf2-*
11960
11961 VIRTUAL SERIO DEVICE DRIVER
11962 M:      Stephen Chandler Paul <thatslyude@gmail.com>
11963 S:      Maintained
11964 F:      drivers/input/serio/userio.c
11965 F:      include/uapi/linux/userio.h
11966
11967 VIRTIO CONSOLE DRIVER
11968 M:      Amit Shah <amit.shah@redhat.com>
11969 L:      virtualization@lists.linux-foundation.org
11970 S:      Maintained
11971 F:      drivers/char/virtio_console.c
11972 F:      include/linux/virtio_console.h
11973 F:      include/uapi/linux/virtio_console.h
11974
11975 VIRTIO CORE, NET AND BLOCK DRIVERS
11976 M:      "Michael S. Tsirkin" <mst@redhat.com>
11977 L:      virtualization@lists.linux-foundation.org
11978 S:      Maintained
11979 F:      drivers/virtio/
11980 F:      tools/virtio/
11981 F:      drivers/net/virtio_net.c
11982 F:      drivers/block/virtio_blk.c
11983 F:      include/linux/virtio_*.h
11984 F:      include/uapi/linux/virtio_*.h
11985
11986 VIRTIO DRIVERS FOR S390
11987 M:      Christian Borntraeger <borntraeger@de.ibm.com>
11988 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
11989 L:      linux-s390@vger.kernel.org
11990 L:      virtualization@lists.linux-foundation.org
11991 L:      kvm@vger.kernel.org
11992 S:      Supported
11993 F:      drivers/s390/virtio/
11994
11995 VIRTIO GPU DRIVER
11996 M:      David Airlie <airlied@linux.ie>
11997 M:      Gerd Hoffmann <kraxel@redhat.com>
11998 L:      dri-devel@lists.freedesktop.org
11999 L:      virtualization@lists.linux-foundation.org
12000 S:      Maintained
12001 F:      drivers/gpu/drm/virtio/
12002 F:      include/uapi/linux/virtio_gpu.h
12003
12004 VIRTIO HOST (VHOST)
12005 M:      "Michael S. Tsirkin" <mst@redhat.com>
12006 L:      kvm@vger.kernel.org
12007 L:      virtualization@lists.linux-foundation.org
12008 L:      netdev@vger.kernel.org
12009 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
12010 S:      Maintained
12011 F:      drivers/vhost/
12012 F:      include/uapi/linux/vhost.h
12013
12014 VIRTIO INPUT DRIVER
12015 M:      Gerd Hoffmann <kraxel@redhat.com>
12016 S:      Maintained
12017 F:      drivers/virtio/virtio_input.c
12018 F:      include/uapi/linux/virtio_input.h
12019
12020 VIA RHINE NETWORK DRIVER
12021 S:      Orphan
12022 F:      drivers/net/ethernet/via/via-rhine.c
12023
12024 VIA SD/MMC CARD CONTROLLER DRIVER
12025 M:      Bruce Chang <brucechang@via.com.tw>
12026 M:      Harald Welte <HaraldWelte@viatech.com>
12027 S:      Maintained
12028 F:      drivers/mmc/host/via-sdmmc.c
12029
12030 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
12031 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
12032 L:      linux-fbdev@vger.kernel.org
12033 S:      Maintained
12034 F:      include/linux/via-core.h
12035 F:      include/linux/via-gpio.h
12036 F:      include/linux/via_i2c.h
12037 F:      drivers/video/fbdev/via/
12038
12039 VIA VELOCITY NETWORK DRIVER
12040 M:      Francois Romieu <romieu@fr.zoreil.com>
12041 L:      netdev@vger.kernel.org
12042 S:      Maintained
12043 F:      drivers/net/ethernet/via/via-velocity.*
12044
12045 VIRT LIB
12046 M:      Alex Williamson <alex.williamson@redhat.com>
12047 M:      Paolo Bonzini <pbonzini@redhat.com>
12048 L:      kvm@vger.kernel.org
12049 S:      Supported
12050 F:      virt/lib/
12051
12052 VIVID VIRTUAL VIDEO DRIVER
12053 M:      Hans Verkuil <hverkuil@xs4all.nl>
12054 L:      linux-media@vger.kernel.org
12055 T:      git git://linuxtv.org/media_tree.git
12056 W:      https://linuxtv.org
12057 S:      Maintained
12058 F:      drivers/media/platform/vivid/*
12059
12060 VLAN (802.1Q)
12061 M:      Patrick McHardy <kaber@trash.net>
12062 L:      netdev@vger.kernel.org
12063 S:      Maintained
12064 F:      drivers/net/macvlan.c
12065 F:      include/linux/if_*vlan.h
12066 F:      net/8021q/
12067
12068 VLYNQ BUS
12069 M:      Florian Fainelli <florian@openwrt.org>
12070 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
12071 S:      Maintained
12072 F:      drivers/vlynq/vlynq.c
12073 F:      include/linux/vlynq.h
12074
12075 VME SUBSYSTEM
12076 M:      Martyn Welch <martyn@welchs.me.uk>
12077 M:      Manohar Vanga <manohar.vanga@gmail.com>
12078 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
12079 L:      devel@driverdev.osuosl.org
12080 S:      Maintained
12081 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
12082 F:      Documentation/vme_api.txt
12083 F:      drivers/staging/vme/
12084 F:      drivers/vme/
12085 F:      include/linux/vme*
12086
12087 VMWARE HYPERVISOR INTERFACE
12088 M:      Alok Kataria <akataria@vmware.com>
12089 L:      virtualization@lists.linux-foundation.org
12090 S:      Supported
12091 F:      arch/x86/kernel/cpu/vmware.c
12092
12093 VMWARE BALLOON DRIVER
12094 M:      Xavier Deguillard <xdeguillard@vmware.com>
12095 M:      Philip Moltmann <moltmann@vmware.com>
12096 M:      "VMware, Inc." <pv-drivers@vmware.com>
12097 L:      linux-kernel@vger.kernel.org
12098 S:      Maintained
12099 F:      drivers/misc/vmw_balloon.c
12100
12101 VMWARE VMMOUSE SUBDRIVER
12102 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
12103 M:      "VMware, Inc." <pv-drivers@vmware.com>
12104 L:      linux-input@vger.kernel.org
12105 S:      Maintained
12106 F:      drivers/input/mouse/vmmouse.c
12107 F:      drivers/input/mouse/vmmouse.h
12108
12109 VMWARE VMXNET3 ETHERNET DRIVER
12110 M:      Shrikrishna Khare <skhare@vmware.com>
12111 M:      "VMware, Inc." <pv-drivers@vmware.com>
12112 L:      netdev@vger.kernel.org
12113 S:      Maintained
12114 F:      drivers/net/vmxnet3/
12115
12116 VMware PVSCSI driver
12117 M:      Arvind Kumar <arvindkumar@vmware.com>
12118 M:      VMware PV-Drivers <pv-drivers@vmware.com>
12119 L:      linux-scsi@vger.kernel.org
12120 S:      Maintained
12121 F:      drivers/scsi/vmw_pvscsi.c
12122 F:      drivers/scsi/vmw_pvscsi.h
12123
12124 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
12125 M:      Liam Girdwood <lgirdwood@gmail.com>
12126 M:      Mark Brown <broonie@kernel.org>
12127 L:      linux-kernel@vger.kernel.org
12128 W:      http://www.slimlogic.co.uk/?p=48
12129 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
12130 S:      Supported
12131 F:      Documentation/devicetree/bindings/regulator/
12132 F:      drivers/regulator/
12133 F:      include/dt-bindings/regulator/
12134 F:      include/linux/regulator/
12135
12136 VRF
12137 M:      David Ahern <dsa@cumulusnetworks.com>
12138 M:      Shrijeet Mukherjee <shm@cumulusnetworks.com>
12139 L:      netdev@vger.kernel.org
12140 S:      Maintained
12141 F:      drivers/net/vrf.c
12142 F:      Documentation/networking/vrf.txt
12143
12144 VT1211 HARDWARE MONITOR DRIVER
12145 M:      Juerg Haefliger <juergh@gmail.com>
12146 L:      linux-hwmon@vger.kernel.org
12147 S:      Maintained
12148 F:      Documentation/hwmon/vt1211
12149 F:      drivers/hwmon/vt1211.c
12150
12151 VT8231 HARDWARE MONITOR DRIVER
12152 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
12153 L:      linux-hwmon@vger.kernel.org
12154 S:      Maintained
12155 F:      drivers/hwmon/vt8231.c
12156
12157 VUB300 USB to SDIO/SD/MMC bridge chip
12158 M:      Tony Olech <tony.olech@elandigitalsystems.com>
12159 L:      linux-mmc@vger.kernel.org
12160 L:      linux-usb@vger.kernel.org
12161 S:      Supported
12162 F:      drivers/mmc/host/vub300.c
12163
12164 W1 DALLAS'S 1-WIRE BUS
12165 M:      Evgeniy Polyakov <zbr@ioremap.net>
12166 S:      Maintained
12167 F:      Documentation/w1/
12168 F:      drivers/w1/
12169
12170 W83791D HARDWARE MONITORING DRIVER
12171 M:      Marc Hulsman <m.hulsman@tudelft.nl>
12172 L:      linux-hwmon@vger.kernel.org
12173 S:      Maintained
12174 F:      Documentation/hwmon/w83791d
12175 F:      drivers/hwmon/w83791d.c
12176
12177 W83793 HARDWARE MONITORING DRIVER
12178 M:      Rudolf Marek <r.marek@assembler.cz>
12179 L:      linux-hwmon@vger.kernel.org
12180 S:      Maintained
12181 F:      Documentation/hwmon/w83793
12182 F:      drivers/hwmon/w83793.c
12183
12184 W83795 HARDWARE MONITORING DRIVER
12185 M:      Jean Delvare <jdelvare@suse.com>
12186 L:      linux-hwmon@vger.kernel.org
12187 S:      Maintained
12188 F:      drivers/hwmon/w83795.c
12189
12190 W83L51xD SD/MMC CARD INTERFACE DRIVER
12191 M:      Pierre Ossman <pierre@ossman.eu>
12192 S:      Maintained
12193 F:      drivers/mmc/host/wbsd.*
12194
12195 WACOM PROTOCOL 4 SERIAL TABLETS
12196 M:      Julian Squires <julian@cipht.net>
12197 M:      Hans de Goede <hdegoede@redhat.com>
12198 L:      linux-input@vger.kernel.org
12199 S:      Maintained
12200 F:      drivers/input/tablet/wacom_serial4.c
12201
12202 WATCHDOG DEVICE DRIVERS
12203 M:      Wim Van Sebroeck <wim@iguana.be>
12204 R:      Guenter Roeck <linux@roeck-us.net>
12205 L:      linux-watchdog@vger.kernel.org
12206 W:      http://www.linux-watchdog.org/
12207 T:      git git://www.linux-watchdog.org/linux-watchdog.git
12208 S:      Maintained
12209 F:      Documentation/watchdog/
12210 F:      drivers/watchdog/
12211 F:      include/linux/watchdog.h
12212 F:      include/uapi/linux/watchdog.h
12213
12214 WD7000 SCSI DRIVER
12215 M:      Miroslav Zagorac <zaga@fly.cc.fer.hr>
12216 L:      linux-scsi@vger.kernel.org
12217 S:      Maintained
12218 F:      drivers/scsi/wd7000.c
12219
12220 WIIMOTE HID DRIVER
12221 M:      David Herrmann <dh.herrmann@googlemail.com>
12222 L:      linux-input@vger.kernel.org
12223 S:      Maintained
12224 F:      drivers/hid/hid-wiimote*
12225
12226 WINBOND CIR DRIVER
12227 M:      David Härdeman <david@hardeman.nu>
12228 S:      Maintained
12229 F:      drivers/media/rc/winbond-cir.c
12230
12231 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
12232 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
12233 L:      linux-watchdog@vger.kernel.org
12234 S:      Maintained
12235 F:      drivers/watchdog/ebc-c384_wdt.c
12236
12237 WINSYSTEMS WS16C48 GPIO DRIVER
12238 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
12239 L:      linux-gpio@vger.kernel.org
12240 S:      Maintained
12241 F:      drivers/gpio/gpio-ws16c48.c
12242
12243 WIMAX STACK
12244 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
12245 M:      linux-wimax@intel.com
12246 L:      wimax@linuxwimax.org (subscribers-only)
12247 S:      Supported
12248 W:      http://linuxwimax.org
12249 F:      Documentation/wimax/README.wimax
12250 F:      include/linux/wimax/debug.h
12251 F:      include/net/wimax.h
12252 F:      include/uapi/linux/wimax.h
12253 F:      net/wimax/
12254
12255 WISTRON LAPTOP BUTTON DRIVER
12256 M:      Miloslav Trmac <mitr@volny.cz>
12257 S:      Maintained
12258 F:      drivers/input/misc/wistron_btns.c
12259
12260 WL3501 WIRELESS PCMCIA CARD DRIVER
12261 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
12262 L:      linux-wireless@vger.kernel.org
12263 W:      http://oops.ghostprotocols.net:81/blog
12264 S:      Maintained
12265 F:      drivers/net/wireless/wl3501*
12266
12267 WOLFSON MICROELECTRONICS DRIVERS
12268 L:      patches@opensource.wolfsonmicro.com
12269 T:      git https://github.com/CirrusLogic/linux-drivers.git
12270 W:      https://github.com/CirrusLogic/linux-drivers/wiki
12271 S:      Supported
12272 F:      Documentation/hwmon/wm83??
12273 F:      Documentation/devicetree/bindings/extcon/extcon-arizona.txt
12274 F:      Documentation/devicetree/bindings/regulator/arizona-regulator.txt
12275 F:      Documentation/devicetree/bindings/mfd/arizona.txt
12276 F:      arch/arm/mach-s3c64xx/mach-crag6410*
12277 F:      drivers/clk/clk-wm83*.c
12278 F:      drivers/extcon/extcon-arizona.c
12279 F:      drivers/leds/leds-wm83*.c
12280 F:      drivers/gpio/gpio-*wm*.c
12281 F:      drivers/gpio/gpio-arizona.c
12282 F:      drivers/hwmon/wm83??-hwmon.c
12283 F:      drivers/input/misc/wm831x-on.c
12284 F:      drivers/input/touchscreen/wm831x-ts.c
12285 F:      drivers/input/touchscreen/wm97*.c
12286 F:      drivers/mfd/arizona*
12287 F:      drivers/mfd/wm*.c
12288 F:      drivers/mfd/cs47l24*
12289 F:      drivers/power/wm83*.c
12290 F:      drivers/rtc/rtc-wm83*.c
12291 F:      drivers/regulator/wm8*.c
12292 F:      drivers/video/backlight/wm83*_bl.c
12293 F:      drivers/watchdog/wm83*_wdt.c
12294 F:      include/linux/mfd/arizona/
12295 F:      include/linux/mfd/wm831x/
12296 F:      include/linux/mfd/wm8350/
12297 F:      include/linux/mfd/wm8400*
12298 F:      include/linux/wm97xx.h
12299 F:      include/sound/wm????.h
12300 F:      sound/soc/codecs/arizona.?
12301 F:      sound/soc/codecs/wm*
12302 F:      sound/soc/codecs/cs47l24*
12303
12304 WORKQUEUE
12305 M:      Tejun Heo <tj@kernel.org>
12306 R:      Lai Jiangshan <jiangshanlai@gmail.com>
12307 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
12308 S:      Maintained
12309 F:      include/linux/workqueue.h
12310 F:      kernel/workqueue.c
12311 F:      Documentation/workqueue.txt
12312
12313 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
12314 M:      Chen-Yu Tsai <wens@csie.org>
12315 L:      linux-kernel@vger.kernel.org
12316 S:      Maintained
12317 N:      axp[128]
12318
12319 X.25 NETWORK LAYER
12320 M:      Andrew Hendry <andrew.hendry@gmail.com>
12321 L:      linux-x25@vger.kernel.org
12322 S:      Odd Fixes
12323 F:      Documentation/networking/x25*
12324 F:      include/net/x25*
12325 F:      net/x25/
12326
12327 X86 ARCHITECTURE (32-BIT AND 64-BIT)
12328 M:      Thomas Gleixner <tglx@linutronix.de>
12329 M:      Ingo Molnar <mingo@redhat.com>
12330 M:      "H. Peter Anvin" <hpa@zytor.com>
12331 M:      x86@kernel.org
12332 L:      linux-kernel@vger.kernel.org
12333 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
12334 S:      Maintained
12335 F:      Documentation/x86/
12336 F:      arch/x86/
12337
12338 X86 PLATFORM DRIVERS
12339 M:      Darren Hart <dvhart@infradead.org>
12340 L:      platform-driver-x86@vger.kernel.org
12341 T:      git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git
12342 S:      Maintained
12343 F:      drivers/platform/x86/
12344 F:      drivers/platform/olpc/
12345
12346 X86 MCE INFRASTRUCTURE
12347 M:      Tony Luck <tony.luck@intel.com>
12348 M:      Borislav Petkov <bp@alien8.de>
12349 L:      linux-edac@vger.kernel.org
12350 S:      Maintained
12351 F:      arch/x86/kernel/cpu/mcheck/*
12352
12353 X86 MICROCODE UPDATE SUPPORT
12354 M:      Borislav Petkov <bp@alien8.de>
12355 S:      Maintained
12356 F:      arch/x86/kernel/cpu/microcode/*
12357
12358 X86 VDSO
12359 M:      Andy Lutomirski <luto@amacapital.net>
12360 L:      linux-kernel@vger.kernel.org
12361 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
12362 S:      Maintained
12363 F:      arch/x86/entry/vdso/
12364
12365 XC2028/3028 TUNER DRIVER
12366 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
12367 L:      linux-media@vger.kernel.org
12368 W:      https://linuxtv.org
12369 T:      git git://linuxtv.org/media_tree.git
12370 S:      Maintained
12371 F:      drivers/media/tuners/tuner-xc2028.*
12372
12373 XEN HYPERVISOR INTERFACE
12374 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
12375 M:      David Vrabel <david.vrabel@citrix.com>
12376 M:      Juergen Gross <jgross@suse.com>
12377 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12378 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
12379 S:      Supported
12380 F:      arch/x86/xen/
12381 F:      drivers/*/xen-*front.c
12382 F:      drivers/xen/
12383 F:      arch/x86/include/asm/xen/
12384 F:      include/xen/
12385 F:      include/uapi/xen/
12386
12387 XEN HYPERVISOR ARM
12388 M:      Stefano Stabellini <sstabellini@kernel.org>
12389 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12390 S:      Maintained
12391 F:      arch/arm/xen/
12392 F:      arch/arm/include/asm/xen/
12393
12394 XEN HYPERVISOR ARM64
12395 M:      Stefano Stabellini <sstabellini@kernel.org>
12396 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12397 S:      Maintained
12398 F:      arch/arm64/xen/
12399 F:      arch/arm64/include/asm/xen/
12400
12401 XEN NETWORK BACKEND DRIVER
12402 M:      Wei Liu <wei.liu2@citrix.com>
12403 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12404 L:      netdev@vger.kernel.org
12405 S:      Supported
12406 F:      drivers/net/xen-netback/*
12407
12408 XEN PCI SUBSYSTEM
12409 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
12410 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12411 S:      Supported
12412 F:      arch/x86/pci/*xen*
12413 F:      drivers/pci/*xen*
12414
12415 XEN BLOCK SUBSYSTEM
12416 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
12417 M:      Roger Pau Monné <roger.pau@citrix.com>
12418 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12419 S:      Supported
12420 F:      drivers/block/xen-blkback/*
12421 F:      drivers/block/xen*
12422
12423 XEN PVSCSI DRIVERS
12424 M:      Juergen Gross <jgross@suse.com>
12425 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12426 L:      linux-scsi@vger.kernel.org
12427 S:      Supported
12428 F:      drivers/scsi/xen-scsifront.c
12429 F:      drivers/xen/xen-scsiback.c
12430 F:      include/xen/interface/io/vscsiif.h
12431
12432 XEN SWIOTLB SUBSYSTEM
12433 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
12434 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12435 S:      Supported
12436 F:      arch/x86/xen/*swiotlb*
12437 F:      drivers/xen/*swiotlb*
12438
12439 XFS FILESYSTEM
12440 P:      Silicon Graphics Inc
12441 M:      Dave Chinner <david@fromorbit.com>
12442 M:      xfs@oss.sgi.com
12443 L:      xfs@oss.sgi.com
12444 W:      http://oss.sgi.com/projects/xfs
12445 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dgc/linux-xfs.git
12446 S:      Supported
12447 F:      Documentation/filesystems/xfs.txt
12448 F:      fs/xfs/
12449
12450 XILINX AXI ETHERNET DRIVER
12451 M:      Anirudha Sarangi <anirudh@xilinx.com>
12452 M:      John Linn <John.Linn@xilinx.com>
12453 S:      Maintained
12454 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
12455
12456 XILINX UARTLITE SERIAL DRIVER
12457 M:      Peter Korsgaard <jacmet@sunsite.dk>
12458 L:      linux-serial@vger.kernel.org
12459 S:      Maintained
12460 F:      drivers/tty/serial/uartlite.c
12461
12462 XILINX VIDEO IP CORES
12463 M:      Hyun Kwon <hyun.kwon@xilinx.com>
12464 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12465 L:      linux-media@vger.kernel.org
12466 T:      git git://linuxtv.org/media_tree.git
12467 S:      Supported
12468 F:      Documentation/devicetree/bindings/media/xilinx/
12469 F:      drivers/media/platform/xilinx/
12470 F:      include/uapi/linux/xilinx-v4l2-controls.h
12471
12472 XILLYBUS DRIVER
12473 M:      Eli Billauer <eli.billauer@gmail.com>
12474 L:      linux-kernel@vger.kernel.org
12475 S:      Supported
12476 F:      drivers/char/xillybus/
12477
12478 XTENSA XTFPGA PLATFORM SUPPORT
12479 M:      Max Filippov <jcmvbkbc@gmail.com>
12480 L:      linux-xtensa@linux-xtensa.org
12481 S:      Maintained
12482 F:      drivers/spi/spi-xtensa-xtfpga.c
12483 F:      sound/soc/xtensa/xtfpga-i2s.c
12484
12485 YAM DRIVER FOR AX.25
12486 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
12487 L:      linux-hams@vger.kernel.org
12488 S:      Maintained
12489 F:      drivers/net/hamradio/yam*
12490 F:      include/linux/yam.h
12491
12492 YEALINK PHONE DRIVER
12493 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
12494 L:      usbb2k-api-dev@nongnu.org
12495 S:      Maintained
12496 F:      Documentation/input/yealink.txt
12497 F:      drivers/input/misc/yealink.*
12498
12499 Z8530 DRIVER FOR AX.25
12500 M:      Joerg Reuter <jreuter@yaina.de>
12501 W:      http://yaina.de/jreuter/
12502 W:      http://www.qsl.net/dl1bke/
12503 L:      linux-hams@vger.kernel.org
12504 S:      Maintained
12505 F:      Documentation/networking/z8530drv.txt
12506 F:      drivers/net/hamradio/*scc.c
12507 F:      drivers/net/hamradio/z8530.h
12508
12509 ZBUD COMPRESSED PAGE ALLOCATOR
12510 M:      Seth Jennings <sjenning@redhat.com>
12511 L:      linux-mm@kvack.org
12512 S:      Maintained
12513 F:      mm/zbud.c
12514 F:      include/linux/zbud.h
12515
12516 ZD1211RW WIRELESS DRIVER
12517 M:      Daniel Drake <dsd@gentoo.org>
12518 M:      Ulrich Kunitz <kune@deine-taler.de>
12519 W:      http://zd1211.ath.cx/wiki/DriverRewrite
12520 L:      linux-wireless@vger.kernel.org
12521 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
12522 S:      Maintained
12523 F:      drivers/net/wireless/zydas/zd1211rw/
12524
12525 ZPOOL COMPRESSED PAGE STORAGE API
12526 M:      Dan Streetman <ddstreet@ieee.org>
12527 L:      linux-mm@kvack.org
12528 S:      Maintained
12529 F:      mm/zpool.c
12530 F:      include/linux/zpool.h
12531
12532 ZR36067 VIDEO FOR LINUX DRIVER
12533 L:      mjpeg-users@lists.sourceforge.net
12534 L:      linux-media@vger.kernel.org
12535 W:      http://mjpeg.sourceforge.net/driver-zoran/
12536 T:      hg https://linuxtv.org/hg/v4l-dvb
12537 S:      Odd Fixes
12538 F:      drivers/media/pci/zoran/
12539
12540 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
12541 M:      Minchan Kim <minchan@kernel.org>
12542 M:      Nitin Gupta <ngupta@vflare.org>
12543 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
12544 L:      linux-kernel@vger.kernel.org
12545 S:      Maintained
12546 F:      drivers/block/zram/
12547 F:      Documentation/blockdev/zram.txt
12548
12549 ZS DECSTATION Z85C30 SERIAL DRIVER
12550 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
12551 S:      Maintained
12552 F:      drivers/tty/serial/zs.*
12553
12554 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
12555 M:      Minchan Kim <minchan@kernel.org>
12556 M:      Nitin Gupta <ngupta@vflare.org>
12557 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
12558 L:      linux-mm@kvack.org
12559 S:      Maintained
12560 F:      mm/zsmalloc.c
12561 F:      include/linux/zsmalloc.h
12562 F:      Documentation/vm/zsmalloc.txt
12563
12564 ZSWAP COMPRESSED SWAP CACHING
12565 M:      Seth Jennings <sjenning@redhat.com>
12566 L:      linux-mm@kvack.org
12567 S:      Maintained
12568 F:      mm/zswap.c
12569
12570 THE REST
12571 M:      Linus Torvalds <torvalds@linux-foundation.org>
12572 L:      linux-kernel@vger.kernel.org
12573 Q:      http://patchwork.kernel.org/project/LKML/list/
12574 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
12575 S:      Buried alive in reporters
12576 F:      *
12577 F:      */