]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - MAINTAINERS
Merge remote-tracking branch 'hid/for-next'
[karo-tx-linux.git] / MAINTAINERS
1
2
3         List of maintainers and how to submit kernel changes
4
5 Please try to follow the guidelines below.  This will make things
6 easier on the maintainers.  Not all of these guidelines matter for every
7 trivial patch so apply some common sense.
8
9 1.      Always _test_ your changes, however small, on at least 4 or
10         5 people, preferably many more.
11
12 2.      Try to release a few ALPHA test versions to the net. Announce
13         them onto the kernel channel and await results. This is especially
14         important for device drivers, because often that's the only way
15         you will find things like the fact version 3 firmware needs
16         a magic fix you didn't know about, or some clown changed the
17         chips on a board and not its name.  (Don't laugh!  Look at the
18         SMC etherpower for that.)
19
20 3.      Make sure your changes compile correctly in multiple
21         configurations. In particular check that changes work both as a
22         module and built into the kernel.
23
24 4.      When you are happy with a change make it generally available for
25         testing and await feedback.
26
27 5.      Make a patch available to the relevant maintainer in the list. Use
28         'diff -u' to make the patch easy to merge. Be prepared to get your
29         changes sent back with seemingly silly requests about formatting
30         and variable names.  These aren't as silly as they seem. One
31         job the maintainers (and especially Linus) do is to keep things
32         looking the same. Sometimes this means that the clever hack in
33         your driver to get around a problem actually needs to become a
34         generalized kernel feature ready for next time.
35
36         PLEASE check your patch with the automated style checker
37         (scripts/checkpatch.pl) to catch trivial style violations.
38         See Documentation/CodingStyle for guidance here.
39
40         PLEASE CC: the maintainers and mailing lists that are generated
41         by scripts/get_maintainer.pl.  The results returned by the
42         script will be best if you have git installed and are making
43         your changes in a branch derived from Linus' latest git tree.
44         See Documentation/SubmittingPatches for details.
45
46         PLEASE try to include any credit lines you want added with the
47         patch. It avoids people being missed off by mistake and makes
48         it easier to know who wants adding and who doesn't.
49
50         PLEASE document known bugs. If it doesn't work for everything
51         or does something very odd once a month document it.
52
53         PLEASE remember that submissions must be made under the terms
54         of the Linux Foundation certificate of contribution and should
55         include a Signed-off-by: line.  The current version of this
56         "Developer's Certificate of Origin" (DCO) is listed in the file
57         Documentation/SubmittingPatches.
58
59 6.      Make sure you have the right to send any changes you make. If you
60         do changes at work you may find your employer owns the patch
61         not you.
62
63 7.      When sending security related changes or reports to a maintainer
64         please Cc: security@kernel.org, especially if the maintainer
65         does not respond.
66
67 8.      Happy hacking.
68
69 Descriptions of section entries:
70
71         P: Person (obsolete)
72         M: Mail patches to: FullName <address@domain>
73         R: Designated reviewer: FullName <address@domain>
74            These reviewers should be CCed on patches.
75         L: Mailing list that is relevant to this area
76         W: Web-page with status/info
77         Q: Patchwork web based patch tracking system site
78         T: SCM tree type and location.
79            Type is one of: git, hg, quilt, stgit, topgit
80         S: Status, one of the following:
81            Supported:   Someone is actually paid to look after this.
82            Maintained:  Someone actually looks after it.
83            Odd Fixes:   It has a maintainer but they don't have time to do
84                         much other than throw the odd patch in. See below..
85            Orphan:      No current maintainer [but maybe you could take the
86                         role as you write your new code].
87            Obsolete:    Old code. Something tagged obsolete generally means
88                         it has been replaced by a better system and you
89                         should be using that.
90         F: Files and directories with wildcard patterns.
91            A trailing slash includes all files and subdirectory files.
92            F:   drivers/net/    all files in and below drivers/net
93            F:   drivers/net/*   all files in drivers/net, but not below
94            F:   */net/*         all files in "any top level directory"/net
95            One pattern per line.  Multiple F: lines acceptable.
96         N: Files and directories with regex patterns.
97            N:   [^a-z]tegra     all files whose path contains the word tegra
98            One pattern per line.  Multiple N: lines acceptable.
99            scripts/get_maintainer.pl has different behavior for files that
100            match F: pattern and matches of N: patterns.  By default,
101            get_maintainer will not look at git log history when an F: pattern
102            match occurs.  When an N: match occurs, git log history is used
103            to also notify the people that have git commit signatures.
104         X: Files and directories that are NOT maintained, same rules as F:
105            Files exclusions are tested before file matches.
106            Can be useful for excluding a specific subdirectory, for instance:
107            F:   net/
108            X:   net/ipv6/
109            matches all files in and below net excluding net/ipv6/
110         K: Keyword perl extended regex pattern to match content in a
111            patch or file.  For instance:
112            K: of_get_profile
113               matches patches or files that contain "of_get_profile"
114            K: \b(printk|pr_(info|err))\b
115               matches patches or files that contain one or more of the words
116               printk, pr_info or pr_err
117            One regex pattern per line.  Multiple K: lines acceptable.
118
119 Note: For the hard of thinking, this list is meant to remain in alphabetical
120 order. If you could add yourselves to it in alphabetical order that would be
121 so much easier [Ed]
122
123 Maintainers List (try to look for most precise areas first)
124
125                 -----------------------------------
126
127 3C59X NETWORK DRIVER
128 M:      Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
129 L:      netdev@vger.kernel.org
130 S:      Maintained
131 F:      Documentation/networking/vortex.txt
132 F:      drivers/net/ethernet/3com/3c59x.c
133
134 3CR990 NETWORK DRIVER
135 M:      David Dillow <dave@thedillows.org>
136 L:      netdev@vger.kernel.org
137 S:      Maintained
138 F:      drivers/net/ethernet/3com/typhoon*
139
140 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
141 M:      Adam Radford <linuxraid@lsi.com>
142 L:      linux-scsi@vger.kernel.org
143 W:      http://www.lsi.com
144 S:      Supported
145 F:      drivers/scsi/3w-*
146
147 53C700 AND 53C700-66 SCSI DRIVER
148 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
149 L:      linux-scsi@vger.kernel.org
150 S:      Maintained
151 F:      drivers/scsi/53c700*
152
153 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
154 M:      Alexander Aring <alex.aring@gmail.com>
155 M:      Jukka Rissanen <jukka.rissanen@linux.intel.com>
156 L:      linux-bluetooth@vger.kernel.org
157 L:      linux-wpan@vger.kernel.org
158 S:      Maintained
159 F:      net/6lowpan/
160 F:      include/net/6lowpan.h
161 F:      Documentation/networking/6lowpan.txt
162
163 6PACK NETWORK DRIVER FOR AX.25
164 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
165 L:      linux-hams@vger.kernel.org
166 S:      Maintained
167 F:      drivers/net/hamradio/6pack.c
168
169 8169 10/100/1000 GIGABIT ETHERNET DRIVER
170 M:      Realtek linux nic maintainers <nic_swsd@realtek.com>
171 L:      netdev@vger.kernel.org
172 S:      Maintained
173 F:      drivers/net/ethernet/realtek/r8169.c
174
175 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
176 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
177 L:      linux-serial@vger.kernel.org
178 W:      http://serial.sourceforge.net
179 S:      Maintained
180 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
181 F:      drivers/tty/serial/8250*
182 F:      include/linux/serial_8250.h
183
184 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
185 L:      netdev@vger.kernel.org
186 S:      Orphan / Obsolete
187 F:      drivers/net/ethernet/8390/
188
189 9P FILE SYSTEM
190 M:      Eric Van Hensbergen <ericvh@gmail.com>
191 M:      Ron Minnich <rminnich@sandia.gov>
192 M:      Latchesar Ionkov <lucho@ionkov.net>
193 L:      v9fs-developer@lists.sourceforge.net
194 W:      http://swik.net/v9fs
195 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
196 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
197 S:      Maintained
198 F:      Documentation/filesystems/9p.txt
199 F:      fs/9p/
200 F:      net/9p/
201 F:      include/net/9p/
202 F:      include/uapi/linux/virtio_9p.h
203 F:      include/trace/events/9p.h
204
205
206 A8293 MEDIA DRIVER
207 M:      Antti Palosaari <crope@iki.fi>
208 L:      linux-media@vger.kernel.org
209 W:      http://linuxtv.org/
210 W:      http://palosaari.fi/linux/
211 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
212 T:      git git://linuxtv.org/anttip/media_tree.git
213 S:      Maintained
214 F:      drivers/media/dvb-frontends/a8293*
215
216 AACRAID SCSI RAID DRIVER
217 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
218 L:      linux-scsi@vger.kernel.org
219 W:      http://www.adaptec.com/
220 S:      Supported
221 F:      Documentation/scsi/aacraid.txt
222 F:      drivers/scsi/aacraid/
223
224 ABI/API
225 L:      linux-api@vger.kernel.org
226 F:      Documentation/ABI/
227 F:      include/linux/syscalls.h
228 F:      include/uapi/
229 F:      kernel/sys_ni.c
230
231 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
232 M:      Hans de Goede <hdegoede@redhat.com>
233 L:      lm-sensors@lm-sensors.org
234 S:      Maintained
235 F:      drivers/hwmon/abituguru.c
236
237 ABIT UGURU 3 HARDWARE MONITOR DRIVER
238 M:      Alistair John Strachan <alistair@devzero.co.uk>
239 L:      lm-sensors@lm-sensors.org
240 S:      Maintained
241 F:      drivers/hwmon/abituguru3.c
242
243 ACCES 104-IDIO-16 GPIO DRIVER
244 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
245 L:      linux-gpio@vger.kernel.org
246 S:      Maintained
247 F:      drivers/gpio/gpio-104-idio-16.c
248
249 ACENIC DRIVER
250 M:      Jes Sorensen <jes@trained-monkey.org>
251 L:      linux-acenic@sunsite.dk
252 S:      Maintained
253 F:      drivers/net/ethernet/alteon/acenic*
254
255 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
256 M:      Peter Feuerer <peter@piie.net>
257 L:      platform-driver-x86@vger.kernel.org
258 W:      http://piie.net/?section=acerhdf
259 S:      Maintained
260 F:      drivers/platform/x86/acerhdf.c
261
262 ACER WMI LAPTOP EXTRAS
263 M:      "Lee, Chun-Yi" <jlee@suse.com>
264 L:      platform-driver-x86@vger.kernel.org
265 S:      Maintained
266 F:      drivers/platform/x86/acer-wmi.c
267
268 ACPI
269 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
270 M:      Len Brown <lenb@kernel.org>
271 L:      linux-acpi@vger.kernel.org
272 W:      https://01.org/linux-acpi
273 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
274 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
275 S:      Supported
276 F:      drivers/acpi/
277 F:      drivers/pnp/pnpacpi/
278 F:      include/linux/acpi.h
279 F:      include/acpi/
280 F:      Documentation/acpi/
281 F:      Documentation/ABI/testing/sysfs-bus-acpi
282 F:      drivers/pci/*acpi*
283 F:      drivers/pci/*/*acpi*
284 F:      drivers/pci/*/*/*acpi*
285 F:      tools/power/acpi/
286
287 ACPI COMPONENT ARCHITECTURE (ACPICA)
288 M:      Robert Moore <robert.moore@intel.com>
289 M:      Lv Zheng <lv.zheng@intel.com>
290 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
291 L:      linux-acpi@vger.kernel.org
292 L:      devel@acpica.org
293 W:      https://acpica.org/
294 W:      https://github.com/acpica/acpica/
295 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
296 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
297 S:      Supported
298 F:      drivers/acpi/acpica/
299 F:      include/acpi/
300 F:      tools/power/acpi/
301
302 ACPI FAN DRIVER
303 M:      Zhang Rui <rui.zhang@intel.com>
304 L:      linux-acpi@vger.kernel.org
305 W:      https://01.org/linux-acpi
306 S:      Supported
307 F:      drivers/acpi/fan.c
308
309 ACPI THERMAL DRIVER
310 M:      Zhang Rui <rui.zhang@intel.com>
311 L:      linux-acpi@vger.kernel.org
312 W:      https://01.org/linux-acpi
313 S:      Supported
314 F:      drivers/acpi/*thermal*
315
316 ACPI VIDEO DRIVER
317 M:      Zhang Rui <rui.zhang@intel.com>
318 L:      linux-acpi@vger.kernel.org
319 W:      https://01.org/linux-acpi
320 S:      Supported
321 F:      drivers/acpi/video.c
322
323 ACPI WMI DRIVER
324 L:      platform-driver-x86@vger.kernel.org
325 S:      Orphan
326 F:      drivers/platform/x86/wmi.c
327
328 AD1889 ALSA SOUND DRIVER
329 M:      Thibaut Varene <T-Bone@parisc-linux.org>
330 W:      http://wiki.parisc-linux.org/AD1889
331 L:      linux-parisc@vger.kernel.org
332 S:      Maintained
333 F:      sound/pci/ad1889.*
334
335 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
336 M:      Michael Hennerich <michael.hennerich@analog.com>
337 W:      http://wiki.analog.com/AD5254
338 W:      http://ez.analog.com/community/linux-device-drivers
339 S:      Supported
340 F:      drivers/misc/ad525x_dpot.c
341
342 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
343 M:      Michael Hennerich <michael.hennerich@analog.com>
344 W:      http://wiki.analog.com/AD5398
345 W:      http://ez.analog.com/community/linux-device-drivers
346 S:      Supported
347 F:      drivers/regulator/ad5398.c
348
349 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
350 M:      Michael Hennerich <michael.hennerich@analog.com>
351 W:      http://wiki.analog.com/AD7142
352 W:      http://ez.analog.com/community/linux-device-drivers
353 S:      Supported
354 F:      drivers/input/misc/ad714x.c
355
356 AD7877 TOUCHSCREEN DRIVER
357 M:      Michael Hennerich <michael.hennerich@analog.com>
358 W:      http://wiki.analog.com/AD7877
359 W:      http://ez.analog.com/community/linux-device-drivers
360 S:      Supported
361 F:      drivers/input/touchscreen/ad7877.c
362
363 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
364 M:      Michael Hennerich <michael.hennerich@analog.com>
365 W:      http://wiki.analog.com/AD7879
366 W:      http://ez.analog.com/community/linux-device-drivers
367 S:      Supported
368 F:      drivers/input/touchscreen/ad7879.c
369
370 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
371 M:      Jiri Kosina <jikos@kernel.org>
372 S:      Maintained
373
374 ADM1025 HARDWARE MONITOR DRIVER
375 M:      Jean Delvare <jdelvare@suse.com>
376 L:      lm-sensors@lm-sensors.org
377 S:      Maintained
378 F:      Documentation/hwmon/adm1025
379 F:      drivers/hwmon/adm1025.c
380
381 ADM1029 HARDWARE MONITOR DRIVER
382 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
383 L:      lm-sensors@lm-sensors.org
384 S:      Maintained
385 F:      drivers/hwmon/adm1029.c
386
387 ADM8211 WIRELESS DRIVER
388 L:      linux-wireless@vger.kernel.org
389 W:      http://wireless.kernel.org/
390 S:      Orphan
391 F:      drivers/net/wireless/adm8211.*
392
393 ADP1653 FLASH CONTROLLER DRIVER
394 M:      Sakari Ailus <sakari.ailus@iki.fi>
395 L:      linux-media@vger.kernel.org
396 S:      Maintained
397 F:      drivers/media/i2c/adp1653.c
398 F:      include/media/adp1653.h
399
400 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
401 M:      Michael Hennerich <michael.hennerich@analog.com>
402 W:      http://wiki.analog.com/ADP5520
403 W:      http://ez.analog.com/community/linux-device-drivers
404 S:      Supported
405 F:      drivers/mfd/adp5520.c
406 F:      drivers/video/backlight/adp5520_bl.c
407 F:      drivers/leds/leds-adp5520.c
408 F:      drivers/gpio/gpio-adp5520.c
409 F:      drivers/input/keyboard/adp5520-keys.c
410
411 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
412 M:      Michael Hennerich <michael.hennerich@analog.com>
413 W:      http://wiki.analog.com/ADP5588
414 W:      http://ez.analog.com/community/linux-device-drivers
415 S:      Supported
416 F:      drivers/input/keyboard/adp5588-keys.c
417 F:      drivers/gpio/gpio-adp5588.c
418
419 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
420 M:      Michael Hennerich <michael.hennerich@analog.com>
421 W:      http://wiki.analog.com/ADP8860
422 W:      http://ez.analog.com/community/linux-device-drivers
423 S:      Supported
424 F:      drivers/video/backlight/adp8860_bl.c
425
426 ADS1015 HARDWARE MONITOR DRIVER
427 M:      Dirk Eibach <eibach@gdsys.de>
428 L:      lm-sensors@lm-sensors.org
429 S:      Maintained
430 F:      Documentation/hwmon/ads1015
431 F:      drivers/hwmon/ads1015.c
432 F:      include/linux/i2c/ads1015.h
433
434 ADT746X FAN DRIVER
435 M:      Colin Leroy <colin@colino.net>
436 S:      Maintained
437 F:      drivers/macintosh/therm_adt746x.c
438
439 ADT7475 HARDWARE MONITOR DRIVER
440 M:      Jean Delvare <jdelvare@suse.com>
441 L:      lm-sensors@lm-sensors.org
442 S:      Maintained
443 F:      Documentation/hwmon/adt7475
444 F:      drivers/hwmon/adt7475.c
445
446 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
447 M:      Michael Hennerich <michael.hennerich@analog.com>
448 W:      http://wiki.analog.com/ADXL345
449 W:      http://ez.analog.com/community/linux-device-drivers
450 S:      Supported
451 F:      drivers/input/misc/adxl34x.c
452
453 ADVANSYS SCSI DRIVER
454 M:      Matthew Wilcox <matthew@wil.cx>
455 M:      Hannes Reinecke <hare@suse.com>
456 L:      linux-scsi@vger.kernel.org
457 S:      Maintained
458 F:      Documentation/scsi/advansys.txt
459 F:      drivers/scsi/advansys.c
460
461 AEDSP16 DRIVER
462 M:      Riccardo Facchetti <fizban@tin.it>
463 S:      Maintained
464 F:      sound/oss/aedsp16.c
465
466 AF9013 MEDIA DRIVER
467 M:      Antti Palosaari <crope@iki.fi>
468 L:      linux-media@vger.kernel.org
469 W:      http://linuxtv.org/
470 W:      http://palosaari.fi/linux/
471 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
472 T:      git git://linuxtv.org/anttip/media_tree.git
473 S:      Maintained
474 F:      drivers/media/dvb-frontends/af9013*
475
476 AF9033 MEDIA DRIVER
477 M:      Antti Palosaari <crope@iki.fi>
478 L:      linux-media@vger.kernel.org
479 W:      http://linuxtv.org/
480 W:      http://palosaari.fi/linux/
481 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
482 T:      git git://linuxtv.org/anttip/media_tree.git
483 S:      Maintained
484 F:      drivers/media/dvb-frontends/af9033*
485
486 AFFS FILE SYSTEM
487 L:      linux-fsdevel@vger.kernel.org
488 S:      Orphan
489 F:      Documentation/filesystems/affs.txt
490 F:      fs/affs/
491
492 AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
493 M:      David Howells <dhowells@redhat.com>
494 L:      linux-afs@lists.infradead.org
495 S:      Supported
496 F:      fs/afs/
497 F:      include/net/af_rxrpc.h
498 F:      net/rxrpc/af_rxrpc.c
499
500 AGPGART DRIVER
501 M:      David Airlie <airlied@linux.ie>
502 T:      git git://people.freedesktop.org/~airlied/linux (part of drm maint)
503 S:      Maintained
504 F:      drivers/char/agp/
505 F:      include/linux/agp*
506 F:      include/uapi/linux/agp*
507
508 AHA152X SCSI DRIVER
509 M:      "Juergen E. Fischer" <fischer@norbit.de>
510 L:      linux-scsi@vger.kernel.org
511 S:      Maintained
512 F:      drivers/scsi/aha152x*
513 F:      drivers/scsi/pcmcia/aha152x*
514
515 AIC7XXX / AIC79XX SCSI DRIVER
516 M:      Hannes Reinecke <hare@suse.com>
517 L:      linux-scsi@vger.kernel.org
518 S:      Maintained
519 F:      drivers/scsi/aic7xxx/
520
521 AIMSLAB FM RADIO RECEIVER DRIVER
522 M:      Hans Verkuil <hverkuil@xs4all.nl>
523 L:      linux-media@vger.kernel.org
524 T:      git git://linuxtv.org/media_tree.git
525 W:      http://linuxtv.org
526 S:      Maintained
527 F:      drivers/media/radio/radio-aimslab*
528
529 AIO
530 M:      Benjamin LaHaise <bcrl@kvack.org>
531 L:      linux-aio@kvack.org
532 S:      Supported
533 F:      fs/aio.c
534 F:      include/linux/*aio*.h
535
536 AIRSPY MEDIA DRIVER
537 M:      Antti Palosaari <crope@iki.fi>
538 L:      linux-media@vger.kernel.org
539 W:      http://linuxtv.org/
540 W:      http://palosaari.fi/linux/
541 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
542 T:      git git://linuxtv.org/anttip/media_tree.git
543 S:      Maintained
544 F:      drivers/media/usb/airspy/
545
546 ALCATEL SPEEDTOUCH USB DRIVER
547 M:      Duncan Sands <duncan.sands@free.fr>
548 L:      linux-usb@vger.kernel.org
549 W:      http://www.linux-usb.org/SpeedTouch/
550 S:      Maintained
551 F:      drivers/usb/atm/speedtch.c
552 F:      drivers/usb/atm/usbatm.c
553
554 ALCHEMY AU1XX0 MMC DRIVER
555 M:      Manuel Lauss <manuel.lauss@gmail.com>
556 S:      Maintained
557 F:      drivers/mmc/host/au1xmmc.c
558
559 ALI1563 I2C DRIVER
560 M:      Rudolf Marek <r.marek@assembler.cz>
561 L:      linux-i2c@vger.kernel.org
562 S:      Maintained
563 F:      Documentation/i2c/busses/i2c-ali1563
564 F:      drivers/i2c/busses/i2c-ali1563.c
565
566 ALLWINNER SECURITY SYSTEM
567 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
568 L:      linux-crypto@vger.kernel.org
569 S:      Maintained
570 F:      drivers/crypto/sunxi-ss/
571
572 ALPHA PORT
573 M:      Richard Henderson <rth@twiddle.net>
574 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
575 M:      Matt Turner <mattst88@gmail.com>
576 S:      Odd Fixes
577 L:      linux-alpha@vger.kernel.org
578 F:      arch/alpha/
579
580 ALTERA MAILBOX DRIVER
581 M:      Ley Foon Tan <lftan@altera.com>
582 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
583 S:      Maintained
584 F:      drivers/mailbox/mailbox-altera.c
585
586 ALTERA PIO DRIVER
587 M:      Tien Hock Loh <thloh@altera.com>
588 L:      linux-gpio@vger.kernel.org
589 S:      Maintained
590 F:      drivers/gpio/gpio-altera.c
591
592 ALTERA TRIPLE SPEED ETHERNET DRIVER
593 M:      Vince Bridgers <vbridger@opensource.altera.com>
594 L:      netdev@vger.kernel.org
595 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
596 S:      Maintained
597 F:      drivers/net/ethernet/altera/
598
599 ALTERA UART/JTAG UART SERIAL DRIVERS
600 M:      Tobias Klauser <tklauser@distanz.ch>
601 L:      linux-serial@vger.kernel.org
602 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
603 S:      Maintained
604 F:      drivers/tty/serial/altera_uart.c
605 F:      drivers/tty/serial/altera_jtaguart.c
606 F:      include/linux/altera_uart.h
607 F:      include/linux/altera_jtaguart.h
608
609 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
610 M:      Tom Lendacky <thomas.lendacky@amd.com>
611 L:      linux-crypto@vger.kernel.org
612 S:      Supported
613 F:      drivers/crypto/ccp/
614 F:      include/linux/ccp.h
615
616 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
617 M:      Andreas Herrmann <herrmann.der.user@googlemail.com>
618 L:      lm-sensors@lm-sensors.org
619 S:      Maintained
620 F:      Documentation/hwmon/fam15h_power
621 F:      drivers/hwmon/fam15h_power.c
622
623 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
624 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
625 S:      Orphan
626 F:      drivers/usb/gadget/udc/amd5536udc.*
627
628 AMD GEODE PROCESSOR/CHIPSET SUPPORT
629 P:      Andres Salomon <dilinger@queued.net>
630 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
631 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
632 S:      Supported
633 F:      drivers/char/hw_random/geode-rng.c
634 F:      drivers/crypto/geode*
635 F:      drivers/video/fbdev/geode/
636 F:      arch/x86/include/asm/geode.h
637
638 AMD IOMMU (AMD-VI)
639 M:      Joerg Roedel <joro@8bytes.org>
640 L:      iommu@lists.linux-foundation.org
641 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
642 S:      Maintained
643 F:      drivers/iommu/amd_iommu*.[ch]
644 F:      include/linux/amd-iommu.h
645
646 AMD KFD
647 M:      Oded Gabbay <oded.gabbay@gmail.com>
648 L:      dri-devel@lists.freedesktop.org
649 T:      git git://people.freedesktop.org/~gabbayo/linux.git
650 S:      Supported
651 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c
652 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
653 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
654 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
655 F:      drivers/gpu/drm/amd/amdkfd/
656 F:      drivers/gpu/drm/amd/include/cik_structs.h
657 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
658 F:      drivers/gpu/drm/amd/include/vi_structs.h
659 F:      drivers/gpu/drm/radeon/radeon_kfd.c
660 F:      drivers/gpu/drm/radeon/radeon_kfd.h
661 F:      include/uapi/linux/kfd_ioctl.h
662
663 AMD XGBE DRIVER
664 M:      Tom Lendacky <thomas.lendacky@amd.com>
665 L:      netdev@vger.kernel.org
666 S:      Supported
667 F:      drivers/net/ethernet/amd/xgbe/
668
669 AMS (Apple Motion Sensor) DRIVER
670 M:      Michael Hanselmann <linux-kernel@hansmi.ch>
671 S:      Supported
672 F:      drivers/macintosh/ams/
673
674 AMSO1100 RNIC DRIVER
675 M:      Tom Tucker <tom@opengridcomputing.com>
676 M:      Steve Wise <swise@opengridcomputing.com>
677 L:      linux-rdma@vger.kernel.org
678 S:      Maintained
679 F:      drivers/infiniband/hw/amso1100/
680
681 ANALOG DEVICES INC AD9389B DRIVER
682 M:      Hans Verkuil <hans.verkuil@cisco.com>
683 L:      linux-media@vger.kernel.org
684 S:      Maintained
685 F:      drivers/media/i2c/ad9389b*
686
687 ANALOG DEVICES INC ADV7180 DRIVER
688 M:      Lars-Peter Clausen <lars@metafoo.de>
689 L:      linux-media@vger.kernel.org
690 W:      http://ez.analog.com/community/linux-device-drivers
691 S:      Supported
692 F:      drivers/media/i2c/adv7180.c
693
694 ANALOG DEVICES INC ADV7511 DRIVER
695 M:      Hans Verkuil <hans.verkuil@cisco.com>
696 L:      linux-media@vger.kernel.org
697 S:      Maintained
698 F:      drivers/media/i2c/adv7511*
699
700 ANALOG DEVICES INC ADV7604 DRIVER
701 M:      Hans Verkuil <hans.verkuil@cisco.com>
702 L:      linux-media@vger.kernel.org
703 S:      Maintained
704 F:      drivers/media/i2c/adv7604*
705
706 ANALOG DEVICES INC ADV7842 DRIVER
707 M:      Hans Verkuil <hans.verkuil@cisco.com>
708 L:      linux-media@vger.kernel.org
709 S:      Maintained
710 F:      drivers/media/i2c/adv7842*
711
712 ANALOG DEVICES INC ASOC CODEC DRIVERS
713 M:      Lars-Peter Clausen <lars@metafoo.de>
714 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
715 W:      http://wiki.analog.com/
716 W:      http://ez.analog.com/community/linux-device-drivers
717 S:      Supported
718 F:      sound/soc/codecs/adau*
719 F:      sound/soc/codecs/adav*
720 F:      sound/soc/codecs/ad1*
721 F:      sound/soc/codecs/ad7*
722 F:      sound/soc/codecs/ssm*
723 F:      sound/soc/codecs/sigmadsp.*
724
725 ANALOG DEVICES INC ASOC DRIVERS
726 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
727 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
728 W:      http://blackfin.uclinux.org/
729 S:      Supported
730 F:      sound/soc/blackfin/*
731
732 ANALOG DEVICES INC IIO DRIVERS
733 M:      Lars-Peter Clausen <lars@metafoo.de>
734 M:      Michael Hennerich <Michael.Hennerich@analog.com>
735 W:      http://wiki.analog.com/
736 W:      http://ez.analog.com/community/linux-device-drivers
737 S:      Supported
738 F:      drivers/iio/*/ad*
739 X:      drivers/iio/*/adjd*
740 F:      drivers/staging/iio/*/ad*
741 F:      staging/iio/trigger/iio-trig-bfin-timer.c
742
743 ANALOG DEVICES INC DMA DRIVERS
744 M:      Lars-Peter Clausen <lars@metafoo.de>
745 W:      http://ez.analog.com/community/linux-device-drivers
746 S:      Supported
747 F:      drivers/dma/dma-axi-dmac.c
748
749 ANDROID DRIVERS
750 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
751 M:      Arve HjønnevĂ¥g <arve@android.com>
752 M:      Riley Andrews <riandrews@android.com>
753 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
754 L:      devel@driverdev.osuosl.org
755 S:      Supported
756 F:      drivers/android/
757 F:      drivers/staging/android/
758
759 AOA (Apple Onboard Audio) ALSA DRIVER
760 M:      Johannes Berg <johannes@sipsolutions.net>
761 L:      linuxppc-dev@lists.ozlabs.org
762 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
763 S:      Maintained
764 F:      sound/aoa/
765
766 APM DRIVER
767 M:      Jiri Kosina <jikos@kernel.org>
768 S:      Odd fixes
769 F:      arch/x86/kernel/apm_32.c
770 F:      include/linux/apm_bios.h
771 F:      include/uapi/linux/apm_bios.h
772 F:      drivers/char/apm-emulation.c
773
774 APPLE BCM5974 MULTITOUCH DRIVER
775 M:      Henrik Rydberg <rydberg@bitmath.org>
776 L:      linux-input@vger.kernel.org
777 S:      Odd fixes
778 F:      drivers/input/mouse/bcm5974.c
779
780 APPLE SMC DRIVER
781 M:      Henrik Rydberg <rydberg@bitmath.org>
782 L:      lm-sensors@lm-sensors.org
783 S:      Odd fixes
784 F:      drivers/hwmon/applesmc.c
785
786 APPLETALK NETWORK LAYER
787 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
788 S:      Maintained
789 F:      drivers/net/appletalk/
790 F:      net/appletalk/
791
792 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
793 M:      Duc Dang <dhdang@apm.com>
794 S:      Supported
795 F:      arch/arm64/boot/dts/apm/
796
797 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
798 M:      Iyappan Subramanian <isubramanian@apm.com>
799 M:      Keyur Chudgar <kchudgar@apm.com>
800 S:      Supported
801 F:      drivers/net/ethernet/apm/xgene/
802 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
803
804 APTINA CAMERA SENSOR PLL
805 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
806 L:      linux-media@vger.kernel.org
807 S:      Maintained
808 F:      drivers/media/i2c/aptina-pll.*
809
810 ARC FRAMEBUFFER DRIVER
811 M:      Jaya Kumar <jayalk@intworks.biz>
812 S:      Maintained
813 F:      drivers/video/fbdev/arcfb.c
814 F:      drivers/video/fbdev/core/fb_defio.c
815
816 ARCNET NETWORK LAYER
817 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
818 L:      netdev@vger.kernel.org
819 S:      Maintained
820 F:      drivers/net/arcnet/
821 F:      include/uapi/linux/if_arcnet.h
822
823 ARM MFM AND FLOPPY DRIVERS
824 M:      Ian Molton <spyro@f2s.com>
825 S:      Maintained
826 F:      arch/arm/lib/floppydma.S
827 F:      arch/arm/include/asm/floppy.h
828
829 ARM PMU PROFILING AND DEBUGGING
830 M:      Will Deacon <will.deacon@arm.com>
831 R:      Mark Rutland <mark.rutland@arm.com>
832 S:      Maintained
833 F:      arch/arm*/kernel/perf_*
834 F:      arch/arm/oprofile/common.c
835 F:      arch/arm*/kernel/hw_breakpoint.c
836 F:      arch/arm*/include/asm/hw_breakpoint.h
837 F:      arch/arm*/include/asm/perf_event.h
838 F:      drivers/perf/arm_pmu.c
839 F:      include/linux/perf/arm_pmu.h
840
841 ARM PORT
842 M:      Russell King <linux@arm.linux.org.uk>
843 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
844 W:      http://www.arm.linux.org.uk/
845 S:      Maintained
846 F:      arch/arm/
847
848 ARM SUB-ARCHITECTURES
849 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
850 S:      Maintained
851 F:      arch/arm/mach-*/
852 F:      arch/arm/plat-*/
853 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
854
855 ARM PRIMECELL AACI PL041 DRIVER
856 M:      Russell King <linux@arm.linux.org.uk>
857 S:      Maintained
858 F:      sound/arm/aaci.*
859
860 ARM PRIMECELL CLCD PL110 DRIVER
861 M:      Russell King <linux@arm.linux.org.uk>
862 S:      Maintained
863 F:      drivers/video/fbdev/amba-clcd.*
864
865 ARM PRIMECELL KMI PL050 DRIVER
866 M:      Russell King <linux@arm.linux.org.uk>
867 S:      Maintained
868 F:      drivers/input/serio/ambakmi.*
869 F:      include/linux/amba/kmi.h
870
871 ARM PRIMECELL MMCI PL180/1 DRIVER
872 M:      Russell King <linux@arm.linux.org.uk>
873 S:      Maintained
874 F:      drivers/mmc/host/mmci.*
875 F:      include/linux/amba/mmci.h
876
877 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
878 M:      Russell King <linux@arm.linux.org.uk>
879 S:      Maintained
880 F:      drivers/tty/serial/amba-pl01*.c
881 F:      include/linux/amba/serial.h
882
883 ARM PRIMECELL BUS SUPPORT
884 M:      Russell King <linux@arm.linux.org.uk>
885 S:      Maintained
886 F:      drivers/amba/
887 F:      include/linux/amba/bus.h
888
889 ARM/ADS SPHERE MACHINE SUPPORT
890 M:      Lennert Buytenhek <kernel@wantstofly.org>
891 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
892 S:      Maintained
893
894 ARM/AFEB9260 MACHINE SUPPORT
895 M:      Sergey Lapin <slapin@ossfans.org>
896 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
897 S:      Maintained
898
899 ARM/AJECO 1ARM MACHINE SUPPORT
900 M:      Lennert Buytenhek <kernel@wantstofly.org>
901 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
902 S:      Maintained
903
904 ARM/Allwinner sunXi SoC support
905 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
906 M:      Chen-Yu Tsai <wens@csie.org>
907 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
908 S:      Maintained
909 N:      sun[x456789]i
910
911 ARM/Allwinner SoC Clock Support
912 M:      Emilio LĂ³pez <emilio@elopez.com.ar>
913 S:      Maintained
914 F:      drivers/clk/sunxi/
915
916 ARM/Amlogic MesonX SoC support
917 M:      Carlo Caione <carlo@caione.org>
918 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
919 S:      Maintained
920 F:      drivers/media/rc/meson-ir.c
921 N:      meson[x68]
922
923 ARM/Annapurna Labs ALPINE ARCHITECTURE
924 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
925 S:      Maintained
926 F:      arch/arm/mach-alpine/
927
928 ARM/ATMEL AT91RM9200, AT91SAM9 AND SAMA5 SOC SUPPORT
929 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
930 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
931 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
932 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
933 W:      http://www.linux4sam.org
934 S:      Supported
935 F:      arch/arm/mach-at91/
936 F:      include/soc/at91/
937 F:      arch/arm/boot/dts/at91*.dts
938 F:      arch/arm/boot/dts/at91*.dtsi
939 F:      arch/arm/boot/dts/sama*.dts
940 F:      arch/arm/boot/dts/sama*.dtsi
941 F:      arch/arm/include/debug/at91.S
942
943 ARM/ATMEL AT91 Clock Support
944 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
945 S:      Maintained
946 F:      drivers/clk/at91
947
948 ARM/CALXEDA HIGHBANK ARCHITECTURE
949 M:      Rob Herring <robh@kernel.org>
950 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
951 S:      Maintained
952 F:      arch/arm/mach-highbank/
953
954 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
955 M:      Krzysztof Halasa <khalasa@piap.pl>
956 S:      Maintained
957 F:      arch/arm/mach-cns3xxx/
958
959 ARM/CAVIUM THUNDER NETWORK DRIVER
960 M:      Sunil Goutham <sgoutham@cavium.com>
961 M:      Robert Richter <rric@kernel.org>
962 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
963 S:      Supported
964 F:      drivers/net/ethernet/cavium/thunder/
965
966 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
967 M:      Alexander Shiyan <shc_work@mail.ru>
968 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
969 S:      Odd Fixes
970 N:      clps711x
971
972 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
973 M:      Hartley Sweeten <hsweeten@visionengravers.com>
974 M:      Ryan Mallon <rmallon@gmail.com>
975 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
976 S:      Maintained
977 F:      arch/arm/mach-ep93xx/
978 F:      arch/arm/mach-ep93xx/include/mach/
979
980 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
981 M:      Lennert Buytenhek <kernel@wantstofly.org>
982 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
983 S:      Maintained
984
985 ARM/CLKDEV SUPPORT
986 M:      Russell King <linux@arm.linux.org.uk>
987 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
988 S:      Maintained
989 F:      arch/arm/include/asm/clkdev.h
990 F:      drivers/clk/clkdev.c
991
992 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
993 M:      Mike Rapoport <mike@compulab.co.il>
994 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
995 S:      Maintained
996
997 ARM/CONTEC MICRO9 MACHINE SUPPORT
998 M:      Hubert Feurstein <hubert.feurstein@contec.at>
999 S:      Maintained
1000 F:      arch/arm/mach-ep93xx/micro9.c
1001
1002 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1003 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1004 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1005 S:      Maintained
1006 F:      drivers/hwtracing/coresight/*
1007 F:      Documentation/trace/coresight.txt
1008 F:      Documentation/devicetree/bindings/arm/coresight.txt
1009 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1010
1011 ARM/CORGI MACHINE SUPPORT
1012 M:      Richard Purdie <rpurdie@rpsys.net>
1013 S:      Maintained
1014
1015 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1016 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1017 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1018 T:      git git://github.com/ulli-kroll/linux.git
1019 S:      Maintained
1020 F:      arch/arm/mach-gemini/
1021 F:      drivers/rtc/rtc-gemini.c
1022
1023 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1024 M:      Barry Song <baohua@kernel.org>
1025 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1026 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1027 S:      Maintained
1028 F:      arch/arm/mach-prima2/
1029 F:      drivers/clk/sirf/
1030 F:      drivers/clocksource/timer-prima2.c
1031 F:      drivers/clocksource/timer-atlas7.c
1032 N:      [^a-z]sirf
1033
1034 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1035 M:      Baruch Siach <baruch@tkos.co.il>
1036 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1037 S:      Maintained
1038 F:      arch/arm/boot/dts/cx92755*
1039 N:      digicolor
1040
1041 ARM/EBSA110 MACHINE SUPPORT
1042 M:      Russell King <linux@arm.linux.org.uk>
1043 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1044 W:      http://www.arm.linux.org.uk/
1045 S:      Maintained
1046 F:      arch/arm/mach-ebsa110/
1047 F:      drivers/net/ethernet/amd/am79c961a.*
1048
1049 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1050 M:      Uwe Kleine-König <kernel@pengutronix.de>
1051 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1052 S:      Maintained
1053 N:      efm32
1054
1055 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1056 M:      Daniel Ribeiro <drwyrm@gmail.com>
1057 M:      Stefan Schmidt <stefan@openezx.org>
1058 M:      Harald Welte <laforge@openezx.org>
1059 L:      openezx-devel@lists.openezx.org (moderated for non-subscribers)
1060 W:      http://www.openezx.org/
1061 S:      Maintained
1062 T:      topgit git://git.openezx.org/openezx.git
1063 F:      arch/arm/mach-pxa/ezx.c
1064
1065 ARM/FARADAY FA526 PORT
1066 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1067 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1068 S:      Maintained
1069 T:      git git://git.berlios.de/gemini-board
1070 F:      arch/arm/mm/*-fa*
1071
1072 ARM/FOOTBRIDGE ARCHITECTURE
1073 M:      Russell King <linux@arm.linux.org.uk>
1074 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1075 W:      http://www.arm.linux.org.uk/
1076 S:      Maintained
1077 F:      arch/arm/include/asm/hardware/dec21285.h
1078 F:      arch/arm/mach-footbridge/
1079
1080 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1081 M:      Shawn Guo <shawnguo@kernel.org>
1082 M:      Sascha Hauer <kernel@pengutronix.de>
1083 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1084 S:      Maintained
1085 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1086 F:      arch/arm/mach-imx/
1087 F:      arch/arm/mach-mxs/
1088 F:      arch/arm/boot/dts/imx*
1089 F:      arch/arm/configs/imx*_defconfig
1090 F:      drivers/clk/imx/
1091 F:      include/soc/imx/
1092
1093 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1094 M:      Shawn Guo <shawnguo@kernel.org>
1095 M:      Sascha Hauer <kernel@pengutronix.de>
1096 R:      Stefan Agner <stefan@agner.ch>
1097 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1098 S:      Maintained
1099 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1100 F:      arch/arm/mach-imx/*vf610*
1101 F:      arch/arm/boot/dts/vf*
1102
1103 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1104 M:      Lennert Buytenhek <kernel@wantstofly.org>
1105 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1106 S:      Maintained
1107
1108 ARM/GUMSTIX MACHINE SUPPORT
1109 M:      Steve Sakoman <sakoman@gmail.com>
1110 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1111 S:      Maintained
1112
1113 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1114 M:      Philipp Zabel <philipp.zabel@gmail.com>
1115 M:      Paul Parsons <lost.distance@yahoo.com>
1116 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1117 S:      Maintained
1118 F:      arch/arm/mach-pxa/hx4700.c
1119 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1120 F:      sound/soc/pxa/hx4700.c
1121
1122 ARM/HISILICON SOC SUPPORT
1123 M:      Wei Xu <xuwei5@hisilicon.com>
1124 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1125 W:      http://www.hisilicon.com
1126 S:      Supported
1127 T:      git git://github.com/hisilicon/linux-hisi.git
1128 F:      arch/arm/mach-hisi/
1129
1130 ARM/HP JORNADA 7XX MACHINE SUPPORT
1131 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1132 W:      www.jlime.com
1133 S:      Maintained
1134 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1135 F:      arch/arm/mach-sa1100/jornada720.c
1136 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1137
1138 ARM/IGEP MACHINE SUPPORT
1139 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1140 M:      Javier Martinez Canillas <javier@dowhile0.org>
1141 L:      linux-omap@vger.kernel.org
1142 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1143 S:      Maintained
1144 F:      arch/arm/boot/dts/omap3-igep*
1145
1146 ARM/INCOME PXA270 SUPPORT
1147 M:      Marek Vasut <marek.vasut@gmail.com>
1148 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1149 S:      Maintained
1150 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1151
1152 ARM/INTEL IOP32X ARM ARCHITECTURE
1153 M:      Lennert Buytenhek <kernel@wantstofly.org>
1154 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1155 S:      Maintained
1156
1157 ARM/INTEL IOP33X ARM ARCHITECTURE
1158 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1159 S:      Orphan
1160
1161 ARM/INTEL IOP13XX ARM ARCHITECTURE
1162 M:      Lennert Buytenhek <kernel@wantstofly.org>
1163 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1164 S:      Maintained
1165
1166 ARM/INTEL IQ81342EX MACHINE SUPPORT
1167 M:      Lennert Buytenhek <kernel@wantstofly.org>
1168 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1169 S:      Maintained
1170
1171 ARM/INTEL IXDP2850 MACHINE SUPPORT
1172 M:      Lennert Buytenhek <kernel@wantstofly.org>
1173 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1174 S:      Maintained
1175
1176 ARM/INTEL IXP4XX ARM ARCHITECTURE
1177 M:      Imre Kaloz <kaloz@openwrt.org>
1178 M:      Krzysztof Halasa <khalasa@piap.pl>
1179 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1180 S:      Maintained
1181 F:      arch/arm/mach-ixp4xx/
1182
1183 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1184 M:      Jonathan Cameron <jic23@cam.ac.uk>
1185 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1186 S:      Maintained
1187 F:      arch/arm/mach-pxa/stargate2.c
1188 F:      drivers/pcmcia/pxa2xx_stargate2.c
1189
1190 ARM/INTEL XSC3 (MANZANO) ARM CORE
1191 M:      Lennert Buytenhek <kernel@wantstofly.org>
1192 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1193 S:      Maintained
1194
1195 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1196 M:      Lennert Buytenhek <kernel@wantstofly.org>
1197 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1198 S:      Maintained
1199
1200 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
1201 M:      Santosh Shilimkar <ssantosh@kernel.org>
1202 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1203 S:      Maintained
1204 F:      arch/arm/mach-keystone/
1205 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
1206
1207 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
1208 M:      Santosh Shilimkar <ssantosh@kernel.org>
1209 L:      linux-kernel@vger.kernel.org
1210 S:      Maintained
1211 F:      drivers/clk/keystone/
1212
1213 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
1214 M:      Santosh Shilimkar <ssantosh@kernel.org>
1215 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1216 L:      linux-kernel@vger.kernel.org
1217 S:      Maintained
1218 F:      drivers/clocksource/timer-keystone.c
1219
1220 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
1221 M:      Santosh Shilimkar <ssantosh@kernel.org>
1222 L:      linux-kernel@vger.kernel.org
1223 S:      Maintained
1224 F:      drivers/power/reset/keystone-reset.c
1225
1226 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
1227 M:      Santosh Shilimkar <ssantosh@kernel.org>
1228 L:      linux-kernel@vger.kernel.org
1229 S:      Maintained
1230 F:      drivers/memory/*emif*
1231
1232 ARM/LOGICPD PXA270 MACHINE SUPPORT
1233 M:      Lennert Buytenhek <kernel@wantstofly.org>
1234 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1235 S:      Maintained
1236
1237 ARM/LPC18XX ARCHITECTURE
1238 M:      Joachim Eastwood <manabian@gmail.com>
1239 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1240 S:      Maintained
1241 F:      arch/arm/boot/dts/lpc43*
1242 F:      drivers/clk/nxp/clk-lpc18xx*
1243 F:      drivers/clocksource/time-lpc32xx.c
1244 F:      drivers/i2c/busses/i2c-lpc2k.c
1245 F:      drivers/memory/pl172.c
1246 F:      drivers/mtd/spi-nor/nxp-spifi.c
1247 F:      drivers/rtc/rtc-lpc24xx.c
1248 N:      lpc18xx
1249
1250 ARM/MAGICIAN MACHINE SUPPORT
1251 M:      Philipp Zabel <philipp.zabel@gmail.com>
1252 S:      Maintained
1253
1254 ARM/Marvell Kirkwood and Armada 370, 375, 38x, XP SOC support
1255 M:      Jason Cooper <jason@lakedaemon.net>
1256 M:      Andrew Lunn <andrew@lunn.ch>
1257 M:      Gregory Clement <gregory.clement@free-electrons.com>
1258 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1259 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1260 S:      Maintained
1261 F:      arch/arm/mach-mvebu/
1262 F:      drivers/rtc/rtc-armada38x.c
1263 F:      arch/arm/boot/dts/armada*
1264 F:      arch/arm/boot/dts/kirkwood*
1265
1266
1267 ARM/Marvell Berlin SoC support
1268 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1269 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1270 S:      Maintained
1271 F:      arch/arm/mach-berlin/
1272 F:      arch/arm/boot/dts/berlin*
1273
1274
1275 ARM/Marvell Dove/MV78xx0/Orion SOC support
1276 M:      Jason Cooper <jason@lakedaemon.net>
1277 M:      Andrew Lunn <andrew@lunn.ch>
1278 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1279 M:      Gregory Clement <gregory.clement@free-electrons.com>
1280 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1281 S:      Maintained
1282 F:      arch/arm/mach-dove/
1283 F:      arch/arm/mach-mv78xx0/
1284 F:      arch/arm/mach-orion5x/
1285 F:      arch/arm/plat-orion/
1286 F:      arch/arm/boot/dts/dove*
1287 F:      arch/arm/boot/dts/orion5x*
1288
1289
1290 ARM/Orion SoC/Technologic Systems TS-78xx platform support
1291 M:      Alexander Clouter <alex@digriz.org.uk>
1292 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1293 W:      http://www.digriz.org.uk/ts78xx/kernel
1294 S:      Maintained
1295 F:      arch/arm/mach-orion5x/ts78xx-*
1296
1297 ARM/Mediatek RTC DRIVER
1298 M:      Eddie Huang <eddie.huang@mediatek.com>
1299 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1300 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1301 S:      Maintained
1302 F:      drivers/rtc/rtc-mt6397.c
1303
1304 ARM/Mediatek SoC support
1305 M:      Matthias Brugger <matthias.bgg@gmail.com>
1306 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1307 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1308 S:      Maintained
1309 F:      arch/arm/boot/dts/mt6*
1310 F:      arch/arm/boot/dts/mt8*
1311 F:      arch/arm/mach-mediatek/
1312 N:      mtk
1313 K:      mediatek
1314
1315 ARM/MICREL KS8695 ARCHITECTURE
1316 M:      Greg Ungerer <gerg@uclinux.org>
1317 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1318 F:      arch/arm/mach-ks8695/
1319 S:      Odd Fixes
1320
1321 ARM/MIOA701 MACHINE SUPPORT
1322 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1323 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1324 F:      arch/arm/mach-pxa/mioa701.c
1325 S:      Maintained
1326
1327 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1328 M:      Michael Petchkovsky <mkpetch@internode.on.net>
1329 S:      Maintained
1330
1331 ARM/NOMADIK ARCHITECTURE
1332 M:      Alessandro Rubini <rubini@unipv.it>
1333 M:      Linus Walleij <linus.walleij@linaro.org>
1334 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1335 S:      Maintained
1336 F:      arch/arm/mach-nomadik/
1337 F:      drivers/pinctrl/nomadik/
1338 F:      drivers/i2c/busses/i2c-nomadik.c
1339 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
1340
1341 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
1342 M:      Nelson Castillo <arhuaco@freaks-unidos.net>
1343 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
1344 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
1345 S:      Supported
1346
1347 ARM/TOSA MACHINE SUPPORT
1348 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1349 M:      Dirk Opfer <dirk@opfer-online.de>
1350 S:      Maintained
1351
1352 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
1353 M:      Marek Vasut <marek.vasut@gmail.com>
1354 L:      linux-arm-kernel@lists.infradead.org
1355 W:      http://hackndev.com
1356 S:      Maintained
1357 F:      arch/arm/mach-pxa/include/mach/palmtx.h
1358 F:      arch/arm/mach-pxa/palmtx.c
1359 F:      arch/arm/mach-pxa/include/mach/palmt5.h
1360 F:      arch/arm/mach-pxa/palmt5.c
1361 F:      arch/arm/mach-pxa/include/mach/palmld.h
1362 F:      arch/arm/mach-pxa/palmld.c
1363 F:      arch/arm/mach-pxa/include/mach/palmte2.h
1364 F:      arch/arm/mach-pxa/palmte2.c
1365 F:      arch/arm/mach-pxa/include/mach/palmtc.h
1366 F:      arch/arm/mach-pxa/palmtc.c
1367
1368 ARM/PALM TREO SUPPORT
1369 M:      Tomas Cech <sleep_walker@suse.com>
1370 L:      linux-arm-kernel@lists.infradead.org
1371 W:      http://hackndev.com
1372 S:      Maintained
1373 F:      arch/arm/mach-pxa/include/mach/palmtreo.h
1374 F:      arch/arm/mach-pxa/palmtreo.c
1375
1376 ARM/PALMZ72 SUPPORT
1377 M:      Sergey Lapin <slapin@ossfans.org>
1378 L:      linux-arm-kernel@lists.infradead.org
1379 W:      http://hackndev.com
1380 S:      Maintained
1381 F:      arch/arm/mach-pxa/include/mach/palmz72.h
1382 F:      arch/arm/mach-pxa/palmz72.c
1383
1384 ARM/PLEB SUPPORT
1385 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
1386 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1387 S:      Maintained
1388
1389 ARM/PT DIGITAL BOARD PORT
1390 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
1391 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1392 W:      http://www.arm.linux.org.uk/
1393 S:      Maintained
1394
1395 ARM/QUALCOMM SUPPORT
1396 M:      Kumar Gala <galak@codeaurora.org>
1397 M:      Andy Gross <agross@codeaurora.org>
1398 M:      David Brown <davidb@codeaurora.org>
1399 L:      linux-arm-msm@vger.kernel.org
1400 L:      linux-soc@vger.kernel.org
1401 S:      Maintained
1402 F:      arch/arm/mach-qcom/
1403 F:      drivers/soc/qcom/
1404 F:      drivers/tty/serial/msm_serial.h
1405 F:      drivers/tty/serial/msm_serial.c
1406 F:      drivers/*/pm8???-*
1407 F:      drivers/mfd/ssbi.c
1408 F:      drivers/firmware/qcom_scm.c
1409 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git
1410
1411 ARM/RADISYS ENP2611 MACHINE SUPPORT
1412 M:      Lennert Buytenhek <kernel@wantstofly.org>
1413 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1414 S:      Maintained
1415
1416 ARM/RISCPC ARCHITECTURE
1417 M:      Russell King <linux@arm.linux.org.uk>
1418 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1419 W:      http://www.arm.linux.org.uk/
1420 S:      Maintained
1421 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
1422 F:      arch/arm/include/asm/hardware/ioc.h
1423 F:      arch/arm/include/asm/hardware/iomd.h
1424 F:      arch/arm/include/asm/hardware/memc.h
1425 F:      arch/arm/mach-rpc/
1426 F:      drivers/net/ethernet/8390/etherh.c
1427 F:      drivers/net/ethernet/i825xx/ether1*
1428 F:      drivers/net/ethernet/seeq/ether3*
1429 F:      drivers/scsi/arm/
1430
1431 ARM/Rockchip SoC support
1432 M:      Heiko Stuebner <heiko@sntech.de>
1433 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1434 L:      linux-rockchip@lists.infradead.org
1435 S:      Maintained
1436 F:      arch/arm/boot/dts/rk3*
1437 F:      arch/arm/mach-rockchip/
1438 F:      drivers/clk/rockchip/
1439 F:      drivers/i2c/busses/i2c-rk3x.c
1440 F:      drivers/*/*rockchip*
1441 F:      drivers/*/*/*rockchip*
1442 F:      sound/soc/rockchip/
1443 N:      rockchip
1444
1445 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
1446 M:      Kukjin Kim <kgene@kernel.org>
1447 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
1448 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1449 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1450 S:      Maintained
1451 F:      arch/arm/boot/dts/s3c*
1452 F:      arch/arm/boot/dts/exynos*
1453 F:      arch/arm64/boot/dts/exynos/
1454 F:      arch/arm/plat-samsung/
1455 F:      arch/arm/mach-s3c24*/
1456 F:      arch/arm/mach-s3c64xx/
1457 F:      arch/arm/mach-s5p*/
1458 F:      arch/arm/mach-exynos*/
1459 F:      drivers/*/*s3c2410*
1460 F:      drivers/*/*/*s3c2410*
1461 F:      drivers/spi/spi-s3c*
1462 F:      drivers/soc/samsung/*
1463 F:      sound/soc/samsung/*
1464 F:      Documentation/arm/Samsung/
1465 F:      Documentation/devicetree/bindings/arm/samsung/
1466 F:      Documentation/devicetree/bindings/sram/samsung-sram.txt
1467 F:      Documentation/devicetree/bindings/power/pd-samsung.txt
1468 N:      exynos
1469
1470 ARM/SAMSUNG MOBILE MACHINE SUPPORT
1471 M:      Kyungmin Park <kyungmin.park@samsung.com>
1472 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1473 S:      Maintained
1474 F:      arch/arm/mach-s5pv210/
1475
1476 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1477 M:      Kyungmin Park <kyungmin.park@samsung.com>
1478 M:      Kamil Debski <k.debski@samsung.com>
1479 L:      linux-arm-kernel@lists.infradead.org
1480 L:      linux-media@vger.kernel.org
1481 S:      Maintained
1482 F:      drivers/media/platform/s5p-g2d/
1483
1484 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1485 M:      Kyungmin Park <kyungmin.park@samsung.com>
1486 M:      Kamil Debski <k.debski@samsung.com>
1487 M:      Jeongtae Park <jtp.park@samsung.com>
1488 L:      linux-arm-kernel@lists.infradead.org
1489 L:      linux-media@vger.kernel.org
1490 S:      Maintained
1491 F:      arch/arm/plat-samsung/s5p-dev-mfc.c
1492 F:      drivers/media/platform/s5p-mfc/
1493
1494 ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1495 M:      Kyungmin Park <kyungmin.park@samsung.com>
1496 M:      Tomasz Stanislawski <t.stanislaws@samsung.com>
1497 L:      linux-arm-kernel@lists.infradead.org
1498 L:      linux-media@vger.kernel.org
1499 S:      Maintained
1500 F:      drivers/media/platform/s5p-tv/
1501
1502 ARM/SHMOBILE ARM ARCHITECTURE
1503 M:      Simon Horman <horms@verge.net.au>
1504 M:      Magnus Damm <magnus.damm@gmail.com>
1505 L:      linux-sh@vger.kernel.org
1506 W:      http://oss.renesas.com
1507 Q:      http://patchwork.kernel.org/project/linux-sh/list/
1508 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1509 S:      Supported
1510 F:      arch/arm/boot/dts/emev2*
1511 F:      arch/arm/boot/dts/r7s*
1512 F:      arch/arm/boot/dts/r8a*
1513 F:      arch/arm/boot/dts/sh*
1514 F:      arch/arm/configs/shmobile_defconfig
1515 F:      arch/arm/include/debug/renesas-scif.S
1516 F:      arch/arm/mach-shmobile/
1517 F:      drivers/sh/
1518
1519 ARM/SOCFPGA ARCHITECTURE
1520 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1521 S:      Maintained
1522 F:      arch/arm/mach-socfpga/
1523 F:      arch/arm/boot/dts/socfpga*
1524 F:      arch/arm/configs/socfpga_defconfig
1525 W:      http://www.rocketboards.org
1526 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
1527
1528 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1529 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1530 S:      Maintained
1531 F:      drivers/clk/socfpga/
1532
1533 ARM/SOCFPGA EDAC SUPPORT
1534 M:      Thor Thayer <tthayer@opensource.altera.com>
1535 S:      Maintained
1536 F:      drivers/edac/altera_edac.
1537
1538 ARM/STI ARCHITECTURE
1539 M:      Srinivas Kandagatla <srinivas.kandagatla@gmail.com>
1540 M:      Maxime Coquelin <maxime.coquelin@st.com>
1541 M:      Patrice Chotard <patrice.chotard@st.com>
1542 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1543 L:      kernel@stlinux.com
1544 W:      http://www.stlinux.com
1545 S:      Maintained
1546 F:      arch/arm/mach-sti/
1547 F:      arch/arm/boot/dts/sti*
1548 F:      drivers/char/hw_random/st-rng.c
1549 F:      drivers/clocksource/arm_global_timer.c
1550 F:      drivers/clocksource/clksrc_st_lpc.c
1551 F:      drivers/i2c/busses/i2c-st.c
1552 F:      drivers/media/rc/st_rc.c
1553 F:      drivers/media/platform/sti/c8sectpfe/
1554 F:      drivers/mmc/host/sdhci-st.c
1555 F:      drivers/phy/phy-miphy28lp.c
1556 F:      drivers/phy/phy-miphy365x.c
1557 F:      drivers/phy/phy-stih407-usb.c
1558 F:      drivers/phy/phy-stih41x-usb.c
1559 F:      drivers/pinctrl/pinctrl-st.c
1560 F:      drivers/reset/sti/
1561 F:      drivers/rtc/rtc-st-lpc.c
1562 F:      drivers/tty/serial/st-asc.c
1563 F:      drivers/usb/dwc3/dwc3-st.c
1564 F:      drivers/usb/host/ehci-st.c
1565 F:      drivers/usb/host/ohci-st.c
1566 F:      drivers/watchdog/st_lpc_wdt.c
1567 F:      drivers/ata/ahci_st.c
1568
1569 ARM/STM32 ARCHITECTURE
1570 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
1571 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1572 S:      Maintained
1573 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git
1574 N:      stm32
1575 F:      drivers/clocksource/armv7m_systick.c
1576
1577 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
1578 M:      Lennert Buytenhek <kernel@wantstofly.org>
1579 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1580 S:      Maintained
1581
1582 ARM/TETON BGA MACHINE SUPPORT
1583 M:      "Mark F. Brown" <mark.brown314@gmail.com>
1584 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1585 S:      Maintained
1586
1587 ARM/THECUS N2100 MACHINE SUPPORT
1588 M:      Lennert Buytenhek <kernel@wantstofly.org>
1589 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1590 S:      Maintained
1591
1592 ARM/NUVOTON W90X900 ARM ARCHITECTURE
1593 M:      Wan ZongShun <mcuos.com@gmail.com>
1594 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1595 W:      http://www.mcuos.com
1596 S:      Maintained
1597 F:      arch/arm/mach-w90x900/
1598 F:      drivers/input/keyboard/w90p910_keypad.c
1599 F:      drivers/input/touchscreen/w90p910_ts.c
1600 F:      drivers/watchdog/nuc900_wdt.c
1601 F:      drivers/net/ethernet/nuvoton/w90p910_ether.c
1602 F:      drivers/mtd/nand/nuc900_nand.c
1603 F:      drivers/rtc/rtc-nuc900.c
1604 F:      drivers/spi/spi-nuc900.c
1605 F:      drivers/usb/host/ehci-w90x900.c
1606 F:      drivers/video/fbdev/nuc900fb.c
1607
1608 ARM/U300 MACHINE SUPPORT
1609 M:      Linus Walleij <linus.walleij@linaro.org>
1610 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1611 S:      Supported
1612 F:      arch/arm/mach-u300/
1613 F:      drivers/clocksource/timer-u300.c
1614 F:      drivers/i2c/busses/i2c-stu300.c
1615 F:      drivers/rtc/rtc-coh901331.c
1616 F:      drivers/watchdog/coh901327_wdt.c
1617 F:      drivers/dma/coh901318*
1618 F:      drivers/mfd/ab3100*
1619 F:      drivers/rtc/rtc-ab3100.c
1620 F:      drivers/rtc/rtc-coh901331.c
1621 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1622
1623 ARM/UNIPHIER ARCHITECTURE
1624 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
1625 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1626 S:      Maintained
1627 F:      arch/arm/boot/dts/uniphier*
1628 F:      arch/arm/include/asm/hardware/cache-uniphier.h
1629 F:      arch/arm/mach-uniphier/
1630 F:      arch/arm/mm/cache-uniphier.c
1631 F:      drivers/pinctrl/uniphier/
1632 F:      drivers/tty/serial/8250/8250_uniphier.c
1633 N:      uniphier
1634
1635 ARM/Ux500 ARM ARCHITECTURE
1636 M:      Linus Walleij <linus.walleij@linaro.org>
1637 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1638 S:      Maintained
1639 F:      arch/arm/mach-ux500/
1640 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
1641 F:      drivers/dma/ste_dma40*
1642 F:      drivers/hwspinlock/u8500_hsem.c
1643 F:      drivers/mfd/abx500*
1644 F:      drivers/mfd/ab8500*
1645 F:      drivers/mfd/dbx500*
1646 F:      drivers/mfd/db8500*
1647 F:      drivers/pinctrl/nomadik/pinctrl-ab*
1648 F:      drivers/pinctrl/nomadik/pinctrl-nomadik*
1649 F:      drivers/rtc/rtc-ab8500.c
1650 F:      drivers/rtc/rtc-pl031.c
1651 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1652
1653 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
1654 M:      Ulf Hansson <ulf.hansson@linaro.org>
1655 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1656 T:      git git://git.linaro.org/people/ulfh/clk.git
1657 S:      Maintained
1658 F:      drivers/clk/ux500/
1659 F:      include/linux/platform_data/clk-ux500.h
1660
1661 ARM/VERSATILE EXPRESS PLATFORM
1662 M:      Liviu Dudau <liviu.dudau@arm.com>
1663 M:      Sudeep Holla <sudeep.holla@arm.com>
1664 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
1665 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1666 S:      Maintained
1667 F:      arch/arm/boot/dts/vexpress*
1668 F:      arch/arm64/boot/dts/arm/vexpress*
1669 F:      arch/arm/mach-vexpress/
1670 F:      */*/vexpress*
1671 F:      */*/*/vexpress*
1672 F:      drivers/clk/versatile/clk-vexpress-osc.c
1673 F:      drivers/clocksource/versatile.c
1674
1675 ARM/VFP SUPPORT
1676 M:      Russell King <linux@arm.linux.org.uk>
1677 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1678 W:      http://www.arm.linux.org.uk/
1679 S:      Maintained
1680 F:      arch/arm/vfp/
1681
1682 ARM/VOIPAC PXA270 SUPPORT
1683 M:      Marek Vasut <marek.vasut@gmail.com>
1684 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1685 S:      Maintained
1686 F:      arch/arm/mach-pxa/vpac270.c
1687 F:      arch/arm/mach-pxa/include/mach/vpac270.h
1688
1689 ARM/VT8500 ARM ARCHITECTURE
1690 M:      Tony Prisk <linux@prisktech.co.nz>
1691 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1692 S:      Maintained
1693 F:      arch/arm/mach-vt8500/
1694 F:      drivers/clocksource/vt8500_timer.c
1695 F:      drivers/i2c/busses/i2c-wmt.c
1696 F:      drivers/mmc/host/wmt-sdmmc.c
1697 F:      drivers/pwm/pwm-vt8500.c
1698 F:      drivers/rtc/rtc-vt8500.c
1699 F:      drivers/tty/serial/vt8500_serial.c
1700 F:      drivers/usb/host/ehci-platform.c
1701 F:      drivers/usb/host/uhci-platform.c
1702 F:      drivers/video/fbdev/vt8500lcdfb.*
1703 F:      drivers/video/fbdev/wm8505fb*
1704 F:      drivers/video/fbdev/wmt_ge_rops.*
1705
1706 ARM/ZIPIT Z2 SUPPORT
1707 M:      Marek Vasut <marek.vasut@gmail.com>
1708 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1709 S:      Maintained
1710 F:      arch/arm/mach-pxa/z2.c
1711 F:      arch/arm/mach-pxa/include/mach/z2.h
1712
1713 ARM/ZTE ARCHITECTURE
1714 M:      Jun Nie <jun.nie@linaro.org>
1715 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1716 S:      Maintained
1717 F:      arch/arm/mach-zx/
1718 F:      drivers/clk/zte/
1719 F:      Documentation/devicetree/bindings/arm/zte.txt
1720 F:      Documentation/devicetree/bindings/clock/zx296702-clk.txt
1721
1722 ARM/ZYNQ ARCHITECTURE
1723 M:      Michal Simek <michal.simek@xilinx.com>
1724 R:      Sören Brinkmann <soren.brinkmann@xilinx.com>
1725 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1726 W:      http://wiki.xilinx.com
1727 T:      git https://github.com/Xilinx/linux-xlnx.git
1728 S:      Supported
1729 F:      arch/arm/mach-zynq/
1730 F:      drivers/cpuidle/cpuidle-zynq.c
1731 F:      drivers/block/xsysace.c
1732 N:      zynq
1733 N:      xilinx
1734 F:      drivers/clocksource/cadence_ttc_timer.c
1735 F:      drivers/i2c/busses/i2c-cadence.c
1736 F:      drivers/mmc/host/sdhci-of-arasan.c
1737 F:      drivers/edac/synopsys_edac.c
1738
1739 ARM SMMU DRIVERS
1740 M:      Will Deacon <will.deacon@arm.com>
1741 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1742 S:      Maintained
1743 F:      drivers/iommu/arm-smmu.c
1744 F:      drivers/iommu/arm-smmu-v3.c
1745 F:      drivers/iommu/io-pgtable-arm.c
1746
1747 ARM64 PORT (AARCH64 ARCHITECTURE)
1748 M:      Catalin Marinas <catalin.marinas@arm.com>
1749 M:      Will Deacon <will.deacon@arm.com>
1750 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1751 S:      Maintained
1752 F:      arch/arm64/
1753 F:      Documentation/arm64/
1754
1755 AS3645A LED FLASH CONTROLLER DRIVER
1756 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1757 L:      linux-media@vger.kernel.org
1758 T:      git git://linuxtv.org/media_tree.git
1759 S:      Maintained
1760 F:      drivers/media/i2c/as3645a.c
1761 F:      include/media/as3645a.h
1762
1763 ASC7621 HARDWARE MONITOR DRIVER
1764 M:      George Joseph <george.joseph@fairview5.com>
1765 L:      lm-sensors@lm-sensors.org
1766 S:      Maintained
1767 F:      Documentation/hwmon/asc7621
1768 F:      drivers/hwmon/asc7621.c
1769
1770 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
1771 M:      Corentin Chary <corentin.chary@gmail.com>
1772 L:      acpi4asus-user@lists.sourceforge.net
1773 L:      platform-driver-x86@vger.kernel.org
1774 W:      http://acpi4asus.sf.net
1775 S:      Maintained
1776 F:      drivers/platform/x86/asus*.c
1777 F:      drivers/platform/x86/eeepc*.c
1778
1779 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
1780 R:      Dan Williams <dan.j.williams@intel.com>
1781 W:      http://sourceforge.net/projects/xscaleiop
1782 S:      Odd fixes
1783 F:      Documentation/crypto/async-tx-api.txt
1784 F:      crypto/async_tx/
1785 F:      drivers/dma/
1786 F:      include/linux/dmaengine.h
1787 F:      include/linux/async_tx.h
1788
1789 AT24 EEPROM DRIVER
1790 M:      Wolfram Sang <wsa@the-dreams.de>
1791 L:      linux-i2c@vger.kernel.org
1792 S:      Maintained
1793 F:      drivers/misc/eeprom/at24.c
1794 F:      include/linux/platform_data/at24.h
1795
1796 ATA OVER ETHERNET (AOE) DRIVER
1797 M:      "Ed L. Cashin" <ed.cashin@acm.org>
1798 W:      http://www.openaoe.org/
1799 S:      Supported
1800 F:      Documentation/aoe/
1801 F:      drivers/block/aoe/
1802
1803 ATHEROS 71XX/9XXX GPIO DRIVER
1804 M:      Alban Bedel <albeu@free.fr>
1805 W:      https://github.com/AlbanBedel/linux
1806 T:      git git://github.com/AlbanBedel/linux
1807 S:      Maintained
1808 F:      drivers/gpio/gpio-ath79.c
1809 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
1810
1811 ATHEROS ATH GENERIC UTILITIES
1812 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1813 L:      linux-wireless@vger.kernel.org
1814 S:      Supported
1815 F:      drivers/net/wireless/ath/*
1816
1817 ATHEROS ATH5K WIRELESS DRIVER
1818 M:      Jiri Slaby <jirislaby@gmail.com>
1819 M:      Nick Kossifidis <mickflemm@gmail.com>
1820 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1821 L:      linux-wireless@vger.kernel.org
1822 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
1823 S:      Maintained
1824 F:      drivers/net/wireless/ath/ath5k/
1825
1826 ATHEROS ATH6KL WIRELESS DRIVER
1827 M:      Kalle Valo <kvalo@qca.qualcomm.com>
1828 L:      linux-wireless@vger.kernel.org
1829 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
1830 T:      git git://github.com/kvalo/ath.git
1831 S:      Supported
1832 F:      drivers/net/wireless/ath/ath6kl/
1833
1834 WILOCITY WIL6210 WIRELESS DRIVER
1835 M:      Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com>
1836 L:      linux-wireless@vger.kernel.org
1837 L:      wil6210@qca.qualcomm.com
1838 S:      Supported
1839 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
1840 F:      drivers/net/wireless/ath/wil6210/
1841 F:      include/uapi/linux/wil6210_uapi.h
1842
1843 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1844 M:      Christian Lamparter <chunkeey@googlemail.com>
1845 L:      linux-wireless@vger.kernel.org
1846 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
1847 S:      Maintained
1848 F:      drivers/net/wireless/ath/carl9170/
1849
1850 ATK0110 HWMON DRIVER
1851 M:      Luca Tettamanti <kronos.it@gmail.com>
1852 L:      lm-sensors@lm-sensors.org
1853 S:      Maintained
1854 F:      drivers/hwmon/asus_atk0110.c
1855
1856 ATI_REMOTE2 DRIVER
1857 M:      Ville Syrjala <syrjala@sci.fi>
1858 S:      Maintained
1859 F:      drivers/input/misc/ati_remote2.c
1860
1861 ATLX ETHERNET DRIVERS
1862 M:      Jay Cliburn <jcliburn@gmail.com>
1863 M:      Chris Snook <chris.snook@gmail.com>
1864 L:      netdev@vger.kernel.org
1865 W:      http://sourceforge.net/projects/atl1
1866 W:      http://atl1.sourceforge.net
1867 S:      Maintained
1868 F:      drivers/net/ethernet/atheros/
1869
1870 ATM
1871 M:      Chas Williams <3chas3@gmail.com>
1872 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
1873 L:      netdev@vger.kernel.org
1874 W:      http://linux-atm.sourceforge.net
1875 S:      Maintained
1876 F:      drivers/atm/
1877 F:      include/linux/atm*
1878 F:      include/uapi/linux/atm*
1879
1880 ATMEL AT91 / AT32 MCI DRIVER
1881 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1882 S:      Maintained
1883 F:      drivers/mmc/host/atmel-mci.c
1884 F:      drivers/mmc/host/atmel-mci-regs.h
1885
1886 ATMEL AT91 / AT32 SERIAL DRIVER
1887 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1888 S:      Supported
1889 F:      drivers/tty/serial/atmel_serial.c
1890
1891 ATMEL Audio ALSA driver
1892 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1893 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1894 S:      Supported
1895 F:      sound/soc/atmel
1896
1897 ATMEL DMA DRIVER
1898 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1899 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1900 S:      Supported
1901 F:      drivers/dma/at_hdmac.c
1902 F:      drivers/dma/at_hdmac_regs.h
1903 F:      include/linux/platform_data/dma-atmel.h
1904
1905 ATMEL XDMA DRIVER
1906 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1907 L:      linux-arm-kernel@lists.infradead.org
1908 L:      dmaengine@vger.kernel.org
1909 S:      Supported
1910 F:      drivers/dma/at_xdmac.c
1911
1912 ATMEL I2C DRIVER
1913 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1914 L:      linux-i2c@vger.kernel.org
1915 S:      Supported
1916 F:      drivers/i2c/busses/i2c-at91.c
1917
1918 ATMEL ISI DRIVER
1919 M:      Josh Wu <josh.wu@atmel.com>
1920 L:      linux-media@vger.kernel.org
1921 S:      Supported
1922 F:      drivers/media/platform/soc_camera/atmel-isi.c
1923 F:      include/media/atmel-isi.h
1924
1925 ATMEL LCDFB DRIVER
1926 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1927 L:      linux-fbdev@vger.kernel.org
1928 S:      Maintained
1929 F:      drivers/video/fbdev/atmel_lcdfb.c
1930 F:      include/video/atmel_lcdc.h
1931
1932 ATMEL MACB ETHERNET DRIVER
1933 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1934 S:      Supported
1935 F:      drivers/net/ethernet/cadence/
1936
1937 ATMEL NAND DRIVER
1938 M:      Josh Wu <josh.wu@atmel.com>
1939 L:      linux-mtd@lists.infradead.org
1940 S:      Supported
1941 F:      drivers/mtd/nand/atmel_nand*
1942
1943 ATMEL SDMMC DRIVER
1944 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1945 L:      linux-mmc@vger.kernel.org
1946 S:      Supported
1947 F:      drivers/mmc/host/sdhci-of-at91.c
1948
1949 ATMEL SPI DRIVER
1950 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1951 S:      Supported
1952 F:      drivers/spi/spi-atmel.*
1953
1954 ATMEL SSC DRIVER
1955 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1956 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1957 S:      Supported
1958 F:      drivers/misc/atmel-ssc.c
1959 F:      include/linux/atmel-ssc.h
1960
1961 ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1962 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1963 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1964 S:      Supported
1965 F:      drivers/misc/atmel_tclib.c
1966 F:      drivers/clocksource/tcb_clksrc.c
1967
1968 ATMEL USBA UDC DRIVER
1969 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1970 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1971 S:      Supported
1972 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
1973
1974 ATMEL WIRELESS DRIVER
1975 M:      Simon Kelley <simon@thekelleys.org.uk>
1976 L:      linux-wireless@vger.kernel.org
1977 W:      http://www.thekelleys.org.uk/atmel
1978 W:      http://atmelwlandriver.sourceforge.net/
1979 S:      Maintained
1980 F:      drivers/net/wireless/atmel*
1981
1982 ATMEL MAXTOUCH DRIVER
1983 M:      Nick Dyer <nick.dyer@itdev.co.uk>
1984 T:      git git://github.com/atmel-maxtouch/linux.git
1985 S:      Supported
1986 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
1987 F:      drivers/input/touchscreen/atmel_mxt_ts.c
1988 F:      include/linux/platform_data/atmel_mxt_ts.h
1989
1990 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
1991 M:      Bradley Grove <linuxdrivers@attotech.com>
1992 L:      linux-scsi@vger.kernel.org
1993 W:      http://www.attotech.com
1994 S:      Supported
1995 F:      drivers/scsi/esas2r
1996
1997 ATUSB IEEE 802.15.4 RADIO DRIVER
1998 M:      Stefan Schmidt <stefan@osg.samsung.com>
1999 L:      linux-wpan@vger.kernel.org
2000 S:      Maintained
2001 F:      drivers/net/ieee802154/atusb.c
2002 F:      drivers/net/ieee802154/atusb.h
2003 F:      drivers/net/ieee802154/at86rf230.h
2004
2005 AUDIT SUBSYSTEM
2006 M:      Paul Moore <paul@paul-moore.com>
2007 M:      Eric Paris <eparis@redhat.com>
2008 L:      linux-audit@redhat.com (moderated for non-subscribers)
2009 W:      http://people.redhat.com/sgrubb/audit/
2010 T:      git git://git.infradead.org/users/pcmoore/audit
2011 S:      Maintained
2012 F:      include/linux/audit.h
2013 F:      include/uapi/linux/audit.h
2014 F:      kernel/audit*
2015
2016 AUXILIARY DISPLAY DRIVERS
2017 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2018 W:      http://miguelojeda.es/auxdisplay.htm
2019 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2020 S:      Maintained
2021 F:      drivers/auxdisplay/
2022 F:      include/linux/cfag12864b.h
2023
2024 AVR32 ARCHITECTURE
2025 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
2026 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
2027 W:      http://www.atmel.com/products/AVR32/
2028 W:      http://mirror.egtvedt.no/avr32linux.org/
2029 W:      http://avrfreaks.net/
2030 S:      Maintained
2031 F:      arch/avr32/
2032
2033 AVR32/AT32AP MACHINE SUPPORT
2034 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
2035 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
2036 S:      Maintained
2037 F:      arch/avr32/mach-at32ap/
2038
2039 AX.25 NETWORK LAYER
2040 M:      Ralf Baechle <ralf@linux-mips.org>
2041 L:      linux-hams@vger.kernel.org
2042 W:      http://www.linux-ax25.org/
2043 S:      Maintained
2044 F:      include/uapi/linux/ax25.h
2045 F:      include/net/ax25.h
2046 F:      net/ax25/
2047
2048 AZ6007 DVB DRIVER
2049 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2050 L:      linux-media@vger.kernel.org
2051 W:      http://linuxtv.org
2052 T:      git git://linuxtv.org/media_tree.git
2053 S:      Maintained
2054 F:      drivers/media/usb/dvb-usb-v2/az6007.c
2055
2056 AZTECH FM RADIO RECEIVER DRIVER
2057 M:      Hans Verkuil <hverkuil@xs4all.nl>
2058 L:      linux-media@vger.kernel.org
2059 T:      git git://linuxtv.org/media_tree.git
2060 W:      http://linuxtv.org
2061 S:      Maintained
2062 F:      drivers/media/radio/radio-aztech*
2063
2064 B43 WIRELESS DRIVER
2065 L:      linux-wireless@vger.kernel.org
2066 L:      b43-dev@lists.infradead.org
2067 W:      http://wireless.kernel.org/en/users/Drivers/b43
2068 S:      Odd Fixes
2069 F:      drivers/net/wireless/b43/
2070
2071 B43LEGACY WIRELESS DRIVER
2072 M:      Larry Finger <Larry.Finger@lwfinger.net>
2073 L:      linux-wireless@vger.kernel.org
2074 L:      b43-dev@lists.infradead.org
2075 W:      http://wireless.kernel.org/en/users/Drivers/b43
2076 S:      Maintained
2077 F:      drivers/net/wireless/b43legacy/
2078
2079 BACKLIGHT CLASS/SUBSYSTEM
2080 M:      Jingoo Han <jingoohan1@gmail.com>
2081 M:      Lee Jones <lee.jones@linaro.org>
2082 S:      Maintained
2083 F:      drivers/video/backlight/
2084 F:      include/linux/backlight.h
2085
2086 BATMAN ADVANCED
2087 M:      Marek Lindner <mareklindner@neomailbox.ch>
2088 M:      Simon Wunderlich <sw@simonwunderlich.de>
2089 M:      Antonio Quartulli <antonio@meshcoding.com>
2090 L:      b.a.t.m.a.n@lists.open-mesh.org
2091 W:      http://www.open-mesh.org/
2092 S:      Maintained
2093 F:      net/batman-adv/
2094
2095 BAYCOM/HDLCDRV DRIVERS FOR AX.25
2096 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
2097 L:      linux-hams@vger.kernel.org
2098 W:      http://www.baycom.org/~tom/ham/ham.html
2099 S:      Maintained
2100 F:      drivers/net/hamradio/baycom*
2101
2102 BCACHE (BLOCK LAYER CACHE)
2103 M:      Kent Overstreet <kent.overstreet@gmail.com>
2104 L:      linux-bcache@vger.kernel.org
2105 W:      http://bcache.evilpiepirate.org
2106 S:      Maintained
2107 F:      drivers/md/bcache/
2108
2109 BDISP ST MEDIA DRIVER
2110 M:      Fabien Dessenne <fabien.dessenne@st.com>
2111 L:      linux-media@vger.kernel.org
2112 T:      git git://linuxtv.org/media_tree.git
2113 W:      http://linuxtv.org
2114 S:      Supported
2115 F:      drivers/media/platform/sti/bdisp
2116
2117 BEFS FILE SYSTEM
2118 S:      Orphan
2119 F:      Documentation/filesystems/befs.txt
2120 F:      fs/befs/
2121
2122 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
2123 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
2124 L:      netdev@vger.kernel.org
2125 S:      Maintained
2126 F:      drivers/net/ethernet/ec_bhf.c
2127
2128 BFS FILE SYSTEM
2129 M:      "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
2130 S:      Maintained
2131 F:      Documentation/filesystems/bfs.txt
2132 F:      fs/bfs/
2133 F:      include/uapi/linux/bfs_fs.h
2134
2135 BLACKFIN ARCHITECTURE
2136 M:      Steven Miao <realmz6@gmail.com>
2137 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2138 T:      git git://git.code.sf.net/p/adi-linux/code
2139 W:      http://blackfin.uclinux.org
2140 S:      Supported
2141 F:      arch/blackfin/
2142
2143 BLACKFIN EMAC DRIVER
2144 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2145 W:      http://blackfin.uclinux.org
2146 S:      Supported
2147 F:      drivers/net/ethernet/adi/
2148
2149 BLACKFIN RTC DRIVER
2150 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2151 W:      http://blackfin.uclinux.org
2152 S:      Supported
2153 F:      drivers/rtc/rtc-bfin.c
2154
2155 BLACKFIN SDH DRIVER
2156 M:      Sonic Zhang <sonic.zhang@analog.com>
2157 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2158 W:      http://blackfin.uclinux.org
2159 S:      Supported
2160 F:      drivers/mmc/host/bfin_sdh.c
2161
2162 BLACKFIN SERIAL DRIVER
2163 M:      Sonic Zhang <sonic.zhang@analog.com>
2164 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2165 W:      http://blackfin.uclinux.org
2166 S:      Supported
2167 F:      drivers/tty/serial/bfin_uart.c
2168
2169 BLACKFIN WATCHDOG DRIVER
2170 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2171 W:      http://blackfin.uclinux.org
2172 S:      Supported
2173 F:      drivers/watchdog/bfin_wdt.c
2174
2175 BLACKFIN I2C TWI DRIVER
2176 M:      Sonic Zhang <sonic.zhang@analog.com>
2177 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2178 W:      http://blackfin.uclinux.org/
2179 S:      Supported
2180 F:      drivers/i2c/busses/i2c-bfin-twi.c
2181
2182 BLACKFIN MEDIA DRIVER
2183 M:      Scott Jiang <scott.jiang.linux@gmail.com>
2184 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2185 W:      http://blackfin.uclinux.org/
2186 S:      Supported
2187 F:      drivers/media/platform/blackfin/
2188 F:      drivers/media/i2c/adv7183*
2189 F:      drivers/media/i2c/vs6624*
2190
2191 BLINKM RGB LED DRIVER
2192 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
2193 S:      Maintained
2194 F:      drivers/leds/leds-blinkm.c
2195
2196 BLOCK LAYER
2197 M:      Jens Axboe <axboe@kernel.dk>
2198 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
2199 S:      Maintained
2200 F:      block/
2201 F:      kernel/trace/blktrace.c
2202
2203 BLOCK2MTD DRIVER
2204 M:      Joern Engel <joern@lazybastard.org>
2205 L:      linux-mtd@lists.infradead.org
2206 S:      Maintained
2207 F:      drivers/mtd/devices/block2mtd.c
2208
2209 BLUETOOTH DRIVERS
2210 M:      Marcel Holtmann <marcel@holtmann.org>
2211 M:      Gustavo Padovan <gustavo@padovan.org>
2212 M:      Johan Hedberg <johan.hedberg@gmail.com>
2213 L:      linux-bluetooth@vger.kernel.org
2214 W:      http://www.bluez.org/
2215 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2216 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2217 S:      Maintained
2218 F:      drivers/bluetooth/
2219
2220 BLUETOOTH SUBSYSTEM
2221 M:      Marcel Holtmann <marcel@holtmann.org>
2222 M:      Gustavo Padovan <gustavo@padovan.org>
2223 M:      Johan Hedberg <johan.hedberg@gmail.com>
2224 L:      linux-bluetooth@vger.kernel.org
2225 W:      http://www.bluez.org/
2226 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2227 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2228 S:      Maintained
2229 F:      net/bluetooth/
2230 F:      include/net/bluetooth/
2231
2232 BONDING DRIVER
2233 M:      Jay Vosburgh <j.vosburgh@gmail.com>
2234 M:      Veaceslav Falico <vfalico@gmail.com>
2235 M:      Andy Gospodarek <gospo@cumulusnetworks.com>
2236 L:      netdev@vger.kernel.org
2237 W:      http://sourceforge.net/projects/bonding/
2238 S:      Supported
2239 F:      drivers/net/bonding/
2240 F:      include/uapi/linux/if_bonding.h
2241
2242 BPF (Safe dynamic programs and tools)
2243 M:      Alexei Starovoitov <ast@kernel.org>
2244 L:      netdev@vger.kernel.org
2245 L:      linux-kernel@vger.kernel.org
2246 S:      Supported
2247 F:      kernel/bpf/
2248
2249 BROADCOM B44 10/100 ETHERNET DRIVER
2250 M:      Gary Zambrano <zambrano@broadcom.com>
2251 L:      netdev@vger.kernel.org
2252 S:      Supported
2253 F:      drivers/net/ethernet/broadcom/b44.*
2254
2255 BROADCOM GENET ETHERNET DRIVER
2256 M:      Florian Fainelli <f.fainelli@gmail.com>
2257 L:      netdev@vger.kernel.org
2258 S:      Supported
2259 F:      drivers/net/ethernet/broadcom/genet/
2260
2261 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
2262 M:      Sony Chacko <sony.chacko@qlogic.com>
2263 M:      Dept-HSGLinuxNICDev@qlogic.com
2264 L:      netdev@vger.kernel.org
2265 S:      Supported
2266 F:      drivers/net/ethernet/broadcom/bnx2.*
2267 F:      drivers/net/ethernet/broadcom/bnx2_*
2268
2269 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
2270 M:      Ariel Elior <ariel.elior@qlogic.com>
2271 L:      netdev@vger.kernel.org
2272 S:      Supported
2273 F:      drivers/net/ethernet/broadcom/bnx2x/
2274
2275 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
2276 M:      Florian Fainelli <f.fainelli@gmail.com>
2277 M:      Ray Jui <rjui@broadcom.com>
2278 M:      Scott Branden <sbranden@broadcom.com>
2279 L:      bcm-kernel-feedback-list@broadcom.com
2280 T:      git git://github.com/broadcom/mach-bcm
2281 S:      Maintained
2282 F:      arch/arm/mach-bcm/
2283 F:      arch/arm/boot/dts/bcm113*
2284 F:      arch/arm/boot/dts/bcm216*
2285 F:      arch/arm/boot/dts/bcm281*
2286 F:      arch/arm/configs/bcm_defconfig
2287 F:      drivers/mmc/host/sdhci-bcm-kona.c
2288 F:      drivers/clocksource/bcm_kona_timer.c
2289
2290 BROADCOM BCM2835 ARM ARCHITECTURE
2291 M:      Stephen Warren <swarren@wwwdotorg.org>
2292 M:      Lee Jones <lee@kernel.org>
2293 M:      Eric Anholt <eric@anholt.net>
2294 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
2295 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2296 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rpi/linux-rpi.git
2297 S:      Maintained
2298 N:      bcm2835
2299
2300 BROADCOM BCM33XX MIPS ARCHITECTURE
2301 M:      Kevin Cernekee <cernekee@gmail.com>
2302 L:      linux-mips@linux-mips.org
2303 S:      Maintained
2304 F:      arch/mips/bcm3384/*
2305 F:      arch/mips/include/asm/mach-bcm3384/*
2306 F:      arch/mips/kernel/*bmips*
2307
2308 BROADCOM BCM47XX MIPS ARCHITECTURE
2309 M:      Hauke Mehrtens <hauke@hauke-m.de>
2310 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2311 L:      linux-mips@linux-mips.org
2312 S:      Maintained
2313 F:      arch/mips/bcm47xx/*
2314 F:      arch/mips/include/asm/mach-bcm47xx/*
2315
2316 BROADCOM BCM5301X ARM ARCHITECTURE
2317 M:      Hauke Mehrtens <hauke@hauke-m.de>
2318 L:      linux-arm-kernel@lists.infradead.org
2319 S:      Maintained
2320 F:      arch/arm/mach-bcm/bcm_5301x.c
2321 F:      arch/arm/boot/dts/bcm5301x.dtsi
2322 F:      arch/arm/boot/dts/bcm470*
2323
2324 BROADCOM BCM63XX ARM ARCHITECTURE
2325 M:      Florian Fainelli <f.fainelli@gmail.com>
2326 L:      linux-arm-kernel@lists.infradead.org
2327 T:      git git://github.com/broadcom/arm-bcm63xx.git
2328 S:      Maintained
2329 F:      arch/arm/mach-bcm/bcm63xx.c
2330 F:      arch/arm/include/debug/bcm63xx.S
2331
2332 BROADCOM BCM63XX/BCM33XX UDC DRIVER
2333 M:      Kevin Cernekee <cernekee@gmail.com>
2334 L:      linux-usb@vger.kernel.org
2335 S:      Maintained
2336 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
2337
2338 BROADCOM BCM7XXX ARM ARCHITECTURE
2339 M:      Brian Norris <computersforpeace@gmail.com>
2340 M:      Gregory Fong <gregory.0xf0@gmail.com>
2341 M:      Florian Fainelli <f.fainelli@gmail.com>
2342 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2343 T:      git git://github.com/broadcom/stblinux.git
2344 S:      Maintained
2345 F:      arch/arm/mach-bcm/*brcmstb*
2346 F:      arch/arm/boot/dts/bcm7*.dts*
2347 F:      drivers/bus/brcmstb_gisb.c
2348 N:      brcmstb
2349
2350 BROADCOM BMIPS MIPS ARCHITECTURE
2351 M:      Kevin Cernekee <cernekee@gmail.com>
2352 M:      Florian Fainelli <f.fainelli@gmail.com>
2353 L:      linux-mips@linux-mips.org
2354 T:      git git://github.com/broadcom/stblinux.git
2355 S:      Maintained
2356 F:      arch/mips/bmips/*
2357 F:      arch/mips/include/asm/mach-bmips/*
2358 F:      arch/mips/kernel/*bmips*
2359 F:      arch/mips/boot/dts/brcm/bcm*.dts*
2360 F:      drivers/irqchip/irq-bcm7*
2361 F:      drivers/irqchip/irq-brcmstb*
2362
2363 BROADCOM TG3 GIGABIT ETHERNET DRIVER
2364 M:      Prashant Sreedharan <prashant@broadcom.com>
2365 M:      Michael Chan <mchan@broadcom.com>
2366 L:      netdev@vger.kernel.org
2367 S:      Supported
2368 F:      drivers/net/ethernet/broadcom/tg3.*
2369
2370 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2371 M:      Brett Rudley <brudley@broadcom.com>
2372 M:      Arend van Spriel <arend@broadcom.com>
2373 M:      Franky (Zhenhui) Lin <frankyl@broadcom.com>
2374 M:      Hante Meuleman <meuleman@broadcom.com>
2375 L:      linux-wireless@vger.kernel.org
2376 L:      brcm80211-dev-list@broadcom.com
2377 S:      Supported
2378 F:      drivers/net/wireless/brcm80211/
2379
2380 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
2381 M:      QLogic-Storage-Upstream@qlogic.com
2382 L:      linux-scsi@vger.kernel.org
2383 S:      Supported
2384 F:      drivers/scsi/bnx2fc/
2385
2386 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
2387 M:      QLogic-Storage-Upstream@qlogic.com
2388 L:      linux-scsi@vger.kernel.org
2389 S:      Supported
2390 F:      drivers/scsi/bnx2i/
2391
2392 BROADCOM IPROC ARM ARCHITECTURE
2393 M:      Ray Jui <rjui@broadcom.com>
2394 M:      Scott Branden <sbranden@broadcom.com>
2395 M:      Jon Mason <jonmason@broadcom.com>
2396 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2397 L:      bcm-kernel-feedback-list@broadcom.com
2398 T:      git git://github.com/broadcom/cygnus-linux.git
2399 S:      Maintained
2400 N:      iproc
2401 N:      cygnus
2402 N:      nsp
2403 N:      bcm9113*
2404 N:      bcm9583*
2405 N:      bcm9585*
2406 N:      bcm9586*
2407 N:      bcm988312
2408 N:      bcm113*
2409 N:      bcm583*
2410 N:      bcm585*
2411 N:      bcm586*
2412 N:      bcm88312
2413
2414 BROADCOM BRCMSTB GPIO DRIVER
2415 M:      Gregory Fong <gregory.0xf0@gmail.com>
2416 L:      bcm-kernel-feedback-list@broadcom.com>
2417 S:      Supported
2418 F:      drivers/gpio/gpio-brcmstb.c
2419 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
2420
2421 BROADCOM KONA GPIO DRIVER
2422 M:      Ray Jui <rjui@broadcom.com>
2423 L:      bcm-kernel-feedback-list@broadcom.com
2424 S:      Supported
2425 F:      drivers/gpio/gpio-bcm-kona.c
2426 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
2427
2428 BROADCOM NVRAM DRIVER
2429 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2430 L:      linux-mips@linux-mips.org
2431 S:      Maintained
2432 F:      drivers/firmware/broadcom/*
2433
2434 BROADCOM STB NAND FLASH DRIVER
2435 M:      Brian Norris <computersforpeace@gmail.com>
2436 L:      linux-mtd@lists.infradead.org
2437 S:      Maintained
2438 F:      drivers/mtd/nand/brcmnand/
2439
2440 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2441 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2442 L:      linux-wireless@vger.kernel.org
2443 S:      Maintained
2444 F:      drivers/bcma/
2445 F:      include/linux/bcma/
2446
2447 BROADCOM SYSTEMPORT ETHERNET DRIVER
2448 M:      Florian Fainelli <f.fainelli@gmail.com>
2449 L:      netdev@vger.kernel.org
2450 S:      Supported
2451 F:      drivers/net/ethernet/broadcom/bcmsysport.*
2452
2453 BROCADE BFA FC SCSI DRIVER
2454 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
2455 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
2456 L:      linux-scsi@vger.kernel.org
2457 S:      Supported
2458 F:      drivers/scsi/bfa/
2459
2460 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
2461 M:      Rasesh Mody <rasesh.mody@qlogic.com>
2462 L:      netdev@vger.kernel.org
2463 S:      Supported
2464 F:      drivers/net/ethernet/brocade/bna/
2465
2466 BSG (block layer generic sg v4 driver)
2467 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
2468 L:      linux-scsi@vger.kernel.org
2469 S:      Supported
2470 F:      block/bsg.c
2471 F:      include/linux/bsg.h
2472 F:      include/uapi/linux/bsg.h
2473
2474 BT87X AUDIO DRIVER
2475 M:      Clemens Ladisch <clemens@ladisch.de>
2476 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2477 T:      git git://git.alsa-project.org/alsa-kernel.git
2478 S:      Maintained
2479 F:      Documentation/sound/alsa/Bt87x.txt
2480 F:      sound/pci/bt87x.c
2481
2482 BT8XXGPIO DRIVER
2483 M:      Michael Buesch <m@bues.ch>
2484 W:      http://bu3sch.de/btgpio.php
2485 S:      Maintained
2486 F:      drivers/gpio/gpio-bt8xx.c
2487
2488 BTRFS FILE SYSTEM
2489 M:      Chris Mason <clm@fb.com>
2490 M:      Josef Bacik <jbacik@fb.com>
2491 M:      David Sterba <dsterba@suse.com>
2492 L:      linux-btrfs@vger.kernel.org
2493 W:      http://btrfs.wiki.kernel.org/
2494 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
2495 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
2496 S:      Maintained
2497 F:      Documentation/filesystems/btrfs.txt
2498 F:      fs/btrfs/
2499
2500 BTTV VIDEO4LINUX DRIVER
2501 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2502 L:      linux-media@vger.kernel.org
2503 W:      http://linuxtv.org
2504 T:      git git://linuxtv.org/media_tree.git
2505 S:      Odd fixes
2506 F:      Documentation/video4linux/bttv/
2507 F:      drivers/media/pci/bt8xx/bttv*
2508
2509 BUSLOGIC SCSI DRIVER
2510 M:      Khalid Aziz <khalid@gonehiking.org>
2511 L:      linux-scsi@vger.kernel.org
2512 S:      Maintained
2513 F:      drivers/scsi/BusLogic.*
2514 F:      drivers/scsi/FlashPoint.*
2515
2516 C-MEDIA CMI8788 DRIVER
2517 M:      Clemens Ladisch <clemens@ladisch.de>
2518 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2519 T:      git git://git.alsa-project.org/alsa-kernel.git
2520 S:      Maintained
2521 F:      sound/pci/oxygen/
2522
2523 C6X ARCHITECTURE
2524 M:      Mark Salter <msalter@redhat.com>
2525 M:      Aurelien Jacquiot <a-jacquiot@ti.com>
2526 L:      linux-c6x-dev@linux-c6x.org
2527 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
2528 S:      Maintained
2529 F:      arch/c6x/
2530
2531 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
2532 M:      David Howells <dhowells@redhat.com>
2533 L:      linux-cachefs@redhat.com
2534 S:      Supported
2535 F:      Documentation/filesystems/caching/cachefiles.txt
2536 F:      fs/cachefiles/
2537
2538 CADET FM/AM RADIO RECEIVER DRIVER
2539 M:      Hans Verkuil <hverkuil@xs4all.nl>
2540 L:      linux-media@vger.kernel.org
2541 T:      git git://linuxtv.org/media_tree.git
2542 W:      http://linuxtv.org
2543 S:      Maintained
2544 F:      drivers/media/radio/radio-cadet*
2545
2546 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
2547 M:      Jonathan Corbet <corbet@lwn.net>
2548 L:      linux-media@vger.kernel.org
2549 T:      git git://linuxtv.org/media_tree.git
2550 S:      Maintained
2551 F:      Documentation/video4linux/cafe_ccic
2552 F:      drivers/media/platform/marvell-ccic/
2553
2554 CAIF NETWORK LAYER
2555 M:      Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
2556 L:      netdev@vger.kernel.org
2557 S:      Supported
2558 F:      Documentation/networking/caif/
2559 F:      drivers/net/caif/
2560 F:      include/uapi/linux/caif/
2561 F:      include/net/caif/
2562 F:      net/caif/
2563
2564 CALGARY x86-64 IOMMU
2565 M:      Muli Ben-Yehuda <muli@il.ibm.com>
2566 M:      "Jon D. Mason" <jdmason@kudzu.us>
2567 L:      discuss@x86-64.org
2568 S:      Maintained
2569 F:      arch/x86/kernel/pci-calgary_64.c
2570 F:      arch/x86/kernel/tce_64.c
2571 F:      arch/x86/include/asm/calgary.h
2572 F:      arch/x86/include/asm/tce.h
2573
2574 CAN NETWORK LAYER
2575 M:      Oliver Hartkopp <socketcan@hartkopp.net>
2576 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2577 L:      linux-can@vger.kernel.org
2578 W:      https://github.com/linux-can
2579 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2580 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2581 S:      Maintained
2582 F:      Documentation/networking/can.txt
2583 F:      net/can/
2584 F:      include/linux/can/core.h
2585 F:      include/uapi/linux/can.h
2586 F:      include/uapi/linux/can/bcm.h
2587 F:      include/uapi/linux/can/raw.h
2588 F:      include/uapi/linux/can/gw.h
2589
2590 CAN NETWORK DRIVERS
2591 M:      Wolfgang Grandegger <wg@grandegger.com>
2592 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2593 L:      linux-can@vger.kernel.org
2594 W:      https://github.com/linux-can
2595 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2596 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2597 S:      Maintained
2598 F:      drivers/net/can/
2599 F:      include/linux/can/dev.h
2600 F:      include/linux/can/platform/
2601 F:      include/uapi/linux/can/error.h
2602 F:      include/uapi/linux/can/netlink.h
2603
2604 CAPABILITIES
2605 M:      Serge Hallyn <serge.hallyn@canonical.com>
2606 L:      linux-security-module@vger.kernel.org
2607 S:      Supported
2608 F:      include/linux/capability.h
2609 F:      include/uapi/linux/capability.h
2610 F:      security/commoncap.c
2611 F:      kernel/capability.c
2612
2613 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
2614 M:      Kevin Tsai <ktsai@capellamicro.com>
2615 S:      Maintained
2616 F:      drivers/iio/light/cm*
2617 F:      Documentation/devicetree/bindings/i2c/trivial-devices.txt
2618
2619 CAVIUM LIQUIDIO NETWORK DRIVER
2620 M:     Derek Chickles <derek.chickles@caviumnetworks.com>
2621 M:     Satanand Burla <satananda.burla@caviumnetworks.com>
2622 M:     Felix Manlunas <felix.manlunas@caviumnetworks.com>
2623 M:     Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com>
2624 L:     netdev@vger.kernel.org
2625 W:     http://www.cavium.com
2626 S:     Supported
2627 F:     drivers/net/ethernet/cavium/liquidio/
2628
2629 CC2520 IEEE-802.15.4 RADIO DRIVER
2630 M:      Varka Bhadram <varkabhadram@gmail.com>
2631 L:      linux-wpan@vger.kernel.org
2632 S:      Maintained
2633 F:      drivers/net/ieee802154/cc2520.c
2634 F:      include/linux/spi/cc2520.h
2635 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
2636
2637 CELL BROADBAND ENGINE ARCHITECTURE
2638 M:      Arnd Bergmann <arnd@arndb.de>
2639 L:      linuxppc-dev@lists.ozlabs.org
2640 W:      http://www.ibm.com/developerworks/power/cell/
2641 S:      Supported
2642 F:      arch/powerpc/include/asm/cell*.h
2643 F:      arch/powerpc/include/asm/spu*.h
2644 F:      arch/powerpc/include/uapi/asm/spu*.h
2645 F:      arch/powerpc/oprofile/*cell*
2646 F:      arch/powerpc/platforms/cell/
2647
2648 CEPH COMMON CODE (LIBCEPH)
2649 M:      Ilya Dryomov <idryomov@gmail.com>
2650 M:      "Yan, Zheng" <zyan@redhat.com>
2651 M:      Sage Weil <sage@redhat.com>
2652 L:      ceph-devel@vger.kernel.org
2653 W:      http://ceph.com/
2654 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2655 T:      git git://github.com/ceph/ceph-client.git
2656 S:      Supported
2657 F:      net/ceph/
2658 F:      include/linux/ceph/
2659 F:      include/linux/crush/
2660
2661 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
2662 M:      "Yan, Zheng" <zyan@redhat.com>
2663 M:      Sage Weil <sage@redhat.com>
2664 M:      Ilya Dryomov <idryomov@gmail.com>
2665 L:      ceph-devel@vger.kernel.org
2666 W:      http://ceph.com/
2667 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2668 T:      git git://github.com/ceph/ceph-client.git
2669 S:      Supported
2670 F:      Documentation/filesystems/ceph.txt
2671 F:      fs/ceph/
2672
2673 CERTIFICATE HANDLING:
2674 M:      David Howells <dhowells@redhat.com>
2675 M:      David Woodhouse <dwmw2@infradead.org>
2676 L:      keyrings@linux-nfs.org
2677 S:      Maintained
2678 F:      Documentation/module-signing.txt
2679 F:      certs/
2680 F:      scripts/extract-cert.c
2681
2682 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
2683 L:      linux-usb@vger.kernel.org
2684 S:      Orphan
2685 F:      Documentation/usb/WUSB-Design-overview.txt
2686 F:      Documentation/usb/wusb-cbaf
2687 F:      drivers/usb/host/hwa-hc.c
2688 F:      drivers/usb/host/whci/
2689 F:      drivers/usb/wusbcore/
2690 F:      include/linux/usb/wusb*
2691
2692 CFAG12864B LCD DRIVER
2693 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2694 W:      http://miguelojeda.es/auxdisplay.htm
2695 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2696 S:      Maintained
2697 F:      drivers/auxdisplay/cfag12864b.c
2698 F:      include/linux/cfag12864b.h
2699
2700 CFAG12864BFB LCD FRAMEBUFFER DRIVER
2701 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2702 W:      http://miguelojeda.es/auxdisplay.htm
2703 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2704 S:      Maintained
2705 F:      drivers/auxdisplay/cfag12864bfb.c
2706 F:      include/linux/cfag12864b.h
2707
2708 CFG80211 and NL80211
2709 M:      Johannes Berg <johannes@sipsolutions.net>
2710 L:      linux-wireless@vger.kernel.org
2711 W:      http://wireless.kernel.org/
2712 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2713 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
2714 S:      Maintained
2715 F:      include/uapi/linux/nl80211.h
2716 F:      include/net/cfg80211.h
2717 F:      net/wireless/*
2718 X:      net/wireless/wext*
2719
2720 CHAR and MISC DRIVERS
2721 M:      Arnd Bergmann <arnd@arndb.de>
2722 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2723 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
2724 S:      Supported
2725 F:      drivers/char/*
2726 F:      drivers/misc/*
2727 F:      include/linux/miscdevice.h
2728
2729 CHECKPATCH
2730 M:      Andy Whitcroft <apw@canonical.com>
2731 M:      Joe Perches <joe@perches.com>
2732 S:      Maintained
2733 F:      scripts/checkpatch.pl
2734
2735 CHINESE DOCUMENTATION
2736 M:      Harry Wei <harryxiyou@gmail.com>
2737 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
2738 L:      linux-kernel@zh-kernel.org (moderated for non-subscribers)
2739 S:      Maintained
2740 F:      Documentation/zh_CN/
2741
2742 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
2743 M:      Peter Chen <Peter.Chen@freescale.com>
2744 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
2745 L:      linux-usb@vger.kernel.org
2746 S:      Maintained
2747 F:      drivers/usb/chipidea/
2748
2749 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
2750 M:      Hans de Goede <hdegoede@redhat.com>
2751 L:      linux-input@vger.kernel.org
2752 S:      Maintained
2753 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
2754 F:      drivers/input/touchscreen/chipone_icn8318.c
2755
2756 CHROME HARDWARE PLATFORM SUPPORT
2757 M:      Olof Johansson <olof@lixom.net>
2758 S:      Maintained
2759 F:      drivers/platform/chrome/
2760
2761 CISCO VIC ETHERNET NIC DRIVER
2762 M:      Christian Benvenuti <benve@cisco.com>
2763 M:      Sujith Sankar <ssujith@cisco.com>
2764 M:      Govindarajulu Varadarajan <_govind@gmx.com>
2765 M:      Neel Patel <neepatel@cisco.com>
2766 S:      Supported
2767 F:      drivers/net/ethernet/cisco/enic/
2768
2769 CISCO VIC LOW LATENCY NIC DRIVER
2770 M:      Upinder Malhi <umalhi@cisco.com>
2771 S:      Supported
2772 F:      drivers/infiniband/hw/usnic
2773
2774 CIRRUS LOGIC EP93XX ETHERNET DRIVER
2775 M:      Hartley Sweeten <hsweeten@visionengravers.com>
2776 L:      netdev@vger.kernel.org
2777 S:      Maintained
2778 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
2779
2780 CIRRUS LOGIC AUDIO CODEC DRIVERS
2781 M:      Brian Austin <brian.austin@cirrus.com>
2782 M:      Paul Handrigan <Paul.Handrigan@cirrus.com>
2783 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2784 S:      Maintained
2785 F:      sound/soc/codecs/cs*
2786
2787 CLEANCACHE API
2788 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2789 L:      linux-kernel@vger.kernel.org
2790 S:      Maintained
2791 F:      mm/cleancache.c
2792 F:      include/linux/cleancache.h
2793
2794 CLK API
2795 M:      Russell King <linux@arm.linux.org.uk>
2796 L:      linux-clk@vger.kernel.org
2797 S:      Maintained
2798 F:      include/linux/clk.h
2799
2800 CLOCKSOURCE, CLOCKEVENT DRIVERS
2801 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2802 M:      Thomas Gleixner <tglx@linutronix.de>
2803 L:      linux-kernel@vger.kernel.org
2804 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
2805 S:      Supported
2806 F:      drivers/clocksource
2807
2808 CISCO FCOE HBA DRIVER
2809 M:      Hiral Patel <hiralpat@cisco.com>
2810 M:      Suma Ramars <sramars@cisco.com>
2811 M:      Brian Uchino <buchino@cisco.com>
2812 L:      linux-scsi@vger.kernel.org
2813 S:      Supported
2814 F:      drivers/scsi/fnic/
2815
2816 CISCO SCSI HBA DRIVER
2817 M:      Narsimhulu Musini <nmusini@cisco.com>
2818 M:      Sesidhar Baddela <sebaddel@cisco.com>
2819 L:      linux-scsi@vger.kernel.org
2820 S:      Supported
2821 F:      drivers/scsi/snic/
2822
2823 CMPC ACPI DRIVER
2824 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2825 M:      Daniel Oliveira Nascimento <don@syst.com.br>
2826 L:      platform-driver-x86@vger.kernel.org
2827 S:      Supported
2828 F:      drivers/platform/x86/classmate-laptop.c
2829
2830 COBALT MEDIA DRIVER
2831 M:      Hans Verkuil <hans.verkuil@cisco.com>
2832 L:      linux-media@vger.kernel.org
2833 T:      git git://linuxtv.org/media_tree.git
2834 W:      http://linuxtv.org
2835 S:      Supported
2836 F:      drivers/media/pci/cobalt/
2837
2838 COCCINELLE/Semantic Patches (SmPL)
2839 M:      Julia Lawall <Julia.Lawall@lip6.fr>
2840 M:      Gilles Muller <Gilles.Muller@lip6.fr>
2841 M:      Nicolas Palix <nicolas.palix@imag.fr>
2842 M:      Michal Marek <mmarek@suse.com>
2843 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
2844 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
2845 W:      http://coccinelle.lip6.fr/
2846 S:      Supported
2847 F:      Documentation/coccinelle.txt
2848 F:      scripts/coccinelle/
2849 F:      scripts/coccicheck
2850
2851 CODA FILE SYSTEM
2852 M:      Jan Harkes <jaharkes@cs.cmu.edu>
2853 M:      coda@cs.cmu.edu
2854 L:      codalist@coda.cs.cmu.edu
2855 W:      http://www.coda.cs.cmu.edu/
2856 S:      Maintained
2857 F:      Documentation/filesystems/coda.txt
2858 F:      fs/coda/
2859 F:      include/linux/coda*.h
2860 F:      include/uapi/linux/coda*.h
2861
2862 CODA V4L2 MEM2MEM DRIVER
2863 M:      Philipp Zabel <p.zabel@pengutronix.de>
2864 L:      linux-media@vger.kernel.org
2865 S:      Maintained
2866 F:      Documentation/devicetree/bindings/media/coda.txt
2867 F:      drivers/media/platform/coda/
2868
2869 COMMON CLK FRAMEWORK
2870 M:      Michael Turquette <mturquette@baylibre.com>
2871 M:      Stephen Boyd <sboyd@codeaurora.org>
2872 L:      linux-clk@vger.kernel.org
2873 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
2874 S:      Maintained
2875 F:      drivers/clk/
2876 X:      drivers/clk/clkdev.c
2877 F:      include/linux/clk-pr*
2878 F:      include/linux/clk/
2879
2880 COMMON INTERNET FILE SYSTEM (CIFS)
2881 M:      Steve French <sfrench@samba.org>
2882 L:      linux-cifs@vger.kernel.org
2883 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
2884 W:      http://linux-cifs.samba.org/
2885 T:      git git://git.samba.org/sfrench/cifs-2.6.git
2886 S:      Supported
2887 F:      Documentation/filesystems/cifs/
2888 F:      fs/cifs/
2889
2890 COMPACTPCI HOTPLUG CORE
2891 M:      Scott Murray <scott@spiteful.org>
2892 L:      linux-pci@vger.kernel.org
2893 S:      Maintained
2894 F:      drivers/pci/hotplug/cpci_hotplug*
2895
2896 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
2897 M:      Scott Murray <scott@spiteful.org>
2898 L:      linux-pci@vger.kernel.org
2899 S:      Maintained
2900 F:      drivers/pci/hotplug/cpcihp_zt5550.*
2901
2902 COMPACTPCI HOTPLUG GENERIC DRIVER
2903 M:      Scott Murray <scott@spiteful.org>
2904 L:      linux-pci@vger.kernel.org
2905 S:      Maintained
2906 F:      drivers/pci/hotplug/cpcihp_generic.c
2907
2908 COMPAL LAPTOP SUPPORT
2909 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
2910 L:      platform-driver-x86@vger.kernel.org
2911 S:      Maintained
2912 F:      drivers/platform/x86/compal-laptop.c
2913
2914 CONEXANT ACCESSRUNNER USB DRIVER
2915 M:      Simon Arlott <cxacru@fire.lp0.eu>
2916 L:      accessrunner-general@lists.sourceforge.net
2917 W:      http://accessrunner.sourceforge.net/
2918 S:      Maintained
2919 F:      drivers/usb/atm/cxacru.c
2920
2921 CONFIGFS
2922 M:      Joel Becker <jlbec@evilplan.org>
2923 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
2924 S:      Supported
2925 F:      fs/configfs/
2926 F:      include/linux/configfs.h
2927
2928 CONNECTOR
2929 M:      Evgeniy Polyakov <zbr@ioremap.net>
2930 L:      netdev@vger.kernel.org
2931 S:      Maintained
2932 F:      drivers/connector/
2933
2934 CONTROL GROUP (CGROUP)
2935 M:      Tejun Heo <tj@kernel.org>
2936 M:      Li Zefan <lizefan@huawei.com>
2937 M:      Johannes Weiner <hannes@cmpxchg.org>
2938 L:      cgroups@vger.kernel.org
2939 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
2940 S:      Maintained
2941 F:      Documentation/cgroups/
2942 F:      include/linux/cgroup*
2943 F:      kernel/cgroup*
2944
2945 CONTROL GROUP - CPUSET
2946 M:      Li Zefan <lizefan@huawei.com>
2947 L:      cgroups@vger.kernel.org
2948 W:      http://www.bullopensource.org/cpuset/
2949 W:      http://oss.sgi.com/projects/cpusets/
2950 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
2951 S:      Maintained
2952 F:      Documentation/cgroups/cpusets.txt
2953 F:      include/linux/cpuset.h
2954 F:      kernel/cpuset.c
2955
2956 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
2957 M:      Johannes Weiner <hannes@cmpxchg.org>
2958 M:      Michal Hocko <mhocko@kernel.org>
2959 L:      cgroups@vger.kernel.org
2960 L:      linux-mm@kvack.org
2961 S:      Maintained
2962 F:      mm/memcontrol.c
2963 F:      mm/swap_cgroup.c
2964
2965 CORETEMP HARDWARE MONITORING DRIVER
2966 M:      Fenghua Yu <fenghua.yu@intel.com>
2967 L:      lm-sensors@lm-sensors.org
2968 S:      Maintained
2969 F:      Documentation/hwmon/coretemp
2970 F:      drivers/hwmon/coretemp.c
2971
2972 COSA/SRP SYNC SERIAL DRIVER
2973 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
2974 W:      http://www.fi.muni.cz/~kas/cosa/
2975 S:      Maintained
2976 F:      drivers/net/wan/cosa*
2977
2978 CPMAC ETHERNET DRIVER
2979 M:      Florian Fainelli <florian@openwrt.org>
2980 L:      netdev@vger.kernel.org
2981 S:      Maintained
2982 F:      drivers/net/ethernet/ti/cpmac.c
2983
2984 CPU FREQUENCY DRIVERS
2985 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
2986 M:      Viresh Kumar <viresh.kumar@linaro.org>
2987 L:      linux-pm@vger.kernel.org
2988 S:      Maintained
2989 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2990 T:      git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
2991 F:      drivers/cpufreq/
2992 F:      include/linux/cpufreq.h
2993
2994 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
2995 M:      Viresh Kumar <viresh.kumar@linaro.org>
2996 M:      Sudeep Holla <sudeep.holla@arm.com>
2997 L:      linux-pm@vger.kernel.org
2998 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
2999 S:      Maintained
3000 F:      drivers/cpufreq/arm_big_little.h
3001 F:      drivers/cpufreq/arm_big_little.c
3002 F:      drivers/cpufreq/arm_big_little_dt.c
3003
3004 CPUIDLE DRIVER - ARM BIG LITTLE
3005 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
3006 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3007 L:      linux-pm@vger.kernel.org
3008 L:      linux-arm-kernel@lists.infradead.org
3009 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3010 S:      Maintained
3011 F:      drivers/cpuidle/cpuidle-big_little.c
3012
3013 CPUIDLE DRIVER - ARM EXYNOS
3014 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
3015 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3016 M:      Kukjin Kim <kgene@kernel.org>
3017 L:      linux-pm@vger.kernel.org
3018 L:      linux-samsung-soc@vger.kernel.org
3019 S:      Supported
3020 F:      drivers/cpuidle/cpuidle-exynos.c
3021 F:      arch/arm/mach-exynos/pm.c
3022
3023 CPUIDLE DRIVERS
3024 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
3025 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3026 L:      linux-pm@vger.kernel.org
3027 S:      Maintained
3028 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3029 F:      drivers/cpuidle/*
3030 F:      include/linux/cpuidle.h
3031
3032 CPUID/MSR DRIVER
3033 M:      "H. Peter Anvin" <hpa@zytor.com>
3034 S:      Maintained
3035 F:      arch/x86/kernel/cpuid.c
3036 F:      arch/x86/kernel/msr.c
3037
3038 CPU POWER MONITORING SUBSYSTEM
3039 M:      Thomas Renninger <trenn@suse.com>
3040 L:      linux-pm@vger.kernel.org
3041 S:      Maintained
3042 F:      tools/power/cpupower/
3043
3044 CRAMFS FILESYSTEM
3045 W:      http://sourceforge.net/projects/cramfs/
3046 S:      Orphan / Obsolete
3047 F:      Documentation/filesystems/cramfs.txt
3048 F:      fs/cramfs/
3049
3050 CRIS PORT
3051 M:      Mikael Starvik <starvik@axis.com>
3052 M:      Jesper Nilsson <jesper.nilsson@axis.com>
3053 L:      linux-cris-kernel@axis.com
3054 W:      http://developer.axis.com
3055 S:      Maintained
3056 F:      arch/cris/
3057 F:      drivers/tty/serial/crisv10.*
3058
3059 CRYPTO API
3060 M:      Herbert Xu <herbert@gondor.apana.org.au>
3061 M:      "David S. Miller" <davem@davemloft.net>
3062 L:      linux-crypto@vger.kernel.org
3063 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
3064 S:      Maintained
3065 F:      Documentation/crypto/
3066 F:      Documentation/DocBook/crypto-API.tmpl
3067 F:      arch/*/crypto/
3068 F:      crypto/
3069 F:      drivers/crypto/
3070 F:      include/crypto/
3071
3072 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
3073 M:      Neil Horman <nhorman@tuxdriver.com>
3074 L:      linux-crypto@vger.kernel.org
3075 S:      Maintained
3076 F:      crypto/ansi_cprng.c
3077 F:      crypto/rng.c
3078
3079 CS5535 Audio ALSA driver
3080 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
3081 S:      Maintained
3082 F:      sound/pci/cs5535audio/
3083
3084 CW1200 WLAN driver
3085 M:      Solomon Peachy <pizza@shaftnet.org>
3086 S:      Maintained
3087 F:      drivers/net/wireless/cw1200/
3088
3089 CX18 VIDEO4LINUX DRIVER
3090 M:      Andy Walls <awalls@md.metrocast.net>
3091 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
3092 L:      linux-media@vger.kernel.org
3093 T:      git git://linuxtv.org/media_tree.git
3094 W:      http://linuxtv.org
3095 W:      http://www.ivtvdriver.org/index.php/Cx18
3096 S:      Maintained
3097 F:      Documentation/video4linux/cx18.txt
3098 F:      drivers/media/pci/cx18/
3099 F:      include/uapi/linux/ivtv*
3100
3101 CX2341X MPEG ENCODER HELPER MODULE
3102 M:      Hans Verkuil <hverkuil@xs4all.nl>
3103 L:      linux-media@vger.kernel.org
3104 T:      git git://linuxtv.org/media_tree.git
3105 W:      http://linuxtv.org
3106 S:      Maintained
3107 F:      drivers/media/common/cx2341x*
3108 F:      include/media/cx2341x*
3109
3110 CX24120 MEDIA DRIVER
3111 M:      Jemma Denson <jdenson@gmail.com>
3112 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
3113 L:      linux-media@vger.kernel.org
3114 W:      http://linuxtv.org/
3115 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3116 S:      Maintained
3117 F:      drivers/media/dvb-frontends/cx24120*
3118
3119 CX88 VIDEO4LINUX DRIVER
3120 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3121 L:      linux-media@vger.kernel.org
3122 W:      http://linuxtv.org
3123 T:      git git://linuxtv.org/media_tree.git
3124 S:      Odd fixes
3125 F:      Documentation/video4linux/cx88/
3126 F:      drivers/media/pci/cx88/
3127
3128 CXD2820R MEDIA DRIVER
3129 M:      Antti Palosaari <crope@iki.fi>
3130 L:      linux-media@vger.kernel.org
3131 W:      http://linuxtv.org/
3132 W:      http://palosaari.fi/linux/
3133 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3134 T:      git git://linuxtv.org/anttip/media_tree.git
3135 S:      Maintained
3136 F:      drivers/media/dvb-frontends/cxd2820r*
3137
3138 CXGB3 ETHERNET DRIVER (CXGB3)
3139 M:      Santosh Raspatur <santosh@chelsio.com>
3140 L:      netdev@vger.kernel.org
3141 W:      http://www.chelsio.com
3142 S:      Supported
3143 F:      drivers/net/ethernet/chelsio/cxgb3/
3144
3145 CXGB3 ISCSI DRIVER (CXGB3I)
3146 M:      Karen Xie <kxie@chelsio.com>
3147 L:      linux-scsi@vger.kernel.org
3148 W:      http://www.chelsio.com
3149 S:      Supported
3150 F:      drivers/scsi/cxgbi/cxgb3i
3151
3152 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
3153 M:      Steve Wise <swise@chelsio.com>
3154 L:      linux-rdma@vger.kernel.org
3155 W:      http://www.openfabrics.org
3156 S:      Supported
3157 F:      drivers/infiniband/hw/cxgb3/
3158
3159 CXGB4 ETHERNET DRIVER (CXGB4)
3160 M:      Hariprasad S <hariprasad@chelsio.com>
3161 L:      netdev@vger.kernel.org
3162 W:      http://www.chelsio.com
3163 S:      Supported
3164 F:      drivers/net/ethernet/chelsio/cxgb4/
3165
3166 CXGB4 ISCSI DRIVER (CXGB4I)
3167 M:      Karen Xie <kxie@chelsio.com>
3168 L:      linux-scsi@vger.kernel.org
3169 W:      http://www.chelsio.com
3170 S:      Supported
3171 F:      drivers/scsi/cxgbi/cxgb4i
3172
3173 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
3174 M:      Steve Wise <swise@chelsio.com>
3175 L:      linux-rdma@vger.kernel.org
3176 W:      http://www.openfabrics.org
3177 S:      Supported
3178 F:      drivers/infiniband/hw/cxgb4/
3179
3180 CXGB4VF ETHERNET DRIVER (CXGB4VF)
3181 M:      Casey Leedom <leedom@chelsio.com>
3182 L:      netdev@vger.kernel.org
3183 W:      http://www.chelsio.com
3184 S:      Supported
3185 F:      drivers/net/ethernet/chelsio/cxgb4vf/
3186
3187 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
3188 M:      Ian Munsie <imunsie@au1.ibm.com>
3189 M:      Michael Neuling <mikey@neuling.org>
3190 L:      linuxppc-dev@lists.ozlabs.org
3191 S:      Supported
3192 F:      drivers/misc/cxl/
3193 F:      include/misc/cxl*
3194 F:      include/uapi/misc/cxl.h
3195 F:      Documentation/powerpc/cxl.txt
3196 F:      Documentation/powerpc/cxl.txt
3197 F:      Documentation/ABI/testing/sysfs-class-cxl
3198
3199 STMMAC ETHERNET DRIVER
3200 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
3201 L:      netdev@vger.kernel.org
3202 W:      http://www.stlinux.com
3203 S:      Supported
3204 F:      drivers/net/ethernet/stmicro/stmmac/
3205
3206 CYBERPRO FB DRIVER
3207 M:      Russell King <linux@arm.linux.org.uk>
3208 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3209 W:      http://www.arm.linux.org.uk/
3210 S:      Maintained
3211 F:      drivers/video/fbdev/cyber2000fb.*
3212
3213 CYCLADES ASYNC MUX DRIVER
3214 W:      http://www.cyclades.com/
3215 S:      Orphan
3216 F:      drivers/tty/cyclades.c
3217 F:      include/linux/cyclades.h
3218 F:      include/uapi/linux/cyclades.h
3219
3220 CYCLADES PC300 DRIVER
3221 W:      http://www.cyclades.com/
3222 S:      Orphan
3223 F:      drivers/net/wan/pc300*
3224
3225 CYPRESS_FIRMWARE MEDIA DRIVER
3226 M:      Antti Palosaari <crope@iki.fi>
3227 L:      linux-media@vger.kernel.org
3228 W:      http://linuxtv.org/
3229 W:      http://palosaari.fi/linux/
3230 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3231 T:      git git://linuxtv.org/anttip/media_tree.git
3232 S:      Maintained
3233 F:      drivers/media/common/cypress_firmware*
3234
3235 CYTTSP TOUCHSCREEN DRIVER
3236 M:      Ferruh Yigit <fery@cypress.com>
3237 L:      linux-input@vger.kernel.org
3238 S:      Supported
3239 F:      drivers/input/touchscreen/cyttsp*
3240 F:      include/linux/input/cyttsp.h
3241
3242 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
3243 M:      Joshua Kinard <kumba@gentoo.org>
3244 S:      Maintained
3245 F:      drivers/rtc/rtc-ds1685.c
3246 F:      include/linux/rtc/ds1685.h
3247
3248 DAMA SLAVE for AX.25
3249 M:      Joerg Reuter <jreuter@yaina.de>
3250 W:      http://yaina.de/jreuter/
3251 W:      http://www.qsl.net/dl1bke/
3252 L:      linux-hams@vger.kernel.org
3253 S:      Maintained
3254 F:      net/ax25/af_ax25.c
3255 F:      net/ax25/ax25_dev.c
3256 F:      net/ax25/ax25_ds_*
3257 F:      net/ax25/ax25_in.c
3258 F:      net/ax25/ax25_out.c
3259 F:      net/ax25/ax25_timer.c
3260 F:      net/ax25/sysctl_net_ax25.c
3261
3262 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
3263 L:      netdev@vger.kernel.org
3264 S:      Orphan
3265 F:      Documentation/networking/dmfe.txt
3266 F:      drivers/net/ethernet/dec/tulip/dmfe.c
3267
3268 DC390/AM53C974 SCSI driver
3269 M:      Hannes Reinecke <hare@suse.com>
3270 L:      linux-scsi@vger.kernel.org
3271 S:      Maintained
3272 F:      drivers/scsi/am53c974.c
3273
3274 DC395x SCSI driver
3275 M:      Oliver Neukum <oliver@neukum.org>
3276 M:      Ali Akcaagac <aliakc@web.de>
3277 M:      Jamie Lenehan <lenehan@twibble.org>
3278 L:      dc395x@twibble.org
3279 W:      http://twibble.org/dist/dc395x/
3280 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
3281 S:      Maintained
3282 F:      Documentation/scsi/dc395x.txt
3283 F:      drivers/scsi/dc395x.*
3284
3285 DCCP PROTOCOL
3286 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
3287 L:      dccp@vger.kernel.org
3288 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
3289 S:      Maintained
3290 F:      include/linux/dccp.h
3291 F:      include/uapi/linux/dccp.h
3292 F:      include/linux/tfrc.h
3293 F:      net/dccp/
3294
3295 DECnet NETWORK LAYER
3296 W:      http://linux-decnet.sourceforge.net
3297 L:      linux-decnet-user@lists.sourceforge.net
3298 S:      Orphan
3299 F:      Documentation/networking/decnet.txt
3300 F:      net/decnet/
3301
3302 DECSTATION PLATFORM SUPPORT
3303 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3304 L:      linux-mips@linux-mips.org
3305 W:      http://www.linux-mips.org/wiki/DECstation
3306 S:      Maintained
3307 F:      arch/mips/dec/
3308 F:      arch/mips/include/asm/dec/
3309 F:      arch/mips/include/asm/mach-dec/
3310
3311 DEFXX FDDI NETWORK DRIVER
3312 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3313 S:      Maintained
3314 F:      drivers/net/fddi/defxx.*
3315
3316 DELL LAPTOP DRIVER
3317 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3318 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3319 L:      platform-driver-x86@vger.kernel.org
3320 S:      Maintained
3321 F:      drivers/platform/x86/dell-laptop.c
3322
3323 DELL LAPTOP RBTN DRIVER
3324 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3325 S:      Maintained
3326 F:      drivers/platform/x86/dell-rbtn.*
3327
3328 DELL LAPTOP FREEFALL DRIVER
3329 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3330 S:      Maintained
3331 F:      drivers/platform/x86/dell-smo8800.c
3332
3333 DELL LAPTOP SMM DRIVER
3334 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3335 S:      Maintained
3336 F:      drivers/hwmon/dell-smm-hwmon.c
3337 F:      include/uapi/linux/i8k.h
3338
3339 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
3340 M:      Doug Warzecha <Douglas_Warzecha@dell.com>
3341 S:      Maintained
3342 F:      Documentation/dcdbas.txt
3343 F:      drivers/firmware/dcdbas.*
3344
3345 DELL WMI EXTRAS DRIVER
3346 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3347 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3348 S:      Maintained
3349 F:      drivers/platform/x86/dell-wmi.c
3350
3351 DESIGNWARE USB2 DRD IP DRIVER
3352 M:      John Youn <johnyoun@synopsys.com>
3353 L:      linux-usb@vger.kernel.org
3354 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3355 S:      Maintained
3356 F:      drivers/usb/dwc2/
3357
3358 DESIGNWARE USB3 DRD IP DRIVER
3359 M:      Felipe Balbi <balbi@ti.com>
3360 L:      linux-usb@vger.kernel.org
3361 L:      linux-omap@vger.kernel.org
3362 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3363 S:      Maintained
3364 F:      drivers/usb/dwc3/
3365
3366 DEVICE COREDUMP (DEV_COREDUMP)
3367 M:      Johannes Berg <johannes@sipsolutions.net>
3368 L:      linux-kernel@vger.kernel.org
3369 S:      Maintained
3370 F:      drivers/base/devcoredump.c
3371 F:      include/linux/devcoredump.h
3372
3373 DEVICE FREQUENCY (DEVFREQ)
3374 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
3375 M:      Kyungmin Park <kyungmin.park@samsung.com>
3376 L:      linux-pm@vger.kernel.org
3377 S:      Maintained
3378 F:      drivers/devfreq/
3379
3380 DEVICE NUMBER REGISTRY
3381 M:      Torben Mathiasen <device@lanana.org>
3382 W:      http://lanana.org/docs/device-list/index.html
3383 S:      Maintained
3384
3385 DEVICE-MAPPER  (LVM)
3386 M:      Alasdair Kergon <agk@redhat.com>
3387 M:      Mike Snitzer <snitzer@redhat.com>
3388 M:      dm-devel@redhat.com
3389 L:      dm-devel@redhat.com
3390 W:      http://sources.redhat.com/dm
3391 Q:      http://patchwork.kernel.org/project/dm-devel/list/
3392 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
3393 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
3394 S:      Maintained
3395 F:      Documentation/device-mapper/
3396 F:      drivers/md/dm*
3397 F:      drivers/md/persistent-data/
3398 F:      include/linux/device-mapper.h
3399 F:      include/linux/dm-*.h
3400 F:      include/uapi/linux/dm-*.h
3401
3402 DIALOG SEMICONDUCTOR DRIVERS
3403 M:      Support Opensource <support.opensource@diasemi.com>
3404 W:      http://www.dialog-semiconductor.com/products
3405 S:      Supported
3406 F:      Documentation/hwmon/da90??
3407 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
3408 F:      drivers/gpio/gpio-da90??.c
3409 F:      drivers/hwmon/da90??-hwmon.c
3410 F:      drivers/iio/adc/da91??-*.c
3411 F:      drivers/input/misc/da90??_onkey.c
3412 F:      drivers/input/touchscreen/da9052_tsi.c
3413 F:      drivers/leds/leds-da90??.c
3414 F:      drivers/mfd/da903x.c
3415 F:      drivers/mfd/da90??-*.c
3416 F:      drivers/mfd/da91??-*.c
3417 F:      drivers/power/da9052-battery.c
3418 F:      drivers/power/da91??-*.c
3419 F:      drivers/regulator/da903x.c
3420 F:      drivers/regulator/da9???-regulator.[ch]
3421 F:      drivers/rtc/rtc-da90??.c
3422 F:      drivers/video/backlight/da90??_bl.c
3423 F:      drivers/watchdog/da90??_wdt.c
3424 F:      include/linux/mfd/da903x.h
3425 F:      include/linux/mfd/da9052/
3426 F:      include/linux/mfd/da9055/
3427 F:      include/linux/mfd/da9063/
3428 F:      include/linux/mfd/da9150/
3429 F:      include/sound/da[79]*.h
3430 F:      sound/soc/codecs/da[79]*.[ch]
3431
3432 DIGI NEO AND CLASSIC PCI PRODUCTS
3433 M:      Lidza Louina <lidza.louina@gmail.com>
3434 M:      Mark Hounschell <markh@compro.net>
3435 L:      driverdev-devel@linuxdriverproject.org
3436 S:      Maintained
3437 F:      drivers/staging/dgnc/
3438
3439 DIGI EPCA PCI PRODUCTS
3440 M:      Lidza Louina <lidza.louina@gmail.com>
3441 M:      Daeseok Youn <daeseok.youn@gmail.com>
3442 L:      driverdev-devel@linuxdriverproject.org
3443 S:      Maintained
3444 F:      drivers/staging/dgap/
3445
3446 DIOLAN U2C-12 I2C DRIVER
3447 M:      Guenter Roeck <linux@roeck-us.net>
3448 L:      linux-i2c@vger.kernel.org
3449 S:      Maintained
3450 F:      drivers/i2c/busses/i2c-diolan-u2c.c
3451
3452 DIRECT ACCESS (DAX)
3453 M:      Matthew Wilcox <willy@linux.intel.com>
3454 L:      linux-fsdevel@vger.kernel.org
3455 S:      Supported
3456 F:      fs/dax.c
3457
3458 DIRECTORY NOTIFICATION (DNOTIFY)
3459 M:      Eric Paris <eparis@parisplace.org>
3460 S:      Maintained
3461 F:      Documentation/filesystems/dnotify.txt
3462 F:      fs/notify/dnotify/
3463 F:      include/linux/dnotify.h
3464
3465 DISK GEOMETRY AND PARTITION HANDLING
3466 M:      Andries Brouwer <aeb@cwi.nl>
3467 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
3468 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
3469 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
3470 S:      Maintained
3471
3472 DISKQUOTA
3473 M:      Jan Kara <jack@suse.com>
3474 S:      Maintained
3475 F:      Documentation/filesystems/quota.txt
3476 F:      fs/quota/
3477 F:      include/linux/quota*.h
3478 F:      include/uapi/linux/quota*.h
3479
3480 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
3481 M:      Bernie Thompson <bernie@plugable.com>
3482 L:      linux-fbdev@vger.kernel.org
3483 S:      Maintained
3484 W:      http://plugable.com/category/projects/udlfb/
3485 F:      drivers/video/fbdev/udlfb.c
3486 F:      include/video/udlfb.h
3487 F:      Documentation/fb/udlfb.txt
3488
3489 DISTRIBUTED LOCK MANAGER (DLM)
3490 M:      Christine Caulfield <ccaulfie@redhat.com>
3491 M:      David Teigland <teigland@redhat.com>
3492 L:      cluster-devel@redhat.com
3493 W:      http://sources.redhat.com/cluster/
3494 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
3495 S:      Supported
3496 F:      fs/dlm/
3497
3498 DMA BUFFER SHARING FRAMEWORK
3499 M:      Sumit Semwal <sumit.semwal@linaro.org>
3500 S:      Maintained
3501 L:      linux-media@vger.kernel.org
3502 L:      dri-devel@lists.freedesktop.org
3503 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
3504 F:      drivers/dma-buf/
3505 F:      include/linux/dma-buf*
3506 F:      include/linux/reservation.h
3507 F:      include/linux/*fence.h
3508 F:      Documentation/dma-buf-sharing.txt
3509 T:      git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
3510
3511 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
3512 M:      Vinod Koul <vinod.koul@intel.com>
3513 L:      dmaengine@vger.kernel.org
3514 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
3515 S:      Maintained
3516 F:      drivers/dma/
3517 F:      include/linux/dmaengine.h
3518 F:      Documentation/dmaengine/
3519 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
3520
3521 DME1737 HARDWARE MONITOR DRIVER
3522 M:      Juerg Haefliger <juergh@gmail.com>
3523 L:      lm-sensors@lm-sensors.org
3524 S:      Maintained
3525 F:      Documentation/hwmon/dme1737
3526 F:      drivers/hwmon/dme1737.c
3527
3528 DMI/SMBIOS SUPPORT
3529 M:      Jean Delvare <jdelvare@suse.com>
3530 S:      Maintained
3531 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
3532 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
3533 F:      drivers/firmware/dmi-id.c
3534 F:      drivers/firmware/dmi_scan.c
3535 F:      include/linux/dmi.h
3536
3537 DOCUMENTATION
3538 M:      Jonathan Corbet <corbet@lwn.net>
3539 L:      linux-doc@vger.kernel.org
3540 S:      Maintained
3541 F:      Documentation/
3542 X:      Documentation/ABI/
3543 X:      Documentation/devicetree/
3544 X:      Documentation/acpi
3545 X:      Documentation/power
3546 X:      Documentation/spi
3547 X:      Documentation/DocBook/media
3548 T:      git git://git.lwn.net/linux-2.6.git docs-next
3549
3550 DOUBLETALK DRIVER
3551 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
3552 L:      blinux-list@redhat.com
3553 S:      Maintained
3554 F:      drivers/char/dtlk.c
3555 F:      include/linux/dtlk.h
3556
3557 DPT_I2O SCSI RAID DRIVER
3558 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
3559 L:      linux-scsi@vger.kernel.org
3560 W:      http://www.adaptec.com/
3561 S:      Maintained
3562 F:      drivers/scsi/dpt*
3563 F:      drivers/scsi/dpt/
3564
3565 DRBD DRIVER
3566 P:      Philipp Reisner
3567 P:      Lars Ellenberg
3568 M:      drbd-dev@lists.linbit.com
3569 L:      drbd-user@lists.linbit.com
3570 W:      http://www.drbd.org
3571 T:      git git://git.drbd.org/linux-2.6-drbd.git drbd
3572 T:      git git://git.drbd.org/drbd-8.3.git
3573 S:      Supported
3574 F:      drivers/block/drbd/
3575 F:      lib/lru_cache.c
3576 F:      Documentation/blockdev/drbd/
3577
3578 DRIVER CORE, KOBJECTS, DEBUGFS, KERNFS AND SYSFS
3579 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3580 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
3581 S:      Supported
3582 F:      Documentation/kobject.txt
3583 F:      drivers/base/
3584 F:      fs/debugfs/
3585 F:      fs/kernfs/
3586 F:      fs/sysfs/
3587 F:      include/linux/debugfs.h
3588 F:      include/linux/kobj*
3589 F:      lib/kobj*
3590
3591 DRM DRIVERS
3592 M:      David Airlie <airlied@linux.ie>
3593 L:      dri-devel@lists.freedesktop.org
3594 T:      git git://people.freedesktop.org/~airlied/linux
3595 S:      Maintained
3596 F:      drivers/gpu/drm/
3597 F:      drivers/gpu/vga/
3598 F:      include/drm/
3599 F:      include/uapi/drm/
3600
3601 RADEON DRM DRIVERS
3602 M:      Alex Deucher <alexander.deucher@amd.com>
3603 M:      Christian König <christian.koenig@amd.com>
3604 L:      dri-devel@lists.freedesktop.org
3605 T:      git git://people.freedesktop.org/~agd5f/linux
3606 S:      Supported
3607 F:      drivers/gpu/drm/radeon/
3608 F:      include/uapi/drm/radeon*
3609
3610 DRM PANEL DRIVERS
3611 M:      Thierry Reding <thierry.reding@gmail.com>
3612 L:      dri-devel@lists.freedesktop.org
3613 T:      git git://anongit.freedesktop.org/tegra/linux.git
3614 S:      Maintained
3615 F:      drivers/gpu/drm/drm_panel.c
3616 F:      drivers/gpu/drm/panel/
3617 F:      include/drm/drm_panel.h
3618 F:      Documentation/devicetree/bindings/panel/
3619
3620 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
3621 M:      Daniel Vetter <daniel.vetter@intel.com>
3622 M:      Jani Nikula <jani.nikula@linux.intel.com>
3623 L:      intel-gfx@lists.freedesktop.org
3624 L:      dri-devel@lists.freedesktop.org
3625 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
3626 T:      git git://anongit.freedesktop.org/drm-intel
3627 S:      Supported
3628 F:      drivers/gpu/drm/i915/
3629 F:      include/drm/i915*
3630 F:      include/uapi/drm/i915*
3631
3632 DRM DRIVERS FOR ATMEL HLCDC
3633 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
3634 L:      dri-devel@lists.freedesktop.org
3635 S:      Supported
3636 F:      drivers/gpu/drm/atmel-hlcdc/
3637 F:      Documentation/devicetree/bindings/drm/atmel/
3638
3639 DRM DRIVERS FOR EXYNOS
3640 M:      Inki Dae <inki.dae@samsung.com>
3641 M:      Joonyoung Shim <jy0922.shim@samsung.com>
3642 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
3643 M:      Kyungmin Park <kyungmin.park@samsung.com>
3644 L:      dri-devel@lists.freedesktop.org
3645 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
3646 S:      Supported
3647 F:      drivers/gpu/drm/exynos/
3648 F:      include/drm/exynos*
3649 F:      include/uapi/drm/exynos*
3650
3651 DRM DRIVERS FOR FREESCALE DCU
3652 M:      Jianwei Wang <jianwei.wang.chn@gmail.com>
3653 M:      Alison Wang <alison.wang@freescale.com>
3654 L:      dri-devel@lists.freedesktop.org
3655 S:      Supported
3656 F:      drivers/gpu/drm/fsl-dcu/
3657 F:      Documentation/devicetree/bindings/video/fsl,dcu.txt
3658 F:      Documentation/devicetree/bindings/panel/nec,nl4827hc19_05b.txt
3659
3660 DRM DRIVERS FOR FREESCALE IMX
3661 M:      Philipp Zabel <p.zabel@pengutronix.de>
3662 L:      dri-devel@lists.freedesktop.org
3663 S:      Maintained
3664 F:      drivers/gpu/drm/imx/
3665 F:      Documentation/devicetree/bindings/drm/imx/
3666
3667 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
3668 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
3669 L:      dri-devel@lists.freedesktop.org
3670 T:      git git://github.com/patjak/drm-gma500
3671 S:      Maintained
3672 F:      drivers/gpu/drm/gma500
3673 F:      include/drm/gma500*
3674
3675 DRM DRIVERS FOR NVIDIA TEGRA
3676 M:      Thierry Reding <thierry.reding@gmail.com>
3677 M:      Terje Bergström <tbergstrom@nvidia.com>
3678 L:      dri-devel@lists.freedesktop.org
3679 L:      linux-tegra@vger.kernel.org
3680 T:      git git://anongit.freedesktop.org/tegra/linux.git
3681 S:      Supported
3682 F:      drivers/gpu/drm/tegra/
3683 F:      drivers/gpu/host1x/
3684 F:      include/linux/host1x.h
3685 F:      include/uapi/drm/tegra_drm.h
3686 F:      Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt
3687
3688 DRM DRIVERS FOR RENESAS
3689 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
3690 L:      dri-devel@lists.freedesktop.org
3691 L:      linux-sh@vger.kernel.org
3692 T:      git git://people.freedesktop.org/~airlied/linux
3693 S:      Supported
3694 F:      drivers/gpu/drm/rcar-du/
3695 F:      drivers/gpu/drm/shmobile/
3696 F:      include/linux/platform_data/shmob_drm.h
3697
3698 DRM DRIVERS FOR ROCKCHIP
3699 M:      Mark Yao <mark.yao@rock-chips.com>
3700 L:      dri-devel@lists.freedesktop.org
3701 S:      Maintained
3702 F:      drivers/gpu/drm/rockchip/
3703 F:      Documentation/devicetree/bindings/video/rockchip*
3704
3705 DRM DRIVERS FOR STI
3706 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
3707 M:      Vincent Abriou <vincent.abriou@st.com>
3708 L:      dri-devel@lists.freedesktop.org
3709 T:      git http://git.linaro.org/people/benjamin.gaignard/kernel.git
3710 S:      Maintained
3711 F:      drivers/gpu/drm/sti
3712 F:      Documentation/devicetree/bindings/gpu/st,stih4xx.txt
3713
3714 DSBR100 USB FM RADIO DRIVER
3715 M:      Alexey Klimov <klimov.linux@gmail.com>
3716 L:      linux-media@vger.kernel.org
3717 T:      git git://linuxtv.org/media_tree.git
3718 S:      Maintained
3719 F:      drivers/media/radio/dsbr100.c
3720
3721 DSCC4 DRIVER
3722 M:      Francois Romieu <romieu@fr.zoreil.com>
3723 L:      netdev@vger.kernel.org
3724 S:      Maintained
3725 F:      drivers/net/wan/dscc4.c
3726
3727 DT3155 MEDIA DRIVER
3728 M:      Hans Verkuil <hverkuil@xs4all.nl>
3729 L:      linux-media@vger.kernel.org
3730 T:      git git://linuxtv.org/media_tree.git
3731 W:      http://linuxtv.org
3732 S:      Odd Fixes
3733 F:      drivers/media/pci/dt3155/
3734
3735 DVB_USB_AF9015 MEDIA DRIVER
3736 M:      Antti Palosaari <crope@iki.fi>
3737 L:      linux-media@vger.kernel.org
3738 W:      http://linuxtv.org/
3739 W:      http://palosaari.fi/linux/
3740 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3741 T:      git git://linuxtv.org/anttip/media_tree.git
3742 S:      Maintained
3743 F:      drivers/media/usb/dvb-usb-v2/af9015*
3744
3745 DVB_USB_AF9035 MEDIA DRIVER
3746 M:      Antti Palosaari <crope@iki.fi>
3747 L:      linux-media@vger.kernel.org
3748 W:      http://linuxtv.org/
3749 W:      http://palosaari.fi/linux/
3750 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3751 T:      git git://linuxtv.org/anttip/media_tree.git
3752 S:      Maintained
3753 F:      drivers/media/usb/dvb-usb-v2/af9035*
3754
3755 DVB_USB_ANYSEE MEDIA DRIVER
3756 M:      Antti Palosaari <crope@iki.fi>
3757 L:      linux-media@vger.kernel.org
3758 W:      http://linuxtv.org/
3759 W:      http://palosaari.fi/linux/
3760 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3761 T:      git git://linuxtv.org/anttip/media_tree.git
3762 S:      Maintained
3763 F:      drivers/media/usb/dvb-usb-v2/anysee*
3764
3765 DVB_USB_AU6610 MEDIA DRIVER
3766 M:      Antti Palosaari <crope@iki.fi>
3767 L:      linux-media@vger.kernel.org
3768 W:      http://linuxtv.org/
3769 W:      http://palosaari.fi/linux/
3770 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3771 T:      git git://linuxtv.org/anttip/media_tree.git
3772 S:      Maintained
3773 F:      drivers/media/usb/dvb-usb-v2/au6610*
3774
3775 DVB_USB_CE6230 MEDIA DRIVER
3776 M:      Antti Palosaari <crope@iki.fi>
3777 L:      linux-media@vger.kernel.org
3778 W:      http://linuxtv.org/
3779 W:      http://palosaari.fi/linux/
3780 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3781 T:      git git://linuxtv.org/anttip/media_tree.git
3782 S:      Maintained
3783 F:      drivers/media/usb/dvb-usb-v2/ce6230*
3784
3785 DVB_USB_CXUSB MEDIA DRIVER
3786 M:      Michael Krufky <mkrufky@linuxtv.org>
3787 L:      linux-media@vger.kernel.org
3788 W:      http://linuxtv.org/
3789 W:      http://github.com/mkrufky
3790 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3791 T:      git git://linuxtv.org/media_tree.git
3792 S:      Maintained
3793 F:      drivers/media/usb/dvb-usb/cxusb*
3794
3795 DVB_USB_EC168 MEDIA DRIVER
3796 M:      Antti Palosaari <crope@iki.fi>
3797 L:      linux-media@vger.kernel.org
3798 W:      http://linuxtv.org/
3799 W:      http://palosaari.fi/linux/
3800 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3801 T:      git git://linuxtv.org/anttip/media_tree.git
3802 S:      Maintained
3803 F:      drivers/media/usb/dvb-usb-v2/ec168*
3804
3805 DVB_USB_GL861 MEDIA DRIVER
3806 M:      Antti Palosaari <crope@iki.fi>
3807 L:      linux-media@vger.kernel.org
3808 W:      http://linuxtv.org/
3809 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3810 T:      git git://linuxtv.org/anttip/media_tree.git
3811 S:      Maintained
3812 F:      drivers/media/usb/dvb-usb-v2/gl861*
3813
3814 DVB_USB_MXL111SF MEDIA DRIVER
3815 M:      Michael Krufky <mkrufky@linuxtv.org>
3816 L:      linux-media@vger.kernel.org
3817 W:      http://linuxtv.org/
3818 W:      http://github.com/mkrufky
3819 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3820 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
3821 S:      Maintained
3822 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
3823
3824 DVB_USB_RTL28XXU MEDIA DRIVER
3825 M:      Antti Palosaari <crope@iki.fi>
3826 L:      linux-media@vger.kernel.org
3827 W:      http://linuxtv.org/
3828 W:      http://palosaari.fi/linux/
3829 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3830 T:      git git://linuxtv.org/anttip/media_tree.git
3831 S:      Maintained
3832 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
3833
3834 DVB_USB_V2 MEDIA DRIVER
3835 M:      Antti Palosaari <crope@iki.fi>
3836 L:      linux-media@vger.kernel.org
3837 W:      http://linuxtv.org/
3838 W:      http://palosaari.fi/linux/
3839 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3840 T:      git git://linuxtv.org/anttip/media_tree.git
3841 S:      Maintained
3842 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
3843 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
3844
3845 DYNAMIC DEBUG
3846 M:      Jason Baron <jbaron@akamai.com>
3847 S:      Maintained
3848 F:      lib/dynamic_debug.c
3849 F:      include/linux/dynamic_debug.h
3850
3851 DZ DECSTATION DZ11 SERIAL DRIVER
3852 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3853 S:      Maintained
3854 F:      drivers/tty/serial/dz.*
3855
3856 E3X0 POWER BUTTON DRIVER
3857 M:      Moritz Fischer <moritz.fischer@ettus.com>
3858 L:      usrp-users@lists.ettus.com
3859 W:      http://www.ettus.com
3860 S:      Supported
3861 F:      drivers/input/misc/e3x0-button.c
3862 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
3863
3864 E4000 MEDIA DRIVER
3865 M:      Antti Palosaari <crope@iki.fi>
3866 L:      linux-media@vger.kernel.org
3867 W:      http://linuxtv.org/
3868 W:      http://palosaari.fi/linux/
3869 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3870 T:      git git://linuxtv.org/anttip/media_tree.git
3871 S:      Maintained
3872 F:      drivers/media/tuners/e4000*
3873
3874 EATA ISA/EISA/PCI SCSI DRIVER
3875 M:      Dario Ballabio <ballabio_dario@emc.com>
3876 L:      linux-scsi@vger.kernel.org
3877 S:      Maintained
3878 F:      drivers/scsi/eata.c
3879
3880 EC100 MEDIA DRIVER
3881 M:      Antti Palosaari <crope@iki.fi>
3882 L:      linux-media@vger.kernel.org
3883 W:      http://linuxtv.org/
3884 W:      http://palosaari.fi/linux/
3885 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3886 T:      git git://linuxtv.org/anttip/media_tree.git
3887 S:      Maintained
3888 F:      drivers/media/dvb-frontends/ec100*
3889
3890 ECRYPT FILE SYSTEM
3891 M:      Tyler Hicks <tyhicks@canonical.com>
3892 L:      ecryptfs@vger.kernel.org
3893 W:      http://ecryptfs.org
3894 W:      https://launchpad.net/ecryptfs
3895 S:      Supported
3896 F:      Documentation/filesystems/ecryptfs.txt
3897 F:      fs/ecryptfs/
3898
3899 EDAC-CORE
3900 M:      Doug Thompson <dougthompson@xmission.com>
3901 M:      Borislav Petkov <bp@alien8.de>
3902 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3903 L:      linux-edac@vger.kernel.org
3904 W:      bluesmoke.sourceforge.net
3905 T:      git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git#for-next
3906 T:      git://git.kernel.org/pub/linux/kernel/git/mchehab/linux-edac.git#linux_next
3907 S:      Supported
3908 F:      Documentation/edac.txt
3909 F:      drivers/edac/
3910 F:      include/linux/edac.h
3911
3912 EDAC-AMD64
3913 M:      Doug Thompson <dougthompson@xmission.com>
3914 M:      Borislav Petkov <bp@alien8.de>
3915 L:      linux-edac@vger.kernel.org
3916 W:      bluesmoke.sourceforge.net
3917 S:      Maintained
3918 F:      drivers/edac/amd64_edac*
3919
3920 EDAC-CALXEDA
3921 M:      Doug Thompson <dougthompson@xmission.com>
3922 M:      Robert Richter <rric@kernel.org>
3923 L:      linux-edac@vger.kernel.org
3924 W:      bluesmoke.sourceforge.net
3925 S:      Maintained
3926 F:      drivers/edac/highbank*
3927
3928 EDAC-CAVIUM
3929 M:      Ralf Baechle <ralf@linux-mips.org>
3930 M:      David Daney <david.daney@cavium.com>
3931 L:      linux-edac@vger.kernel.org
3932 L:      linux-mips@linux-mips.org
3933 W:      bluesmoke.sourceforge.net
3934 S:      Supported
3935 F:      drivers/edac/octeon_edac*
3936
3937 EDAC-E752X
3938 M:      Mark Gross <mark.gross@intel.com>
3939 M:      Doug Thompson <dougthompson@xmission.com>
3940 L:      linux-edac@vger.kernel.org
3941 W:      bluesmoke.sourceforge.net
3942 S:      Maintained
3943 F:      drivers/edac/e752x_edac.c
3944
3945 EDAC-E7XXX
3946 M:      Doug Thompson <dougthompson@xmission.com>
3947 L:      linux-edac@vger.kernel.org
3948 W:      bluesmoke.sourceforge.net
3949 S:      Maintained
3950 F:      drivers/edac/e7xxx_edac.c
3951
3952 EDAC-GHES
3953 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3954 L:      linux-edac@vger.kernel.org
3955 W:      bluesmoke.sourceforge.net
3956 S:      Maintained
3957 F:      drivers/edac/ghes_edac.c
3958
3959 EDAC-I82443BXGX
3960 M:      Tim Small <tim@buttersideup.com>
3961 L:      linux-edac@vger.kernel.org
3962 W:      bluesmoke.sourceforge.net
3963 S:      Maintained
3964 F:      drivers/edac/i82443bxgx_edac.c
3965
3966 EDAC-I3000
3967 M:      Jason Uhlenkott <juhlenko@akamai.com>
3968 L:      linux-edac@vger.kernel.org
3969 W:      bluesmoke.sourceforge.net
3970 S:      Maintained
3971 F:      drivers/edac/i3000_edac.c
3972
3973 EDAC-I5000
3974 M:      Doug Thompson <dougthompson@xmission.com>
3975 L:      linux-edac@vger.kernel.org
3976 W:      bluesmoke.sourceforge.net
3977 S:      Maintained
3978 F:      drivers/edac/i5000_edac.c
3979
3980 EDAC-I5400
3981 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3982 L:      linux-edac@vger.kernel.org
3983 W:      bluesmoke.sourceforge.net
3984 S:      Maintained
3985 F:      drivers/edac/i5400_edac.c
3986
3987 EDAC-I7300
3988 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3989 L:      linux-edac@vger.kernel.org
3990 W:      bluesmoke.sourceforge.net
3991 S:      Maintained
3992 F:      drivers/edac/i7300_edac.c
3993
3994 EDAC-I7CORE
3995 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3996 L:      linux-edac@vger.kernel.org
3997 W:      bluesmoke.sourceforge.net
3998 S:      Maintained
3999 F:      drivers/edac/i7core_edac.c
4000
4001 EDAC-I82975X
4002 M:      Ranganathan Desikan <ravi@jetztechnologies.com>
4003 M:      "Arvind R." <arvino55@gmail.com>
4004 L:      linux-edac@vger.kernel.org
4005 W:      bluesmoke.sourceforge.net
4006 S:      Maintained
4007 F:      drivers/edac/i82975x_edac.c
4008
4009 EDAC-IE31200
4010 M:      Jason Baron <jbaron@akamai.com>
4011 L:      linux-edac@vger.kernel.org
4012 W:      bluesmoke.sourceforge.net
4013 S:      Maintained
4014 F:      drivers/edac/ie31200_edac.c
4015
4016 EDAC-MPC85XX
4017 M:      Johannes Thumshirn <morbidrsa@gmail.com>
4018 L:      linux-edac@vger.kernel.org
4019 W:      bluesmoke.sourceforge.net
4020 S:      Maintained
4021 F:      drivers/edac/mpc85xx_edac.[ch]
4022
4023 EDAC-PASEMI
4024 M:      Egor Martovetsky <egor@pasemi.com>
4025 L:      linux-edac@vger.kernel.org
4026 W:      bluesmoke.sourceforge.net
4027 S:      Maintained
4028 F:      drivers/edac/pasemi_edac.c
4029
4030 EDAC-R82600
4031 M:      Tim Small <tim@buttersideup.com>
4032 L:      linux-edac@vger.kernel.org
4033 W:      bluesmoke.sourceforge.net
4034 S:      Maintained
4035 F:      drivers/edac/r82600_edac.c
4036
4037 EDAC-SBRIDGE
4038 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4039 L:      linux-edac@vger.kernel.org
4040 W:      bluesmoke.sourceforge.net
4041 S:      Maintained
4042 F:      drivers/edac/sb_edac.c
4043
4044 EDAC-XGENE
4045 APPLIED MICRO (APM) X-GENE SOC EDAC
4046 M:     Loc Ho <lho@apm.com>
4047 S:     Supported
4048 F:     drivers/edac/xgene_edac.c
4049 F:     Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
4050
4051 EDIROL UA-101/UA-1000 DRIVER
4052 M:      Clemens Ladisch <clemens@ladisch.de>
4053 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4054 T:      git git://git.alsa-project.org/alsa-kernel.git
4055 S:      Maintained
4056 F:      sound/usb/misc/ua101.c
4057
4058 EXTENSIBLE FIRMWARE INTERFACE (EFI)
4059 M:      Matt Fleming <matt@codeblueprint.co.uk>
4060 L:      linux-efi@vger.kernel.org
4061 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4062 S:      Maintained
4063 F:      Documentation/efi-stub.txt
4064 F:      arch/ia64/kernel/efi.c
4065 F:      arch/x86/boot/compressed/eboot.[ch]
4066 F:      arch/x86/include/asm/efi.h
4067 F:      arch/x86/platform/efi/*
4068 F:      drivers/firmware/efi/*
4069 F:      include/linux/efi*.h
4070
4071 EFI VARIABLE FILESYSTEM
4072 M:      Matthew Garrett <matthew.garrett@nebula.com>
4073 M:      Jeremy Kerr <jk@ozlabs.org>
4074 M:      Matt Fleming <matt@codeblueprint.co.uk>
4075 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4076 L:      linux-efi@vger.kernel.org
4077 S:      Maintained
4078 F:      fs/efivarfs/
4079
4080 EFIFB FRAMEBUFFER DRIVER
4081 L:      linux-fbdev@vger.kernel.org
4082 M:      Peter Jones <pjones@redhat.com>
4083 S:      Maintained
4084 F:      drivers/video/fbdev/efifb.c
4085
4086 EFS FILESYSTEM
4087 W:      http://aeschi.ch.eu.org/efs/
4088 S:      Orphan
4089 F:      fs/efs/
4090
4091 EHCA (IBM GX bus InfiniBand adapter) DRIVER
4092 M:      Hoang-Nam Nguyen <hnguyen@de.ibm.com>
4093 M:      Christoph Raisch <raisch@de.ibm.com>
4094 L:      linux-rdma@vger.kernel.org
4095 S:      Supported
4096 F:      drivers/infiniband/hw/ehca/
4097
4098 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
4099 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
4100 L:      netdev@vger.kernel.org
4101 S:      Maintained
4102 F:      drivers/net/ethernet/ibm/ehea/
4103
4104 EM28XX VIDEO4LINUX DRIVER
4105 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4106 L:      linux-media@vger.kernel.org
4107 W:      http://linuxtv.org
4108 T:      git git://linuxtv.org/media_tree.git
4109 S:      Maintained
4110 F:      drivers/media/usb/em28xx/
4111
4112 EMBEDDED LINUX
4113 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
4114 M:      Matt Mackall <mpm@selenic.com>
4115 M:      David Woodhouse <dwmw2@infradead.org>
4116 L:      linux-embedded@vger.kernel.org
4117 S:      Maintained
4118
4119 EMULEX/AVAGO LPFC FC/FCOE SCSI DRIVER
4120 M:      James Smart <james.smart@avagotech.com>
4121 M:      Dick Kennedy <dick.kennedy@avagotech.com>
4122 L:      linux-scsi@vger.kernel.org
4123 W:      http://www.avagotech.com
4124 S:      Supported
4125 F:      drivers/scsi/lpfc/
4126
4127 ENE CB710 FLASH CARD READER DRIVER
4128 M:      MichaÅ‚ MirosÅ‚aw <mirq-linux@rere.qmqm.pl>
4129 S:      Maintained
4130 F:      drivers/misc/cb710/
4131 F:      drivers/mmc/host/cb710-mmc.*
4132 F:      include/linux/cb710.h
4133
4134 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
4135 M:      Maxim Levitsky <maximlevitsky@gmail.com>
4136 S:      Maintained
4137 F:      drivers/media/rc/ene_ir.*
4138
4139 ENHANCED ERROR HANDLING (EEH)
4140 M:      Gavin Shan <shangw@linux.vnet.ibm.com>
4141 L:      linuxppc-dev@lists.ozlabs.org
4142 S:      Supported
4143 F:      Documentation/powerpc/eeh-pci-error-recovery.txt
4144 F:      arch/powerpc/kernel/eeh*.c
4145
4146 EPSON S1D13XXX FRAMEBUFFER DRIVER
4147 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
4148 S:      Maintained
4149 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
4150 F:      drivers/video/fbdev/s1d13xxxfb.c
4151 F:      include/video/s1d13xxxfb.h
4152
4153 ET131X NETWORK DRIVER
4154 M:      Mark Einon <mark.einon@gmail.com>
4155 S:      Odd Fixes
4156 F:      drivers/net/ethernet/agere/
4157
4158 ETHERNET BRIDGE
4159 M:      Stephen Hemminger <stephen@networkplumber.org>
4160 L:      bridge@lists.linux-foundation.org
4161 L:      netdev@vger.kernel.org
4162 W:      http://www.linuxfoundation.org/en/Net:Bridge
4163 S:      Maintained
4164 F:      include/linux/netfilter_bridge/
4165 F:      net/bridge/
4166
4167 ETHERNET PHY LIBRARY
4168 M:      Florian Fainelli <f.fainelli@gmail.com>
4169 L:      netdev@vger.kernel.org
4170 S:      Maintained
4171 F:      include/linux/phy.h
4172 F:      include/linux/phy_fixed.h
4173 F:      drivers/net/phy/
4174 F:      Documentation/networking/phy.txt
4175 F:      drivers/of/of_mdio.c
4176 F:      drivers/of/of_net.c
4177
4178 EXT2 FILE SYSTEM
4179 M:      Jan Kara <jack@suse.com>
4180 L:      linux-ext4@vger.kernel.org
4181 S:      Maintained
4182 F:      Documentation/filesystems/ext2.txt
4183 F:      fs/ext2/
4184 F:      include/linux/ext2*
4185
4186 EXT4 FILE SYSTEM
4187 M:      "Theodore Ts'o" <tytso@mit.edu>
4188 M:      Andreas Dilger <adilger.kernel@dilger.ca>
4189 L:      linux-ext4@vger.kernel.org
4190 W:      http://ext4.wiki.kernel.org
4191 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
4192 S:      Maintained
4193 F:      Documentation/filesystems/ext4.txt
4194 F:      fs/ext4/
4195
4196 Extended Verification Module (EVM)
4197 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
4198 L:      linux-ima-devel@lists.sourceforge.net
4199 L:      linux-security-module@vger.kernel.org
4200 S:      Supported
4201 F:      security/integrity/evm/
4202
4203 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
4204 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
4205 M:      Chanwoo Choi <cw00.choi@samsung.com>
4206 L:      linux-kernel@vger.kernel.org
4207 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
4208 S:      Maintained
4209 F:      drivers/extcon/
4210 F:      Documentation/extcon/
4211
4212 EXYNOS DP DRIVER
4213 M:      Jingoo Han <jingoohan1@gmail.com>
4214 L:      dri-devel@lists.freedesktop.org
4215 S:      Maintained
4216 F:      drivers/gpu/drm/exynos/exynos_dp*
4217
4218 EXYNOS MIPI DISPLAY DRIVERS
4219 M:      Inki Dae <inki.dae@samsung.com>
4220 M:      Donghwa Lee <dh09.lee@samsung.com>
4221 M:      Kyungmin Park <kyungmin.park@samsung.com>
4222 L:      linux-fbdev@vger.kernel.org
4223 S:      Maintained
4224 F:      drivers/video/fbdev/exynos/exynos_mipi*
4225 F:      include/video/exynos_mipi*
4226
4227 F71805F HARDWARE MONITORING DRIVER
4228 M:      Jean Delvare <jdelvare@suse.com>
4229 L:      lm-sensors@lm-sensors.org
4230 S:      Maintained
4231 F:      Documentation/hwmon/f71805f
4232 F:      drivers/hwmon/f71805f.c
4233
4234 FC0011 TUNER DRIVER
4235 M:      Michael Buesch <m@bues.ch>
4236 L:      linux-media@vger.kernel.org
4237 S:      Maintained
4238 F:      drivers/media/tuners/fc0011.h
4239 F:      drivers/media/tuners/fc0011.c
4240
4241 FC2580 MEDIA DRIVER
4242 M:      Antti Palosaari <crope@iki.fi>
4243 L:      linux-media@vger.kernel.org
4244 W:      http://linuxtv.org/
4245 W:      http://palosaari.fi/linux/
4246 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4247 T:      git git://linuxtv.org/anttip/media_tree.git
4248 S:      Maintained
4249 F:      drivers/media/tuners/fc2580*
4250
4251 FANOTIFY
4252 M:      Eric Paris <eparis@redhat.com>
4253 S:      Maintained
4254 F:      fs/notify/fanotify/
4255 F:      include/linux/fanotify.h
4256 F:      include/uapi/linux/fanotify.h
4257
4258 FARSYNC SYNCHRONOUS DRIVER
4259 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
4260 W:      http://www.farsite.co.uk/
4261 S:      Supported
4262 F:      drivers/net/wan/farsync.*
4263
4264 FAULT INJECTION SUPPORT
4265 M:      Akinobu Mita <akinobu.mita@gmail.com>
4266 S:      Supported
4267 F:      Documentation/fault-injection/
4268 F:      lib/fault-inject.c
4269
4270 FBTFT Framebuffer drivers
4271 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
4272 M:      Noralf Trønnes <noralf@tronnes.org>
4273 S:      Maintained
4274 F:      drivers/staging/fbtft/
4275
4276 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
4277 M:      Vasu Dev <vasu.dev@intel.com>
4278 L:      fcoe-devel@open-fcoe.org
4279 W:      www.Open-FCoE.org
4280 S:      Supported
4281 F:      drivers/scsi/libfc/
4282 F:      drivers/scsi/fcoe/
4283 F:      include/scsi/fc/
4284 F:      include/scsi/libfc.h
4285 F:      include/scsi/libfcoe.h
4286 F:      include/uapi/scsi/fc/
4287
4288 FILE LOCKING (flock() and fcntl()/lockf())
4289 M:      Jeff Layton <jlayton@poochiereds.net>
4290 M:      "J. Bruce Fields" <bfields@fieldses.org>
4291 L:      linux-fsdevel@vger.kernel.org
4292 S:      Maintained
4293 F:      include/linux/fcntl.h
4294 F:      include/linux/fs.h
4295 F:      include/uapi/linux/fcntl.h
4296 F:      include/uapi/linux/fs.h
4297 F:      fs/fcntl.c
4298 F:      fs/locks.c
4299
4300 FILESYSTEMS (VFS and infrastructure)
4301 M:      Alexander Viro <viro@zeniv.linux.org.uk>
4302 L:      linux-fsdevel@vger.kernel.org
4303 S:      Maintained
4304 F:      fs/*
4305
4306 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
4307 M:      Riku Voipio <riku.voipio@iki.fi>
4308 L:      lm-sensors@lm-sensors.org
4309 S:      Maintained
4310 F:      drivers/hwmon/f75375s.c
4311 F:      include/linux/f75375s.h
4312
4313 FIREWIRE AUDIO DRIVERS
4314 M:      Clemens Ladisch <clemens@ladisch.de>
4315 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4316 T:      git git://git.alsa-project.org/alsa-kernel.git
4317 S:      Maintained
4318 F:      sound/firewire/
4319
4320 FIREWIRE MEDIA DRIVERS (firedtv)
4321 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4322 L:      linux-media@vger.kernel.org
4323 L:      linux1394-devel@lists.sourceforge.net
4324 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
4325 S:      Maintained
4326 F:      drivers/media/firewire/
4327
4328 FIREWIRE SBP-2 TARGET
4329 M:      Chris Boot <bootc@bootc.net>
4330 L:      linux-scsi@vger.kernel.org
4331 L:      target-devel@vger.kernel.org
4332 L:      linux1394-devel@lists.sourceforge.net
4333 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
4334 S:      Maintained
4335 F:      drivers/target/sbp/
4336
4337 FIREWIRE SUBSYSTEM
4338 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4339 L:      linux1394-devel@lists.sourceforge.net
4340 W:      http://ieee1394.wiki.kernel.org/
4341 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
4342 S:      Maintained
4343 F:      drivers/firewire/
4344 F:      include/linux/firewire.h
4345 F:      include/uapi/linux/firewire*.h
4346 F:      tools/firewire/
4347
4348 FIRMWARE LOADER (request_firmware)
4349 M:      Ming Lei <ming.lei@canonical.com>
4350 L:      linux-kernel@vger.kernel.org
4351 S:      Maintained
4352 F:      Documentation/firmware_class/
4353 F:      drivers/base/firmware*.c
4354 F:      include/linux/firmware.h
4355
4356 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
4357 M:      Joshua Morris <josh.h.morris@us.ibm.com>
4358 M:      Philip Kelleher <pjk1939@linux.vnet.ibm.com>
4359 S:      Maintained
4360 F:      drivers/block/rsxx/
4361
4362 FLOPPY DRIVER
4363 M:      Jiri Kosina <jikos@kernel.org>
4364 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
4365 S:      Odd fixes
4366 F:      drivers/block/floppy.c
4367
4368 FMC SUBSYSTEM
4369 M:      Alessandro Rubini <rubini@gnudd.com>
4370 W:      http://www.ohwr.org/projects/fmc-bus
4371 S:      Supported
4372 F:      drivers/fmc/
4373 F:      include/linux/fmc*.h
4374 F:      include/linux/ipmi-fru.h
4375 K:      fmc_d.*register
4376
4377 FPU EMULATOR
4378 M:      Bill Metzenthen <billm@melbpc.org.au>
4379 W:      http://floatingpoint.sourceforge.net/emulator/index.html
4380 S:      Maintained
4381 F:      arch/x86/math-emu/
4382
4383 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
4384 L:      netdev@vger.kernel.org
4385 S:      Orphan
4386 F:      drivers/net/wan/dlci.c
4387 F:      drivers/net/wan/sdla.c
4388
4389 FRAMEBUFFER LAYER
4390 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
4391 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
4392 L:      linux-fbdev@vger.kernel.org
4393 W:      http://linux-fbdev.sourceforge.net/
4394 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
4395 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git
4396 S:      Maintained
4397 F:      Documentation/fb/
4398 F:      Documentation/devicetree/bindings/fb/
4399 F:      drivers/video/
4400 F:      include/video/
4401 F:      include/linux/fb.h
4402 F:      include/uapi/video/
4403 F:      include/uapi/linux/fb.h
4404
4405 FREESCALE DIU FRAMEBUFFER DRIVER
4406 M:      Timur Tabi <timur@tabi.org>
4407 L:      linux-fbdev@vger.kernel.org
4408 S:      Maintained
4409 F:      drivers/video/fbdev/fsl-diu-fb.*
4410
4411 FREESCALE DMA DRIVER
4412 M:      Li Yang <leoli@freescale.com>
4413 M:      Zhang Wei <zw@zh-kernel.org>
4414 L:      linuxppc-dev@lists.ozlabs.org
4415 S:      Maintained
4416 F:      drivers/dma/fsldma.*
4417
4418 FREESCALE I2C CPM DRIVER
4419 M:      Jochen Friedrich <jochen@scram.de>
4420 L:      linuxppc-dev@lists.ozlabs.org
4421 L:      linux-i2c@vger.kernel.org
4422 S:      Maintained
4423 F:      drivers/i2c/busses/i2c-cpm.c
4424
4425 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
4426 M:      Sascha Hauer <kernel@pengutronix.de>
4427 L:      linux-fbdev@vger.kernel.org
4428 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4429 S:      Maintained
4430 F:      include/linux/platform_data/video-imxfb.h
4431 F:      drivers/video/fbdev/imxfb.c
4432
4433 FREESCALE QUAD SPI DRIVER
4434 M:      Han Xu <han.xu@freescale.com>
4435 L:      linux-mtd@lists.infradead.org
4436 S:      Maintained
4437 F:      drivers/mtd/spi-nor/fsl-quadspi.c
4438
4439 FREESCALE SOC FS_ENET DRIVER
4440 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
4441 M:      Vitaly Bordug <vbordug@ru.mvista.com>
4442 L:      linuxppc-dev@lists.ozlabs.org
4443 L:      netdev@vger.kernel.org
4444 S:      Maintained
4445 F:      drivers/net/ethernet/freescale/fs_enet/
4446 F:      include/linux/fs_enet_pd.h
4447
4448 FREESCALE QUICC ENGINE LIBRARY
4449 L:      linuxppc-dev@lists.ozlabs.org
4450 S:      Orphan
4451 F:      arch/powerpc/sysdev/qe_lib/
4452 F:      arch/powerpc/include/asm/*qe.h
4453
4454 FREESCALE USB PERIPHERAL DRIVERS
4455 M:      Li Yang <leoli@freescale.com>
4456 L:      linux-usb@vger.kernel.org
4457 L:      linuxppc-dev@lists.ozlabs.org
4458 S:      Maintained
4459 F:      drivers/usb/gadget/udc/fsl*
4460
4461 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
4462 M:      Li Yang <leoli@freescale.com>
4463 L:      netdev@vger.kernel.org
4464 L:      linuxppc-dev@lists.ozlabs.org
4465 S:      Maintained
4466 F:      drivers/net/ethernet/freescale/ucc_geth*
4467
4468 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
4469 M:      Claudiu Manoil <claudiu.manoil@freescale.com>
4470 L:      netdev@vger.kernel.org
4471 S:      Maintained
4472 F:      drivers/net/ethernet/freescale/gianfar*
4473 X:      drivers/net/ethernet/freescale/gianfar_ptp.c
4474 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
4475
4476 FREESCALE QUICC ENGINE UCC UART DRIVER
4477 M:      Timur Tabi <timur@tabi.org>
4478 L:      linuxppc-dev@lists.ozlabs.org
4479 S:      Maintained
4480 F:      drivers/tty/serial/ucc_uart.c
4481
4482 FREESCALE SOC SOUND DRIVERS
4483 M:      Timur Tabi <timur@tabi.org>
4484 M:      Nicolin Chen <nicoleotsuka@gmail.com>
4485 M:      Xiubo Li <Xiubo.Lee@gmail.com>
4486 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4487 L:      linuxppc-dev@lists.ozlabs.org
4488 S:      Maintained
4489 F:      sound/soc/fsl/fsl*
4490 F:      sound/soc/fsl/imx*
4491 F:      sound/soc/fsl/mpc8610_hpcd.c
4492
4493 FREESCALE QORIQ MANAGEMENT COMPLEX DRIVER
4494 M:      "J. German Rivera" <German.Rivera@freescale.com>
4495 L:      linux-kernel@vger.kernel.org
4496 S:      Maintained
4497 F:      drivers/staging/fsl-mc/
4498
4499 FREEVXFS FILESYSTEM
4500 M:      Christoph Hellwig <hch@infradead.org>
4501 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
4502 S:      Maintained
4503 F:      fs/freevxfs/
4504
4505 FREEZER
4506 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4507 M:      Pavel Machek <pavel@ucw.cz>
4508 L:      linux-pm@vger.kernel.org
4509 S:      Supported
4510 F:      Documentation/power/freezing-of-tasks.txt
4511 F:      include/linux/freezer.h
4512 F:      kernel/freezer.c
4513
4514 FRONTSWAP API
4515 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4516 L:      linux-kernel@vger.kernel.org
4517 S:      Maintained
4518 F:      mm/frontswap.c
4519 F:      include/linux/frontswap.h
4520
4521 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
4522 M:      David Howells <dhowells@redhat.com>
4523 L:      linux-cachefs@redhat.com
4524 S:      Supported
4525 F:      Documentation/filesystems/caching/
4526 F:      fs/fscache/
4527 F:      include/linux/fscache*.h
4528
4529 F2FS FILE SYSTEM
4530 M:      Jaegeuk Kim <jaegeuk@kernel.org>
4531 M:      Changman Lee <cm224.lee@samsung.com>
4532 R:      Chao Yu <chao2.yu@samsung.com>
4533 L:      linux-f2fs-devel@lists.sourceforge.net
4534 W:      http://en.wikipedia.org/wiki/F2FS
4535 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
4536 S:      Maintained
4537 F:      Documentation/filesystems/f2fs.txt
4538 F:      Documentation/ABI/testing/sysfs-fs-f2fs
4539 F:      fs/f2fs/
4540 F:      include/linux/f2fs_fs.h
4541 F:      include/trace/events/f2fs.h
4542
4543 FUJITSU FR-V (FRV) PORT
4544 M:      David Howells <dhowells@redhat.com>
4545 S:      Maintained
4546 F:      arch/frv/
4547
4548 FUJITSU LAPTOP EXTRAS
4549 M:      Jonathan Woithe <jwoithe@just42.net>
4550 L:      platform-driver-x86@vger.kernel.org
4551 S:      Maintained
4552 F:      drivers/platform/x86/fujitsu-laptop.c
4553
4554 FUJITSU M-5MO LS CAMERA ISP DRIVER
4555 M:      Kyungmin Park <kyungmin.park@samsung.com>
4556 M:      Heungjun Kim <riverful.kim@samsung.com>
4557 L:      linux-media@vger.kernel.org
4558 S:      Maintained
4559 F:      drivers/media/i2c/m5mols/
4560 F:      include/media/m5mols.h
4561
4562 FUJITSU TABLET EXTRAS
4563 M:      Robert Gerlach <khnz@gmx.de>
4564 L:      platform-driver-x86@vger.kernel.org
4565 S:      Maintained
4566 F:      drivers/platform/x86/fujitsu-tablet.c
4567
4568 FUSE: FILESYSTEM IN USERSPACE
4569 M:      Miklos Szeredi <miklos@szeredi.hu>
4570 L:      fuse-devel@lists.sourceforge.net
4571 W:      http://fuse.sourceforge.net/
4572 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
4573 S:      Maintained
4574 F:      fs/fuse/
4575 F:      include/uapi/linux/fuse.h
4576 F:      Documentation/filesystems/fuse.txt
4577
4578 FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
4579 M:      Rik Faith <faith@cs.unc.edu>
4580 L:      linux-scsi@vger.kernel.org
4581 S:      Odd Fixes (e.g., new signatures)
4582 F:      drivers/scsi/fdomain.*
4583
4584 GCOV BASED KERNEL PROFILING
4585 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
4586 S:      Maintained
4587 F:      kernel/gcov/
4588 F:      Documentation/gcov.txt
4589
4590 GDT SCSI DISK ARRAY CONTROLLER DRIVER
4591 M:      Achim Leubner <achim_leubner@adaptec.com>
4592 L:      linux-scsi@vger.kernel.org
4593 W:      http://www.icp-vortex.com/
4594 S:      Supported
4595 F:      drivers/scsi/gdt*
4596
4597 GDB KERNEL DEBUGGING HELPER SCRIPTS
4598 M:      Jan Kiszka <jan.kiszka@siemens.com>
4599 S:      Supported
4600 F:      scripts/gdb/
4601
4602 GEMTEK FM RADIO RECEIVER DRIVER
4603 M:      Hans Verkuil <hverkuil@xs4all.nl>
4604 L:      linux-media@vger.kernel.org
4605 T:      git git://linuxtv.org/media_tree.git
4606 W:      http://linuxtv.org
4607 S:      Maintained
4608 F:      drivers/media/radio/radio-gemtek*
4609
4610 GENERIC GPIO I2C DRIVER
4611 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
4612 S:      Supported
4613 F:      drivers/i2c/busses/i2c-gpio.c
4614 F:      include/linux/i2c-gpio.h
4615
4616 GENERIC GPIO I2C MULTIPLEXER DRIVER
4617 M:      Peter Korsgaard <peter.korsgaard@barco.com>
4618 L:      linux-i2c@vger.kernel.org
4619 S:      Supported
4620 F:      drivers/i2c/muxes/i2c-mux-gpio.c
4621 F:      include/linux/i2c-mux-gpio.h
4622 F:      Documentation/i2c/muxes/i2c-mux-gpio
4623
4624 GENERIC HDLC (WAN) DRIVERS
4625 M:      Krzysztof Halasa <khc@pm.waw.pl>
4626 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
4627 S:      Maintained
4628 F:      drivers/net/wan/c101.c
4629 F:      drivers/net/wan/hd6457*
4630 F:      drivers/net/wan/hdlc*
4631 F:      drivers/net/wan/n2.c
4632 F:      drivers/net/wan/pc300too.c
4633 F:      drivers/net/wan/pci200syn.c
4634 F:      drivers/net/wan/wanxl*
4635
4636 GENERIC INCLUDE/ASM HEADER FILES
4637 M:      Arnd Bergmann <arnd@arndb.de>
4638 L:      linux-arch@vger.kernel.org
4639 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
4640 S:      Maintained
4641 F:      include/asm-generic/
4642 F:      include/uapi/asm-generic/
4643
4644 GENERIC PHY FRAMEWORK
4645 M:      Kishon Vijay Abraham I <kishon@ti.com>
4646 L:      linux-kernel@vger.kernel.org
4647 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
4648 S:      Supported
4649 F:      drivers/phy/
4650 F:      include/linux/phy/
4651
4652 GENERIC PM DOMAINS
4653 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4654 M:      Kevin Hilman <khilman@kernel.org>
4655 M:      Ulf Hansson <ulf.hansson@linaro.org>
4656 L:      linux-pm@vger.kernel.org
4657 S:      Supported
4658 F:      drivers/base/power/domain*.c
4659 F:      include/linux/pm_domain.h
4660
4661 GENERIC UIO DRIVER FOR PCI DEVICES
4662 M:      "Michael S. Tsirkin" <mst@redhat.com>
4663 L:      kvm@vger.kernel.org
4664 S:      Supported
4665 F:      drivers/uio/uio_pci_generic.c
4666
4667 GET_MAINTAINER SCRIPT
4668 M:      Joe Perches <joe@perches.com>
4669 S:      Maintained
4670 F:      scripts/get_maintainer.pl
4671
4672 GFS2 FILE SYSTEM
4673 M:      Steven Whitehouse <swhiteho@redhat.com>
4674 M:      Bob Peterson <rpeterso@redhat.com>
4675 L:      cluster-devel@redhat.com
4676 W:      http://sources.redhat.com/cluster/
4677 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
4678 S:      Supported
4679 F:      Documentation/filesystems/gfs2*.txt
4680 F:      fs/gfs2/
4681 F:      include/uapi/linux/gfs2_ondisk.h
4682
4683 GIGASET ISDN DRIVERS
4684 M:      Paul Bolle <pebolle@tiscali.nl>
4685 L:      gigaset307x-common@lists.sourceforge.net
4686 W:      http://gigaset307x.sourceforge.net/
4687 S:      Odd Fixes
4688 F:      Documentation/isdn/README.gigaset
4689 F:      drivers/isdn/gigaset/
4690 F:      include/uapi/linux/gigaset_dev.h
4691
4692 GO7007 MPEG CODEC
4693 M:      Hans Verkuil <hans.verkuil@cisco.com>
4694 L:      linux-media@vger.kernel.org
4695 S:      Maintained
4696 F:      drivers/media/usb/go7007/
4697
4698 GOODIX TOUCHSCREEN
4699 M:      Bastien Nocera <hadess@hadess.net>
4700 L:      linux-input@vger.kernel.org
4701 S:      Maintained
4702 F:      drivers/input/touchscreen/goodix.c
4703
4704 GPIO SUBSYSTEM
4705 M:      Linus Walleij <linus.walleij@linaro.org>
4706 M:      Alexandre Courbot <gnurou@gmail.com>
4707 L:      linux-gpio@vger.kernel.org
4708 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
4709 S:      Maintained
4710 F:      Documentation/gpio/
4711 F:      drivers/gpio/
4712 F:      include/linux/gpio/
4713 F:      include/linux/gpio.h
4714 F:      include/asm-generic/gpio.h
4715
4716 GRE DEMULTIPLEXER DRIVER
4717 M:      Dmitry Kozlov <xeb@mail.ru>
4718 L:      netdev@vger.kernel.org
4719 S:      Maintained
4720 F:      net/ipv4/gre_demux.c
4721 F:      net/ipv4/gre_offload.c
4722 F:      include/net/gre.h
4723
4724 GRETH 10/100/1G Ethernet MAC device driver
4725 M:      Kristoffer Glembo <kristoffer@gaisler.com>
4726 L:      netdev@vger.kernel.org
4727 S:      Maintained
4728 F:      drivers/net/ethernet/aeroflex/
4729
4730 GSPCA FINEPIX SUBDRIVER
4731 M:      Frank Zago <frank@zago.net>
4732 L:      linux-media@vger.kernel.org
4733 T:      git git://linuxtv.org/media_tree.git
4734 S:      Maintained
4735 F:      drivers/media/usb/gspca/finepix.c
4736
4737 GSPCA GL860 SUBDRIVER
4738 M:      Olivier Lorin <o.lorin@laposte.net>
4739 L:      linux-media@vger.kernel.org
4740 T:      git git://linuxtv.org/media_tree.git
4741 S:      Maintained
4742 F:      drivers/media/usb/gspca/gl860/
4743
4744 GSPCA M5602 SUBDRIVER
4745 M:      Erik Andren <erik.andren@gmail.com>
4746 L:      linux-media@vger.kernel.org
4747 T:      git git://linuxtv.org/media_tree.git
4748 S:      Maintained
4749 F:      drivers/media/usb/gspca/m5602/
4750
4751 GSPCA PAC207 SONIXB SUBDRIVER
4752 M:      Hans de Goede <hdegoede@redhat.com>
4753 L:      linux-media@vger.kernel.org
4754 T:      git git://linuxtv.org/media_tree.git
4755 S:      Maintained
4756 F:      drivers/media/usb/gspca/pac207.c
4757
4758 GSPCA SN9C20X SUBDRIVER
4759 M:      Brian Johnson <brijohn@gmail.com>
4760 L:      linux-media@vger.kernel.org
4761 T:      git git://linuxtv.org/media_tree.git
4762 S:      Maintained
4763 F:      drivers/media/usb/gspca/sn9c20x.c
4764
4765 GSPCA T613 SUBDRIVER
4766 M:      Leandro Costantino <lcostantino@gmail.com>
4767 L:      linux-media@vger.kernel.org
4768 T:      git git://linuxtv.org/media_tree.git
4769 S:      Maintained
4770 F:      drivers/media/usb/gspca/t613.c
4771
4772 GSPCA USB WEBCAM DRIVER
4773 M:      Hans de Goede <hdegoede@redhat.com>
4774 L:      linux-media@vger.kernel.org
4775 T:      git git://linuxtv.org/media_tree.git
4776 S:      Maintained
4777 F:      drivers/media/usb/gspca/
4778
4779 GUID PARTITION TABLE (GPT)
4780 M:      Davidlohr Bueso <dave@stgolabs.net>
4781 L:      linux-efi@vger.kernel.org
4782 S:      Maintained
4783 F:      block/partitions/efi.*
4784
4785 STK1160 USB VIDEO CAPTURE DRIVER
4786 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
4787 L:      linux-media@vger.kernel.org
4788 T:      git git://linuxtv.org/media_tree.git
4789 S:      Maintained
4790 F:      drivers/media/usb/stk1160/
4791
4792 H8/300 ARCHITECTURE
4793 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
4794 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
4795 W:      http://uclinux-h8.sourceforge.jp
4796 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
4797 S:      Maintained
4798 F:      arch/h8300/
4799 F:      drivers/clocksource/h8300_*.c
4800 F:      drivers/clk/h8300/
4801 F:      drivers/irqchip/irq-renesas-h8*.c
4802
4803 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
4804 M:      Frank Seidel <frank@f-seidel.de>
4805 L:      platform-driver-x86@vger.kernel.org
4806 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
4807 S:      Maintained
4808 F:      drivers/platform/x86/hdaps.c
4809
4810 HDPVR USB VIDEO ENCODER DRIVER
4811 M:      Hans Verkuil <hverkuil@xs4all.nl>
4812 L:      linux-media@vger.kernel.org
4813 T:      git git://linuxtv.org/media_tree.git
4814 W:      http://linuxtv.org
4815 S:      Odd Fixes
4816 F:      drivers/media/usb/hdpvr/
4817
4818 HWPOISON MEMORY FAILURE HANDLING
4819 M:      Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
4820 L:      linux-mm@kvack.org
4821 S:      Maintained
4822 F:      mm/memory-failure.c
4823 F:      mm/hwpoison-inject.c
4824
4825 HYPERVISOR VIRTUAL CONSOLE DRIVER
4826 L:      linuxppc-dev@lists.ozlabs.org
4827 S:      Odd Fixes
4828 F:      drivers/tty/hvc/
4829
4830 HACKRF MEDIA DRIVER
4831 M:      Antti Palosaari <crope@iki.fi>
4832 L:      linux-media@vger.kernel.org
4833 W:      http://linuxtv.org/
4834 W:      http://palosaari.fi/linux/
4835 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4836 T:      git git://linuxtv.org/anttip/media_tree.git
4837 S:      Maintained
4838 F:      drivers/media/usb/hackrf/
4839
4840 HARDWARE MONITORING
4841 M:      Jean Delvare <jdelvare@suse.com>
4842 M:      Guenter Roeck <linux@roeck-us.net>
4843 L:      lm-sensors@lm-sensors.org
4844 W:      http://www.lm-sensors.org/
4845 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/
4846 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
4847 S:      Maintained
4848 F:      Documentation/hwmon/
4849 F:      drivers/hwmon/
4850 F:      include/linux/hwmon*.h
4851
4852 HARDWARE RANDOM NUMBER GENERATOR CORE
4853 M:      Matt Mackall <mpm@selenic.com>
4854 M:      Herbert Xu <herbert@gondor.apana.org.au>
4855 L:      linux-crypto@vger.kernel.org
4856 S:      Odd fixes
4857 F:      Documentation/hw_random.txt
4858 F:      drivers/char/hw_random/
4859 F:      include/linux/hw_random.h
4860
4861 HARDWARE SPINLOCK CORE
4862 M:      Ohad Ben-Cohen <ohad@wizery.com>
4863 S:      Maintained
4864 F:      Documentation/hwspinlock.txt
4865 F:      drivers/hwspinlock/hwspinlock_*
4866 F:      include/linux/hwspinlock.h
4867
4868 HARMONY SOUND DRIVER
4869 L:      linux-parisc@vger.kernel.org
4870 S:      Maintained
4871 F:      sound/parisc/harmony.*
4872
4873 HD29L2 MEDIA DRIVER
4874 M:      Antti Palosaari <crope@iki.fi>
4875 L:      linux-media@vger.kernel.org
4876 W:      http://linuxtv.org/
4877 W:      http://palosaari.fi/linux/
4878 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4879 T:      git git://linuxtv.org/anttip/media_tree.git
4880 S:      Maintained
4881 F:      drivers/media/dvb-frontends/hd29l2*
4882
4883 HEWLETT-PACKARD SMART2 RAID DRIVER
4884 L:      iss_storagedev@hp.com
4885 S:      Orphan
4886 F:      Documentation/blockdev/cpqarray.txt
4887 F:      drivers/block/cpqarray.*
4888
4889 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
4890 M:      Don Brace <don.brace@pmcs.com>
4891 L:      iss_storagedev@hp.com
4892 L:      storagedev@pmcs.com
4893 L:      linux-scsi@vger.kernel.org
4894 S:      Supported
4895 F:      Documentation/scsi/hpsa.txt
4896 F:      drivers/scsi/hpsa*.[ch]
4897 F:      include/linux/cciss*.h
4898 F:      include/uapi/linux/cciss*.h
4899
4900 HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
4901 M:      Don Brace <don.brace@pmcs.com>
4902 L:      iss_storagedev@hp.com
4903 L:      storagedev@pmcs.com
4904 L:      linux-scsi@vger.kernel.org
4905 S:      Supported
4906 F:      Documentation/blockdev/cciss.txt
4907 F:      drivers/block/cciss*
4908 F:      include/linux/cciss_ioctl.h
4909 F:      include/uapi/linux/cciss_ioctl.h
4910
4911 HFS FILESYSTEM
4912 L:      linux-fsdevel@vger.kernel.org
4913 S:      Orphan
4914 F:      Documentation/filesystems/hfs.txt
4915 F:      fs/hfs/
4916
4917 HFSPLUS FILESYSTEM
4918 L:      linux-fsdevel@vger.kernel.org
4919 S:      Orphan
4920 F:      Documentation/filesystems/hfsplus.txt
4921 F:      fs/hfsplus/
4922
4923 HGA FRAMEBUFFER DRIVER
4924 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
4925 L:      linux-nvidia@lists.surfsouth.com
4926 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
4927 S:      Maintained
4928 F:      drivers/video/fbdev/hgafb.c
4929
4930 HIBERNATION (aka Software Suspend, aka swsusp)
4931 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4932 M:      Pavel Machek <pavel@ucw.cz>
4933 L:      linux-pm@vger.kernel.org
4934 S:      Supported
4935 F:      arch/x86/power/
4936 F:      drivers/base/power/
4937 F:      kernel/power/
4938 F:      include/linux/suspend.h
4939 F:      include/linux/freezer.h
4940 F:      include/linux/pm.h
4941 F:      arch/*/include/asm/suspend*.h
4942
4943 HID CORE LAYER
4944 M:      Jiri Kosina <jikos@kernel.org>
4945 L:      linux-input@vger.kernel.org
4946 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
4947 S:      Maintained
4948 F:      drivers/hid/
4949 F:      include/linux/hid*
4950 F:      include/uapi/linux/hid*
4951
4952 HID SENSOR HUB DRIVERS
4953 M:      Jiri Kosina <jikos@kernel.org>
4954 M:      Jonathan Cameron <jic23@kernel.org>
4955 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
4956 L:      linux-input@vger.kernel.org
4957 L:      linux-iio@vger.kernel.org
4958 S:      Maintained
4959 F:      Documentation/hid/hid-sensor*
4960 F:      drivers/hid/hid-sensor-*
4961 F:      drivers/iio/*/hid-*
4962 F:      include/linux/hid-sensor-*
4963
4964 HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
4965 M:      Thomas Gleixner <tglx@linutronix.de>
4966 L:      linux-kernel@vger.kernel.org
4967 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4968 S:      Maintained
4969 F:      Documentation/timers/
4970 F:      kernel/time/hrtimer.c
4971 F:      kernel/time/clockevents.c
4972 F:      kernel/time/tick*.*
4973 F:      kernel/time/timer_*.c
4974 F:      include/linux/clockchips.h
4975 F:      include/linux/hrtimer.h
4976
4977 HIGH-SPEED SCC DRIVER FOR AX.25
4978 L:      linux-hams@vger.kernel.org
4979 S:      Orphan
4980 F:      drivers/net/hamradio/dmascc.c
4981 F:      drivers/net/hamradio/scc.c
4982
4983 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
4984 M:      HighPoint Linux Team <linux@highpoint-tech.com>
4985 W:      http://www.highpoint-tech.com
4986 S:      Supported
4987 F:      Documentation/scsi/hptiop.txt
4988 F:      drivers/scsi/hptiop.c
4989
4990 HIPPI
4991 M:      Jes Sorensen <jes@trained-monkey.org>
4992 L:      linux-hippi@sunsite.dk
4993 S:      Maintained
4994 F:      include/linux/hippidevice.h
4995 F:      include/uapi/linux/if_hippi.h
4996 F:      net/802/hippi.c
4997 F:      drivers/net/hippi/
4998
4999 HOST AP DRIVER
5000 M:      Jouni Malinen <j@w1.fi>
5001 L:      hostap@shmoo.com (subscribers-only)
5002 L:      linux-wireless@vger.kernel.org
5003 W:      http://hostap.epitest.fi/
5004 S:      Maintained
5005 F:      drivers/net/wireless/hostap/
5006
5007 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
5008 L:      platform-driver-x86@vger.kernel.org
5009 S:      Orphan
5010 F:      drivers/platform/x86/tc1100-wmi.c
5011
5012 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
5013 M:      Jaroslav Kysela <perex@perex.cz>
5014 S:      Maintained
5015 F:      drivers/net/ethernet/hp/hp100.*
5016
5017 HPET:   High Precision Event Timers driver
5018 M:      Clemens Ladisch <clemens@ladisch.de>
5019 S:      Maintained
5020 F:      Documentation/timers/hpet.txt
5021 F:      drivers/char/hpet.c
5022 F:      include/linux/hpet.h
5023 F:      include/uapi/linux/hpet.h
5024
5025 HPET:   x86
5026 S:      Orphan
5027 F:      arch/x86/kernel/hpet.c
5028 F:      arch/x86/include/asm/hpet.h
5029
5030 HPFS FILESYSTEM
5031 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
5032 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
5033 S:      Maintained
5034 F:      fs/hpfs/
5035
5036 HSI SUBSYSTEM
5037 M:      Sebastian Reichel <sre@kernel.org>
5038 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
5039 S:      Maintained
5040 F:      Documentation/ABI/testing/sysfs-bus-hsi
5041 F:      Documentation/hsi.txt
5042 F:      drivers/hsi/
5043 F:      include/linux/hsi/
5044 F:      include/uapi/linux/hsi/
5045
5046 HSO 3G MODEM DRIVER
5047 M:      Jan Dumon <j.dumon@option.com>
5048 W:      http://www.pharscape.org
5049 S:      Maintained
5050 F:      drivers/net/usb/hso.c
5051
5052 HSR NETWORK PROTOCOL
5053 M:      Arvid Brodin <arvid.brodin@alten.se>
5054 L:      netdev@vger.kernel.org
5055 S:      Maintained
5056 F:      net/hsr/
5057
5058 HTCPEN TOUCHSCREEN DRIVER
5059 M:      Pau Oliva Fora <pof@eslack.org>
5060 L:      linux-input@vger.kernel.org
5061 S:      Maintained
5062 F:      drivers/input/touchscreen/htcpen.c
5063
5064 HUGETLB FILESYSTEM
5065 M:      Nadia Yvette Chambers <nyc@holomorphy.com>
5066 S:      Maintained
5067 F:      fs/hugetlbfs/
5068
5069 Hyper-V CORE AND DRIVERS
5070 M:      "K. Y. Srinivasan" <kys@microsoft.com>
5071 M:      Haiyang Zhang <haiyangz@microsoft.com>
5072 L:      devel@linuxdriverproject.org
5073 S:      Maintained
5074 F:      arch/x86/include/asm/mshyperv.h
5075 F:      arch/x86/include/uapi/asm/hyperv.h
5076 F:      arch/x86/kernel/cpu/mshyperv.c
5077 F:      drivers/hid/hid-hyperv.c
5078 F:      drivers/hv/
5079 F:      drivers/input/serio/hyperv-keyboard.c
5080 F:      drivers/net/hyperv/
5081 F:      drivers/scsi/storvsc_drv.c
5082 F:      drivers/video/fbdev/hyperv_fb.c
5083 F:      include/linux/hyperv.h
5084 F:      tools/hv/
5085 F:      Documentation/ABI/stable/sysfs-bus-vmbus
5086
5087 I2C OVER PARALLEL PORT
5088 M:      Jean Delvare <jdelvare@suse.com>
5089 L:      linux-i2c@vger.kernel.org
5090 S:      Maintained
5091 F:      Documentation/i2c/busses/i2c-parport
5092 F:      Documentation/i2c/busses/i2c-parport-light
5093 F:      drivers/i2c/busses/i2c-parport.c
5094 F:      drivers/i2c/busses/i2c-parport-light.c
5095
5096 I2C/SMBUS CONTROLLER DRIVERS FOR PC
5097 M:      Jean Delvare <jdelvare@suse.com>
5098 L:      linux-i2c@vger.kernel.org
5099 S:      Maintained
5100 F:      Documentation/i2c/busses/i2c-ali1535
5101 F:      Documentation/i2c/busses/i2c-ali1563
5102 F:      Documentation/i2c/busses/i2c-ali15x3
5103 F:      Documentation/i2c/busses/i2c-amd756
5104 F:      Documentation/i2c/busses/i2c-amd8111
5105 F:      Documentation/i2c/busses/i2c-i801
5106 F:      Documentation/i2c/busses/i2c-nforce2
5107 F:      Documentation/i2c/busses/i2c-piix4
5108 F:      Documentation/i2c/busses/i2c-sis5595
5109 F:      Documentation/i2c/busses/i2c-sis630
5110 F:      Documentation/i2c/busses/i2c-sis96x
5111 F:      Documentation/i2c/busses/i2c-via
5112 F:      Documentation/i2c/busses/i2c-viapro
5113 F:      drivers/i2c/busses/i2c-ali1535.c
5114 F:      drivers/i2c/busses/i2c-ali1563.c
5115 F:      drivers/i2c/busses/i2c-ali15x3.c
5116 F:      drivers/i2c/busses/i2c-amd756.c
5117 F:      drivers/i2c/busses/i2c-amd756-s4882.c
5118 F:      drivers/i2c/busses/i2c-amd8111.c
5119 F:      drivers/i2c/busses/i2c-i801.c
5120 F:      drivers/i2c/busses/i2c-isch.c
5121 F:      drivers/i2c/busses/i2c-nforce2.c
5122 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
5123 F:      drivers/i2c/busses/i2c-piix4.c
5124 F:      drivers/i2c/busses/i2c-sis5595.c
5125 F:      drivers/i2c/busses/i2c-sis630.c
5126 F:      drivers/i2c/busses/i2c-sis96x.c
5127 F:      drivers/i2c/busses/i2c-via.c
5128 F:      drivers/i2c/busses/i2c-viapro.c
5129
5130 I2C/SMBUS ISMT DRIVER
5131 M:      Seth Heasley <seth.heasley@intel.com>
5132 M:      Neil Horman <nhorman@tuxdriver.com>
5133 L:      linux-i2c@vger.kernel.org
5134 F:      drivers/i2c/busses/i2c-ismt.c
5135 F:      Documentation/i2c/busses/i2c-ismt
5136
5137 I2C/SMBUS STUB DRIVER
5138 M:      Jean Delvare <jdelvare@suse.com>
5139 L:      linux-i2c@vger.kernel.org
5140 S:      Maintained
5141 F:      drivers/i2c/i2c-stub.c
5142
5143 I2C SUBSYSTEM
5144 M:      Wolfram Sang <wsa@the-dreams.de>
5145 L:      linux-i2c@vger.kernel.org
5146 W:      https://i2c.wiki.kernel.org/
5147 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
5148 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
5149 S:      Maintained
5150 F:      Documentation/devicetree/bindings/i2c/
5151 F:      Documentation/i2c/
5152 F:      drivers/i2c/
5153 F:      include/linux/i2c.h
5154 F:      include/linux/i2c-*.h
5155 F:      include/uapi/linux/i2c.h
5156 F:      include/uapi/linux/i2c-*.h
5157
5158 I2C ACPI SUPPORT
5159 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
5160 L:      linux-i2c@vger.kernel.org
5161 L:      linux-acpi@vger.kernel.org
5162 S:      Maintained
5163
5164 I2C-TAOS-EVM DRIVER
5165 M:      Jean Delvare <jdelvare@suse.com>
5166 L:      linux-i2c@vger.kernel.org
5167 S:      Maintained
5168 F:      Documentation/i2c/busses/i2c-taos-evm
5169 F:      drivers/i2c/busses/i2c-taos-evm.c
5170
5171 I2C-TINY-USB DRIVER
5172 M:      Till Harbaum <till@harbaum.org>
5173 L:      linux-i2c@vger.kernel.org
5174 W:      http://www.harbaum.org/till/i2c_tiny_usb
5175 S:      Maintained
5176 F:      drivers/i2c/busses/i2c-tiny-usb.c
5177
5178 i386 BOOT CODE
5179 M:      "H. Peter Anvin" <hpa@zytor.com>
5180 S:      Maintained
5181 F:      arch/x86/boot/
5182
5183 i386 SETUP CODE / CPU ERRATA WORKAROUNDS
5184 M:      "H. Peter Anvin" <hpa@zytor.com>
5185 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
5186 S:      Maintained
5187
5188 IA64 (Itanium) PLATFORM
5189 M:      Tony Luck <tony.luck@intel.com>
5190 M:      Fenghua Yu <fenghua.yu@intel.com>
5191 L:      linux-ia64@vger.kernel.org
5192 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
5193 S:      Maintained
5194 F:      arch/ia64/
5195
5196 IBM Power VMX Cryptographic instructions
5197 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5198 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5199 L:      linux-crypto@vger.kernel.org
5200 S:      Supported
5201 F:      drivers/crypto/vmx/Makefile
5202 F:      drivers/crypto/vmx/Kconfig
5203 F:      drivers/crypto/vmx/vmx.c
5204 F:      drivers/crypto/vmx/aes*
5205 F:      drivers/crypto/vmx/ghash*
5206 F:      drivers/crypto/vmx/ppc-xlate.pl
5207
5208 IBM Power in-Nest Crypto Acceleration
5209 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5210 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5211 L:      linux-crypto@vger.kernel.org
5212 S:      Supported
5213 F:      drivers/crypto/nx/Makefile
5214 F:      drivers/crypto/nx/Kconfig
5215 F:      drivers/crypto/nx/nx-aes*
5216 F:      drivers/crypto/nx/nx-sha*
5217 F:      drivers/crypto/nx/nx.*
5218 F:      drivers/crypto/nx/nx_csbcpb.h
5219 F:      drivers/crypto/nx/nx_debugfs.h
5220
5221 IBM Power 842 compression accelerator
5222 M:      Dan Streetman <ddstreet@ieee.org>
5223 S:      Supported
5224 F:      drivers/crypto/nx/Makefile
5225 F:      drivers/crypto/nx/Kconfig
5226 F:      drivers/crypto/nx/nx-842*
5227 F:      include/linux/sw842.h
5228 F:      crypto/842.c
5229 F:      lib/842/
5230
5231 IBM Power Linux RAID adapter
5232 M:      Brian King <brking@us.ibm.com>
5233 S:      Supported
5234 F:      drivers/scsi/ipr.*
5235
5236 IBM Power Virtual Ethernet Device Driver
5237 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
5238 L:      netdev@vger.kernel.org
5239 S:      Supported
5240 F:      drivers/net/ethernet/ibm/ibmveth.*
5241
5242 IBM Power Virtual SCSI Device Drivers
5243 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5244 L:      linux-scsi@vger.kernel.org
5245 S:      Supported
5246 F:      drivers/scsi/ibmvscsi/ibmvscsi*
5247 F:      drivers/scsi/ibmvscsi/viosrp.h
5248
5249 IBM Power Virtual FC Device Drivers
5250 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5251 L:      linux-scsi@vger.kernel.org
5252 S:      Supported
5253 F:      drivers/scsi/ibmvscsi/ibmvfc*
5254
5255 IBM ServeRAID RAID DRIVER
5256 S:      Orphan
5257 F:      drivers/scsi/ips.*
5258
5259 ICH LPC AND GPIO DRIVER
5260 M:      Peter Tyser <ptyser@xes-inc.com>
5261 S:      Maintained
5262 F:      drivers/mfd/lpc_ich.c
5263 F:      drivers/gpio/gpio-ich.c
5264
5265 IDE SUBSYSTEM
5266 M:      "David S. Miller" <davem@davemloft.net>
5267 L:      linux-ide@vger.kernel.org
5268 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
5269 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
5270 S:      Maintained
5271 F:      Documentation/ide/
5272 F:      drivers/ide/
5273 F:      include/linux/ide.h
5274
5275 IDEAPAD LAPTOP EXTRAS DRIVER
5276 M:      Ike Panhc <ike.pan@canonical.com>
5277 L:      platform-driver-x86@vger.kernel.org
5278 W:      http://launchpad.net/ideapad-laptop
5279 S:      Maintained
5280 F:      drivers/platform/x86/ideapad-laptop.c
5281
5282 IDEAPAD LAPTOP SLIDEBAR DRIVER
5283 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
5284 L:      linux-input@vger.kernel.org
5285 W:      https://github.com/o2genum/ideapad-slidebar
5286 S:      Maintained
5287 F:      drivers/input/misc/ideapad_slidebar.c
5288
5289 IDE/ATAPI DRIVERS
5290 M:      Borislav Petkov <bp@alien8.de>
5291 L:      linux-ide@vger.kernel.org
5292 S:      Maintained
5293 F:      Documentation/cdrom/ide-cd
5294 F:      drivers/ide/ide-cd*
5295
5296 IDLE-I7300
5297 M:      Andy Henroid <andrew.d.henroid@intel.com>
5298 L:      linux-pm@vger.kernel.org
5299 S:      Supported
5300 F:      drivers/idle/i7300_idle.c
5301
5302 IEEE 802.15.4 SUBSYSTEM
5303 M:      Alexander Aring <alex.aring@gmail.com>
5304 L:      linux-wpan@vger.kernel.org
5305 W:      https://github.com/linux-wpan
5306 T:      git git://github.com/linux-wpan/linux-wpan-next.git
5307 S:      Maintained
5308 F:      net/ieee802154/
5309 F:      net/mac802154/
5310 F:      drivers/net/ieee802154/
5311 F:      include/linux/nl802154.h
5312 F:      include/linux/ieee802154.h
5313 F:      include/net/nl802154.h
5314 F:      include/net/mac802154.h
5315 F:      include/net/af_ieee802154.h
5316 F:      include/net/cfg802154.h
5317 F:      include/net/ieee802154_netdev.h
5318 F:      Documentation/networking/ieee802154.txt
5319
5320 IGORPLUG-USB IR RECEIVER
5321 M:      Sean Young <sean@mess.org>
5322 L:      linux-media@vger.kernel.org
5323 S:      Maintained
5324 F:      drivers/media/rc/igorplugusb.c
5325
5326 IGUANAWORKS USB IR TRANSCEIVER
5327 M:      Sean Young <sean@mess.org>
5328 L:      linux-media@vger.kernel.org
5329 S:      Maintained
5330 F:      drivers/media/rc/iguanair.c
5331
5332 IIO SUBSYSTEM AND DRIVERS
5333 M:      Jonathan Cameron <jic23@kernel.org>
5334 R:      Hartmut Knaack <knaack.h@gmx.de>
5335 R:      Lars-Peter Clausen <lars@metafoo.de>
5336 R:      Peter Meerwald <pmeerw@pmeerw.net>
5337 L:      linux-iio@vger.kernel.org
5338 S:      Maintained
5339 F:      drivers/iio/
5340 F:      drivers/staging/iio/
5341 F:      include/linux/iio/
5342 F:      tools/iio/
5343
5344 IKANOS/ADI EAGLE ADSL USB DRIVER
5345 M:      Matthieu Castet <castet.matthieu@free.fr>
5346 M:      Stanislaw Gruszka <stf_xl@wp.pl>
5347 S:      Maintained
5348 F:      drivers/usb/atm/ueagle-atm.c
5349
5350 INA209 HARDWARE MONITOR DRIVER
5351 M:      Guenter Roeck <linux@roeck-us.net>
5352 L:      lm-sensors@lm-sensors.org
5353 S:      Maintained
5354 F:      Documentation/hwmon/ina209
5355 F:      Documentation/devicetree/bindings/i2c/ina209.txt
5356 F:      drivers/hwmon/ina209.c
5357
5358 INA2XX HARDWARE MONITOR DRIVER
5359 M:      Guenter Roeck <linux@roeck-us.net>
5360 L:      lm-sensors@lm-sensors.org
5361 S:      Maintained
5362 F:      Documentation/hwmon/ina2xx
5363 F:      drivers/hwmon/ina2xx.c
5364 F:      include/linux/platform_data/ina2xx.h
5365
5366 INDUSTRY PACK SUBSYSTEM (IPACK)
5367 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
5368 M:      Jens Taprogge <jens.taprogge@taprogge.org>
5369 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5370 L:      industrypack-devel@lists.sourceforge.net
5371 W:      http://industrypack.sourceforge.net
5372 S:      Maintained
5373 F:      drivers/ipack/
5374
5375 INGENIC JZ4780 DMA Driver
5376 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
5377 S:      Maintained
5378 F:      drivers/dma/dma-jz4780.c
5379
5380 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
5381 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
5382 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
5383 L:      linux-ima-devel@lists.sourceforge.net
5384 L:      linux-ima-user@lists.sourceforge.net
5385 L:      linux-security-module@vger.kernel.org
5386 S:      Supported
5387 F:      security/integrity/ima/
5388
5389 IMGTEC IR DECODER DRIVER
5390 M:      James Hogan <james.hogan@imgtec.com>
5391 S:      Maintained
5392 F:      drivers/media/rc/img-ir/
5393
5394 IMS TWINTURBO FRAMEBUFFER DRIVER
5395 L:      linux-fbdev@vger.kernel.org
5396 S:      Orphan
5397 F:      drivers/video/fbdev/imsttfb.c
5398
5399 INFINIBAND SUBSYSTEM
5400 M:      Doug Ledford <dledford@redhat.com>
5401 M:      Sean Hefty <sean.hefty@intel.com>
5402 M:      Hal Rosenstock <hal.rosenstock@gmail.com>
5403 L:      linux-rdma@vger.kernel.org
5404 W:      http://www.openfabrics.org/
5405 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5406 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git
5407 S:      Supported
5408 F:      Documentation/infiniband/
5409 F:      drivers/infiniband/
5410 F:      drivers/staging/rdma/
5411 F:      include/uapi/linux/if_infiniband.h
5412 F:      include/uapi/rdma/
5413 F:      include/rdma/
5414
5415 INOTIFY
5416 M:      John McCutchan <john@johnmccutchan.com>
5417 M:      Robert Love <rlove@rlove.org>
5418 M:      Eric Paris <eparis@parisplace.org>
5419 S:      Maintained
5420 F:      Documentation/filesystems/inotify.txt
5421 F:      fs/notify/inotify/
5422 F:      include/linux/inotify.h
5423 F:      include/uapi/linux/inotify.h
5424
5425 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
5426 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
5427 L:      linux-input@vger.kernel.org
5428 Q:      http://patchwork.kernel.org/project/linux-input/list/
5429 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
5430 S:      Maintained
5431 F:      drivers/input/
5432 F:      include/linux/input.h
5433 F:      include/uapi/linux/input.h
5434 F:      include/linux/input/
5435
5436 INPUT MULTITOUCH (MT) PROTOCOL
5437 M:      Henrik Rydberg <rydberg@bitmath.org>
5438 L:      linux-input@vger.kernel.org
5439 S:      Odd fixes
5440 F:      Documentation/input/multi-touch-protocol.txt
5441 F:      drivers/input/input-mt.c
5442 K:      \b(ABS|SYN)_MT_
5443
5444 INTEL ASoC BDW/HSW DRIVERS
5445 M:      Jie Yang <yang.jie@linux.intel.com>
5446 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5447 S:      Supported
5448 F:      sound/soc/intel/common/sst-dsp*
5449 F:      sound/soc/intel/common/sst-firmware.c
5450 F:      sound/soc/intel/boards/broadwell.c
5451 F:      sound/soc/intel/haswell/
5452
5453 INTEL C600 SERIES SAS CONTROLLER DRIVER
5454 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
5455 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
5456 L:      linux-scsi@vger.kernel.org
5457 T:      git git://git.code.sf.net/p/intel-sas/isci
5458 S:      Supported
5459 F:      drivers/scsi/isci/
5460
5461 INTEL IDLE DRIVER
5462 M:      Len Brown <lenb@kernel.org>
5463 L:      linux-pm@vger.kernel.org
5464 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
5465 S:      Supported
5466 F:      drivers/idle/intel_idle.c
5467
5468 INTEL PSTATE DRIVER
5469 M:      Kristen Carlson Accardi <kristen@linux.intel.com>
5470 L:      linux-pm@vger.kernel.org
5471 S:      Supported
5472 F:      drivers/cpufreq/intel_pstate.c
5473
5474 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
5475 M:      Maik Broemme <mbroemme@plusserver.de>
5476 L:      linux-fbdev@vger.kernel.org
5477 S:      Maintained
5478 F:      Documentation/fb/intelfb.txt
5479 F:      drivers/video/fbdev/intelfb/
5480
5481 INTEL 810/815 FRAMEBUFFER DRIVER
5482 M:      Antonino Daplas <adaplas@gmail.com>
5483 L:      linux-fbdev@vger.kernel.org
5484 S:      Maintained
5485 F:      drivers/video/fbdev/i810/
5486
5487 INTEL MENLOW THERMAL DRIVER
5488 M:      Sujith Thomas <sujith.thomas@intel.com>
5489 L:      platform-driver-x86@vger.kernel.org
5490 W:      https://01.org/linux-acpi
5491 S:      Supported
5492 F:      drivers/platform/x86/intel_menlow.c
5493
5494 INTEL I/OAT DMA DRIVER
5495 M:      Dave Jiang <dave.jiang@intel.com>
5496 R:      Dan Williams <dan.j.williams@intel.com>
5497 L:      dmaengine@vger.kernel.org
5498 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5499 S:      Supported
5500 F:      drivers/dma/ioat*
5501
5502 INTEL IOMMU (VT-d)
5503 M:      David Woodhouse <dwmw2@infradead.org>
5504 L:      iommu@lists.linux-foundation.org
5505 T:      git git://git.infradead.org/iommu-2.6.git
5506 S:      Supported
5507 F:      drivers/iommu/intel-iommu.c
5508 F:      include/linux/intel-iommu.h
5509
5510 INTEL IOP-ADMA DMA DRIVER
5511 R:      Dan Williams <dan.j.williams@intel.com>
5512 S:      Odd fixes
5513 F:      drivers/dma/iop-adma.c
5514
5515 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
5516 M:      Krzysztof Halasa <khalasa@piap.pl>
5517 S:      Maintained
5518 F:      arch/arm/mach-ixp4xx/include/mach/qmgr.h
5519 F:      arch/arm/mach-ixp4xx/include/mach/npe.h
5520 F:      arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
5521 F:      arch/arm/mach-ixp4xx/ixp4xx_npe.c
5522 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
5523 F:      drivers/net/wan/ixp4xx_hss.c
5524
5525 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
5526 M:      Deepak Saxena <dsaxena@plexity.net>
5527 S:      Maintained
5528 F:      drivers/char/hw_random/ixp4xx-rng.c
5529
5530 INTEL ETHERNET DRIVERS
5531 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
5532 R:      Jesse Brandeburg <jesse.brandeburg@intel.com>
5533 R:      Shannon Nelson <shannon.nelson@intel.com>
5534 R:      Carolyn Wyborny <carolyn.wyborny@intel.com>
5535 R:      Don Skidmore <donald.c.skidmore@intel.com>
5536 R:      Matthew Vick <matthew.vick@intel.com>
5537 R:      John Ronciak <john.ronciak@intel.com>
5538 R:      Mitch Williams <mitch.a.williams@intel.com>
5539 L:      intel-wired-lan@lists.osuosl.org
5540 W:      http://www.intel.com/support/feedback.htm
5541 W:      http://e1000.sourceforge.net/
5542 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
5543 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
5544 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
5545 S:      Supported
5546 F:      Documentation/networking/e100.txt
5547 F:      Documentation/networking/e1000.txt
5548 F:      Documentation/networking/e1000e.txt
5549 F:      Documentation/networking/igb.txt
5550 F:      Documentation/networking/igbvf.txt
5551 F:      Documentation/networking/ixgb.txt
5552 F:      Documentation/networking/ixgbe.txt
5553 F:      Documentation/networking/ixgbevf.txt
5554 F:      Documentation/networking/i40e.txt
5555 F:      Documentation/networking/i40evf.txt
5556 F:      drivers/net/ethernet/intel/
5557 F:      drivers/net/ethernet/intel/*/
5558
5559 INTEL-MID GPIO DRIVER
5560 M:      David Cohen <david.a.cohen@linux.intel.com>
5561 L:      linux-gpio@vger.kernel.org
5562 S:      Maintained
5563 F:      drivers/gpio/gpio-intel-mid.c
5564
5565 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
5566 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
5567 L:      linux-wireless@vger.kernel.org
5568 S:      Maintained
5569 F:      Documentation/networking/README.ipw2100
5570 F:      Documentation/networking/README.ipw2200
5571 F:      drivers/net/wireless/ipw2x00/
5572
5573 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
5574 M:      Richard L Maliszewski <richard.l.maliszewski@intel.com>
5575 M:      Gang Wei <gang.wei@intel.com>
5576 M:      Shane Wang <shane.wang@intel.com>
5577 L:      tboot-devel@lists.sourceforge.net
5578 W:      http://tboot.sourceforge.net
5579 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
5580 S:      Supported
5581 F:      Documentation/intel_txt.txt
5582 F:      include/linux/tboot.h
5583 F:      arch/x86/kernel/tboot.c
5584
5585 INTEL WIRELESS WIMAX CONNECTION 2400
5586 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
5587 M:      linux-wimax@intel.com
5588 L:      wimax@linuxwimax.org (subscribers-only)
5589 S:      Supported
5590 W:      http://linuxwimax.org
5591 F:      Documentation/wimax/README.i2400m
5592 F:      drivers/net/wimax/i2400m/
5593 F:      include/uapi/linux/wimax/i2400m.h
5594
5595 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
5596 M:      Stanislaw Gruszka <sgruszka@redhat.com>
5597 L:      linux-wireless@vger.kernel.org
5598 S:      Supported
5599 F:      drivers/net/wireless/iwlegacy/
5600
5601 INTEL WIRELESS WIFI LINK (iwlwifi)
5602 M:      Johannes Berg <johannes.berg@intel.com>
5603 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
5604 M:      Intel Linux Wireless <linuxwifi@intel.com>
5605 L:      linux-wireless@vger.kernel.org
5606 W:      http://intellinuxwireless.org
5607 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
5608 S:      Supported
5609 F:      drivers/net/wireless/iwlwifi/
5610
5611 INTEL MANAGEMENT ENGINE (mei)
5612 M:      Tomas Winkler <tomas.winkler@intel.com>
5613 L:      linux-kernel@vger.kernel.org
5614 S:      Supported
5615 F:      include/uapi/linux/mei.h
5616 F:      include/linux/mei_cl_bus.h
5617 F:      drivers/misc/mei/*
5618 F:      Documentation/misc-devices/mei/*
5619
5620 INTEL PMC IPC DRIVER
5621 M:      Zha Qipeng<qipeng.zha@intel.com>
5622 L:      platform-driver-x86@vger.kernel.org
5623 S:      Maintained
5624 F:      drivers/platform/x86/intel_pmc_ipc.c
5625 F:      arch/x86/include/asm/intel_pmc_ipc.h
5626
5627 IOC3 ETHERNET DRIVER
5628 M:      Ralf Baechle <ralf@linux-mips.org>
5629 L:      linux-mips@linux-mips.org
5630 S:      Maintained
5631 F:      drivers/net/ethernet/sgi/ioc3-eth.c
5632
5633 IOC3 SERIAL DRIVER
5634 M:      Pat Gefre <pfg@sgi.com>
5635 L:      linux-serial@vger.kernel.org
5636 S:      Maintained
5637 F:      drivers/tty/serial/ioc3_serial.c
5638
5639 IOMMU DRIVERS
5640 M:      Joerg Roedel <joro@8bytes.org>
5641 L:      iommu@lists.linux-foundation.org
5642 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
5643 S:      Maintained
5644 F:      drivers/iommu/
5645
5646 IP MASQUERADING
5647 M:      Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
5648 S:      Maintained
5649 F:      net/ipv4/netfilter/ipt_MASQUERADE.c
5650
5651 IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
5652 M:      Francois Romieu <romieu@fr.zoreil.com>
5653 M:      Sorbica Shieh <sorbica@icplus.com.tw>
5654 L:      netdev@vger.kernel.org
5655 S:      Maintained
5656 F:      drivers/net/ethernet/icplus/ipg.*
5657
5658 IPATH DRIVER
5659 M:      Mike Marciniszyn <infinipath@intel.com>
5660 L:      linux-rdma@vger.kernel.org
5661 S:      Maintained
5662 F:      drivers/staging/rdma/ipath/
5663
5664 IPMI SUBSYSTEM
5665 M:      Corey Minyard <minyard@acm.org>
5666 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
5667 W:      http://openipmi.sourceforge.net/
5668 S:      Supported
5669 F:      Documentation/IPMI.txt
5670 F:      drivers/char/ipmi/
5671 F:      include/linux/ipmi*
5672 F:      include/uapi/linux/ipmi*
5673
5674 QCOM AUDIO (ASoC) DRIVERS
5675 M:      Patrick Lai <plai@codeaurora.org>
5676 M:      Banajit Goswami <bgoswami@codeaurora.org>
5677 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5678 S:      Supported
5679 F:      sound/soc/qcom/
5680
5681 IPS SCSI RAID DRIVER
5682 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
5683 L:      linux-scsi@vger.kernel.org
5684 W:      http://www.adaptec.com/
5685 S:      Maintained
5686 F:      drivers/scsi/ips*
5687
5688 IPVS
5689 M:      Wensong Zhang <wensong@linux-vs.org>
5690 M:      Simon Horman <horms@verge.net.au>
5691 M:      Julian Anastasov <ja@ssi.bg>
5692 L:      netdev@vger.kernel.org
5693 L:      lvs-devel@vger.kernel.org
5694 S:      Maintained
5695 F:      Documentation/networking/ipvs-sysctl.txt
5696 F:      include/net/ip_vs.h
5697 F:      include/uapi/linux/ip_vs.h
5698 F:      net/netfilter/ipvs/
5699
5700 IPWIRELESS DRIVER
5701 M:      Jiri Kosina <jikos@kernel.org>
5702 M:      David Sterba <dsterba@suse.com>
5703 S:      Odd Fixes
5704 F:      drivers/tty/ipwireless/
5705
5706 IPX NETWORK LAYER
5707 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
5708 L:      netdev@vger.kernel.org
5709 S:      Maintained
5710 F:      include/net/ipx.h
5711 F:      include/uapi/linux/ipx.h
5712 F:      net/ipx/
5713
5714 IRDA SUBSYSTEM
5715 M:      Samuel Ortiz <samuel@sortiz.org>
5716 L:      irda-users@lists.sourceforge.net (subscribers-only)
5717 L:      netdev@vger.kernel.org
5718 W:      http://irda.sourceforge.net/
5719 S:      Maintained
5720 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
5721 F:      Documentation/networking/irda.txt
5722 F:      drivers/net/irda/
5723 F:      include/net/irda/
5724 F:      net/irda/
5725
5726 IRQ SUBSYSTEM
5727 M:      Thomas Gleixner <tglx@linutronix.de>
5728 L:      linux-kernel@vger.kernel.org
5729 S:      Maintained
5730 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5731 F:      kernel/irq/
5732
5733 IRQCHIP DRIVERS
5734 M:      Thomas Gleixner <tglx@linutronix.de>
5735 M:      Jason Cooper <jason@lakedaemon.net>
5736 M:      Marc Zyngier <marc.zyngier@arm.com>
5737 L:      linux-kernel@vger.kernel.org
5738 S:      Maintained
5739 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5740 T:      git git://git.infradead.org/users/jcooper/linux.git irqchip/core
5741 F:      Documentation/devicetree/bindings/interrupt-controller/
5742 F:      drivers/irqchip/
5743
5744 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
5745 M:      Jiang Liu <jiang.liu@linux.intel.com>
5746 M:      Marc Zyngier <marc.zyngier@arm.com>
5747 S:      Maintained
5748 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5749 F:      Documentation/IRQ-domain.txt
5750 F:      include/linux/irqdomain.h
5751 F:      kernel/irq/irqdomain.c
5752 F:      kernel/irq/msi.c
5753
5754 ISAPNP
5755 M:      Jaroslav Kysela <perex@perex.cz>
5756 S:      Maintained
5757 F:      Documentation/isapnp.txt
5758 F:      drivers/pnp/isapnp/
5759 F:      include/linux/isapnp.h
5760
5761 ISA RADIO MODULE
5762 M:      Hans Verkuil <hverkuil@xs4all.nl>
5763 L:      linux-media@vger.kernel.org
5764 T:      git git://linuxtv.org/media_tree.git
5765 W:      http://linuxtv.org
5766 S:      Maintained
5767 F:      drivers/media/radio/radio-isa*
5768
5769 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
5770 M:      Peter Jones <pjones@redhat.com>
5771 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
5772 S:      Maintained
5773 F:      drivers/firmware/iscsi_ibft*
5774
5775 ISCSI
5776 M:      Mike Christie <michaelc@cs.wisc.edu>
5777 L:      open-iscsi@googlegroups.com
5778 W:      www.open-iscsi.org
5779 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
5780 S:      Maintained
5781 F:      drivers/scsi/*iscsi*
5782 F:      include/scsi/*iscsi*
5783
5784 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
5785 M:      Or Gerlitz <ogerlitz@mellanox.com>
5786 M:      Sagi Grimberg <sagig@mellanox.com>
5787 M:      Roi Dayan <roid@mellanox.com>
5788 L:      linux-rdma@vger.kernel.org
5789 S:      Supported
5790 W:      http://www.openfabrics.org
5791 W:      www.open-iscsi.org
5792 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5793 F:      drivers/infiniband/ulp/iser/
5794
5795 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
5796 M:      Sagi Grimberg <sagig@mellanox.com>
5797 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
5798 L:      linux-rdma@vger.kernel.org
5799 L:      target-devel@vger.kernel.org
5800 S:      Supported
5801 W:      http://www.linux-iscsi.org
5802 F:      drivers/infiniband/ulp/isert
5803
5804 ISDN SUBSYSTEM
5805 M:      Karsten Keil <isdn@linux-pingi.de>
5806 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5807 L:      netdev@vger.kernel.org
5808 W:      http://www.isdn4linux.de
5809 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
5810 S:      Maintained
5811 F:      Documentation/isdn/
5812 F:      drivers/isdn/
5813 F:      include/linux/isdn.h
5814 F:      include/linux/isdn/
5815 F:      include/uapi/linux/isdn.h
5816 F:      include/uapi/linux/isdn/
5817
5818 ISDN SUBSYSTEM (Eicon active card driver)
5819 M:      Armin Schindler <mac@melware.de>
5820 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5821 W:      http://www.melware.de
5822 S:      Maintained
5823 F:      drivers/isdn/hardware/eicon/
5824
5825 IT87 HARDWARE MONITORING DRIVER
5826 M:      Jean Delvare <jdelvare@suse.com>
5827 L:      lm-sensors@lm-sensors.org
5828 S:      Maintained
5829 F:      Documentation/hwmon/it87
5830 F:      drivers/hwmon/it87.c
5831
5832 IT913X MEDIA DRIVER
5833 M:      Antti Palosaari <crope@iki.fi>
5834 L:      linux-media@vger.kernel.org
5835 W:      http://linuxtv.org/
5836 W:      http://palosaari.fi/linux/
5837 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5838 T:      git git://linuxtv.org/anttip/media_tree.git
5839 S:      Maintained
5840 F:      drivers/media/tuners/it913x*
5841
5842 IVTV VIDEO4LINUX DRIVER
5843 M:      Andy Walls <awalls@md.metrocast.net>
5844 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
5845 L:      linux-media@vger.kernel.org
5846 T:      git git://linuxtv.org/media_tree.git
5847 W:      http://www.ivtvdriver.org
5848 S:      Maintained
5849 F:      Documentation/video4linux/*.ivtv
5850 F:      drivers/media/pci/ivtv/
5851 F:      include/uapi/linux/ivtv*
5852
5853 IX2505V MEDIA DRIVER
5854 M:      Malcolm Priestley <tvboxspy@gmail.com>
5855 L:      linux-media@vger.kernel.org
5856 W:      http://linuxtv.org/
5857 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5858 S:      Maintained
5859 F:      drivers/media/dvb-frontends/ix2505v*
5860
5861 JC42.4 TEMPERATURE SENSOR DRIVER
5862 M:      Guenter Roeck <linux@roeck-us.net>
5863 L:      lm-sensors@lm-sensors.org
5864 S:      Maintained
5865 F:      drivers/hwmon/jc42.c
5866 F:      Documentation/hwmon/jc42
5867
5868 JFS FILESYSTEM
5869 M:      Dave Kleikamp <shaggy@kernel.org>
5870 L:      jfs-discussion@lists.sourceforge.net
5871 W:      http://jfs.sourceforge.net/
5872 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
5873 S:      Maintained
5874 F:      Documentation/filesystems/jfs.txt
5875 F:      fs/jfs/
5876
5877 JME NETWORK DRIVER
5878 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
5879 L:      netdev@vger.kernel.org
5880 S:      Maintained
5881 F:      drivers/net/ethernet/jme.*
5882
5883 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
5884 M:      David Woodhouse <dwmw2@infradead.org>
5885 L:      linux-mtd@lists.infradead.org
5886 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
5887 S:      Maintained
5888 F:      fs/jffs2/
5889 F:      include/uapi/linux/jffs2.h
5890
5891 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
5892 M:      "Theodore Ts'o" <tytso@mit.edu>
5893 M:      Jan Kara <jack@suse.com>
5894 L:      linux-ext4@vger.kernel.org
5895 S:      Maintained
5896 F:      fs/jbd2/
5897 F:      include/linux/jbd2.h
5898
5899 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
5900 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
5901 L:      linux-media@vger.kernel.org
5902 S:      Maintained
5903 F:      drivers/media/platform/rcar_jpu.c
5904
5905 JSM Neo PCI based serial card
5906 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
5907 L:      linux-serial@vger.kernel.org
5908 S:      Maintained
5909 F:      drivers/tty/serial/jsm/
5910
5911 K10TEMP HARDWARE MONITORING DRIVER
5912 M:      Clemens Ladisch <clemens@ladisch.de>
5913 L:      lm-sensors@lm-sensors.org
5914 S:      Maintained
5915 F:      Documentation/hwmon/k10temp
5916 F:      drivers/hwmon/k10temp.c
5917
5918 K8TEMP HARDWARE MONITORING DRIVER
5919 M:      Rudolf Marek <r.marek@assembler.cz>
5920 L:      lm-sensors@lm-sensors.org
5921 S:      Maintained
5922 F:      Documentation/hwmon/k8temp
5923 F:      drivers/hwmon/k8temp.c
5924
5925 KCONFIG
5926 M:      "Yann E. MORIN" <yann.morin.1998@free.fr>
5927 L:      linux-kbuild@vger.kernel.org
5928 T:      git git://gitorious.org/linux-kconfig/linux-kconfig
5929 S:      Maintained
5930 F:      Documentation/kbuild/kconfig-language.txt
5931 F:      scripts/kconfig/
5932
5933 KDUMP
5934 M:      Vivek Goyal <vgoyal@redhat.com>
5935 M:      Haren Myneni <hbabu@us.ibm.com>
5936 L:      kexec@lists.infradead.org
5937 W:      http://lse.sourceforge.net/kdump/
5938 S:      Maintained
5939 F:      Documentation/kdump/
5940
5941 KEENE FM RADIO TRANSMITTER DRIVER
5942 M:      Hans Verkuil <hverkuil@xs4all.nl>
5943 L:      linux-media@vger.kernel.org
5944 T:      git git://linuxtv.org/media_tree.git
5945 W:      http://linuxtv.org
5946 S:      Maintained
5947 F:      drivers/media/radio/radio-keene*
5948
5949 KERNEL AUTOMOUNTER v4 (AUTOFS4)
5950 M:      Ian Kent <raven@themaw.net>
5951 L:      autofs@vger.kernel.org
5952 S:      Maintained
5953 F:      fs/autofs4/
5954
5955 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
5956 M:      Michal Marek <mmarek@suse.com>
5957 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
5958 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
5959 L:      linux-kbuild@vger.kernel.org
5960 S:      Maintained
5961 F:      Documentation/kbuild/
5962 F:      Makefile
5963 F:      scripts/Makefile.*
5964 F:      scripts/basic/
5965 F:      scripts/mk*
5966 F:      scripts/package/
5967
5968 KERNEL JANITORS
5969 L:      kernel-janitors@vger.kernel.org
5970 W:      http://kernelnewbies.org/KernelJanitors
5971 S:      Odd Fixes
5972
5973 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
5974 M:      "J. Bruce Fields" <bfields@fieldses.org>
5975 M:      Jeff Layton <jlayton@poochiereds.net>
5976 L:      linux-nfs@vger.kernel.org
5977 W:      http://nfs.sourceforge.net/
5978 S:      Supported
5979 F:      fs/nfsd/
5980 F:      include/uapi/linux/nfsd/
5981 F:      fs/lockd/
5982 F:      fs/nfs_common/
5983 F:      net/sunrpc/
5984 F:      include/linux/lockd/
5985 F:      include/linux/sunrpc/
5986 F:      include/uapi/linux/sunrpc/
5987
5988 KERNEL SELFTEST FRAMEWORK
5989 M:      Shuah Khan <shuahkh@osg.samsung.com>
5990 L:      linux-api@vger.kernel.org
5991 T:      git git://git.kernel.org/pub/scm/shuah/linux-kselftest
5992 S:      Maintained
5993 F:      tools/testing/selftests
5994
5995 KERNEL VIRTUAL MACHINE (KVM)
5996 M:      Gleb Natapov <gleb@kernel.org>
5997 M:      Paolo Bonzini <pbonzini@redhat.com>
5998 L:      kvm@vger.kernel.org
5999 W:      http://www.linux-kvm.org
6000 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
6001 S:      Supported
6002 F:      Documentation/*/kvm*.txt
6003 F:      Documentation/virtual/kvm/
6004 F:      arch/*/kvm/
6005 F:      arch/x86/kernel/kvm.c
6006 F:      arch/x86/kernel/kvmclock.c
6007 F:      arch/*/include/asm/kvm*
6008 F:      include/linux/kvm*
6009 F:      include/uapi/linux/kvm*
6010 F:      virt/kvm/
6011
6012 KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
6013 M:      Joerg Roedel <joro@8bytes.org>
6014 L:      kvm@vger.kernel.org
6015 W:      http://www.linux-kvm.org/
6016 S:      Maintained
6017 F:      arch/x86/include/asm/svm.h
6018 F:      arch/x86/kvm/svm.c
6019
6020 KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
6021 M:      Alexander Graf <agraf@suse.com>
6022 L:      kvm-ppc@vger.kernel.org
6023 W:      http://www.linux-kvm.org/
6024 T:      git git://github.com/agraf/linux-2.6.git
6025 S:      Supported
6026 F:      arch/powerpc/include/asm/kvm*
6027 F:      arch/powerpc/kvm/
6028
6029 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
6030 M:      Christian Borntraeger <borntraeger@de.ibm.com>
6031 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
6032 L:      linux-s390@vger.kernel.org
6033 W:      http://www.ibm.com/developerworks/linux/linux390/
6034 S:      Supported
6035 F:      Documentation/s390/kvm.txt
6036 F:      arch/s390/include/asm/kvm*
6037 F:      arch/s390/kvm/
6038
6039 KERNEL VIRTUAL MACHINE (KVM) FOR ARM
6040 M:      Christoffer Dall <christoffer.dall@linaro.org>
6041 M:      Marc Zyngier <marc.zyngier@arm.com>
6042 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6043 L:      kvmarm@lists.cs.columbia.edu
6044 W:      http://systems.cs.columbia.edu/projects/kvm-arm
6045 S:      Supported
6046 F:      arch/arm/include/uapi/asm/kvm*
6047 F:      arch/arm/include/asm/kvm*
6048 F:      arch/arm/kvm/
6049 F:      virt/kvm/arm/
6050 F:      include/kvm/arm_*
6051
6052 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
6053 M:      Christoffer Dall <christoffer.dall@linaro.org>
6054 M:      Marc Zyngier <marc.zyngier@arm.com>
6055 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6056 L:      kvmarm@lists.cs.columbia.edu
6057 S:      Maintained
6058 F:      arch/arm64/include/uapi/asm/kvm*
6059 F:      arch/arm64/include/asm/kvm*
6060 F:      arch/arm64/kvm/
6061
6062 KEXEC
6063 M:      Eric Biederman <ebiederm@xmission.com>
6064 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
6065 L:      kexec@lists.infradead.org
6066 S:      Maintained
6067 F:      include/linux/kexec.h
6068 F:      include/uapi/linux/kexec.h
6069 F:      kernel/kexec.c
6070
6071 KEYS/KEYRINGS:
6072 M:      David Howells <dhowells@redhat.com>
6073 L:      keyrings@vger.kernel.org
6074 S:      Maintained
6075 F:      Documentation/security/keys.txt
6076 F:      include/linux/key.h
6077 F:      include/linux/key-type.h
6078 F:      include/keys/
6079 F:      security/keys/
6080
6081 KEYS-TRUSTED
6082 M:      David Safford <safford@us.ibm.com>
6083 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6084 L:      linux-security-module@vger.kernel.org
6085 L:      keyrings@vger.kernel.org
6086 S:      Supported
6087 F:      Documentation/security/keys-trusted-encrypted.txt
6088 F:      include/keys/trusted-type.h
6089 F:      security/keys/trusted.c
6090 F:      security/keys/trusted.h
6091
6092 KEYS-ENCRYPTED
6093 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6094 M:      David Safford <safford@us.ibm.com>
6095 L:      linux-security-module@vger.kernel.org
6096 L:      keyrings@vger.kernel.org
6097 S:      Supported
6098 F:      Documentation/security/keys-trusted-encrypted.txt
6099 F:      include/keys/encrypted-type.h
6100 F:      security/keys/encrypted-keys/
6101
6102 KGDB / KDB /debug_core
6103 M:      Jason Wessel <jason.wessel@windriver.com>
6104 W:      http://kgdb.wiki.kernel.org/
6105 L:      kgdb-bugreport@lists.sourceforge.net
6106 S:      Maintained
6107 F:      Documentation/DocBook/kgdb.tmpl
6108 F:      drivers/misc/kgdbts.c
6109 F:      drivers/tty/serial/kgdboc.c
6110 F:      include/linux/kdb.h
6111 F:      include/linux/kgdb.h
6112 F:      kernel/debug/
6113
6114 KMEMCHECK
6115 M:      Vegard Nossum <vegardno@ifi.uio.no>
6116 M:      Pekka Enberg <penberg@kernel.org>
6117 S:      Maintained
6118 F:      Documentation/kmemcheck.txt
6119 F:      arch/x86/include/asm/kmemcheck.h
6120 F:      arch/x86/mm/kmemcheck/
6121 F:      include/linux/kmemcheck.h
6122 F:      mm/kmemcheck.c
6123
6124 KMEMLEAK
6125 M:      Catalin Marinas <catalin.marinas@arm.com>
6126 S:      Maintained
6127 F:      Documentation/kmemleak.txt
6128 F:      include/linux/kmemleak.h
6129 F:      mm/kmemleak.c
6130 F:      mm/kmemleak-test.c
6131
6132 KPROBES
6133 M:      Ananth N Mavinakayanahalli <ananth@in.ibm.com>
6134 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
6135 M:      "David S. Miller" <davem@davemloft.net>
6136 M:      Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
6137 S:      Maintained
6138 F:      Documentation/kprobes.txt
6139 F:      include/linux/kprobes.h
6140 F:      kernel/kprobes.c
6141
6142 KS0108 LCD CONTROLLER DRIVER
6143 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
6144 W:      http://miguelojeda.es/auxdisplay.htm
6145 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
6146 S:      Maintained
6147 F:      Documentation/auxdisplay/ks0108
6148 F:      drivers/auxdisplay/ks0108.c
6149 F:      include/linux/ks0108.h
6150
6151 L3MDEV
6152 M:      David Ahern <dsa@cumulusnetworks.com>
6153 L:      netdev@vger.kernel.org
6154 S:      Maintained
6155 F:      net/l3mdev
6156 F:      include/net/l3mdev.h
6157
6158 LAPB module
6159 L:      linux-x25@vger.kernel.org
6160 S:      Orphan
6161 F:      Documentation/networking/lapb-module.txt
6162 F:      include/*/lapb.h
6163 F:      net/lapb/
6164
6165 LASI 53c700 driver for PARISC
6166 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
6167 L:      linux-scsi@vger.kernel.org
6168 S:      Maintained
6169 F:      Documentation/scsi/53c700.txt
6170 F:      drivers/scsi/53c700*
6171
6172 LED SUBSYSTEM
6173 M:      Richard Purdie <rpurdie@rpsys.net>
6174 M:      Jacek Anaszewski <j.anaszewski@samsung.com>
6175 L:      linux-leds@vger.kernel.org
6176 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
6177 S:      Maintained
6178 F:      drivers/leds/
6179 F:      include/linux/leds.h
6180
6181 LEGACY EEPROM DRIVER
6182 M:      Jean Delvare <jdelvare@suse.com>
6183 S:      Maintained
6184 F:      Documentation/misc-devices/eeprom
6185 F:      drivers/misc/eeprom/eeprom.c
6186
6187 LEGO USB Tower driver
6188 M:      Juergen Stuber <starblue@users.sourceforge.net>
6189 L:      legousb-devel@lists.sourceforge.net
6190 W:      http://legousb.sourceforge.net/
6191 S:      Maintained
6192 F:      drivers/usb/misc/legousbtower.c
6193
6194 LG2160 MEDIA DRIVER
6195 M:      Michael Krufky <mkrufky@linuxtv.org>
6196 L:      linux-media@vger.kernel.org
6197 W:      http://linuxtv.org/
6198 W:      http://github.com/mkrufky
6199 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6200 T:      git git://linuxtv.org/mkrufky/tuners.git
6201 S:      Maintained
6202 F:      drivers/media/dvb-frontends/lg2160.*
6203
6204 LGDT3305 MEDIA DRIVER
6205 M:      Michael Krufky <mkrufky@linuxtv.org>
6206 L:      linux-media@vger.kernel.org
6207 W:      http://linuxtv.org/
6208 W:      http://github.com/mkrufky
6209 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6210 T:      git git://linuxtv.org/mkrufky/tuners.git
6211 S:      Maintained
6212 F:      drivers/media/dvb-frontends/lgdt3305.*
6213
6214 LGUEST
6215 M:      Rusty Russell <rusty@rustcorp.com.au>
6216 L:      lguest@lists.ozlabs.org
6217 W:      http://lguest.ozlabs.org/
6218 S:      Odd Fixes
6219 F:      arch/x86/include/asm/lguest*.h
6220 F:      arch/x86/lguest/
6221 F:      drivers/lguest/
6222 F:      include/linux/lguest*.h
6223 F:      tools/lguest/
6224
6225 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
6226 M:      Tejun Heo <tj@kernel.org>
6227 L:      linux-ide@vger.kernel.org
6228 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6229 S:      Maintained
6230 F:      drivers/ata/
6231 F:      include/linux/ata.h
6232 F:      include/linux/libata.h
6233
6234 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
6235 M:      Viresh Kumar <vireshk@kernel.org>
6236 L:      linux-ide@vger.kernel.org
6237 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6238 S:      Maintained
6239 F:      include/linux/pata_arasan_cf_data.h
6240 F:      drivers/ata/pata_arasan_cf.c
6241
6242 LIBATA PATA DRIVERS
6243 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6244 M:      Tejun Heo <tj@kernel.org>
6245 L:      linux-ide@vger.kernel.org
6246 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6247 S:      Maintained
6248 F:      drivers/ata/pata_*.c
6249 F:      drivers/ata/ata_generic.c
6250
6251 LIBATA SATA AHCI PLATFORM devices support
6252 M:      Hans de Goede <hdegoede@redhat.com>
6253 M:      Tejun Heo <tj@kernel.org>
6254 L:      linux-ide@vger.kernel.org
6255 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6256 S:      Maintained
6257 F:      drivers/ata/ahci_platform.c
6258 F:      drivers/ata/libahci_platform.c
6259 F:      include/linux/ahci_platform.h
6260
6261 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
6262 M:      Mikael Pettersson <mikpelinux@gmail.com>
6263 L:      linux-ide@vger.kernel.org
6264 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6265 S:      Maintained
6266 F:      drivers/ata/sata_promise.*
6267
6268 LIBLOCKDEP
6269 M:      Sasha Levin <sasha.levin@oracle.com>
6270 S:      Maintained
6271 F:      tools/lib/lockdep/
6272
6273 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
6274 M:      Dan Williams <dan.j.williams@intel.com>
6275 L:      linux-nvdimm@lists.01.org
6276 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6277 S:      Supported
6278 F:      drivers/nvdimm/*
6279 F:      include/linux/nd.h
6280 F:      include/linux/libnvdimm.h
6281 F:      include/uapi/linux/ndctl.h
6282
6283 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
6284 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6285 L:      linux-nvdimm@lists.01.org
6286 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6287 S:      Supported
6288 F:      drivers/nvdimm/blk.c
6289 F:      drivers/nvdimm/region_devs.c
6290 F:      drivers/acpi/nfit*
6291
6292 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
6293 M:      Vishal Verma <vishal.l.verma@intel.com>
6294 L:      linux-nvdimm@lists.01.org
6295 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6296 S:      Supported
6297 F:      drivers/nvdimm/btt*
6298
6299 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
6300 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6301 L:      linux-nvdimm@lists.01.org
6302 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6303 S:      Supported
6304 F:      drivers/nvdimm/pmem.c
6305 F:      include/linux/pmem.h
6306 F:      arch/*/include/asm/pmem.h
6307
6308 LINUX FOR IBM pSERIES (RS/6000)
6309 M:      Paul Mackerras <paulus@au.ibm.com>
6310 W:      http://www.ibm.com/linux/ltc/projects/ppc
6311 S:      Supported
6312 F:      arch/powerpc/boot/rs6000.h
6313
6314 LINUX FOR POWERPC (32-BIT AND 64-BIT)
6315 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6316 M:      Paul Mackerras <paulus@samba.org>
6317 M:      Michael Ellerman <mpe@ellerman.id.au>
6318 W:      http://www.penguinppc.org/
6319 L:      linuxppc-dev@lists.ozlabs.org
6320 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
6321 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
6322 S:      Supported
6323 F:      Documentation/powerpc/
6324 F:      arch/powerpc/
6325
6326 LINUX FOR POWER MACINTOSH
6327 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6328 W:      http://www.penguinppc.org/
6329 L:      linuxppc-dev@lists.ozlabs.org
6330 S:      Maintained
6331 F:      arch/powerpc/platforms/powermac/
6332 F:      drivers/macintosh/
6333
6334 LINUX FOR POWERPC EMBEDDED MPC5XXX
6335 M:      Anatolij Gustschin <agust@denx.de>
6336 L:      linuxppc-dev@lists.ozlabs.org
6337 T:      git git://git.denx.de/linux-denx-agust.git
6338 S:      Maintained
6339 F:      arch/powerpc/platforms/512x/
6340 F:      arch/powerpc/platforms/52xx/
6341
6342 LINUX FOR POWERPC EMBEDDED PPC4XX
6343 M:      Alistair Popple <alistair@popple.id.au>
6344 M:      Matt Porter <mporter@kernel.crashing.org>
6345 W:      http://www.penguinppc.org/
6346 L:      linuxppc-dev@lists.ozlabs.org
6347 S:      Maintained
6348 F:      arch/powerpc/platforms/40x/
6349 F:      arch/powerpc/platforms/44x/
6350
6351 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
6352 L:      linuxppc-dev@lists.ozlabs.org
6353 S:      Orphan
6354 F:      arch/powerpc/*/*virtex*
6355 F:      arch/powerpc/*/*/*virtex*
6356
6357 LINUX FOR POWERPC EMBEDDED PPC8XX
6358 M:      Vitaly Bordug <vitb@kernel.crashing.org>
6359 W:      http://www.penguinppc.org/
6360 L:      linuxppc-dev@lists.ozlabs.org
6361 S:      Maintained
6362 F:      arch/powerpc/platforms/8xx/
6363
6364 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
6365 M:      Scott Wood <scottwood@freescale.com>
6366 M:      Kumar Gala <galak@kernel.crashing.org>
6367 W:      http://www.penguinppc.org/
6368 L:      linuxppc-dev@lists.ozlabs.org
6369 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
6370 S:      Maintained
6371 F:      arch/powerpc/platforms/83xx/
6372 F:      arch/powerpc/platforms/85xx/
6373
6374 LINUX FOR POWERPC PA SEMI PWRFICIENT
6375 M:      Olof Johansson <olof@lixom.net>
6376 L:      linuxppc-dev@lists.ozlabs.org
6377 S:      Maintained
6378 F:      arch/powerpc/platforms/pasemi/
6379 F:      drivers/*/*pasemi*
6380 F:      drivers/*/*/*pasemi*
6381
6382 LINUX SECURITY MODULE (LSM) FRAMEWORK
6383 M:      Chris Wright <chrisw@sous-sol.org>
6384 L:      linux-security-module@vger.kernel.org
6385 S:      Supported
6386
6387 LIS3LV02D ACCELEROMETER DRIVER
6388 M:      Eric Piel <eric.piel@tremplin-utc.net>
6389 S:      Maintained
6390 F:      Documentation/misc-devices/lis3lv02d
6391 F:      drivers/misc/lis3lv02d/
6392 F:      drivers/platform/x86/hp_accel.c
6393
6394 LIVE PATCHING
6395 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6396 M:      Seth Jennings <sjenning@redhat.com>
6397 M:      Jiri Kosina <jikos@kernel.org>
6398 M:      Vojtech Pavlik <vojtech@suse.com>
6399 S:      Maintained
6400 F:      kernel/livepatch/
6401 F:      include/linux/livepatch.h
6402 F:      arch/x86/include/asm/livepatch.h
6403 F:      arch/x86/kernel/livepatch.c
6404 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
6405 F:      samples/livepatch/
6406 L:      live-patching@vger.kernel.org
6407 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
6408
6409 LLC (802.2)
6410 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
6411 S:      Maintained
6412 F:      include/linux/llc.h
6413 F:      include/uapi/linux/llc.h
6414 F:      include/net/llc*
6415 F:      net/llc/
6416
6417 LM73 HARDWARE MONITOR DRIVER
6418 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
6419 L:      lm-sensors@lm-sensors.org
6420 S:      Maintained
6421 F:      drivers/hwmon/lm73.c
6422
6423 LM78 HARDWARE MONITOR DRIVER
6424 M:      Jean Delvare <jdelvare@suse.com>
6425 L:      lm-sensors@lm-sensors.org
6426 S:      Maintained
6427 F:      Documentation/hwmon/lm78
6428 F:      drivers/hwmon/lm78.c
6429
6430 LM83 HARDWARE MONITOR DRIVER
6431 M:      Jean Delvare <jdelvare@suse.com>
6432 L:      lm-sensors@lm-sensors.org
6433 S:      Maintained
6434 F:      Documentation/hwmon/lm83
6435 F:      drivers/hwmon/lm83.c
6436
6437 LM90 HARDWARE MONITOR DRIVER
6438 M:      Jean Delvare <jdelvare@suse.com>
6439 L:      lm-sensors@lm-sensors.org
6440 S:      Maintained
6441 F:      Documentation/hwmon/lm90
6442 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
6443 F:      drivers/hwmon/lm90.c
6444
6445 LM95234 HARDWARE MONITOR DRIVER
6446 M:      Guenter Roeck <linux@roeck-us.net>
6447 L:      lm-sensors@lm-sensors.org
6448 S:      Maintained
6449 F:      Documentation/hwmon/lm95234
6450 F:      drivers/hwmon/lm95234.c
6451
6452 LME2510 MEDIA DRIVER
6453 M:      Malcolm Priestley <tvboxspy@gmail.com>
6454 L:      linux-media@vger.kernel.org
6455 W:      http://linuxtv.org/
6456 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6457 S:      Maintained
6458 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
6459
6460 LOCKDEP AND LOCKSTAT
6461 M:      Peter Zijlstra <peterz@infradead.org>
6462 M:      Ingo Molnar <mingo@redhat.com>
6463 L:      linux-kernel@vger.kernel.org
6464 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
6465 S:      Maintained
6466 F:      Documentation/locking/lockdep*.txt
6467 F:      Documentation/locking/lockstat.txt
6468 F:      include/linux/lockdep.h
6469 F:      kernel/locking/
6470
6471 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
6472 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
6473 L:      linux-ntfs-dev@lists.sourceforge.net
6474 W:      http://www.linux-ntfs.org/content/view/19/37/
6475 S:      Maintained
6476 F:      Documentation/ldm.txt
6477 F:      block/partitions/ldm.*
6478
6479 LogFS
6480 M:      Joern Engel <joern@logfs.org>
6481 M:      Prasad Joshi <prasadjoshi.linux@gmail.com>
6482 L:      logfs@logfs.org
6483 W:      logfs.org
6484 S:      Maintained
6485 F:      fs/logfs/
6486
6487 LPC32XX MACHINE SUPPORT
6488 M:      Roland Stigge <stigge@antcom.de>
6489 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6490 S:      Maintained
6491 F:      arch/arm/mach-lpc32xx/
6492
6493 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
6494 M:      Nagalakshmi Nandigama <nagalakshmi.nandigama@avagotech.com>
6495 M:      Praveen Krishnamoorthy <praveen.krishnamoorthy@avagotech.com>
6496 M:      Sreekanth Reddy <sreekanth.reddy@avagotech.com>
6497 M:      Abhijit Mahajan <abhijit.mahajan@avagotech.com>
6498 L:      MPT-FusionLinux.pdl@avagotech.com
6499 L:      linux-scsi@vger.kernel.org
6500 W:      http://www.lsilogic.com/support
6501 S:      Supported
6502 F:      drivers/message/fusion/
6503 F:      drivers/scsi/mpt2sas/
6504 F:      drivers/scsi/mpt3sas/
6505
6506 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
6507 M:      Matthew Wilcox <matthew@wil.cx>
6508 L:      linux-scsi@vger.kernel.org
6509 S:      Maintained
6510 F:      drivers/scsi/sym53c8xx_2/
6511
6512 LTC4261 HARDWARE MONITOR DRIVER
6513 M:      Guenter Roeck <linux@roeck-us.net>
6514 L:      lm-sensors@lm-sensors.org
6515 S:      Maintained
6516 F:      Documentation/hwmon/ltc4261
6517 F:      drivers/hwmon/ltc4261.c
6518
6519 LTP (Linux Test Project)
6520 M:      Mike Frysinger <vapier@gentoo.org>
6521 M:      Cyril Hrubis <chrubis@suse.cz>
6522 M:      Wanlong Gao <wanlong.gao@gmail.com>
6523 M:      Jan Stancek <jstancek@redhat.com>
6524 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
6525 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
6526 L:      ltp@lists.linux.it (subscribers-only)
6527 W:      http://linux-test-project.github.io/
6528 T:      git git://github.com/linux-test-project/ltp.git
6529 S:      Maintained
6530
6531 M32R ARCHITECTURE
6532 W:      http://www.linux-m32r.org/
6533 S:      Orphan
6534 F:      arch/m32r/
6535
6536 M68K ARCHITECTURE
6537 M:      Geert Uytterhoeven <geert@linux-m68k.org>
6538 L:      linux-m68k@lists.linux-m68k.org
6539 W:      http://www.linux-m68k.org/
6540 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
6541 S:      Maintained
6542 F:      arch/m68k/
6543 F:      drivers/zorro/
6544
6545 M68K ON APPLE MACINTOSH
6546 M:      Joshua Thompson <funaho@jurai.org>
6547 W:      http://www.mac.linux-m68k.org/
6548 L:      linux-m68k@lists.linux-m68k.org
6549 S:      Maintained
6550 F:      arch/m68k/mac/
6551
6552 M68K ON HP9000/300
6553 M:      Philip Blundell <philb@gnu.org>
6554 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
6555 S:      Maintained
6556 F:      arch/m68k/hp300/
6557
6558 M88DS3103 MEDIA DRIVER
6559 M:      Antti Palosaari <crope@iki.fi>
6560 L:      linux-media@vger.kernel.org
6561 W:      http://linuxtv.org/
6562 W:      http://palosaari.fi/linux/
6563 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6564 T:      git git://linuxtv.org/anttip/media_tree.git
6565 S:      Maintained
6566 F:      drivers/media/dvb-frontends/m88ds3103*
6567
6568 M88RS2000 MEDIA DRIVER
6569 M:      Malcolm Priestley <tvboxspy@gmail.com>
6570 L:      linux-media@vger.kernel.org
6571 W:      http://linuxtv.org/
6572 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6573 S:      Maintained
6574 F:      drivers/media/dvb-frontends/m88rs2000*
6575
6576 MA901 MASTERKIT USB FM RADIO DRIVER
6577 M:      Alexey Klimov <klimov.linux@gmail.com>
6578 L:      linux-media@vger.kernel.org
6579 T:      git git://linuxtv.org/media_tree.git
6580 S:      Maintained
6581 F:      drivers/media/radio/radio-ma901.c
6582
6583 MAC80211
6584 M:      Johannes Berg <johannes@sipsolutions.net>
6585 L:      linux-wireless@vger.kernel.org
6586 W:      http://wireless.kernel.org/
6587 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6588 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
6589 S:      Maintained
6590 F:      Documentation/networking/mac80211-injection.txt
6591 F:      include/net/mac80211.h
6592 F:      net/mac80211/
6593
6594 MACVLAN DRIVER
6595 M:      Patrick McHardy <kaber@trash.net>
6596 L:      netdev@vger.kernel.org
6597 S:      Maintained
6598 F:      drivers/net/macvlan.c
6599 F:      include/linux/if_macvlan.h
6600
6601 MAILBOX API
6602 M:      Jassi Brar <jassisinghbrar@gmail.com>
6603 L:      linux-kernel@vger.kernel.org
6604 S:      Maintained
6605 F:      drivers/mailbox/
6606 F:      include/linux/mailbox_client.h
6607 F:      include/linux/mailbox_controller.h
6608
6609 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
6610 M:      Michael Kerrisk <mtk.manpages@gmail.com>
6611 W:      http://www.kernel.org/doc/man-pages
6612 L:      linux-man@vger.kernel.org
6613 S:      Maintained
6614
6615 MARVELL ARMADA DRM SUPPORT
6616 M:      Russell King <rmk+kernel@arm.linux.org.uk>
6617 S:      Maintained
6618 F:      drivers/gpu/drm/armada/
6619
6620 MARVELL 88E6352 DSA support
6621 M:      Guenter Roeck <linux@roeck-us.net>
6622 S:      Maintained
6623 F:      drivers/net/dsa/mv88e6352.c
6624
6625 MARVELL CRYPTO DRIVER
6626 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
6627 M:      Arnaud Ebalard <arno@natisbad.org>
6628 F:      drivers/crypto/marvell/
6629 S:      Maintained
6630 L:      linux-crypto@vger.kernel.org
6631
6632 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
6633 M:      Mirko Lindner <mlindner@marvell.com>
6634 M:      Stephen Hemminger <stephen@networkplumber.org>
6635 L:      netdev@vger.kernel.org
6636 S:      Maintained
6637 F:      drivers/net/ethernet/marvell/sk*
6638
6639 MARVELL LIBERTAS WIRELESS DRIVER
6640 L:      libertas-dev@lists.infradead.org
6641 S:      Orphan
6642 F:      drivers/net/wireless/libertas/
6643
6644 MARVELL MV643XX ETHERNET DRIVER
6645 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
6646 L:      netdev@vger.kernel.org
6647 S:      Maintained
6648 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
6649 F:      include/linux/mv643xx.h
6650
6651 MARVELL MVNETA ETHERNET DRIVER
6652 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
6653 L:      netdev@vger.kernel.org
6654 S:      Maintained
6655 F:      drivers/net/ethernet/marvell/mvneta.*
6656
6657 MARVELL MWIFIEX WIRELESS DRIVER
6658 M:      Amitkumar Karwar <akarwar@marvell.com>
6659 M:      Nishant Sarmukadam <nishants@marvell.com>
6660 L:      linux-wireless@vger.kernel.org
6661 S:      Maintained
6662 F:      drivers/net/wireless/mwifiex/
6663
6664 MARVELL MWL8K WIRELESS DRIVER
6665 M:      Lennert Buytenhek <buytenh@wantstofly.org>
6666 L:      linux-wireless@vger.kernel.org
6667 S:      Odd Fixes
6668 F:      drivers/net/wireless/mwl8k.c
6669
6670 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
6671 M:      Nicolas Pitre <nico@fluxnic.net>
6672 S:      Odd Fixes
6673 F:      drivers/mmc/host/mvsdio.*
6674
6675 MATROX FRAMEBUFFER DRIVER
6676 L:      linux-fbdev@vger.kernel.org
6677 S:      Orphan
6678 F:      drivers/video/fbdev/matrox/matroxfb_*
6679 F:      include/uapi/linux/matroxfb.h
6680
6681 MAX16065 HARDWARE MONITOR DRIVER
6682 M:      Guenter Roeck <linux@roeck-us.net>
6683 L:      lm-sensors@lm-sensors.org
6684 S:      Maintained
6685 F:      Documentation/hwmon/max16065
6686 F:      drivers/hwmon/max16065.c
6687
6688 MAX20751 HARDWARE MONITOR DRIVER
6689 M:      Guenter Roeck <linux@roeck-us.net>
6690 L:      lm-sensors@lm-sensors.org
6691 S:      Maintained
6692 F:      Documentation/hwmon/max20751
6693 F:      drivers/hwmon/max20751.c
6694
6695 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6696 M:      "Hans J. Koch" <hjk@hansjkoch.de>
6697 L:      lm-sensors@lm-sensors.org
6698 S:      Maintained
6699 F:      Documentation/hwmon/max6650
6700 F:      drivers/hwmon/max6650.c
6701
6702 MAX6697 HARDWARE MONITOR DRIVER
6703 M:      Guenter Roeck <linux@roeck-us.net>
6704 L:      lm-sensors@lm-sensors.org
6705 S:      Maintained
6706 F:      Documentation/hwmon/max6697
6707 F:      Documentation/devicetree/bindings/i2c/max6697.txt
6708 F:      drivers/hwmon/max6697.c
6709 F:      include/linux/platform_data/max6697.h
6710
6711 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
6712 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6713 L:      linux-pm@vger.kernel.org
6714 S:      Supported
6715 F:      drivers/power/max14577_charger.c
6716 F:      drivers/power/max77693_charger.c
6717
6718 MAXIM MAX77802 MULTIFUNCTION PMIC DEVICE DRIVERS
6719 M:      Javier Martinez Canillas <javier@osg.samsung.com>
6720 L:      linux-kernel@vger.kernel.org
6721 S:      Supported
6722 F:      drivers/*/*max77802.c
6723 F:      Documentation/devicetree/bindings/*/*max77802.txt
6724 F:      include/dt-bindings/*/*max77802.h
6725
6726 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
6727 M:      Chanwoo Choi <cw00.choi@samsung.com>
6728 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6729 L:      linux-kernel@vger.kernel.org
6730 S:      Supported
6731 F:      drivers/*/max14577.c
6732 F:      drivers/*/max77686.c
6733 F:      drivers/*/max77693.c
6734 F:      drivers/extcon/extcon-max14577.c
6735 F:      drivers/extcon/extcon-max77693.c
6736 F:      drivers/rtc/rtc-max77686.c
6737 F:      drivers/clk/clk-max77686.c
6738 F:      Documentation/devicetree/bindings/mfd/max14577.txt
6739 F:      Documentation/devicetree/bindings/*/max77686.txt
6740 F:      Documentation/devicetree/bindings/mfd/max77693.txt
6741 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
6742 F:      include/linux/mfd/max14577*.h
6743 F:      include/linux/mfd/max77686*.h
6744 F:      include/linux/mfd/max77693*.h
6745
6746 MAXIRADIO FM RADIO RECEIVER DRIVER
6747 M:      Hans Verkuil <hverkuil@xs4all.nl>
6748 L:      linux-media@vger.kernel.org
6749 T:      git git://linuxtv.org/media_tree.git
6750 W:      http://linuxtv.org
6751 S:      Maintained
6752 F:      drivers/media/radio/radio-maxiradio*
6753
6754 MEDIA DRIVERS FOR RENESAS - VSP1
6755 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6756 L:      linux-media@vger.kernel.org
6757 L:      linux-sh@vger.kernel.org
6758 T:      git git://linuxtv.org/media_tree.git
6759 S:      Supported
6760 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
6761 F:      drivers/media/platform/vsp1/
6762
6763 MEDIA DRIVERS FOR ASCOT2E
6764 M:      Sergey Kozlov <serjk@netup.ru>
6765 L:      linux-media@vger.kernel.org
6766 W:      http://linuxtv.org
6767 W:      http://netup.tv/
6768 T:      git git://linuxtv.org/media_tree.git
6769 S:      Supported
6770 F:      drivers/media/dvb-frontends/ascot2e*
6771
6772 MEDIA DRIVERS FOR CXD2841ER
6773 M:      Sergey Kozlov <serjk@netup.ru>
6774 L:      linux-media@vger.kernel.org
6775 W:      http://linuxtv.org/
6776 W:      http://netup.tv/
6777 T:      git git://linuxtv.org/media_tree.git
6778 S:      Supported
6779 F:      drivers/media/dvb-frontends/cxd2841er*
6780
6781 MEDIA DRIVERS FOR HORUS3A
6782 M:      Sergey Kozlov <serjk@netup.ru>
6783 L:      linux-media@vger.kernel.org
6784 W:      http://linuxtv.org/
6785 W:      http://netup.tv/
6786 T:      git git://linuxtv.org/media_tree.git
6787 S:      Supported
6788 F:      drivers/media/dvb-frontends/horus3a*
6789
6790 MEDIA DRIVERS FOR LNBH25
6791 M:      Sergey Kozlov <serjk@netup.ru>
6792 L:      linux-media@vger.kernel.org
6793 W:      http://linuxtv.org/
6794 W:      http://netup.tv/
6795 T:      git git://linuxtv.org/media_tree.git
6796 S:      Supported
6797 F:      drivers/media/dvb-frontends/lnbh25*
6798
6799 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
6800 M:      Sergey Kozlov <serjk@netup.ru>
6801 L:      linux-media@vger.kernel.org
6802 W:      http://linuxtv.org/
6803 W:      http://netup.tv/
6804 T:      git git://linuxtv.org/media_tree.git
6805 S:      Supported
6806 F:      drivers/media/pci/netup_unidvb/*
6807
6808 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
6809 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
6810 P:      LinuxTV.org Project
6811 L:      linux-media@vger.kernel.org
6812 W:      http://linuxtv.org
6813 Q:      http://patchwork.kernel.org/project/linux-media/list/
6814 T:      git git://linuxtv.org/media_tree.git
6815 S:      Maintained
6816 F:      Documentation/dvb/
6817 F:      Documentation/video4linux/
6818 F:      Documentation/DocBook/media/
6819 F:      drivers/media/
6820 F:      drivers/staging/media/
6821 F:      include/media/
6822 F:      include/uapi/linux/dvb/
6823 F:      include/uapi/linux/videodev2.h
6824 F:      include/uapi/linux/media.h
6825 F:      include/uapi/linux/v4l2-*
6826 F:      include/uapi/linux/meye.h
6827 F:      include/uapi/linux/ivtv*
6828 F:      include/uapi/linux/uvcvideo.h
6829
6830 MEDIATEK MT7601U WIRELESS LAN DRIVER
6831 M:      Jakub Kicinski <kubakici@wp.pl>
6832 L:      linux-wireless@vger.kernel.org
6833 S:      Maintained
6834 F:      drivers/net/wireless/mediatek/mt7601u/
6835
6836 MEGARAID SCSI/SAS DRIVERS
6837 M:      Kashyap Desai <kashyap.desai@avagotech.com>
6838 M:      Sumit Saxena <sumit.saxena@avagotech.com>
6839 M:      Uday Lingala <uday.lingala@avagotech.com>
6840 L:      megaraidlinux.pdl@avagotech.com
6841 L:      linux-scsi@vger.kernel.org
6842 W:      http://www.lsi.com
6843 S:      Maintained
6844 F:      Documentation/scsi/megaraid.txt
6845 F:      drivers/scsi/megaraid.*
6846 F:      drivers/scsi/megaraid/
6847
6848 MELLANOX ETHERNET DRIVER (mlx4_en)
6849 M:      Amir Vadai <amirv@mellanox.com>
6850 L:      netdev@vger.kernel.org
6851 S:      Supported
6852 W:      http://www.mellanox.com
6853 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6854 F:      drivers/net/ethernet/mellanox/mlx4/en_*
6855
6856 MELLANOX ETHERNET SWITCH DRIVERS
6857 M:      Jiri Pirko <jiri@mellanox.com>
6858 M:      Ido Schimmel <idosch@mellanox.com>
6859 L:      netdev@vger.kernel.org
6860 S:      Supported
6861 W:      http://www.mellanox.com
6862 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6863 F:      drivers/net/ethernet/mellanox/mlxsw/
6864
6865 MEMBARRIER SUPPORT
6866 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
6867 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
6868 L:      linux-kernel@vger.kernel.org
6869 S:      Supported
6870 F:      kernel/membarrier.c
6871 F:      include/uapi/linux/membarrier.h
6872
6873 MEMORY MANAGEMENT
6874 L:      linux-mm@kvack.org
6875 W:      http://www.linux-mm.org
6876 S:      Maintained
6877 F:      include/linux/mm.h
6878 F:      include/linux/gfp.h
6879 F:      include/linux/mmzone.h
6880 F:      include/linux/memory_hotplug.h
6881 F:      include/linux/vmalloc.h
6882 F:      mm/
6883
6884 MEMORY TECHNOLOGY DEVICES (MTD)
6885 M:      David Woodhouse <dwmw2@infradead.org>
6886 M:      Brian Norris <computersforpeace@gmail.com>
6887 L:      linux-mtd@lists.infradead.org
6888 W:      http://www.linux-mtd.infradead.org/
6889 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
6890 T:      git git://git.infradead.org/linux-mtd.git
6891 T:      git git://git.infradead.org/l2-mtd.git
6892 S:      Maintained
6893 F:      drivers/mtd/
6894 F:      include/linux/mtd/
6895 F:      include/uapi/mtd/
6896
6897 MEN A21 WATCHDOG DRIVER
6898 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6899 L:      linux-watchdog@vger.kernel.org
6900 S:      Maintained
6901 F:      drivers/watchdog/mena21_wdt.c
6902
6903 MEN CHAMELEON BUS (mcb)
6904 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6905 S:      Maintained
6906 F:      drivers/mcb/
6907 F:      include/linux/mcb.h
6908 F:      Documentation/men-chameleon-bus.txt
6909
6910 MEN F21BMC (Board Management Controller)
6911 M:      Andreas Werner <andreas.werner@men.de>
6912 S:      Supported
6913 F:      drivers/mfd/menf21bmc.c
6914 F:      drivers/watchdog/menf21bmc_wdt.c
6915 F:      drivers/leds/leds-menf21bmc.c
6916 F:      drivers/hwmon/menf21bmc_hwmon.c
6917 F:      Documentation/hwmon/menf21bmc
6918
6919 METAG ARCHITECTURE
6920 M:      James Hogan <james.hogan@imgtec.com>
6921 L:      linux-metag@vger.kernel.org
6922 S:      Supported
6923 F:      arch/metag/
6924 F:      Documentation/metag/
6925 F:      Documentation/devicetree/bindings/metag/
6926 F:      drivers/clocksource/metag_generic.c
6927 F:      drivers/irqchip/irq-metag.c
6928 F:      drivers/irqchip/irq-metag-ext.c
6929 F:      drivers/tty/metag_da.c
6930
6931 MICROBLAZE ARCHITECTURE
6932 M:      Michal Simek <monstr@monstr.eu>
6933 W:      http://www.monstr.eu/fdt/
6934 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
6935 S:      Supported
6936 F:      arch/microblaze/
6937
6938 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
6939 M:      Chen Yu <yu.c.chen@intel.com>
6940 L:      platform-driver-x86@vger.kernel.org
6941 S:      Supported
6942 F:      drivers/platform/x86/surfacepro3_button.c
6943
6944 MICROTEK X6 SCANNER
6945 M:      Oliver Neukum <oliver@neukum.org>
6946 S:      Maintained
6947 F:      drivers/usb/image/microtek.*
6948
6949 MIPS
6950 M:      Ralf Baechle <ralf@linux-mips.org>
6951 L:      linux-mips@linux-mips.org
6952 W:      http://www.linux-mips.org/
6953 T:      git git://git.linux-mips.org/pub/scm/ralf/linux.git
6954 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
6955 S:      Supported
6956 F:      Documentation/mips/
6957 F:      arch/mips/
6958
6959 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
6960 M:      Hans Verkuil <hverkuil@xs4all.nl>
6961 L:      linux-media@vger.kernel.org
6962 T:      git git://linuxtv.org/media_tree.git
6963 W:      http://linuxtv.org
6964 S:      Odd Fixes
6965 F:      drivers/media/radio/radio-miropcm20*
6966
6967 Mellanox MLX5 core VPI driver
6968 M:      Eli Cohen <eli@mellanox.com>
6969 L:      netdev@vger.kernel.org
6970 L:      linux-rdma@vger.kernel.org
6971 W:      http://www.mellanox.com
6972 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6973 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
6974 T:      git git://openfabrics.org/~eli/connect-ib.git
6975 S:      Supported
6976 F:      drivers/net/ethernet/mellanox/mlx5/core/
6977 F:      include/linux/mlx5/
6978
6979 Mellanox MLX5 IB driver
6980 M:      Eli Cohen <eli@mellanox.com>
6981 L:      linux-rdma@vger.kernel.org
6982 W:      http://www.mellanox.com
6983 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
6984 T:      git git://openfabrics.org/~eli/connect-ib.git
6985 S:      Supported
6986 F:      include/linux/mlx5/
6987 F:      drivers/infiniband/hw/mlx5/
6988
6989 MN88472 MEDIA DRIVER
6990 M:      Antti Palosaari <crope@iki.fi>
6991 L:      linux-media@vger.kernel.org
6992 W:      http://linuxtv.org/
6993 W:      http://palosaari.fi/linux/
6994 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6995 T:      git git://linuxtv.org/anttip/media_tree.git
6996 S:      Maintained
6997 F:      drivers/staging/media/mn88472/
6998 F:      drivers/media/dvb-frontends/mn88472.h
6999
7000 MN88473 MEDIA DRIVER
7001 M:      Antti Palosaari <crope@iki.fi>
7002 L:      linux-media@vger.kernel.org
7003 W:      http://linuxtv.org/
7004 W:      http://palosaari.fi/linux/
7005 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7006 T:      git git://linuxtv.org/anttip/media_tree.git
7007 S:      Maintained
7008 F:      drivers/staging/media/mn88473/
7009 F:      drivers/media/dvb-frontends/mn88473.h
7010
7011 MODULE SUPPORT
7012 M:      Rusty Russell <rusty@rustcorp.com.au>
7013 S:      Maintained
7014 F:      include/linux/module.h
7015 F:      kernel/module.c
7016
7017 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
7018 W:      http://popies.net/meye/
7019 S:      Orphan
7020 F:      Documentation/video4linux/meye.txt
7021 F:      drivers/media/pci/meye/
7022 F:      include/uapi/linux/meye.h
7023
7024 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
7025 M:      Jiri Slaby <jirislaby@gmail.com>
7026 S:      Maintained
7027 F:      Documentation/serial/moxa-smartio
7028 F:      drivers/tty/mxser.*
7029
7030 MR800 AVERMEDIA USB FM RADIO DRIVER
7031 M:      Alexey Klimov <klimov.linux@gmail.com>
7032 L:      linux-media@vger.kernel.org
7033 T:      git git://linuxtv.org/media_tree.git
7034 S:      Maintained
7035 F:      drivers/media/radio/radio-mr800.c
7036
7037 MRF24J40 IEEE 802.15.4 RADIO DRIVER
7038 M:      Alan Ott <alan@signal11.us>
7039 L:      linux-wpan@vger.kernel.org
7040 S:      Maintained
7041 F:      drivers/net/ieee802154/mrf24j40.c
7042 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
7043
7044 MSI LAPTOP SUPPORT
7045 M:      "Lee, Chun-Yi" <jlee@suse.com>
7046 L:      platform-driver-x86@vger.kernel.org
7047 S:      Maintained
7048 F:      drivers/platform/x86/msi-laptop.c
7049
7050 MSI WMI SUPPORT
7051 L:      platform-driver-x86@vger.kernel.org
7052 S:      Orphan
7053 F:      drivers/platform/x86/msi-wmi.c
7054
7055 MSI001 MEDIA DRIVER
7056 M:      Antti Palosaari <crope@iki.fi>
7057 L:      linux-media@vger.kernel.org
7058 W:      http://linuxtv.org/
7059 W:      http://palosaari.fi/linux/
7060 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7061 T:      git git://linuxtv.org/anttip/media_tree.git
7062 S:      Maintained
7063 F:      drivers/media/tuners/msi001*
7064
7065 MSI2500 MEDIA DRIVER
7066 M:      Antti Palosaari <crope@iki.fi>
7067 L:      linux-media@vger.kernel.org
7068 W:      http://linuxtv.org/
7069 W:      http://palosaari.fi/linux/
7070 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7071 T:      git git://linuxtv.org/anttip/media_tree.git
7072 S:      Maintained
7073 F:      drivers/media/usb/msi2500/
7074
7075 MSYSTEMS DISKONCHIP G3 MTD DRIVER
7076 M:      Robert Jarzmik <robert.jarzmik@free.fr>
7077 L:      linux-mtd@lists.infradead.org
7078 S:      Maintained
7079 F:      drivers/mtd/devices/docg3*
7080
7081 MT9M032 APTINA SENSOR DRIVER
7082 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7083 L:      linux-media@vger.kernel.org
7084 T:      git git://linuxtv.org/media_tree.git
7085 S:      Maintained
7086 F:      drivers/media/i2c/mt9m032.c
7087 F:      include/media/mt9m032.h
7088
7089 MT9P031 APTINA CAMERA SENSOR
7090 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7091 L:      linux-media@vger.kernel.org
7092 T:      git git://linuxtv.org/media_tree.git
7093 S:      Maintained
7094 F:      drivers/media/i2c/mt9p031.c
7095 F:      include/media/mt9p031.h
7096
7097 MT9T001 APTINA CAMERA SENSOR
7098 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7099 L:      linux-media@vger.kernel.org
7100 T:      git git://linuxtv.org/media_tree.git
7101 S:      Maintained
7102 F:      drivers/media/i2c/mt9t001.c
7103 F:      include/media/mt9t001.h
7104
7105 MT9V032 APTINA CAMERA SENSOR
7106 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7107 L:      linux-media@vger.kernel.org
7108 T:      git git://linuxtv.org/media_tree.git
7109 S:      Maintained
7110 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
7111 F:      drivers/media/i2c/mt9v032.c
7112 F:      include/media/mt9v032.h
7113
7114 MULTIFUNCTION DEVICES (MFD)
7115 M:      Samuel Ortiz <sameo@linux.intel.com>
7116 M:      Lee Jones <lee.jones@linaro.org>
7117 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
7118 S:      Supported
7119 F:      drivers/mfd/
7120 F:      include/linux/mfd/
7121
7122 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
7123 M:      Ulf Hansson <ulf.hansson@linaro.org>
7124 L:      linux-mmc@vger.kernel.org
7125 T:      git git://git.linaro.org/people/ulf.hansson/mmc.git
7126 S:      Maintained
7127 F:      drivers/mmc/
7128 F:      include/linux/mmc/
7129 F:      include/uapi/linux/mmc/
7130
7131 MULTIMEDIA CARD (MMC) ETC. OVER SPI
7132 S:      Orphan
7133 F:      drivers/mmc/host/mmc_spi.c
7134 F:      include/linux/spi/mmc_spi.h
7135
7136 MULTISOUND SOUND DRIVER
7137 M:      Andrew Veliath <andrewtv@usa.net>
7138 S:      Maintained
7139 F:      Documentation/sound/oss/MultiSound
7140 F:      sound/oss/msnd*
7141
7142 MULTITECH MULTIPORT CARD (ISICOM)
7143 S:      Orphan
7144 F:      drivers/tty/isicom.c
7145 F:      include/linux/isicom.h
7146
7147 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
7148 M:      Felipe Balbi <balbi@ti.com>
7149 L:      linux-usb@vger.kernel.org
7150 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7151 S:      Maintained
7152 F:      drivers/usb/musb/
7153
7154 MXL5007T MEDIA DRIVER
7155 M:      Michael Krufky <mkrufky@linuxtv.org>
7156 L:      linux-media@vger.kernel.org
7157 W:      http://linuxtv.org/
7158 W:      http://github.com/mkrufky
7159 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7160 T:      git git://linuxtv.org/mkrufky/tuners.git
7161 S:      Maintained
7162 F:      drivers/media/tuners/mxl5007t.*
7163
7164 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
7165 M:      Hyong-Youb Kim <hykim@myri.com>
7166 L:      netdev@vger.kernel.org
7167 W:      https://www.myricom.com/support/downloads/myri10ge.html
7168 S:      Supported
7169 F:      drivers/net/ethernet/myricom/myri10ge/
7170
7171 NATSEMI ETHERNET DRIVER (DP8381x)
7172 S:      Orphan
7173 F:      drivers/net/ethernet/natsemi/natsemi.c
7174
7175 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
7176 M:      Daniel Mack <zonque@gmail.com>
7177 S:      Maintained
7178 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7179 W:      http://www.native-instruments.com
7180 F:      sound/usb/caiaq/
7181
7182 NCP FILESYSTEM
7183 M:      Petr Vandrovec <petr@vandrovec.name>
7184 S:      Odd Fixes
7185 F:      fs/ncpfs/
7186
7187 NCR 5380 SCSI DRIVERS
7188 M:      Finn Thain <fthain@telegraphics.com.au>
7189 M:      Michael Schmitz <schmitzmic@gmail.com>
7190 L:      linux-scsi@vger.kernel.org
7191 S:      Maintained
7192 F:      Documentation/scsi/g_NCR5380.txt
7193 F:      drivers/scsi/NCR5380.*
7194 F:      drivers/scsi/arm/cumana_1.c
7195 F:      drivers/scsi/arm/oak.c
7196 F:      drivers/scsi/atari_NCR5380.c
7197 F:      drivers/scsi/atari_scsi.*
7198 F:      drivers/scsi/dmx3191d.c
7199 F:      drivers/scsi/dtc.*
7200 F:      drivers/scsi/g_NCR5380.*
7201 F:      drivers/scsi/g_NCR5380_mmio.c
7202 F:      drivers/scsi/mac_scsi.*
7203 F:      drivers/scsi/pas16.*
7204 F:      drivers/scsi/sun3_scsi.*
7205 F:      drivers/scsi/sun3_scsi_vme.c
7206 F:      drivers/scsi/t128.*
7207
7208 NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
7209 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
7210 L:      linux-scsi@vger.kernel.org
7211 S:      Maintained
7212 F:      drivers/scsi/NCR_D700.*
7213
7214 NCT6775 HARDWARE MONITOR DRIVER
7215 M:      Guenter Roeck <linux@roeck-us.net>
7216 L:      lm-sensors@lm-sensors.org
7217 S:      Maintained
7218 F:      Documentation/hwmon/nct6775
7219 F:      drivers/hwmon/nct6775.c
7220
7221 NETEFFECT IWARP RNIC DRIVER (IW_NES)
7222 M:      Faisal Latif <faisal.latif@intel.com>
7223 L:      linux-rdma@vger.kernel.org
7224 W:      http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
7225 S:      Supported
7226 F:      drivers/infiniband/hw/nes/
7227
7228 NETEM NETWORK EMULATOR
7229 M:      Stephen Hemminger <stephen@networkplumber.org>
7230 L:      netem@lists.linux-foundation.org
7231 S:      Maintained
7232 F:      net/sched/sch_netem.c
7233
7234 NETERION 10GbE DRIVERS (s2io/vxge)
7235 M:      Jon Mason <jdmason@kudzu.us>
7236 L:      netdev@vger.kernel.org
7237 S:      Supported
7238 F:      Documentation/networking/s2io.txt
7239 F:      Documentation/networking/vxge.txt
7240 F:      drivers/net/ethernet/neterion/
7241
7242 NETFILTER ({IP,IP6,ARP,EB,NF}TABLES)
7243 M:      Pablo Neira Ayuso <pablo@netfilter.org>
7244 M:      Patrick McHardy <kaber@trash.net>
7245 M:      Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
7246 L:      netfilter-devel@vger.kernel.org
7247 L:      coreteam@netfilter.org
7248 W:      http://www.netfilter.org/
7249 W:      http://www.iptables.org/
7250 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
7251 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
7252 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
7253 S:      Supported
7254 F:      include/linux/netfilter*
7255 F:      include/linux/netfilter/
7256 F:      include/net/netfilter/
7257 F:      include/uapi/linux/netfilter*
7258 F:      include/uapi/linux/netfilter/
7259 F:      net/*/netfilter.c
7260 F:      net/*/netfilter/
7261 F:      net/netfilter/
7262 F:      net/bridge/br_netfilter*.c
7263
7264 NETLABEL
7265 M:      Paul Moore <paul@paul-moore.com>
7266 W:      http://netlabel.sf.net
7267 L:      netdev@vger.kernel.org
7268 S:      Maintained
7269 F:      Documentation/netlabel/
7270 F:      include/net/netlabel.h
7271 F:      net/netlabel/
7272
7273 NETROM NETWORK LAYER
7274 M:      Ralf Baechle <ralf@linux-mips.org>
7275 L:      linux-hams@vger.kernel.org
7276 W:      http://www.linux-ax25.org/
7277 S:      Maintained
7278 F:      include/net/netrom.h
7279 F:      include/uapi/linux/netrom.h
7280 F:      net/netrom/
7281
7282 NETWORK BLOCK DEVICE (NBD)
7283 M:      Markus Pargmann <mpa@pengutronix.de>
7284 S:      Maintained
7285 L:      nbd-general@lists.sourceforge.net
7286 T:      git git://git.pengutronix.de/git/mpa/linux-nbd.git
7287 F:      Documentation/blockdev/nbd.txt
7288 F:      drivers/block/nbd.c
7289 F:      include/uapi/linux/nbd.h
7290
7291 NETWORK DROP MONITOR
7292 M:      Neil Horman <nhorman@tuxdriver.com>
7293 L:      netdev@vger.kernel.org
7294 S:      Maintained
7295 W:      https://fedorahosted.org/dropwatch/
7296 F:      net/core/drop_monitor.c
7297
7298 NETWORKING [GENERAL]
7299 M:      "David S. Miller" <davem@davemloft.net>
7300 L:      netdev@vger.kernel.org
7301 W:      http://www.linuxfoundation.org/en/Net
7302 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7303 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7304 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7305 S:      Maintained
7306 F:      net/
7307 F:      include/net/
7308 F:      include/linux/in.h
7309 F:      include/linux/net.h
7310 F:      include/linux/netdevice.h
7311 F:      include/uapi/linux/in.h
7312 F:      include/uapi/linux/net.h
7313 F:      include/uapi/linux/netdevice.h
7314 F:      include/uapi/linux/net_namespace.h
7315 F:      tools/net/
7316 F:      tools/testing/selftests/net/
7317 F:      lib/random32.c
7318 F:      lib/test_bpf.c
7319
7320 NETWORKING [IPv4/IPv6]
7321 M:      "David S. Miller" <davem@davemloft.net>
7322 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
7323 M:      James Morris <jmorris@namei.org>
7324 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
7325 M:      Patrick McHardy <kaber@trash.net>
7326 L:      netdev@vger.kernel.org
7327 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7328 S:      Maintained
7329 F:      net/ipv4/
7330 F:      net/ipv6/
7331 F:      include/net/ip*
7332 F:      arch/x86/net/*
7333
7334 NETWORKING [IPSEC]
7335 M:      Steffen Klassert <steffen.klassert@secunet.com>
7336 M:      Herbert Xu <herbert@gondor.apana.org.au>
7337 M:      "David S. Miller" <davem@davemloft.net>
7338 L:      netdev@vger.kernel.org
7339 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
7340 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
7341 S:      Maintained
7342 F:      net/core/flow.c
7343 F:      net/xfrm/
7344 F:      net/key/
7345 F:      net/ipv4/xfrm*
7346 F:      net/ipv4/esp4.c
7347 F:      net/ipv4/ah4.c
7348 F:      net/ipv4/ipcomp.c
7349 F:      net/ipv4/ip_vti.c
7350 F:      net/ipv6/xfrm*
7351 F:      net/ipv6/esp6.c
7352 F:      net/ipv6/ah6.c
7353 F:      net/ipv6/ipcomp6.c
7354 F:      net/ipv6/ip6_vti.c
7355 F:      include/uapi/linux/xfrm.h
7356 F:      include/net/xfrm.h
7357
7358 NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
7359 M:      Paul Moore <paul@paul-moore.com>
7360 L:      netdev@vger.kernel.org
7361 S:      Maintained
7362
7363 NETWORKING [WIRELESS]
7364 L:      linux-wireless@vger.kernel.org
7365 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7366
7367 NETWORKING DRIVERS
7368 L:      netdev@vger.kernel.org
7369 W:      http://www.linuxfoundation.org/en/Net
7370 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7371 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7372 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7373 S:      Odd Fixes
7374 F:      drivers/net/
7375 F:      include/linux/if_*
7376 F:      include/linux/netdevice.h
7377 F:      include/linux/etherdevice.h
7378 F:      include/linux/fcdevice.h
7379 F:      include/linux/fddidevice.h
7380 F:      include/linux/hippidevice.h
7381 F:      include/linux/inetdevice.h
7382 F:      include/uapi/linux/if_*
7383 F:      include/uapi/linux/netdevice.h
7384
7385 NETWORKING DRIVERS (WIRELESS)
7386 M:      Kalle Valo <kvalo@codeaurora.org>
7387 L:      linux-wireless@vger.kernel.org
7388 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7389 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git/
7390 S:      Maintained
7391 F:      drivers/net/wireless/
7392
7393 NETXEN (1/10) GbE SUPPORT
7394 M:      Manish Chopra <manish.chopra@qlogic.com>
7395 M:      Sony Chacko <sony.chacko@qlogic.com>
7396 M:      Rajesh Borundia <rajesh.borundia@qlogic.com>
7397 L:      netdev@vger.kernel.org
7398 W:      http://www.qlogic.com
7399 S:      Supported
7400 F:      drivers/net/ethernet/qlogic/netxen/
7401
7402 NFC SUBSYSTEM
7403 M:      Lauro Ramos Venancio <lauro.venancio@openbossa.org>
7404 M:      Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
7405 M:      Samuel Ortiz <sameo@linux.intel.com>
7406 L:      linux-wireless@vger.kernel.org
7407 L:      linux-nfc@lists.01.org (subscribers-only)
7408 S:      Supported
7409 F:      net/nfc/
7410 F:      include/net/nfc/
7411 F:      include/uapi/linux/nfc.h
7412 F:      drivers/nfc/
7413 F:      include/linux/platform_data/pn544.h
7414 F:      Documentation/devicetree/bindings/net/nfc/
7415
7416 NFS, SUNRPC, AND LOCKD CLIENTS
7417 M:      Trond Myklebust <trond.myklebust@primarydata.com>
7418 M:      Anna Schumaker <anna.schumaker@netapp.com>
7419 L:      linux-nfs@vger.kernel.org
7420 W:      http://client.linux-nfs.org
7421 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
7422 S:      Maintained
7423 F:      fs/lockd/
7424 F:      fs/nfs/
7425 F:      fs/nfs_common/
7426 F:      net/sunrpc/
7427 F:      include/linux/lockd/
7428 F:      include/linux/nfs*
7429 F:      include/linux/sunrpc/
7430 F:      include/uapi/linux/nfs*
7431 F:      include/uapi/linux/sunrpc/
7432
7433 NILFS2 FILESYSTEM
7434 M:      Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
7435 L:      linux-nilfs@vger.kernel.org
7436 W:      http://nilfs.sourceforge.net/
7437 T:      git git://github.com/konis/nilfs2.git
7438 S:      Supported
7439 F:      Documentation/filesystems/nilfs2.txt
7440 F:      fs/nilfs2/
7441 F:      include/linux/nilfs2_fs.h
7442
7443 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
7444 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7445 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7446 S:      Maintained
7447 F:      Documentation/scsi/NinjaSCSI.txt
7448 F:      drivers/scsi/pcmcia/nsp_*
7449
7450 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
7451 M:      GOTO Masanori <gotom@debian.or.jp>
7452 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7453 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7454 S:      Maintained
7455 F:      Documentation/scsi/NinjaSCSI.txt
7456 F:      drivers/scsi/nsp32*
7457
7458 NIOS2 ARCHITECTURE
7459 M:      Ley Foon Tan <lftan@altera.com>
7460 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
7461 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
7462 S:      Maintained
7463 F:      arch/nios2/
7464
7465 NOKIA N900 POWER SUPPLY DRIVERS
7466 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
7467 S:      Maintained
7468 F:      include/linux/power/bq2415x_charger.h
7469 F:      include/linux/power/bq27x00_battery.h
7470 F:      include/linux/power/isp1704_charger.h
7471 F:      drivers/power/bq2415x_charger.c
7472 F:      drivers/power/bq27x00_battery.c
7473 F:      drivers/power/isp1704_charger.c
7474 F:      drivers/power/rx51_battery.c
7475
7476 NTB DRIVER CORE
7477 M:      Jon Mason <jdmason@kudzu.us>
7478 M:      Dave Jiang <dave.jiang@intel.com>
7479 M:      Allen Hubbe <Allen.Hubbe@emc.com>
7480 L:      linux-ntb@googlegroups.com
7481 S:      Supported
7482 W:      https://github.com/jonmason/ntb/wiki
7483 T:      git git://github.com/jonmason/ntb.git
7484 F:      drivers/ntb/
7485 F:      drivers/net/ntb_netdev.c
7486 F:      include/linux/ntb.h
7487 F:      include/linux/ntb_transport.h
7488
7489 NTB INTEL DRIVER
7490 M:      Jon Mason <jdmason@kudzu.us>
7491 M:      Dave Jiang <dave.jiang@intel.com>
7492 L:      linux-ntb@googlegroups.com
7493 S:      Supported
7494 W:      https://github.com/jonmason/ntb/wiki
7495 T:      git git://github.com/jonmason/ntb.git
7496 F:      drivers/ntb/hw/intel/
7497
7498 NTFS FILESYSTEM
7499 M:      Anton Altaparmakov <anton@tuxera.com>
7500 L:      linux-ntfs-dev@lists.sourceforge.net
7501 W:      http://www.tuxera.com/
7502 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
7503 S:      Supported
7504 F:      Documentation/filesystems/ntfs.txt
7505 F:      fs/ntfs/
7506
7507 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
7508 M:      Antonino Daplas <adaplas@gmail.com>
7509 L:      linux-fbdev@vger.kernel.org
7510 S:      Maintained
7511 F:      drivers/video/fbdev/riva/
7512 F:      drivers/video/fbdev/nvidia/
7513
7514 NVM EXPRESS DRIVER
7515 M:      Matthew Wilcox <willy@linux.intel.com>
7516 L:      linux-nvme@lists.infradead.org
7517 T:      git git://git.infradead.org/users/willy/linux-nvme.git
7518 S:      Supported
7519 F:      drivers/block/nvme*
7520 F:      include/linux/nvme.h
7521
7522 NVMEM FRAMEWORK
7523 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
7524 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
7525 S:      Maintained
7526 F:      drivers/nvmem/
7527 F:      Documentation/devicetree/bindings/nvmem/
7528 F:      include/linux/nvmem-consumer.h
7529 F:      include/linux/nvmem-provider.h
7530
7531 NXP-NCI NFC DRIVER
7532 M:      ClĂ©ment Perrochaud <clement.perrochaud@effinnov.com>
7533 R:      Charles Gorand <charles.gorand@effinnov.com>
7534 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
7535 S:      Supported
7536 F:      drivers/nfc/nxp-nci
7537
7538 NXP TDA998X DRM DRIVER
7539 M:      Russell King <rmk+kernel@arm.linux.org.uk>
7540 S:      Supported
7541 F:      drivers/gpu/drm/i2c/tda998x_drv.c
7542 F:      include/drm/i2c/tda998x.h
7543
7544 NXP TFA9879 DRIVER
7545 M:      Peter Rosin <peda@axentia.se>
7546 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7547 S:      Maintained
7548 F:      sound/soc/codecs/tfa9879*
7549
7550 OMAP SUPPORT
7551 M:      Tony Lindgren <tony@atomide.com>
7552 L:      linux-omap@vger.kernel.org
7553 W:      http://www.muru.com/linux/omap/
7554 W:      http://linux.omap.com/
7555 Q:      http://patchwork.kernel.org/project/linux-omap/list/
7556 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
7557 S:      Maintained
7558 F:      arch/arm/*omap*/
7559 F:      arch/arm/configs/omap1_defconfig
7560 F:      arch/arm/configs/omap2plus_defconfig
7561 F:      drivers/i2c/busses/i2c-omap.c
7562 F:      drivers/irqchip/irq-omap-intc.c
7563 F:      drivers/mfd/*omap*.c
7564 F:      drivers/mfd/menelaus.c
7565 F:      drivers/mfd/palmas.c
7566 F:      drivers/mfd/tps65217.c
7567 F:      drivers/mfd/tps65218.c
7568 F:      drivers/mfd/tps65910.c
7569 F:      drivers/mfd/twl-core.[ch]
7570 F:      drivers/mfd/twl4030*.c
7571 F:      drivers/mfd/twl6030*.c
7572 F:      drivers/mfd/twl6040*.c
7573 F:      drivers/regulator/palmas-regulator*.c
7574 F:      drivers/regulator/pbias-regulator.c
7575 F:      drivers/regulator/tps65217-regulator.c
7576 F:      drivers/regulator/tps65218-regulator.c
7577 F:      drivers/regulator/tps65910-regulator.c
7578 F:      drivers/regulator/twl-regulator.c
7579 F:      include/linux/i2c-omap.h
7580
7581 OMAP DEVICE TREE SUPPORT
7582 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7583 M:      Tony Lindgren <tony@atomide.com>
7584 L:      linux-omap@vger.kernel.org
7585 L:      devicetree@vger.kernel.org
7586 S:      Maintained
7587 F:      arch/arm/boot/dts/*omap*
7588 F:      arch/arm/boot/dts/*am3*
7589 F:      arch/arm/boot/dts/*am4*
7590 F:      arch/arm/boot/dts/*am5*
7591 F:      arch/arm/boot/dts/*dra7*
7592
7593 OMAP CLOCK FRAMEWORK SUPPORT
7594 M:      Paul Walmsley <paul@pwsan.com>
7595 L:      linux-omap@vger.kernel.org
7596 S:      Maintained
7597 F:      arch/arm/*omap*/*clock*
7598
7599 OMAP POWER MANAGEMENT SUPPORT
7600 M:      Kevin Hilman <khilman@deeprootsystems.com>
7601 L:      linux-omap@vger.kernel.org
7602 S:      Maintained
7603 F:      arch/arm/*omap*/*pm*
7604 F:      drivers/cpufreq/omap-cpufreq.c
7605
7606 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
7607 M:      Rajendra Nayak <rnayak@ti.com>
7608 M:      Paul Walmsley <paul@pwsan.com>
7609 L:      linux-omap@vger.kernel.org
7610 S:      Maintained
7611 F:      arch/arm/mach-omap2/prm*
7612
7613 OMAP AUDIO SUPPORT
7614 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
7615 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
7616 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7617 L:      linux-omap@vger.kernel.org
7618 S:      Maintained
7619 F:      sound/soc/omap/
7620
7621 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
7622 M:      Roger Quadros <rogerq@ti.com>
7623 M:      Tony Lindgren <tony@atomide.com>
7624 L:      linux-omap@vger.kernel.org
7625 S:      Maintained
7626 F:      drivers/memory/omap-gpmc.c
7627 F:      arch/arm/mach-omap2/*gpmc*
7628
7629 OMAP FRAMEBUFFER SUPPORT
7630 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
7631 L:      linux-fbdev@vger.kernel.org
7632 L:      linux-omap@vger.kernel.org
7633 S:      Maintained
7634 F:      drivers/video/fbdev/omap/
7635
7636 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
7637 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
7638 L:      linux-omap@vger.kernel.org
7639 L:      linux-fbdev@vger.kernel.org
7640 S:      Maintained
7641 F:      drivers/video/fbdev/omap2/
7642 F:      Documentation/arm/OMAP/DSS
7643
7644 OMAP HARDWARE SPINLOCK SUPPORT
7645 M:      Ohad Ben-Cohen <ohad@wizery.com>
7646 L:      linux-omap@vger.kernel.org
7647 S:      Maintained
7648 F:      drivers/hwspinlock/omap_hwspinlock.c
7649
7650 OMAP MMC SUPPORT
7651 M:      Jarkko Lavinen <jarkko.lavinen@nokia.com>
7652 L:      linux-omap@vger.kernel.org
7653 S:      Maintained
7654 F:      drivers/mmc/host/omap.c
7655
7656 OMAP HS MMC SUPPORT
7657 L:      linux-mmc@vger.kernel.org
7658 L:      linux-omap@vger.kernel.org
7659 S:      Orphan
7660 F:      drivers/mmc/host/omap_hsmmc.c
7661
7662 OMAP RANDOM NUMBER GENERATOR SUPPORT
7663 M:      Deepak Saxena <dsaxena@plexity.net>
7664 S:      Maintained
7665 F:      drivers/char/hw_random/omap-rng.c
7666
7667 OMAP HWMOD SUPPORT
7668 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7669 M:      Paul Walmsley <paul@pwsan.com>
7670 L:      linux-omap@vger.kernel.org
7671 S:      Maintained
7672 F:      arch/arm/mach-omap2/omap_hwmod.*
7673
7674 OMAP HWMOD DATA
7675 M:      Paul Walmsley <paul@pwsan.com>
7676 L:      linux-omap@vger.kernel.org
7677 S:      Maintained
7678 F:      arch/arm/mach-omap2/omap_hwmod*data*
7679
7680 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
7681 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7682 L:      linux-omap@vger.kernel.org
7683 S:      Maintained
7684 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
7685
7686 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
7687 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7688 L:      linux-media@vger.kernel.org
7689 S:      Maintained
7690 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
7691 F:      drivers/media/platform/omap3isp/
7692 F:      drivers/staging/media/omap4iss/
7693
7694 OMAP USB SUPPORT
7695 M:      Felipe Balbi <balbi@ti.com>
7696 L:      linux-usb@vger.kernel.org
7697 L:      linux-omap@vger.kernel.org
7698 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7699 S:      Maintained
7700 F:      drivers/usb/*/*omap*
7701 F:      arch/arm/*omap*/usb*
7702
7703 OMAP GPIO DRIVER
7704 M:      Javier Martinez Canillas <javier@dowhile0.org>
7705 M:      Santosh Shilimkar <ssantosh@kernel.org>
7706 M:      Kevin Hilman <khilman@deeprootsystems.com>
7707 L:      linux-omap@vger.kernel.org
7708 S:      Maintained
7709 F:      drivers/gpio/gpio-omap.c
7710
7711 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
7712 M:      Mark Jackson <mpfj@newflow.co.uk>
7713 L:      linux-omap@vger.kernel.org
7714 S:      Maintained
7715 F:      arch/arm/boot/dts/am335x-nano.dts
7716
7717 OMFS FILESYSTEM
7718 M:      Bob Copeland <me@bobcopeland.com>
7719 L:      linux-karma-devel@lists.sourceforge.net
7720 S:      Maintained
7721 F:      Documentation/filesystems/omfs.txt
7722 F:      fs/omfs/
7723
7724 OMNIKEY CARDMAN 4000 DRIVER
7725 M:      Harald Welte <laforge@gnumonks.org>
7726 S:      Maintained
7727 F:      drivers/char/pcmcia/cm4000_cs.c
7728 F:      include/linux/cm4000_cs.h
7729 F:      include/uapi/linux/cm4000_cs.h
7730
7731 OMNIKEY CARDMAN 4040 DRIVER
7732 M:      Harald Welte <laforge@gnumonks.org>
7733 S:      Maintained
7734 F:      drivers/char/pcmcia/cm4040_cs.*
7735
7736 OMNIVISION OV7670 SENSOR DRIVER
7737 M:      Jonathan Corbet <corbet@lwn.net>
7738 L:      linux-media@vger.kernel.org
7739 T:      git git://linuxtv.org/media_tree.git
7740 S:      Maintained
7741 F:      drivers/media/i2c/ov7670.c
7742
7743 ONENAND FLASH DRIVER
7744 M:      Kyungmin Park <kyungmin.park@samsung.com>
7745 L:      linux-mtd@lists.infradead.org
7746 S:      Maintained
7747 F:      drivers/mtd/onenand/
7748 F:      include/linux/mtd/onenand*.h
7749
7750 ONSTREAM SCSI TAPE DRIVER
7751 M:      Willem Riede <osst@riede.org>
7752 L:      osst-users@lists.sourceforge.net
7753 L:      linux-scsi@vger.kernel.org
7754 S:      Maintained
7755 F:      Documentation/scsi/osst.txt
7756 F:      drivers/scsi/osst.*
7757 F:      drivers/scsi/osst_*.h
7758 F:      drivers/scsi/st.h
7759
7760 OPENCORES I2C BUS DRIVER
7761 M:      Peter Korsgaard <jacmet@sunsite.dk>
7762 L:      linux-i2c@vger.kernel.org
7763 S:      Maintained
7764 F:      Documentation/i2c/busses/i2c-ocores
7765 F:      drivers/i2c/busses/i2c-ocores.c
7766
7767 OPEN FIRMWARE AND FLATTENED DEVICE TREE
7768 M:      Rob Herring <robh+dt@kernel.org>
7769 M:      Frank Rowand <frowand.list@gmail.com>
7770 M:      Grant Likely <grant.likely@linaro.org>
7771 L:      devicetree@vger.kernel.org
7772 W:      http://www.devicetree.org/
7773 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/glikely/linux.git
7774 S:      Maintained
7775 F:      drivers/of/
7776 F:      include/linux/of*.h
7777 F:      scripts/dtc/
7778
7779 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
7780 M:      Rob Herring <robh+dt@kernel.org>
7781 M:      Pawel Moll <pawel.moll@arm.com>
7782 M:      Mark Rutland <mark.rutland@arm.com>
7783 M:      Ian Campbell <ijc+devicetree@hellion.org.uk>
7784 M:      Kumar Gala <galak@codeaurora.org>
7785 L:      devicetree@vger.kernel.org
7786 S:      Maintained
7787 F:      Documentation/devicetree/
7788 F:      arch/*/boot/dts/
7789 F:      include/dt-bindings/
7790
7791 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
7792 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
7793 L:      devicetree@vger.kernel.org
7794 S:      Maintained
7795 F:      Documentation/devicetree/dynamic-resolution-notes.txt
7796 F:      Documentation/devicetree/overlay-notes.txt
7797 F:      drivers/of/overlay.c
7798 F:      drivers/of/resolver.c
7799
7800 OPENRISC ARCHITECTURE
7801 M:      Jonas Bonn <jonas@southpole.se>
7802 W:      http://openrisc.net
7803 L:      linux@lists.openrisc.net (moderated for non-subscribers)
7804 S:      Maintained
7805 T:      git git://openrisc.net/~jonas/linux
7806 F:      arch/openrisc/
7807
7808 OPENVSWITCH
7809 M:      Pravin Shelar <pshelar@nicira.com>
7810 L:      netdev@vger.kernel.org
7811 L:      dev@openvswitch.org
7812 W:      http://openvswitch.org
7813 S:      Maintained
7814 F:      net/openvswitch/
7815 F:      include/uapi/linux/openvswitch.h
7816
7817 OPL4 DRIVER
7818 M:      Clemens Ladisch <clemens@ladisch.de>
7819 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7820 T:      git git://git.alsa-project.org/alsa-kernel.git
7821 S:      Maintained
7822 F:      sound/drivers/opl4/
7823
7824 OPROFILE
7825 M:      Robert Richter <rric@kernel.org>
7826 L:      oprofile-list@lists.sf.net
7827 S:      Maintained
7828 F:      arch/*/include/asm/oprofile*.h
7829 F:      arch/*/oprofile/
7830 F:      drivers/oprofile/
7831 F:      include/linux/oprofile.h
7832
7833 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
7834 M:      Mark Fasheh <mfasheh@suse.com>
7835 M:      Joel Becker <jlbec@evilplan.org>
7836 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
7837 W:      http://ocfs2.wiki.kernel.org
7838 S:      Supported
7839 F:      Documentation/filesystems/ocfs2.txt
7840 F:      Documentation/filesystems/dlmfs.txt
7841 F:      fs/ocfs2/
7842
7843 ORINOCO DRIVER
7844 L:      linux-wireless@vger.kernel.org
7845 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
7846 W:      http://www.nongnu.org/orinoco/
7847 S:      Orphan
7848 F:      drivers/net/wireless/orinoco/
7849
7850 OSD LIBRARY and FILESYSTEM
7851 M:      Boaz Harrosh <ooo@electrozaur.com>
7852 M:      Benny Halevy <bhalevy@primarydata.com>
7853 L:      osd-dev@open-osd.org
7854 W:      http://open-osd.org
7855 T:      git git://git.open-osd.org/open-osd.git
7856 S:      Maintained
7857 F:      drivers/scsi/osd/
7858 F:      include/scsi/osd_*
7859 F:      fs/exofs/
7860
7861 OVERLAY FILESYSTEM
7862 M:      Miklos Szeredi <miklos@szeredi.hu>
7863 L:      linux-unionfs@vger.kernel.org
7864 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
7865 S:      Supported
7866 F:      fs/overlayfs/
7867 F:      Documentation/filesystems/overlayfs.txt
7868
7869 P54 WIRELESS DRIVER
7870 M:      Christian Lamparter <chunkeey@googlemail.com>
7871 L:      linux-wireless@vger.kernel.org
7872 W:      http://wireless.kernel.org/en/users/Drivers/p54
7873 S:      Maintained
7874 F:      drivers/net/wireless/p54/
7875
7876 PA SEMI ETHERNET DRIVER
7877 M:      Olof Johansson <olof@lixom.net>
7878 L:      netdev@vger.kernel.org
7879 S:      Maintained
7880 F:      drivers/net/ethernet/pasemi/*
7881
7882 PA SEMI SMBUS DRIVER
7883 M:      Olof Johansson <olof@lixom.net>
7884 L:      linux-i2c@vger.kernel.org
7885 S:      Maintained
7886 F:      drivers/i2c/busses/i2c-pasemi.c
7887
7888 PADATA PARALLEL EXECUTION MECHANISM
7889 M:      Steffen Klassert <steffen.klassert@secunet.com>
7890 L:      linux-crypto@vger.kernel.org
7891 S:      Maintained
7892 F:      kernel/padata.c
7893 F:      include/linux/padata.h
7894 F:      Documentation/padata.txt
7895
7896 PANASONIC LAPTOP ACPI EXTRAS DRIVER
7897 M:      Harald Welte <laforge@gnumonks.org>
7898 L:      platform-driver-x86@vger.kernel.org
7899 S:      Maintained
7900 F:      drivers/platform/x86/panasonic-laptop.c
7901
7902 PANASONIC MN10300/AM33/AM34 PORT
7903 M:      David Howells <dhowells@redhat.com>
7904 M:      Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
7905 L:      linux-am33-list@redhat.com (moderated for non-subscribers)
7906 W:      ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
7907 S:      Maintained
7908 F:      Documentation/mn10300/
7909 F:      arch/mn10300/
7910
7911 PARALLEL PORT SUBSYSTEM
7912 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
7913 M:      Sudip Mukherjee <sudip@vectorindia.org>
7914 L:      linux-parport@lists.infradead.org (subscribers-only)
7915 S:      Maintained
7916 F:      drivers/parport/
7917 F:      include/linux/parport*.h
7918 F:      drivers/char/ppdev.c
7919 F:      include/uapi/linux/ppdev.h
7920 F:      Documentation/parport*.txt
7921
7922 PARAVIRT_OPS INTERFACE
7923 M:      Jeremy Fitzhardinge <jeremy@goop.org>
7924 M:      Chris Wright <chrisw@sous-sol.org>
7925 M:      Alok Kataria <akataria@vmware.com>
7926 M:      Rusty Russell <rusty@rustcorp.com.au>
7927 L:      virtualization@lists.linux-foundation.org
7928 S:      Supported
7929 F:      Documentation/virtual/paravirt_ops.txt
7930 F:      arch/*/kernel/paravirt*
7931 F:      arch/*/include/asm/paravirt.h
7932
7933 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
7934 M:      Tim Waugh <tim@cyberelk.net>
7935 L:      linux-parport@lists.infradead.org (subscribers-only)
7936 S:      Maintained
7937 F:      Documentation/blockdev/paride.txt
7938 F:      drivers/block/paride/
7939
7940 PARISC ARCHITECTURE
7941 M:      "James E.J. Bottomley" <jejb@parisc-linux.org>
7942 M:      Helge Deller <deller@gmx.de>
7943 L:      linux-parisc@vger.kernel.org
7944 W:      http://www.parisc-linux.org/
7945 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
7946 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
7947 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
7948 S:      Maintained
7949 F:      arch/parisc/
7950 F:      Documentation/parisc/
7951 F:      drivers/parisc/
7952 F:      drivers/char/agp/parisc-agp.c
7953 F:      drivers/input/serio/gscps2.c
7954 F:      drivers/parport/parport_gsc.*
7955 F:      drivers/tty/serial/8250/8250_gsc.c
7956 F:      drivers/video/fbdev/sti*
7957 F:      drivers/video/console/sti*
7958 F:      drivers/video/logo/logo_parisc*
7959
7960 PC87360 HARDWARE MONITORING DRIVER
7961 M:      Jim Cromie <jim.cromie@gmail.com>
7962 L:      lm-sensors@lm-sensors.org
7963 S:      Maintained
7964 F:      Documentation/hwmon/pc87360
7965 F:      drivers/hwmon/pc87360.c
7966
7967 PC8736x GPIO DRIVER
7968 M:      Jim Cromie <jim.cromie@gmail.com>
7969 S:      Maintained
7970 F:      drivers/char/pc8736x_gpio.c
7971
7972 PC87427 HARDWARE MONITORING DRIVER
7973 M:      Jean Delvare <jdelvare@suse.com>
7974 L:      lm-sensors@lm-sensors.org
7975 S:      Maintained
7976 F:      Documentation/hwmon/pc87427
7977 F:      drivers/hwmon/pc87427.c
7978
7979 PCA9532 LED DRIVER
7980 M:      Riku Voipio <riku.voipio@iki.fi>
7981 S:      Maintained
7982 F:      drivers/leds/leds-pca9532.c
7983 F:      include/linux/leds-pca9532.h
7984
7985 PCA9541 I2C BUS MASTER SELECTOR DRIVER
7986 M:      Guenter Roeck <linux@roeck-us.net>
7987 L:      linux-i2c@vger.kernel.org
7988 S:      Maintained
7989 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
7990
7991 PCDP - PRIMARY CONSOLE AND DEBUG PORT
7992 M:      Khalid Aziz <khalid@gonehiking.org>
7993 S:      Maintained
7994 F:      drivers/firmware/pcdp.*
7995
7996 PCI ERROR RECOVERY
7997 M:      Linas Vepstas <linasvepstas@gmail.com>
7998 L:      linux-pci@vger.kernel.org
7999 S:      Supported
8000 F:      Documentation/PCI/pci-error-recovery.txt
8001
8002 PCI SUBSYSTEM
8003 M:      Bjorn Helgaas <bhelgaas@google.com>
8004 L:      linux-pci@vger.kernel.org
8005 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
8006 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
8007 S:      Supported
8008 F:      Documentation/PCI/
8009 F:      drivers/pci/
8010 F:      include/linux/pci*
8011 F:      arch/x86/pci/
8012 F:      arch/x86/kernel/quirks.c
8013
8014 PCI DRIVER FOR ALTERA PCIE IP
8015 M:      Ley Foon Tan <lftan@altera.com>
8016 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
8017 L:      linux-pci@vger.kernel.org
8018 S:      Supported
8019 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
8020 F:      drivers/pci/host/pcie-altera.c
8021
8022 PCI DRIVER FOR ARM VERSATILE PLATFORM
8023 M:      Rob Herring <robh@kernel.org>
8024 L:      linux-pci@vger.kernel.org
8025 L:      linux-arm-kernel@lists.infradead.org
8026 S:      Maintained
8027 F:      Documentation/devicetree/bindings/pci/versatile.txt
8028 F:      drivers/pci/host/pci-versatile.c
8029
8030 PCI DRIVER FOR APPLIEDMICRO XGENE
8031 M:      Tanmay Inamdar <tinamdar@apm.com>
8032 L:      linux-pci@vger.kernel.org
8033 L:      linux-arm-kernel@lists.infradead.org
8034 S:      Maintained
8035 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
8036 F:      drivers/pci/host/pci-xgene.c
8037
8038 PCI DRIVER FOR FREESCALE LAYERSCAPE
8039 M:      Minghuan Lian <minghuan.Lian@freescale.com>
8040 M:      Mingkai Hu <mingkai.hu@freescale.com>
8041 M:      Roy Zang <tie-fei.zang@freescale.com>
8042 L:      linuxppc-dev@lists.ozlabs.org
8043 L:      linux-pci@vger.kernel.org
8044 L:      linux-arm-kernel@lists.infradead.org
8045 S:      Maintained
8046 F:      drivers/pci/host/*layerscape*
8047
8048 PCI DRIVER FOR IMX6
8049 M:      Richard Zhu <Richard.Zhu@freescale.com>
8050 M:      Lucas Stach <l.stach@pengutronix.de>
8051 L:      linux-pci@vger.kernel.org
8052 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8053 S:      Maintained
8054 F:      drivers/pci/host/*imx6*
8055
8056 PCI DRIVER FOR TI KEYSTONE
8057 M:      Murali Karicheri <m-karicheri2@ti.com>
8058 L:      linux-pci@vger.kernel.org
8059 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8060 S:      Maintained
8061 F:      drivers/pci/host/*keystone*
8062
8063 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
8064 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8065 M:      Jason Cooper <jason@lakedaemon.net>
8066 L:      linux-pci@vger.kernel.org
8067 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8068 S:      Maintained
8069 F:      drivers/pci/host/*mvebu*
8070
8071 PCI DRIVER FOR NVIDIA TEGRA
8072 M:      Thierry Reding <thierry.reding@gmail.com>
8073 L:      linux-tegra@vger.kernel.org
8074 L:      linux-pci@vger.kernel.org
8075 S:      Supported
8076 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
8077 F:      drivers/pci/host/pci-tegra.c
8078
8079 PCI DRIVER FOR TI DRA7XX
8080 M:      Kishon Vijay Abraham I <kishon@ti.com>
8081 L:      linux-omap@vger.kernel.org
8082 L:      linux-pci@vger.kernel.org
8083 S:      Supported
8084 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
8085 F:      drivers/pci/host/pci-dra7xx.c
8086
8087 PCI DRIVER FOR RENESAS R-CAR
8088 M:      Simon Horman <horms@verge.net.au>
8089 L:      linux-pci@vger.kernel.org
8090 L:      linux-sh@vger.kernel.org
8091 S:      Maintained
8092 F:      drivers/pci/host/*rcar*
8093
8094 PCI DRIVER FOR SAMSUNG EXYNOS
8095 M:      Jingoo Han <jingoohan1@gmail.com>
8096 L:      linux-pci@vger.kernel.org
8097 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8098 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8099 S:      Maintained
8100 F:      drivers/pci/host/pci-exynos.c
8101
8102 PCI DRIVER FOR SYNOPSIS DESIGNWARE
8103 M:      Jingoo Han <jingoohan1@gmail.com>
8104 M:      Pratyush Anand <pratyush.anand@gmail.com>
8105 L:      linux-pci@vger.kernel.org
8106 S:      Maintained
8107 F:      drivers/pci/host/*designware*
8108
8109 PCI DRIVER FOR GENERIC OF HOSTS
8110 M:      Will Deacon <will.deacon@arm.com>
8111 L:      linux-pci@vger.kernel.org
8112 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8113 S:      Maintained
8114 F:      Documentation/devicetree/bindings/pci/host-generic-pci.txt
8115 F:      drivers/pci/host/pci-host-generic.c
8116
8117 PCIE DRIVER FOR ST SPEAR13XX
8118 M:      Pratyush Anand <pratyush.anand@gmail.com>
8119 L:      linux-pci@vger.kernel.org
8120 S:      Maintained
8121 F:      drivers/pci/host/*spear*
8122
8123 PCI MSI DRIVER FOR ALTERA MSI IP
8124 M:      Ley Foon Tan <lftan@altera.com>
8125 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
8126 L:      linux-pci@vger.kernel.org
8127 S:      Supported
8128 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
8129 F:      drivers/pci/host/pcie-altera-msi.c
8130
8131 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
8132 M:      Duc Dang <dhdang@apm.com>
8133 L:      linux-pci@vger.kernel.org
8134 L:      linux-arm-kernel@lists.infradead.org
8135 S:      Maintained
8136 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
8137 F:      drivers/pci/host/pci-xgene-msi.c
8138
8139 PCIE DRIVER FOR HISILICON
8140 M:      Zhou Wang <wangzhou1@hisilicon.com>
8141 L:      linux-pci@vger.kernel.org
8142 S:      Maintained
8143 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
8144 F:      drivers/pci/host/pcie-hisi.c
8145
8146 PCMCIA SUBSYSTEM
8147 P:      Linux PCMCIA Team
8148 L:      linux-pcmcia@lists.infradead.org
8149 W:      http://lists.infradead.org/mailman/listinfo/linux-pcmcia
8150 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
8151 S:      Maintained
8152 F:      Documentation/pcmcia/
8153 F:      drivers/pcmcia/
8154 F:      include/pcmcia/
8155
8156 PCNET32 NETWORK DRIVER
8157 M:      Don Fry <pcnet32@frontier.com>
8158 L:      netdev@vger.kernel.org
8159 S:      Maintained
8160 F:      drivers/net/ethernet/amd/pcnet32.c
8161
8162 PCRYPT PARALLEL CRYPTO ENGINE
8163 M:      Steffen Klassert <steffen.klassert@secunet.com>
8164 L:      linux-crypto@vger.kernel.org
8165 S:      Maintained
8166 F:      crypto/pcrypt.c
8167 F:      include/crypto/pcrypt.h
8168
8169 PER-CPU MEMORY ALLOCATOR
8170 M:      Tejun Heo <tj@kernel.org>
8171 M:      Christoph Lameter <cl@linux-foundation.org>
8172 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
8173 S:      Maintained
8174 F:      include/linux/percpu*.h
8175 F:      mm/percpu*.c
8176 F:      arch/*/include/asm/percpu.h
8177
8178 PER-TASK DELAY ACCOUNTING
8179 M:      Balbir Singh <bsingharora@gmail.com>
8180 S:      Maintained
8181 F:      include/linux/delayacct.h
8182 F:      kernel/delayacct.c
8183
8184 PERFORMANCE EVENTS SUBSYSTEM
8185 M:      Peter Zijlstra <a.p.zijlstra@chello.nl>
8186 M:      Ingo Molnar <mingo@redhat.com>
8187 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
8188 L:      linux-kernel@vger.kernel.org
8189 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
8190 S:      Supported
8191 F:      kernel/events/*
8192 F:      include/linux/perf_event.h
8193 F:      include/uapi/linux/perf_event.h
8194 F:      arch/*/kernel/perf_event*.c
8195 F:      arch/*/kernel/*/perf_event*.c
8196 F:      arch/*/kernel/*/*/perf_event*.c
8197 F:      arch/*/include/asm/perf_event.h
8198 F:      arch/*/kernel/perf_callchain.c
8199 F:      tools/perf/
8200
8201 PERSONALITY HANDLING
8202 M:      Christoph Hellwig <hch@infradead.org>
8203 L:      linux-abi-devel@lists.sourceforge.net
8204 S:      Maintained
8205 F:      include/linux/personality.h
8206 F:      include/uapi/linux/personality.h
8207
8208 PHONET PROTOCOL
8209 M:      Remi Denis-Courmont <courmisch@gmail.com>
8210 S:      Supported
8211 F:      Documentation/networking/phonet.txt
8212 F:      include/linux/phonet.h
8213 F:      include/net/phonet/
8214 F:      include/uapi/linux/phonet.h
8215 F:      net/phonet/
8216
8217 PHRAM MTD DRIVER
8218 M:      Joern Engel <joern@lazybastard.org>
8219 L:      linux-mtd@lists.infradead.org
8220 S:      Maintained
8221 F:      drivers/mtd/devices/phram.c
8222
8223 PICOLCD HID DRIVER
8224 M:      Bruno PrĂ©mont <bonbons@linux-vserver.org>
8225 L:      linux-input@vger.kernel.org
8226 S:      Maintained
8227 F:      drivers/hid/hid-picolcd*
8228
8229 PICOXCELL SUPPORT
8230 M:      Jamie Iles <jamie@jamieiles.com>
8231 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8232 T:      git git://github.com/jamieiles/linux-2.6-ji.git
8233 S:      Supported
8234 F:      arch/arm/boot/dts/picoxcell*
8235 F:      arch/arm/mach-picoxcell/
8236 F:      drivers/crypto/picoxcell*
8237
8238 PIN CONTROL SUBSYSTEM
8239 M:      Linus Walleij <linus.walleij@linaro.org>
8240 L:      linux-gpio@vger.kernel.org
8241 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
8242 S:      Maintained
8243 F:      drivers/pinctrl/
8244 F:      include/linux/pinctrl/
8245
8246 PIN CONTROLLER - ATMEL AT91
8247 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
8248 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8249 S:      Maintained
8250 F:      drivers/pinctrl/pinctrl-at91.*
8251
8252 PIN CONTROLLER - ATMEL AT91 PIO4
8253 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
8254 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8255 L:      linux-gpio@vger.kernel.org
8256 S:      Supported
8257 F:      drivers/pinctrl/pinctrl-at91-pio4.*
8258
8259 PIN CONTROLLER - INTEL
8260 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8261 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
8262 S:      Maintained
8263 F:      drivers/pinctrl/intel/
8264
8265 PIN CONTROLLER - RENESAS
8266 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8267 L:      linux-sh@vger.kernel.org
8268 S:      Maintained
8269 F:      drivers/pinctrl/sh-pfc/
8270
8271 PIN CONTROLLER - SAMSUNG
8272 M:      Tomasz Figa <tomasz.figa@gmail.com>
8273 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8274 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8275 S:      Maintained
8276 F:      drivers/pinctrl/samsung/
8277
8278 PIN CONTROLLER - ST SPEAR
8279 M:      Viresh Kumar <vireshk@kernel.org>
8280 L:      spear-devel@list.st.com
8281 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8282 W:      http://www.st.com/spear
8283 S:      Maintained
8284 F:      drivers/pinctrl/spear/
8285
8286 PKTCDVD DRIVER
8287 M:      Jiri Kosina <jikos@kernel.org>
8288 S:      Maintained
8289 F:      drivers/block/pktcdvd.c
8290 F:      include/linux/pktcdvd.h
8291 F:      include/uapi/linux/pktcdvd.h
8292
8293 PKUNITY SOC DRIVERS
8294 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
8295 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
8296 S:      Maintained
8297 T:      git git://github.com/gxt/linux.git
8298 F:      drivers/input/serio/i8042-unicore32io.h
8299 F:      drivers/i2c/busses/i2c-puv3.c
8300 F:      drivers/video/fbdev/fb-puv3.c
8301 F:      drivers/rtc/rtc-puv3.c
8302
8303 PMBUS HARDWARE MONITORING DRIVERS
8304 M:      Guenter Roeck <linux@roeck-us.net>
8305 L:      lm-sensors@lm-sensors.org
8306 W:      http://www.lm-sensors.org/
8307 W:      http://www.roeck-us.net/linux/drivers/
8308 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8309 S:      Maintained
8310 F:      Documentation/hwmon/pmbus
8311 F:      drivers/hwmon/pmbus/
8312 F:      include/linux/i2c/pmbus.h
8313
8314 PMC SIERRA MaxRAID DRIVER
8315 L:      linux-scsi@vger.kernel.org
8316 W:      http://www.pmc-sierra.com/
8317 S:      Orphan
8318 F:      drivers/scsi/pmcraid.*
8319
8320 PMC SIERRA PM8001 DRIVER
8321 M:      Jack Wang <jinpu.wang@profitbricks.com>
8322 M:      lindar_liu@usish.com
8323 L:      pmchba@pmcs.com
8324 L:      linux-scsi@vger.kernel.org
8325 S:      Supported
8326 F:      drivers/scsi/pm8001/
8327
8328 POSIX CLOCKS and TIMERS
8329 M:      Thomas Gleixner <tglx@linutronix.de>
8330 L:      linux-kernel@vger.kernel.org
8331 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8332 S:      Maintained
8333 F:      fs/timerfd.c
8334 F:      include/linux/timer*
8335 F:      kernel/time/*timer*
8336
8337 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
8338 M:      Sebastian Reichel <sre@kernel.org>
8339 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
8340 M:      David Woodhouse <dwmw2@infradead.org>
8341 L:      linux-pm@vger.kernel.org
8342 T:      git git://git.infradead.org/battery-2.6.git
8343 S:      Maintained
8344 F:      include/linux/power_supply.h
8345 F:      drivers/power/
8346 X:      drivers/power/avs/
8347
8348 POWER STATE COORDINATION INTERFACE (PSCI)
8349 M:      Mark Rutland <mark.rutland@arm.com>
8350 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
8351 L:      linux-arm-kernel@lists.infradead.org
8352 S:      Maintained
8353 F:      drivers/firmware/psci.c
8354 F:      include/linux/psci.h
8355 F:      include/uapi/linux/psci.h
8356
8357 PNP SUPPORT
8358 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
8359 S:      Maintained
8360 F:      drivers/pnp/
8361
8362 PNXxxxx I2C DRIVER
8363 M:      Vitaly Wool <vitalywool@gmail.com>
8364 L:      linux-i2c@vger.kernel.org
8365 S:      Maintained
8366 F:      drivers/i2c/busses/i2c-pnx.c
8367
8368 PPP PROTOCOL DRIVERS AND COMPRESSORS
8369 M:      Paul Mackerras <paulus@samba.org>
8370 L:      linux-ppp@vger.kernel.org
8371 S:      Maintained
8372 F:      drivers/net/ppp/ppp_*
8373
8374 PPP OVER ATM (RFC 2364)
8375 M:      Mitchell Blank Jr <mitch@sfgoth.com>
8376 S:      Maintained
8377 F:      net/atm/pppoatm.c
8378 F:      include/uapi/linux/atmppp.h
8379
8380 PPP OVER ETHERNET
8381 M:      Michal Ostrowski <mostrows@earthlink.net>
8382 S:      Maintained
8383 F:      drivers/net/ppp/pppoe.c
8384 F:      drivers/net/ppp/pppox.c
8385
8386 PPP OVER L2TP
8387 M:      James Chapman <jchapman@katalix.com>
8388 S:      Maintained
8389 F:      net/l2tp/l2tp_ppp.c
8390 F:      include/linux/if_pppol2tp.h
8391 F:      include/uapi/linux/if_pppol2tp.h
8392
8393 PPS SUPPORT
8394 M:      Rodolfo Giometti <giometti@enneenne.com>
8395 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
8396 L:      linuxpps@ml.enneenne.com (subscribers-only)
8397 S:      Maintained
8398 F:      Documentation/pps/
8399 F:      drivers/pps/
8400 F:      include/linux/pps*.h
8401
8402 PPTP DRIVER
8403 M:      Dmitry Kozlov <xeb@mail.ru>
8404 L:      netdev@vger.kernel.org
8405 S:      Maintained
8406 F:      drivers/net/ppp/pptp.c
8407 W:      http://sourceforge.net/projects/accel-pptp
8408
8409 PREEMPTIBLE KERNEL
8410 M:      Robert Love <rml@tech9.net>
8411 L:      kpreempt-tech@lists.sourceforge.net
8412 W:      ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
8413 S:      Supported
8414 F:      Documentation/preempt-locking.txt
8415 F:      include/linux/preempt.h
8416
8417 PRISM54 WIRELESS DRIVER
8418 M:      "Luis R. Rodriguez" <mcgrof@gmail.com>
8419 L:      linux-wireless@vger.kernel.org
8420 W:      http://wireless.kernel.org/en/users/Drivers/p54
8421 S:      Obsolete
8422 F:      drivers/net/wireless/prism54/
8423
8424 PS3 NETWORK SUPPORT
8425 M:      Geoff Levand <geoff@infradead.org>
8426 L:      netdev@vger.kernel.org
8427 L:      linuxppc-dev@lists.ozlabs.org
8428 S:      Maintained
8429 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
8430
8431 PS3 PLATFORM SUPPORT
8432 M:      Geoff Levand <geoff@infradead.org>
8433 L:      linuxppc-dev@lists.ozlabs.org
8434 S:      Maintained
8435 F:      arch/powerpc/boot/ps3*
8436 F:      arch/powerpc/include/asm/lv1call.h
8437 F:      arch/powerpc/include/asm/ps3*.h
8438 F:      arch/powerpc/platforms/ps3/
8439 F:      drivers/*/ps3*
8440 F:      drivers/ps3/
8441 F:      drivers/rtc/rtc-ps3.c
8442 F:      drivers/usb/host/*ps3.c
8443 F:      sound/ppc/snd_ps3*
8444
8445 PS3VRAM DRIVER
8446 M:      Jim Paris <jim@jtan.com>
8447 M:      Geoff Levand <geoff@infradead.org>
8448 L:      linuxppc-dev@lists.ozlabs.org
8449 S:      Maintained
8450 F:      drivers/block/ps3vram.c
8451
8452 PSTORE FILESYSTEM
8453 M:      Anton Vorontsov <anton@enomsg.org>
8454 M:      Colin Cross <ccross@android.com>
8455 M:      Kees Cook <keescook@chromium.org>
8456 M:      Tony Luck <tony.luck@intel.com>
8457 S:      Maintained
8458 T:      git git://git.infradead.org/users/cbou/linux-pstore.git
8459 F:      fs/pstore/
8460 F:      include/linux/pstore*
8461 F:      drivers/firmware/efi/efi-pstore.c
8462 F:      drivers/acpi/apei/erst.c
8463
8464 PTP HARDWARE CLOCK SUPPORT
8465 M:      Richard Cochran <richardcochran@gmail.com>
8466 L:      netdev@vger.kernel.org
8467 S:      Maintained
8468 W:      http://linuxptp.sourceforge.net/
8469 F:      Documentation/ABI/testing/sysfs-ptp
8470 F:      Documentation/ptp/*
8471 F:      drivers/net/ethernet/freescale/gianfar_ptp.c
8472 F:      drivers/net/phy/dp83640*
8473 F:      drivers/ptp/*
8474 F:      include/linux/ptp_cl*
8475
8476 PTRACE SUPPORT
8477 M:      Roland McGrath <roland@hack.frob.com>
8478 M:      Oleg Nesterov <oleg@redhat.com>
8479 S:      Maintained
8480 F:      include/asm-generic/syscall.h
8481 F:      include/linux/ptrace.h
8482 F:      include/linux/regset.h
8483 F:      include/linux/tracehook.h
8484 F:      include/uapi/linux/ptrace.h
8485 F:      kernel/ptrace.c
8486
8487 PVRUSB2 VIDEO4LINUX DRIVER
8488 M:      Mike Isely <isely@pobox.com>
8489 L:      pvrusb2@isely.net       (subscribers-only)
8490 L:      linux-media@vger.kernel.org
8491 W:      http://www.isely.net/pvrusb2/
8492 T:      git git://linuxtv.org/media_tree.git
8493 S:      Maintained
8494 F:      Documentation/video4linux/README.pvrusb2
8495 F:      drivers/media/usb/pvrusb2/
8496
8497 PWC WEBCAM DRIVER
8498 M:      Hans de Goede <hdegoede@redhat.com>
8499 L:      linux-media@vger.kernel.org
8500 T:      git git://linuxtv.org/media_tree.git
8501 S:      Maintained
8502 F:      drivers/media/usb/pwc/*
8503
8504 PWM FAN DRIVER
8505 M:      Kamil Debski <k.debski@samsung.com>
8506 L:      lm-sensors@lm-sensors.org
8507 S:      Supported
8508 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
8509 F:      Documentation/hwmon/pwm-fan
8510 F:      drivers/hwmon/pwm-fan.c
8511
8512 PWM SUBSYSTEM
8513 M:      Thierry Reding <thierry.reding@gmail.com>
8514 L:      linux-pwm@vger.kernel.org
8515 S:      Maintained
8516 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
8517 F:      Documentation/pwm.txt
8518 F:      Documentation/devicetree/bindings/pwm/
8519 F:      include/linux/pwm.h
8520 F:      drivers/pwm/
8521 F:      drivers/video/backlight/pwm_bl.c
8522 F:      include/linux/pwm_backlight.h
8523
8524 PXA2xx/PXA3xx SUPPORT
8525 M:      Daniel Mack <daniel@zonque.org>
8526 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
8527 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8528 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8529 T:      git git://github.com/hzhuang1/linux.git
8530 T:      git git://github.com/rjarzmik/linux.git
8531 S:      Maintained
8532 F:      arch/arm/mach-pxa/
8533 F:      drivers/dma/pxa*
8534 F:      drivers/pcmcia/pxa2xx*
8535 F:      drivers/spi/spi-pxa2xx*
8536 F:      drivers/usb/gadget/udc/pxa2*
8537 F:      include/sound/pxa2xx-lib.h
8538 F:      sound/arm/pxa*
8539 F:      sound/soc/pxa/
8540
8541 PXA3xx NAND FLASH DRIVER
8542 M:      Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
8543 L:      linux-mtd@lists.infradead.org
8544 S:      Maintained
8545 F:      drivers/mtd/nand/pxa3xx_nand.c
8546
8547 MMP SUPPORT
8548 M:      Eric Miao <eric.y.miao@gmail.com>
8549 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
8550 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8551 T:      git git://github.com/hzhuang1/linux.git
8552 T:      git git://git.linaro.org/people/ycmiao/pxa-linux.git
8553 S:      Maintained
8554 F:      arch/arm/mach-mmp/
8555
8556 PXA MMCI DRIVER
8557 S:      Orphan
8558
8559 PXA RTC DRIVER
8560 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8561 L:      rtc-linux@googlegroups.com
8562 S:      Maintained
8563
8564 QAT DRIVER
8565 M:      Tadeusz Struk <tadeusz.struk@intel.com>
8566 L:      qat-linux@intel.com
8567 S:      Supported
8568 F:      drivers/crypto/qat/
8569
8570 QIB DRIVER
8571 M:      Mike Marciniszyn <infinipath@intel.com>
8572 L:      linux-rdma@vger.kernel.org
8573 S:      Supported
8574 F:      drivers/infiniband/hw/qib/
8575
8576 QLOGIC QLA1280 SCSI DRIVER
8577 M:      Michael Reed <mdr@sgi.com>
8578 L:      linux-scsi@vger.kernel.org
8579 S:      Maintained
8580 F:      drivers/scsi/qla1280.[ch]
8581
8582 QLOGIC QLA2XXX FC-SCSI DRIVER
8583 M:      qla2xxx-upstream@qlogic.com
8584 L:      linux-scsi@vger.kernel.org
8585 S:      Supported
8586 F:      Documentation/scsi/LICENSE.qla2xxx
8587 F:      drivers/scsi/qla2xxx/
8588
8589 QLOGIC QLA4XXX iSCSI DRIVER
8590 M:      QLogic-Storage-Upstream@qlogic.com
8591 L:      linux-scsi@vger.kernel.org
8592 S:      Supported
8593 F:      Documentation/scsi/LICENSE.qla4xxx
8594 F:      drivers/scsi/qla4xxx/
8595
8596 QLOGIC QLA3XXX NETWORK DRIVER
8597 M:      Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
8598 M:      Ron Mercer <ron.mercer@qlogic.com>
8599 M:      linux-driver@qlogic.com
8600 L:      netdev@vger.kernel.org
8601 S:      Supported
8602 F:      Documentation/networking/LICENSE.qla3xxx
8603 F:      drivers/net/ethernet/qlogic/qla3xxx.*
8604
8605 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
8606 M:      Dept-GELinuxNICDev@qlogic.com
8607 L:      netdev@vger.kernel.org
8608 S:      Supported
8609 F:      drivers/net/ethernet/qlogic/qlcnic/
8610
8611 QLOGIC QLGE 10Gb ETHERNET DRIVER
8612 M:      Harish Patil <harish.patil@qlogic.com>
8613 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
8614 M:      Dept-GELinuxNICDev@qlogic.com
8615 M:      linux-driver@qlogic.com
8616 L:      netdev@vger.kernel.org
8617 S:      Supported
8618 F:      drivers/net/ethernet/qlogic/qlge/
8619
8620 QLOGIC QL4xxx ETHERNET DRIVER
8621 M:      Yuval Mintz <Yuval.Mintz@qlogic.com>
8622 M:      Ariel Elior <Ariel.Elior@qlogic.com>
8623 M:      everest-linux-l2@qlogic.com
8624 L:      netdev@vger.kernel.org
8625 S:      Supported
8626 F:      drivers/net/ethernet/qlogic/qed/
8627 F:      include/linux/qed/
8628 F:      drivers/net/ethernet/qlogic/qede/
8629
8630 QNX4 FILESYSTEM
8631 M:      Anders Larsen <al@alarsen.net>
8632 W:      http://www.alarsen.net/linux/qnx4fs/
8633 S:      Maintained
8634 F:      fs/qnx4/
8635 F:      include/uapi/linux/qnx4_fs.h
8636 F:      include/uapi/linux/qnxtypes.h
8637
8638 QT1010 MEDIA DRIVER
8639 M:      Antti Palosaari <crope@iki.fi>
8640 L:      linux-media@vger.kernel.org
8641 W:      http://linuxtv.org/
8642 W:      http://palosaari.fi/linux/
8643 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8644 T:      git git://linuxtv.org/anttip/media_tree.git
8645 S:      Maintained
8646 F:      drivers/media/tuners/qt1010*
8647
8648 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
8649 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
8650 L:      linux-wireless@vger.kernel.org
8651 L:      ath9k-devel@lists.ath9k.org
8652 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
8653 S:      Supported
8654 F:      drivers/net/wireless/ath/ath9k/
8655
8656 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
8657 M:      Kalle Valo <kvalo@qca.qualcomm.com>
8658 L:      ath10k@lists.infradead.org
8659 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
8660 T:      git git://github.com/kvalo/ath.git
8661 S:      Supported
8662 F:      drivers/net/wireless/ath/ath10k/
8663
8664 QUALCOMM HEXAGON ARCHITECTURE
8665 M:      Richard Kuo <rkuo@codeaurora.org>
8666 L:      linux-hexagon@vger.kernel.org
8667 S:      Supported
8668 F:      arch/hexagon/
8669
8670 QUALCOMM WCN36XX WIRELESS DRIVER
8671 M:      Eugene Krasnikov <k.eugene.e@gmail.com>
8672 L:      wcn36xx@lists.infradead.org
8673 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
8674 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
8675 S:      Supported
8676 F:      drivers/net/wireless/ath/wcn36xx/
8677
8678 RADOS BLOCK DEVICE (RBD)
8679 M:      Ilya Dryomov <idryomov@gmail.com>
8680 M:      Sage Weil <sage@redhat.com>
8681 M:      Alex Elder <elder@kernel.org>
8682 L:      ceph-devel@vger.kernel.org
8683 W:      http://ceph.com/
8684 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
8685 T:      git git://github.com/ceph/ceph-client.git
8686 S:      Supported
8687 F:      Documentation/ABI/testing/sysfs-bus-rbd
8688 F:      drivers/block/rbd.c
8689 F:      drivers/block/rbd_types.h
8690
8691 RADEON FRAMEBUFFER DISPLAY DRIVER
8692 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
8693 L:      linux-fbdev@vger.kernel.org
8694 S:      Maintained
8695 F:      drivers/video/fbdev/aty/radeon*
8696 F:      include/uapi/linux/radeonfb.h
8697
8698 RADIOSHARK RADIO DRIVER
8699 M:      Hans de Goede <hdegoede@redhat.com>
8700 L:      linux-media@vger.kernel.org
8701 T:      git git://linuxtv.org/media_tree.git
8702 S:      Maintained
8703 F:      drivers/media/radio/radio-shark.c
8704
8705 RADIOSHARK2 RADIO DRIVER
8706 M:      Hans de Goede <hdegoede@redhat.com>
8707 L:      linux-media@vger.kernel.org
8708 T:      git git://linuxtv.org/media_tree.git
8709 S:      Maintained
8710 F:      drivers/media/radio/radio-shark2.c
8711 F:      drivers/media/radio/radio-tea5777.c
8712
8713 RAGE128 FRAMEBUFFER DISPLAY DRIVER
8714 M:      Paul Mackerras <paulus@samba.org>
8715 L:      linux-fbdev@vger.kernel.org
8716 S:      Maintained
8717 F:      drivers/video/fbdev/aty/aty128fb.c
8718
8719 RALINK RT2X00 WIRELESS LAN DRIVER
8720 P:      rt2x00 project
8721 M:      Stanislaw Gruszka <sgruszka@redhat.com>
8722 M:      Helmut Schaa <helmut.schaa@googlemail.com>
8723 L:      linux-wireless@vger.kernel.org
8724 S:      Maintained
8725 F:      drivers/net/wireless/rt2x00/
8726
8727 RAMDISK RAM BLOCK DEVICE DRIVER
8728 M:      Jens Axboe <axboe@kernel.dk>
8729 S:      Maintained
8730 F:      Documentation/blockdev/ramdisk.txt
8731 F:      drivers/block/brd.c
8732
8733 RANDOM NUMBER DRIVER
8734 M:      "Theodore Ts'o" <tytso@mit.edu>
8735 S:      Maintained
8736 F:      drivers/char/random.c
8737
8738 RAPIDIO SUBSYSTEM
8739 M:      Matt Porter <mporter@kernel.crashing.org>
8740 M:      Alexandre Bounine <alexandre.bounine@idt.com>
8741 S:      Maintained
8742 F:      drivers/rapidio/
8743
8744 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
8745 L:      linux-wireless@vger.kernel.org
8746 S:      Orphan
8747 F:      drivers/net/wireless/ray*
8748
8749 RCUTORTURE MODULE
8750 M:      Josh Triplett <josh@joshtriplett.org>
8751 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8752 L:      linux-kernel@vger.kernel.org
8753 S:      Supported
8754 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8755 F:      Documentation/RCU/torture.txt
8756 F:      kernel/rcu/rcutorture.c
8757
8758 RCUTORTURE TEST FRAMEWORK
8759 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8760 M:      Josh Triplett <josh@joshtriplett.org>
8761 R:      Steven Rostedt <rostedt@goodmis.org>
8762 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8763 R:      Lai Jiangshan <jiangshanlai@gmail.com>
8764 L:      linux-kernel@vger.kernel.org
8765 S:      Supported
8766 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8767 F:      tools/testing/selftests/rcutorture
8768
8769 RDC R-321X SoC
8770 M:      Florian Fainelli <florian@openwrt.org>
8771 S:      Maintained
8772
8773 RDC R6040 FAST ETHERNET DRIVER
8774 M:      Florian Fainelli <florian@openwrt.org>
8775 L:      netdev@vger.kernel.org
8776 S:      Maintained
8777 F:      drivers/net/ethernet/rdc/r6040.c
8778
8779 RDS - RELIABLE DATAGRAM SOCKETS
8780 M:      Chien Yen <chien.yen@oracle.com>
8781 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
8782 S:      Supported
8783 F:      net/rds/
8784
8785 READ-COPY UPDATE (RCU)
8786 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8787 M:      Josh Triplett <josh@joshtriplett.org>
8788 R:      Steven Rostedt <rostedt@goodmis.org>
8789 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8790 R:      Lai Jiangshan <jiangshanlai@gmail.com>
8791 L:      linux-kernel@vger.kernel.org
8792 W:      http://www.rdrop.com/users/paulmck/RCU/
8793 S:      Supported
8794 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8795 F:      Documentation/RCU/
8796 X:      Documentation/RCU/torture.txt
8797 F:      include/linux/rcu*
8798 X:      include/linux/srcu.h
8799 F:      kernel/rcu/
8800 X:      kernel/torture.c
8801
8802 REAL TIME CLOCK (RTC) SUBSYSTEM
8803 M:      Alessandro Zummo <a.zummo@towertech.it>
8804 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
8805 L:      rtc-linux@googlegroups.com
8806 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
8807 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
8808 S:      Maintained
8809 F:      Documentation/rtc.txt
8810 F:      drivers/rtc/
8811 F:      include/linux/rtc.h
8812 F:      include/uapi/linux/rtc.h
8813
8814 REALTEK AUDIO CODECS
8815 M:      Bard Liao <bardliao@realtek.com>
8816 M:      Oder Chiou <oder_chiou@realtek.com>
8817 S:      Maintained
8818 F:      sound/soc/codecs/rt*
8819 F:      include/sound/rt*.h
8820
8821 REISERFS FILE SYSTEM
8822 L:      reiserfs-devel@vger.kernel.org
8823 S:      Supported
8824 F:      fs/reiserfs/
8825
8826 REGISTER MAP ABSTRACTION
8827 M:      Mark Brown <broonie@kernel.org>
8828 L:      linux-kernel@vger.kernel.org
8829 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
8830 S:      Supported
8831 F:      drivers/base/regmap/
8832 F:      include/linux/regmap.h
8833
8834 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
8835 M:      Ohad Ben-Cohen <ohad@wizery.com>
8836 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
8837 S:      Maintained
8838 F:      drivers/remoteproc/
8839 F:      Documentation/remoteproc.txt
8840 F:      include/linux/remoteproc.h
8841
8842 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
8843 M:      Ohad Ben-Cohen <ohad@wizery.com>
8844 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
8845 S:      Maintained
8846 F:      drivers/rpmsg/
8847 F:      Documentation/rpmsg.txt
8848 F:      include/linux/rpmsg.h
8849
8850 RESET CONTROLLER FRAMEWORK
8851 M:      Philipp Zabel <p.zabel@pengutronix.de>
8852 S:      Maintained
8853 F:      drivers/reset/
8854 F:      Documentation/devicetree/bindings/reset/
8855 F:      include/dt-bindings/reset/
8856 F:      include/linux/reset.h
8857 F:      include/linux/reset-controller.h
8858
8859 RFKILL
8860 M:      Johannes Berg <johannes@sipsolutions.net>
8861 L:      linux-wireless@vger.kernel.org
8862 W:      http://wireless.kernel.org/
8863 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
8864 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
8865 S:      Maintained
8866 F:      Documentation/rfkill.txt
8867 F:      net/rfkill/
8868
8869 RHASHTABLE
8870 M:      Thomas Graf <tgraf@suug.ch>
8871 L:      netdev@vger.kernel.org
8872 S:      Maintained
8873 F:      lib/rhashtable.c
8874 F:      include/linux/rhashtable.h
8875
8876 RICOH SMARTMEDIA/XD DRIVER
8877 M:      Maxim Levitsky <maximlevitsky@gmail.com>
8878 S:      Maintained
8879 F:      drivers/mtd/nand/r852.c
8880 F:      drivers/mtd/nand/r852.h
8881
8882 RICOH R5C592 MEMORYSTICK DRIVER
8883 M:      Maxim Levitsky <maximlevitsky@gmail.com>
8884 S:      Maintained
8885 F:      drivers/memstick/host/r592.*
8886
8887 ROCCAT DRIVERS
8888 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
8889 W:      http://sourceforge.net/projects/roccat/
8890 S:      Maintained
8891 F:      drivers/hid/hid-roccat*
8892 F:      include/linux/hid-roccat*
8893 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
8894
8895 ROCKER DRIVER
8896 M:      Jiri Pirko <jiri@resnulli.us>
8897 M:      Scott Feldman <sfeldma@gmail.com>
8898 L:      netdev@vger.kernel.org
8899 S:      Supported
8900 F:      drivers/net/ethernet/rocker/
8901
8902 ROCKETPORT DRIVER
8903 P:      Comtrol Corp.
8904 W:      http://www.comtrol.com
8905 S:      Maintained
8906 F:      Documentation/serial/rocket.txt
8907 F:      drivers/tty/rocket*
8908
8909 ROCKETPORT EXPRESS/INFINITY DRIVER
8910 M:      Kevin Cernekee <cernekee@gmail.com>
8911 L:      linux-serial@vger.kernel.org
8912 S:      Odd Fixes
8913 F:      drivers/tty/serial/rp2.*
8914
8915 ROSE NETWORK LAYER
8916 M:      Ralf Baechle <ralf@linux-mips.org>
8917 L:      linux-hams@vger.kernel.org
8918 W:      http://www.linux-ax25.org/
8919 S:      Maintained
8920 F:      include/net/rose.h
8921 F:      include/uapi/linux/rose.h
8922 F:      net/rose/
8923
8924 RTL2830 MEDIA DRIVER
8925 M:      Antti Palosaari <crope@iki.fi>
8926 L:      linux-media@vger.kernel.org
8927 W:      http://linuxtv.org/
8928 W:      http://palosaari.fi/linux/
8929 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8930 T:      git git://linuxtv.org/anttip/media_tree.git
8931 S:      Maintained
8932 F:      drivers/media/dvb-frontends/rtl2830*
8933
8934 RTL2832 MEDIA DRIVER
8935 M:      Antti Palosaari <crope@iki.fi>
8936 L:      linux-media@vger.kernel.org
8937 W:      http://linuxtv.org/
8938 W:      http://palosaari.fi/linux/
8939 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8940 T:      git git://linuxtv.org/anttip/media_tree.git
8941 S:      Maintained
8942 F:      drivers/media/dvb-frontends/rtl2832*
8943
8944 RTL2832_SDR MEDIA DRIVER
8945 M:      Antti Palosaari <crope@iki.fi>
8946 L:      linux-media@vger.kernel.org
8947 W:      http://linuxtv.org/
8948 W:      http://palosaari.fi/linux/
8949 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8950 T:      git git://linuxtv.org/anttip/media_tree.git
8951 S:      Maintained
8952 F:      drivers/media/dvb-frontends/rtl2832_sdr*
8953
8954 RTL8180 WIRELESS DRIVER
8955 L:      linux-wireless@vger.kernel.org
8956 W:      http://wireless.kernel.org/
8957 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8958 S:      Orphan
8959 F:      drivers/net/wireless/rtl818x/rtl8180/
8960
8961 RTL8187 WIRELESS DRIVER
8962 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
8963 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
8964 M:      Larry Finger <Larry.Finger@lwfinger.net>
8965 L:      linux-wireless@vger.kernel.org
8966 W:      http://wireless.kernel.org/
8967 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8968 S:      Maintained
8969 F:      drivers/net/wireless/rtl818x/rtl8187/
8970
8971 RTL8192CE WIRELESS DRIVER
8972 M:      Larry Finger <Larry.Finger@lwfinger.net>
8973 M:      Chaoming Li <chaoming_li@realsil.com.cn>
8974 L:      linux-wireless@vger.kernel.org
8975 W:      http://wireless.kernel.org/
8976 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8977 S:      Maintained
8978 F:      drivers/net/wireless/rtlwifi/
8979 F:      drivers/net/wireless/rtlwifi/rtl8192ce/
8980
8981 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
8982 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
8983 L:      linux-wireless@vger.kernel.org
8984 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8723au-mac80211
8985 S:      Maintained
8986 F:      drivers/net/wireless/realtek/rtl8xxxu/
8987
8988 S3 SAVAGE FRAMEBUFFER DRIVER
8989 M:      Antonino Daplas <adaplas@gmail.com>
8990 L:      linux-fbdev@vger.kernel.org
8991 S:      Maintained
8992 F:      drivers/video/fbdev/savage/
8993
8994 S390
8995 M:      Martin Schwidefsky <schwidefsky@de.ibm.com>
8996 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
8997 L:      linux-s390@vger.kernel.org
8998 W:      http://www.ibm.com/developerworks/linux/linux390/
8999 S:      Supported
9000 F:      arch/s390/
9001 F:      drivers/s390/
9002 F:      Documentation/s390/
9003 F:      Documentation/DocBook/s390*
9004
9005 S390 COMMON I/O LAYER
9006 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
9007 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
9008 L:      linux-s390@vger.kernel.org
9009 W:      http://www.ibm.com/developerworks/linux/linux390/
9010 S:      Supported
9011 F:      drivers/s390/cio/
9012
9013 S390 DASD DRIVER
9014 M:      Stefan Weinhuber <wein@de.ibm.com>
9015 M:      Stefan Haberland <stefan.haberland@de.ibm.com>
9016 L:      linux-s390@vger.kernel.org
9017 W:      http://www.ibm.com/developerworks/linux/linux390/
9018 S:      Supported
9019 F:      drivers/s390/block/dasd*
9020 F:      block/partitions/ibm.c
9021
9022 S390 NETWORK DRIVERS
9023 M:      Ursula Braun <ursula.braun@de.ibm.com>
9024 L:      linux-s390@vger.kernel.org
9025 W:      http://www.ibm.com/developerworks/linux/linux390/
9026 S:      Supported
9027 F:      drivers/s390/net/
9028
9029 S390 PCI SUBSYSTEM
9030 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
9031 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
9032 L:      linux-s390@vger.kernel.org
9033 W:      http://www.ibm.com/developerworks/linux/linux390/
9034 S:      Supported
9035 F:      arch/s390/pci/
9036 F:      drivers/pci/hotplug/s390_pci_hpc.c
9037
9038 S390 ZCRYPT DRIVER
9039 M:      Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
9040 L:      linux-s390@vger.kernel.org
9041 W:      http://www.ibm.com/developerworks/linux/linux390/
9042 S:      Supported
9043 F:      drivers/s390/crypto/
9044
9045 S390 ZFCP DRIVER
9046 M:      Steffen Maier <maier@linux.vnet.ibm.com>
9047 L:      linux-s390@vger.kernel.org
9048 W:      http://www.ibm.com/developerworks/linux/linux390/
9049 S:      Supported
9050 F:      drivers/s390/scsi/zfcp_*
9051
9052 S390 IUCV NETWORK LAYER
9053 M:      Ursula Braun <ursula.braun@de.ibm.com>
9054 L:      linux-s390@vger.kernel.org
9055 W:      http://www.ibm.com/developerworks/linux/linux390/
9056 S:      Supported
9057 F:      drivers/s390/net/*iucv*
9058 F:      include/net/iucv/
9059 F:      net/iucv/
9060
9061 S3C24XX SD/MMC Driver
9062 M:      Ben Dooks <ben-linux@fluff.org>
9063 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9064 S:      Supported
9065 F:      drivers/mmc/host/s3cmci.*
9066
9067 SAA6588 RDS RECEIVER DRIVER
9068 M:      Hans Verkuil <hverkuil@xs4all.nl>
9069 L:      linux-media@vger.kernel.org
9070 T:      git git://linuxtv.org/media_tree.git
9071 W:      http://linuxtv.org
9072 S:      Odd Fixes
9073 F:      drivers/media/i2c/saa6588*
9074
9075 SAA7134 VIDEO4LINUX DRIVER
9076 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9077 L:      linux-media@vger.kernel.org
9078 W:      http://linuxtv.org
9079 T:      git git://linuxtv.org/media_tree.git
9080 S:      Odd fixes
9081 F:      Documentation/video4linux/*.saa7134
9082 F:      drivers/media/pci/saa7134/
9083
9084 SAA7146 VIDEO4LINUX-2 DRIVER
9085 M:      Hans Verkuil <hverkuil@xs4all.nl>
9086 L:      linux-media@vger.kernel.org
9087 T:      git git://linuxtv.org/media_tree.git
9088 S:      Maintained
9089 F:      drivers/media/common/saa7146/
9090 F:      drivers/media/pci/saa7146/
9091 F:      include/media/saa7146*
9092
9093 SAMSUNG LAPTOP DRIVER
9094 M:      Corentin Chary <corentin.chary@gmail.com>
9095 L:      platform-driver-x86@vger.kernel.org
9096 S:      Maintained
9097 F:      drivers/platform/x86/samsung-laptop.c
9098
9099 SAMSUNG AUDIO (ASoC) DRIVERS
9100 M:      Sangbeom Kim <sbkim73@samsung.com>
9101 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9102 S:      Supported
9103 F:      sound/soc/samsung/
9104
9105 SAMSUNG FRAMEBUFFER DRIVER
9106 M:      Jingoo Han <jingoohan1@gmail.com>
9107 L:      linux-fbdev@vger.kernel.org
9108 S:      Maintained
9109 F:      drivers/video/fbdev/s3c-fb.c
9110
9111 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
9112 M:      Sangbeom Kim <sbkim73@samsung.com>
9113 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
9114 L:      linux-kernel@vger.kernel.org
9115 L:      linux-samsung-soc@vger.kernel.org
9116 S:      Supported
9117 F:      drivers/mfd/sec*.c
9118 F:      drivers/regulator/s2m*.c
9119 F:      drivers/regulator/s5m*.c
9120 F:      drivers/clk/clk-s2mps11.c
9121 F:      drivers/rtc/rtc-s5m.c
9122 F:      include/linux/mfd/samsung/
9123 F:      Documentation/devicetree/bindings/regulator/s5m8767-regulator.txt
9124 F:      Documentation/devicetree/bindings/mfd/s2mp*.txt
9125
9126 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
9127 M:      Kyungmin Park <kyungmin.park@samsung.com>
9128 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
9129 L:      linux-media@vger.kernel.org
9130 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
9131 S:      Supported
9132 F:      drivers/media/platform/exynos4-is/
9133
9134 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
9135 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
9136 L:      linux-media@vger.kernel.org
9137 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9138 S:      Maintained
9139 F:      drivers/media/platform/s3c-camif/
9140 F:      include/media/s3c_camif.h
9141
9142 SAMSUNG S5C73M3 CAMERA DRIVER
9143 M:      Kyungmin Park <kyungmin.park@samsung.com>
9144 M:      Andrzej Hajda <a.hajda@samsung.com>
9145 L:      linux-media@vger.kernel.org
9146 S:      Supported
9147 F:      drivers/media/i2c/s5c73m3/*
9148
9149 SAMSUNG S5K5BAF CAMERA DRIVER
9150 M:      Kyungmin Park <kyungmin.park@samsung.com>
9151 M:      Andrzej Hajda <a.hajda@samsung.com>
9152 L:      linux-media@vger.kernel.org
9153 S:      Supported
9154 F:      drivers/media/i2c/s5k5baf.c
9155
9156 SAMSUNG S3FWRN5 NFC DRIVER
9157 M:      Robert Baldyga <r.baldyga@samsung.com>
9158 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
9159 S:      Supported
9160 F:      drivers/nfc/s3fwrn5
9161
9162 SAMSUNG SOC CLOCK DRIVERS
9163 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
9164 M:      Tomasz Figa <tomasz.figa@gmail.com>
9165 S:      Supported
9166 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9167 F:      drivers/clk/samsung/
9168
9169 SAMSUNG SXGBE DRIVERS
9170 M:      Byungho An <bh74.an@samsung.com>
9171 M:      Girish K S <ks.giri@samsung.com>
9172 M:      Vipul Pandya <vipul.pandya@samsung.com>
9173 S:      Supported
9174 L:      netdev@vger.kernel.org
9175 F:      drivers/net/ethernet/samsung/sxgbe/
9176
9177 SAMSUNG THERMAL DRIVER
9178 M:      Lukasz Majewski <l.majewski@samsung.com>
9179 L:      linux-pm@vger.kernel.org
9180 L:      linux-samsung-soc@vger.kernel.org
9181 S:      Supported
9182 T:      https://github.com/lmajewski/linux-samsung-thermal.git
9183 F:      drivers/thermal/samsung/
9184
9185 SAMSUNG USB2 PHY DRIVER
9186 M:      Kamil Debski <k.debski@samsung.com>
9187 L:      linux-kernel@vger.kernel.org
9188 S:      Supported
9189 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
9190 F:      Documentation/phy/samsung-usb2.txt
9191 F:      drivers/phy/phy-exynos4210-usb2.c
9192 F:      drivers/phy/phy-exynos4x12-usb2.c
9193 F:      drivers/phy/phy-exynos5250-usb2.c
9194 F:      drivers/phy/phy-s5pv210-usb2.c
9195 F:      drivers/phy/phy-samsung-usb2.c
9196 F:      drivers/phy/phy-samsung-usb2.h
9197
9198 SERIAL DRIVERS
9199 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9200 L:      linux-serial@vger.kernel.org
9201 S:      Maintained
9202 F:      drivers/tty/serial/
9203
9204 SYNOPSYS DESIGNWARE DMAC DRIVER
9205 M:      Viresh Kumar <vireshk@kernel.org>
9206 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9207 S:      Maintained
9208 F:      include/linux/dma/dw.h
9209 F:      include/linux/platform_data/dma-dw.h
9210 F:      drivers/dma/dw/
9211
9212 SYNOPSYS DESIGNWARE ETHERNET QOS 4.10a driver
9213 M: Lars Persson <lars.persson@axis.com>
9214 L: netdev@vger.kernel.org
9215 S: Supported
9216 F: Documentation/devicetree/bindings/net/snps,dwc-qos-ethernet.txt
9217 F: drivers/net/ethernet/synopsys/dwc_eth_qos.c
9218
9219 SYNOPSYS DESIGNWARE I2C DRIVER
9220 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9221 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
9222 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9223 L:      linux-i2c@vger.kernel.org
9224 S:      Maintained
9225 F:      drivers/i2c/busses/i2c-designware-*
9226 F:      include/linux/platform_data/i2c-designware.h
9227
9228 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
9229 M:      Seungwon Jeon <tgih.jun@samsung.com>
9230 M:      Jaehoon Chung <jh80.chung@samsung.com>
9231 L:      linux-mmc@vger.kernel.org
9232 S:      Maintained
9233 F:      include/linux/mmc/dw_mmc.h
9234 F:      drivers/mmc/host/dw_mmc*
9235
9236 THUNDERBOLT DRIVER
9237 M:      Andreas Noever <andreas.noever@gmail.com>
9238 S:      Maintained
9239 F:      drivers/thunderbolt/
9240
9241 TIMEKEEPING, CLOCKSOURCE CORE, NTP
9242 M:      John Stultz <john.stultz@linaro.org>
9243 M:      Thomas Gleixner <tglx@linutronix.de>
9244 L:      linux-kernel@vger.kernel.org
9245 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
9246 S:      Supported
9247 F:      include/linux/clocksource.h
9248 F:      include/linux/time.h
9249 F:      include/linux/timex.h
9250 F:      include/uapi/linux/time.h
9251 F:      include/uapi/linux/timex.h
9252 F:      kernel/time/clocksource.c
9253 F:      kernel/time/time*.c
9254 F:      kernel/time/ntp.c
9255 F:      tools/testing/selftests/timers/
9256
9257 SC1200 WDT DRIVER
9258 M:      Zwane Mwaikambo <zwanem@gmail.com>
9259 S:      Maintained
9260 F:      drivers/watchdog/sc1200wdt.c
9261
9262 SCHEDULER
9263 M:      Ingo Molnar <mingo@redhat.com>
9264 M:      Peter Zijlstra <peterz@infradead.org>
9265 L:      linux-kernel@vger.kernel.org
9266 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
9267 S:      Maintained
9268 F:      kernel/sched/
9269 F:      include/linux/sched.h
9270 F:      include/uapi/linux/sched.h
9271 F:      include/linux/wait.h
9272
9273 SCORE ARCHITECTURE
9274 M:      Chen Liqin <liqin.linux@gmail.com>
9275 M:      Lennox Wu <lennox.wu@gmail.com>
9276 W:      http://www.sunplus.com
9277 S:      Supported
9278 F:      arch/score/
9279
9280 SYSTEM CONTROL & POWER INTERFACE (SCPI) Message Protocol drivers
9281 M:      Sudeep Holla <sudeep.holla@arm.com>
9282 L:      linux-arm-kernel@lists.infradead.org
9283 S:      Maintained
9284 F:      Documentation/devicetree/bindings/arm/arm,scpi.txt
9285 F:      drivers/clk/clk-scpi.c
9286 F:      drivers/cpufreq/scpi-cpufreq.c
9287 F:      drivers/firmware/arm_scpi.c
9288 F:      include/linux/scpi_protocol.h
9289
9290 SCSI CDROM DRIVER
9291 M:      Jens Axboe <axboe@kernel.dk>
9292 L:      linux-scsi@vger.kernel.org
9293 W:      http://www.kernel.dk
9294 S:      Maintained
9295 F:      drivers/scsi/sr*
9296
9297 SCSI RDMA PROTOCOL (SRP) INITIATOR
9298 M:      Bart Van Assche <bart.vanassche@sandisk.com>
9299 L:      linux-rdma@vger.kernel.org
9300 S:      Supported
9301 W:      http://www.openfabrics.org
9302 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9303 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
9304 F:      drivers/infiniband/ulp/srp/
9305 F:      include/scsi/srp.h
9306
9307 SCSI SG DRIVER
9308 M:      Doug Gilbert <dgilbert@interlog.com>
9309 L:      linux-scsi@vger.kernel.org
9310 W:      http://sg.danny.cz/sg
9311 S:      Maintained
9312 F:      Documentation/scsi/scsi-generic.txt
9313 F:      drivers/scsi/sg.c
9314 F:      include/scsi/sg.h
9315
9316 SCSI SUBSYSTEM
9317 M:      "James E.J. Bottomley" <JBottomley@odin.com>
9318 L:      linux-scsi@vger.kernel.org
9319 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
9320 S:      Maintained
9321 F:      drivers/scsi/
9322 F:      include/scsi/
9323
9324 SCSI TAPE DRIVER
9325 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
9326 L:      linux-scsi@vger.kernel.org
9327 S:      Maintained
9328 F:      Documentation/scsi/st.txt
9329 F:      drivers/scsi/st.*
9330 F:      drivers/scsi/st_*.h
9331
9332 SCTP PROTOCOL
9333 M:      Vlad Yasevich <vyasevich@gmail.com>
9334 M:      Neil Horman <nhorman@tuxdriver.com>
9335 L:      linux-sctp@vger.kernel.org
9336 W:      http://lksctp.sourceforge.net
9337 S:      Maintained
9338 F:      Documentation/networking/sctp.txt
9339 F:      include/linux/sctp.h
9340 F:      include/uapi/linux/sctp.h
9341 F:      include/net/sctp/
9342 F:      net/sctp/
9343
9344 SCx200 CPU SUPPORT
9345 M:      Jim Cromie <jim.cromie@gmail.com>
9346 S:      Odd Fixes
9347 F:      Documentation/i2c/busses/scx200_acb
9348 F:      arch/x86/platform/scx200/
9349 F:      drivers/watchdog/scx200_wdt.c
9350 F:      drivers/i2c/busses/scx200*
9351 F:      drivers/mtd/maps/scx200_docflash.c
9352 F:      include/linux/scx200.h
9353
9354 SCx200 GPIO DRIVER
9355 M:      Jim Cromie <jim.cromie@gmail.com>
9356 S:      Maintained
9357 F:      drivers/char/scx200_gpio.c
9358 F:      include/linux/scx200_gpio.h
9359
9360 SCx200 HRT CLOCKSOURCE DRIVER
9361 M:      Jim Cromie <jim.cromie@gmail.com>
9362 S:      Maintained
9363 F:      drivers/clocksource/scx200_hrt.c
9364
9365 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
9366 M:      Sascha Sommer <saschasommer@freenet.de>
9367 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
9368 S:      Maintained
9369 F:      drivers/mmc/host/sdricoh_cs.c
9370
9371 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
9372 L:      linux-mmc@vger.kernel.org
9373 S:      Orphan
9374 F:      drivers/mmc/host/sdhci.*
9375 F:      drivers/mmc/host/sdhci-pltfm.[ch]
9376
9377 SECURE COMPUTING
9378 M:      Kees Cook <keescook@chromium.org>
9379 R:      Andy Lutomirski <luto@amacapital.net>
9380 R:      Will Drewry <wad@chromium.org>
9381 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
9382 S:      Supported
9383 F:      kernel/seccomp.c
9384 F:      include/uapi/linux/seccomp.h
9385 F:      include/linux/seccomp.h
9386 F:      tools/testing/selftests/seccomp/*
9387 K:      \bsecure_computing
9388 K:      \bTIF_SECCOMP\b
9389
9390 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
9391 M:      Ben Dooks <ben-linux@fluff.org>
9392 M:      Jaehoon Chung <jh80.chung@samsung.com>
9393 L:      linux-mmc@vger.kernel.org
9394 S:      Maintained
9395 F:      drivers/mmc/host/sdhci-s3c*
9396
9397 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
9398 M:      Viresh Kumar <vireshk@kernel.org>
9399 L:      spear-devel@list.st.com
9400 L:      linux-mmc@vger.kernel.org
9401 S:      Maintained
9402 F:      drivers/mmc/host/sdhci-spear.c
9403
9404 SECURITY SUBSYSTEM
9405 M:      James Morris <james.l.morris@oracle.com>
9406 M:      "Serge E. Hallyn" <serge@hallyn.com>
9407 L:      linux-security-module@vger.kernel.org (suggested Cc:)
9408 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
9409 W:      http://kernsec.org/
9410 S:      Supported
9411 F:      security/
9412
9413 SECURITY CONTACT
9414 M:      Security Officers <security@kernel.org>
9415 S:      Supported
9416
9417 SELINUX SECURITY MODULE
9418 M:      Paul Moore <paul@paul-moore.com>
9419 M:      Stephen Smalley <sds@tycho.nsa.gov>
9420 M:      Eric Paris <eparis@parisplace.org>
9421 L:      selinux@tycho.nsa.gov (moderated for non-subscribers)
9422 W:      http://selinuxproject.org
9423 T:      git git://git.infradead.org/users/pcmoore/selinux
9424 S:      Supported
9425 F:      include/linux/selinux*
9426 F:      security/selinux/
9427 F:      scripts/selinux/
9428
9429 APPARMOR SECURITY MODULE
9430 M:      John Johansen <john.johansen@canonical.com>
9431 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
9432 W:      apparmor.wiki.kernel.org
9433 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
9434 S:      Supported
9435 F:      security/apparmor/
9436
9437 YAMA SECURITY MODULE
9438 M:      Kees Cook <keescook@chromium.org>
9439 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
9440 S:      Supported
9441 F:      security/yama/
9442
9443 SENSABLE PHANTOM
9444 M:      Jiri Slaby <jirislaby@gmail.com>
9445 S:      Maintained
9446 F:      drivers/misc/phantom.c
9447 F:      include/uapi/linux/phantom.h
9448
9449 SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
9450 M:      Jayamohan Kallickal <jayamohan.kallickal@avagotech.com>
9451 M:      Minh Tran <minh.tran@avagotech.com>
9452 M:      John Soni Jose <sony.john-n@avagotech.com>
9453 L:      linux-scsi@vger.kernel.org
9454 W:      http://www.avagotech.com
9455 S:      Supported
9456 F:      drivers/scsi/be2iscsi/
9457
9458 Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER
9459 M:      Sathya Perla <sathya.perla@avagotech.com>
9460 M:      Ajit Khaparde <ajit.khaparde@avagotech.com>
9461 M:      Padmanabh Ratnakar <padmanabh.ratnakar@avagotech.com>
9462 M:      Sriharsha Basavapatna <sriharsha.basavapatna@avagotech.com>
9463 L:      netdev@vger.kernel.org
9464 W:      http://www.emulex.com
9465 S:      Supported
9466 F:      drivers/net/ethernet/emulex/benet/
9467
9468 EMULEX ONECONNECT ROCE DRIVER
9469 M:      Selvin Xavier <selvin.xavier@avagotech.com>
9470 M:      Devesh Sharma <devesh.sharma@avagotech.com>
9471 M:      Mitesh Ahuja <mitesh.ahuja@avagotech.com>
9472 L:      linux-rdma@vger.kernel.org
9473 W:      http://www.emulex.com
9474 S:      Supported
9475 F:      drivers/infiniband/hw/ocrdma/
9476
9477 SFC NETWORK DRIVER
9478 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
9479 M:      Shradha Shah <sshah@solarflare.com>
9480 L:      netdev@vger.kernel.org
9481 S:      Supported
9482 F:      drivers/net/ethernet/sfc/
9483
9484 SGI GRU DRIVER
9485 M:      Dimitri Sivanich <sivanich@sgi.com>
9486 S:      Maintained
9487 F:      drivers/misc/sgi-gru/
9488
9489 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
9490 M:      Pat Gefre <pfg@sgi.com>
9491 L:      linux-ia64@vger.kernel.org
9492 S:      Supported
9493 F:      Documentation/ia64/serial.txt
9494 F:      drivers/tty/serial/ioc?_serial.c
9495 F:      include/linux/ioc?.h
9496
9497 SGI XP/XPC/XPNET DRIVER
9498 M:      Cliff Whickman <cpw@sgi.com>
9499 M:      Robin Holt <robinmholt@gmail.com>
9500 S:      Maintained
9501 F:      drivers/misc/sgi-xp/
9502
9503 SI2157 MEDIA DRIVER
9504 M:      Antti Palosaari <crope@iki.fi>
9505 L:      linux-media@vger.kernel.org
9506 W:      http://linuxtv.org/
9507 W:      http://palosaari.fi/linux/
9508 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9509 T:      git git://linuxtv.org/anttip/media_tree.git
9510 S:      Maintained
9511 F:      drivers/media/tuners/si2157*
9512
9513 SI2168 MEDIA DRIVER
9514 M:      Antti Palosaari <crope@iki.fi>
9515 L:      linux-media@vger.kernel.org
9516 W:      http://linuxtv.org/
9517 W:      http://palosaari.fi/linux/
9518 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9519 T:      git git://linuxtv.org/anttip/media_tree.git
9520 S:      Maintained
9521 F:      drivers/media/dvb-frontends/si2168*
9522
9523 SI470X FM RADIO RECEIVER I2C DRIVER
9524 M:      Hans Verkuil <hverkuil@xs4all.nl>
9525 L:      linux-media@vger.kernel.org
9526 T:      git git://linuxtv.org/media_tree.git
9527 W:      http://linuxtv.org
9528 S:      Odd Fixes
9529 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
9530
9531 SI470X FM RADIO RECEIVER USB DRIVER
9532 M:      Hans Verkuil <hverkuil@xs4all.nl>
9533 L:      linux-media@vger.kernel.org
9534 T:      git git://linuxtv.org/media_tree.git
9535 W:      http://linuxtv.org
9536 S:      Maintained
9537 F:      drivers/media/radio/si470x/radio-si470x-common.c
9538 F:      drivers/media/radio/si470x/radio-si470x.h
9539 F:      drivers/media/radio/si470x/radio-si470x-usb.c
9540
9541 SI4713 FM RADIO TRANSMITTER I2C DRIVER
9542 M:      Eduardo Valentin <edubezval@gmail.com>
9543 L:      linux-media@vger.kernel.org
9544 T:      git git://linuxtv.org/media_tree.git
9545 W:      http://linuxtv.org
9546 S:      Odd Fixes
9547 F:      drivers/media/radio/si4713/si4713.?
9548
9549 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
9550 M:      Eduardo Valentin <edubezval@gmail.com>
9551 L:      linux-media@vger.kernel.org
9552 T:      git git://linuxtv.org/media_tree.git
9553 W:      http://linuxtv.org
9554 S:      Odd Fixes
9555 F:      drivers/media/radio/si4713/radio-platform-si4713.c
9556
9557 SI4713 FM RADIO TRANSMITTER USB DRIVER
9558 M:      Hans Verkuil <hverkuil@xs4all.nl>
9559 L:      linux-media@vger.kernel.org
9560 T:      git git://linuxtv.org/media_tree.git
9561 W:      http://linuxtv.org
9562 S:      Maintained
9563 F:      drivers/media/radio/si4713/radio-usb-si4713.c
9564
9565 SIANO DVB DRIVER
9566 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9567 L:      linux-media@vger.kernel.org
9568 W:      http://linuxtv.org
9569 T:      git git://linuxtv.org/media_tree.git
9570 S:      Odd fixes
9571 F:      drivers/media/common/siano/
9572 F:      drivers/media/usb/siano/
9573 F:      drivers/media/usb/siano/
9574 F:      drivers/media/mmc/siano/
9575
9576 SIMPLEFB FB DRIVER
9577 M:      Hans de Goede <hdegoede@redhat.com>
9578 L:      linux-fbdev@vger.kernel.org
9579 S:      Maintained
9580 F:      Documentation/devicetree/bindings/video/simple-framebuffer.txt
9581 F:      drivers/video/fbdev/simplefb.c
9582 F:      include/linux/platform_data/simplefb.h
9583
9584 SH_VEU V4L2 MEM2MEM DRIVER
9585 L:      linux-media@vger.kernel.org
9586 S:      Orphan
9587 F:      drivers/media/platform/sh_veu.c
9588
9589 SH_VOU V4L2 OUTPUT DRIVER
9590 L:      linux-media@vger.kernel.org
9591 S:      Orphan
9592 F:      drivers/media/platform/sh_vou.c
9593 F:      include/media/sh_vou.h
9594
9595 SIMPLE FIRMWARE INTERFACE (SFI)
9596 M:      Len Brown <lenb@kernel.org>
9597 L:      sfi-devel@simplefirmware.org
9598 W:      http://simplefirmware.org/
9599 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
9600 S:      Supported
9601 F:      arch/x86/platform/sfi/
9602 F:      drivers/sfi/
9603 F:      include/linux/sfi*.h
9604
9605 SIMTEC EB110ATX (Chalice CATS)
9606 P:      Ben Dooks
9607 P:      Vincent Sanders <vince@simtec.co.uk>
9608 M:      Simtec Linux Team <linux@simtec.co.uk>
9609 W:      http://www.simtec.co.uk/products/EB110ATX/
9610 S:      Supported
9611
9612 SIMTEC EB2410ITX (BAST)
9613 P:      Ben Dooks
9614 P:      Vincent Sanders <vince@simtec.co.uk>
9615 M:      Simtec Linux Team <linux@simtec.co.uk>
9616 W:      http://www.simtec.co.uk/products/EB2410ITX/
9617 S:      Supported
9618 F:      arch/arm/mach-s3c24xx/mach-bast.c
9619 F:      arch/arm/mach-s3c24xx/bast-ide.c
9620 F:      arch/arm/mach-s3c24xx/bast-irq.c
9621
9622 TI DAVINCI MACHINE SUPPORT
9623 M:      Sekhar Nori <nsekhar@ti.com>
9624 M:      Kevin Hilman <khilman@deeprootsystems.com>
9625 T:      git git://gitorious.org/linux-davinci/linux-davinci.git
9626 Q:      http://patchwork.kernel.org/project/linux-davinci/list/
9627 S:      Supported
9628 F:      arch/arm/mach-davinci/
9629 F:      drivers/i2c/busses/i2c-davinci.c
9630
9631 TI DAVINCI SERIES MEDIA DRIVER
9632 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9633 L:      linux-media@vger.kernel.org
9634 W:      http://linuxtv.org/
9635 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9636 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9637 S:      Maintained
9638 F:      drivers/media/platform/davinci/
9639 F:      include/media/davinci/
9640
9641 TI AM437X VPFE DRIVER
9642 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9643 L:      linux-media@vger.kernel.org
9644 W:      http://linuxtv.org/
9645 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9646 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9647 S:      Maintained
9648 F:      drivers/media/platform/am437x/
9649
9650 OV2659 OMNIVISION SENSOR DRIVER
9651 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9652 L:      linux-media@vger.kernel.org
9653 W:      http://linuxtv.org/
9654 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9655 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9656 S:      Maintained
9657 F:      drivers/media/i2c/ov2659.c
9658 F:      include/media/ov2659.h
9659
9660 SILICON MOTION SM712 FRAME BUFFER DRIVER
9661 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
9662 M:      Teddy Wang <teddy.wang@siliconmotion.com>
9663 M:      Sudip Mukherjee <sudip@vectorindia.org>
9664 L:      linux-fbdev@vger.kernel.org
9665 S:      Maintained
9666 F:      drivers/video/fbdev/sm712*
9667 F:      Documentation/fb/sm712fb.txt
9668
9669 SIS 190 ETHERNET DRIVER
9670 M:      Francois Romieu <romieu@fr.zoreil.com>
9671 L:      netdev@vger.kernel.org
9672 S:      Maintained
9673 F:      drivers/net/ethernet/sis/sis190.c
9674
9675 SIS 900/7016 FAST ETHERNET DRIVER
9676 M:      Daniele Venzano <venza@brownhat.org>
9677 W:      http://www.brownhat.org/sis900.html
9678 L:      netdev@vger.kernel.org
9679 S:      Maintained
9680 F:      drivers/net/ethernet/sis/sis900.*
9681
9682 SIS FRAMEBUFFER DRIVER
9683 M:      Thomas Winischhofer <thomas@winischhofer.net>
9684 W:      http://www.winischhofer.net/linuxsisvga.shtml
9685 S:      Maintained
9686 F:      Documentation/fb/sisfb.txt
9687 F:      drivers/video/fbdev/sis/
9688 F:      include/video/sisfb.h
9689
9690 SIS USB2VGA DRIVER
9691 M:      Thomas Winischhofer <thomas@winischhofer.net>
9692 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
9693 S:      Maintained
9694 F:      drivers/usb/misc/sisusbvga/
9695
9696 SLAB ALLOCATOR
9697 M:      Christoph Lameter <cl@linux.com>
9698 M:      Pekka Enberg <penberg@kernel.org>
9699 M:      David Rientjes <rientjes@google.com>
9700 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
9701 M:      Andrew Morton <akpm@linux-foundation.org>
9702 L:      linux-mm@kvack.org
9703 S:      Maintained
9704 F:      include/linux/sl?b*.h
9705 F:      mm/sl?b*
9706
9707 SLEEPABLE READ-COPY UPDATE (SRCU)
9708 M:      Lai Jiangshan <jiangshanlai@gmail.com>
9709 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9710 M:      Josh Triplett <josh@joshtriplett.org>
9711 R:      Steven Rostedt <rostedt@goodmis.org>
9712 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9713 L:      linux-kernel@vger.kernel.org
9714 W:      http://www.rdrop.com/users/paulmck/RCU/
9715 S:      Supported
9716 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9717 F:      include/linux/srcu.h
9718 F:      kernel/rcu/srcu.c
9719
9720 SMACK SECURITY MODULE
9721 M:      Casey Schaufler <casey@schaufler-ca.com>
9722 L:      linux-security-module@vger.kernel.org
9723 W:      http://schaufler-ca.com
9724 T:      git git://git.gitorious.org/smack-next/kernel.git
9725 S:      Maintained
9726 F:      Documentation/security/Smack.txt
9727 F:      security/smack/
9728
9729 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
9730 M:      Kevin Hilman <khilman@kernel.org>
9731 M:      Nishanth Menon <nm@ti.com>
9732 S:      Maintained
9733 F:      drivers/power/avs/
9734 F:      include/linux/power/smartreflex.h
9735 L:      linux-pm@vger.kernel.org
9736
9737 SMC91x ETHERNET DRIVER
9738 M:      Nicolas Pitre <nico@fluxnic.net>
9739 S:      Odd Fixes
9740 F:      drivers/net/ethernet/smsc/smc91x.*
9741
9742 SMIA AND SMIA++ IMAGE SENSOR DRIVER
9743 M:      Sakari Ailus <sakari.ailus@iki.fi>
9744 L:      linux-media@vger.kernel.org
9745 S:      Maintained
9746 F:      drivers/media/i2c/smiapp/
9747 F:      include/media/smiapp.h
9748 F:      drivers/media/i2c/smiapp-pll.c
9749 F:      drivers/media/i2c/smiapp-pll.h
9750 F:      include/uapi/linux/smiapp.h
9751 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
9752
9753 SMM665 HARDWARE MONITOR DRIVER
9754 M:      Guenter Roeck <linux@roeck-us.net>
9755 L:      lm-sensors@lm-sensors.org
9756 S:      Maintained
9757 F:      Documentation/hwmon/smm665
9758 F:      drivers/hwmon/smm665.c
9759
9760 SMSC EMC2103 HARDWARE MONITOR DRIVER
9761 M:      Steve Glendinning <steve.glendinning@shawell.net>
9762 L:      lm-sensors@lm-sensors.org
9763 S:      Maintained
9764 F:      Documentation/hwmon/emc2103
9765 F:      drivers/hwmon/emc2103.c
9766
9767 SMSC SCH5627 HARDWARE MONITOR DRIVER
9768 M:      Hans de Goede <hdegoede@redhat.com>
9769 L:      lm-sensors@lm-sensors.org
9770 S:      Supported
9771 F:      Documentation/hwmon/sch5627
9772 F:      drivers/hwmon/sch5627.c
9773
9774 SMSC47B397 HARDWARE MONITOR DRIVER
9775 M:      Jean Delvare <jdelvare@suse.com>
9776 L:      lm-sensors@lm-sensors.org
9777 S:      Maintained
9778 F:      Documentation/hwmon/smsc47b397
9779 F:      drivers/hwmon/smsc47b397.c
9780
9781 SMSC911x ETHERNET DRIVER
9782 M:      Steve Glendinning <steve.glendinning@shawell.net>
9783 L:      netdev@vger.kernel.org
9784 S:      Maintained
9785 F:      include/linux/smsc911x.h
9786 F:      drivers/net/ethernet/smsc/smsc911x.*
9787
9788 SMSC9420 PCI ETHERNET DRIVER
9789 M:      Steve Glendinning <steve.glendinning@shawell.net>
9790 L:      netdev@vger.kernel.org
9791 S:      Maintained
9792 F:      drivers/net/ethernet/smsc/smsc9420.*
9793
9794 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
9795 M:      Steve Glendinning <steve.glendinning@shawell.net>
9796 L:      linux-fbdev@vger.kernel.org
9797 S:      Maintained
9798 F:      drivers/video/fbdev/smscufx.c
9799
9800 SOC-CAMERA V4L2 SUBSYSTEM
9801 M:      Guennadi Liakhovetski <g.liakhovetski@gmx.de>
9802 L:      linux-media@vger.kernel.org
9803 T:      git git://linuxtv.org/media_tree.git
9804 S:      Maintained
9805 F:      include/media/soc*
9806 F:      drivers/media/i2c/soc_camera/
9807 F:      drivers/media/platform/soc_camera/
9808
9809 SOEKRIS NET48XX LED SUPPORT
9810 M:      Chris Boot <bootc@bootc.net>
9811 S:      Maintained
9812 F:      drivers/leds/leds-net48xx.c
9813
9814 SOFTLOGIC 6x10 MPEG CODEC
9815 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
9816 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
9817 M:      Andrey Utkin <andrey.krieger.utkin@gmail.com>
9818 M:      Ismael Luceno <ismael@iodev.co.uk>
9819 L:      linux-media@vger.kernel.org
9820 S:      Supported
9821 F:      drivers/media/pci/solo6x10/
9822
9823 SOFTWARE RAID (Multiple Disks) SUPPORT
9824 M:      Neil Brown <neilb@suse.com>
9825 L:      linux-raid@vger.kernel.org
9826 S:      Supported
9827 F:      drivers/md/
9828 F:      include/linux/raid/
9829 F:      include/uapi/linux/raid/
9830
9831 SONIC NETWORK DRIVER
9832 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
9833 L:      netdev@vger.kernel.org
9834 S:      Maintained
9835 F:      drivers/net/ethernet/natsemi/sonic.*
9836
9837 SONICS SILICON BACKPLANE DRIVER (SSB)
9838 M:      Michael Buesch <m@bues.ch>
9839 L:      netdev@vger.kernel.org
9840 S:      Maintained
9841 F:      drivers/ssb/
9842 F:      include/linux/ssb/
9843
9844 SONY VAIO CONTROL DEVICE DRIVER
9845 M:      Mattia Dongili <malattia@linux.it>
9846 L:      platform-driver-x86@vger.kernel.org
9847 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
9848 S:      Maintained
9849 F:      Documentation/laptops/sony-laptop.txt
9850 F:      drivers/char/sonypi.c
9851 F:      drivers/platform/x86/sony-laptop.c
9852 F:      include/linux/sony-laptop.h
9853
9854 SONY MEMORYSTICK CARD SUPPORT
9855 M:      Alex Dubov <oakad@yahoo.com>
9856 W:      http://tifmxx.berlios.de/
9857 S:      Maintained
9858 F:      drivers/memstick/host/tifm_ms.c
9859
9860 SONY MEMORYSTICK STANDARD SUPPORT
9861 M:      Maxim Levitsky <maximlevitsky@gmail.com>
9862 S:      Maintained
9863 F:      drivers/memstick/core/ms_block.*
9864
9865 SOUND
9866 M:      Jaroslav Kysela <perex@perex.cz>
9867 M:      Takashi Iwai <tiwai@suse.com>
9868 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9869 W:      http://www.alsa-project.org/
9870 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
9871 T:      git git://git.alsa-project.org/alsa-kernel.git
9872 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
9873 S:      Maintained
9874 F:      Documentation/sound/
9875 F:      include/sound/
9876 F:      include/uapi/sound/
9877 F:      sound/
9878
9879 SOUND - COMPRESSED AUDIO
9880 M:      Vinod Koul <vinod.koul@intel.com>
9881 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9882 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
9883 S:      Supported
9884 F:      Documentation/sound/alsa/compress_offload.txt
9885 F:      include/sound/compress_driver.h
9886 F:      include/uapi/sound/compress_*
9887 F:      sound/core/compress_offload.c
9888 F:      sound/soc/soc-compress.c
9889
9890 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
9891 M:      Liam Girdwood <lgirdwood@gmail.com>
9892 M:      Mark Brown <broonie@kernel.org>
9893 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
9894 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9895 W:      http://alsa-project.org/main/index.php/ASoC
9896 S:      Supported
9897 F:      Documentation/sound/alsa/soc/
9898 F:      sound/soc/
9899 F:      include/sound/soc*
9900
9901 SOUND - DMAENGINE HELPERS
9902 M:      Lars-Peter Clausen <lars@metafoo.de>
9903 S:      Supported
9904 F:      include/sound/dmaengine_pcm.h
9905 F:      sound/core/pcm_dmaengine.c
9906 F:      sound/soc/soc-generic-dmaengine-pcm.c
9907
9908 SP2 MEDIA DRIVER
9909 M:      Olli Salonen <olli.salonen@iki.fi>
9910 L:      linux-media@vger.kernel.org
9911 W:      http://linuxtv.org/
9912 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9913 S:      Maintained
9914 F:      drivers/media/dvb-frontends/sp2*
9915
9916 SPARC + UltraSPARC (sparc/sparc64)
9917 M:      "David S. Miller" <davem@davemloft.net>
9918 L:      sparclinux@vger.kernel.org
9919 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
9920 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
9921 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
9922 S:      Maintained
9923 F:      arch/sparc/
9924 F:      drivers/sbus/
9925
9926 SPARC SERIAL DRIVERS
9927 M:      "David S. Miller" <davem@davemloft.net>
9928 L:      sparclinux@vger.kernel.org
9929 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
9930 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
9931 S:      Maintained
9932 F:      include/linux/sunserialcore.h
9933 F:      drivers/tty/serial/suncore.c
9934 F:      drivers/tty/serial/sunhv.c
9935 F:      drivers/tty/serial/sunsab.c
9936 F:      drivers/tty/serial/sunsab.h
9937 F:      drivers/tty/serial/sunsu.c
9938 F:      drivers/tty/serial/sunzilog.c
9939 F:      drivers/tty/serial/sunzilog.h
9940
9941 SPARSE CHECKER
9942 M:      "Christopher Li" <sparse@chrisli.org>
9943 L:      linux-sparse@vger.kernel.org
9944 W:      https://sparse.wiki.kernel.org/
9945 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
9946 T:      git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
9947 S:      Maintained
9948 F:      include/linux/compiler.h
9949
9950 SPEAR PLATFORM SUPPORT
9951 M:      Viresh Kumar <vireshk@kernel.org>
9952 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
9953 L:      spear-devel@list.st.com
9954 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9955 W:      http://www.st.com/spear
9956 S:      Maintained
9957 F:      arch/arm/mach-spear/
9958
9959 SPEAR CLOCK FRAMEWORK SUPPORT
9960 M:      Viresh Kumar <vireshk@kernel.org>
9961 L:      spear-devel@list.st.com
9962 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9963 W:      http://www.st.com/spear
9964 S:      Maintained
9965 F:      drivers/clk/spear/
9966
9967 SPI SUBSYSTEM
9968 M:      Mark Brown <broonie@kernel.org>
9969 L:      linux-spi@vger.kernel.org
9970 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
9971 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
9972 S:      Maintained
9973 F:      Documentation/spi/
9974 F:      drivers/spi/
9975 F:      include/linux/spi/
9976 F:      include/uapi/linux/spi/
9977
9978 SPIDERNET NETWORK DRIVER for CELL
9979 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
9980 L:      netdev@vger.kernel.org
9981 S:      Supported
9982 F:      Documentation/networking/spider_net.txt
9983 F:      drivers/net/ethernet/toshiba/spider_net*
9984
9985 SPU FILE SYSTEM
9986 M:      Jeremy Kerr <jk@ozlabs.org>
9987 L:      linuxppc-dev@lists.ozlabs.org
9988 W:      http://www.ibm.com/developerworks/power/cell/
9989 S:      Supported
9990 F:      Documentation/filesystems/spufs.txt
9991 F:      arch/powerpc/platforms/cell/spufs/
9992
9993 SQUASHFS FILE SYSTEM
9994 M:      Phillip Lougher <phillip@squashfs.org.uk>
9995 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
9996 W:      http://squashfs.org.uk
9997 S:      Maintained
9998 F:      Documentation/filesystems/squashfs.txt
9999 F:      fs/squashfs/
10000
10001 SRM (Alpha) environment access
10002 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
10003 S:      Maintained
10004 F:      arch/alpha/kernel/srm_env.c
10005
10006 STABLE BRANCH
10007 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10008 L:      stable@vger.kernel.org
10009 S:      Supported
10010 F:      Documentation/stable_kernel_rules.txt
10011
10012 STAGING SUBSYSTEM
10013 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10014 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
10015 L:      devel@driverdev.osuosl.org
10016 S:      Supported
10017 F:      drivers/staging/
10018
10019 STAGING - COMEDI
10020 M:      Ian Abbott <abbotti@mev.co.uk>
10021 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
10022 S:      Odd Fixes
10023 F:      drivers/staging/comedi/
10024
10025 STAGING - FLARION FT1000 DRIVERS
10026 M:      Marek Belisko <marek.belisko@gmail.com>
10027 S:      Odd Fixes
10028 F:      drivers/staging/ft1000/
10029
10030 STAGING - INDUSTRIAL IO
10031 M:      Jonathan Cameron <jic23@kernel.org>
10032 L:      linux-iio@vger.kernel.org
10033 S:      Odd Fixes
10034 F:      drivers/staging/iio/
10035
10036 STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
10037 M:      Jarod Wilson <jarod@wilsonet.com>
10038 W:      http://www.lirc.org/
10039 S:      Odd Fixes
10040 F:      drivers/staging/media/lirc/
10041
10042 STAGING - LUSTRE PARALLEL FILESYSTEM
10043 M:      Oleg Drokin <oleg.drokin@intel.com>
10044 M:      Andreas Dilger <andreas.dilger@intel.com>
10045 L:      lustre-devel@lists.lustre.org (moderated for non-subscribers)
10046 W:      http://wiki.lustre.org/
10047 S:      Maintained
10048 F:      drivers/staging/lustre
10049
10050 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
10051 M:      Marc Dietrich <marvin24@gmx.de>
10052 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
10053 L:      linux-tegra@vger.kernel.org
10054 S:      Maintained
10055 F:      drivers/staging/nvec/
10056
10057 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
10058 M:      Jens Frederich <jfrederich@gmail.com>
10059 M:      Daniel Drake <dsd@laptop.org>
10060 M:      Jon Nettleton <jon.nettleton@gmail.com>
10061 W:      http://wiki.laptop.org/go/DCON
10062 S:      Maintained
10063 F:      drivers/staging/olpc_dcon/
10064
10065 STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
10066 M:      Willy Tarreau <willy@meta-x.org>
10067 S:      Odd Fixes
10068 F:      drivers/staging/panel/
10069
10070 STAGING - REALTEK RTL8712U DRIVERS
10071 M:      Larry Finger <Larry.Finger@lwfinger.net>
10072 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
10073 S:      Odd Fixes
10074 F:      drivers/staging/rtl8712/
10075
10076 STAGING - REALTEK RTL8723U WIRELESS DRIVER
10077 M:      Larry Finger <Larry.Finger@lwfinger.net>
10078 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
10079 L:      linux-wireless@vger.kernel.org
10080 S:      Maintained
10081 F:      drivers/staging/rtl8723au/
10082
10083 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
10084 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
10085 M:      Teddy Wang <teddy.wang@siliconmotion.com>
10086 M:      Sudip Mukherjee <sudip@vectorindia.org>
10087 L:      linux-fbdev@vger.kernel.org
10088 S:      Maintained
10089 F:      drivers/staging/sm750fb/
10090
10091 STAGING - SLICOSS
10092 M:      Lior Dotan <liodot@gmail.com>
10093 M:      Christopher Harrer <charrer@alacritech.com>
10094 S:      Odd Fixes
10095 F:      drivers/staging/slicoss/
10096
10097 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
10098 M:      William Hubbs <w.d.hubbs@gmail.com>
10099 M:      Chris Brannon <chris@the-brannons.com>
10100 M:      Kirk Reiser <kirk@reisers.ca>
10101 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
10102 L:      speakup@linux-speakup.org
10103 W:      http://www.linux-speakup.org/
10104 S:      Odd Fixes
10105 F:      drivers/staging/speakup/
10106
10107 STAGING - VIA VT665X DRIVERS
10108 M:      Forest Bond <forest@alittletooquiet.net>
10109 S:      Odd Fixes
10110 F:      drivers/staging/vt665?/
10111
10112 STAGING - WILC1000 WIFI DRIVER
10113 M:      Johnny Kim <johnny.kim@atmel.com>
10114 M:      Rachel Kim <rachel.kim@atmel.com>
10115 M:      Dean Lee <dean.lee@atmel.com>
10116 M:      Chris Park <chris.park@atmel.com>
10117 L:      linux-wireless@vger.kernel.org
10118 S:      Supported
10119 F:      drivers/staging/wilc1000/
10120
10121 STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
10122 M:      Arnaud Patard <arnaud.patard@rtp-net.org>
10123 S:      Odd Fixes
10124 F:      drivers/staging/xgifb/
10125
10126 HFI1 DRIVER
10127 M:      Mike Marciniszyn <infinipath@intel.com>
10128 L:      linux-rdma@vger.kernel.org
10129 S:      Supported
10130 F:      drivers/staging/rdma/hfi1
10131
10132 STARFIRE/DURALAN NETWORK DRIVER
10133 M:      Ion Badulescu <ionut@badula.org>
10134 S:      Odd Fixes
10135 F:      drivers/net/ethernet/adaptec/starfire*
10136
10137 SUN3/3X
10138 M:      Sam Creasey <sammy@sammy.net>
10139 W:      http://sammy.net/sun3/
10140 S:      Maintained
10141 F:      arch/m68k/kernel/*sun3*
10142 F:      arch/m68k/sun3*/
10143 F:      arch/m68k/include/asm/sun3*
10144 F:      drivers/net/ethernet/i825xx/sun3*
10145
10146 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
10147 M:      Hans de Goede <hdegoede@redhat.com>
10148 L:      linux-input@vger.kernel.org
10149 S:      Maintained
10150 F:      Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
10151 F:      drivers/input/keyboard/sun4i-lradc-keys.c
10152
10153 SUNDANCE NETWORK DRIVER
10154 M:      Denis Kirjanov <kda@linux-powerpc.org>
10155 L:      netdev@vger.kernel.org
10156 S:      Maintained
10157 F:      drivers/net/ethernet/dlink/sundance.c
10158
10159 SUPERH
10160 L:      linux-sh@vger.kernel.org
10161 Q:      http://patchwork.kernel.org/project/linux-sh/list/
10162 S:      Orphan
10163 F:      Documentation/sh/
10164 F:      arch/sh/
10165 F:      drivers/sh/
10166
10167 SUSPEND TO RAM
10168 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
10169 M:      Len Brown <len.brown@intel.com>
10170 M:      Pavel Machek <pavel@ucw.cz>
10171 L:      linux-pm@vger.kernel.org
10172 S:      Supported
10173 F:      Documentation/power/
10174 F:      arch/x86/kernel/acpi/
10175 F:      drivers/base/power/
10176 F:      kernel/power/
10177 F:      include/linux/suspend.h
10178 F:      include/linux/freezer.h
10179 F:      include/linux/pm.h
10180
10181 SVGA HANDLING
10182 M:      Martin Mares <mj@ucw.cz>
10183 L:      linux-video@atrey.karlin.mff.cuni.cz
10184 S:      Maintained
10185 F:      Documentation/svga.txt
10186 F:      arch/x86/boot/video*
10187
10188 SWIOTLB SUBSYSTEM
10189 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10190 L:      linux-kernel@vger.kernel.org
10191 S:      Supported
10192 F:      lib/swiotlb.c
10193 F:      arch/*/kernel/pci-swiotlb.c
10194 F:      include/linux/swiotlb.h
10195
10196 SWITCHDEV
10197 M:      Jiri Pirko <jiri@resnulli.us>
10198 L:      netdev@vger.kernel.org
10199 S:      Supported
10200 F:      net/switchdev/
10201 F:      include/net/switchdev.h
10202
10203 SYNOPSYS ARC ARCHITECTURE
10204 M:      Vineet Gupta <vgupta@synopsys.com>
10205 L:      linux-snps-arc@lists.infraded.org
10206 S:      Supported
10207 F:      arch/arc/
10208 F:      Documentation/devicetree/bindings/arc/*
10209 F:      drivers/tty/serial/arc_uart.c
10210 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
10211
10212 SYNOPSYS ARC SDP platform support
10213 M:      Alexey Brodkin <abrodkin@synopsys.com>
10214 S:      Supported
10215 F:      arch/arc/plat-axs10x
10216 F:      arch/arc/boot/dts/ax*
10217 F:      Documentation/devicetree/bindings/arc/axs10*
10218
10219 SYSTEM CONFIGURATION (SYSCON)
10220 M:      Lee Jones <lee.jones@linaro.org>
10221 M:      Arnd Bergmann <arnd@arndb.de>
10222 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
10223 S:      Supported
10224 F:      drivers/mfd/syscon.c
10225
10226 SYSV FILESYSTEM
10227 M:      Christoph Hellwig <hch@infradead.org>
10228 S:      Maintained
10229 F:      Documentation/filesystems/sysv-fs.txt
10230 F:      fs/sysv/
10231 F:      include/linux/sysv_fs.h
10232
10233 TARGET SUBSYSTEM
10234 M:      "Nicholas A. Bellinger" <nab@linux-iscsi.org>
10235 L:      linux-scsi@vger.kernel.org
10236 L:      target-devel@vger.kernel.org
10237 W:      http://www.linux-iscsi.org
10238 W:      http://groups.google.com/group/linux-iscsi-target-dev
10239 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10240 S:      Supported
10241 F:      drivers/target/
10242 F:      include/target/
10243 F:      Documentation/target/
10244
10245 TASKSTATS STATISTICS INTERFACE
10246 M:      Balbir Singh <bsingharora@gmail.com>
10247 S:      Maintained
10248 F:      Documentation/accounting/taskstats*
10249 F:      include/linux/taskstats*
10250 F:      kernel/taskstats.c
10251
10252 TC CLASSIFIER
10253 M:      Jamal Hadi Salim <jhs@mojatatu.com>
10254 L:      netdev@vger.kernel.org
10255 S:      Maintained
10256 F:      include/net/pkt_cls.h
10257 F:      include/uapi/linux/pkt_cls.h
10258 F:      net/sched/
10259
10260 TCP LOW PRIORITY MODULE
10261 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
10262 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
10263 W:      http://tcp-lp-mod.sourceforge.net/
10264 S:      Maintained
10265 F:      net/ipv4/tcp_lp.c
10266
10267 TDA10071 MEDIA DRIVER
10268 M:      Antti Palosaari <crope@iki.fi>
10269 L:      linux-media@vger.kernel.org
10270 W:      http://linuxtv.org/
10271 W:      http://palosaari.fi/linux/
10272 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10273 T:      git git://linuxtv.org/anttip/media_tree.git
10274 S:      Maintained
10275 F:      drivers/media/dvb-frontends/tda10071*
10276
10277 TDA18212 MEDIA DRIVER
10278 M:      Antti Palosaari <crope@iki.fi>
10279 L:      linux-media@vger.kernel.org
10280 W:      http://linuxtv.org/
10281 W:      http://palosaari.fi/linux/
10282 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10283 T:      git git://linuxtv.org/anttip/media_tree.git
10284 S:      Maintained
10285 F:      drivers/media/tuners/tda18212*
10286
10287 TDA18218 MEDIA DRIVER
10288 M:      Antti Palosaari <crope@iki.fi>
10289 L:      linux-media@vger.kernel.org
10290 W:      http://linuxtv.org/
10291 W:      http://palosaari.fi/linux/
10292 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10293 T:      git git://linuxtv.org/anttip/media_tree.git
10294 S:      Maintained
10295 F:      drivers/media/tuners/tda18218*
10296
10297 TDA18271 MEDIA DRIVER
10298 M:      Michael Krufky <mkrufky@linuxtv.org>
10299 L:      linux-media@vger.kernel.org
10300 W:      http://linuxtv.org/
10301 W:      http://github.com/mkrufky
10302 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10303 T:      git git://linuxtv.org/mkrufky/tuners.git
10304 S:      Maintained
10305 F:      drivers/media/tuners/tda18271*
10306
10307 TDA827x MEDIA DRIVER
10308 M:      Michael Krufky <mkrufky@linuxtv.org>
10309 L:      linux-media@vger.kernel.org
10310 W:      http://linuxtv.org/
10311 W:      http://github.com/mkrufky
10312 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10313 T:      git git://linuxtv.org/mkrufky/tuners.git
10314 S:      Maintained
10315 F:      drivers/media/tuners/tda8290.*
10316
10317 TDA8290 MEDIA DRIVER
10318 M:      Michael Krufky <mkrufky@linuxtv.org>
10319 L:      linux-media@vger.kernel.org
10320 W:      http://linuxtv.org/
10321 W:      http://github.com/mkrufky
10322 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10323 T:      git git://linuxtv.org/mkrufky/tuners.git
10324 S:      Maintained
10325 F:      drivers/media/tuners/tda8290.*
10326
10327 TDA9840 MEDIA DRIVER
10328 M:      Hans Verkuil <hverkuil@xs4all.nl>
10329 L:      linux-media@vger.kernel.org
10330 T:      git git://linuxtv.org/media_tree.git
10331 W:      http://linuxtv.org
10332 S:      Maintained
10333 F:      drivers/media/i2c/tda9840*
10334
10335 TEA5761 TUNER DRIVER
10336 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10337 L:      linux-media@vger.kernel.org
10338 W:      http://linuxtv.org
10339 T:      git git://linuxtv.org/media_tree.git
10340 S:      Odd fixes
10341 F:      drivers/media/tuners/tea5761.*
10342
10343 TEA5767 TUNER DRIVER
10344 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10345 L:      linux-media@vger.kernel.org
10346 W:      http://linuxtv.org
10347 T:      git git://linuxtv.org/media_tree.git
10348 S:      Maintained
10349 F:      drivers/media/tuners/tea5767.*
10350
10351 TEA6415C MEDIA DRIVER
10352 M:      Hans Verkuil <hverkuil@xs4all.nl>
10353 L:      linux-media@vger.kernel.org
10354 T:      git git://linuxtv.org/media_tree.git
10355 W:      http://linuxtv.org
10356 S:      Maintained
10357 F:      drivers/media/i2c/tea6415c*
10358
10359 TEA6420 MEDIA DRIVER
10360 M:      Hans Verkuil <hverkuil@xs4all.nl>
10361 L:      linux-media@vger.kernel.org
10362 T:      git git://linuxtv.org/media_tree.git
10363 W:      http://linuxtv.org
10364 S:      Maintained
10365 F:      drivers/media/i2c/tea6420*
10366
10367 TEAM DRIVER
10368 M:      Jiri Pirko <jiri@resnulli.us>
10369 L:      netdev@vger.kernel.org
10370 S:      Supported
10371 F:      drivers/net/team/
10372 F:      include/linux/if_team.h
10373 F:      include/uapi/linux/if_team.h
10374
10375 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
10376 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
10377 S:      Maintained
10378 F:      arch/x86/platform/ts5500/
10379
10380 TECHNOTREND USB IR RECEIVER
10381 M:      Sean Young <sean@mess.org>
10382 L:      linux-media@vger.kernel.org
10383 S:      Maintained
10384 F:      drivers/media/rc/ttusbir.c
10385
10386 TEGRA ARCHITECTURE SUPPORT
10387 M:      Stephen Warren <swarren@wwwdotorg.org>
10388 M:      Thierry Reding <thierry.reding@gmail.com>
10389 M:      Alexandre Courbot <gnurou@gmail.com>
10390 L:      linux-tegra@vger.kernel.org
10391 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
10392 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
10393 S:      Supported
10394 N:      [^a-z]tegra
10395
10396 TEGRA CLOCK DRIVER
10397 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
10398 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
10399 S:      Supported
10400 F:      drivers/clk/tegra/
10401
10402 TEGRA DMA DRIVER
10403 M:      Laxman Dewangan <ldewangan@nvidia.com>
10404 S:      Supported
10405 F:      drivers/dma/tegra20-apb-dma.c
10406
10407 TEGRA I2C DRIVER
10408 M:      Laxman Dewangan <ldewangan@nvidia.com>
10409 S:      Supported
10410 F:      drivers/i2c/busses/i2c-tegra.c
10411
10412 TEGRA IOMMU DRIVERS
10413 M:      Hiroshi Doyu <hdoyu@nvidia.com>
10414 S:      Supported
10415 F:      drivers/iommu/tegra*
10416
10417 TEGRA KBC DRIVER
10418 M:      Rakesh Iyer <riyer@nvidia.com>
10419 M:      Laxman Dewangan <ldewangan@nvidia.com>
10420 S:      Supported
10421 F:      drivers/input/keyboard/tegra-kbc.c
10422
10423 TEGRA PWM DRIVER
10424 M:      Thierry Reding <thierry.reding@gmail.com>
10425 S:      Supported
10426 F:      drivers/pwm/pwm-tegra.c
10427
10428 TEGRA SERIAL DRIVER
10429 M:      Laxman Dewangan <ldewangan@nvidia.com>
10430 S:      Supported
10431 F:      drivers/tty/serial/serial-tegra.c
10432
10433 TEGRA SPI DRIVER
10434 M:      Laxman Dewangan <ldewangan@nvidia.com>
10435 S:      Supported
10436 F:      drivers/spi/spi-tegra*
10437
10438 TEHUTI ETHERNET DRIVER
10439 M:      Andy Gospodarek <andy@greyhouse.net>
10440 L:      netdev@vger.kernel.org
10441 S:      Supported
10442 F:      drivers/net/ethernet/tehuti/*
10443
10444 Telecom Clock Driver for MCPL0010
10445 M:      Mark Gross <mark.gross@intel.com>
10446 S:      Supported
10447 F:      drivers/char/tlclk.c
10448
10449 TENSILICA XTENSA PORT (xtensa)
10450 M:      Chris Zankel <chris@zankel.net>
10451 M:      Max Filippov <jcmvbkbc@gmail.com>
10452 L:      linux-xtensa@linux-xtensa.org
10453 S:      Maintained
10454 F:      arch/xtensa/
10455 F:      drivers/irqchip/irq-xtensa-*
10456
10457 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
10458 M:      Hans Verkuil <hverkuil@xs4all.nl>
10459 L:      linux-media@vger.kernel.org
10460 T:      git git://linuxtv.org/media_tree.git
10461 W:      http://linuxtv.org
10462 S:      Maintained
10463 F:      drivers/media/radio/radio-raremono.c
10464
10465 THERMAL
10466 M:      Zhang Rui <rui.zhang@intel.com>
10467 M:      Eduardo Valentin <edubezval@gmail.com>
10468 L:      linux-pm@vger.kernel.org
10469 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
10470 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
10471 Q:      https://patchwork.kernel.org/project/linux-pm/list/
10472 S:      Supported
10473 F:      drivers/thermal/
10474 F:      include/linux/thermal.h
10475 F:      include/uapi/linux/thermal.h
10476 F:      include/linux/cpu_cooling.h
10477 F:      Documentation/devicetree/bindings/thermal/
10478
10479 THERMAL/CPU_COOLING
10480 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
10481 M:      Viresh Kumar <viresh.kumar@linaro.org>
10482 M:      Javi Merino <javi.merino@arm.com>
10483 L:      linux-pm@vger.kernel.org
10484 S:      Supported
10485 F:      Documentation/thermal/cpu-cooling-api.txt
10486 F:      drivers/thermal/cpu_cooling.c
10487 F:      include/linux/cpu_cooling.h
10488
10489 THINGM BLINK(1) USB RGB LED DRIVER
10490 M:      Vivien Didelot <vivien.didelot@savoirfairelinux.com>
10491 S:      Maintained
10492 F:      drivers/hid/hid-thingm.c
10493
10494 THINKPAD ACPI EXTRAS DRIVER
10495 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
10496 L:      ibm-acpi-devel@lists.sourceforge.net
10497 L:      platform-driver-x86@vger.kernel.org
10498 W:      http://ibm-acpi.sourceforge.net
10499 W:      http://thinkwiki.org/wiki/Ibm-acpi
10500 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
10501 S:      Maintained
10502 F:      drivers/platform/x86/thinkpad_acpi.c
10503
10504 TI BANDGAP AND THERMAL DRIVER
10505 M:      Eduardo Valentin <edubezval@gmail.com>
10506 L:      linux-pm@vger.kernel.org
10507 L:      linux-omap@vger.kernel.org
10508 S:      Maintained
10509 F:      drivers/thermal/ti-soc-thermal/
10510
10511 TI CDCE706 CLOCK DRIVER
10512 M:      Max Filippov <jcmvbkbc@gmail.com>
10513 S:      Maintained
10514 F:      drivers/clk/clk-cdce706.c
10515
10516 TI CLOCK DRIVER
10517 M:      Tero Kristo <t-kristo@ti.com>
10518 L:      linux-omap@vger.kernel.org
10519 S:      Maintained
10520 F:      drivers/clk/ti/
10521 F:      include/linux/clk/ti.h
10522
10523 TI FLASH MEDIA INTERFACE DRIVER
10524 M:      Alex Dubov <oakad@yahoo.com>
10525 S:      Maintained
10526 F:      drivers/misc/tifm*
10527 F:      drivers/mmc/host/tifm_sd.c
10528 F:      include/linux/tifm.h
10529
10530 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
10531 M:      Santosh Shilimkar <ssantosh@kernel.org>
10532 L:      linux-kernel@vger.kernel.org
10533 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10534 S:      Maintained
10535 F:      drivers/soc/ti/*
10536 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
10537
10538
10539 TI LM49xxx FAMILY ASoC CODEC DRIVERS
10540 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
10541 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
10542 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10543 S:      Maintained
10544 F:      sound/soc/codecs/lm49453*
10545 F:      sound/soc/codecs/isabelle*
10546
10547 TI LP855x BACKLIGHT DRIVER
10548 M:      Milo Kim <milo.kim@ti.com>
10549 S:      Maintained
10550 F:      Documentation/backlight/lp855x-driver.txt
10551 F:      drivers/video/backlight/lp855x_bl.c
10552 F:      include/linux/platform_data/lp855x.h
10553
10554 TI LP8727 CHARGER DRIVER
10555 M:      Milo Kim <milo.kim@ti.com>
10556 S:      Maintained
10557 F:      drivers/power/lp8727_charger.c
10558 F:      include/linux/platform_data/lp8727.h
10559
10560 TI LP8788 MFD DRIVER
10561 M:      Milo Kim <milo.kim@ti.com>
10562 S:      Maintained
10563 F:      drivers/iio/adc/lp8788_adc.c
10564 F:      drivers/leds/leds-lp8788.c
10565 F:      drivers/mfd/lp8788*.c
10566 F:      drivers/power/lp8788-charger.c
10567 F:      drivers/regulator/lp8788-*.c
10568 F:      include/linux/mfd/lp8788*.h
10569
10570 TI NETCP ETHERNET DRIVER
10571 M:      Wingman Kwok <w-kwok2@ti.com>
10572 M:      Murali Karicheri <m-karicheri2@ti.com>
10573 L:      netdev@vger.kernel.org
10574 S:      Maintained
10575 F:      drivers/net/ethernet/ti/netcp*
10576
10577 TI TAS571X FAMILY ASoC CODEC DRIVER
10578 M:      Kevin Cernekee <cernekee@chromium.org>
10579 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10580 S:      Odd Fixes
10581 F:      sound/soc/codecs/tas571x*
10582
10583 TI TWL4030 SERIES SOC CODEC DRIVER
10584 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
10585 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10586 S:      Maintained
10587 F:      sound/soc/codecs/twl4030*
10588
10589 TI WILINK WIRELESS DRIVERS
10590 L:      linux-wireless@vger.kernel.org
10591 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
10592 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
10593 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
10594 S:      Orphan
10595 F:      drivers/net/wireless/ti/
10596 F:      include/linux/wl12xx.h
10597
10598 TIPC NETWORK LAYER
10599 M:      Jon Maloy <jon.maloy@ericsson.com>
10600 M:      Ying Xue <ying.xue@windriver.com>
10601 L:      netdev@vger.kernel.org (core kernel code)
10602 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
10603 W:      http://tipc.sourceforge.net/
10604 S:      Maintained
10605 F:      include/uapi/linux/tipc*.h
10606 F:      net/tipc/
10607
10608 TILE ARCHITECTURE
10609 M:      Chris Metcalf <cmetcalf@ezchip.com>
10610 W:      http://www.ezchip.com/scm/
10611 S:      Supported
10612 F:      arch/tile/
10613 F:      drivers/char/tile-srom.c
10614 F:      drivers/edac/tile_edac.c
10615 F:      drivers/net/ethernet/tile/
10616 F:      drivers/rtc/rtc-tile.c
10617 F:      drivers/tty/hvc/hvc_tile.c
10618 F:      drivers/tty/serial/tilegx.c
10619 F:      drivers/usb/host/*-tilegx.c
10620 F:      include/linux/usb/tilegx.h
10621
10622 TLAN NETWORK DRIVER
10623 M:      Samuel Chessman <chessman@tux.org>
10624 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
10625 W:      http://sourceforge.net/projects/tlan/
10626 S:      Maintained
10627 F:      Documentation/networking/tlan.txt
10628 F:      drivers/net/ethernet/ti/tlan.*
10629
10630 TOMOYO SECURITY MODULE
10631 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
10632 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
10633 L:      tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
10634 L:      tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
10635 L:      tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
10636 L:      tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
10637 W:      http://tomoyo.sourceforge.jp/
10638 T:      quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
10639 S:      Maintained
10640 F:      security/tomoyo/
10641
10642 TOPSTAR LAPTOP EXTRAS DRIVER
10643 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
10644 L:      platform-driver-x86@vger.kernel.org
10645 S:      Maintained
10646 F:      drivers/platform/x86/topstar-laptop.c
10647
10648 TOSHIBA ACPI EXTRAS DRIVER
10649 M:      Azael Avalos <coproscefalo@gmail.com>
10650 L:      platform-driver-x86@vger.kernel.org
10651 S:      Maintained
10652 F:      drivers/platform/x86/toshiba_acpi.c
10653
10654 TOSHIBA BLUETOOTH DRIVER
10655 M:      Azael Avalos <coproscefalo@gmail.com>
10656 L:      platform-driver-x86@vger.kernel.org
10657 S:      Maintained
10658 F:      drivers/platform/x86/toshiba_bluetooth.c
10659
10660 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
10661 M:      Azael Avalos <coproscefalo@gmail.com>
10662 L:      platform-driver-x86@vger.kernel.org
10663 S:      Maintained
10664 F:      drivers/platform/x86/toshiba_haps.c
10665
10666 TOSHIBA SMM DRIVER
10667 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
10668 W:      http://www.buzzard.org.uk/toshiba/
10669 S:      Maintained
10670 F:      drivers/char/toshiba.c
10671 F:      include/linux/toshiba.h
10672 F:      include/uapi/linux/toshiba.h
10673
10674 TOSHIBA TC358743 DRIVER
10675 M:      Mats Randgaard <matrandg@cisco.com>
10676 L:      linux-media@vger.kernel.org
10677 S:      Maintained
10678 F:      drivers/media/i2c/tc358743*
10679 F:      include/media/tc358743.h
10680
10681 TMIO MMC DRIVER
10682 M:      Ian Molton <ian@mnementh.co.uk>
10683 L:      linux-mmc@vger.kernel.org
10684 S:      Maintained
10685 F:      drivers/mmc/host/tmio_mmc*
10686 F:      drivers/mmc/host/sh_mobile_sdhi.c
10687 F:      include/linux/mmc/tmio.h
10688 F:      include/linux/mmc/sh_mobile_sdhi.h
10689
10690 TMP401 HARDWARE MONITOR DRIVER
10691 M:      Guenter Roeck <linux@roeck-us.net>
10692 L:      lm-sensors@lm-sensors.org
10693 S:      Maintained
10694 F:      Documentation/hwmon/tmp401
10695 F:      drivers/hwmon/tmp401.c
10696
10697 TMPFS (SHMEM FILESYSTEM)
10698 M:      Hugh Dickins <hughd@google.com>
10699 L:      linux-mm@kvack.org
10700 S:      Maintained
10701 F:      include/linux/shmem_fs.h
10702 F:      mm/shmem.c
10703
10704 TM6000 VIDEO4LINUX DRIVER
10705 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10706 L:      linux-media@vger.kernel.org
10707 W:      http://linuxtv.org
10708 T:      git git://linuxtv.org/media_tree.git
10709 S:      Odd fixes
10710 F:      drivers/media/usb/tm6000/
10711
10712 TW68 VIDEO4LINUX DRIVER
10713 M:      Hans Verkuil <hverkuil@xs4all.nl>
10714 L:      linux-media@vger.kernel.org
10715 T:      git git://linuxtv.org/media_tree.git
10716 W:      http://linuxtv.org
10717 S:      Odd Fixes
10718 F:      drivers/media/pci/tw68/
10719
10720 TPM DEVICE DRIVER
10721 M:      Peter Huewe <peterhuewe@gmx.de>
10722 M:      Marcel Selhorst <tpmdd@selhorst.net>
10723 R:      Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
10724 W:      http://tpmdd.sourceforge.net
10725 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
10726 Q:      git git://github.com/PeterHuewe/linux-tpmdd.git
10727 T:      https://github.com/PeterHuewe/linux-tpmdd
10728 S:      Maintained
10729 F:      drivers/char/tpm/
10730
10731 TPM IBM_VTPM DEVICE DRIVER
10732 M:      Ashley Lai <ashleydlai@gmail.com>
10733 W:      http://tpmdd.sourceforge.net
10734 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
10735 S:      Maintained
10736 F:      drivers/char/tpm/tpm_ibmvtpm*
10737
10738 TRACING
10739 M:      Steven Rostedt <rostedt@goodmis.org>
10740 M:      Ingo Molnar <mingo@redhat.com>
10741 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
10742 S:      Maintained
10743 F:      Documentation/trace/ftrace.txt
10744 F:      arch/*/*/*/ftrace.h
10745 F:      arch/*/kernel/ftrace.c
10746 F:      include/*/ftrace.h
10747 F:      include/linux/trace*.h
10748 F:      include/trace/
10749 F:      kernel/trace/
10750 F:      tools/testing/selftests/ftrace/
10751
10752 TRIVIAL PATCHES
10753 M:      Jiri Kosina <trivial@kernel.org>
10754 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
10755 S:      Maintained
10756 K:      ^Subject:.*(?i)trivial
10757
10758 TTY LAYER
10759 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10760 M:      Jiri Slaby <jslaby@suse.com>
10761 S:      Supported
10762 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
10763 F:      Documentation/serial/
10764 F:      drivers/tty/
10765 F:      drivers/tty/serial/serial_core.c
10766 F:      include/linux/serial_core.h
10767 F:      include/linux/serial.h
10768 F:      include/linux/tty.h
10769 F:      include/uapi/linux/serial_core.h
10770 F:      include/uapi/linux/serial.h
10771 F:      include/uapi/linux/tty.h
10772
10773 TUA9001 MEDIA DRIVER
10774 M:      Antti Palosaari <crope@iki.fi>
10775 L:      linux-media@vger.kernel.org
10776 W:      http://linuxtv.org/
10777 W:      http://palosaari.fi/linux/
10778 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10779 T:      git git://linuxtv.org/anttip/media_tree.git
10780 S:      Maintained
10781 F:      drivers/media/tuners/tua9001*
10782
10783 TULIP NETWORK DRIVERS
10784 M:      Grant Grundler <grundler@parisc-linux.org>
10785 L:      netdev@vger.kernel.org
10786 S:      Maintained
10787 F:      drivers/net/ethernet/dec/tulip/
10788
10789 TUN/TAP driver
10790 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
10791 W:      http://vtun.sourceforge.net/tun
10792 S:      Maintained
10793 F:      Documentation/networking/tuntap.txt
10794 F:      arch/um/os-Linux/drivers/
10795
10796 TURBOCHANNEL SUBSYSTEM
10797 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
10798 M:      Ralf Baechle <ralf@linux-mips.org>
10799 L:      linux-mips@linux-mips.org
10800 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
10801 S:      Maintained
10802 F:      drivers/tc/
10803 F:      include/linux/tc.h
10804
10805 U14-34F SCSI DRIVER
10806 M:      Dario Ballabio <ballabio_dario@emc.com>
10807 L:      linux-scsi@vger.kernel.org
10808 S:      Maintained
10809 F:      drivers/scsi/u14-34f.c
10810
10811 UBI FILE SYSTEM (UBIFS)
10812 M:      Artem Bityutskiy <dedekind1@gmail.com>
10813 M:      Adrian Hunter <adrian.hunter@intel.com>
10814 L:      linux-mtd@lists.infradead.org
10815 T:      git git://git.infradead.org/ubifs-2.6.git
10816 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
10817 S:      Maintained
10818 F:      Documentation/filesystems/ubifs.txt
10819 F:      fs/ubifs/
10820
10821 UCLINUX (M68KNOMMU AND COLDFIRE)
10822 M:      Greg Ungerer <gerg@uclinux.org>
10823 W:      http://www.uclinux.org/
10824 L:      linux-m68k@lists.linux-m68k.org
10825 L:      uclinux-dev@uclinux.org  (subscribers-only)
10826 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
10827 S:      Maintained
10828 F:      arch/m68k/coldfire/
10829 F:      arch/m68k/68*/
10830 F:      arch/m68k/*/*_no.*
10831 F:      arch/m68k/include/asm/*_no.*
10832
10833 UDF FILESYSTEM
10834 M:      Jan Kara <jack@suse.com>
10835 S:      Maintained
10836 F:      Documentation/filesystems/udf.txt
10837 F:      fs/udf/
10838
10839 UFS FILESYSTEM
10840 M:      Evgeniy Dushistov <dushistov@mail.ru>
10841 S:      Maintained
10842 F:      Documentation/filesystems/ufs.txt
10843 F:      fs/ufs/
10844
10845 UHID USERSPACE HID IO DRIVER:
10846 M:      David Herrmann <dh.herrmann@googlemail.com>
10847 L:      linux-input@vger.kernel.org
10848 S:      Maintained
10849 F:      drivers/hid/uhid.c
10850 F:      include/uapi/linux/uhid.h
10851
10852 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
10853 L:      linux-usb@vger.kernel.org
10854 S:      Orphan
10855 F:      drivers/uwb/
10856 F:      include/linux/uwb.h
10857 F:      include/linux/uwb/
10858
10859 UNICORE32 ARCHITECTURE:
10860 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
10861 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
10862 S:      Maintained
10863 T:      git git://github.com/gxt/linux.git
10864 F:      arch/unicore32/
10865
10866 UNIFDEF
10867 M:      Tony Finch <dot@dotat.at>
10868 W:      http://dotat.at/prog/unifdef
10869 S:      Maintained
10870 F:      scripts/unifdef.c
10871
10872 UNIFORM CDROM DRIVER
10873 M:      Jens Axboe <axboe@kernel.dk>
10874 W:      http://www.kernel.dk
10875 S:      Maintained
10876 F:      Documentation/cdrom/
10877 F:      drivers/cdrom/cdrom.c
10878 F:      include/linux/cdrom.h
10879 F:      include/uapi/linux/cdrom.h
10880
10881 UNISYS S-PAR DRIVERS
10882 M:      Benjamin Romer <benjamin.romer@unisys.com>
10883 M:      David Kershner <david.kershner@unisys.com>
10884 L:      sparmaintainer@unisys.com (Unisys internal)
10885 S:      Supported
10886 F:      drivers/staging/unisys/
10887
10888 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
10889 M:      Vinayak Holikatti <vinholikatti@gmail.com>
10890 L:      linux-scsi@vger.kernel.org
10891 S:      Supported
10892 F:      Documentation/scsi/ufs.txt
10893 F:      drivers/scsi/ufs/
10894
10895 UNSORTED BLOCK IMAGES (UBI)
10896 M:      Artem Bityutskiy <dedekind1@gmail.com>
10897 M:      Richard Weinberger <richard@nod.at>
10898 W:      http://www.linux-mtd.infradead.org/
10899 L:      linux-mtd@lists.infradead.org
10900 T:      git git://git.infradead.org/ubifs-2.6.git
10901 S:      Supported
10902 F:      drivers/mtd/ubi/
10903 F:      include/linux/mtd/ubi.h
10904 F:      include/uapi/mtd/ubi-user.h
10905
10906 USB ACM DRIVER
10907 M:      Oliver Neukum <oliver@neukum.org>
10908 L:      linux-usb@vger.kernel.org
10909 S:      Maintained
10910 F:      Documentation/usb/acm.txt
10911 F:      drivers/usb/class/cdc-acm.*
10912
10913 USB AR5523 WIRELESS DRIVER
10914 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
10915 L:      linux-wireless@vger.kernel.org
10916 S:      Maintained
10917 F:      drivers/net/wireless/ath/ar5523/
10918
10919 USB ATTACHED SCSI
10920 M:      Hans de Goede <hdegoede@redhat.com>
10921 M:      Gerd Hoffmann <kraxel@redhat.com>
10922 L:      linux-usb@vger.kernel.org
10923 L:      linux-scsi@vger.kernel.org
10924 S:      Maintained
10925 F:      drivers/usb/storage/uas.c
10926
10927 USB CDC ETHERNET DRIVER
10928 M:      Oliver Neukum <oliver@neukum.org>
10929 L:      linux-usb@vger.kernel.org
10930 S:      Maintained
10931 F:      drivers/net/usb/cdc_*.c
10932 F:      include/uapi/linux/usb/cdc.h
10933
10934 USB CHAOSKEY DRIVER
10935 M:      Keith Packard <keithp@keithp.com>
10936 L:      linux-usb@vger.kernel.org
10937 S:      Maintained
10938 F:      drivers/usb/misc/chaoskey.c
10939
10940 USB CYPRESS C67X00 DRIVER
10941 M:      Peter Korsgaard <jacmet@sunsite.dk>
10942 L:      linux-usb@vger.kernel.org
10943 S:      Maintained
10944 F:      drivers/usb/c67x00/
10945
10946 USB DAVICOM DM9601 DRIVER
10947 M:      Peter Korsgaard <jacmet@sunsite.dk>
10948 L:      netdev@vger.kernel.org
10949 W:      http://www.linux-usb.org/usbnet
10950 S:      Maintained
10951 F:      drivers/net/usb/dm9601.c
10952
10953 USB DIAMOND RIO500 DRIVER
10954 M:      Cesar Miquel <miquel@df.uba.ar>
10955 L:      rio500-users@lists.sourceforge.net
10956 W:      http://rio500.sourceforge.net
10957 S:      Maintained
10958 F:      drivers/usb/misc/rio500*
10959
10960 USB EHCI DRIVER
10961 M:      Alan Stern <stern@rowland.harvard.edu>
10962 L:      linux-usb@vger.kernel.org
10963 S:      Maintained
10964 F:      Documentation/usb/ehci.txt
10965 F:      drivers/usb/host/ehci*
10966
10967 USB GADGET/PERIPHERAL SUBSYSTEM
10968 M:      Felipe Balbi <balbi@ti.com>
10969 L:      linux-usb@vger.kernel.org
10970 W:      http://www.linux-usb.org/gadget
10971 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
10972 S:      Maintained
10973 F:      drivers/usb/gadget/
10974 F:      include/linux/usb/gadget*
10975
10976 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
10977 M:      Jiri Kosina <jikos@kernel.org>
10978 L:      linux-usb@vger.kernel.org
10979 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
10980 S:      Maintained
10981 F:      Documentation/hid/hiddev.txt
10982 F:      drivers/hid/usbhid/
10983
10984 USB ISP116X DRIVER
10985 M:      Olav Kongas <ok@artecdesign.ee>
10986 L:      linux-usb@vger.kernel.org
10987 S:      Maintained
10988 F:      drivers/usb/host/isp116x*
10989 F:      include/linux/usb/isp116x.h
10990
10991 USB MASS STORAGE DRIVER
10992 M:      Matthew Dharm <mdharm-usb@one-eyed-alien.net>
10993 L:      linux-usb@vger.kernel.org
10994 L:      usb-storage@lists.one-eyed-alien.net
10995 S:      Maintained
10996 W:      http://www.one-eyed-alien.net/~mdharm/linux-usb/
10997 F:      drivers/usb/storage/
10998
10999 USB MIDI DRIVER
11000 M:      Clemens Ladisch <clemens@ladisch.de>
11001 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11002 T:      git git://git.alsa-project.org/alsa-kernel.git
11003 S:      Maintained
11004 F:      sound/usb/midi.*
11005
11006 USB NETWORKING DRIVERS
11007 L:      linux-usb@vger.kernel.org
11008 S:      Odd Fixes
11009 F:      drivers/net/usb/
11010
11011 USB OHCI DRIVER
11012 M:      Alan Stern <stern@rowland.harvard.edu>
11013 L:      linux-usb@vger.kernel.org
11014 S:      Maintained
11015 F:      Documentation/usb/ohci.txt
11016 F:      drivers/usb/host/ohci*
11017
11018 USB OTG FSM (Finite State Machine)
11019 M:      Peter Chen <Peter.Chen@freescale.com>
11020 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
11021 L:      linux-usb@vger.kernel.org
11022 S:      Maintained
11023 F:      drivers/usb/common/usb-otg-fsm.c
11024
11025 USB OVER IP DRIVER
11026 M:      Valentina Manea <valentina.manea.m@gmail.com>
11027 M:      Shuah Khan <shuah.kh@samsung.com>
11028 L:      linux-usb@vger.kernel.org
11029 S:      Maintained
11030 F:      drivers/usb/usbip/
11031 F:      tools/usb/usbip/
11032
11033 USB PEGASUS DRIVER
11034 M:      Petko Manolov <petkan@nucleusys.com>
11035 L:      linux-usb@vger.kernel.org
11036 L:      netdev@vger.kernel.org
11037 T:      git git://github.com/petkan/pegasus.git
11038 W:      https://github.com/petkan/pegasus
11039 S:      Maintained
11040 F:      drivers/net/usb/pegasus.*
11041
11042 USB PHY LAYER
11043 M:      Felipe Balbi <balbi@ti.com>
11044 L:      linux-usb@vger.kernel.org
11045 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
11046 S:      Maintained
11047 F:      drivers/usb/phy/
11048
11049 USB PRINTER DRIVER (usblp)
11050 M:      Pete Zaitcev <zaitcev@redhat.com>
11051 L:      linux-usb@vger.kernel.org
11052 S:      Supported
11053 F:      drivers/usb/class/usblp.c
11054
11055 USB RTL8150 DRIVER
11056 M:      Petko Manolov <petkan@nucleusys.com>
11057 L:      linux-usb@vger.kernel.org
11058 L:      netdev@vger.kernel.org
11059 T:      git git://github.com/petkan/rtl8150.git
11060 W:      https://github.com/petkan/rtl8150
11061 S:      Maintained
11062 F:      drivers/net/usb/rtl8150.c
11063
11064 USB SERIAL SUBSYSTEM
11065 M:      Johan Hovold <johan@kernel.org>
11066 L:      linux-usb@vger.kernel.org
11067 S:      Maintained
11068 F:      Documentation/usb/usb-serial.txt
11069 F:      drivers/usb/serial/
11070 F:      include/linux/usb/serial.h
11071
11072 USB SMSC75XX ETHERNET DRIVER
11073 M:      Steve Glendinning <steve.glendinning@shawell.net>
11074 L:      netdev@vger.kernel.org
11075 S:      Maintained
11076 F:      drivers/net/usb/smsc75xx.*
11077
11078 USB SMSC95XX ETHERNET DRIVER
11079 M:      Steve Glendinning <steve.glendinning@shawell.net>
11080 L:      netdev@vger.kernel.org
11081 S:      Maintained
11082 F:      drivers/net/usb/smsc95xx.*
11083
11084 USB SUBSYSTEM
11085 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11086 L:      linux-usb@vger.kernel.org
11087 W:      http://www.linux-usb.org
11088 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
11089 S:      Supported
11090 F:      Documentation/usb/
11091 F:      drivers/usb/
11092 F:      include/linux/usb.h
11093 F:      include/linux/usb/
11094
11095 USB UHCI DRIVER
11096 M:      Alan Stern <stern@rowland.harvard.edu>
11097 L:      linux-usb@vger.kernel.org
11098 S:      Maintained
11099 F:      drivers/usb/host/uhci*
11100
11101 USB "USBNET" DRIVER FRAMEWORK
11102 M:      Oliver Neukum <oneukum@suse.com>
11103 L:      netdev@vger.kernel.org
11104 W:      http://www.linux-usb.org/usbnet
11105 S:      Maintained
11106 F:      drivers/net/usb/usbnet.c
11107 F:      include/linux/usb/usbnet.h
11108
11109 USB VIDEO CLASS
11110 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11111 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
11112 L:      linux-media@vger.kernel.org
11113 T:      git git://linuxtv.org/media_tree.git
11114 W:      http://www.ideasonboard.org/uvc/
11115 S:      Maintained
11116 F:      drivers/media/usb/uvc/
11117 F:      include/uapi/linux/uvcvideo.h
11118
11119 USB VISION DRIVER
11120 M:      Hans Verkuil <hverkuil@xs4all.nl>
11121 L:      linux-media@vger.kernel.org
11122 T:      git git://linuxtv.org/media_tree.git
11123 W:      http://linuxtv.org
11124 S:      Odd Fixes
11125 F:      drivers/media/usb/usbvision/
11126
11127 USB WEBCAM GADGET
11128 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11129 L:      linux-usb@vger.kernel.org
11130 S:      Maintained
11131 F:      drivers/usb/gadget/function/*uvc*
11132 F:      drivers/usb/gadget/legacy/webcam.c
11133
11134 USB WIRELESS RNDIS DRIVER (rndis_wlan)
11135 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
11136 L:      linux-wireless@vger.kernel.org
11137 S:      Maintained
11138 F:      drivers/net/wireless/rndis_wlan.c
11139
11140 USB XHCI DRIVER
11141 M:      Mathias Nyman <mathias.nyman@intel.com>
11142 L:      linux-usb@vger.kernel.org
11143 S:      Supported
11144 F:      drivers/usb/host/xhci*
11145 F:      drivers/usb/host/pci-quirks*
11146
11147 USB ZD1201 DRIVER
11148 L:      linux-wireless@vger.kernel.org
11149 W:      http://linux-lc100020.sourceforge.net
11150 S:      Orphan
11151 F:      drivers/net/wireless/zd1201.*
11152
11153 USB ZR364XX DRIVER
11154 M:      Antoine Jacquet <royale@zerezo.com>
11155 L:      linux-usb@vger.kernel.org
11156 L:      linux-media@vger.kernel.org
11157 T:      git git://linuxtv.org/media_tree.git
11158 W:      http://royale.zerezo.com/zr364xx/
11159 S:      Maintained
11160 F:      Documentation/video4linux/zr364xx.txt
11161 F:      drivers/media/usb/zr364xx/
11162
11163 ULPI BUS
11164 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
11165 L:      linux-usb@vger.kernel.org
11166 S:      Maintained
11167 F:      drivers/usb/common/ulpi.c
11168 F:      include/linux/ulpi/
11169
11170 USER-MODE LINUX (UML)
11171 M:      Jeff Dike <jdike@addtoit.com>
11172 M:      Richard Weinberger <richard@nod.at>
11173 L:      user-mode-linux-devel@lists.sourceforge.net
11174 L:      user-mode-linux-user@lists.sourceforge.net
11175 W:      http://user-mode-linux.sourceforge.net
11176 S:      Maintained
11177 F:      Documentation/virtual/uml/
11178 F:      arch/um/
11179 F:      arch/x86/um/
11180 F:      fs/hostfs/
11181 F:      fs/hppfs/
11182
11183 USERSPACE I/O (UIO)
11184 M:      "Hans J. Koch" <hjk@hansjkoch.de>
11185 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11186 S:      Maintained
11187 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
11188 F:      Documentation/DocBook/uio-howto.tmpl
11189 F:      drivers/uio/
11190 F:      include/linux/uio*.h
11191
11192 UTIL-LINUX PACKAGE
11193 M:      Karel Zak <kzak@redhat.com>
11194 L:      util-linux@vger.kernel.org
11195 W:      http://en.wikipedia.org/wiki/Util-linux
11196 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
11197 S:      Maintained
11198
11199 UVESAFB DRIVER
11200 M:      Michal Januszewski <spock@gentoo.org>
11201 L:      linux-fbdev@vger.kernel.org
11202 W:      http://dev.gentoo.org/~spock/projects/uvesafb/
11203 S:      Maintained
11204 F:      Documentation/fb/uvesafb.txt
11205 F:      drivers/video/fbdev/uvesafb.*
11206
11207 VFAT/FAT/MSDOS FILESYSTEM
11208 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
11209 S:      Maintained
11210 F:      Documentation/filesystems/vfat.txt
11211 F:      fs/fat/
11212
11213 VFIO DRIVER
11214 M:      Alex Williamson <alex.williamson@redhat.com>
11215 L:      kvm@vger.kernel.org
11216 S:      Maintained
11217 F:      Documentation/vfio.txt
11218 F:      drivers/vfio/
11219 F:      include/linux/vfio.h
11220 F:      include/uapi/linux/vfio.h
11221
11222 VFIO PLATFORM DRIVER
11223 M:      Baptiste Reynal <b.reynal@virtualopensystems.com>
11224 L:      kvm@vger.kernel.org
11225 S:      Maintained
11226 F:      drivers/vfio/platform/
11227
11228 VIDEOBUF2 FRAMEWORK
11229 M:      Pawel Osciak <pawel@osciak.com>
11230 M:      Marek Szyprowski <m.szyprowski@samsung.com>
11231 M:      Kyungmin Park <kyungmin.park@samsung.com>
11232 L:      linux-media@vger.kernel.org
11233 S:      Maintained
11234 F:      drivers/media/v4l2-core/videobuf2-*
11235 F:      include/media/videobuf2-*
11236
11237 VIRTUAL SERIO DEVICE DRIVER
11238 M:      Stephen Chandler Paul <thatslyude@gmail.com>
11239 S:      Maintained
11240 F:      drivers/input/serio/userio.c
11241 F:      include/uapi/linux/userio.h
11242
11243 VIRTIO CONSOLE DRIVER
11244 M:      Amit Shah <amit.shah@redhat.com>
11245 L:      virtualization@lists.linux-foundation.org
11246 S:      Maintained
11247 F:      drivers/char/virtio_console.c
11248 F:      include/linux/virtio_console.h
11249 F:      include/uapi/linux/virtio_console.h
11250
11251 VIRTIO CORE, NET AND BLOCK DRIVERS
11252 M:      "Michael S. Tsirkin" <mst@redhat.com>
11253 L:      virtualization@lists.linux-foundation.org
11254 S:      Maintained
11255 F:      drivers/virtio/
11256 F:      tools/virtio/
11257 F:      drivers/net/virtio_net.c
11258 F:      drivers/block/virtio_blk.c
11259 F:      include/linux/virtio_*.h
11260 F:      include/uapi/linux/virtio_*.h
11261
11262 VIRTIO DRIVERS FOR S390
11263 M:      Christian Borntraeger <borntraeger@de.ibm.com>
11264 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
11265 L:      linux-s390@vger.kernel.org
11266 L:      virtualization@lists.linux-foundation.org
11267 L:      kvm@vger.kernel.org
11268 S:      Supported
11269 F:      drivers/s390/virtio/
11270
11271 VIRTIO GPU DRIVER
11272 M:      David Airlie <airlied@linux.ie>
11273 M:      Gerd Hoffmann <kraxel@redhat.com>
11274 L:      dri-devel@lists.freedesktop.org
11275 L:      virtualization@lists.linux-foundation.org
11276 S:      Maintained
11277 F:      drivers/gpu/drm/virtio/
11278 F:      include/uapi/linux/virtio_gpu.h
11279
11280 VIRTIO HOST (VHOST)
11281 M:      "Michael S. Tsirkin" <mst@redhat.com>
11282 L:      kvm@vger.kernel.org
11283 L:      virtualization@lists.linux-foundation.org
11284 L:      netdev@vger.kernel.org
11285 S:      Maintained
11286 F:      drivers/vhost/
11287 F:      include/uapi/linux/vhost.h
11288
11289 VIRTIO INPUT DRIVER
11290 M:      Gerd Hoffmann <kraxel@redhat.com>
11291 S:      Maintained
11292 F:      drivers/virtio/virtio_input.c
11293 F:      include/uapi/linux/virtio_input.h
11294
11295 VIA RHINE NETWORK DRIVER
11296 S:      Orphan
11297 F:      drivers/net/ethernet/via/via-rhine.c
11298
11299 VIA SD/MMC CARD CONTROLLER DRIVER
11300 M:      Bruce Chang <brucechang@via.com.tw>
11301 M:      Harald Welte <HaraldWelte@viatech.com>
11302 S:      Maintained
11303 F:      drivers/mmc/host/via-sdmmc.c
11304
11305 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
11306 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
11307 L:      linux-fbdev@vger.kernel.org
11308 S:      Maintained
11309 F:      include/linux/via-core.h
11310 F:      include/linux/via-gpio.h
11311 F:      include/linux/via_i2c.h
11312 F:      drivers/video/fbdev/via/
11313
11314 VIA VELOCITY NETWORK DRIVER
11315 M:      Francois Romieu <romieu@fr.zoreil.com>
11316 L:      netdev@vger.kernel.org
11317 S:      Maintained
11318 F:      drivers/net/ethernet/via/via-velocity.*
11319
11320 VIVID VIRTUAL VIDEO DRIVER
11321 M:      Hans Verkuil <hverkuil@xs4all.nl>
11322 L:      linux-media@vger.kernel.org
11323 T:      git git://linuxtv.org/media_tree.git
11324 W:      http://linuxtv.org
11325 S:      Maintained
11326 F:      drivers/media/platform/vivid/*
11327
11328 VLAN (802.1Q)
11329 M:      Patrick McHardy <kaber@trash.net>
11330 L:      netdev@vger.kernel.org
11331 S:      Maintained
11332 F:      drivers/net/macvlan.c
11333 F:      include/linux/if_*vlan.h
11334 F:      net/8021q/
11335
11336 VLYNQ BUS
11337 M:      Florian Fainelli <florian@openwrt.org>
11338 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
11339 S:      Maintained
11340 F:      drivers/vlynq/vlynq.c
11341 F:      include/linux/vlynq.h
11342
11343 VME SUBSYSTEM
11344 M:      Martyn Welch <martyn@welchs.me.uk>
11345 M:      Manohar Vanga <manohar.vanga@gmail.com>
11346 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11347 L:      devel@driverdev.osuosl.org
11348 S:      Maintained
11349 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
11350 F:      Documentation/vme_api.txt
11351 F:      drivers/staging/vme/
11352 F:      drivers/vme/
11353 F:      include/linux/vme*
11354
11355 VMWARE HYPERVISOR INTERFACE
11356 M:      Alok Kataria <akataria@vmware.com>
11357 L:      virtualization@lists.linux-foundation.org
11358 S:      Supported
11359 F:      arch/x86/kernel/cpu/vmware.c
11360
11361 VMWARE BALLOON DRIVER
11362 M:      Xavier Deguillard <xdeguillard@vmware.com>
11363 M:      Philip Moltmann <moltmann@vmware.com>
11364 M:      "VMware, Inc." <pv-drivers@vmware.com>
11365 L:      linux-kernel@vger.kernel.org
11366 S:      Maintained
11367 F:      drivers/misc/vmw_balloon.c
11368
11369 VMWARE VMMOUSE SUBDRIVER
11370 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
11371 M:      "VMware, Inc." <pv-drivers@vmware.com>
11372 L:      linux-input@vger.kernel.org
11373 S:      Maintained
11374 F:      drivers/input/mouse/vmmouse.c
11375 F:      drivers/input/mouse/vmmouse.h
11376
11377 VMWARE VMXNET3 ETHERNET DRIVER
11378 M:      Shrikrishna Khare <skhare@vmware.com>
11379 M:      "VMware, Inc." <pv-drivers@vmware.com>
11380 L:      netdev@vger.kernel.org
11381 S:      Maintained
11382 F:      drivers/net/vmxnet3/
11383
11384 VMware PVSCSI driver
11385 M:      Arvind Kumar <arvindkumar@vmware.com>
11386 M:      VMware PV-Drivers <pv-drivers@vmware.com>
11387 L:      linux-scsi@vger.kernel.org
11388 S:      Maintained
11389 F:      drivers/scsi/vmw_pvscsi.c
11390 F:      drivers/scsi/vmw_pvscsi.h
11391
11392 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
11393 M:      Liam Girdwood <lgirdwood@gmail.com>
11394 M:      Mark Brown <broonie@kernel.org>
11395 L:      linux-kernel@vger.kernel.org
11396 W:      http://www.slimlogic.co.uk/?p=48
11397 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
11398 S:      Supported
11399 F:      drivers/regulator/
11400 F:      include/linux/regulator/
11401
11402 VRF
11403 M:      David Ahern <dsa@cumulusnetworks.com>
11404 M:      Shrijeet Mukherjee <shm@cumulusnetworks.com>
11405 L:      netdev@vger.kernel.org
11406 S:      Maintained
11407 F:      drivers/net/vrf.c
11408 F:      Documentation/networking/vrf.txt
11409
11410 VT1211 HARDWARE MONITOR DRIVER
11411 M:      Juerg Haefliger <juergh@gmail.com>
11412 L:      lm-sensors@lm-sensors.org
11413 S:      Maintained
11414 F:      Documentation/hwmon/vt1211
11415 F:      drivers/hwmon/vt1211.c
11416
11417 VT8231 HARDWARE MONITOR DRIVER
11418 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
11419 L:      lm-sensors@lm-sensors.org
11420 S:      Maintained
11421 F:      drivers/hwmon/vt8231.c
11422
11423 VUB300 USB to SDIO/SD/MMC bridge chip
11424 M:      Tony Olech <tony.olech@elandigitalsystems.com>
11425 L:      linux-mmc@vger.kernel.org
11426 L:      linux-usb@vger.kernel.org
11427 S:      Supported
11428 F:      drivers/mmc/host/vub300.c
11429
11430 W1 DALLAS'S 1-WIRE BUS
11431 M:      Evgeniy Polyakov <zbr@ioremap.net>
11432 S:      Maintained
11433 F:      Documentation/w1/
11434 F:      drivers/w1/
11435
11436 W83791D HARDWARE MONITORING DRIVER
11437 M:      Marc Hulsman <m.hulsman@tudelft.nl>
11438 L:      lm-sensors@lm-sensors.org
11439 S:      Maintained
11440 F:      Documentation/hwmon/w83791d
11441 F:      drivers/hwmon/w83791d.c
11442
11443 W83793 HARDWARE MONITORING DRIVER
11444 M:      Rudolf Marek <r.marek@assembler.cz>
11445 L:      lm-sensors@lm-sensors.org
11446 S:      Maintained
11447 F:      Documentation/hwmon/w83793
11448 F:      drivers/hwmon/w83793.c
11449
11450 W83795 HARDWARE MONITORING DRIVER
11451 M:      Jean Delvare <jdelvare@suse.com>
11452 L:      lm-sensors@lm-sensors.org
11453 S:      Maintained
11454 F:      drivers/hwmon/w83795.c
11455
11456 W83L51xD SD/MMC CARD INTERFACE DRIVER
11457 M:      Pierre Ossman <pierre@ossman.eu>
11458 S:      Maintained
11459 F:      drivers/mmc/host/wbsd.*
11460
11461 WACOM PROTOCOL 4 SERIAL TABLETS
11462 M:      Julian Squires <julian@cipht.net>
11463 M:      Hans de Goede <hdegoede@redhat.com>
11464 L:      linux-input@vger.kernel.org
11465 S:      Maintained
11466 F:      drivers/input/tablet/wacom_serial4.c
11467
11468 WATCHDOG DEVICE DRIVERS
11469 M:      Wim Van Sebroeck <wim@iguana.be>
11470 L:      linux-watchdog@vger.kernel.org
11471 W:      http://www.linux-watchdog.org/
11472 T:      git git://www.linux-watchdog.org/linux-watchdog.git
11473 S:      Maintained
11474 F:      Documentation/watchdog/
11475 F:      drivers/watchdog/
11476 F:      include/linux/watchdog.h
11477 F:      include/uapi/linux/watchdog.h
11478
11479 WD7000 SCSI DRIVER
11480 M:      Miroslav Zagorac <zaga@fly.cc.fer.hr>
11481 L:      linux-scsi@vger.kernel.org
11482 S:      Maintained
11483 F:      drivers/scsi/wd7000.c
11484
11485 WIIMOTE HID DRIVER
11486 M:      David Herrmann <dh.herrmann@googlemail.com>
11487 L:      linux-input@vger.kernel.org
11488 S:      Maintained
11489 F:      drivers/hid/hid-wiimote*
11490
11491 WINBOND CIR DRIVER
11492 M:      David Härdeman <david@hardeman.nu>
11493 S:      Maintained
11494 F:      drivers/media/rc/winbond-cir.c
11495
11496 WIMAX STACK
11497 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
11498 M:      linux-wimax@intel.com
11499 L:      wimax@linuxwimax.org (subscribers-only)
11500 S:      Supported
11501 W:      http://linuxwimax.org
11502 F:      Documentation/wimax/README.wimax
11503 F:      include/linux/wimax/debug.h
11504 F:      include/net/wimax.h
11505 F:      include/uapi/linux/wimax.h
11506 F:      net/wimax/
11507
11508 WISTRON LAPTOP BUTTON DRIVER
11509 M:      Miloslav Trmac <mitr@volny.cz>
11510 S:      Maintained
11511 F:      drivers/input/misc/wistron_btns.c
11512
11513 WL3501 WIRELESS PCMCIA CARD DRIVER
11514 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
11515 L:      linux-wireless@vger.kernel.org
11516 W:      http://oops.ghostprotocols.net:81/blog
11517 S:      Maintained
11518 F:      drivers/net/wireless/wl3501*
11519
11520 WOLFSON MICROELECTRONICS DRIVERS
11521 L:      patches@opensource.wolfsonmicro.com
11522 T:      git https://github.com/CirrusLogic/linux-drivers.git
11523 W:      https://github.com/CirrusLogic/linux-drivers/wiki
11524 S:      Supported
11525 F:      Documentation/hwmon/wm83??
11526 F:      arch/arm/mach-s3c64xx/mach-crag6410*
11527 F:      drivers/clk/clk-wm83*.c
11528 F:      drivers/extcon/extcon-arizona.c
11529 F:      drivers/leds/leds-wm83*.c
11530 F:      drivers/gpio/gpio-*wm*.c
11531 F:      drivers/gpio/gpio-arizona.c
11532 F:      drivers/hwmon/wm83??-hwmon.c
11533 F:      drivers/input/misc/wm831x-on.c
11534 F:      drivers/input/touchscreen/wm831x-ts.c
11535 F:      drivers/input/touchscreen/wm97*.c
11536 F:      drivers/mfd/arizona*
11537 F:      drivers/mfd/wm*.c
11538 F:      drivers/power/wm83*.c
11539 F:      drivers/rtc/rtc-wm83*.c
11540 F:      drivers/regulator/wm8*.c
11541 F:      drivers/video/backlight/wm83*_bl.c
11542 F:      drivers/watchdog/wm83*_wdt.c
11543 F:      include/linux/mfd/arizona/
11544 F:      include/linux/mfd/wm831x/
11545 F:      include/linux/mfd/wm8350/
11546 F:      include/linux/mfd/wm8400*
11547 F:      include/linux/wm97xx.h
11548 F:      include/sound/wm????.h
11549 F:      sound/soc/codecs/arizona.?
11550 F:      sound/soc/codecs/wm*
11551
11552 WORKQUEUE
11553 M:      Tejun Heo <tj@kernel.org>
11554 R:      Lai Jiangshan <jiangshanlai@gmail.com>
11555 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
11556 S:      Maintained
11557 F:      include/linux/workqueue.h
11558 F:      kernel/workqueue.c
11559 F:      Documentation/workqueue.txt
11560
11561 X.25 NETWORK LAYER
11562 M:      Andrew Hendry <andrew.hendry@gmail.com>
11563 L:      linux-x25@vger.kernel.org
11564 S:      Odd Fixes
11565 F:      Documentation/networking/x25*
11566 F:      include/net/x25*
11567 F:      net/x25/
11568
11569 X86 ARCHITECTURE (32-BIT AND 64-BIT)
11570 M:      Thomas Gleixner <tglx@linutronix.de>
11571 M:      Ingo Molnar <mingo@redhat.com>
11572 M:      "H. Peter Anvin" <hpa@zytor.com>
11573 M:      x86@kernel.org
11574 L:      linux-kernel@vger.kernel.org
11575 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
11576 S:      Maintained
11577 F:      Documentation/x86/
11578 F:      arch/x86/
11579
11580 X86 PLATFORM DRIVERS
11581 M:      Darren Hart <dvhart@infradead.org>
11582 L:      platform-driver-x86@vger.kernel.org
11583 T:      git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git
11584 S:      Maintained
11585 F:      drivers/platform/x86/
11586
11587 X86 MCE INFRASTRUCTURE
11588 M:      Tony Luck <tony.luck@intel.com>
11589 M:      Borislav Petkov <bp@alien8.de>
11590 L:      linux-edac@vger.kernel.org
11591 S:      Maintained
11592 F:      arch/x86/kernel/cpu/mcheck/*
11593
11594 X86 MICROCODE UPDATE SUPPORT
11595 M:      Borislav Petkov <bp@alien8.de>
11596 S:      Maintained
11597 F:      arch/x86/kernel/cpu/microcode/*
11598
11599 X86 VDSO
11600 M:      Andy Lutomirski <luto@amacapital.net>
11601 L:      linux-kernel@vger.kernel.org
11602 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
11603 S:      Maintained
11604 F:      arch/x86/entry/vdso/
11605
11606 XC2028/3028 TUNER DRIVER
11607 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
11608 L:      linux-media@vger.kernel.org
11609 W:      http://linuxtv.org
11610 T:      git git://linuxtv.org/media_tree.git
11611 S:      Maintained
11612 F:      drivers/media/tuners/tuner-xc2028.*
11613
11614 XEN HYPERVISOR INTERFACE
11615 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11616 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
11617 M:      David Vrabel <david.vrabel@citrix.com>
11618 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11619 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
11620 S:      Supported
11621 F:      arch/x86/xen/
11622 F:      drivers/*/xen-*front.c
11623 F:      drivers/xen/
11624 F:      arch/x86/include/asm/xen/
11625 F:      include/xen/
11626 F:      include/uapi/xen/
11627
11628 XEN HYPERVISOR ARM
11629 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
11630 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11631 S:      Supported
11632 F:      arch/arm/xen/
11633 F:      arch/arm/include/asm/xen/
11634
11635 XEN HYPERVISOR ARM64
11636 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
11637 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11638 S:      Supported
11639 F:      arch/arm64/xen/
11640 F:      arch/arm64/include/asm/xen/
11641
11642 XEN NETWORK BACKEND DRIVER
11643 M:      Ian Campbell <ian.campbell@citrix.com>
11644 M:      Wei Liu <wei.liu2@citrix.com>
11645 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11646 L:      netdev@vger.kernel.org
11647 S:      Supported
11648 F:      drivers/net/xen-netback/*
11649
11650 XEN PCI SUBSYSTEM
11651 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11652 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11653 S:      Supported
11654 F:      arch/x86/pci/*xen*
11655 F:      drivers/pci/*xen*
11656
11657 XEN BLOCK SUBSYSTEM
11658 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11659 M:      Roger Pau MonnĂ© <roger.pau@citrix.com>
11660 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11661 S:      Supported
11662 F:      drivers/block/xen-blkback/*
11663 F:      drivers/block/xen*
11664
11665 XEN PVSCSI DRIVERS
11666 M:      Juergen Gross <jgross@suse.com>
11667 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11668 L:      linux-scsi@vger.kernel.org
11669 S:      Supported
11670 F:      drivers/scsi/xen-scsifront.c
11671 F:      drivers/xen/xen-scsiback.c
11672 F:      include/xen/interface/io/vscsiif.h
11673
11674 XEN SWIOTLB SUBSYSTEM
11675 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11676 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11677 S:      Supported
11678 F:      arch/x86/xen/*swiotlb*
11679 F:      drivers/xen/*swiotlb*
11680
11681 XFS FILESYSTEM
11682 P:      Silicon Graphics Inc
11683 M:      Dave Chinner <david@fromorbit.com>
11684 M:      xfs@oss.sgi.com
11685 L:      xfs@oss.sgi.com
11686 W:      http://oss.sgi.com/projects/xfs
11687 T:      git git://oss.sgi.com/xfs/xfs.git
11688 S:      Supported
11689 F:      Documentation/filesystems/xfs.txt
11690 F:      fs/xfs/
11691
11692 XILINX AXI ETHERNET DRIVER
11693 M:      Anirudha Sarangi <anirudh@xilinx.com>
11694 M:      John Linn <John.Linn@xilinx.com>
11695 S:      Maintained
11696 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
11697
11698 XILINX UARTLITE SERIAL DRIVER
11699 M:      Peter Korsgaard <jacmet@sunsite.dk>
11700 L:      linux-serial@vger.kernel.org
11701 S:      Maintained
11702 F:      drivers/tty/serial/uartlite.c
11703
11704 XILINX VIDEO IP CORES
11705 M:      Hyun Kwon <hyun.kwon@xilinx.com>
11706 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11707 L:      linux-media@vger.kernel.org
11708 T:      git git://linuxtv.org/media_tree.git
11709 S:      Supported
11710 F:      Documentation/devicetree/bindings/media/xilinx/
11711 F:      drivers/media/platform/xilinx/
11712 F:      include/uapi/linux/xilinx-v4l2-controls.h
11713
11714 XILLYBUS DRIVER
11715 M:      Eli Billauer <eli.billauer@gmail.com>
11716 L:      linux-kernel@vger.kernel.org
11717 S:      Supported
11718 F:      drivers/char/xillybus/
11719
11720 XTENSA XTFPGA PLATFORM SUPPORT
11721 M:      Max Filippov <jcmvbkbc@gmail.com>
11722 L:      linux-xtensa@linux-xtensa.org
11723 S:      Maintained
11724 F:      drivers/spi/spi-xtensa-xtfpga.c
11725 F:      sound/soc/xtensa/xtfpga-i2s.c
11726
11727 YAM DRIVER FOR AX.25
11728 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
11729 L:      linux-hams@vger.kernel.org
11730 S:      Maintained
11731 F:      drivers/net/hamradio/yam*
11732 F:      include/linux/yam.h
11733
11734 YEALINK PHONE DRIVER
11735 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
11736 L:      usbb2k-api-dev@nongnu.org
11737 S:      Maintained
11738 F:      Documentation/input/yealink.txt
11739 F:      drivers/input/misc/yealink.*
11740
11741 Z8530 DRIVER FOR AX.25
11742 M:      Joerg Reuter <jreuter@yaina.de>
11743 W:      http://yaina.de/jreuter/
11744 W:      http://www.qsl.net/dl1bke/
11745 L:      linux-hams@vger.kernel.org
11746 S:      Maintained
11747 F:      Documentation/networking/z8530drv.txt
11748 F:      drivers/net/hamradio/*scc.c
11749 F:      drivers/net/hamradio/z8530.h
11750
11751 ZBUD COMPRESSED PAGE ALLOCATOR
11752 M:      Seth Jennings <sjennings@variantweb.net>
11753 L:      linux-mm@kvack.org
11754 S:      Maintained
11755 F:      mm/zbud.c
11756 F:      include/linux/zbud.h
11757
11758 ZD1211RW WIRELESS DRIVER
11759 M:      Daniel Drake <dsd@gentoo.org>
11760 M:      Ulrich Kunitz <kune@deine-taler.de>
11761 W:      http://zd1211.ath.cx/wiki/DriverRewrite
11762 L:      linux-wireless@vger.kernel.org
11763 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
11764 S:      Maintained
11765 F:      drivers/net/wireless/zd1211rw/
11766
11767 ZPOOL COMPRESSED PAGE STORAGE API
11768 M:      Dan Streetman <ddstreet@ieee.org>
11769 L:      linux-mm@kvack.org
11770 S:      Maintained
11771 F:      mm/zpool.c
11772 F:      include/linux/zpool.h
11773
11774 ZR36067 VIDEO FOR LINUX DRIVER
11775 L:      mjpeg-users@lists.sourceforge.net
11776 L:      linux-media@vger.kernel.org
11777 W:      http://mjpeg.sourceforge.net/driver-zoran/
11778 T:      hg http://linuxtv.org/hg/v4l-dvb
11779 S:      Odd Fixes
11780 F:      drivers/media/pci/zoran/
11781
11782 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
11783 M:      Minchan Kim <minchan@kernel.org>
11784 M:      Nitin Gupta <ngupta@vflare.org>
11785 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
11786 L:      linux-kernel@vger.kernel.org
11787 S:      Maintained
11788 F:      drivers/block/zram/
11789 F:      Documentation/blockdev/zram.txt
11790
11791 ZS DECSTATION Z85C30 SERIAL DRIVER
11792 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
11793 S:      Maintained
11794 F:      drivers/tty/serial/zs.*
11795
11796 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
11797 M:      Minchan Kim <minchan@kernel.org>
11798 M:      Nitin Gupta <ngupta@vflare.org>
11799 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
11800 L:      linux-mm@kvack.org
11801 S:      Maintained
11802 F:      mm/zsmalloc.c
11803 F:      include/linux/zsmalloc.h
11804 F:      Documentation/vm/zsmalloc.txt
11805
11806 ZSWAP COMPRESSED SWAP CACHING
11807 M:      Seth Jennings <sjennings@variantweb.net>
11808 L:      linux-mm@kvack.org
11809 S:      Maintained
11810 F:      mm/zswap.c
11811
11812 THE REST
11813 M:      Linus Torvalds <torvalds@linux-foundation.org>
11814 L:      linux-kernel@vger.kernel.org
11815 Q:      http://patchwork.kernel.org/project/LKML/list/
11816 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
11817 S:      Buried alive in reporters
11818 F:      *
11819 F:      */