]> git.karo-electronics.de Git - karo-tx-linux.git/blob - MAINTAINERS
Merge remote-tracking branch 'l2-mtd/master'
[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 ACENIC DRIVER
244 M:      Jes Sorensen <jes@trained-monkey.org>
245 L:      linux-acenic@sunsite.dk
246 S:      Maintained
247 F:      drivers/net/ethernet/alteon/acenic*
248
249 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
250 M:      Peter Feuerer <peter@piie.net>
251 L:      platform-driver-x86@vger.kernel.org
252 W:      http://piie.net/?section=acerhdf
253 S:      Maintained
254 F:      drivers/platform/x86/acerhdf.c
255
256 ACER WMI LAPTOP EXTRAS
257 M:      "Lee, Chun-Yi" <jlee@suse.com>
258 L:      platform-driver-x86@vger.kernel.org
259 S:      Maintained
260 F:      drivers/platform/x86/acer-wmi.c
261
262 ACPI
263 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
264 M:      Len Brown <lenb@kernel.org>
265 L:      linux-acpi@vger.kernel.org
266 W:      https://01.org/linux-acpi
267 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
268 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
269 S:      Supported
270 F:      drivers/acpi/
271 F:      drivers/pnp/pnpacpi/
272 F:      include/linux/acpi.h
273 F:      include/acpi/
274 F:      Documentation/acpi/
275 F:      Documentation/ABI/testing/sysfs-bus-acpi
276 F:      drivers/pci/*acpi*
277 F:      drivers/pci/*/*acpi*
278 F:      drivers/pci/*/*/*acpi*
279 F:      tools/power/acpi/
280
281 ACPI COMPONENT ARCHITECTURE (ACPICA)
282 M:      Robert Moore <robert.moore@intel.com>
283 M:      Lv Zheng <lv.zheng@intel.com>
284 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
285 L:      linux-acpi@vger.kernel.org
286 L:      devel@acpica.org
287 W:      https://acpica.org/
288 W:      https://github.com/acpica/acpica/
289 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
290 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
291 S:      Supported
292 F:      drivers/acpi/acpica/
293 F:      include/acpi/
294 F:      tools/power/acpi/
295
296 ACPI FAN DRIVER
297 M:      Zhang Rui <rui.zhang@intel.com>
298 L:      linux-acpi@vger.kernel.org
299 W:      https://01.org/linux-acpi
300 S:      Supported
301 F:      drivers/acpi/fan.c
302
303 ACPI THERMAL DRIVER
304 M:      Zhang Rui <rui.zhang@intel.com>
305 L:      linux-acpi@vger.kernel.org
306 W:      https://01.org/linux-acpi
307 S:      Supported
308 F:      drivers/acpi/*thermal*
309
310 ACPI VIDEO DRIVER
311 M:      Zhang Rui <rui.zhang@intel.com>
312 L:      linux-acpi@vger.kernel.org
313 W:      https://01.org/linux-acpi
314 S:      Supported
315 F:      drivers/acpi/video.c
316
317 ACPI WMI DRIVER
318 L:      platform-driver-x86@vger.kernel.org
319 S:      Orphan
320 F:      drivers/platform/x86/wmi.c
321
322 AD1889 ALSA SOUND DRIVER
323 M:      Thibaut Varene <T-Bone@parisc-linux.org>
324 W:      http://wiki.parisc-linux.org/AD1889
325 L:      linux-parisc@vger.kernel.org
326 S:      Maintained
327 F:      sound/pci/ad1889.*
328
329 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
330 M:      Michael Hennerich <michael.hennerich@analog.com>
331 W:      http://wiki.analog.com/AD5254
332 W:      http://ez.analog.com/community/linux-device-drivers
333 S:      Supported
334 F:      drivers/misc/ad525x_dpot.c
335
336 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
337 M:      Michael Hennerich <michael.hennerich@analog.com>
338 W:      http://wiki.analog.com/AD5398
339 W:      http://ez.analog.com/community/linux-device-drivers
340 S:      Supported
341 F:      drivers/regulator/ad5398.c
342
343 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
344 M:      Michael Hennerich <michael.hennerich@analog.com>
345 W:      http://wiki.analog.com/AD7142
346 W:      http://ez.analog.com/community/linux-device-drivers
347 S:      Supported
348 F:      drivers/input/misc/ad714x.c
349
350 AD7877 TOUCHSCREEN DRIVER
351 M:      Michael Hennerich <michael.hennerich@analog.com>
352 W:      http://wiki.analog.com/AD7877
353 W:      http://ez.analog.com/community/linux-device-drivers
354 S:      Supported
355 F:      drivers/input/touchscreen/ad7877.c
356
357 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
358 M:      Michael Hennerich <michael.hennerich@analog.com>
359 W:      http://wiki.analog.com/AD7879
360 W:      http://ez.analog.com/community/linux-device-drivers
361 S:      Supported
362 F:      drivers/input/touchscreen/ad7879.c
363
364 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
365 M:      Jiri Kosina <jikos@kernel.org>
366 S:      Maintained
367
368 ADM1025 HARDWARE MONITOR DRIVER
369 M:      Jean Delvare <jdelvare@suse.com>
370 L:      lm-sensors@lm-sensors.org
371 S:      Maintained
372 F:      Documentation/hwmon/adm1025
373 F:      drivers/hwmon/adm1025.c
374
375 ADM1029 HARDWARE MONITOR DRIVER
376 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
377 L:      lm-sensors@lm-sensors.org
378 S:      Maintained
379 F:      drivers/hwmon/adm1029.c
380
381 ADM8211 WIRELESS DRIVER
382 L:      linux-wireless@vger.kernel.org
383 W:      http://wireless.kernel.org/
384 S:      Orphan
385 F:      drivers/net/wireless/adm8211.*
386
387 ADP1653 FLASH CONTROLLER DRIVER
388 M:      Sakari Ailus <sakari.ailus@iki.fi>
389 L:      linux-media@vger.kernel.org
390 S:      Maintained
391 F:      drivers/media/i2c/adp1653.c
392 F:      include/media/adp1653.h
393
394 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
395 M:      Michael Hennerich <michael.hennerich@analog.com>
396 W:      http://wiki.analog.com/ADP5520
397 W:      http://ez.analog.com/community/linux-device-drivers
398 S:      Supported
399 F:      drivers/mfd/adp5520.c
400 F:      drivers/video/backlight/adp5520_bl.c
401 F:      drivers/leds/leds-adp5520.c
402 F:      drivers/gpio/gpio-adp5520.c
403 F:      drivers/input/keyboard/adp5520-keys.c
404
405 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
406 M:      Michael Hennerich <michael.hennerich@analog.com>
407 W:      http://wiki.analog.com/ADP5588
408 W:      http://ez.analog.com/community/linux-device-drivers
409 S:      Supported
410 F:      drivers/input/keyboard/adp5588-keys.c
411 F:      drivers/gpio/gpio-adp5588.c
412
413 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
414 M:      Michael Hennerich <michael.hennerich@analog.com>
415 W:      http://wiki.analog.com/ADP8860
416 W:      http://ez.analog.com/community/linux-device-drivers
417 S:      Supported
418 F:      drivers/video/backlight/adp8860_bl.c
419
420 ADS1015 HARDWARE MONITOR DRIVER
421 M:      Dirk Eibach <eibach@gdsys.de>
422 L:      lm-sensors@lm-sensors.org
423 S:      Maintained
424 F:      Documentation/hwmon/ads1015
425 F:      drivers/hwmon/ads1015.c
426 F:      include/linux/i2c/ads1015.h
427
428 ADT746X FAN DRIVER
429 M:      Colin Leroy <colin@colino.net>
430 S:      Maintained
431 F:      drivers/macintosh/therm_adt746x.c
432
433 ADT7475 HARDWARE MONITOR DRIVER
434 M:      Jean Delvare <jdelvare@suse.com>
435 L:      lm-sensors@lm-sensors.org
436 S:      Maintained
437 F:      Documentation/hwmon/adt7475
438 F:      drivers/hwmon/adt7475.c
439
440 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
441 M:      Michael Hennerich <michael.hennerich@analog.com>
442 W:      http://wiki.analog.com/ADXL345
443 W:      http://ez.analog.com/community/linux-device-drivers
444 S:      Supported
445 F:      drivers/input/misc/adxl34x.c
446
447 ADVANSYS SCSI DRIVER
448 M:      Matthew Wilcox <matthew@wil.cx>
449 M:      Hannes Reinecke <hare@suse.com>
450 L:      linux-scsi@vger.kernel.org
451 S:      Maintained
452 F:      Documentation/scsi/advansys.txt
453 F:      drivers/scsi/advansys.c
454
455 AEDSP16 DRIVER
456 M:      Riccardo Facchetti <fizban@tin.it>
457 S:      Maintained
458 F:      sound/oss/aedsp16.c
459
460 AF9013 MEDIA DRIVER
461 M:      Antti Palosaari <crope@iki.fi>
462 L:      linux-media@vger.kernel.org
463 W:      http://linuxtv.org/
464 W:      http://palosaari.fi/linux/
465 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
466 T:      git git://linuxtv.org/anttip/media_tree.git
467 S:      Maintained
468 F:      drivers/media/dvb-frontends/af9013*
469
470 AF9033 MEDIA DRIVER
471 M:      Antti Palosaari <crope@iki.fi>
472 L:      linux-media@vger.kernel.org
473 W:      http://linuxtv.org/
474 W:      http://palosaari.fi/linux/
475 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
476 T:      git git://linuxtv.org/anttip/media_tree.git
477 S:      Maintained
478 F:      drivers/media/dvb-frontends/af9033*
479
480 AFFS FILE SYSTEM
481 L:      linux-fsdevel@vger.kernel.org
482 S:      Orphan
483 F:      Documentation/filesystems/affs.txt
484 F:      fs/affs/
485
486 AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
487 M:      David Howells <dhowells@redhat.com>
488 L:      linux-afs@lists.infradead.org
489 S:      Supported
490 F:      fs/afs/
491 F:      include/net/af_rxrpc.h
492 F:      net/rxrpc/af_rxrpc.c
493
494 AGPGART DRIVER
495 M:      David Airlie <airlied@linux.ie>
496 T:      git git://people.freedesktop.org/~airlied/linux (part of drm maint)
497 S:      Maintained
498 F:      drivers/char/agp/
499 F:      include/linux/agp*
500 F:      include/uapi/linux/agp*
501
502 AHA152X SCSI DRIVER
503 M:      "Juergen E. Fischer" <fischer@norbit.de>
504 L:      linux-scsi@vger.kernel.org
505 S:      Maintained
506 F:      drivers/scsi/aha152x*
507 F:      drivers/scsi/pcmcia/aha152x*
508
509 AIC7XXX / AIC79XX SCSI DRIVER
510 M:      Hannes Reinecke <hare@suse.com>
511 L:      linux-scsi@vger.kernel.org
512 S:      Maintained
513 F:      drivers/scsi/aic7xxx/
514
515 AIMSLAB FM RADIO RECEIVER DRIVER
516 M:      Hans Verkuil <hverkuil@xs4all.nl>
517 L:      linux-media@vger.kernel.org
518 T:      git git://linuxtv.org/media_tree.git
519 W:      http://linuxtv.org
520 S:      Maintained
521 F:      drivers/media/radio/radio-aimslab*
522
523 AIO
524 M:      Benjamin LaHaise <bcrl@kvack.org>
525 L:      linux-aio@kvack.org
526 S:      Supported
527 F:      fs/aio.c
528 F:      include/linux/*aio*.h
529
530 AIRSPY MEDIA DRIVER
531 M:      Antti Palosaari <crope@iki.fi>
532 L:      linux-media@vger.kernel.org
533 W:      http://linuxtv.org/
534 W:      http://palosaari.fi/linux/
535 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
536 T:      git git://linuxtv.org/anttip/media_tree.git
537 S:      Maintained
538 F:      drivers/media/usb/airspy/
539
540 ALCATEL SPEEDTOUCH USB DRIVER
541 M:      Duncan Sands <duncan.sands@free.fr>
542 L:      linux-usb@vger.kernel.org
543 W:      http://www.linux-usb.org/SpeedTouch/
544 S:      Maintained
545 F:      drivers/usb/atm/speedtch.c
546 F:      drivers/usb/atm/usbatm.c
547
548 ALCHEMY AU1XX0 MMC DRIVER
549 M:      Manuel Lauss <manuel.lauss@gmail.com>
550 S:      Maintained
551 F:      drivers/mmc/host/au1xmmc.c
552
553 ALI1563 I2C DRIVER
554 M:      Rudolf Marek <r.marek@assembler.cz>
555 L:      linux-i2c@vger.kernel.org
556 S:      Maintained
557 F:      Documentation/i2c/busses/i2c-ali1563
558 F:      drivers/i2c/busses/i2c-ali1563.c
559
560 ALLWINNER SECURITY SYSTEM
561 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
562 L:      linux-crypto@vger.kernel.org
563 S:      Maintained
564 F:      drivers/crypto/sunxi-ss/
565
566 ALPHA PORT
567 M:      Richard Henderson <rth@twiddle.net>
568 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
569 M:      Matt Turner <mattst88@gmail.com>
570 S:      Odd Fixes
571 L:      linux-alpha@vger.kernel.org
572 F:      arch/alpha/
573
574 ALTERA MAILBOX DRIVER
575 M:      Ley Foon Tan <lftan@altera.com>
576 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
577 S:      Maintained
578 F:      drivers/mailbox/mailbox-altera.c
579
580 ALTERA PIO DRIVER
581 M:      Tien Hock Loh <thloh@altera.com>
582 L:      linux-gpio@vger.kernel.org
583 S:      Maintained
584 F:      drivers/gpio/gpio-altera.c
585
586 ALTERA TRIPLE SPEED ETHERNET DRIVER
587 M:      Vince Bridgers <vbridger@opensource.altera.com>
588 L:      netdev@vger.kernel.org
589 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
590 S:      Maintained
591 F:      drivers/net/ethernet/altera/
592
593 ALTERA UART/JTAG UART SERIAL DRIVERS
594 M:      Tobias Klauser <tklauser@distanz.ch>
595 L:      linux-serial@vger.kernel.org
596 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
597 S:      Maintained
598 F:      drivers/tty/serial/altera_uart.c
599 F:      drivers/tty/serial/altera_jtaguart.c
600 F:      include/linux/altera_uart.h
601 F:      include/linux/altera_jtaguart.h
602
603 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
604 M:      Tom Lendacky <thomas.lendacky@amd.com>
605 L:      linux-crypto@vger.kernel.org
606 S:      Supported
607 F:      drivers/crypto/ccp/
608 F:      include/linux/ccp.h
609
610 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
611 M:      Andreas Herrmann <herrmann.der.user@googlemail.com>
612 L:      lm-sensors@lm-sensors.org
613 S:      Maintained
614 F:      Documentation/hwmon/fam15h_power
615 F:      drivers/hwmon/fam15h_power.c
616
617 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
618 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
619 S:      Orphan
620 F:      drivers/usb/gadget/udc/amd5536udc.*
621
622 AMD GEODE PROCESSOR/CHIPSET SUPPORT
623 P:      Andres Salomon <dilinger@queued.net>
624 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
625 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
626 S:      Supported
627 F:      drivers/char/hw_random/geode-rng.c
628 F:      drivers/crypto/geode*
629 F:      drivers/video/fbdev/geode/
630 F:      arch/x86/include/asm/geode.h
631
632 AMD IOMMU (AMD-VI)
633 M:      Joerg Roedel <joro@8bytes.org>
634 L:      iommu@lists.linux-foundation.org
635 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
636 S:      Maintained
637 F:      drivers/iommu/amd_iommu*.[ch]
638 F:      include/linux/amd-iommu.h
639
640 AMD KFD
641 M:      Oded Gabbay <oded.gabbay@gmail.com>
642 L:      dri-devel@lists.freedesktop.org
643 T:      git git://people.freedesktop.org/~gabbayo/linux.git
644 S:      Supported
645 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c
646 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
647 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
648 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
649 F:      drivers/gpu/drm/amd/amdkfd/
650 F:      drivers/gpu/drm/amd/include/cik_structs.h
651 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
652 F:      drivers/gpu/drm/amd/include/vi_structs.h
653 F:      drivers/gpu/drm/radeon/radeon_kfd.c
654 F:      drivers/gpu/drm/radeon/radeon_kfd.h
655 F:      include/uapi/linux/kfd_ioctl.h
656
657 AMD MICROCODE UPDATE SUPPORT
658 M:      Borislav Petkov <bp@alien8.de>
659 S:      Maintained
660 F:      arch/x86/kernel/cpu/microcode/amd*
661
662 AMD XGBE DRIVER
663 M:      Tom Lendacky <thomas.lendacky@amd.com>
664 L:      netdev@vger.kernel.org
665 S:      Supported
666 F:      drivers/net/ethernet/amd/xgbe/
667
668 AMS (Apple Motion Sensor) DRIVER
669 M:      Michael Hanselmann <linux-kernel@hansmi.ch>
670 S:      Supported
671 F:      drivers/macintosh/ams/
672
673 AMSO1100 RNIC DRIVER
674 M:      Tom Tucker <tom@opengridcomputing.com>
675 M:      Steve Wise <swise@opengridcomputing.com>
676 L:      linux-rdma@vger.kernel.org
677 S:      Maintained
678 F:      drivers/infiniband/hw/amso1100/
679
680 ANALOG DEVICES INC AD9389B DRIVER
681 M:      Hans Verkuil <hans.verkuil@cisco.com>
682 L:      linux-media@vger.kernel.org
683 S:      Maintained
684 F:      drivers/media/i2c/ad9389b*
685
686 ANALOG DEVICES INC ADV7180 DRIVER
687 M:      Lars-Peter Clausen <lars@metafoo.de>
688 L:      linux-media@vger.kernel.org
689 W:      http://ez.analog.com/community/linux-device-drivers
690 S:      Supported
691 F:      drivers/media/i2c/adv7180.c
692
693 ANALOG DEVICES INC ADV7511 DRIVER
694 M:      Hans Verkuil <hans.verkuil@cisco.com>
695 L:      linux-media@vger.kernel.org
696 S:      Maintained
697 F:      drivers/media/i2c/adv7511*
698
699 ANALOG DEVICES INC ADV7604 DRIVER
700 M:      Hans Verkuil <hans.verkuil@cisco.com>
701 L:      linux-media@vger.kernel.org
702 S:      Maintained
703 F:      drivers/media/i2c/adv7604*
704
705 ANALOG DEVICES INC ADV7842 DRIVER
706 M:      Hans Verkuil <hans.verkuil@cisco.com>
707 L:      linux-media@vger.kernel.org
708 S:      Maintained
709 F:      drivers/media/i2c/adv7842*
710
711 ANALOG DEVICES INC ASOC CODEC DRIVERS
712 M:      Lars-Peter Clausen <lars@metafoo.de>
713 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
714 W:      http://wiki.analog.com/
715 W:      http://ez.analog.com/community/linux-device-drivers
716 S:      Supported
717 F:      sound/soc/codecs/adau*
718 F:      sound/soc/codecs/adav*
719 F:      sound/soc/codecs/ad1*
720 F:      sound/soc/codecs/ad7*
721 F:      sound/soc/codecs/ssm*
722 F:      sound/soc/codecs/sigmadsp.*
723
724 ANALOG DEVICES INC ASOC DRIVERS
725 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
726 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
727 W:      http://blackfin.uclinux.org/
728 S:      Supported
729 F:      sound/soc/blackfin/*
730
731 ANALOG DEVICES INC IIO DRIVERS
732 M:      Lars-Peter Clausen <lars@metafoo.de>
733 M:      Michael Hennerich <Michael.Hennerich@analog.com>
734 W:      http://wiki.analog.com/
735 W:      http://ez.analog.com/community/linux-device-drivers
736 S:      Supported
737 F:      drivers/iio/*/ad*
738 X:      drivers/iio/*/adjd*
739 F:      drivers/staging/iio/*/ad*
740 F:      staging/iio/trigger/iio-trig-bfin-timer.c
741
742 ANALOG DEVICES INC DMA DRIVERS
743 M:      Lars-Peter Clausen <lars@metafoo.de>
744 W:      http://ez.analog.com/community/linux-device-drivers
745 S:      Supported
746 F:      drivers/dma/dma-axi-dmac.c
747
748 ANDROID DRIVERS
749 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
750 M:      Arve HjønnevĂ¥g <arve@android.com>
751 M:      Riley Andrews <riandrews@android.com>
752 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
753 L:      devel@driverdev.osuosl.org
754 S:      Supported
755 F:      drivers/android/
756 F:      drivers/staging/android/
757
758 AOA (Apple Onboard Audio) ALSA DRIVER
759 M:      Johannes Berg <johannes@sipsolutions.net>
760 L:      linuxppc-dev@lists.ozlabs.org
761 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
762 S:      Maintained
763 F:      sound/aoa/
764
765 APM DRIVER
766 M:      Jiri Kosina <jikos@kernel.org>
767 S:      Odd fixes
768 F:      arch/x86/kernel/apm_32.c
769 F:      include/linux/apm_bios.h
770 F:      include/uapi/linux/apm_bios.h
771 F:      drivers/char/apm-emulation.c
772
773 APPLE BCM5974 MULTITOUCH DRIVER
774 M:      Henrik Rydberg <rydberg@bitmath.org>
775 L:      linux-input@vger.kernel.org
776 S:      Odd fixes
777 F:      drivers/input/mouse/bcm5974.c
778
779 APPLE SMC DRIVER
780 M:      Henrik Rydberg <rydberg@bitmath.org>
781 L:      lm-sensors@lm-sensors.org
782 S:      Odd fixes
783 F:      drivers/hwmon/applesmc.c
784
785 APPLETALK NETWORK LAYER
786 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
787 S:      Maintained
788 F:      drivers/net/appletalk/
789 F:      net/appletalk/
790
791 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
792 M:      Duc Dang <dhdang@apm.com>
793 S:      Supported
794 F:      arch/arm64/boot/dts/apm/
795
796 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
797 M:      Iyappan Subramanian <isubramanian@apm.com>
798 M:      Keyur Chudgar <kchudgar@apm.com>
799 S:      Supported
800 F:      drivers/net/ethernet/apm/xgene/
801 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
802
803 APTINA CAMERA SENSOR PLL
804 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
805 L:      linux-media@vger.kernel.org
806 S:      Maintained
807 F:      drivers/media/i2c/aptina-pll.*
808
809 ARC FRAMEBUFFER DRIVER
810 M:      Jaya Kumar <jayalk@intworks.biz>
811 S:      Maintained
812 F:      drivers/video/fbdev/arcfb.c
813 F:      drivers/video/fbdev/core/fb_defio.c
814
815 ARCNET NETWORK LAYER
816 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
817 L:      netdev@vger.kernel.org
818 S:      Maintained
819 F:      drivers/net/arcnet/
820 F:      include/uapi/linux/if_arcnet.h
821
822 ARM MFM AND FLOPPY DRIVERS
823 M:      Ian Molton <spyro@f2s.com>
824 S:      Maintained
825 F:      arch/arm/lib/floppydma.S
826 F:      arch/arm/include/asm/floppy.h
827
828 ARM PMU PROFILING AND DEBUGGING
829 M:      Will Deacon <will.deacon@arm.com>
830 R:      Mark Rutland <mark.rutland@arm.com>
831 S:      Maintained
832 F:      arch/arm*/kernel/perf_*
833 F:      arch/arm/oprofile/common.c
834 F:      arch/arm*/kernel/hw_breakpoint.c
835 F:      arch/arm*/include/asm/hw_breakpoint.h
836 F:      arch/arm*/include/asm/perf_event.h
837 F:      drivers/perf/arm_pmu.c
838 F:      include/linux/perf/arm_pmu.h
839
840 ARM PORT
841 M:      Russell King <linux@arm.linux.org.uk>
842 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
843 W:      http://www.arm.linux.org.uk/
844 S:      Maintained
845 F:      arch/arm/
846
847 ARM SUB-ARCHITECTURES
848 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
849 S:      Maintained
850 F:      arch/arm/mach-*/
851 F:      arch/arm/plat-*/
852 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
853
854 ARM PRIMECELL AACI PL041 DRIVER
855 M:      Russell King <linux@arm.linux.org.uk>
856 S:      Maintained
857 F:      sound/arm/aaci.*
858
859 ARM PRIMECELL CLCD PL110 DRIVER
860 M:      Russell King <linux@arm.linux.org.uk>
861 S:      Maintained
862 F:      drivers/video/fbdev/amba-clcd.*
863
864 ARM PRIMECELL KMI PL050 DRIVER
865 M:      Russell King <linux@arm.linux.org.uk>
866 S:      Maintained
867 F:      drivers/input/serio/ambakmi.*
868 F:      include/linux/amba/kmi.h
869
870 ARM PRIMECELL MMCI PL180/1 DRIVER
871 M:      Russell King <linux@arm.linux.org.uk>
872 S:      Maintained
873 F:      drivers/mmc/host/mmci.*
874 F:      include/linux/amba/mmci.h
875
876 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
877 M:      Russell King <linux@arm.linux.org.uk>
878 S:      Maintained
879 F:      drivers/tty/serial/amba-pl01*.c
880 F:      include/linux/amba/serial.h
881
882 ARM PRIMECELL BUS SUPPORT
883 M:      Russell King <linux@arm.linux.org.uk>
884 S:      Maintained
885 F:      drivers/amba/
886 F:      include/linux/amba/bus.h
887
888 ARM/ADS SPHERE MACHINE SUPPORT
889 M:      Lennert Buytenhek <kernel@wantstofly.org>
890 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
891 S:      Maintained
892
893 ARM/AFEB9260 MACHINE SUPPORT
894 M:      Sergey Lapin <slapin@ossfans.org>
895 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
896 S:      Maintained
897
898 ARM/AJECO 1ARM MACHINE SUPPORT
899 M:      Lennert Buytenhek <kernel@wantstofly.org>
900 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
901 S:      Maintained
902
903 ARM/Allwinner sunXi SoC support
904 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
905 M:      Chen-Yu Tsai <wens@csie.org>
906 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
907 S:      Maintained
908 N:      sun[x456789]i
909
910 ARM/Allwinner SoC Clock Support
911 M:      Emilio LĂ³pez <emilio@elopez.com.ar>
912 S:      Maintained
913 F:      drivers/clk/sunxi/
914
915 ARM/Amlogic MesonX SoC support
916 M:      Carlo Caione <carlo@caione.org>
917 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
918 S:      Maintained
919 F:      drivers/media/rc/meson-ir.c
920 N:      meson[x68]
921
922 ARM/Annapurna Labs ALPINE ARCHITECTURE
923 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
924 S:      Maintained
925 F:      arch/arm/mach-alpine/
926
927 ARM/ATMEL AT91RM9200, AT91SAM9 AND SAMA5 SOC SUPPORT
928 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
929 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
930 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
931 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
932 W:      http://www.linux4sam.org
933 S:      Supported
934 F:      arch/arm/mach-at91/
935 F:      include/soc/at91/
936 F:      arch/arm/boot/dts/at91*.dts
937 F:      arch/arm/boot/dts/at91*.dtsi
938 F:      arch/arm/boot/dts/sama*.dts
939 F:      arch/arm/boot/dts/sama*.dtsi
940 F:      arch/arm/include/debug/at91.S
941
942 ARM/ATMEL AT91 Clock Support
943 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
944 S:      Maintained
945 F:      drivers/clk/at91
946
947 ARM/CALXEDA HIGHBANK ARCHITECTURE
948 M:      Rob Herring <robh@kernel.org>
949 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
950 S:      Maintained
951 F:      arch/arm/mach-highbank/
952
953 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
954 M:      Krzysztof Halasa <khalasa@piap.pl>
955 S:      Maintained
956 F:      arch/arm/mach-cns3xxx/
957
958 ARM/CAVIUM THUNDER NETWORK DRIVER
959 M:      Sunil Goutham <sgoutham@cavium.com>
960 M:      Robert Richter <rric@kernel.org>
961 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
962 S:      Supported
963 F:      drivers/net/ethernet/cavium/thunder/
964
965 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
966 M:      Alexander Shiyan <shc_work@mail.ru>
967 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
968 S:      Odd Fixes
969 N:      clps711x
970
971 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
972 M:      Hartley Sweeten <hsweeten@visionengravers.com>
973 M:      Ryan Mallon <rmallon@gmail.com>
974 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
975 S:      Maintained
976 F:      arch/arm/mach-ep93xx/
977 F:      arch/arm/mach-ep93xx/include/mach/
978
979 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
980 M:      Lennert Buytenhek <kernel@wantstofly.org>
981 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
982 S:      Maintained
983
984 ARM/CLKDEV SUPPORT
985 M:      Russell King <linux@arm.linux.org.uk>
986 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
987 S:      Maintained
988 F:      arch/arm/include/asm/clkdev.h
989 F:      drivers/clk/clkdev.c
990
991 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
992 M:      Mike Rapoport <mike@compulab.co.il>
993 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
994 S:      Maintained
995
996 ARM/CONTEC MICRO9 MACHINE SUPPORT
997 M:      Hubert Feurstein <hubert.feurstein@contec.at>
998 S:      Maintained
999 F:      arch/arm/mach-ep93xx/micro9.c
1000
1001 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1002 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1003 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1004 S:      Maintained
1005 F:      drivers/hwtracing/coresight/*
1006 F:      Documentation/trace/coresight.txt
1007 F:      Documentation/devicetree/bindings/arm/coresight.txt
1008 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1009
1010 ARM/CORGI MACHINE SUPPORT
1011 M:      Richard Purdie <rpurdie@rpsys.net>
1012 S:      Maintained
1013
1014 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1015 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1016 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1017 T:      git git://github.com/ulli-kroll/linux.git
1018 S:      Maintained
1019 F:      arch/arm/mach-gemini/
1020 F:      drivers/rtc/rtc-gemini.c
1021
1022 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1023 M:      Barry Song <baohua@kernel.org>
1024 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1025 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1026 S:      Maintained
1027 F:      arch/arm/mach-prima2/
1028 F:      drivers/clk/sirf/
1029 F:      drivers/clocksource/timer-prima2.c
1030 F:      drivers/clocksource/timer-atlas7.c
1031 N:      [^a-z]sirf
1032
1033 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1034 M:      Baruch Siach <baruch@tkos.co.il>
1035 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1036 S:      Maintained
1037 F:      arch/arm/boot/dts/cx92755*
1038 N:      digicolor
1039
1040 ARM/EBSA110 MACHINE SUPPORT
1041 M:      Russell King <linux@arm.linux.org.uk>
1042 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1043 W:      http://www.arm.linux.org.uk/
1044 S:      Maintained
1045 F:      arch/arm/mach-ebsa110/
1046 F:      drivers/net/ethernet/amd/am79c961a.*
1047
1048 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1049 M:      Uwe Kleine-König <kernel@pengutronix.de>
1050 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1051 S:      Maintained
1052 N:      efm32
1053
1054 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1055 M:      Daniel Ribeiro <drwyrm@gmail.com>
1056 M:      Stefan Schmidt <stefan@openezx.org>
1057 M:      Harald Welte <laforge@openezx.org>
1058 L:      openezx-devel@lists.openezx.org (moderated for non-subscribers)
1059 W:      http://www.openezx.org/
1060 S:      Maintained
1061 T:      topgit git://git.openezx.org/openezx.git
1062 F:      arch/arm/mach-pxa/ezx.c
1063
1064 ARM/FARADAY FA526 PORT
1065 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1066 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1067 S:      Maintained
1068 T:      git git://git.berlios.de/gemini-board
1069 F:      arch/arm/mm/*-fa*
1070
1071 ARM/FOOTBRIDGE ARCHITECTURE
1072 M:      Russell King <linux@arm.linux.org.uk>
1073 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1074 W:      http://www.arm.linux.org.uk/
1075 S:      Maintained
1076 F:      arch/arm/include/asm/hardware/dec21285.h
1077 F:      arch/arm/mach-footbridge/
1078
1079 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1080 M:      Shawn Guo <shawnguo@kernel.org>
1081 M:      Sascha Hauer <kernel@pengutronix.de>
1082 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1083 S:      Maintained
1084 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1085 F:      arch/arm/mach-imx/
1086 F:      arch/arm/mach-mxs/
1087 F:      arch/arm/boot/dts/imx*
1088 F:      arch/arm/configs/imx*_defconfig
1089 F:      drivers/clk/imx/
1090 F:      include/soc/imx/
1091
1092 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1093 M:      Shawn Guo <shawnguo@kernel.org>
1094 M:      Sascha Hauer <kernel@pengutronix.de>
1095 R:      Stefan Agner <stefan@agner.ch>
1096 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1097 S:      Maintained
1098 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1099 F:      arch/arm/mach-imx/*vf610*
1100 F:      arch/arm/boot/dts/vf*
1101
1102 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1103 M:      Lennert Buytenhek <kernel@wantstofly.org>
1104 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1105 S:      Maintained
1106
1107 ARM/GUMSTIX MACHINE SUPPORT
1108 M:      Steve Sakoman <sakoman@gmail.com>
1109 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1110 S:      Maintained
1111
1112 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1113 M:      Philipp Zabel <philipp.zabel@gmail.com>
1114 M:      Paul Parsons <lost.distance@yahoo.com>
1115 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1116 S:      Maintained
1117 F:      arch/arm/mach-pxa/hx4700.c
1118 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1119 F:      sound/soc/pxa/hx4700.c
1120
1121 ARM/HISILICON SOC SUPPORT
1122 M:      Wei Xu <xuwei5@hisilicon.com>
1123 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1124 W:      http://www.hisilicon.com
1125 S:      Supported
1126 T:      git git://github.com/hisilicon/linux-hisi.git
1127 F:      arch/arm/mach-hisi/
1128
1129 ARM/HP JORNADA 7XX MACHINE SUPPORT
1130 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1131 W:      www.jlime.com
1132 S:      Maintained
1133 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1134 F:      arch/arm/mach-sa1100/jornada720.c
1135 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1136
1137 ARM/IGEP MACHINE SUPPORT
1138 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1139 M:      Javier Martinez Canillas <javier@dowhile0.org>
1140 L:      linux-omap@vger.kernel.org
1141 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1142 S:      Maintained
1143 F:      arch/arm/boot/dts/omap3-igep*
1144
1145 ARM/INCOME PXA270 SUPPORT
1146 M:      Marek Vasut <marek.vasut@gmail.com>
1147 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1148 S:      Maintained
1149 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1150
1151 ARM/INTEL IOP32X ARM ARCHITECTURE
1152 M:      Lennert Buytenhek <kernel@wantstofly.org>
1153 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1154 S:      Maintained
1155
1156 ARM/INTEL IOP33X ARM ARCHITECTURE
1157 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1158 S:      Orphan
1159
1160 ARM/INTEL IOP13XX ARM ARCHITECTURE
1161 M:      Lennert Buytenhek <kernel@wantstofly.org>
1162 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1163 S:      Maintained
1164
1165 ARM/INTEL IQ81342EX MACHINE SUPPORT
1166 M:      Lennert Buytenhek <kernel@wantstofly.org>
1167 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1168 S:      Maintained
1169
1170 ARM/INTEL IXDP2850 MACHINE SUPPORT
1171 M:      Lennert Buytenhek <kernel@wantstofly.org>
1172 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1173 S:      Maintained
1174
1175 ARM/INTEL IXP4XX ARM ARCHITECTURE
1176 M:      Imre Kaloz <kaloz@openwrt.org>
1177 M:      Krzysztof Halasa <khalasa@piap.pl>
1178 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1179 S:      Maintained
1180 F:      arch/arm/mach-ixp4xx/
1181
1182 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1183 M:      Jonathan Cameron <jic23@cam.ac.uk>
1184 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1185 S:      Maintained
1186 F:      arch/arm/mach-pxa/stargate2.c
1187 F:      drivers/pcmcia/pxa2xx_stargate2.c
1188
1189 ARM/INTEL XSC3 (MANZANO) ARM CORE
1190 M:      Lennert Buytenhek <kernel@wantstofly.org>
1191 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1192 S:      Maintained
1193
1194 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1195 M:      Lennert Buytenhek <kernel@wantstofly.org>
1196 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1197 S:      Maintained
1198
1199 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
1200 M:      Santosh Shilimkar <ssantosh@kernel.org>
1201 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1202 S:      Maintained
1203 F:      arch/arm/mach-keystone/
1204 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
1205
1206 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
1207 M:      Santosh Shilimkar <ssantosh@kernel.org>
1208 L:      linux-kernel@vger.kernel.org
1209 S:      Maintained
1210 F:      drivers/clk/keystone/
1211
1212 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
1213 M:      Santosh Shilimkar <ssantosh@kernel.org>
1214 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1215 L:      linux-kernel@vger.kernel.org
1216 S:      Maintained
1217 F:      drivers/clocksource/timer-keystone.c
1218
1219 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
1220 M:      Santosh Shilimkar <ssantosh@kernel.org>
1221 L:      linux-kernel@vger.kernel.org
1222 S:      Maintained
1223 F:      drivers/power/reset/keystone-reset.c
1224
1225 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
1226 M:      Santosh Shilimkar <ssantosh@kernel.org>
1227 L:      linux-kernel@vger.kernel.org
1228 S:      Maintained
1229 F:      drivers/memory/*emif*
1230
1231 ARM/LOGICPD PXA270 MACHINE SUPPORT
1232 M:      Lennert Buytenhek <kernel@wantstofly.org>
1233 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1234 S:      Maintained
1235
1236 ARM/LPC18XX ARCHITECTURE
1237 M:      Joachim Eastwood <manabian@gmail.com>
1238 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1239 S:      Maintained
1240 F:      arch/arm/boot/dts/lpc43*
1241 F:      drivers/clk/nxp/clk-lpc18xx*
1242 F:      drivers/clocksource/time-lpc32xx.c
1243 F:      drivers/i2c/busses/i2c-lpc2k.c
1244 F:      drivers/memory/pl172.c
1245 F:      drivers/mtd/spi-nor/nxp-spifi.c
1246 F:      drivers/rtc/rtc-lpc24xx.c
1247 N:      lpc18xx
1248
1249 ARM/MAGICIAN MACHINE SUPPORT
1250 M:      Philipp Zabel <philipp.zabel@gmail.com>
1251 S:      Maintained
1252
1253 ARM/Marvell Kirkwood and Armada 370, 375, 38x, XP SOC support
1254 M:      Jason Cooper <jason@lakedaemon.net>
1255 M:      Andrew Lunn <andrew@lunn.ch>
1256 M:      Gregory Clement <gregory.clement@free-electrons.com>
1257 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1258 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1259 S:      Maintained
1260 F:      arch/arm/mach-mvebu/
1261 F:      drivers/rtc/rtc-armada38x.c
1262 F:      arch/arm/boot/dts/armada*
1263 F:      arch/arm/boot/dts/kirkwood*
1264
1265
1266 ARM/Marvell Berlin SoC support
1267 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1268 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1269 S:      Maintained
1270 F:      arch/arm/mach-berlin/
1271 F:      arch/arm/boot/dts/berlin*
1272
1273
1274 ARM/Marvell Dove/MV78xx0/Orion SOC support
1275 M:      Jason Cooper <jason@lakedaemon.net>
1276 M:      Andrew Lunn <andrew@lunn.ch>
1277 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1278 M:      Gregory Clement <gregory.clement@free-electrons.com>
1279 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1280 S:      Maintained
1281 F:      arch/arm/mach-dove/
1282 F:      arch/arm/mach-mv78xx0/
1283 F:      arch/arm/mach-orion5x/
1284 F:      arch/arm/plat-orion/
1285 F:      arch/arm/boot/dts/dove*
1286 F:      arch/arm/boot/dts/orion5x*
1287
1288
1289 ARM/Orion SoC/Technologic Systems TS-78xx platform support
1290 M:      Alexander Clouter <alex@digriz.org.uk>
1291 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1292 W:      http://www.digriz.org.uk/ts78xx/kernel
1293 S:      Maintained
1294 F:      arch/arm/mach-orion5x/ts78xx-*
1295
1296 ARM/Mediatek RTC DRIVER
1297 M:      Eddie Huang <eddie.huang@mediatek.com>
1298 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1299 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1300 S:      Maintained
1301 F:      drivers/rtc/rtc-mt6397.c
1302
1303 ARM/Mediatek SoC support
1304 M:      Matthias Brugger <matthias.bgg@gmail.com>
1305 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1306 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1307 S:      Maintained
1308 F:      arch/arm/boot/dts/mt6*
1309 F:      arch/arm/boot/dts/mt8*
1310 F:      arch/arm/mach-mediatek/
1311 N:      mtk
1312 K:      mediatek
1313
1314 ARM/MICREL KS8695 ARCHITECTURE
1315 M:      Greg Ungerer <gerg@uclinux.org>
1316 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1317 F:      arch/arm/mach-ks8695/
1318 S:      Odd Fixes
1319
1320 ARM/MIOA701 MACHINE SUPPORT
1321 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1322 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1323 F:      arch/arm/mach-pxa/mioa701.c
1324 S:      Maintained
1325
1326 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1327 M:      Michael Petchkovsky <mkpetch@internode.on.net>
1328 S:      Maintained
1329
1330 ARM/NOMADIK ARCHITECTURE
1331 M:      Alessandro Rubini <rubini@unipv.it>
1332 M:      Linus Walleij <linus.walleij@linaro.org>
1333 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1334 S:      Maintained
1335 F:      arch/arm/mach-nomadik/
1336 F:      drivers/pinctrl/nomadik/
1337 F:      drivers/i2c/busses/i2c-nomadik.c
1338 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
1339
1340 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
1341 M:      Nelson Castillo <arhuaco@freaks-unidos.net>
1342 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
1343 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
1344 S:      Supported
1345
1346 ARM/TOSA MACHINE SUPPORT
1347 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1348 M:      Dirk Opfer <dirk@opfer-online.de>
1349 S:      Maintained
1350
1351 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
1352 M:      Marek Vasut <marek.vasut@gmail.com>
1353 L:      linux-arm-kernel@lists.infradead.org
1354 W:      http://hackndev.com
1355 S:      Maintained
1356 F:      arch/arm/mach-pxa/include/mach/palmtx.h
1357 F:      arch/arm/mach-pxa/palmtx.c
1358 F:      arch/arm/mach-pxa/include/mach/palmt5.h
1359 F:      arch/arm/mach-pxa/palmt5.c
1360 F:      arch/arm/mach-pxa/include/mach/palmld.h
1361 F:      arch/arm/mach-pxa/palmld.c
1362 F:      arch/arm/mach-pxa/include/mach/palmte2.h
1363 F:      arch/arm/mach-pxa/palmte2.c
1364 F:      arch/arm/mach-pxa/include/mach/palmtc.h
1365 F:      arch/arm/mach-pxa/palmtc.c
1366
1367 ARM/PALM TREO SUPPORT
1368 M:      Tomas Cech <sleep_walker@suse.com>
1369 L:      linux-arm-kernel@lists.infradead.org
1370 W:      http://hackndev.com
1371 S:      Maintained
1372 F:      arch/arm/mach-pxa/include/mach/palmtreo.h
1373 F:      arch/arm/mach-pxa/palmtreo.c
1374
1375 ARM/PALMZ72 SUPPORT
1376 M:      Sergey Lapin <slapin@ossfans.org>
1377 L:      linux-arm-kernel@lists.infradead.org
1378 W:      http://hackndev.com
1379 S:      Maintained
1380 F:      arch/arm/mach-pxa/include/mach/palmz72.h
1381 F:      arch/arm/mach-pxa/palmz72.c
1382
1383 ARM/PLEB SUPPORT
1384 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
1385 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1386 S:      Maintained
1387
1388 ARM/PT DIGITAL BOARD PORT
1389 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
1390 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1391 W:      http://www.arm.linux.org.uk/
1392 S:      Maintained
1393
1394 ARM/QUALCOMM SUPPORT
1395 M:      Kumar Gala <galak@codeaurora.org>
1396 M:      Andy Gross <agross@codeaurora.org>
1397 M:      David Brown <davidb@codeaurora.org>
1398 L:      linux-arm-msm@vger.kernel.org
1399 L:      linux-soc@vger.kernel.org
1400 S:      Maintained
1401 F:      arch/arm/mach-qcom/
1402 F:      drivers/soc/qcom/
1403 F:      drivers/tty/serial/msm_serial.h
1404 F:      drivers/tty/serial/msm_serial.c
1405 F:      drivers/*/pm8???-*
1406 F:      drivers/mfd/ssbi.c
1407 F:      drivers/firmware/qcom_scm.c
1408 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git
1409
1410 ARM/RADISYS ENP2611 MACHINE SUPPORT
1411 M:      Lennert Buytenhek <kernel@wantstofly.org>
1412 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1413 S:      Maintained
1414
1415 ARM/RISCPC ARCHITECTURE
1416 M:      Russell King <linux@arm.linux.org.uk>
1417 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1418 W:      http://www.arm.linux.org.uk/
1419 S:      Maintained
1420 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
1421 F:      arch/arm/include/asm/hardware/ioc.h
1422 F:      arch/arm/include/asm/hardware/iomd.h
1423 F:      arch/arm/include/asm/hardware/memc.h
1424 F:      arch/arm/mach-rpc/
1425 F:      drivers/net/ethernet/8390/etherh.c
1426 F:      drivers/net/ethernet/i825xx/ether1*
1427 F:      drivers/net/ethernet/seeq/ether3*
1428 F:      drivers/scsi/arm/
1429
1430 ARM/Rockchip SoC support
1431 M:      Heiko Stuebner <heiko@sntech.de>
1432 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1433 L:      linux-rockchip@lists.infradead.org
1434 S:      Maintained
1435 F:      arch/arm/boot/dts/rk3*
1436 F:      arch/arm/mach-rockchip/
1437 F:      drivers/clk/rockchip/
1438 F:      drivers/i2c/busses/i2c-rk3x.c
1439 F:      drivers/*/*rockchip*
1440 F:      drivers/*/*/*rockchip*
1441 F:      sound/soc/rockchip/
1442 N:      rockchip
1443
1444 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
1445 M:      Kukjin Kim <kgene@kernel.org>
1446 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
1447 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1448 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1449 S:      Maintained
1450 F:      arch/arm/boot/dts/s3c*
1451 F:      arch/arm/boot/dts/exynos*
1452 F:      arch/arm64/boot/dts/exynos/
1453 F:      arch/arm/plat-samsung/
1454 F:      arch/arm/mach-s3c24*/
1455 F:      arch/arm/mach-s3c64xx/
1456 F:      arch/arm/mach-s5p*/
1457 F:      arch/arm/mach-exynos*/
1458 F:      drivers/*/*s3c2410*
1459 F:      drivers/*/*/*s3c2410*
1460 F:      drivers/spi/spi-s3c*
1461 F:      drivers/soc/samsung/*
1462 F:      sound/soc/samsung/*
1463 F:      Documentation/arm/Samsung/
1464 F:      Documentation/devicetree/bindings/arm/samsung/
1465 F:      Documentation/devicetree/bindings/sram/samsung-sram.txt
1466 F:      Documentation/devicetree/bindings/power/pd-samsung.txt
1467 N:      exynos
1468
1469 ARM/SAMSUNG MOBILE MACHINE SUPPORT
1470 M:      Kyungmin Park <kyungmin.park@samsung.com>
1471 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1472 S:      Maintained
1473 F:      arch/arm/mach-s5pv210/
1474
1475 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1476 M:      Kyungmin Park <kyungmin.park@samsung.com>
1477 M:      Kamil Debski <k.debski@samsung.com>
1478 L:      linux-arm-kernel@lists.infradead.org
1479 L:      linux-media@vger.kernel.org
1480 S:      Maintained
1481 F:      drivers/media/platform/s5p-g2d/
1482
1483 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1484 M:      Kyungmin Park <kyungmin.park@samsung.com>
1485 M:      Kamil Debski <k.debski@samsung.com>
1486 M:      Jeongtae Park <jtp.park@samsung.com>
1487 L:      linux-arm-kernel@lists.infradead.org
1488 L:      linux-media@vger.kernel.org
1489 S:      Maintained
1490 F:      arch/arm/plat-samsung/s5p-dev-mfc.c
1491 F:      drivers/media/platform/s5p-mfc/
1492
1493 ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1494 M:      Kyungmin Park <kyungmin.park@samsung.com>
1495 M:      Tomasz Stanislawski <t.stanislaws@samsung.com>
1496 L:      linux-arm-kernel@lists.infradead.org
1497 L:      linux-media@vger.kernel.org
1498 S:      Maintained
1499 F:      drivers/media/platform/s5p-tv/
1500
1501 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
1502 M:      Andrzej Pietrasiewicz <andrzej.p@samsung.com>
1503 M:      Jacek Anaszewski <j.anaszewski@samsung.com>
1504 L:      linux-arm-kernel@lists.infradead.org
1505 L:      linux-media@vger.kernel.org
1506 S:      Maintained
1507 F:      drivers/media/platform/s5p-jpeg/
1508
1509 ARM/SHMOBILE ARM ARCHITECTURE
1510 M:      Simon Horman <horms@verge.net.au>
1511 M:      Magnus Damm <magnus.damm@gmail.com>
1512 L:      linux-sh@vger.kernel.org
1513 W:      http://oss.renesas.com
1514 Q:      http://patchwork.kernel.org/project/linux-sh/list/
1515 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1516 S:      Supported
1517 F:      arch/arm/boot/dts/emev2*
1518 F:      arch/arm/boot/dts/r7s*
1519 F:      arch/arm/boot/dts/r8a*
1520 F:      arch/arm/boot/dts/sh*
1521 F:      arch/arm/configs/shmobile_defconfig
1522 F:      arch/arm/include/debug/renesas-scif.S
1523 F:      arch/arm/mach-shmobile/
1524 F:      drivers/sh/
1525
1526 ARM/SOCFPGA ARCHITECTURE
1527 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1528 S:      Maintained
1529 F:      arch/arm/mach-socfpga/
1530 F:      arch/arm/boot/dts/socfpga*
1531 F:      arch/arm/configs/socfpga_defconfig
1532 W:      http://www.rocketboards.org
1533 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
1534
1535 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1536 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1537 S:      Maintained
1538 F:      drivers/clk/socfpga/
1539
1540 ARM/SOCFPGA EDAC SUPPORT
1541 M:      Thor Thayer <tthayer@opensource.altera.com>
1542 S:      Maintained
1543 F:      drivers/edac/altera_edac.
1544
1545 ARM/STI ARCHITECTURE
1546 M:      Srinivas Kandagatla <srinivas.kandagatla@gmail.com>
1547 M:      Maxime Coquelin <maxime.coquelin@st.com>
1548 M:      Patrice Chotard <patrice.chotard@st.com>
1549 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1550 L:      kernel@stlinux.com
1551 W:      http://www.stlinux.com
1552 S:      Maintained
1553 F:      arch/arm/mach-sti/
1554 F:      arch/arm/boot/dts/sti*
1555 F:      drivers/clocksource/arm_global_timer.c
1556 F:      drivers/clocksource/clksrc_st_lpc.c
1557 F:      drivers/i2c/busses/i2c-st.c
1558 F:      drivers/media/rc/st_rc.c
1559 F:      drivers/media/platform/sti/c8sectpfe/
1560 F:      drivers/mmc/host/sdhci-st.c
1561 F:      drivers/phy/phy-miphy28lp.c
1562 F:      drivers/phy/phy-miphy365x.c
1563 F:      drivers/phy/phy-stih407-usb.c
1564 F:      drivers/phy/phy-stih41x-usb.c
1565 F:      drivers/pinctrl/pinctrl-st.c
1566 F:      drivers/reset/sti/
1567 F:      drivers/rtc/rtc-st-lpc.c
1568 F:      drivers/tty/serial/st-asc.c
1569 F:      drivers/usb/dwc3/dwc3-st.c
1570 F:      drivers/usb/host/ehci-st.c
1571 F:      drivers/usb/host/ohci-st.c
1572 F:      drivers/watchdog/st_lpc_wdt.c
1573 F:      drivers/ata/ahci_st.c
1574
1575 ARM/STM32 ARCHITECTURE
1576 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
1577 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1578 S:      Maintained
1579 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git
1580 N:      stm32
1581 F:      drivers/clocksource/armv7m_systick.c
1582
1583 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
1584 M:      Lennert Buytenhek <kernel@wantstofly.org>
1585 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1586 S:      Maintained
1587
1588 ARM/TETON BGA MACHINE SUPPORT
1589 M:      "Mark F. Brown" <mark.brown314@gmail.com>
1590 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1591 S:      Maintained
1592
1593 ARM/THECUS N2100 MACHINE SUPPORT
1594 M:      Lennert Buytenhek <kernel@wantstofly.org>
1595 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1596 S:      Maintained
1597
1598 ARM/NUVOTON W90X900 ARM ARCHITECTURE
1599 M:      Wan ZongShun <mcuos.com@gmail.com>
1600 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1601 W:      http://www.mcuos.com
1602 S:      Maintained
1603 F:      arch/arm/mach-w90x900/
1604 F:      drivers/input/keyboard/w90p910_keypad.c
1605 F:      drivers/input/touchscreen/w90p910_ts.c
1606 F:      drivers/watchdog/nuc900_wdt.c
1607 F:      drivers/net/ethernet/nuvoton/w90p910_ether.c
1608 F:      drivers/mtd/nand/nuc900_nand.c
1609 F:      drivers/rtc/rtc-nuc900.c
1610 F:      drivers/spi/spi-nuc900.c
1611 F:      drivers/usb/host/ehci-w90x900.c
1612 F:      drivers/video/fbdev/nuc900fb.c
1613
1614 ARM/U300 MACHINE SUPPORT
1615 M:      Linus Walleij <linus.walleij@linaro.org>
1616 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1617 S:      Supported
1618 F:      arch/arm/mach-u300/
1619 F:      drivers/clocksource/timer-u300.c
1620 F:      drivers/i2c/busses/i2c-stu300.c
1621 F:      drivers/rtc/rtc-coh901331.c
1622 F:      drivers/watchdog/coh901327_wdt.c
1623 F:      drivers/dma/coh901318*
1624 F:      drivers/mfd/ab3100*
1625 F:      drivers/rtc/rtc-ab3100.c
1626 F:      drivers/rtc/rtc-coh901331.c
1627 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1628
1629 ARM/UNIPHIER ARCHITECTURE
1630 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
1631 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1632 S:      Maintained
1633 F:      arch/arm/boot/dts/uniphier*
1634 F:      arch/arm/include/asm/hardware/cache-uniphier.h
1635 F:      arch/arm/mach-uniphier/
1636 F:      arch/arm/mm/cache-uniphier.c
1637 F:      drivers/i2c/busses/i2c-uniphier*
1638 F:      drivers/pinctrl/uniphier/
1639 F:      drivers/tty/serial/8250/8250_uniphier.c
1640 N:      uniphier
1641
1642 ARM/Ux500 ARM ARCHITECTURE
1643 M:      Linus Walleij <linus.walleij@linaro.org>
1644 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1645 S:      Maintained
1646 F:      arch/arm/mach-ux500/
1647 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
1648 F:      drivers/dma/ste_dma40*
1649 F:      drivers/hwspinlock/u8500_hsem.c
1650 F:      drivers/mfd/abx500*
1651 F:      drivers/mfd/ab8500*
1652 F:      drivers/mfd/dbx500*
1653 F:      drivers/mfd/db8500*
1654 F:      drivers/pinctrl/nomadik/pinctrl-ab*
1655 F:      drivers/pinctrl/nomadik/pinctrl-nomadik*
1656 F:      drivers/rtc/rtc-ab8500.c
1657 F:      drivers/rtc/rtc-pl031.c
1658 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1659
1660 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
1661 M:      Ulf Hansson <ulf.hansson@linaro.org>
1662 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1663 T:      git git://git.linaro.org/people/ulfh/clk.git
1664 S:      Maintained
1665 F:      drivers/clk/ux500/
1666 F:      include/linux/platform_data/clk-ux500.h
1667
1668 ARM/VERSATILE EXPRESS PLATFORM
1669 M:      Liviu Dudau <liviu.dudau@arm.com>
1670 M:      Sudeep Holla <sudeep.holla@arm.com>
1671 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
1672 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1673 S:      Maintained
1674 F:      arch/arm/boot/dts/vexpress*
1675 F:      arch/arm64/boot/dts/arm/vexpress*
1676 F:      arch/arm/mach-vexpress/
1677 F:      */*/vexpress*
1678 F:      */*/*/vexpress*
1679 F:      drivers/clk/versatile/clk-vexpress-osc.c
1680 F:      drivers/clocksource/versatile.c
1681
1682 ARM/VFP SUPPORT
1683 M:      Russell King <linux@arm.linux.org.uk>
1684 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1685 W:      http://www.arm.linux.org.uk/
1686 S:      Maintained
1687 F:      arch/arm/vfp/
1688
1689 ARM/VOIPAC PXA270 SUPPORT
1690 M:      Marek Vasut <marek.vasut@gmail.com>
1691 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1692 S:      Maintained
1693 F:      arch/arm/mach-pxa/vpac270.c
1694 F:      arch/arm/mach-pxa/include/mach/vpac270.h
1695
1696 ARM/VT8500 ARM ARCHITECTURE
1697 M:      Tony Prisk <linux@prisktech.co.nz>
1698 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1699 S:      Maintained
1700 F:      arch/arm/mach-vt8500/
1701 F:      drivers/clocksource/vt8500_timer.c
1702 F:      drivers/i2c/busses/i2c-wmt.c
1703 F:      drivers/mmc/host/wmt-sdmmc.c
1704 F:      drivers/pwm/pwm-vt8500.c
1705 F:      drivers/rtc/rtc-vt8500.c
1706 F:      drivers/tty/serial/vt8500_serial.c
1707 F:      drivers/usb/host/ehci-platform.c
1708 F:      drivers/usb/host/uhci-platform.c
1709 F:      drivers/video/fbdev/vt8500lcdfb.*
1710 F:      drivers/video/fbdev/wm8505fb*
1711 F:      drivers/video/fbdev/wmt_ge_rops.*
1712
1713 ARM/ZIPIT Z2 SUPPORT
1714 M:      Marek Vasut <marek.vasut@gmail.com>
1715 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1716 S:      Maintained
1717 F:      arch/arm/mach-pxa/z2.c
1718 F:      arch/arm/mach-pxa/include/mach/z2.h
1719
1720 ARM/ZTE ARCHITECTURE
1721 M:      Jun Nie <jun.nie@linaro.org>
1722 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1723 S:      Maintained
1724 F:      arch/arm/mach-zx/
1725 F:      drivers/clk/zte/
1726 F:      Documentation/devicetree/bindings/arm/zte.txt
1727 F:      Documentation/devicetree/bindings/clock/zx296702-clk.txt
1728
1729 ARM/ZYNQ ARCHITECTURE
1730 M:      Michal Simek <michal.simek@xilinx.com>
1731 R:      Sören Brinkmann <soren.brinkmann@xilinx.com>
1732 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1733 W:      http://wiki.xilinx.com
1734 T:      git https://github.com/Xilinx/linux-xlnx.git
1735 S:      Supported
1736 F:      arch/arm/mach-zynq/
1737 F:      drivers/cpuidle/cpuidle-zynq.c
1738 F:      drivers/block/xsysace.c
1739 N:      zynq
1740 N:      xilinx
1741 F:      drivers/clocksource/cadence_ttc_timer.c
1742 F:      drivers/i2c/busses/i2c-cadence.c
1743 F:      drivers/mmc/host/sdhci-of-arasan.c
1744 F:      drivers/edac/synopsys_edac.c
1745
1746 ARM SMMU DRIVERS
1747 M:      Will Deacon <will.deacon@arm.com>
1748 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1749 S:      Maintained
1750 F:      drivers/iommu/arm-smmu.c
1751 F:      drivers/iommu/arm-smmu-v3.c
1752 F:      drivers/iommu/io-pgtable-arm.c
1753
1754 ARM64 PORT (AARCH64 ARCHITECTURE)
1755 M:      Catalin Marinas <catalin.marinas@arm.com>
1756 M:      Will Deacon <will.deacon@arm.com>
1757 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1758 S:      Maintained
1759 F:      arch/arm64/
1760 F:      Documentation/arm64/
1761
1762 AS3645A LED FLASH CONTROLLER DRIVER
1763 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1764 L:      linux-media@vger.kernel.org
1765 T:      git git://linuxtv.org/media_tree.git
1766 S:      Maintained
1767 F:      drivers/media/i2c/as3645a.c
1768 F:      include/media/as3645a.h
1769
1770 ASC7621 HARDWARE MONITOR DRIVER
1771 M:      George Joseph <george.joseph@fairview5.com>
1772 L:      lm-sensors@lm-sensors.org
1773 S:      Maintained
1774 F:      Documentation/hwmon/asc7621
1775 F:      drivers/hwmon/asc7621.c
1776
1777 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
1778 M:      Corentin Chary <corentin.chary@gmail.com>
1779 L:      acpi4asus-user@lists.sourceforge.net
1780 L:      platform-driver-x86@vger.kernel.org
1781 W:      http://acpi4asus.sf.net
1782 S:      Maintained
1783 F:      drivers/platform/x86/asus*.c
1784 F:      drivers/platform/x86/eeepc*.c
1785
1786 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
1787 R:      Dan Williams <dan.j.williams@intel.com>
1788 W:      http://sourceforge.net/projects/xscaleiop
1789 S:      Odd fixes
1790 F:      Documentation/crypto/async-tx-api.txt
1791 F:      crypto/async_tx/
1792 F:      drivers/dma/
1793 F:      include/linux/dmaengine.h
1794 F:      include/linux/async_tx.h
1795
1796 AT24 EEPROM DRIVER
1797 M:      Wolfram Sang <wsa@the-dreams.de>
1798 L:      linux-i2c@vger.kernel.org
1799 S:      Maintained
1800 F:      drivers/misc/eeprom/at24.c
1801 F:      include/linux/platform_data/at24.h
1802
1803 ATA OVER ETHERNET (AOE) DRIVER
1804 M:      "Ed L. Cashin" <ed.cashin@acm.org>
1805 W:      http://www.openaoe.org/
1806 S:      Supported
1807 F:      Documentation/aoe/
1808 F:      drivers/block/aoe/
1809
1810 ATHEROS ATH GENERIC UTILITIES
1811 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1812 L:      linux-wireless@vger.kernel.org
1813 S:      Supported
1814 F:      drivers/net/wireless/ath/*
1815
1816 ATHEROS ATH5K WIRELESS DRIVER
1817 M:      Jiri Slaby <jirislaby@gmail.com>
1818 M:      Nick Kossifidis <mickflemm@gmail.com>
1819 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1820 L:      linux-wireless@vger.kernel.org
1821 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
1822 S:      Maintained
1823 F:      drivers/net/wireless/ath/ath5k/
1824
1825 ATHEROS ATH6KL WIRELESS DRIVER
1826 M:      Kalle Valo <kvalo@qca.qualcomm.com>
1827 L:      linux-wireless@vger.kernel.org
1828 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
1829 T:      git git://github.com/kvalo/ath.git
1830 S:      Supported
1831 F:      drivers/net/wireless/ath/ath6kl/
1832
1833 WILOCITY WIL6210 WIRELESS DRIVER
1834 M:      Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com>
1835 L:      linux-wireless@vger.kernel.org
1836 L:      wil6210@qca.qualcomm.com
1837 S:      Supported
1838 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
1839 F:      drivers/net/wireless/ath/wil6210/
1840 F:      include/uapi/linux/wil6210_uapi.h
1841
1842 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1843 M:      Christian Lamparter <chunkeey@googlemail.com>
1844 L:      linux-wireless@vger.kernel.org
1845 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
1846 S:      Maintained
1847 F:      drivers/net/wireless/ath/carl9170/
1848
1849 ATK0110 HWMON DRIVER
1850 M:      Luca Tettamanti <kronos.it@gmail.com>
1851 L:      lm-sensors@lm-sensors.org
1852 S:      Maintained
1853 F:      drivers/hwmon/asus_atk0110.c
1854
1855 ATI_REMOTE2 DRIVER
1856 M:      Ville Syrjala <syrjala@sci.fi>
1857 S:      Maintained
1858 F:      drivers/input/misc/ati_remote2.c
1859
1860 ATLX ETHERNET DRIVERS
1861 M:      Jay Cliburn <jcliburn@gmail.com>
1862 M:      Chris Snook <chris.snook@gmail.com>
1863 L:      netdev@vger.kernel.org
1864 W:      http://sourceforge.net/projects/atl1
1865 W:      http://atl1.sourceforge.net
1866 S:      Maintained
1867 F:      drivers/net/ethernet/atheros/
1868
1869 ATM
1870 M:      Chas Williams <3chas3@gmail.com>
1871 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
1872 L:      netdev@vger.kernel.org
1873 W:      http://linux-atm.sourceforge.net
1874 S:      Maintained
1875 F:      drivers/atm/
1876 F:      include/linux/atm*
1877 F:      include/uapi/linux/atm*
1878
1879 ATMEL AT91 / AT32 MCI DRIVER
1880 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1881 S:      Maintained
1882 F:      drivers/mmc/host/atmel-mci.c
1883 F:      drivers/mmc/host/atmel-mci-regs.h
1884
1885 ATMEL AT91 / AT32 SERIAL DRIVER
1886 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1887 S:      Supported
1888 F:      drivers/tty/serial/atmel_serial.c
1889
1890 ATMEL Audio ALSA driver
1891 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1892 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1893 S:      Supported
1894 F:      sound/soc/atmel
1895
1896 ATMEL DMA DRIVER
1897 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1898 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1899 S:      Supported
1900 F:      drivers/dma/at_hdmac.c
1901 F:      drivers/dma/at_hdmac_regs.h
1902 F:      include/linux/platform_data/dma-atmel.h
1903
1904 ATMEL XDMA DRIVER
1905 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1906 L:      linux-arm-kernel@lists.infradead.org
1907 L:      dmaengine@vger.kernel.org
1908 S:      Supported
1909 F:      drivers/dma/at_xdmac.c
1910
1911 ATMEL I2C DRIVER
1912 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1913 L:      linux-i2c@vger.kernel.org
1914 S:      Supported
1915 F:      drivers/i2c/busses/i2c-at91.c
1916
1917 ATMEL ISI DRIVER
1918 M:      Josh Wu <josh.wu@atmel.com>
1919 L:      linux-media@vger.kernel.org
1920 S:      Supported
1921 F:      drivers/media/platform/soc_camera/atmel-isi.c
1922 F:      include/media/atmel-isi.h
1923
1924 ATMEL LCDFB DRIVER
1925 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1926 L:      linux-fbdev@vger.kernel.org
1927 S:      Maintained
1928 F:      drivers/video/fbdev/atmel_lcdfb.c
1929 F:      include/video/atmel_lcdc.h
1930
1931 ATMEL MACB ETHERNET DRIVER
1932 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1933 S:      Supported
1934 F:      drivers/net/ethernet/cadence/
1935
1936 ATMEL NAND DRIVER
1937 M:      Josh Wu <josh.wu@atmel.com>
1938 L:      linux-mtd@lists.infradead.org
1939 S:      Supported
1940 F:      drivers/mtd/nand/atmel_nand*
1941
1942 ATMEL SDMMC DRIVER
1943 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1944 L:      linux-mmc@vger.kernel.org
1945 S:      Supported
1946 F:      drivers/mmc/host/sdhci-of-at91.c
1947
1948 ATMEL SPI DRIVER
1949 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1950 S:      Supported
1951 F:      drivers/spi/spi-atmel.*
1952
1953 ATMEL SSC DRIVER
1954 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1955 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1956 S:      Supported
1957 F:      drivers/misc/atmel-ssc.c
1958 F:      include/linux/atmel-ssc.h
1959
1960 ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1961 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1962 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1963 S:      Supported
1964 F:      drivers/misc/atmel_tclib.c
1965 F:      drivers/clocksource/tcb_clksrc.c
1966
1967 ATMEL USBA UDC DRIVER
1968 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1969 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1970 S:      Supported
1971 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
1972
1973 ATMEL WIRELESS DRIVER
1974 M:      Simon Kelley <simon@thekelleys.org.uk>
1975 L:      linux-wireless@vger.kernel.org
1976 W:      http://www.thekelleys.org.uk/atmel
1977 W:      http://atmelwlandriver.sourceforge.net/
1978 S:      Maintained
1979 F:      drivers/net/wireless/atmel*
1980
1981 ATMEL MAXTOUCH DRIVER
1982 M:      Nick Dyer <nick.dyer@itdev.co.uk>
1983 T:      git git://github.com/atmel-maxtouch/linux.git
1984 S:      Supported
1985 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
1986 F:      drivers/input/touchscreen/atmel_mxt_ts.c
1987 F:      include/linux/platform_data/atmel_mxt_ts.h
1988
1989 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
1990 M:      Bradley Grove <linuxdrivers@attotech.com>
1991 L:      linux-scsi@vger.kernel.org
1992 W:      http://www.attotech.com
1993 S:      Supported
1994 F:      drivers/scsi/esas2r
1995
1996 ATUSB IEEE 802.15.4 RADIO DRIVER
1997 M:      Stefan Schmidt <stefan@osg.samsung.com>
1998 L:      linux-wpan@vger.kernel.org
1999 S:      Maintained
2000 F:      drivers/net/ieee802154/atusb.c
2001 F:      drivers/net/ieee802154/atusb.h
2002 F:      drivers/net/ieee802154/at86rf230.h
2003
2004 AUDIT SUBSYSTEM
2005 M:      Paul Moore <paul@paul-moore.com>
2006 M:      Eric Paris <eparis@redhat.com>
2007 L:      linux-audit@redhat.com (moderated for non-subscribers)
2008 W:      http://people.redhat.com/sgrubb/audit/
2009 T:      git git://git.infradead.org/users/pcmoore/audit
2010 S:      Maintained
2011 F:      include/linux/audit.h
2012 F:      include/uapi/linux/audit.h
2013 F:      kernel/audit*
2014
2015 AUXILIARY DISPLAY DRIVERS
2016 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2017 W:      http://miguelojeda.es/auxdisplay.htm
2018 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2019 S:      Maintained
2020 F:      drivers/auxdisplay/
2021 F:      include/linux/cfag12864b.h
2022
2023 AVR32 ARCHITECTURE
2024 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
2025 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
2026 W:      http://www.atmel.com/products/AVR32/
2027 W:      http://mirror.egtvedt.no/avr32linux.org/
2028 W:      http://avrfreaks.net/
2029 S:      Maintained
2030 F:      arch/avr32/
2031
2032 AVR32/AT32AP MACHINE SUPPORT
2033 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
2034 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
2035 S:      Maintained
2036 F:      arch/avr32/mach-at32ap/
2037
2038 AX.25 NETWORK LAYER
2039 M:      Ralf Baechle <ralf@linux-mips.org>
2040 L:      linux-hams@vger.kernel.org
2041 W:      http://www.linux-ax25.org/
2042 S:      Maintained
2043 F:      include/uapi/linux/ax25.h
2044 F:      include/net/ax25.h
2045 F:      net/ax25/
2046
2047 AZ6007 DVB DRIVER
2048 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2049 L:      linux-media@vger.kernel.org
2050 W:      http://linuxtv.org
2051 T:      git git://linuxtv.org/media_tree.git
2052 S:      Maintained
2053 F:      drivers/media/usb/dvb-usb-v2/az6007.c
2054
2055 AZTECH FM RADIO RECEIVER DRIVER
2056 M:      Hans Verkuil <hverkuil@xs4all.nl>
2057 L:      linux-media@vger.kernel.org
2058 T:      git git://linuxtv.org/media_tree.git
2059 W:      http://linuxtv.org
2060 S:      Maintained
2061 F:      drivers/media/radio/radio-aztech*
2062
2063 B43 WIRELESS DRIVER
2064 L:      linux-wireless@vger.kernel.org
2065 L:      b43-dev@lists.infradead.org
2066 W:      http://wireless.kernel.org/en/users/Drivers/b43
2067 S:      Odd Fixes
2068 F:      drivers/net/wireless/b43/
2069
2070 B43LEGACY WIRELESS DRIVER
2071 M:      Larry Finger <Larry.Finger@lwfinger.net>
2072 L:      linux-wireless@vger.kernel.org
2073 L:      b43-dev@lists.infradead.org
2074 W:      http://wireless.kernel.org/en/users/Drivers/b43
2075 S:      Maintained
2076 F:      drivers/net/wireless/b43legacy/
2077
2078 BACKLIGHT CLASS/SUBSYSTEM
2079 M:      Jingoo Han <jingoohan1@gmail.com>
2080 M:      Lee Jones <lee.jones@linaro.org>
2081 S:      Maintained
2082 F:      drivers/video/backlight/
2083 F:      include/linux/backlight.h
2084
2085 BATMAN ADVANCED
2086 M:      Marek Lindner <mareklindner@neomailbox.ch>
2087 M:      Simon Wunderlich <sw@simonwunderlich.de>
2088 M:      Antonio Quartulli <antonio@meshcoding.com>
2089 L:      b.a.t.m.a.n@lists.open-mesh.org
2090 W:      http://www.open-mesh.org/
2091 S:      Maintained
2092 F:      net/batman-adv/
2093
2094 BAYCOM/HDLCDRV DRIVERS FOR AX.25
2095 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
2096 L:      linux-hams@vger.kernel.org
2097 W:      http://www.baycom.org/~tom/ham/ham.html
2098 S:      Maintained
2099 F:      drivers/net/hamradio/baycom*
2100
2101 BCACHE (BLOCK LAYER CACHE)
2102 M:      Kent Overstreet <kent.overstreet@gmail.com>
2103 L:      linux-bcache@vger.kernel.org
2104 W:      http://bcache.evilpiepirate.org
2105 S:      Maintained
2106 F:      drivers/md/bcache/
2107
2108 BDISP ST MEDIA DRIVER
2109 M:      Fabien Dessenne <fabien.dessenne@st.com>
2110 L:      linux-media@vger.kernel.org
2111 T:      git git://linuxtv.org/media_tree.git
2112 W:      http://linuxtv.org
2113 S:      Supported
2114 F:      drivers/media/platform/sti/bdisp
2115
2116 BEFS FILE SYSTEM
2117 S:      Orphan
2118 F:      Documentation/filesystems/befs.txt
2119 F:      fs/befs/
2120
2121 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
2122 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
2123 L:      netdev@vger.kernel.org
2124 S:      Maintained
2125 F:      drivers/net/ethernet/ec_bhf.c
2126
2127 BFS FILE SYSTEM
2128 M:      "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
2129 S:      Maintained
2130 F:      Documentation/filesystems/bfs.txt
2131 F:      fs/bfs/
2132 F:      include/uapi/linux/bfs_fs.h
2133
2134 BLACKFIN ARCHITECTURE
2135 M:      Steven Miao <realmz6@gmail.com>
2136 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2137 T:      git git://git.code.sf.net/p/adi-linux/code
2138 W:      http://blackfin.uclinux.org
2139 S:      Supported
2140 F:      arch/blackfin/
2141
2142 BLACKFIN EMAC DRIVER
2143 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2144 W:      http://blackfin.uclinux.org
2145 S:      Supported
2146 F:      drivers/net/ethernet/adi/
2147
2148 BLACKFIN RTC DRIVER
2149 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2150 W:      http://blackfin.uclinux.org
2151 S:      Supported
2152 F:      drivers/rtc/rtc-bfin.c
2153
2154 BLACKFIN SDH DRIVER
2155 M:      Sonic Zhang <sonic.zhang@analog.com>
2156 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2157 W:      http://blackfin.uclinux.org
2158 S:      Supported
2159 F:      drivers/mmc/host/bfin_sdh.c
2160
2161 BLACKFIN SERIAL DRIVER
2162 M:      Sonic Zhang <sonic.zhang@analog.com>
2163 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2164 W:      http://blackfin.uclinux.org
2165 S:      Supported
2166 F:      drivers/tty/serial/bfin_uart.c
2167
2168 BLACKFIN WATCHDOG DRIVER
2169 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2170 W:      http://blackfin.uclinux.org
2171 S:      Supported
2172 F:      drivers/watchdog/bfin_wdt.c
2173
2174 BLACKFIN I2C TWI DRIVER
2175 M:      Sonic Zhang <sonic.zhang@analog.com>
2176 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2177 W:      http://blackfin.uclinux.org/
2178 S:      Supported
2179 F:      drivers/i2c/busses/i2c-bfin-twi.c
2180
2181 BLACKFIN MEDIA DRIVER
2182 M:      Scott Jiang <scott.jiang.linux@gmail.com>
2183 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2184 W:      http://blackfin.uclinux.org/
2185 S:      Supported
2186 F:      drivers/media/platform/blackfin/
2187 F:      drivers/media/i2c/adv7183*
2188 F:      drivers/media/i2c/vs6624*
2189
2190 BLINKM RGB LED DRIVER
2191 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
2192 S:      Maintained
2193 F:      drivers/leds/leds-blinkm.c
2194
2195 BLOCK LAYER
2196 M:      Jens Axboe <axboe@kernel.dk>
2197 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
2198 S:      Maintained
2199 F:      block/
2200 F:      kernel/trace/blktrace.c
2201
2202 BLOCK2MTD DRIVER
2203 M:      Joern Engel <joern@lazybastard.org>
2204 L:      linux-mtd@lists.infradead.org
2205 S:      Maintained
2206 F:      drivers/mtd/devices/block2mtd.c
2207
2208 BLUETOOTH DRIVERS
2209 M:      Marcel Holtmann <marcel@holtmann.org>
2210 M:      Gustavo Padovan <gustavo@padovan.org>
2211 M:      Johan Hedberg <johan.hedberg@gmail.com>
2212 L:      linux-bluetooth@vger.kernel.org
2213 W:      http://www.bluez.org/
2214 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2215 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2216 S:      Maintained
2217 F:      drivers/bluetooth/
2218
2219 BLUETOOTH SUBSYSTEM
2220 M:      Marcel Holtmann <marcel@holtmann.org>
2221 M:      Gustavo Padovan <gustavo@padovan.org>
2222 M:      Johan Hedberg <johan.hedberg@gmail.com>
2223 L:      linux-bluetooth@vger.kernel.org
2224 W:      http://www.bluez.org/
2225 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2226 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2227 S:      Maintained
2228 F:      net/bluetooth/
2229 F:      include/net/bluetooth/
2230
2231 BONDING DRIVER
2232 M:      Jay Vosburgh <j.vosburgh@gmail.com>
2233 M:      Veaceslav Falico <vfalico@gmail.com>
2234 M:      Andy Gospodarek <gospo@cumulusnetworks.com>
2235 L:      netdev@vger.kernel.org
2236 W:      http://sourceforge.net/projects/bonding/
2237 S:      Supported
2238 F:      drivers/net/bonding/
2239 F:      include/uapi/linux/if_bonding.h
2240
2241 BPF (Safe dynamic programs and tools)
2242 M:      Alexei Starovoitov <ast@kernel.org>
2243 L:      netdev@vger.kernel.org
2244 L:      linux-kernel@vger.kernel.org
2245 S:      Supported
2246 F:      kernel/bpf/
2247
2248 BROADCOM B44 10/100 ETHERNET DRIVER
2249 M:      Gary Zambrano <zambrano@broadcom.com>
2250 L:      netdev@vger.kernel.org
2251 S:      Supported
2252 F:      drivers/net/ethernet/broadcom/b44.*
2253
2254 BROADCOM GENET ETHERNET DRIVER
2255 M:      Florian Fainelli <f.fainelli@gmail.com>
2256 L:      netdev@vger.kernel.org
2257 S:      Supported
2258 F:      drivers/net/ethernet/broadcom/genet/
2259
2260 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
2261 M:      Sony Chacko <sony.chacko@qlogic.com>
2262 M:      Dept-HSGLinuxNICDev@qlogic.com
2263 L:      netdev@vger.kernel.org
2264 S:      Supported
2265 F:      drivers/net/ethernet/broadcom/bnx2.*
2266 F:      drivers/net/ethernet/broadcom/bnx2_*
2267
2268 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
2269 M:      Ariel Elior <ariel.elior@qlogic.com>
2270 L:      netdev@vger.kernel.org
2271 S:      Supported
2272 F:      drivers/net/ethernet/broadcom/bnx2x/
2273
2274 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
2275 M:      Florian Fainelli <f.fainelli@gmail.com>
2276 M:      Ray Jui <rjui@broadcom.com>
2277 M:      Scott Branden <sbranden@broadcom.com>
2278 L:      bcm-kernel-feedback-list@broadcom.com
2279 T:      git git://github.com/broadcom/mach-bcm
2280 S:      Maintained
2281 F:      arch/arm/mach-bcm/
2282 F:      arch/arm/boot/dts/bcm113*
2283 F:      arch/arm/boot/dts/bcm216*
2284 F:      arch/arm/boot/dts/bcm281*
2285 F:      arch/arm/configs/bcm_defconfig
2286 F:      drivers/mmc/host/sdhci-bcm-kona.c
2287 F:      drivers/clocksource/bcm_kona_timer.c
2288
2289 BROADCOM BCM2835 ARM ARCHITECTURE
2290 M:      Stephen Warren <swarren@wwwdotorg.org>
2291 M:      Lee Jones <lee@kernel.org>
2292 M:      Eric Anholt <eric@anholt.net>
2293 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
2294 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2295 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rpi/linux-rpi.git
2296 S:      Maintained
2297 N:      bcm2835
2298
2299 BROADCOM BCM33XX MIPS ARCHITECTURE
2300 M:      Kevin Cernekee <cernekee@gmail.com>
2301 L:      linux-mips@linux-mips.org
2302 S:      Maintained
2303 F:      arch/mips/bcm3384/*
2304 F:      arch/mips/include/asm/mach-bcm3384/*
2305 F:      arch/mips/kernel/*bmips*
2306
2307 BROADCOM BCM47XX MIPS ARCHITECTURE
2308 M:      Hauke Mehrtens <hauke@hauke-m.de>
2309 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2310 L:      linux-mips@linux-mips.org
2311 S:      Maintained
2312 F:      arch/mips/bcm47xx/*
2313 F:      arch/mips/include/asm/mach-bcm47xx/*
2314
2315 BROADCOM BCM5301X ARM ARCHITECTURE
2316 M:      Hauke Mehrtens <hauke@hauke-m.de>
2317 L:      linux-arm-kernel@lists.infradead.org
2318 S:      Maintained
2319 F:      arch/arm/mach-bcm/bcm_5301x.c
2320 F:      arch/arm/boot/dts/bcm5301x.dtsi
2321 F:      arch/arm/boot/dts/bcm470*
2322
2323 BROADCOM BCM63XX ARM ARCHITECTURE
2324 M:      Florian Fainelli <f.fainelli@gmail.com>
2325 L:      linux-arm-kernel@lists.infradead.org
2326 T:      git git://github.com/broadcom/arm-bcm63xx.git
2327 S:      Maintained
2328 F:      arch/arm/mach-bcm/bcm63xx.c
2329 F:      arch/arm/include/debug/bcm63xx.S
2330
2331 BROADCOM BCM63XX/BCM33XX UDC DRIVER
2332 M:      Kevin Cernekee <cernekee@gmail.com>
2333 L:      linux-usb@vger.kernel.org
2334 S:      Maintained
2335 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
2336
2337 BROADCOM BCM7XXX ARM ARCHITECTURE
2338 M:      Brian Norris <computersforpeace@gmail.com>
2339 M:      Gregory Fong <gregory.0xf0@gmail.com>
2340 M:      Florian Fainelli <f.fainelli@gmail.com>
2341 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2342 T:      git git://github.com/broadcom/stblinux.git
2343 S:      Maintained
2344 F:      arch/arm/mach-bcm/*brcmstb*
2345 F:      arch/arm/boot/dts/bcm7*.dts*
2346 F:      drivers/bus/brcmstb_gisb.c
2347 N:      brcmstb
2348
2349 BROADCOM BMIPS MIPS ARCHITECTURE
2350 M:      Kevin Cernekee <cernekee@gmail.com>
2351 M:      Florian Fainelli <f.fainelli@gmail.com>
2352 L:      linux-mips@linux-mips.org
2353 T:      git git://github.com/broadcom/stblinux.git
2354 S:      Maintained
2355 F:      arch/mips/bmips/*
2356 F:      arch/mips/include/asm/mach-bmips/*
2357 F:      arch/mips/kernel/*bmips*
2358 F:      arch/mips/boot/dts/brcm/bcm*.dts*
2359 F:      drivers/irqchip/irq-bcm7*
2360 F:      drivers/irqchip/irq-brcmstb*
2361
2362 BROADCOM TG3 GIGABIT ETHERNET DRIVER
2363 M:      Prashant Sreedharan <prashant@broadcom.com>
2364 M:      Michael Chan <mchan@broadcom.com>
2365 L:      netdev@vger.kernel.org
2366 S:      Supported
2367 F:      drivers/net/ethernet/broadcom/tg3.*
2368
2369 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2370 M:      Brett Rudley <brudley@broadcom.com>
2371 M:      Arend van Spriel <arend@broadcom.com>
2372 M:      Franky (Zhenhui) Lin <frankyl@broadcom.com>
2373 M:      Hante Meuleman <meuleman@broadcom.com>
2374 L:      linux-wireless@vger.kernel.org
2375 L:      brcm80211-dev-list@broadcom.com
2376 S:      Supported
2377 F:      drivers/net/wireless/brcm80211/
2378
2379 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
2380 M:      QLogic-Storage-Upstream@qlogic.com
2381 L:      linux-scsi@vger.kernel.org
2382 S:      Supported
2383 F:      drivers/scsi/bnx2fc/
2384
2385 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
2386 M:      QLogic-Storage-Upstream@qlogic.com
2387 L:      linux-scsi@vger.kernel.org
2388 S:      Supported
2389 F:      drivers/scsi/bnx2i/
2390
2391 BROADCOM IPROC ARM ARCHITECTURE
2392 M:      Ray Jui <rjui@broadcom.com>
2393 M:      Scott Branden <sbranden@broadcom.com>
2394 M:      Jon Mason <jonmason@broadcom.com>
2395 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2396 L:      bcm-kernel-feedback-list@broadcom.com
2397 T:      git git://github.com/broadcom/cygnus-linux.git
2398 S:      Maintained
2399 N:      iproc
2400 N:      cygnus
2401 N:      nsp
2402 N:      bcm9113*
2403 N:      bcm9583*
2404 N:      bcm9585*
2405 N:      bcm9586*
2406 N:      bcm988312
2407 N:      bcm113*
2408 N:      bcm583*
2409 N:      bcm585*
2410 N:      bcm586*
2411 N:      bcm88312
2412
2413 BROADCOM BRCMSTB GPIO DRIVER
2414 M:      Gregory Fong <gregory.0xf0@gmail.com>
2415 L:      bcm-kernel-feedback-list@broadcom.com>
2416 S:      Supported
2417 F:      drivers/gpio/gpio-brcmstb.c
2418 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
2419
2420 BROADCOM KONA GPIO DRIVER
2421 M:      Ray Jui <rjui@broadcom.com>
2422 L:      bcm-kernel-feedback-list@broadcom.com
2423 S:      Supported
2424 F:      drivers/gpio/gpio-bcm-kona.c
2425 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
2426
2427 BROADCOM NVRAM DRIVER
2428 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2429 L:      linux-mips@linux-mips.org
2430 S:      Maintained
2431 F:      drivers/firmware/broadcom/*
2432
2433 BROADCOM STB NAND FLASH DRIVER
2434 M:      Brian Norris <computersforpeace@gmail.com>
2435 L:      linux-mtd@lists.infradead.org
2436 S:      Maintained
2437 F:      drivers/mtd/nand/brcmnand/
2438
2439 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2440 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2441 L:      linux-wireless@vger.kernel.org
2442 S:      Maintained
2443 F:      drivers/bcma/
2444 F:      include/linux/bcma/
2445
2446 BROADCOM SYSTEMPORT ETHERNET DRIVER
2447 M:      Florian Fainelli <f.fainelli@gmail.com>
2448 L:      netdev@vger.kernel.org
2449 S:      Supported
2450 F:      drivers/net/ethernet/broadcom/bcmsysport.*
2451
2452 BROCADE BFA FC SCSI DRIVER
2453 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
2454 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
2455 L:      linux-scsi@vger.kernel.org
2456 S:      Supported
2457 F:      drivers/scsi/bfa/
2458
2459 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
2460 M:      Rasesh Mody <rasesh.mody@qlogic.com>
2461 L:      netdev@vger.kernel.org
2462 S:      Supported
2463 F:      drivers/net/ethernet/brocade/bna/
2464
2465 BSG (block layer generic sg v4 driver)
2466 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
2467 L:      linux-scsi@vger.kernel.org
2468 S:      Supported
2469 F:      block/bsg.c
2470 F:      include/linux/bsg.h
2471 F:      include/uapi/linux/bsg.h
2472
2473 BT87X AUDIO DRIVER
2474 M:      Clemens Ladisch <clemens@ladisch.de>
2475 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2476 T:      git git://git.alsa-project.org/alsa-kernel.git
2477 S:      Maintained
2478 F:      Documentation/sound/alsa/Bt87x.txt
2479 F:      sound/pci/bt87x.c
2480
2481 BT8XXGPIO DRIVER
2482 M:      Michael Buesch <m@bues.ch>
2483 W:      http://bu3sch.de/btgpio.php
2484 S:      Maintained
2485 F:      drivers/gpio/gpio-bt8xx.c
2486
2487 BTRFS FILE SYSTEM
2488 M:      Chris Mason <clm@fb.com>
2489 M:      Josef Bacik <jbacik@fb.com>
2490 M:      David Sterba <dsterba@suse.com>
2491 L:      linux-btrfs@vger.kernel.org
2492 W:      http://btrfs.wiki.kernel.org/
2493 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
2494 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
2495 S:      Maintained
2496 F:      Documentation/filesystems/btrfs.txt
2497 F:      fs/btrfs/
2498
2499 BTTV VIDEO4LINUX DRIVER
2500 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2501 L:      linux-media@vger.kernel.org
2502 W:      http://linuxtv.org
2503 T:      git git://linuxtv.org/media_tree.git
2504 S:      Odd fixes
2505 F:      Documentation/video4linux/bttv/
2506 F:      drivers/media/pci/bt8xx/bttv*
2507
2508 BUSLOGIC SCSI DRIVER
2509 M:      Khalid Aziz <khalid@gonehiking.org>
2510 L:      linux-scsi@vger.kernel.org
2511 S:      Maintained
2512 F:      drivers/scsi/BusLogic.*
2513 F:      drivers/scsi/FlashPoint.*
2514
2515 C-MEDIA CMI8788 DRIVER
2516 M:      Clemens Ladisch <clemens@ladisch.de>
2517 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2518 T:      git git://git.alsa-project.org/alsa-kernel.git
2519 S:      Maintained
2520 F:      sound/pci/oxygen/
2521
2522 C6X ARCHITECTURE
2523 M:      Mark Salter <msalter@redhat.com>
2524 M:      Aurelien Jacquiot <a-jacquiot@ti.com>
2525 L:      linux-c6x-dev@linux-c6x.org
2526 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
2527 S:      Maintained
2528 F:      arch/c6x/
2529
2530 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
2531 M:      David Howells <dhowells@redhat.com>
2532 L:      linux-cachefs@redhat.com
2533 S:      Supported
2534 F:      Documentation/filesystems/caching/cachefiles.txt
2535 F:      fs/cachefiles/
2536
2537 CADET FM/AM RADIO RECEIVER DRIVER
2538 M:      Hans Verkuil <hverkuil@xs4all.nl>
2539 L:      linux-media@vger.kernel.org
2540 T:      git git://linuxtv.org/media_tree.git
2541 W:      http://linuxtv.org
2542 S:      Maintained
2543 F:      drivers/media/radio/radio-cadet*
2544
2545 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
2546 M:      Jonathan Corbet <corbet@lwn.net>
2547 L:      linux-media@vger.kernel.org
2548 T:      git git://linuxtv.org/media_tree.git
2549 S:      Maintained
2550 F:      Documentation/video4linux/cafe_ccic
2551 F:      drivers/media/platform/marvell-ccic/
2552
2553 CAIF NETWORK LAYER
2554 M:      Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
2555 L:      netdev@vger.kernel.org
2556 S:      Supported
2557 F:      Documentation/networking/caif/
2558 F:      drivers/net/caif/
2559 F:      include/uapi/linux/caif/
2560 F:      include/net/caif/
2561 F:      net/caif/
2562
2563 CALGARY x86-64 IOMMU
2564 M:      Muli Ben-Yehuda <muli@il.ibm.com>
2565 M:      "Jon D. Mason" <jdmason@kudzu.us>
2566 L:      discuss@x86-64.org
2567 S:      Maintained
2568 F:      arch/x86/kernel/pci-calgary_64.c
2569 F:      arch/x86/kernel/tce_64.c
2570 F:      arch/x86/include/asm/calgary.h
2571 F:      arch/x86/include/asm/tce.h
2572
2573 CAN NETWORK LAYER
2574 M:      Oliver Hartkopp <socketcan@hartkopp.net>
2575 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2576 L:      linux-can@vger.kernel.org
2577 W:      https://github.com/linux-can
2578 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2579 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2580 S:      Maintained
2581 F:      Documentation/networking/can.txt
2582 F:      net/can/
2583 F:      include/linux/can/core.h
2584 F:      include/uapi/linux/can.h
2585 F:      include/uapi/linux/can/bcm.h
2586 F:      include/uapi/linux/can/raw.h
2587 F:      include/uapi/linux/can/gw.h
2588
2589 CAN NETWORK DRIVERS
2590 M:      Wolfgang Grandegger <wg@grandegger.com>
2591 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2592 L:      linux-can@vger.kernel.org
2593 W:      https://github.com/linux-can
2594 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2595 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2596 S:      Maintained
2597 F:      drivers/net/can/
2598 F:      include/linux/can/dev.h
2599 F:      include/linux/can/platform/
2600 F:      include/uapi/linux/can/error.h
2601 F:      include/uapi/linux/can/netlink.h
2602
2603 CAPABILITIES
2604 M:      Serge Hallyn <serge.hallyn@canonical.com>
2605 L:      linux-security-module@vger.kernel.org
2606 S:      Supported
2607 F:      include/linux/capability.h
2608 F:      include/uapi/linux/capability.h
2609 F:      security/commoncap.c
2610 F:      kernel/capability.c
2611
2612 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
2613 M:      Kevin Tsai <ktsai@capellamicro.com>
2614 S:      Maintained
2615 F:      drivers/iio/light/cm*
2616 F:      Documentation/devicetree/bindings/i2c/trivial-devices.txt
2617
2618 CAVIUM LIQUIDIO NETWORK DRIVER
2619 M:     Derek Chickles <derek.chickles@caviumnetworks.com>
2620 M:     Satanand Burla <satananda.burla@caviumnetworks.com>
2621 M:     Felix Manlunas <felix.manlunas@caviumnetworks.com>
2622 M:     Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com>
2623 L:     netdev@vger.kernel.org
2624 W:     http://www.cavium.com
2625 S:     Supported
2626 F:     drivers/net/ethernet/cavium/liquidio/
2627
2628 CC2520 IEEE-802.15.4 RADIO DRIVER
2629 M:      Varka Bhadram <varkabhadram@gmail.com>
2630 L:      linux-wpan@vger.kernel.org
2631 S:      Maintained
2632 F:      drivers/net/ieee802154/cc2520.c
2633 F:      include/linux/spi/cc2520.h
2634 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
2635
2636 CELL BROADBAND ENGINE ARCHITECTURE
2637 M:      Arnd Bergmann <arnd@arndb.de>
2638 L:      linuxppc-dev@lists.ozlabs.org
2639 W:      http://www.ibm.com/developerworks/power/cell/
2640 S:      Supported
2641 F:      arch/powerpc/include/asm/cell*.h
2642 F:      arch/powerpc/include/asm/spu*.h
2643 F:      arch/powerpc/include/uapi/asm/spu*.h
2644 F:      arch/powerpc/oprofile/*cell*
2645 F:      arch/powerpc/platforms/cell/
2646
2647 CEPH COMMON CODE (LIBCEPH)
2648 M:      Ilya Dryomov <idryomov@gmail.com>
2649 M:      "Yan, Zheng" <zyan@redhat.com>
2650 M:      Sage Weil <sage@redhat.com>
2651 L:      ceph-devel@vger.kernel.org
2652 W:      http://ceph.com/
2653 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2654 T:      git git://github.com/ceph/ceph-client.git
2655 S:      Supported
2656 F:      net/ceph/
2657 F:      include/linux/ceph/
2658 F:      include/linux/crush/
2659
2660 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
2661 M:      "Yan, Zheng" <zyan@redhat.com>
2662 M:      Sage Weil <sage@redhat.com>
2663 M:      Ilya Dryomov <idryomov@gmail.com>
2664 L:      ceph-devel@vger.kernel.org
2665 W:      http://ceph.com/
2666 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2667 T:      git git://github.com/ceph/ceph-client.git
2668 S:      Supported
2669 F:      Documentation/filesystems/ceph.txt
2670 F:      fs/ceph/
2671
2672 CERTIFICATE HANDLING:
2673 M:      David Howells <dhowells@redhat.com>
2674 M:      David Woodhouse <dwmw2@infradead.org>
2675 L:      keyrings@linux-nfs.org
2676 S:      Maintained
2677 F:      Documentation/module-signing.txt
2678 F:      certs/
2679 F:      scripts/extract-cert.c
2680
2681 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
2682 L:      linux-usb@vger.kernel.org
2683 S:      Orphan
2684 F:      Documentation/usb/WUSB-Design-overview.txt
2685 F:      Documentation/usb/wusb-cbaf
2686 F:      drivers/usb/host/hwa-hc.c
2687 F:      drivers/usb/host/whci/
2688 F:      drivers/usb/wusbcore/
2689 F:      include/linux/usb/wusb*
2690
2691 CFAG12864B LCD DRIVER
2692 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2693 W:      http://miguelojeda.es/auxdisplay.htm
2694 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2695 S:      Maintained
2696 F:      drivers/auxdisplay/cfag12864b.c
2697 F:      include/linux/cfag12864b.h
2698
2699 CFAG12864BFB LCD FRAMEBUFFER DRIVER
2700 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2701 W:      http://miguelojeda.es/auxdisplay.htm
2702 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2703 S:      Maintained
2704 F:      drivers/auxdisplay/cfag12864bfb.c
2705 F:      include/linux/cfag12864b.h
2706
2707 CFG80211 and NL80211
2708 M:      Johannes Berg <johannes@sipsolutions.net>
2709 L:      linux-wireless@vger.kernel.org
2710 W:      http://wireless.kernel.org/
2711 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2712 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
2713 S:      Maintained
2714 F:      include/uapi/linux/nl80211.h
2715 F:      include/net/cfg80211.h
2716 F:      net/wireless/*
2717 X:      net/wireless/wext*
2718
2719 CHAR and MISC DRIVERS
2720 M:      Arnd Bergmann <arnd@arndb.de>
2721 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2722 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
2723 S:      Supported
2724 F:      drivers/char/*
2725 F:      drivers/misc/*
2726 F:      include/linux/miscdevice.h
2727
2728 CHECKPATCH
2729 M:      Andy Whitcroft <apw@canonical.com>
2730 M:      Joe Perches <joe@perches.com>
2731 S:      Maintained
2732 F:      scripts/checkpatch.pl
2733
2734 CHINESE DOCUMENTATION
2735 M:      Harry Wei <harryxiyou@gmail.com>
2736 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
2737 L:      linux-kernel@zh-kernel.org (moderated for non-subscribers)
2738 S:      Maintained
2739 F:      Documentation/zh_CN/
2740
2741 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
2742 M:      Peter Chen <Peter.Chen@freescale.com>
2743 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
2744 L:      linux-usb@vger.kernel.org
2745 S:      Maintained
2746 F:      drivers/usb/chipidea/
2747
2748 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
2749 M:      Hans de Goede <hdegoede@redhat.com>
2750 L:      linux-input@vger.kernel.org
2751 S:      Maintained
2752 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
2753 F:      drivers/input/touchscreen/chipone_icn8318.c
2754
2755 CHROME HARDWARE PLATFORM SUPPORT
2756 M:      Olof Johansson <olof@lixom.net>
2757 S:      Maintained
2758 F:      drivers/platform/chrome/
2759
2760 CISCO VIC ETHERNET NIC DRIVER
2761 M:      Christian Benvenuti <benve@cisco.com>
2762 M:      Sujith Sankar <ssujith@cisco.com>
2763 M:      Govindarajulu Varadarajan <_govind@gmx.com>
2764 M:      Neel Patel <neepatel@cisco.com>
2765 S:      Supported
2766 F:      drivers/net/ethernet/cisco/enic/
2767
2768 CISCO VIC LOW LATENCY NIC DRIVER
2769 M:      Christian Benvenuti <benve@cisco.com>
2770 M:      Dave Goodell <dgoodell@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:      drivers/gpio/gpio-da90??.c
3408 F:      drivers/hwmon/da90??-hwmon.c
3409 F:      drivers/iio/adc/da91??-*.c
3410 F:      drivers/input/misc/da90??_onkey.c
3411 F:      drivers/input/touchscreen/da9052_tsi.c
3412 F:      drivers/leds/leds-da90??.c
3413 F:      drivers/mfd/da903x.c
3414 F:      drivers/mfd/da90??-*.c
3415 F:      drivers/mfd/da91??-*.c
3416 F:      drivers/power/da9052-battery.c
3417 F:      drivers/power/da91??-*.c
3418 F:      drivers/regulator/da903x.c
3419 F:      drivers/regulator/da9???-regulator.[ch]
3420 F:      drivers/rtc/rtc-da90??.c
3421 F:      drivers/video/backlight/da90??_bl.c
3422 F:      drivers/watchdog/da90??_wdt.c
3423 F:      include/linux/mfd/da903x.h
3424 F:      include/linux/mfd/da9052/
3425 F:      include/linux/mfd/da9055/
3426 F:      include/linux/mfd/da9063/
3427 F:      include/linux/mfd/da9150/
3428 F:      include/sound/da[79]*.h
3429 F:      sound/soc/codecs/da[79]*.[ch]
3430
3431 DIGI NEO AND CLASSIC PCI PRODUCTS
3432 M:      Lidza Louina <lidza.louina@gmail.com>
3433 M:      Mark Hounschell <markh@compro.net>
3434 L:      driverdev-devel@linuxdriverproject.org
3435 S:      Maintained
3436 F:      drivers/staging/dgnc/
3437
3438 DIGI EPCA PCI PRODUCTS
3439 M:      Lidza Louina <lidza.louina@gmail.com>
3440 M:      Daeseok Youn <daeseok.youn@gmail.com>
3441 L:      driverdev-devel@linuxdriverproject.org
3442 S:      Maintained
3443 F:      drivers/staging/dgap/
3444
3445 DIOLAN U2C-12 I2C DRIVER
3446 M:      Guenter Roeck <linux@roeck-us.net>
3447 L:      linux-i2c@vger.kernel.org
3448 S:      Maintained
3449 F:      drivers/i2c/busses/i2c-diolan-u2c.c
3450
3451 DIRECT ACCESS (DAX)
3452 M:      Matthew Wilcox <willy@linux.intel.com>
3453 L:      linux-fsdevel@vger.kernel.org
3454 S:      Supported
3455 F:      fs/dax.c
3456
3457 DIRECTORY NOTIFICATION (DNOTIFY)
3458 M:      Eric Paris <eparis@parisplace.org>
3459 S:      Maintained
3460 F:      Documentation/filesystems/dnotify.txt
3461 F:      fs/notify/dnotify/
3462 F:      include/linux/dnotify.h
3463
3464 DISK GEOMETRY AND PARTITION HANDLING
3465 M:      Andries Brouwer <aeb@cwi.nl>
3466 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
3467 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
3468 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
3469 S:      Maintained
3470
3471 DISKQUOTA
3472 M:      Jan Kara <jack@suse.com>
3473 S:      Maintained
3474 F:      Documentation/filesystems/quota.txt
3475 F:      fs/quota/
3476 F:      include/linux/quota*.h
3477 F:      include/uapi/linux/quota*.h
3478
3479 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
3480 M:      Bernie Thompson <bernie@plugable.com>
3481 L:      linux-fbdev@vger.kernel.org
3482 S:      Maintained
3483 W:      http://plugable.com/category/projects/udlfb/
3484 F:      drivers/video/fbdev/udlfb.c
3485 F:      include/video/udlfb.h
3486 F:      Documentation/fb/udlfb.txt
3487
3488 DISTRIBUTED LOCK MANAGER (DLM)
3489 M:      Christine Caulfield <ccaulfie@redhat.com>
3490 M:      David Teigland <teigland@redhat.com>
3491 L:      cluster-devel@redhat.com
3492 W:      http://sources.redhat.com/cluster/
3493 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
3494 S:      Supported
3495 F:      fs/dlm/
3496
3497 DMA BUFFER SHARING FRAMEWORK
3498 M:      Sumit Semwal <sumit.semwal@linaro.org>
3499 S:      Maintained
3500 L:      linux-media@vger.kernel.org
3501 L:      dri-devel@lists.freedesktop.org
3502 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
3503 F:      drivers/dma-buf/
3504 F:      include/linux/dma-buf*
3505 F:      include/linux/reservation.h
3506 F:      include/linux/*fence.h
3507 F:      Documentation/dma-buf-sharing.txt
3508 T:      git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
3509
3510 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
3511 M:      Vinod Koul <vinod.koul@intel.com>
3512 L:      dmaengine@vger.kernel.org
3513 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
3514 S:      Maintained
3515 F:      drivers/dma/
3516 F:      include/linux/dmaengine.h
3517 F:      Documentation/dmaengine/
3518 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
3519
3520 DME1737 HARDWARE MONITOR DRIVER
3521 M:      Juerg Haefliger <juergh@gmail.com>
3522 L:      lm-sensors@lm-sensors.org
3523 S:      Maintained
3524 F:      Documentation/hwmon/dme1737
3525 F:      drivers/hwmon/dme1737.c
3526
3527 DMI/SMBIOS SUPPORT
3528 M:      Jean Delvare <jdelvare@suse.com>
3529 S:      Maintained
3530 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
3531 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
3532 F:      drivers/firmware/dmi-id.c
3533 F:      drivers/firmware/dmi_scan.c
3534 F:      include/linux/dmi.h
3535
3536 DOCUMENTATION
3537 M:      Jonathan Corbet <corbet@lwn.net>
3538 L:      linux-doc@vger.kernel.org
3539 S:      Maintained
3540 F:      Documentation/
3541 X:      Documentation/ABI/
3542 X:      Documentation/devicetree/
3543 X:      Documentation/acpi
3544 X:      Documentation/power
3545 X:      Documentation/spi
3546 X:      Documentation/DocBook/media
3547 T:      git git://git.lwn.net/linux-2.6.git docs-next
3548
3549 DOUBLETALK DRIVER
3550 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
3551 L:      blinux-list@redhat.com
3552 S:      Maintained
3553 F:      drivers/char/dtlk.c
3554 F:      include/linux/dtlk.h
3555
3556 DPT_I2O SCSI RAID DRIVER
3557 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
3558 L:      linux-scsi@vger.kernel.org
3559 W:      http://www.adaptec.com/
3560 S:      Maintained
3561 F:      drivers/scsi/dpt*
3562 F:      drivers/scsi/dpt/
3563
3564 DRBD DRIVER
3565 P:      Philipp Reisner
3566 P:      Lars Ellenberg
3567 M:      drbd-dev@lists.linbit.com
3568 L:      drbd-user@lists.linbit.com
3569 W:      http://www.drbd.org
3570 T:      git git://git.drbd.org/linux-2.6-drbd.git drbd
3571 T:      git git://git.drbd.org/drbd-8.3.git
3572 S:      Supported
3573 F:      drivers/block/drbd/
3574 F:      lib/lru_cache.c
3575 F:      Documentation/blockdev/drbd/
3576
3577 DRIVER CORE, KOBJECTS, DEBUGFS, KERNFS AND SYSFS
3578 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3579 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
3580 S:      Supported
3581 F:      Documentation/kobject.txt
3582 F:      drivers/base/
3583 F:      fs/debugfs/
3584 F:      fs/kernfs/
3585 F:      fs/sysfs/
3586 F:      include/linux/debugfs.h
3587 F:      include/linux/kobj*
3588 F:      lib/kobj*
3589
3590 DRM DRIVERS
3591 M:      David Airlie <airlied@linux.ie>
3592 L:      dri-devel@lists.freedesktop.org
3593 T:      git git://people.freedesktop.org/~airlied/linux
3594 S:      Maintained
3595 F:      drivers/gpu/drm/
3596 F:      drivers/gpu/vga/
3597 F:      include/drm/
3598 F:      include/uapi/drm/
3599
3600 RADEON DRM DRIVERS
3601 M:      Alex Deucher <alexander.deucher@amd.com>
3602 M:      Christian König <christian.koenig@amd.com>
3603 L:      dri-devel@lists.freedesktop.org
3604 T:      git git://people.freedesktop.org/~agd5f/linux
3605 S:      Supported
3606 F:      drivers/gpu/drm/radeon/
3607 F:      include/uapi/drm/radeon*
3608
3609 DRM PANEL DRIVERS
3610 M:      Thierry Reding <thierry.reding@gmail.com>
3611 L:      dri-devel@lists.freedesktop.org
3612 T:      git git://anongit.freedesktop.org/tegra/linux.git
3613 S:      Maintained
3614 F:      drivers/gpu/drm/drm_panel.c
3615 F:      drivers/gpu/drm/panel/
3616 F:      include/drm/drm_panel.h
3617 F:      Documentation/devicetree/bindings/panel/
3618
3619 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
3620 M:      Daniel Vetter <daniel.vetter@intel.com>
3621 M:      Jani Nikula <jani.nikula@linux.intel.com>
3622 L:      intel-gfx@lists.freedesktop.org
3623 L:      dri-devel@lists.freedesktop.org
3624 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
3625 T:      git git://anongit.freedesktop.org/drm-intel
3626 S:      Supported
3627 F:      drivers/gpu/drm/i915/
3628 F:      include/drm/i915*
3629 F:      include/uapi/drm/i915*
3630
3631 DRM DRIVERS FOR ATMEL HLCDC
3632 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
3633 L:      dri-devel@lists.freedesktop.org
3634 S:      Supported
3635 F:      drivers/gpu/drm/atmel-hlcdc/
3636 F:      Documentation/devicetree/bindings/drm/atmel/
3637
3638 DRM DRIVERS FOR EXYNOS
3639 M:      Inki Dae <inki.dae@samsung.com>
3640 M:      Joonyoung Shim <jy0922.shim@samsung.com>
3641 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
3642 M:      Kyungmin Park <kyungmin.park@samsung.com>
3643 L:      dri-devel@lists.freedesktop.org
3644 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
3645 S:      Supported
3646 F:      drivers/gpu/drm/exynos/
3647 F:      include/drm/exynos*
3648 F:      include/uapi/drm/exynos*
3649
3650 DRM DRIVERS FOR FREESCALE DCU
3651 M:      Jianwei Wang <jianwei.wang.chn@gmail.com>
3652 M:      Alison Wang <alison.wang@freescale.com>
3653 L:      dri-devel@lists.freedesktop.org
3654 S:      Supported
3655 F:      drivers/gpu/drm/fsl-dcu/
3656 F:      Documentation/devicetree/bindings/video/fsl,dcu.txt
3657 F:      Documentation/devicetree/bindings/panel/nec,nl4827hc19_05b.txt
3658
3659 DRM DRIVERS FOR FREESCALE IMX
3660 M:      Philipp Zabel <p.zabel@pengutronix.de>
3661 L:      dri-devel@lists.freedesktop.org
3662 S:      Maintained
3663 F:      drivers/gpu/drm/imx/
3664 F:      Documentation/devicetree/bindings/drm/imx/
3665
3666 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
3667 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
3668 L:      dri-devel@lists.freedesktop.org
3669 T:      git git://github.com/patjak/drm-gma500
3670 S:      Maintained
3671 F:      drivers/gpu/drm/gma500
3672 F:      include/drm/gma500*
3673
3674 DRM DRIVERS FOR NVIDIA TEGRA
3675 M:      Thierry Reding <thierry.reding@gmail.com>
3676 M:      Terje Bergström <tbergstrom@nvidia.com>
3677 L:      dri-devel@lists.freedesktop.org
3678 L:      linux-tegra@vger.kernel.org
3679 T:      git git://anongit.freedesktop.org/tegra/linux.git
3680 S:      Supported
3681 F:      drivers/gpu/drm/tegra/
3682 F:      drivers/gpu/host1x/
3683 F:      include/linux/host1x.h
3684 F:      include/uapi/drm/tegra_drm.h
3685 F:      Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt
3686
3687 DRM DRIVERS FOR RENESAS
3688 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
3689 L:      dri-devel@lists.freedesktop.org
3690 L:      linux-sh@vger.kernel.org
3691 T:      git git://people.freedesktop.org/~airlied/linux
3692 S:      Supported
3693 F:      drivers/gpu/drm/rcar-du/
3694 F:      drivers/gpu/drm/shmobile/
3695 F:      include/linux/platform_data/shmob_drm.h
3696
3697 DRM DRIVERS FOR ROCKCHIP
3698 M:      Mark Yao <mark.yao@rock-chips.com>
3699 L:      dri-devel@lists.freedesktop.org
3700 S:      Maintained
3701 F:      drivers/gpu/drm/rockchip/
3702 F:      Documentation/devicetree/bindings/video/rockchip*
3703
3704 DRM DRIVERS FOR STI
3705 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
3706 M:      Vincent Abriou <vincent.abriou@st.com>
3707 L:      dri-devel@lists.freedesktop.org
3708 T:      git http://git.linaro.org/people/benjamin.gaignard/kernel.git
3709 S:      Maintained
3710 F:      drivers/gpu/drm/sti
3711 F:      Documentation/devicetree/bindings/gpu/st,stih4xx.txt
3712
3713 DSBR100 USB FM RADIO DRIVER
3714 M:      Alexey Klimov <klimov.linux@gmail.com>
3715 L:      linux-media@vger.kernel.org
3716 T:      git git://linuxtv.org/media_tree.git
3717 S:      Maintained
3718 F:      drivers/media/radio/dsbr100.c
3719
3720 DSCC4 DRIVER
3721 M:      Francois Romieu <romieu@fr.zoreil.com>
3722 L:      netdev@vger.kernel.org
3723 S:      Maintained
3724 F:      drivers/net/wan/dscc4.c
3725
3726 DT3155 MEDIA DRIVER
3727 M:      Hans Verkuil <hverkuil@xs4all.nl>
3728 L:      linux-media@vger.kernel.org
3729 T:      git git://linuxtv.org/media_tree.git
3730 W:      http://linuxtv.org
3731 S:      Odd Fixes
3732 F:      drivers/media/pci/dt3155/
3733
3734 DVB_USB_AF9015 MEDIA DRIVER
3735 M:      Antti Palosaari <crope@iki.fi>
3736 L:      linux-media@vger.kernel.org
3737 W:      http://linuxtv.org/
3738 W:      http://palosaari.fi/linux/
3739 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3740 T:      git git://linuxtv.org/anttip/media_tree.git
3741 S:      Maintained
3742 F:      drivers/media/usb/dvb-usb-v2/af9015*
3743
3744 DVB_USB_AF9035 MEDIA DRIVER
3745 M:      Antti Palosaari <crope@iki.fi>
3746 L:      linux-media@vger.kernel.org
3747 W:      http://linuxtv.org/
3748 W:      http://palosaari.fi/linux/
3749 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3750 T:      git git://linuxtv.org/anttip/media_tree.git
3751 S:      Maintained
3752 F:      drivers/media/usb/dvb-usb-v2/af9035*
3753
3754 DVB_USB_ANYSEE MEDIA DRIVER
3755 M:      Antti Palosaari <crope@iki.fi>
3756 L:      linux-media@vger.kernel.org
3757 W:      http://linuxtv.org/
3758 W:      http://palosaari.fi/linux/
3759 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3760 T:      git git://linuxtv.org/anttip/media_tree.git
3761 S:      Maintained
3762 F:      drivers/media/usb/dvb-usb-v2/anysee*
3763
3764 DVB_USB_AU6610 MEDIA DRIVER
3765 M:      Antti Palosaari <crope@iki.fi>
3766 L:      linux-media@vger.kernel.org
3767 W:      http://linuxtv.org/
3768 W:      http://palosaari.fi/linux/
3769 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3770 T:      git git://linuxtv.org/anttip/media_tree.git
3771 S:      Maintained
3772 F:      drivers/media/usb/dvb-usb-v2/au6610*
3773
3774 DVB_USB_CE6230 MEDIA DRIVER
3775 M:      Antti Palosaari <crope@iki.fi>
3776 L:      linux-media@vger.kernel.org
3777 W:      http://linuxtv.org/
3778 W:      http://palosaari.fi/linux/
3779 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3780 T:      git git://linuxtv.org/anttip/media_tree.git
3781 S:      Maintained
3782 F:      drivers/media/usb/dvb-usb-v2/ce6230*
3783
3784 DVB_USB_CXUSB MEDIA DRIVER
3785 M:      Michael Krufky <mkrufky@linuxtv.org>
3786 L:      linux-media@vger.kernel.org
3787 W:      http://linuxtv.org/
3788 W:      http://github.com/mkrufky
3789 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3790 T:      git git://linuxtv.org/media_tree.git
3791 S:      Maintained
3792 F:      drivers/media/usb/dvb-usb/cxusb*
3793
3794 DVB_USB_EC168 MEDIA DRIVER
3795 M:      Antti Palosaari <crope@iki.fi>
3796 L:      linux-media@vger.kernel.org
3797 W:      http://linuxtv.org/
3798 W:      http://palosaari.fi/linux/
3799 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3800 T:      git git://linuxtv.org/anttip/media_tree.git
3801 S:      Maintained
3802 F:      drivers/media/usb/dvb-usb-v2/ec168*
3803
3804 DVB_USB_GL861 MEDIA DRIVER
3805 M:      Antti Palosaari <crope@iki.fi>
3806 L:      linux-media@vger.kernel.org
3807 W:      http://linuxtv.org/
3808 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3809 T:      git git://linuxtv.org/anttip/media_tree.git
3810 S:      Maintained
3811 F:      drivers/media/usb/dvb-usb-v2/gl861*
3812
3813 DVB_USB_MXL111SF MEDIA DRIVER
3814 M:      Michael Krufky <mkrufky@linuxtv.org>
3815 L:      linux-media@vger.kernel.org
3816 W:      http://linuxtv.org/
3817 W:      http://github.com/mkrufky
3818 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3819 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
3820 S:      Maintained
3821 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
3822
3823 DVB_USB_RTL28XXU MEDIA DRIVER
3824 M:      Antti Palosaari <crope@iki.fi>
3825 L:      linux-media@vger.kernel.org
3826 W:      http://linuxtv.org/
3827 W:      http://palosaari.fi/linux/
3828 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3829 T:      git git://linuxtv.org/anttip/media_tree.git
3830 S:      Maintained
3831 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
3832
3833 DVB_USB_V2 MEDIA DRIVER
3834 M:      Antti Palosaari <crope@iki.fi>
3835 L:      linux-media@vger.kernel.org
3836 W:      http://linuxtv.org/
3837 W:      http://palosaari.fi/linux/
3838 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3839 T:      git git://linuxtv.org/anttip/media_tree.git
3840 S:      Maintained
3841 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
3842 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
3843
3844 DYNAMIC DEBUG
3845 M:      Jason Baron <jbaron@akamai.com>
3846 S:      Maintained
3847 F:      lib/dynamic_debug.c
3848 F:      include/linux/dynamic_debug.h
3849
3850 DZ DECSTATION DZ11 SERIAL DRIVER
3851 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3852 S:      Maintained
3853 F:      drivers/tty/serial/dz.*
3854
3855 E3X0 POWER BUTTON DRIVER
3856 M:      Moritz Fischer <moritz.fischer@ettus.com>
3857 L:      usrp-users@lists.ettus.com
3858 W:      http://www.ettus.com
3859 S:      Supported
3860 F:      drivers/input/misc/e3x0-button.c
3861 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
3862
3863 E4000 MEDIA DRIVER
3864 M:      Antti Palosaari <crope@iki.fi>
3865 L:      linux-media@vger.kernel.org
3866 W:      http://linuxtv.org/
3867 W:      http://palosaari.fi/linux/
3868 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3869 T:      git git://linuxtv.org/anttip/media_tree.git
3870 S:      Maintained
3871 F:      drivers/media/tuners/e4000*
3872
3873 EATA ISA/EISA/PCI SCSI DRIVER
3874 M:      Dario Ballabio <ballabio_dario@emc.com>
3875 L:      linux-scsi@vger.kernel.org
3876 S:      Maintained
3877 F:      drivers/scsi/eata.c
3878
3879 EC100 MEDIA DRIVER
3880 M:      Antti Palosaari <crope@iki.fi>
3881 L:      linux-media@vger.kernel.org
3882 W:      http://linuxtv.org/
3883 W:      http://palosaari.fi/linux/
3884 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3885 T:      git git://linuxtv.org/anttip/media_tree.git
3886 S:      Maintained
3887 F:      drivers/media/dvb-frontends/ec100*
3888
3889 ECRYPT FILE SYSTEM
3890 M:      Tyler Hicks <tyhicks@canonical.com>
3891 L:      ecryptfs@vger.kernel.org
3892 W:      http://ecryptfs.org
3893 W:      https://launchpad.net/ecryptfs
3894 S:      Supported
3895 F:      Documentation/filesystems/ecryptfs.txt
3896 F:      fs/ecryptfs/
3897
3898 EDAC-CORE
3899 M:      Doug Thompson <dougthompson@xmission.com>
3900 M:      Borislav Petkov <bp@alien8.de>
3901 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3902 L:      linux-edac@vger.kernel.org
3903 W:      bluesmoke.sourceforge.net
3904 T:      git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git#for-next
3905 T:      git://git.kernel.org/pub/linux/kernel/git/mchehab/linux-edac.git#linux_next
3906 S:      Supported
3907 F:      Documentation/edac.txt
3908 F:      drivers/edac/
3909 F:      include/linux/edac.h
3910
3911 EDAC-AMD64
3912 M:      Doug Thompson <dougthompson@xmission.com>
3913 M:      Borislav Petkov <bp@alien8.de>
3914 L:      linux-edac@vger.kernel.org
3915 W:      bluesmoke.sourceforge.net
3916 S:      Maintained
3917 F:      drivers/edac/amd64_edac*
3918
3919 EDAC-CALXEDA
3920 M:      Doug Thompson <dougthompson@xmission.com>
3921 M:      Robert Richter <rric@kernel.org>
3922 L:      linux-edac@vger.kernel.org
3923 W:      bluesmoke.sourceforge.net
3924 S:      Maintained
3925 F:      drivers/edac/highbank*
3926
3927 EDAC-CAVIUM
3928 M:      Ralf Baechle <ralf@linux-mips.org>
3929 M:      David Daney <david.daney@cavium.com>
3930 L:      linux-edac@vger.kernel.org
3931 L:      linux-mips@linux-mips.org
3932 W:      bluesmoke.sourceforge.net
3933 S:      Supported
3934 F:      drivers/edac/octeon_edac*
3935
3936 EDAC-E752X
3937 M:      Mark Gross <mark.gross@intel.com>
3938 M:      Doug Thompson <dougthompson@xmission.com>
3939 L:      linux-edac@vger.kernel.org
3940 W:      bluesmoke.sourceforge.net
3941 S:      Maintained
3942 F:      drivers/edac/e752x_edac.c
3943
3944 EDAC-E7XXX
3945 M:      Doug Thompson <dougthompson@xmission.com>
3946 L:      linux-edac@vger.kernel.org
3947 W:      bluesmoke.sourceforge.net
3948 S:      Maintained
3949 F:      drivers/edac/e7xxx_edac.c
3950
3951 EDAC-GHES
3952 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3953 L:      linux-edac@vger.kernel.org
3954 W:      bluesmoke.sourceforge.net
3955 S:      Maintained
3956 F:      drivers/edac/ghes_edac.c
3957
3958 EDAC-I82443BXGX
3959 M:      Tim Small <tim@buttersideup.com>
3960 L:      linux-edac@vger.kernel.org
3961 W:      bluesmoke.sourceforge.net
3962 S:      Maintained
3963 F:      drivers/edac/i82443bxgx_edac.c
3964
3965 EDAC-I3000
3966 M:      Jason Uhlenkott <juhlenko@akamai.com>
3967 L:      linux-edac@vger.kernel.org
3968 W:      bluesmoke.sourceforge.net
3969 S:      Maintained
3970 F:      drivers/edac/i3000_edac.c
3971
3972 EDAC-I5000
3973 M:      Doug Thompson <dougthompson@xmission.com>
3974 L:      linux-edac@vger.kernel.org
3975 W:      bluesmoke.sourceforge.net
3976 S:      Maintained
3977 F:      drivers/edac/i5000_edac.c
3978
3979 EDAC-I5400
3980 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3981 L:      linux-edac@vger.kernel.org
3982 W:      bluesmoke.sourceforge.net
3983 S:      Maintained
3984 F:      drivers/edac/i5400_edac.c
3985
3986 EDAC-I7300
3987 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3988 L:      linux-edac@vger.kernel.org
3989 W:      bluesmoke.sourceforge.net
3990 S:      Maintained
3991 F:      drivers/edac/i7300_edac.c
3992
3993 EDAC-I7CORE
3994 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3995 L:      linux-edac@vger.kernel.org
3996 W:      bluesmoke.sourceforge.net
3997 S:      Maintained
3998 F:      drivers/edac/i7core_edac.c
3999
4000 EDAC-I82975X
4001 M:      Ranganathan Desikan <ravi@jetztechnologies.com>
4002 M:      "Arvind R." <arvino55@gmail.com>
4003 L:      linux-edac@vger.kernel.org
4004 W:      bluesmoke.sourceforge.net
4005 S:      Maintained
4006 F:      drivers/edac/i82975x_edac.c
4007
4008 EDAC-IE31200
4009 M:      Jason Baron <jbaron@akamai.com>
4010 L:      linux-edac@vger.kernel.org
4011 W:      bluesmoke.sourceforge.net
4012 S:      Maintained
4013 F:      drivers/edac/ie31200_edac.c
4014
4015 EDAC-MPC85XX
4016 M:      Johannes Thumshirn <morbidrsa@gmail.com>
4017 L:      linux-edac@vger.kernel.org
4018 W:      bluesmoke.sourceforge.net
4019 S:      Maintained
4020 F:      drivers/edac/mpc85xx_edac.[ch]
4021
4022 EDAC-PASEMI
4023 M:      Egor Martovetsky <egor@pasemi.com>
4024 L:      linux-edac@vger.kernel.org
4025 W:      bluesmoke.sourceforge.net
4026 S:      Maintained
4027 F:      drivers/edac/pasemi_edac.c
4028
4029 EDAC-R82600
4030 M:      Tim Small <tim@buttersideup.com>
4031 L:      linux-edac@vger.kernel.org
4032 W:      bluesmoke.sourceforge.net
4033 S:      Maintained
4034 F:      drivers/edac/r82600_edac.c
4035
4036 EDAC-SBRIDGE
4037 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4038 L:      linux-edac@vger.kernel.org
4039 W:      bluesmoke.sourceforge.net
4040 S:      Maintained
4041 F:      drivers/edac/sb_edac.c
4042
4043 EDAC-XGENE
4044 APPLIED MICRO (APM) X-GENE SOC EDAC
4045 M:     Loc Ho <lho@apm.com>
4046 S:     Supported
4047 F:     drivers/edac/xgene_edac.c
4048 F:     Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
4049
4050 EDIROL UA-101/UA-1000 DRIVER
4051 M:      Clemens Ladisch <clemens@ladisch.de>
4052 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4053 T:      git git://git.alsa-project.org/alsa-kernel.git
4054 S:      Maintained
4055 F:      sound/usb/misc/ua101.c
4056
4057 EXTENSIBLE FIRMWARE INTERFACE (EFI)
4058 M:      Matt Fleming <matt@codeblueprint.co.uk>
4059 L:      linux-efi@vger.kernel.org
4060 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4061 S:      Maintained
4062 F:      Documentation/efi-stub.txt
4063 F:      arch/ia64/kernel/efi.c
4064 F:      arch/x86/boot/compressed/eboot.[ch]
4065 F:      arch/x86/include/asm/efi.h
4066 F:      arch/x86/platform/efi/*
4067 F:      drivers/firmware/efi/*
4068 F:      include/linux/efi*.h
4069
4070 EFI VARIABLE FILESYSTEM
4071 M:      Matthew Garrett <matthew.garrett@nebula.com>
4072 M:      Jeremy Kerr <jk@ozlabs.org>
4073 M:      Matt Fleming <matt@codeblueprint.co.uk>
4074 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4075 L:      linux-efi@vger.kernel.org
4076 S:      Maintained
4077 F:      fs/efivarfs/
4078
4079 EFIFB FRAMEBUFFER DRIVER
4080 L:      linux-fbdev@vger.kernel.org
4081 M:      Peter Jones <pjones@redhat.com>
4082 S:      Maintained
4083 F:      drivers/video/fbdev/efifb.c
4084
4085 EFS FILESYSTEM
4086 W:      http://aeschi.ch.eu.org/efs/
4087 S:      Orphan
4088 F:      fs/efs/
4089
4090 EHCA (IBM GX bus InfiniBand adapter) DRIVER
4091 M:      Hoang-Nam Nguyen <hnguyen@de.ibm.com>
4092 M:      Christoph Raisch <raisch@de.ibm.com>
4093 L:      linux-rdma@vger.kernel.org
4094 S:      Supported
4095 F:      drivers/infiniband/hw/ehca/
4096
4097 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
4098 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
4099 L:      netdev@vger.kernel.org
4100 S:      Maintained
4101 F:      drivers/net/ethernet/ibm/ehea/
4102
4103 EM28XX VIDEO4LINUX DRIVER
4104 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4105 L:      linux-media@vger.kernel.org
4106 W:      http://linuxtv.org
4107 T:      git git://linuxtv.org/media_tree.git
4108 S:      Maintained
4109 F:      drivers/media/usb/em28xx/
4110
4111 EMBEDDED LINUX
4112 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
4113 M:      Matt Mackall <mpm@selenic.com>
4114 M:      David Woodhouse <dwmw2@infradead.org>
4115 L:      linux-embedded@vger.kernel.org
4116 S:      Maintained
4117
4118 EMULEX/AVAGO LPFC FC/FCOE SCSI DRIVER
4119 M:      James Smart <james.smart@avagotech.com>
4120 M:      Dick Kennedy <dick.kennedy@avagotech.com>
4121 L:      linux-scsi@vger.kernel.org
4122 W:      http://www.avagotech.com
4123 S:      Supported
4124 F:      drivers/scsi/lpfc/
4125
4126 ENE CB710 FLASH CARD READER DRIVER
4127 M:      MichaÅ‚ MirosÅ‚aw <mirq-linux@rere.qmqm.pl>
4128 S:      Maintained
4129 F:      drivers/misc/cb710/
4130 F:      drivers/mmc/host/cb710-mmc.*
4131 F:      include/linux/cb710.h
4132
4133 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
4134 M:      Maxim Levitsky <maximlevitsky@gmail.com>
4135 S:      Maintained
4136 F:      drivers/media/rc/ene_ir.*
4137
4138 ENHANCED ERROR HANDLING (EEH)
4139 M:      Gavin Shan <shangw@linux.vnet.ibm.com>
4140 L:      linuxppc-dev@lists.ozlabs.org
4141 S:      Supported
4142 F:      Documentation/powerpc/eeh-pci-error-recovery.txt
4143 F:      arch/powerpc/kernel/eeh*.c
4144
4145 EPSON S1D13XXX FRAMEBUFFER DRIVER
4146 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
4147 S:      Maintained
4148 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
4149 F:      drivers/video/fbdev/s1d13xxxfb.c
4150 F:      include/video/s1d13xxxfb.h
4151
4152 ET131X NETWORK DRIVER
4153 M:      Mark Einon <mark.einon@gmail.com>
4154 S:      Odd Fixes
4155 F:      drivers/net/ethernet/agere/
4156
4157 ETHERNET BRIDGE
4158 M:      Stephen Hemminger <stephen@networkplumber.org>
4159 L:      bridge@lists.linux-foundation.org
4160 L:      netdev@vger.kernel.org
4161 W:      http://www.linuxfoundation.org/en/Net:Bridge
4162 S:      Maintained
4163 F:      include/linux/netfilter_bridge/
4164 F:      net/bridge/
4165
4166 ETHERNET PHY LIBRARY
4167 M:      Florian Fainelli <f.fainelli@gmail.com>
4168 L:      netdev@vger.kernel.org
4169 S:      Maintained
4170 F:      include/linux/phy.h
4171 F:      include/linux/phy_fixed.h
4172 F:      drivers/net/phy/
4173 F:      Documentation/networking/phy.txt
4174 F:      drivers/of/of_mdio.c
4175 F:      drivers/of/of_net.c
4176
4177 EXT2 FILE SYSTEM
4178 M:      Jan Kara <jack@suse.com>
4179 L:      linux-ext4@vger.kernel.org
4180 S:      Maintained
4181 F:      Documentation/filesystems/ext2.txt
4182 F:      fs/ext2/
4183 F:      include/linux/ext2*
4184
4185 EXT4 FILE SYSTEM
4186 M:      "Theodore Ts'o" <tytso@mit.edu>
4187 M:      Andreas Dilger <adilger.kernel@dilger.ca>
4188 L:      linux-ext4@vger.kernel.org
4189 W:      http://ext4.wiki.kernel.org
4190 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
4191 S:      Maintained
4192 F:      Documentation/filesystems/ext4.txt
4193 F:      fs/ext4/
4194
4195 Extended Verification Module (EVM)
4196 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
4197 L:      linux-ima-devel@lists.sourceforge.net
4198 L:      linux-security-module@vger.kernel.org
4199 S:      Supported
4200 F:      security/integrity/evm/
4201
4202 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
4203 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
4204 M:      Chanwoo Choi <cw00.choi@samsung.com>
4205 L:      linux-kernel@vger.kernel.org
4206 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
4207 S:      Maintained
4208 F:      drivers/extcon/
4209 F:      Documentation/extcon/
4210
4211 EXYNOS DP DRIVER
4212 M:      Jingoo Han <jingoohan1@gmail.com>
4213 L:      dri-devel@lists.freedesktop.org
4214 S:      Maintained
4215 F:      drivers/gpu/drm/exynos/exynos_dp*
4216
4217 EXYNOS MIPI DISPLAY DRIVERS
4218 M:      Inki Dae <inki.dae@samsung.com>
4219 M:      Donghwa Lee <dh09.lee@samsung.com>
4220 M:      Kyungmin Park <kyungmin.park@samsung.com>
4221 L:      linux-fbdev@vger.kernel.org
4222 S:      Maintained
4223 F:      drivers/video/fbdev/exynos/exynos_mipi*
4224 F:      include/video/exynos_mipi*
4225
4226 F71805F HARDWARE MONITORING DRIVER
4227 M:      Jean Delvare <jdelvare@suse.com>
4228 L:      lm-sensors@lm-sensors.org
4229 S:      Maintained
4230 F:      Documentation/hwmon/f71805f
4231 F:      drivers/hwmon/f71805f.c
4232
4233 FC0011 TUNER DRIVER
4234 M:      Michael Buesch <m@bues.ch>
4235 L:      linux-media@vger.kernel.org
4236 S:      Maintained
4237 F:      drivers/media/tuners/fc0011.h
4238 F:      drivers/media/tuners/fc0011.c
4239
4240 FC2580 MEDIA DRIVER
4241 M:      Antti Palosaari <crope@iki.fi>
4242 L:      linux-media@vger.kernel.org
4243 W:      http://linuxtv.org/
4244 W:      http://palosaari.fi/linux/
4245 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4246 T:      git git://linuxtv.org/anttip/media_tree.git
4247 S:      Maintained
4248 F:      drivers/media/tuners/fc2580*
4249
4250 FANOTIFY
4251 M:      Eric Paris <eparis@redhat.com>
4252 S:      Maintained
4253 F:      fs/notify/fanotify/
4254 F:      include/linux/fanotify.h
4255 F:      include/uapi/linux/fanotify.h
4256
4257 FARSYNC SYNCHRONOUS DRIVER
4258 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
4259 W:      http://www.farsite.co.uk/
4260 S:      Supported
4261 F:      drivers/net/wan/farsync.*
4262
4263 FAULT INJECTION SUPPORT
4264 M:      Akinobu Mita <akinobu.mita@gmail.com>
4265 S:      Supported
4266 F:      Documentation/fault-injection/
4267 F:      lib/fault-inject.c
4268
4269 FBTFT Framebuffer drivers
4270 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
4271 M:      Noralf Trønnes <noralf@tronnes.org>
4272 S:      Maintained
4273 F:      drivers/staging/fbtft/
4274
4275 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
4276 M:      Vasu Dev <vasu.dev@intel.com>
4277 L:      fcoe-devel@open-fcoe.org
4278 W:      www.Open-FCoE.org
4279 S:      Supported
4280 F:      drivers/scsi/libfc/
4281 F:      drivers/scsi/fcoe/
4282 F:      include/scsi/fc/
4283 F:      include/scsi/libfc.h
4284 F:      include/scsi/libfcoe.h
4285 F:      include/uapi/scsi/fc/
4286
4287 FILE LOCKING (flock() and fcntl()/lockf())
4288 M:      Jeff Layton <jlayton@poochiereds.net>
4289 M:      "J. Bruce Fields" <bfields@fieldses.org>
4290 L:      linux-fsdevel@vger.kernel.org
4291 S:      Maintained
4292 F:      include/linux/fcntl.h
4293 F:      include/linux/fs.h
4294 F:      include/uapi/linux/fcntl.h
4295 F:      include/uapi/linux/fs.h
4296 F:      fs/fcntl.c
4297 F:      fs/locks.c
4298
4299 FILESYSTEMS (VFS and infrastructure)
4300 M:      Alexander Viro <viro@zeniv.linux.org.uk>
4301 L:      linux-fsdevel@vger.kernel.org
4302 S:      Maintained
4303 F:      fs/*
4304
4305 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
4306 M:      Riku Voipio <riku.voipio@iki.fi>
4307 L:      lm-sensors@lm-sensors.org
4308 S:      Maintained
4309 F:      drivers/hwmon/f75375s.c
4310 F:      include/linux/f75375s.h
4311
4312 FIREWIRE AUDIO DRIVERS
4313 M:      Clemens Ladisch <clemens@ladisch.de>
4314 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4315 T:      git git://git.alsa-project.org/alsa-kernel.git
4316 S:      Maintained
4317 F:      sound/firewire/
4318
4319 FIREWIRE MEDIA DRIVERS (firedtv)
4320 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4321 L:      linux-media@vger.kernel.org
4322 L:      linux1394-devel@lists.sourceforge.net
4323 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
4324 S:      Maintained
4325 F:      drivers/media/firewire/
4326
4327 FIREWIRE SBP-2 TARGET
4328 M:      Chris Boot <bootc@bootc.net>
4329 L:      linux-scsi@vger.kernel.org
4330 L:      target-devel@vger.kernel.org
4331 L:      linux1394-devel@lists.sourceforge.net
4332 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
4333 S:      Maintained
4334 F:      drivers/target/sbp/
4335
4336 FIREWIRE SUBSYSTEM
4337 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4338 L:      linux1394-devel@lists.sourceforge.net
4339 W:      http://ieee1394.wiki.kernel.org/
4340 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
4341 S:      Maintained
4342 F:      drivers/firewire/
4343 F:      include/linux/firewire.h
4344 F:      include/uapi/linux/firewire*.h
4345 F:      tools/firewire/
4346
4347 FIRMWARE LOADER (request_firmware)
4348 M:      Ming Lei <ming.lei@canonical.com>
4349 L:      linux-kernel@vger.kernel.org
4350 S:      Maintained
4351 F:      Documentation/firmware_class/
4352 F:      drivers/base/firmware*.c
4353 F:      include/linux/firmware.h
4354
4355 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
4356 M:      Joshua Morris <josh.h.morris@us.ibm.com>
4357 M:      Philip Kelleher <pjk1939@linux.vnet.ibm.com>
4358 S:      Maintained
4359 F:      drivers/block/rsxx/
4360
4361 FLOPPY DRIVER
4362 M:      Jiri Kosina <jikos@kernel.org>
4363 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
4364 S:      Odd fixes
4365 F:      drivers/block/floppy.c
4366
4367 FMC SUBSYSTEM
4368 M:      Alessandro Rubini <rubini@gnudd.com>
4369 W:      http://www.ohwr.org/projects/fmc-bus
4370 S:      Supported
4371 F:      drivers/fmc/
4372 F:      include/linux/fmc*.h
4373 F:      include/linux/ipmi-fru.h
4374 K:      fmc_d.*register
4375
4376 FPU EMULATOR
4377 M:      Bill Metzenthen <billm@melbpc.org.au>
4378 W:      http://floatingpoint.sourceforge.net/emulator/index.html
4379 S:      Maintained
4380 F:      arch/x86/math-emu/
4381
4382 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
4383 L:      netdev@vger.kernel.org
4384 S:      Orphan
4385 F:      drivers/net/wan/dlci.c
4386 F:      drivers/net/wan/sdla.c
4387
4388 FRAMEBUFFER LAYER
4389 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
4390 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
4391 L:      linux-fbdev@vger.kernel.org
4392 W:      http://linux-fbdev.sourceforge.net/
4393 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
4394 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git
4395 S:      Maintained
4396 F:      Documentation/fb/
4397 F:      Documentation/devicetree/bindings/fb/
4398 F:      drivers/video/
4399 F:      include/video/
4400 F:      include/linux/fb.h
4401 F:      include/uapi/video/
4402 F:      include/uapi/linux/fb.h
4403
4404 FREESCALE DIU FRAMEBUFFER DRIVER
4405 M:      Timur Tabi <timur@tabi.org>
4406 L:      linux-fbdev@vger.kernel.org
4407 S:      Maintained
4408 F:      drivers/video/fbdev/fsl-diu-fb.*
4409
4410 FREESCALE DMA DRIVER
4411 M:      Li Yang <leoli@freescale.com>
4412 M:      Zhang Wei <zw@zh-kernel.org>
4413 L:      linuxppc-dev@lists.ozlabs.org
4414 S:      Maintained
4415 F:      drivers/dma/fsldma.*
4416
4417 FREESCALE I2C CPM DRIVER
4418 M:      Jochen Friedrich <jochen@scram.de>
4419 L:      linuxppc-dev@lists.ozlabs.org
4420 L:      linux-i2c@vger.kernel.org
4421 S:      Maintained
4422 F:      drivers/i2c/busses/i2c-cpm.c
4423
4424 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
4425 M:      Sascha Hauer <kernel@pengutronix.de>
4426 L:      linux-fbdev@vger.kernel.org
4427 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4428 S:      Maintained
4429 F:      include/linux/platform_data/video-imxfb.h
4430 F:      drivers/video/fbdev/imxfb.c
4431
4432 FREESCALE QUAD SPI DRIVER
4433 M:      Han Xu <han.xu@freescale.com>
4434 L:      linux-mtd@lists.infradead.org
4435 S:      Maintained
4436 F:      drivers/mtd/spi-nor/fsl-quadspi.c
4437
4438 FREESCALE SOC FS_ENET DRIVER
4439 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
4440 M:      Vitaly Bordug <vbordug@ru.mvista.com>
4441 L:      linuxppc-dev@lists.ozlabs.org
4442 L:      netdev@vger.kernel.org
4443 S:      Maintained
4444 F:      drivers/net/ethernet/freescale/fs_enet/
4445 F:      include/linux/fs_enet_pd.h
4446
4447 FREESCALE QUICC ENGINE LIBRARY
4448 L:      linuxppc-dev@lists.ozlabs.org
4449 S:      Orphan
4450 F:      arch/powerpc/sysdev/qe_lib/
4451 F:      arch/powerpc/include/asm/*qe.h
4452
4453 FREESCALE USB PERIPHERAL DRIVERS
4454 M:      Li Yang <leoli@freescale.com>
4455 L:      linux-usb@vger.kernel.org
4456 L:      linuxppc-dev@lists.ozlabs.org
4457 S:      Maintained
4458 F:      drivers/usb/gadget/udc/fsl*
4459
4460 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
4461 M:      Li Yang <leoli@freescale.com>
4462 L:      netdev@vger.kernel.org
4463 L:      linuxppc-dev@lists.ozlabs.org
4464 S:      Maintained
4465 F:      drivers/net/ethernet/freescale/ucc_geth*
4466
4467 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
4468 M:      Claudiu Manoil <claudiu.manoil@freescale.com>
4469 L:      netdev@vger.kernel.org
4470 S:      Maintained
4471 F:      drivers/net/ethernet/freescale/gianfar*
4472 X:      drivers/net/ethernet/freescale/gianfar_ptp.c
4473 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
4474
4475 FREESCALE QUICC ENGINE UCC UART DRIVER
4476 M:      Timur Tabi <timur@tabi.org>
4477 L:      linuxppc-dev@lists.ozlabs.org
4478 S:      Maintained
4479 F:      drivers/tty/serial/ucc_uart.c
4480
4481 FREESCALE SOC SOUND DRIVERS
4482 M:      Timur Tabi <timur@tabi.org>
4483 M:      Nicolin Chen <nicoleotsuka@gmail.com>
4484 M:      Xiubo Li <Xiubo.Lee@gmail.com>
4485 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4486 L:      linuxppc-dev@lists.ozlabs.org
4487 S:      Maintained
4488 F:      sound/soc/fsl/fsl*
4489 F:      sound/soc/fsl/imx*
4490 F:      sound/soc/fsl/mpc8610_hpcd.c
4491
4492 FREESCALE QORIQ MANAGEMENT COMPLEX DRIVER
4493 M:      "J. German Rivera" <German.Rivera@freescale.com>
4494 L:      linux-kernel@vger.kernel.org
4495 S:      Maintained
4496 F:      drivers/staging/fsl-mc/
4497
4498 FREEVXFS FILESYSTEM
4499 M:      Christoph Hellwig <hch@infradead.org>
4500 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
4501 S:      Maintained
4502 F:      fs/freevxfs/
4503
4504 FREEZER
4505 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4506 M:      Pavel Machek <pavel@ucw.cz>
4507 L:      linux-pm@vger.kernel.org
4508 S:      Supported
4509 F:      Documentation/power/freezing-of-tasks.txt
4510 F:      include/linux/freezer.h
4511 F:      kernel/freezer.c
4512
4513 FRONTSWAP API
4514 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4515 L:      linux-kernel@vger.kernel.org
4516 S:      Maintained
4517 F:      mm/frontswap.c
4518 F:      include/linux/frontswap.h
4519
4520 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
4521 M:      David Howells <dhowells@redhat.com>
4522 L:      linux-cachefs@redhat.com
4523 S:      Supported
4524 F:      Documentation/filesystems/caching/
4525 F:      fs/fscache/
4526 F:      include/linux/fscache*.h
4527
4528 F2FS FILE SYSTEM
4529 M:      Jaegeuk Kim <jaegeuk@kernel.org>
4530 M:      Changman Lee <cm224.lee@samsung.com>
4531 R:      Chao Yu <chao2.yu@samsung.com>
4532 L:      linux-f2fs-devel@lists.sourceforge.net
4533 W:      http://en.wikipedia.org/wiki/F2FS
4534 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
4535 S:      Maintained
4536 F:      Documentation/filesystems/f2fs.txt
4537 F:      Documentation/ABI/testing/sysfs-fs-f2fs
4538 F:      fs/f2fs/
4539 F:      include/linux/f2fs_fs.h
4540 F:      include/trace/events/f2fs.h
4541
4542 FUJITSU FR-V (FRV) PORT
4543 M:      David Howells <dhowells@redhat.com>
4544 S:      Maintained
4545 F:      arch/frv/
4546
4547 FUJITSU LAPTOP EXTRAS
4548 M:      Jonathan Woithe <jwoithe@just42.net>
4549 L:      platform-driver-x86@vger.kernel.org
4550 S:      Maintained
4551 F:      drivers/platform/x86/fujitsu-laptop.c
4552
4553 FUJITSU M-5MO LS CAMERA ISP DRIVER
4554 M:      Kyungmin Park <kyungmin.park@samsung.com>
4555 M:      Heungjun Kim <riverful.kim@samsung.com>
4556 L:      linux-media@vger.kernel.org
4557 S:      Maintained
4558 F:      drivers/media/i2c/m5mols/
4559 F:      include/media/m5mols.h
4560
4561 FUJITSU TABLET EXTRAS
4562 M:      Robert Gerlach <khnz@gmx.de>
4563 L:      platform-driver-x86@vger.kernel.org
4564 S:      Maintained
4565 F:      drivers/platform/x86/fujitsu-tablet.c
4566
4567 FUSE: FILESYSTEM IN USERSPACE
4568 M:      Miklos Szeredi <miklos@szeredi.hu>
4569 L:      fuse-devel@lists.sourceforge.net
4570 W:      http://fuse.sourceforge.net/
4571 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
4572 S:      Maintained
4573 F:      fs/fuse/
4574 F:      include/uapi/linux/fuse.h
4575 F:      Documentation/filesystems/fuse.txt
4576
4577 FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
4578 M:      Rik Faith <faith@cs.unc.edu>
4579 L:      linux-scsi@vger.kernel.org
4580 S:      Odd Fixes (e.g., new signatures)
4581 F:      drivers/scsi/fdomain.*
4582
4583 GCOV BASED KERNEL PROFILING
4584 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
4585 S:      Maintained
4586 F:      kernel/gcov/
4587 F:      Documentation/gcov.txt
4588
4589 GDT SCSI DISK ARRAY CONTROLLER DRIVER
4590 M:      Achim Leubner <achim_leubner@adaptec.com>
4591 L:      linux-scsi@vger.kernel.org
4592 W:      http://www.icp-vortex.com/
4593 S:      Supported
4594 F:      drivers/scsi/gdt*
4595
4596 GDB KERNEL DEBUGGING HELPER SCRIPTS
4597 M:      Jan Kiszka <jan.kiszka@siemens.com>
4598 S:      Supported
4599 F:      scripts/gdb/
4600
4601 GEMTEK FM RADIO RECEIVER DRIVER
4602 M:      Hans Verkuil <hverkuil@xs4all.nl>
4603 L:      linux-media@vger.kernel.org
4604 T:      git git://linuxtv.org/media_tree.git
4605 W:      http://linuxtv.org
4606 S:      Maintained
4607 F:      drivers/media/radio/radio-gemtek*
4608
4609 GENERIC GPIO I2C DRIVER
4610 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
4611 S:      Supported
4612 F:      drivers/i2c/busses/i2c-gpio.c
4613 F:      include/linux/i2c-gpio.h
4614
4615 GENERIC GPIO I2C MULTIPLEXER DRIVER
4616 M:      Peter Korsgaard <peter.korsgaard@barco.com>
4617 L:      linux-i2c@vger.kernel.org
4618 S:      Supported
4619 F:      drivers/i2c/muxes/i2c-mux-gpio.c
4620 F:      include/linux/i2c-mux-gpio.h
4621 F:      Documentation/i2c/muxes/i2c-mux-gpio
4622
4623 GENERIC HDLC (WAN) DRIVERS
4624 M:      Krzysztof Halasa <khc@pm.waw.pl>
4625 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
4626 S:      Maintained
4627 F:      drivers/net/wan/c101.c
4628 F:      drivers/net/wan/hd6457*
4629 F:      drivers/net/wan/hdlc*
4630 F:      drivers/net/wan/n2.c
4631 F:      drivers/net/wan/pc300too.c
4632 F:      drivers/net/wan/pci200syn.c
4633 F:      drivers/net/wan/wanxl*
4634
4635 GENERIC INCLUDE/ASM HEADER FILES
4636 M:      Arnd Bergmann <arnd@arndb.de>
4637 L:      linux-arch@vger.kernel.org
4638 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
4639 S:      Maintained
4640 F:      include/asm-generic/
4641 F:      include/uapi/asm-generic/
4642
4643 GENERIC PHY FRAMEWORK
4644 M:      Kishon Vijay Abraham I <kishon@ti.com>
4645 L:      linux-kernel@vger.kernel.org
4646 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
4647 S:      Supported
4648 F:      drivers/phy/
4649 F:      include/linux/phy/
4650
4651 GENERIC PM DOMAINS
4652 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4653 M:      Kevin Hilman <khilman@kernel.org>
4654 M:      Ulf Hansson <ulf.hansson@linaro.org>
4655 L:      linux-pm@vger.kernel.org
4656 S:      Supported
4657 F:      drivers/base/power/domain*.c
4658 F:      include/linux/pm_domain.h
4659
4660 GENERIC UIO DRIVER FOR PCI DEVICES
4661 M:      "Michael S. Tsirkin" <mst@redhat.com>
4662 L:      kvm@vger.kernel.org
4663 S:      Supported
4664 F:      drivers/uio/uio_pci_generic.c
4665
4666 GET_MAINTAINER SCRIPT
4667 M:      Joe Perches <joe@perches.com>
4668 S:      Maintained
4669 F:      scripts/get_maintainer.pl
4670
4671 GFS2 FILE SYSTEM
4672 M:      Steven Whitehouse <swhiteho@redhat.com>
4673 M:      Bob Peterson <rpeterso@redhat.com>
4674 L:      cluster-devel@redhat.com
4675 W:      http://sources.redhat.com/cluster/
4676 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
4677 S:      Supported
4678 F:      Documentation/filesystems/gfs2*.txt
4679 F:      fs/gfs2/
4680 F:      include/uapi/linux/gfs2_ondisk.h
4681
4682 GIGASET ISDN DRIVERS
4683 M:      Paul Bolle <pebolle@tiscali.nl>
4684 L:      gigaset307x-common@lists.sourceforge.net
4685 W:      http://gigaset307x.sourceforge.net/
4686 S:      Odd Fixes
4687 F:      Documentation/isdn/README.gigaset
4688 F:      drivers/isdn/gigaset/
4689 F:      include/uapi/linux/gigaset_dev.h
4690
4691 GO7007 MPEG CODEC
4692 M:      Hans Verkuil <hans.verkuil@cisco.com>
4693 L:      linux-media@vger.kernel.org
4694 S:      Maintained
4695 F:      drivers/media/usb/go7007/
4696
4697 GOODIX TOUCHSCREEN
4698 M:      Bastien Nocera <hadess@hadess.net>
4699 L:      linux-input@vger.kernel.org
4700 S:      Maintained
4701 F:      drivers/input/touchscreen/goodix.c
4702
4703 GPIO SUBSYSTEM
4704 M:      Linus Walleij <linus.walleij@linaro.org>
4705 M:      Alexandre Courbot <gnurou@gmail.com>
4706 L:      linux-gpio@vger.kernel.org
4707 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
4708 S:      Maintained
4709 F:      Documentation/gpio/
4710 F:      drivers/gpio/
4711 F:      include/linux/gpio/
4712 F:      include/linux/gpio.h
4713 F:      include/asm-generic/gpio.h
4714
4715 GRE DEMULTIPLEXER DRIVER
4716 M:      Dmitry Kozlov <xeb@mail.ru>
4717 L:      netdev@vger.kernel.org
4718 S:      Maintained
4719 F:      net/ipv4/gre_demux.c
4720 F:      net/ipv4/gre_offload.c
4721 F:      include/net/gre.h
4722
4723 GRETH 10/100/1G Ethernet MAC device driver
4724 M:      Kristoffer Glembo <kristoffer@gaisler.com>
4725 L:      netdev@vger.kernel.org
4726 S:      Maintained
4727 F:      drivers/net/ethernet/aeroflex/
4728
4729 GSPCA FINEPIX SUBDRIVER
4730 M:      Frank Zago <frank@zago.net>
4731 L:      linux-media@vger.kernel.org
4732 T:      git git://linuxtv.org/media_tree.git
4733 S:      Maintained
4734 F:      drivers/media/usb/gspca/finepix.c
4735
4736 GSPCA GL860 SUBDRIVER
4737 M:      Olivier Lorin <o.lorin@laposte.net>
4738 L:      linux-media@vger.kernel.org
4739 T:      git git://linuxtv.org/media_tree.git
4740 S:      Maintained
4741 F:      drivers/media/usb/gspca/gl860/
4742
4743 GSPCA M5602 SUBDRIVER
4744 M:      Erik Andren <erik.andren@gmail.com>
4745 L:      linux-media@vger.kernel.org
4746 T:      git git://linuxtv.org/media_tree.git
4747 S:      Maintained
4748 F:      drivers/media/usb/gspca/m5602/
4749
4750 GSPCA PAC207 SONIXB SUBDRIVER
4751 M:      Hans de Goede <hdegoede@redhat.com>
4752 L:      linux-media@vger.kernel.org
4753 T:      git git://linuxtv.org/media_tree.git
4754 S:      Maintained
4755 F:      drivers/media/usb/gspca/pac207.c
4756
4757 GSPCA SN9C20X SUBDRIVER
4758 M:      Brian Johnson <brijohn@gmail.com>
4759 L:      linux-media@vger.kernel.org
4760 T:      git git://linuxtv.org/media_tree.git
4761 S:      Maintained
4762 F:      drivers/media/usb/gspca/sn9c20x.c
4763
4764 GSPCA T613 SUBDRIVER
4765 M:      Leandro Costantino <lcostantino@gmail.com>
4766 L:      linux-media@vger.kernel.org
4767 T:      git git://linuxtv.org/media_tree.git
4768 S:      Maintained
4769 F:      drivers/media/usb/gspca/t613.c
4770
4771 GSPCA USB WEBCAM DRIVER
4772 M:      Hans de Goede <hdegoede@redhat.com>
4773 L:      linux-media@vger.kernel.org
4774 T:      git git://linuxtv.org/media_tree.git
4775 S:      Maintained
4776 F:      drivers/media/usb/gspca/
4777
4778 GUID PARTITION TABLE (GPT)
4779 M:      Davidlohr Bueso <dave@stgolabs.net>
4780 L:      linux-efi@vger.kernel.org
4781 S:      Maintained
4782 F:      block/partitions/efi.*
4783
4784 STK1160 USB VIDEO CAPTURE DRIVER
4785 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
4786 L:      linux-media@vger.kernel.org
4787 T:      git git://linuxtv.org/media_tree.git
4788 S:      Maintained
4789 F:      drivers/media/usb/stk1160/
4790
4791 H8/300 ARCHITECTURE
4792 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
4793 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
4794 W:      http://uclinux-h8.sourceforge.jp
4795 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
4796 S:      Maintained
4797 F:      arch/h8300/
4798 F:      drivers/clocksource/h8300_*.c
4799 F:      drivers/clk/h8300/
4800 F:      drivers/irqchip/irq-renesas-h8*.c
4801
4802 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
4803 M:      Frank Seidel <frank@f-seidel.de>
4804 L:      platform-driver-x86@vger.kernel.org
4805 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
4806 S:      Maintained
4807 F:      drivers/platform/x86/hdaps.c
4808
4809 HDPVR USB VIDEO ENCODER DRIVER
4810 M:      Hans Verkuil <hverkuil@xs4all.nl>
4811 L:      linux-media@vger.kernel.org
4812 T:      git git://linuxtv.org/media_tree.git
4813 W:      http://linuxtv.org
4814 S:      Odd Fixes
4815 F:      drivers/media/usb/hdpvr/
4816
4817 HWPOISON MEMORY FAILURE HANDLING
4818 M:      Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
4819 L:      linux-mm@kvack.org
4820 S:      Maintained
4821 F:      mm/memory-failure.c
4822 F:      mm/hwpoison-inject.c
4823
4824 HYPERVISOR VIRTUAL CONSOLE DRIVER
4825 L:      linuxppc-dev@lists.ozlabs.org
4826 S:      Odd Fixes
4827 F:      drivers/tty/hvc/
4828
4829 HACKRF MEDIA DRIVER
4830 M:      Antti Palosaari <crope@iki.fi>
4831 L:      linux-media@vger.kernel.org
4832 W:      http://linuxtv.org/
4833 W:      http://palosaari.fi/linux/
4834 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4835 T:      git git://linuxtv.org/anttip/media_tree.git
4836 S:      Maintained
4837 F:      drivers/media/usb/hackrf/
4838
4839 HARDWARE MONITORING
4840 M:      Jean Delvare <jdelvare@suse.com>
4841 M:      Guenter Roeck <linux@roeck-us.net>
4842 L:      lm-sensors@lm-sensors.org
4843 W:      http://www.lm-sensors.org/
4844 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/
4845 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
4846 S:      Maintained
4847 F:      Documentation/hwmon/
4848 F:      drivers/hwmon/
4849 F:      include/linux/hwmon*.h
4850
4851 HARDWARE RANDOM NUMBER GENERATOR CORE
4852 M:      Matt Mackall <mpm@selenic.com>
4853 M:      Herbert Xu <herbert@gondor.apana.org.au>
4854 L:      linux-crypto@vger.kernel.org
4855 S:      Odd fixes
4856 F:      Documentation/hw_random.txt
4857 F:      drivers/char/hw_random/
4858 F:      include/linux/hw_random.h
4859
4860 HARDWARE SPINLOCK CORE
4861 M:      Ohad Ben-Cohen <ohad@wizery.com>
4862 S:      Maintained
4863 F:      Documentation/hwspinlock.txt
4864 F:      drivers/hwspinlock/hwspinlock_*
4865 F:      include/linux/hwspinlock.h
4866
4867 HARMONY SOUND DRIVER
4868 L:      linux-parisc@vger.kernel.org
4869 S:      Maintained
4870 F:      sound/parisc/harmony.*
4871
4872 HD29L2 MEDIA DRIVER
4873 M:      Antti Palosaari <crope@iki.fi>
4874 L:      linux-media@vger.kernel.org
4875 W:      http://linuxtv.org/
4876 W:      http://palosaari.fi/linux/
4877 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4878 T:      git git://linuxtv.org/anttip/media_tree.git
4879 S:      Maintained
4880 F:      drivers/media/dvb-frontends/hd29l2*
4881
4882 HEWLETT-PACKARD SMART2 RAID DRIVER
4883 L:      iss_storagedev@hp.com
4884 S:      Orphan
4885 F:      Documentation/blockdev/cpqarray.txt
4886 F:      drivers/block/cpqarray.*
4887
4888 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
4889 M:      Don Brace <don.brace@pmcs.com>
4890 L:      iss_storagedev@hp.com
4891 L:      storagedev@pmcs.com
4892 L:      linux-scsi@vger.kernel.org
4893 S:      Supported
4894 F:      Documentation/scsi/hpsa.txt
4895 F:      drivers/scsi/hpsa*.[ch]
4896 F:      include/linux/cciss*.h
4897 F:      include/uapi/linux/cciss*.h
4898
4899 HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
4900 M:      Don Brace <don.brace@pmcs.com>
4901 L:      iss_storagedev@hp.com
4902 L:      storagedev@pmcs.com
4903 L:      linux-scsi@vger.kernel.org
4904 S:      Supported
4905 F:      Documentation/blockdev/cciss.txt
4906 F:      drivers/block/cciss*
4907 F:      include/linux/cciss_ioctl.h
4908 F:      include/uapi/linux/cciss_ioctl.h
4909
4910 HFS FILESYSTEM
4911 L:      linux-fsdevel@vger.kernel.org
4912 S:      Orphan
4913 F:      Documentation/filesystems/hfs.txt
4914 F:      fs/hfs/
4915
4916 HFSPLUS FILESYSTEM
4917 L:      linux-fsdevel@vger.kernel.org
4918 S:      Orphan
4919 F:      Documentation/filesystems/hfsplus.txt
4920 F:      fs/hfsplus/
4921
4922 HGA FRAMEBUFFER DRIVER
4923 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
4924 L:      linux-nvidia@lists.surfsouth.com
4925 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
4926 S:      Maintained
4927 F:      drivers/video/fbdev/hgafb.c
4928
4929 HIBERNATION (aka Software Suspend, aka swsusp)
4930 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4931 M:      Pavel Machek <pavel@ucw.cz>
4932 L:      linux-pm@vger.kernel.org
4933 S:      Supported
4934 F:      arch/x86/power/
4935 F:      drivers/base/power/
4936 F:      kernel/power/
4937 F:      include/linux/suspend.h
4938 F:      include/linux/freezer.h
4939 F:      include/linux/pm.h
4940 F:      arch/*/include/asm/suspend*.h
4941
4942 HID CORE LAYER
4943 M:      Jiri Kosina <jikos@kernel.org>
4944 L:      linux-input@vger.kernel.org
4945 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
4946 S:      Maintained
4947 F:      drivers/hid/
4948 F:      include/linux/hid*
4949 F:      include/uapi/linux/hid*
4950
4951 HID SENSOR HUB DRIVERS
4952 M:      Jiri Kosina <jikos@kernel.org>
4953 M:      Jonathan Cameron <jic23@kernel.org>
4954 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
4955 L:      linux-input@vger.kernel.org
4956 L:      linux-iio@vger.kernel.org
4957 S:      Maintained
4958 F:      Documentation/hid/hid-sensor*
4959 F:      drivers/hid/hid-sensor-*
4960 F:      drivers/iio/*/hid-*
4961 F:      include/linux/hid-sensor-*
4962
4963 HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
4964 M:      Thomas Gleixner <tglx@linutronix.de>
4965 L:      linux-kernel@vger.kernel.org
4966 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4967 S:      Maintained
4968 F:      Documentation/timers/
4969 F:      kernel/time/hrtimer.c
4970 F:      kernel/time/clockevents.c
4971 F:      kernel/time/tick*.*
4972 F:      kernel/time/timer_*.c
4973 F:      include/linux/clockchips.h
4974 F:      include/linux/hrtimer.h
4975
4976 HIGH-SPEED SCC DRIVER FOR AX.25
4977 L:      linux-hams@vger.kernel.org
4978 S:      Orphan
4979 F:      drivers/net/hamradio/dmascc.c
4980 F:      drivers/net/hamradio/scc.c
4981
4982 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
4983 M:      HighPoint Linux Team <linux@highpoint-tech.com>
4984 W:      http://www.highpoint-tech.com
4985 S:      Supported
4986 F:      Documentation/scsi/hptiop.txt
4987 F:      drivers/scsi/hptiop.c
4988
4989 HIPPI
4990 M:      Jes Sorensen <jes@trained-monkey.org>
4991 L:      linux-hippi@sunsite.dk
4992 S:      Maintained
4993 F:      include/linux/hippidevice.h
4994 F:      include/uapi/linux/if_hippi.h
4995 F:      net/802/hippi.c
4996 F:      drivers/net/hippi/
4997
4998 HOST AP DRIVER
4999 M:      Jouni Malinen <j@w1.fi>
5000 L:      hostap@shmoo.com (subscribers-only)
5001 L:      linux-wireless@vger.kernel.org
5002 W:      http://hostap.epitest.fi/
5003 S:      Maintained
5004 F:      drivers/net/wireless/hostap/
5005
5006 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
5007 L:      platform-driver-x86@vger.kernel.org
5008 S:      Orphan
5009 F:      drivers/platform/x86/tc1100-wmi.c
5010
5011 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
5012 M:      Jaroslav Kysela <perex@perex.cz>
5013 S:      Maintained
5014 F:      drivers/net/ethernet/hp/hp100.*
5015
5016 HPET:   High Precision Event Timers driver
5017 M:      Clemens Ladisch <clemens@ladisch.de>
5018 S:      Maintained
5019 F:      Documentation/timers/hpet.txt
5020 F:      drivers/char/hpet.c
5021 F:      include/linux/hpet.h
5022 F:      include/uapi/linux/hpet.h
5023
5024 HPET:   x86
5025 S:      Orphan
5026 F:      arch/x86/kernel/hpet.c
5027 F:      arch/x86/include/asm/hpet.h
5028
5029 HPFS FILESYSTEM
5030 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
5031 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
5032 S:      Maintained
5033 F:      fs/hpfs/
5034
5035 HSI SUBSYSTEM
5036 M:      Sebastian Reichel <sre@kernel.org>
5037 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
5038 S:      Maintained
5039 F:      Documentation/ABI/testing/sysfs-bus-hsi
5040 F:      Documentation/hsi.txt
5041 F:      drivers/hsi/
5042 F:      include/linux/hsi/
5043 F:      include/uapi/linux/hsi/
5044
5045 HSO 3G MODEM DRIVER
5046 M:      Jan Dumon <j.dumon@option.com>
5047 W:      http://www.pharscape.org
5048 S:      Maintained
5049 F:      drivers/net/usb/hso.c
5050
5051 HSR NETWORK PROTOCOL
5052 M:      Arvid Brodin <arvid.brodin@alten.se>
5053 L:      netdev@vger.kernel.org
5054 S:      Maintained
5055 F:      net/hsr/
5056
5057 HTCPEN TOUCHSCREEN DRIVER
5058 M:      Pau Oliva Fora <pof@eslack.org>
5059 L:      linux-input@vger.kernel.org
5060 S:      Maintained
5061 F:      drivers/input/touchscreen/htcpen.c
5062
5063 HUGETLB FILESYSTEM
5064 M:      Nadia Yvette Chambers <nyc@holomorphy.com>
5065 S:      Maintained
5066 F:      fs/hugetlbfs/
5067
5068 Hyper-V CORE AND DRIVERS
5069 M:      "K. Y. Srinivasan" <kys@microsoft.com>
5070 M:      Haiyang Zhang <haiyangz@microsoft.com>
5071 L:      devel@linuxdriverproject.org
5072 S:      Maintained
5073 F:      arch/x86/include/asm/mshyperv.h
5074 F:      arch/x86/include/uapi/asm/hyperv.h
5075 F:      arch/x86/kernel/cpu/mshyperv.c
5076 F:      drivers/hid/hid-hyperv.c
5077 F:      drivers/hv/
5078 F:      drivers/input/serio/hyperv-keyboard.c
5079 F:      drivers/net/hyperv/
5080 F:      drivers/scsi/storvsc_drv.c
5081 F:      drivers/video/fbdev/hyperv_fb.c
5082 F:      include/linux/hyperv.h
5083 F:      tools/hv/
5084 F:      Documentation/ABI/stable/sysfs-bus-vmbus
5085
5086 I2C OVER PARALLEL PORT
5087 M:      Jean Delvare <jdelvare@suse.com>
5088 L:      linux-i2c@vger.kernel.org
5089 S:      Maintained
5090 F:      Documentation/i2c/busses/i2c-parport
5091 F:      Documentation/i2c/busses/i2c-parport-light
5092 F:      drivers/i2c/busses/i2c-parport.c
5093 F:      drivers/i2c/busses/i2c-parport-light.c
5094
5095 I2C/SMBUS CONTROLLER DRIVERS FOR PC
5096 M:      Jean Delvare <jdelvare@suse.com>
5097 L:      linux-i2c@vger.kernel.org
5098 S:      Maintained
5099 F:      Documentation/i2c/busses/i2c-ali1535
5100 F:      Documentation/i2c/busses/i2c-ali1563
5101 F:      Documentation/i2c/busses/i2c-ali15x3
5102 F:      Documentation/i2c/busses/i2c-amd756
5103 F:      Documentation/i2c/busses/i2c-amd8111
5104 F:      Documentation/i2c/busses/i2c-i801
5105 F:      Documentation/i2c/busses/i2c-nforce2
5106 F:      Documentation/i2c/busses/i2c-piix4
5107 F:      Documentation/i2c/busses/i2c-sis5595
5108 F:      Documentation/i2c/busses/i2c-sis630
5109 F:      Documentation/i2c/busses/i2c-sis96x
5110 F:      Documentation/i2c/busses/i2c-via
5111 F:      Documentation/i2c/busses/i2c-viapro
5112 F:      drivers/i2c/busses/i2c-ali1535.c
5113 F:      drivers/i2c/busses/i2c-ali1563.c
5114 F:      drivers/i2c/busses/i2c-ali15x3.c
5115 F:      drivers/i2c/busses/i2c-amd756.c
5116 F:      drivers/i2c/busses/i2c-amd756-s4882.c
5117 F:      drivers/i2c/busses/i2c-amd8111.c
5118 F:      drivers/i2c/busses/i2c-i801.c
5119 F:      drivers/i2c/busses/i2c-isch.c
5120 F:      drivers/i2c/busses/i2c-nforce2.c
5121 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
5122 F:      drivers/i2c/busses/i2c-piix4.c
5123 F:      drivers/i2c/busses/i2c-sis5595.c
5124 F:      drivers/i2c/busses/i2c-sis630.c
5125 F:      drivers/i2c/busses/i2c-sis96x.c
5126 F:      drivers/i2c/busses/i2c-via.c
5127 F:      drivers/i2c/busses/i2c-viapro.c
5128
5129 I2C/SMBUS ISMT DRIVER
5130 M:      Seth Heasley <seth.heasley@intel.com>
5131 M:      Neil Horman <nhorman@tuxdriver.com>
5132 L:      linux-i2c@vger.kernel.org
5133 F:      drivers/i2c/busses/i2c-ismt.c
5134 F:      Documentation/i2c/busses/i2c-ismt
5135
5136 I2C/SMBUS STUB DRIVER
5137 M:      Jean Delvare <jdelvare@suse.com>
5138 L:      linux-i2c@vger.kernel.org
5139 S:      Maintained
5140 F:      drivers/i2c/i2c-stub.c
5141
5142 I2C SUBSYSTEM
5143 M:      Wolfram Sang <wsa@the-dreams.de>
5144 L:      linux-i2c@vger.kernel.org
5145 W:      https://i2c.wiki.kernel.org/
5146 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
5147 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
5148 S:      Maintained
5149 F:      Documentation/devicetree/bindings/i2c/
5150 F:      Documentation/i2c/
5151 F:      drivers/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 IA32 MICROCODE UPDATE SUPPORT
5495 M:      Borislav Petkov <bp@alien8.de>
5496 S:      Maintained
5497 F:      arch/x86/kernel/cpu/microcode/core*
5498 F:      arch/x86/kernel/cpu/microcode/intel*
5499
5500 INTEL I/OAT DMA DRIVER
5501 M:      Dave Jiang <dave.jiang@intel.com>
5502 R:      Dan Williams <dan.j.williams@intel.com>
5503 L:      dmaengine@vger.kernel.org
5504 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5505 S:      Supported
5506 F:      drivers/dma/ioat*
5507
5508 INTEL IOMMU (VT-d)
5509 M:      David Woodhouse <dwmw2@infradead.org>
5510 L:      iommu@lists.linux-foundation.org
5511 T:      git git://git.infradead.org/iommu-2.6.git
5512 S:      Supported
5513 F:      drivers/iommu/intel-iommu.c
5514 F:      include/linux/intel-iommu.h
5515
5516 INTEL IOP-ADMA DMA DRIVER
5517 R:      Dan Williams <dan.j.williams@intel.com>
5518 S:      Odd fixes
5519 F:      drivers/dma/iop-adma.c
5520
5521 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
5522 M:      Krzysztof Halasa <khalasa@piap.pl>
5523 S:      Maintained
5524 F:      arch/arm/mach-ixp4xx/include/mach/qmgr.h
5525 F:      arch/arm/mach-ixp4xx/include/mach/npe.h
5526 F:      arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
5527 F:      arch/arm/mach-ixp4xx/ixp4xx_npe.c
5528 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
5529 F:      drivers/net/wan/ixp4xx_hss.c
5530
5531 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
5532 M:      Deepak Saxena <dsaxena@plexity.net>
5533 S:      Maintained
5534 F:      drivers/char/hw_random/ixp4xx-rng.c
5535
5536 INTEL ETHERNET DRIVERS
5537 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
5538 R:      Jesse Brandeburg <jesse.brandeburg@intel.com>
5539 R:      Shannon Nelson <shannon.nelson@intel.com>
5540 R:      Carolyn Wyborny <carolyn.wyborny@intel.com>
5541 R:      Don Skidmore <donald.c.skidmore@intel.com>
5542 R:      Matthew Vick <matthew.vick@intel.com>
5543 R:      John Ronciak <john.ronciak@intel.com>
5544 R:      Mitch Williams <mitch.a.williams@intel.com>
5545 L:      intel-wired-lan@lists.osuosl.org
5546 W:      http://www.intel.com/support/feedback.htm
5547 W:      http://e1000.sourceforge.net/
5548 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
5549 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
5550 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
5551 S:      Supported
5552 F:      Documentation/networking/e100.txt
5553 F:      Documentation/networking/e1000.txt
5554 F:      Documentation/networking/e1000e.txt
5555 F:      Documentation/networking/igb.txt
5556 F:      Documentation/networking/igbvf.txt
5557 F:      Documentation/networking/ixgb.txt
5558 F:      Documentation/networking/ixgbe.txt
5559 F:      Documentation/networking/ixgbevf.txt
5560 F:      Documentation/networking/i40e.txt
5561 F:      Documentation/networking/i40evf.txt
5562 F:      drivers/net/ethernet/intel/
5563 F:      drivers/net/ethernet/intel/*/
5564
5565 INTEL-MID GPIO DRIVER
5566 M:      David Cohen <david.a.cohen@linux.intel.com>
5567 L:      linux-gpio@vger.kernel.org
5568 S:      Maintained
5569 F:      drivers/gpio/gpio-intel-mid.c
5570
5571 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
5572 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
5573 L:      linux-wireless@vger.kernel.org
5574 S:      Maintained
5575 F:      Documentation/networking/README.ipw2100
5576 F:      Documentation/networking/README.ipw2200
5577 F:      drivers/net/wireless/ipw2x00/
5578
5579 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
5580 M:      Richard L Maliszewski <richard.l.maliszewski@intel.com>
5581 M:      Gang Wei <gang.wei@intel.com>
5582 M:      Shane Wang <shane.wang@intel.com>
5583 L:      tboot-devel@lists.sourceforge.net
5584 W:      http://tboot.sourceforge.net
5585 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
5586 S:      Supported
5587 F:      Documentation/intel_txt.txt
5588 F:      include/linux/tboot.h
5589 F:      arch/x86/kernel/tboot.c
5590
5591 INTEL WIRELESS WIMAX CONNECTION 2400
5592 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
5593 M:      linux-wimax@intel.com
5594 L:      wimax@linuxwimax.org (subscribers-only)
5595 S:      Supported
5596 W:      http://linuxwimax.org
5597 F:      Documentation/wimax/README.i2400m
5598 F:      drivers/net/wimax/i2400m/
5599 F:      include/uapi/linux/wimax/i2400m.h
5600
5601 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
5602 M:      Stanislaw Gruszka <sgruszka@redhat.com>
5603 L:      linux-wireless@vger.kernel.org
5604 S:      Supported
5605 F:      drivers/net/wireless/iwlegacy/
5606
5607 INTEL WIRELESS WIFI LINK (iwlwifi)
5608 M:      Johannes Berg <johannes.berg@intel.com>
5609 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
5610 M:      Intel Linux Wireless <linuxwifi@intel.com>
5611 L:      linux-wireless@vger.kernel.org
5612 W:      http://intellinuxwireless.org
5613 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
5614 S:      Supported
5615 F:      drivers/net/wireless/iwlwifi/
5616
5617 INTEL MANAGEMENT ENGINE (mei)
5618 M:      Tomas Winkler <tomas.winkler@intel.com>
5619 L:      linux-kernel@vger.kernel.org
5620 S:      Supported
5621 F:      include/uapi/linux/mei.h
5622 F:      include/linux/mei_cl_bus.h
5623 F:      drivers/misc/mei/*
5624 F:      Documentation/misc-devices/mei/*
5625
5626 INTEL PMC IPC DRIVER
5627 M:      Zha Qipeng<qipeng.zha@intel.com>
5628 L:      platform-driver-x86@vger.kernel.org
5629 S:      Maintained
5630 F:      drivers/platform/x86/intel_pmc_ipc.c
5631 F:      arch/x86/include/asm/intel_pmc_ipc.h
5632
5633 IOC3 ETHERNET DRIVER
5634 M:      Ralf Baechle <ralf@linux-mips.org>
5635 L:      linux-mips@linux-mips.org
5636 S:      Maintained
5637 F:      drivers/net/ethernet/sgi/ioc3-eth.c
5638
5639 IOC3 SERIAL DRIVER
5640 M:      Pat Gefre <pfg@sgi.com>
5641 L:      linux-serial@vger.kernel.org
5642 S:      Maintained
5643 F:      drivers/tty/serial/ioc3_serial.c
5644
5645 IOMMU DRIVERS
5646 M:      Joerg Roedel <joro@8bytes.org>
5647 L:      iommu@lists.linux-foundation.org
5648 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
5649 S:      Maintained
5650 F:      drivers/iommu/
5651
5652 IP MASQUERADING
5653 M:      Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
5654 S:      Maintained
5655 F:      net/ipv4/netfilter/ipt_MASQUERADE.c
5656
5657 IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
5658 M:      Francois Romieu <romieu@fr.zoreil.com>
5659 M:      Sorbica Shieh <sorbica@icplus.com.tw>
5660 L:      netdev@vger.kernel.org
5661 S:      Maintained
5662 F:      drivers/net/ethernet/icplus/ipg.*
5663
5664 IPATH DRIVER
5665 M:      Mike Marciniszyn <infinipath@intel.com>
5666 L:      linux-rdma@vger.kernel.org
5667 S:      Maintained
5668 F:      drivers/staging/rdma/ipath/
5669
5670 IPMI SUBSYSTEM
5671 M:      Corey Minyard <minyard@acm.org>
5672 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
5673 W:      http://openipmi.sourceforge.net/
5674 S:      Supported
5675 F:      Documentation/IPMI.txt
5676 F:      drivers/char/ipmi/
5677 F:      include/linux/ipmi*
5678 F:      include/uapi/linux/ipmi*
5679
5680 QCOM AUDIO (ASoC) DRIVERS
5681 M:      Patrick Lai <plai@codeaurora.org>
5682 M:      Banajit Goswami <bgoswami@codeaurora.org>
5683 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5684 S:      Supported
5685 F:      sound/soc/qcom/
5686
5687 IPS SCSI RAID DRIVER
5688 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
5689 L:      linux-scsi@vger.kernel.org
5690 W:      http://www.adaptec.com/
5691 S:      Maintained
5692 F:      drivers/scsi/ips*
5693
5694 IPVS
5695 M:      Wensong Zhang <wensong@linux-vs.org>
5696 M:      Simon Horman <horms@verge.net.au>
5697 M:      Julian Anastasov <ja@ssi.bg>
5698 L:      netdev@vger.kernel.org
5699 L:      lvs-devel@vger.kernel.org
5700 S:      Maintained
5701 F:      Documentation/networking/ipvs-sysctl.txt
5702 F:      include/net/ip_vs.h
5703 F:      include/uapi/linux/ip_vs.h
5704 F:      net/netfilter/ipvs/
5705
5706 IPWIRELESS DRIVER
5707 M:      Jiri Kosina <jikos@kernel.org>
5708 M:      David Sterba <dsterba@suse.com>
5709 S:      Odd Fixes
5710 F:      drivers/tty/ipwireless/
5711
5712 IPX NETWORK LAYER
5713 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
5714 L:      netdev@vger.kernel.org
5715 S:      Maintained
5716 F:      include/net/ipx.h
5717 F:      include/uapi/linux/ipx.h
5718 F:      net/ipx/
5719
5720 IRDA SUBSYSTEM
5721 M:      Samuel Ortiz <samuel@sortiz.org>
5722 L:      irda-users@lists.sourceforge.net (subscribers-only)
5723 L:      netdev@vger.kernel.org
5724 W:      http://irda.sourceforge.net/
5725 S:      Maintained
5726 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
5727 F:      Documentation/networking/irda.txt
5728 F:      drivers/net/irda/
5729 F:      include/net/irda/
5730 F:      net/irda/
5731
5732 IRQ SUBSYSTEM
5733 M:      Thomas Gleixner <tglx@linutronix.de>
5734 L:      linux-kernel@vger.kernel.org
5735 S:      Maintained
5736 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5737 F:      kernel/irq/
5738
5739 IRQCHIP DRIVERS
5740 M:      Thomas Gleixner <tglx@linutronix.de>
5741 M:      Jason Cooper <jason@lakedaemon.net>
5742 M:      Marc Zyngier <marc.zyngier@arm.com>
5743 L:      linux-kernel@vger.kernel.org
5744 S:      Maintained
5745 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5746 T:      git git://git.infradead.org/users/jcooper/linux.git irqchip/core
5747 F:      Documentation/devicetree/bindings/interrupt-controller/
5748 F:      drivers/irqchip/
5749
5750 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
5751 M:      Jiang Liu <jiang.liu@linux.intel.com>
5752 M:      Marc Zyngier <marc.zyngier@arm.com>
5753 S:      Maintained
5754 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5755 F:      Documentation/IRQ-domain.txt
5756 F:      include/linux/irqdomain.h
5757 F:      kernel/irq/irqdomain.c
5758 F:      kernel/irq/msi.c
5759
5760 ISAPNP
5761 M:      Jaroslav Kysela <perex@perex.cz>
5762 S:      Maintained
5763 F:      Documentation/isapnp.txt
5764 F:      drivers/pnp/isapnp/
5765 F:      include/linux/isapnp.h
5766
5767 ISA RADIO MODULE
5768 M:      Hans Verkuil <hverkuil@xs4all.nl>
5769 L:      linux-media@vger.kernel.org
5770 T:      git git://linuxtv.org/media_tree.git
5771 W:      http://linuxtv.org
5772 S:      Maintained
5773 F:      drivers/media/radio/radio-isa*
5774
5775 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
5776 M:      Peter Jones <pjones@redhat.com>
5777 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
5778 S:      Maintained
5779 F:      drivers/firmware/iscsi_ibft*
5780
5781 ISCSI
5782 M:      Mike Christie <michaelc@cs.wisc.edu>
5783 L:      open-iscsi@googlegroups.com
5784 W:      www.open-iscsi.org
5785 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
5786 S:      Maintained
5787 F:      drivers/scsi/*iscsi*
5788 F:      include/scsi/*iscsi*
5789
5790 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
5791 M:      Or Gerlitz <ogerlitz@mellanox.com>
5792 M:      Sagi Grimberg <sagig@mellanox.com>
5793 M:      Roi Dayan <roid@mellanox.com>
5794 L:      linux-rdma@vger.kernel.org
5795 S:      Supported
5796 W:      http://www.openfabrics.org
5797 W:      www.open-iscsi.org
5798 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5799 F:      drivers/infiniband/ulp/iser/
5800
5801 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
5802 M:      Sagi Grimberg <sagig@mellanox.com>
5803 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
5804 L:      linux-rdma@vger.kernel.org
5805 L:      target-devel@vger.kernel.org
5806 S:      Supported
5807 W:      http://www.linux-iscsi.org
5808 F:      drivers/infiniband/ulp/isert
5809
5810 ISDN SUBSYSTEM
5811 M:      Karsten Keil <isdn@linux-pingi.de>
5812 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5813 L:      netdev@vger.kernel.org
5814 W:      http://www.isdn4linux.de
5815 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
5816 S:      Maintained
5817 F:      Documentation/isdn/
5818 F:      drivers/isdn/
5819 F:      include/linux/isdn.h
5820 F:      include/linux/isdn/
5821 F:      include/uapi/linux/isdn.h
5822 F:      include/uapi/linux/isdn/
5823
5824 ISDN SUBSYSTEM (Eicon active card driver)
5825 M:      Armin Schindler <mac@melware.de>
5826 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5827 W:      http://www.melware.de
5828 S:      Maintained
5829 F:      drivers/isdn/hardware/eicon/
5830
5831 IT87 HARDWARE MONITORING DRIVER
5832 M:      Jean Delvare <jdelvare@suse.com>
5833 L:      lm-sensors@lm-sensors.org
5834 S:      Maintained
5835 F:      Documentation/hwmon/it87
5836 F:      drivers/hwmon/it87.c
5837
5838 IT913X MEDIA DRIVER
5839 M:      Antti Palosaari <crope@iki.fi>
5840 L:      linux-media@vger.kernel.org
5841 W:      http://linuxtv.org/
5842 W:      http://palosaari.fi/linux/
5843 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5844 T:      git git://linuxtv.org/anttip/media_tree.git
5845 S:      Maintained
5846 F:      drivers/media/tuners/it913x*
5847
5848 IVTV VIDEO4LINUX DRIVER
5849 M:      Andy Walls <awalls@md.metrocast.net>
5850 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
5851 L:      linux-media@vger.kernel.org
5852 T:      git git://linuxtv.org/media_tree.git
5853 W:      http://www.ivtvdriver.org
5854 S:      Maintained
5855 F:      Documentation/video4linux/*.ivtv
5856 F:      drivers/media/pci/ivtv/
5857 F:      include/uapi/linux/ivtv*
5858
5859 IX2505V MEDIA DRIVER
5860 M:      Malcolm Priestley <tvboxspy@gmail.com>
5861 L:      linux-media@vger.kernel.org
5862 W:      http://linuxtv.org/
5863 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5864 S:      Maintained
5865 F:      drivers/media/dvb-frontends/ix2505v*
5866
5867 JC42.4 TEMPERATURE SENSOR DRIVER
5868 M:      Guenter Roeck <linux@roeck-us.net>
5869 L:      lm-sensors@lm-sensors.org
5870 S:      Maintained
5871 F:      drivers/hwmon/jc42.c
5872 F:      Documentation/hwmon/jc42
5873
5874 JFS FILESYSTEM
5875 M:      Dave Kleikamp <shaggy@kernel.org>
5876 L:      jfs-discussion@lists.sourceforge.net
5877 W:      http://jfs.sourceforge.net/
5878 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
5879 S:      Maintained
5880 F:      Documentation/filesystems/jfs.txt
5881 F:      fs/jfs/
5882
5883 JME NETWORK DRIVER
5884 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
5885 L:      netdev@vger.kernel.org
5886 S:      Maintained
5887 F:      drivers/net/ethernet/jme.*
5888
5889 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
5890 M:      David Woodhouse <dwmw2@infradead.org>
5891 L:      linux-mtd@lists.infradead.org
5892 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
5893 S:      Maintained
5894 F:      fs/jffs2/
5895 F:      include/uapi/linux/jffs2.h
5896
5897 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
5898 M:      "Theodore Ts'o" <tytso@mit.edu>
5899 M:      Jan Kara <jack@suse.com>
5900 L:      linux-ext4@vger.kernel.org
5901 S:      Maintained
5902 F:      fs/jbd2/
5903 F:      include/linux/jbd2.h
5904
5905 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
5906 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
5907 L:      linux-media@vger.kernel.org
5908 S:      Maintained
5909 F:      drivers/media/platform/rcar_jpu.c
5910
5911 JSM Neo PCI based serial card
5912 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
5913 L:      linux-serial@vger.kernel.org
5914 S:      Maintained
5915 F:      drivers/tty/serial/jsm/
5916
5917 K10TEMP HARDWARE MONITORING DRIVER
5918 M:      Clemens Ladisch <clemens@ladisch.de>
5919 L:      lm-sensors@lm-sensors.org
5920 S:      Maintained
5921 F:      Documentation/hwmon/k10temp
5922 F:      drivers/hwmon/k10temp.c
5923
5924 K8TEMP HARDWARE MONITORING DRIVER
5925 M:      Rudolf Marek <r.marek@assembler.cz>
5926 L:      lm-sensors@lm-sensors.org
5927 S:      Maintained
5928 F:      Documentation/hwmon/k8temp
5929 F:      drivers/hwmon/k8temp.c
5930
5931 KCONFIG
5932 M:      "Yann E. MORIN" <yann.morin.1998@free.fr>
5933 L:      linux-kbuild@vger.kernel.org
5934 T:      git git://gitorious.org/linux-kconfig/linux-kconfig
5935 S:      Maintained
5936 F:      Documentation/kbuild/kconfig-language.txt
5937 F:      scripts/kconfig/
5938
5939 KDUMP
5940 M:      Vivek Goyal <vgoyal@redhat.com>
5941 M:      Haren Myneni <hbabu@us.ibm.com>
5942 L:      kexec@lists.infradead.org
5943 W:      http://lse.sourceforge.net/kdump/
5944 S:      Maintained
5945 F:      Documentation/kdump/
5946
5947 KEENE FM RADIO TRANSMITTER DRIVER
5948 M:      Hans Verkuil <hverkuil@xs4all.nl>
5949 L:      linux-media@vger.kernel.org
5950 T:      git git://linuxtv.org/media_tree.git
5951 W:      http://linuxtv.org
5952 S:      Maintained
5953 F:      drivers/media/radio/radio-keene*
5954
5955 KERNEL AUTOMOUNTER v4 (AUTOFS4)
5956 M:      Ian Kent <raven@themaw.net>
5957 L:      autofs@vger.kernel.org
5958 S:      Maintained
5959 F:      fs/autofs4/
5960
5961 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
5962 M:      Michal Marek <mmarek@suse.com>
5963 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
5964 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
5965 L:      linux-kbuild@vger.kernel.org
5966 S:      Maintained
5967 F:      Documentation/kbuild/
5968 F:      Makefile
5969 F:      scripts/Makefile.*
5970 F:      scripts/basic/
5971 F:      scripts/mk*
5972 F:      scripts/package/
5973
5974 KERNEL JANITORS
5975 L:      kernel-janitors@vger.kernel.org
5976 W:      http://kernelnewbies.org/KernelJanitors
5977 S:      Odd Fixes
5978
5979 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
5980 M:      "J. Bruce Fields" <bfields@fieldses.org>
5981 M:      Jeff Layton <jlayton@poochiereds.net>
5982 L:      linux-nfs@vger.kernel.org
5983 W:      http://nfs.sourceforge.net/
5984 S:      Supported
5985 F:      fs/nfsd/
5986 F:      include/uapi/linux/nfsd/
5987 F:      fs/lockd/
5988 F:      fs/nfs_common/
5989 F:      net/sunrpc/
5990 F:      include/linux/lockd/
5991 F:      include/linux/sunrpc/
5992 F:      include/uapi/linux/sunrpc/
5993
5994 KERNEL SELFTEST FRAMEWORK
5995 M:      Shuah Khan <shuahkh@osg.samsung.com>
5996 L:      linux-api@vger.kernel.org
5997 T:      git git://git.kernel.org/pub/scm/shuah/linux-kselftest
5998 S:      Maintained
5999 F:      tools/testing/selftests
6000
6001 KERNEL VIRTUAL MACHINE (KVM)
6002 M:      Gleb Natapov <gleb@kernel.org>
6003 M:      Paolo Bonzini <pbonzini@redhat.com>
6004 L:      kvm@vger.kernel.org
6005 W:      http://www.linux-kvm.org
6006 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
6007 S:      Supported
6008 F:      Documentation/*/kvm*.txt
6009 F:      Documentation/virtual/kvm/
6010 F:      arch/*/kvm/
6011 F:      arch/x86/kernel/kvm.c
6012 F:      arch/x86/kernel/kvmclock.c
6013 F:      arch/*/include/asm/kvm*
6014 F:      include/linux/kvm*
6015 F:      include/uapi/linux/kvm*
6016 F:      virt/kvm/
6017
6018 KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
6019 M:      Joerg Roedel <joro@8bytes.org>
6020 L:      kvm@vger.kernel.org
6021 W:      http://www.linux-kvm.org/
6022 S:      Maintained
6023 F:      arch/x86/include/asm/svm.h
6024 F:      arch/x86/kvm/svm.c
6025
6026 KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
6027 M:      Alexander Graf <agraf@suse.com>
6028 L:      kvm-ppc@vger.kernel.org
6029 W:      http://www.linux-kvm.org/
6030 T:      git git://github.com/agraf/linux-2.6.git
6031 S:      Supported
6032 F:      arch/powerpc/include/asm/kvm*
6033 F:      arch/powerpc/kvm/
6034
6035 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
6036 M:      Christian Borntraeger <borntraeger@de.ibm.com>
6037 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
6038 L:      linux-s390@vger.kernel.org
6039 W:      http://www.ibm.com/developerworks/linux/linux390/
6040 S:      Supported
6041 F:      Documentation/s390/kvm.txt
6042 F:      arch/s390/include/asm/kvm*
6043 F:      arch/s390/kvm/
6044
6045 KERNEL VIRTUAL MACHINE (KVM) FOR ARM
6046 M:      Christoffer Dall <christoffer.dall@linaro.org>
6047 M:      Marc Zyngier <marc.zyngier@arm.com>
6048 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6049 L:      kvmarm@lists.cs.columbia.edu
6050 W:      http://systems.cs.columbia.edu/projects/kvm-arm
6051 S:      Supported
6052 F:      arch/arm/include/uapi/asm/kvm*
6053 F:      arch/arm/include/asm/kvm*
6054 F:      arch/arm/kvm/
6055 F:      virt/kvm/arm/
6056 F:      include/kvm/arm_*
6057
6058 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
6059 M:      Christoffer Dall <christoffer.dall@linaro.org>
6060 M:      Marc Zyngier <marc.zyngier@arm.com>
6061 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6062 L:      kvmarm@lists.cs.columbia.edu
6063 S:      Maintained
6064 F:      arch/arm64/include/uapi/asm/kvm*
6065 F:      arch/arm64/include/asm/kvm*
6066 F:      arch/arm64/kvm/
6067
6068 KEXEC
6069 M:      Eric Biederman <ebiederm@xmission.com>
6070 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
6071 L:      kexec@lists.infradead.org
6072 S:      Maintained
6073 F:      include/linux/kexec.h
6074 F:      include/uapi/linux/kexec.h
6075 F:      kernel/kexec.c
6076
6077 KEYS/KEYRINGS:
6078 M:      David Howells <dhowells@redhat.com>
6079 L:      keyrings@vger.kernel.org
6080 S:      Maintained
6081 F:      Documentation/security/keys.txt
6082 F:      include/linux/key.h
6083 F:      include/linux/key-type.h
6084 F:      include/keys/
6085 F:      security/keys/
6086
6087 KEYS-TRUSTED
6088 M:      David Safford <safford@us.ibm.com>
6089 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6090 L:      linux-security-module@vger.kernel.org
6091 L:      keyrings@vger.kernel.org
6092 S:      Supported
6093 F:      Documentation/security/keys-trusted-encrypted.txt
6094 F:      include/keys/trusted-type.h
6095 F:      security/keys/trusted.c
6096 F:      security/keys/trusted.h
6097
6098 KEYS-ENCRYPTED
6099 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6100 M:      David Safford <safford@us.ibm.com>
6101 L:      linux-security-module@vger.kernel.org
6102 L:      keyrings@vger.kernel.org
6103 S:      Supported
6104 F:      Documentation/security/keys-trusted-encrypted.txt
6105 F:      include/keys/encrypted-type.h
6106 F:      security/keys/encrypted-keys/
6107
6108 KGDB / KDB /debug_core
6109 M:      Jason Wessel <jason.wessel@windriver.com>
6110 W:      http://kgdb.wiki.kernel.org/
6111 L:      kgdb-bugreport@lists.sourceforge.net
6112 S:      Maintained
6113 F:      Documentation/DocBook/kgdb.tmpl
6114 F:      drivers/misc/kgdbts.c
6115 F:      drivers/tty/serial/kgdboc.c
6116 F:      include/linux/kdb.h
6117 F:      include/linux/kgdb.h
6118 F:      kernel/debug/
6119
6120 KMEMCHECK
6121 M:      Vegard Nossum <vegardno@ifi.uio.no>
6122 M:      Pekka Enberg <penberg@kernel.org>
6123 S:      Maintained
6124 F:      Documentation/kmemcheck.txt
6125 F:      arch/x86/include/asm/kmemcheck.h
6126 F:      arch/x86/mm/kmemcheck/
6127 F:      include/linux/kmemcheck.h
6128 F:      mm/kmemcheck.c
6129
6130 KMEMLEAK
6131 M:      Catalin Marinas <catalin.marinas@arm.com>
6132 S:      Maintained
6133 F:      Documentation/kmemleak.txt
6134 F:      include/linux/kmemleak.h
6135 F:      mm/kmemleak.c
6136 F:      mm/kmemleak-test.c
6137
6138 KPROBES
6139 M:      Ananth N Mavinakayanahalli <ananth@in.ibm.com>
6140 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
6141 M:      "David S. Miller" <davem@davemloft.net>
6142 M:      Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
6143 S:      Maintained
6144 F:      Documentation/kprobes.txt
6145 F:      include/linux/kprobes.h
6146 F:      kernel/kprobes.c
6147
6148 KS0108 LCD CONTROLLER DRIVER
6149 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
6150 W:      http://miguelojeda.es/auxdisplay.htm
6151 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
6152 S:      Maintained
6153 F:      Documentation/auxdisplay/ks0108
6154 F:      drivers/auxdisplay/ks0108.c
6155 F:      include/linux/ks0108.h
6156
6157 L3MDEV
6158 M:      David Ahern <dsa@cumulusnetworks.com>
6159 L:      netdev@vger.kernel.org
6160 S:      Maintained
6161 F:      net/l3mdev
6162 F:      include/net/l3mdev.h
6163
6164 LAPB module
6165 L:      linux-x25@vger.kernel.org
6166 S:      Orphan
6167 F:      Documentation/networking/lapb-module.txt
6168 F:      include/*/lapb.h
6169 F:      net/lapb/
6170
6171 LASI 53c700 driver for PARISC
6172 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
6173 L:      linux-scsi@vger.kernel.org
6174 S:      Maintained
6175 F:      Documentation/scsi/53c700.txt
6176 F:      drivers/scsi/53c700*
6177
6178 LED SUBSYSTEM
6179 M:      Richard Purdie <rpurdie@rpsys.net>
6180 M:      Jacek Anaszewski <j.anaszewski@samsung.com>
6181 L:      linux-leds@vger.kernel.org
6182 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
6183 S:      Maintained
6184 F:      drivers/leds/
6185 F:      include/linux/leds.h
6186
6187 LEGACY EEPROM DRIVER
6188 M:      Jean Delvare <jdelvare@suse.com>
6189 S:      Maintained
6190 F:      Documentation/misc-devices/eeprom
6191 F:      drivers/misc/eeprom/eeprom.c
6192
6193 LEGO USB Tower driver
6194 M:      Juergen Stuber <starblue@users.sourceforge.net>
6195 L:      legousb-devel@lists.sourceforge.net
6196 W:      http://legousb.sourceforge.net/
6197 S:      Maintained
6198 F:      drivers/usb/misc/legousbtower.c
6199
6200 LG2160 MEDIA DRIVER
6201 M:      Michael Krufky <mkrufky@linuxtv.org>
6202 L:      linux-media@vger.kernel.org
6203 W:      http://linuxtv.org/
6204 W:      http://github.com/mkrufky
6205 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6206 T:      git git://linuxtv.org/mkrufky/tuners.git
6207 S:      Maintained
6208 F:      drivers/media/dvb-frontends/lg2160.*
6209
6210 LGDT3305 MEDIA DRIVER
6211 M:      Michael Krufky <mkrufky@linuxtv.org>
6212 L:      linux-media@vger.kernel.org
6213 W:      http://linuxtv.org/
6214 W:      http://github.com/mkrufky
6215 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6216 T:      git git://linuxtv.org/mkrufky/tuners.git
6217 S:      Maintained
6218 F:      drivers/media/dvb-frontends/lgdt3305.*
6219
6220 LGUEST
6221 M:      Rusty Russell <rusty@rustcorp.com.au>
6222 L:      lguest@lists.ozlabs.org
6223 W:      http://lguest.ozlabs.org/
6224 S:      Odd Fixes
6225 F:      arch/x86/include/asm/lguest*.h
6226 F:      arch/x86/lguest/
6227 F:      drivers/lguest/
6228 F:      include/linux/lguest*.h
6229 F:      tools/lguest/
6230
6231 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
6232 M:      Tejun Heo <tj@kernel.org>
6233 L:      linux-ide@vger.kernel.org
6234 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6235 S:      Maintained
6236 F:      drivers/ata/
6237 F:      include/linux/ata.h
6238 F:      include/linux/libata.h
6239
6240 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
6241 M:      Viresh Kumar <vireshk@kernel.org>
6242 L:      linux-ide@vger.kernel.org
6243 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6244 S:      Maintained
6245 F:      include/linux/pata_arasan_cf_data.h
6246 F:      drivers/ata/pata_arasan_cf.c
6247
6248 LIBATA PATA DRIVERS
6249 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6250 M:      Tejun Heo <tj@kernel.org>
6251 L:      linux-ide@vger.kernel.org
6252 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6253 S:      Maintained
6254 F:      drivers/ata/pata_*.c
6255 F:      drivers/ata/ata_generic.c
6256
6257 LIBATA SATA AHCI PLATFORM devices support
6258 M:      Hans de Goede <hdegoede@redhat.com>
6259 M:      Tejun Heo <tj@kernel.org>
6260 L:      linux-ide@vger.kernel.org
6261 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6262 S:      Maintained
6263 F:      drivers/ata/ahci_platform.c
6264 F:      drivers/ata/libahci_platform.c
6265 F:      include/linux/ahci_platform.h
6266
6267 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
6268 M:      Mikael Pettersson <mikpelinux@gmail.com>
6269 L:      linux-ide@vger.kernel.org
6270 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6271 S:      Maintained
6272 F:      drivers/ata/sata_promise.*
6273
6274 LIBLOCKDEP
6275 M:      Sasha Levin <sasha.levin@oracle.com>
6276 S:      Maintained
6277 F:      tools/lib/lockdep/
6278
6279 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
6280 M:      Dan Williams <dan.j.williams@intel.com>
6281 L:      linux-nvdimm@lists.01.org
6282 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6283 S:      Supported
6284 F:      drivers/nvdimm/*
6285 F:      include/linux/nd.h
6286 F:      include/linux/libnvdimm.h
6287 F:      include/uapi/linux/ndctl.h
6288
6289 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
6290 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6291 L:      linux-nvdimm@lists.01.org
6292 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6293 S:      Supported
6294 F:      drivers/nvdimm/blk.c
6295 F:      drivers/nvdimm/region_devs.c
6296 F:      drivers/acpi/nfit*
6297
6298 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
6299 M:      Vishal Verma <vishal.l.verma@intel.com>
6300 L:      linux-nvdimm@lists.01.org
6301 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6302 S:      Supported
6303 F:      drivers/nvdimm/btt*
6304
6305 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
6306 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6307 L:      linux-nvdimm@lists.01.org
6308 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6309 S:      Supported
6310 F:      drivers/nvdimm/pmem.c
6311 F:      include/linux/pmem.h
6312 F:      arch/*/include/asm/pmem.h
6313
6314 LINUX FOR IBM pSERIES (RS/6000)
6315 M:      Paul Mackerras <paulus@au.ibm.com>
6316 W:      http://www.ibm.com/linux/ltc/projects/ppc
6317 S:      Supported
6318 F:      arch/powerpc/boot/rs6000.h
6319
6320 LINUX FOR POWERPC (32-BIT AND 64-BIT)
6321 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6322 M:      Paul Mackerras <paulus@samba.org>
6323 M:      Michael Ellerman <mpe@ellerman.id.au>
6324 W:      http://www.penguinppc.org/
6325 L:      linuxppc-dev@lists.ozlabs.org
6326 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
6327 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
6328 S:      Supported
6329 F:      Documentation/powerpc/
6330 F:      arch/powerpc/
6331
6332 LINUX FOR POWER MACINTOSH
6333 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6334 W:      http://www.penguinppc.org/
6335 L:      linuxppc-dev@lists.ozlabs.org
6336 S:      Maintained
6337 F:      arch/powerpc/platforms/powermac/
6338 F:      drivers/macintosh/
6339
6340 LINUX FOR POWERPC EMBEDDED MPC5XXX
6341 M:      Anatolij Gustschin <agust@denx.de>
6342 L:      linuxppc-dev@lists.ozlabs.org
6343 T:      git git://git.denx.de/linux-denx-agust.git
6344 S:      Maintained
6345 F:      arch/powerpc/platforms/512x/
6346 F:      arch/powerpc/platforms/52xx/
6347
6348 LINUX FOR POWERPC EMBEDDED PPC4XX
6349 M:      Alistair Popple <alistair@popple.id.au>
6350 M:      Matt Porter <mporter@kernel.crashing.org>
6351 W:      http://www.penguinppc.org/
6352 L:      linuxppc-dev@lists.ozlabs.org
6353 S:      Maintained
6354 F:      arch/powerpc/platforms/40x/
6355 F:      arch/powerpc/platforms/44x/
6356
6357 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
6358 L:      linuxppc-dev@lists.ozlabs.org
6359 S:      Orphan
6360 F:      arch/powerpc/*/*virtex*
6361 F:      arch/powerpc/*/*/*virtex*
6362
6363 LINUX FOR POWERPC EMBEDDED PPC8XX
6364 M:      Vitaly Bordug <vitb@kernel.crashing.org>
6365 W:      http://www.penguinppc.org/
6366 L:      linuxppc-dev@lists.ozlabs.org
6367 S:      Maintained
6368 F:      arch/powerpc/platforms/8xx/
6369
6370 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
6371 M:      Scott Wood <scottwood@freescale.com>
6372 M:      Kumar Gala <galak@kernel.crashing.org>
6373 W:      http://www.penguinppc.org/
6374 L:      linuxppc-dev@lists.ozlabs.org
6375 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
6376 S:      Maintained
6377 F:      arch/powerpc/platforms/83xx/
6378 F:      arch/powerpc/platforms/85xx/
6379
6380 LINUX FOR POWERPC PA SEMI PWRFICIENT
6381 M:      Olof Johansson <olof@lixom.net>
6382 L:      linuxppc-dev@lists.ozlabs.org
6383 S:      Maintained
6384 F:      arch/powerpc/platforms/pasemi/
6385 F:      drivers/*/*pasemi*
6386 F:      drivers/*/*/*pasemi*
6387
6388 LINUX SECURITY MODULE (LSM) FRAMEWORK
6389 M:      Chris Wright <chrisw@sous-sol.org>
6390 L:      linux-security-module@vger.kernel.org
6391 S:      Supported
6392
6393 LIS3LV02D ACCELEROMETER DRIVER
6394 M:      Eric Piel <eric.piel@tremplin-utc.net>
6395 S:      Maintained
6396 F:      Documentation/misc-devices/lis3lv02d
6397 F:      drivers/misc/lis3lv02d/
6398 F:      drivers/platform/x86/hp_accel.c
6399
6400 LIVE PATCHING
6401 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6402 M:      Seth Jennings <sjenning@redhat.com>
6403 M:      Jiri Kosina <jikos@kernel.org>
6404 M:      Vojtech Pavlik <vojtech@suse.com>
6405 S:      Maintained
6406 F:      kernel/livepatch/
6407 F:      include/linux/livepatch.h
6408 F:      arch/x86/include/asm/livepatch.h
6409 F:      arch/x86/kernel/livepatch.c
6410 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
6411 F:      samples/livepatch/
6412 L:      live-patching@vger.kernel.org
6413 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
6414
6415 LLC (802.2)
6416 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
6417 S:      Maintained
6418 F:      include/linux/llc.h
6419 F:      include/uapi/linux/llc.h
6420 F:      include/net/llc*
6421 F:      net/llc/
6422
6423 LM73 HARDWARE MONITOR DRIVER
6424 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
6425 L:      lm-sensors@lm-sensors.org
6426 S:      Maintained
6427 F:      drivers/hwmon/lm73.c
6428
6429 LM78 HARDWARE MONITOR DRIVER
6430 M:      Jean Delvare <jdelvare@suse.com>
6431 L:      lm-sensors@lm-sensors.org
6432 S:      Maintained
6433 F:      Documentation/hwmon/lm78
6434 F:      drivers/hwmon/lm78.c
6435
6436 LM83 HARDWARE MONITOR DRIVER
6437 M:      Jean Delvare <jdelvare@suse.com>
6438 L:      lm-sensors@lm-sensors.org
6439 S:      Maintained
6440 F:      Documentation/hwmon/lm83
6441 F:      drivers/hwmon/lm83.c
6442
6443 LM90 HARDWARE MONITOR DRIVER
6444 M:      Jean Delvare <jdelvare@suse.com>
6445 L:      lm-sensors@lm-sensors.org
6446 S:      Maintained
6447 F:      Documentation/hwmon/lm90
6448 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
6449 F:      drivers/hwmon/lm90.c
6450
6451 LM95234 HARDWARE MONITOR DRIVER
6452 M:      Guenter Roeck <linux@roeck-us.net>
6453 L:      lm-sensors@lm-sensors.org
6454 S:      Maintained
6455 F:      Documentation/hwmon/lm95234
6456 F:      drivers/hwmon/lm95234.c
6457
6458 LME2510 MEDIA DRIVER
6459 M:      Malcolm Priestley <tvboxspy@gmail.com>
6460 L:      linux-media@vger.kernel.org
6461 W:      http://linuxtv.org/
6462 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6463 S:      Maintained
6464 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
6465
6466 LOCKDEP AND LOCKSTAT
6467 M:      Peter Zijlstra <peterz@infradead.org>
6468 M:      Ingo Molnar <mingo@redhat.com>
6469 L:      linux-kernel@vger.kernel.org
6470 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
6471 S:      Maintained
6472 F:      Documentation/locking/lockdep*.txt
6473 F:      Documentation/locking/lockstat.txt
6474 F:      include/linux/lockdep.h
6475 F:      kernel/locking/
6476
6477 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
6478 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
6479 L:      linux-ntfs-dev@lists.sourceforge.net
6480 W:      http://www.linux-ntfs.org/content/view/19/37/
6481 S:      Maintained
6482 F:      Documentation/ldm.txt
6483 F:      block/partitions/ldm.*
6484
6485 LogFS
6486 M:      Joern Engel <joern@logfs.org>
6487 M:      Prasad Joshi <prasadjoshi.linux@gmail.com>
6488 L:      logfs@logfs.org
6489 W:      logfs.org
6490 S:      Maintained
6491 F:      fs/logfs/
6492
6493 LPC32XX MACHINE SUPPORT
6494 M:      Roland Stigge <stigge@antcom.de>
6495 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6496 S:      Maintained
6497 F:      arch/arm/mach-lpc32xx/
6498
6499 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
6500 M:      Nagalakshmi Nandigama <nagalakshmi.nandigama@avagotech.com>
6501 M:      Praveen Krishnamoorthy <praveen.krishnamoorthy@avagotech.com>
6502 M:      Sreekanth Reddy <sreekanth.reddy@avagotech.com>
6503 M:      Abhijit Mahajan <abhijit.mahajan@avagotech.com>
6504 L:      MPT-FusionLinux.pdl@avagotech.com
6505 L:      linux-scsi@vger.kernel.org
6506 W:      http://www.lsilogic.com/support
6507 S:      Supported
6508 F:      drivers/message/fusion/
6509 F:      drivers/scsi/mpt2sas/
6510 F:      drivers/scsi/mpt3sas/
6511
6512 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
6513 M:      Matthew Wilcox <matthew@wil.cx>
6514 L:      linux-scsi@vger.kernel.org
6515 S:      Maintained
6516 F:      drivers/scsi/sym53c8xx_2/
6517
6518 LTC4261 HARDWARE MONITOR DRIVER
6519 M:      Guenter Roeck <linux@roeck-us.net>
6520 L:      lm-sensors@lm-sensors.org
6521 S:      Maintained
6522 F:      Documentation/hwmon/ltc4261
6523 F:      drivers/hwmon/ltc4261.c
6524
6525 LTP (Linux Test Project)
6526 M:      Mike Frysinger <vapier@gentoo.org>
6527 M:      Cyril Hrubis <chrubis@suse.cz>
6528 M:      Wanlong Gao <wanlong.gao@gmail.com>
6529 M:      Jan Stancek <jstancek@redhat.com>
6530 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
6531 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
6532 L:      ltp@lists.linux.it (subscribers-only)
6533 W:      http://linux-test-project.github.io/
6534 T:      git git://github.com/linux-test-project/ltp.git
6535 S:      Maintained
6536
6537 M32R ARCHITECTURE
6538 W:      http://www.linux-m32r.org/
6539 S:      Orphan
6540 F:      arch/m32r/
6541
6542 M68K ARCHITECTURE
6543 M:      Geert Uytterhoeven <geert@linux-m68k.org>
6544 L:      linux-m68k@lists.linux-m68k.org
6545 W:      http://www.linux-m68k.org/
6546 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
6547 S:      Maintained
6548 F:      arch/m68k/
6549 F:      drivers/zorro/
6550
6551 M68K ON APPLE MACINTOSH
6552 M:      Joshua Thompson <funaho@jurai.org>
6553 W:      http://www.mac.linux-m68k.org/
6554 L:      linux-m68k@lists.linux-m68k.org
6555 S:      Maintained
6556 F:      arch/m68k/mac/
6557
6558 M68K ON HP9000/300
6559 M:      Philip Blundell <philb@gnu.org>
6560 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
6561 S:      Maintained
6562 F:      arch/m68k/hp300/
6563
6564 M88DS3103 MEDIA DRIVER
6565 M:      Antti Palosaari <crope@iki.fi>
6566 L:      linux-media@vger.kernel.org
6567 W:      http://linuxtv.org/
6568 W:      http://palosaari.fi/linux/
6569 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6570 T:      git git://linuxtv.org/anttip/media_tree.git
6571 S:      Maintained
6572 F:      drivers/media/dvb-frontends/m88ds3103*
6573
6574 M88RS2000 MEDIA DRIVER
6575 M:      Malcolm Priestley <tvboxspy@gmail.com>
6576 L:      linux-media@vger.kernel.org
6577 W:      http://linuxtv.org/
6578 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6579 S:      Maintained
6580 F:      drivers/media/dvb-frontends/m88rs2000*
6581
6582 MA901 MASTERKIT USB FM RADIO DRIVER
6583 M:      Alexey Klimov <klimov.linux@gmail.com>
6584 L:      linux-media@vger.kernel.org
6585 T:      git git://linuxtv.org/media_tree.git
6586 S:      Maintained
6587 F:      drivers/media/radio/radio-ma901.c
6588
6589 MAC80211
6590 M:      Johannes Berg <johannes@sipsolutions.net>
6591 L:      linux-wireless@vger.kernel.org
6592 W:      http://wireless.kernel.org/
6593 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6594 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
6595 S:      Maintained
6596 F:      Documentation/networking/mac80211-injection.txt
6597 F:      include/net/mac80211.h
6598 F:      net/mac80211/
6599
6600 MACVLAN DRIVER
6601 M:      Patrick McHardy <kaber@trash.net>
6602 L:      netdev@vger.kernel.org
6603 S:      Maintained
6604 F:      drivers/net/macvlan.c
6605 F:      include/linux/if_macvlan.h
6606
6607 MAILBOX API
6608 M:      Jassi Brar <jassisinghbrar@gmail.com>
6609 L:      linux-kernel@vger.kernel.org
6610 S:      Maintained
6611 F:      drivers/mailbox/
6612 F:      include/linux/mailbox_client.h
6613 F:      include/linux/mailbox_controller.h
6614
6615 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
6616 M:      Michael Kerrisk <mtk.manpages@gmail.com>
6617 W:      http://www.kernel.org/doc/man-pages
6618 L:      linux-man@vger.kernel.org
6619 S:      Maintained
6620
6621 MARVELL ARMADA DRM SUPPORT
6622 M:      Russell King <rmk+kernel@arm.linux.org.uk>
6623 S:      Maintained
6624 F:      drivers/gpu/drm/armada/
6625
6626 MARVELL 88E6352 DSA support
6627 M:      Guenter Roeck <linux@roeck-us.net>
6628 S:      Maintained
6629 F:      drivers/net/dsa/mv88e6352.c
6630
6631 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
6632 M:      Mirko Lindner <mlindner@marvell.com>
6633 M:      Stephen Hemminger <stephen@networkplumber.org>
6634 L:      netdev@vger.kernel.org
6635 S:      Maintained
6636 F:      drivers/net/ethernet/marvell/sk*
6637
6638 MARVELL LIBERTAS WIRELESS DRIVER
6639 L:      libertas-dev@lists.infradead.org
6640 S:      Orphan
6641 F:      drivers/net/wireless/libertas/
6642
6643 MARVELL MV643XX ETHERNET DRIVER
6644 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
6645 L:      netdev@vger.kernel.org
6646 S:      Maintained
6647 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
6648 F:      include/linux/mv643xx.h
6649
6650 MARVELL MVNETA ETHERNET DRIVER
6651 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
6652 L:      netdev@vger.kernel.org
6653 S:      Maintained
6654 F:      drivers/net/ethernet/marvell/mvneta.*
6655
6656 MARVELL MWIFIEX WIRELESS DRIVER
6657 M:      Amitkumar Karwar <akarwar@marvell.com>
6658 M:      Nishant Sarmukadam <nishants@marvell.com>
6659 L:      linux-wireless@vger.kernel.org
6660 S:      Maintained
6661 F:      drivers/net/wireless/mwifiex/
6662
6663 MARVELL MWL8K WIRELESS DRIVER
6664 M:      Lennert Buytenhek <buytenh@wantstofly.org>
6665 L:      linux-wireless@vger.kernel.org
6666 S:      Odd Fixes
6667 F:      drivers/net/wireless/mwl8k.c
6668
6669 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
6670 M:      Nicolas Pitre <nico@fluxnic.net>
6671 S:      Odd Fixes
6672 F:      drivers/mmc/host/mvsdio.*
6673
6674 MATROX FRAMEBUFFER DRIVER
6675 L:      linux-fbdev@vger.kernel.org
6676 S:      Orphan
6677 F:      drivers/video/fbdev/matrox/matroxfb_*
6678 F:      include/uapi/linux/matroxfb.h
6679
6680 MAX16065 HARDWARE MONITOR DRIVER
6681 M:      Guenter Roeck <linux@roeck-us.net>
6682 L:      lm-sensors@lm-sensors.org
6683 S:      Maintained
6684 F:      Documentation/hwmon/max16065
6685 F:      drivers/hwmon/max16065.c
6686
6687 MAX20751 HARDWARE MONITOR DRIVER
6688 M:      Guenter Roeck <linux@roeck-us.net>
6689 L:      lm-sensors@lm-sensors.org
6690 S:      Maintained
6691 F:      Documentation/hwmon/max20751
6692 F:      drivers/hwmon/max20751.c
6693
6694 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6695 M:      "Hans J. Koch" <hjk@hansjkoch.de>
6696 L:      lm-sensors@lm-sensors.org
6697 S:      Maintained
6698 F:      Documentation/hwmon/max6650
6699 F:      drivers/hwmon/max6650.c
6700
6701 MAX6697 HARDWARE MONITOR DRIVER
6702 M:      Guenter Roeck <linux@roeck-us.net>
6703 L:      lm-sensors@lm-sensors.org
6704 S:      Maintained
6705 F:      Documentation/hwmon/max6697
6706 F:      Documentation/devicetree/bindings/i2c/max6697.txt
6707 F:      drivers/hwmon/max6697.c
6708 F:      include/linux/platform_data/max6697.h
6709
6710 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
6711 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6712 L:      linux-pm@vger.kernel.org
6713 S:      Supported
6714 F:      drivers/power/max14577_charger.c
6715 F:      drivers/power/max77693_charger.c
6716
6717 MAXIM MAX77802 MULTIFUNCTION PMIC DEVICE DRIVERS
6718 M:      Javier Martinez Canillas <javier@osg.samsung.com>
6719 L:      linux-kernel@vger.kernel.org
6720 S:      Supported
6721 F:      drivers/*/*max77802.c
6722 F:      Documentation/devicetree/bindings/*/*max77802.txt
6723 F:      include/dt-bindings/*/*max77802.h
6724
6725 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
6726 M:      Chanwoo Choi <cw00.choi@samsung.com>
6727 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6728 L:      linux-kernel@vger.kernel.org
6729 S:      Supported
6730 F:      drivers/*/max14577.c
6731 F:      drivers/*/max77686.c
6732 F:      drivers/*/max77693.c
6733 F:      drivers/extcon/extcon-max14577.c
6734 F:      drivers/extcon/extcon-max77693.c
6735 F:      drivers/rtc/rtc-max77686.c
6736 F:      drivers/clk/clk-max77686.c
6737 F:      Documentation/devicetree/bindings/mfd/max14577.txt
6738 F:      Documentation/devicetree/bindings/*/max77686.txt
6739 F:      Documentation/devicetree/bindings/mfd/max77693.txt
6740 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
6741 F:      include/linux/mfd/max14577*.h
6742 F:      include/linux/mfd/max77686*.h
6743 F:      include/linux/mfd/max77693*.h
6744
6745 MAXIRADIO FM RADIO RECEIVER DRIVER
6746 M:      Hans Verkuil <hverkuil@xs4all.nl>
6747 L:      linux-media@vger.kernel.org
6748 T:      git git://linuxtv.org/media_tree.git
6749 W:      http://linuxtv.org
6750 S:      Maintained
6751 F:      drivers/media/radio/radio-maxiradio*
6752
6753 MEDIA DRIVERS FOR RENESAS - VSP1
6754 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6755 L:      linux-media@vger.kernel.org
6756 L:      linux-sh@vger.kernel.org
6757 T:      git git://linuxtv.org/media_tree.git
6758 S:      Supported
6759 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
6760 F:      drivers/media/platform/vsp1/
6761
6762 MEDIA DRIVERS FOR ASCOT2E
6763 M:      Sergey Kozlov <serjk@netup.ru>
6764 L:      linux-media@vger.kernel.org
6765 W:      http://linuxtv.org
6766 W:      http://netup.tv/
6767 T:      git git://linuxtv.org/media_tree.git
6768 S:      Supported
6769 F:      drivers/media/dvb-frontends/ascot2e*
6770
6771 MEDIA DRIVERS FOR CXD2841ER
6772 M:      Sergey Kozlov <serjk@netup.ru>
6773 L:      linux-media@vger.kernel.org
6774 W:      http://linuxtv.org/
6775 W:      http://netup.tv/
6776 T:      git git://linuxtv.org/media_tree.git
6777 S:      Supported
6778 F:      drivers/media/dvb-frontends/cxd2841er*
6779
6780 MEDIA DRIVERS FOR HORUS3A
6781 M:      Sergey Kozlov <serjk@netup.ru>
6782 L:      linux-media@vger.kernel.org
6783 W:      http://linuxtv.org/
6784 W:      http://netup.tv/
6785 T:      git git://linuxtv.org/media_tree.git
6786 S:      Supported
6787 F:      drivers/media/dvb-frontends/horus3a*
6788
6789 MEDIA DRIVERS FOR LNBH25
6790 M:      Sergey Kozlov <serjk@netup.ru>
6791 L:      linux-media@vger.kernel.org
6792 W:      http://linuxtv.org/
6793 W:      http://netup.tv/
6794 T:      git git://linuxtv.org/media_tree.git
6795 S:      Supported
6796 F:      drivers/media/dvb-frontends/lnbh25*
6797
6798 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
6799 M:      Sergey Kozlov <serjk@netup.ru>
6800 L:      linux-media@vger.kernel.org
6801 W:      http://linuxtv.org/
6802 W:      http://netup.tv/
6803 T:      git git://linuxtv.org/media_tree.git
6804 S:      Supported
6805 F:      drivers/media/pci/netup_unidvb/*
6806
6807 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
6808 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
6809 P:      LinuxTV.org Project
6810 L:      linux-media@vger.kernel.org
6811 W:      http://linuxtv.org
6812 Q:      http://patchwork.kernel.org/project/linux-media/list/
6813 T:      git git://linuxtv.org/media_tree.git
6814 S:      Maintained
6815 F:      Documentation/dvb/
6816 F:      Documentation/video4linux/
6817 F:      Documentation/DocBook/media/
6818 F:      drivers/media/
6819 F:      drivers/staging/media/
6820 F:      include/media/
6821 F:      include/uapi/linux/dvb/
6822 F:      include/uapi/linux/videodev2.h
6823 F:      include/uapi/linux/media.h
6824 F:      include/uapi/linux/v4l2-*
6825 F:      include/uapi/linux/meye.h
6826 F:      include/uapi/linux/ivtv*
6827 F:      include/uapi/linux/uvcvideo.h
6828
6829 MEDIATEK MT7601U WIRELESS LAN DRIVER
6830 M:      Jakub Kicinski <kubakici@wp.pl>
6831 L:      linux-wireless@vger.kernel.org
6832 S:      Maintained
6833 F:      drivers/net/wireless/mediatek/mt7601u/
6834
6835 MEGARAID SCSI/SAS DRIVERS
6836 M:      Kashyap Desai <kashyap.desai@avagotech.com>
6837 M:      Sumit Saxena <sumit.saxena@avagotech.com>
6838 M:      Uday Lingala <uday.lingala@avagotech.com>
6839 L:      megaraidlinux.pdl@avagotech.com
6840 L:      linux-scsi@vger.kernel.org
6841 W:      http://www.lsi.com
6842 S:      Maintained
6843 F:      Documentation/scsi/megaraid.txt
6844 F:      drivers/scsi/megaraid.*
6845 F:      drivers/scsi/megaraid/
6846
6847 MELLANOX ETHERNET DRIVER (mlx4_en)
6848 M:      Amir Vadai <amirv@mellanox.com>
6849 L:      netdev@vger.kernel.org
6850 S:      Supported
6851 W:      http://www.mellanox.com
6852 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6853 F:      drivers/net/ethernet/mellanox/mlx4/en_*
6854
6855 MELLANOX ETHERNET SWITCH DRIVERS
6856 M:      Jiri Pirko <jiri@mellanox.com>
6857 M:      Ido Schimmel <idosch@mellanox.com>
6858 L:      netdev@vger.kernel.org
6859 S:      Supported
6860 W:      http://www.mellanox.com
6861 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6862 F:      drivers/net/ethernet/mellanox/mlxsw/
6863
6864 MEMBARRIER SUPPORT
6865 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
6866 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
6867 L:      linux-kernel@vger.kernel.org
6868 S:      Supported
6869 F:      kernel/membarrier.c
6870 F:      include/uapi/linux/membarrier.h
6871
6872 MEMORY MANAGEMENT
6873 L:      linux-mm@kvack.org
6874 W:      http://www.linux-mm.org
6875 S:      Maintained
6876 F:      include/linux/mm.h
6877 F:      include/linux/gfp.h
6878 F:      include/linux/mmzone.h
6879 F:      include/linux/memory_hotplug.h
6880 F:      include/linux/vmalloc.h
6881 F:      mm/
6882
6883 MEMORY TECHNOLOGY DEVICES (MTD)
6884 M:      David Woodhouse <dwmw2@infradead.org>
6885 M:      Brian Norris <computersforpeace@gmail.com>
6886 L:      linux-mtd@lists.infradead.org
6887 W:      http://www.linux-mtd.infradead.org/
6888 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
6889 T:      git git://git.infradead.org/linux-mtd.git
6890 T:      git git://git.infradead.org/l2-mtd.git
6891 S:      Maintained
6892 F:      drivers/mtd/
6893 F:      include/linux/mtd/
6894 F:      include/uapi/mtd/
6895
6896 MEN A21 WATCHDOG DRIVER
6897 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6898 L:      linux-watchdog@vger.kernel.org
6899 S:      Maintained
6900 F:      drivers/watchdog/mena21_wdt.c
6901
6902 MEN CHAMELEON BUS (mcb)
6903 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6904 S:      Maintained
6905 F:      drivers/mcb/
6906 F:      include/linux/mcb.h
6907 F:      Documentation/men-chameleon-bus.txt
6908
6909 MEN F21BMC (Board Management Controller)
6910 M:      Andreas Werner <andreas.werner@men.de>
6911 S:      Supported
6912 F:      drivers/mfd/menf21bmc.c
6913 F:      drivers/watchdog/menf21bmc_wdt.c
6914 F:      drivers/leds/leds-menf21bmc.c
6915 F:      drivers/hwmon/menf21bmc_hwmon.c
6916 F:      Documentation/hwmon/menf21bmc
6917
6918 METAG ARCHITECTURE
6919 M:      James Hogan <james.hogan@imgtec.com>
6920 L:      linux-metag@vger.kernel.org
6921 S:      Supported
6922 F:      arch/metag/
6923 F:      Documentation/metag/
6924 F:      Documentation/devicetree/bindings/metag/
6925 F:      drivers/clocksource/metag_generic.c
6926 F:      drivers/irqchip/irq-metag.c
6927 F:      drivers/irqchip/irq-metag-ext.c
6928 F:      drivers/tty/metag_da.c
6929
6930 MICROBLAZE ARCHITECTURE
6931 M:      Michal Simek <monstr@monstr.eu>
6932 W:      http://www.monstr.eu/fdt/
6933 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
6934 S:      Supported
6935 F:      arch/microblaze/
6936
6937 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
6938 M:      Chen Yu <yu.c.chen@intel.com>
6939 L:      platform-driver-x86@vger.kernel.org
6940 S:      Supported
6941 F:      drivers/platform/x86/surfacepro3_button.c
6942
6943 MICROTEK X6 SCANNER
6944 M:      Oliver Neukum <oliver@neukum.org>
6945 S:      Maintained
6946 F:      drivers/usb/image/microtek.*
6947
6948 MIPS
6949 M:      Ralf Baechle <ralf@linux-mips.org>
6950 L:      linux-mips@linux-mips.org
6951 W:      http://www.linux-mips.org/
6952 T:      git git://git.linux-mips.org/pub/scm/ralf/linux.git
6953 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
6954 S:      Supported
6955 F:      Documentation/mips/
6956 F:      arch/mips/
6957
6958 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
6959 M:      Hans Verkuil <hverkuil@xs4all.nl>
6960 L:      linux-media@vger.kernel.org
6961 T:      git git://linuxtv.org/media_tree.git
6962 W:      http://linuxtv.org
6963 S:      Odd Fixes
6964 F:      drivers/media/radio/radio-miropcm20*
6965
6966 Mellanox MLX5 core VPI driver
6967 M:      Eli Cohen <eli@mellanox.com>
6968 L:      netdev@vger.kernel.org
6969 L:      linux-rdma@vger.kernel.org
6970 W:      http://www.mellanox.com
6971 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6972 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
6973 T:      git git://openfabrics.org/~eli/connect-ib.git
6974 S:      Supported
6975 F:      drivers/net/ethernet/mellanox/mlx5/core/
6976 F:      include/linux/mlx5/
6977
6978 Mellanox MLX5 IB driver
6979 M:      Eli Cohen <eli@mellanox.com>
6980 L:      linux-rdma@vger.kernel.org
6981 W:      http://www.mellanox.com
6982 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
6983 T:      git git://openfabrics.org/~eli/connect-ib.git
6984 S:      Supported
6985 F:      include/linux/mlx5/
6986 F:      drivers/infiniband/hw/mlx5/
6987
6988 MN88472 MEDIA DRIVER
6989 M:      Antti Palosaari <crope@iki.fi>
6990 L:      linux-media@vger.kernel.org
6991 W:      http://linuxtv.org/
6992 W:      http://palosaari.fi/linux/
6993 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6994 T:      git git://linuxtv.org/anttip/media_tree.git
6995 S:      Maintained
6996 F:      drivers/staging/media/mn88472/
6997 F:      drivers/media/dvb-frontends/mn88472.h
6998
6999 MN88473 MEDIA DRIVER
7000 M:      Antti Palosaari <crope@iki.fi>
7001 L:      linux-media@vger.kernel.org
7002 W:      http://linuxtv.org/
7003 W:      http://palosaari.fi/linux/
7004 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7005 T:      git git://linuxtv.org/anttip/media_tree.git
7006 S:      Maintained
7007 F:      drivers/staging/media/mn88473/
7008 F:      drivers/media/dvb-frontends/mn88473.h
7009
7010 MODULE SUPPORT
7011 M:      Rusty Russell <rusty@rustcorp.com.au>
7012 S:      Maintained
7013 F:      include/linux/module.h
7014 F:      kernel/module.c
7015
7016 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
7017 W:      http://popies.net/meye/
7018 S:      Orphan
7019 F:      Documentation/video4linux/meye.txt
7020 F:      drivers/media/pci/meye/
7021 F:      include/uapi/linux/meye.h
7022
7023 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
7024 M:      Jiri Slaby <jirislaby@gmail.com>
7025 S:      Maintained
7026 F:      Documentation/serial/moxa-smartio
7027 F:      drivers/tty/mxser.*
7028
7029 MR800 AVERMEDIA USB FM RADIO DRIVER
7030 M:      Alexey Klimov <klimov.linux@gmail.com>
7031 L:      linux-media@vger.kernel.org
7032 T:      git git://linuxtv.org/media_tree.git
7033 S:      Maintained
7034 F:      drivers/media/radio/radio-mr800.c
7035
7036 MRF24J40 IEEE 802.15.4 RADIO DRIVER
7037 M:      Alan Ott <alan@signal11.us>
7038 L:      linux-wpan@vger.kernel.org
7039 S:      Maintained
7040 F:      drivers/net/ieee802154/mrf24j40.c
7041 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
7042
7043 MSI LAPTOP SUPPORT
7044 M:      "Lee, Chun-Yi" <jlee@suse.com>
7045 L:      platform-driver-x86@vger.kernel.org
7046 S:      Maintained
7047 F:      drivers/platform/x86/msi-laptop.c
7048
7049 MSI WMI SUPPORT
7050 L:      platform-driver-x86@vger.kernel.org
7051 S:      Orphan
7052 F:      drivers/platform/x86/msi-wmi.c
7053
7054 MSI001 MEDIA DRIVER
7055 M:      Antti Palosaari <crope@iki.fi>
7056 L:      linux-media@vger.kernel.org
7057 W:      http://linuxtv.org/
7058 W:      http://palosaari.fi/linux/
7059 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7060 T:      git git://linuxtv.org/anttip/media_tree.git
7061 S:      Maintained
7062 F:      drivers/media/tuners/msi001*
7063
7064 MSI2500 MEDIA DRIVER
7065 M:      Antti Palosaari <crope@iki.fi>
7066 L:      linux-media@vger.kernel.org
7067 W:      http://linuxtv.org/
7068 W:      http://palosaari.fi/linux/
7069 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7070 T:      git git://linuxtv.org/anttip/media_tree.git
7071 S:      Maintained
7072 F:      drivers/media/usb/msi2500/
7073
7074 MSYSTEMS DISKONCHIP G3 MTD DRIVER
7075 M:      Robert Jarzmik <robert.jarzmik@free.fr>
7076 L:      linux-mtd@lists.infradead.org
7077 S:      Maintained
7078 F:      drivers/mtd/devices/docg3*
7079
7080 MT9M032 APTINA SENSOR DRIVER
7081 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7082 L:      linux-media@vger.kernel.org
7083 T:      git git://linuxtv.org/media_tree.git
7084 S:      Maintained
7085 F:      drivers/media/i2c/mt9m032.c
7086 F:      include/media/mt9m032.h
7087
7088 MT9P031 APTINA CAMERA SENSOR
7089 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7090 L:      linux-media@vger.kernel.org
7091 T:      git git://linuxtv.org/media_tree.git
7092 S:      Maintained
7093 F:      drivers/media/i2c/mt9p031.c
7094 F:      include/media/mt9p031.h
7095
7096 MT9T001 APTINA CAMERA SENSOR
7097 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7098 L:      linux-media@vger.kernel.org
7099 T:      git git://linuxtv.org/media_tree.git
7100 S:      Maintained
7101 F:      drivers/media/i2c/mt9t001.c
7102 F:      include/media/mt9t001.h
7103
7104 MT9V032 APTINA CAMERA SENSOR
7105 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7106 L:      linux-media@vger.kernel.org
7107 T:      git git://linuxtv.org/media_tree.git
7108 S:      Maintained
7109 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
7110 F:      drivers/media/i2c/mt9v032.c
7111 F:      include/media/mt9v032.h
7112
7113 MULTIFUNCTION DEVICES (MFD)
7114 M:      Samuel Ortiz <sameo@linux.intel.com>
7115 M:      Lee Jones <lee.jones@linaro.org>
7116 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
7117 S:      Supported
7118 F:      drivers/mfd/
7119 F:      include/linux/mfd/
7120
7121 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
7122 M:      Ulf Hansson <ulf.hansson@linaro.org>
7123 L:      linux-mmc@vger.kernel.org
7124 T:      git git://git.linaro.org/people/ulf.hansson/mmc.git
7125 S:      Maintained
7126 F:      drivers/mmc/
7127 F:      include/linux/mmc/
7128 F:      include/uapi/linux/mmc/
7129
7130 MULTIMEDIA CARD (MMC) ETC. OVER SPI
7131 S:      Orphan
7132 F:      drivers/mmc/host/mmc_spi.c
7133 F:      include/linux/spi/mmc_spi.h
7134
7135 MULTISOUND SOUND DRIVER
7136 M:      Andrew Veliath <andrewtv@usa.net>
7137 S:      Maintained
7138 F:      Documentation/sound/oss/MultiSound
7139 F:      sound/oss/msnd*
7140
7141 MULTITECH MULTIPORT CARD (ISICOM)
7142 S:      Orphan
7143 F:      drivers/tty/isicom.c
7144 F:      include/linux/isicom.h
7145
7146 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
7147 M:      Felipe Balbi <balbi@ti.com>
7148 L:      linux-usb@vger.kernel.org
7149 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7150 S:      Maintained
7151 F:      drivers/usb/musb/
7152
7153 MXL5007T MEDIA DRIVER
7154 M:      Michael Krufky <mkrufky@linuxtv.org>
7155 L:      linux-media@vger.kernel.org
7156 W:      http://linuxtv.org/
7157 W:      http://github.com/mkrufky
7158 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7159 T:      git git://linuxtv.org/mkrufky/tuners.git
7160 S:      Maintained
7161 F:      drivers/media/tuners/mxl5007t.*
7162
7163 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
7164 M:      Hyong-Youb Kim <hykim@myri.com>
7165 L:      netdev@vger.kernel.org
7166 W:      https://www.myricom.com/support/downloads/myri10ge.html
7167 S:      Supported
7168 F:      drivers/net/ethernet/myricom/myri10ge/
7169
7170 NATSEMI ETHERNET DRIVER (DP8381x)
7171 S:      Orphan
7172 F:      drivers/net/ethernet/natsemi/natsemi.c
7173
7174 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
7175 M:      Daniel Mack <zonque@gmail.com>
7176 S:      Maintained
7177 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7178 W:      http://www.native-instruments.com
7179 F:      sound/usb/caiaq/
7180
7181 NCP FILESYSTEM
7182 M:      Petr Vandrovec <petr@vandrovec.name>
7183 S:      Odd Fixes
7184 F:      fs/ncpfs/
7185
7186 NCR 5380 SCSI DRIVERS
7187 M:      Finn Thain <fthain@telegraphics.com.au>
7188 M:      Michael Schmitz <schmitzmic@gmail.com>
7189 L:      linux-scsi@vger.kernel.org
7190 S:      Maintained
7191 F:      Documentation/scsi/g_NCR5380.txt
7192 F:      drivers/scsi/NCR5380.*
7193 F:      drivers/scsi/arm/cumana_1.c
7194 F:      drivers/scsi/arm/oak.c
7195 F:      drivers/scsi/atari_NCR5380.c
7196 F:      drivers/scsi/atari_scsi.*
7197 F:      drivers/scsi/dmx3191d.c
7198 F:      drivers/scsi/dtc.*
7199 F:      drivers/scsi/g_NCR5380.*
7200 F:      drivers/scsi/g_NCR5380_mmio.c
7201 F:      drivers/scsi/mac_scsi.*
7202 F:      drivers/scsi/pas16.*
7203 F:      drivers/scsi/sun3_scsi.*
7204 F:      drivers/scsi/sun3_scsi_vme.c
7205 F:      drivers/scsi/t128.*
7206
7207 NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
7208 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
7209 L:      linux-scsi@vger.kernel.org
7210 S:      Maintained
7211 F:      drivers/scsi/NCR_D700.*
7212
7213 NCT6775 HARDWARE MONITOR DRIVER
7214 M:      Guenter Roeck <linux@roeck-us.net>
7215 L:      lm-sensors@lm-sensors.org
7216 S:      Maintained
7217 F:      Documentation/hwmon/nct6775
7218 F:      drivers/hwmon/nct6775.c
7219
7220 NETEFFECT IWARP RNIC DRIVER (IW_NES)
7221 M:      Faisal Latif <faisal.latif@intel.com>
7222 L:      linux-rdma@vger.kernel.org
7223 W:      http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
7224 S:      Supported
7225 F:      drivers/infiniband/hw/nes/
7226
7227 NETEM NETWORK EMULATOR
7228 M:      Stephen Hemminger <stephen@networkplumber.org>
7229 L:      netem@lists.linux-foundation.org
7230 S:      Maintained
7231 F:      net/sched/sch_netem.c
7232
7233 NETERION 10GbE DRIVERS (s2io/vxge)
7234 M:      Jon Mason <jdmason@kudzu.us>
7235 L:      netdev@vger.kernel.org
7236 S:      Supported
7237 F:      Documentation/networking/s2io.txt
7238 F:      Documentation/networking/vxge.txt
7239 F:      drivers/net/ethernet/neterion/
7240
7241 NETFILTER ({IP,IP6,ARP,EB,NF}TABLES)
7242 M:      Pablo Neira Ayuso <pablo@netfilter.org>
7243 M:      Patrick McHardy <kaber@trash.net>
7244 M:      Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
7245 L:      netfilter-devel@vger.kernel.org
7246 L:      coreteam@netfilter.org
7247 W:      http://www.netfilter.org/
7248 W:      http://www.iptables.org/
7249 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
7250 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
7251 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
7252 S:      Supported
7253 F:      include/linux/netfilter*
7254 F:      include/linux/netfilter/
7255 F:      include/net/netfilter/
7256 F:      include/uapi/linux/netfilter*
7257 F:      include/uapi/linux/netfilter/
7258 F:      net/*/netfilter.c
7259 F:      net/*/netfilter/
7260 F:      net/netfilter/
7261 F:      net/bridge/br_netfilter*.c
7262
7263 NETLABEL
7264 M:      Paul Moore <paul@paul-moore.com>
7265 W:      http://netlabel.sf.net
7266 L:      netdev@vger.kernel.org
7267 S:      Maintained
7268 F:      Documentation/netlabel/
7269 F:      include/net/netlabel.h
7270 F:      net/netlabel/
7271
7272 NETROM NETWORK LAYER
7273 M:      Ralf Baechle <ralf@linux-mips.org>
7274 L:      linux-hams@vger.kernel.org
7275 W:      http://www.linux-ax25.org/
7276 S:      Maintained
7277 F:      include/net/netrom.h
7278 F:      include/uapi/linux/netrom.h
7279 F:      net/netrom/
7280
7281 NETWORK BLOCK DEVICE (NBD)
7282 M:      Markus Pargmann <mpa@pengutronix.de>
7283 S:      Maintained
7284 L:      nbd-general@lists.sourceforge.net
7285 T:      git git://git.pengutronix.de/git/mpa/linux-nbd.git
7286 F:      Documentation/blockdev/nbd.txt
7287 F:      drivers/block/nbd.c
7288 F:      include/uapi/linux/nbd.h
7289
7290 NETWORK DROP MONITOR
7291 M:      Neil Horman <nhorman@tuxdriver.com>
7292 L:      netdev@vger.kernel.org
7293 S:      Maintained
7294 W:      https://fedorahosted.org/dropwatch/
7295 F:      net/core/drop_monitor.c
7296
7297 NETWORKING [GENERAL]
7298 M:      "David S. Miller" <davem@davemloft.net>
7299 L:      netdev@vger.kernel.org
7300 W:      http://www.linuxfoundation.org/en/Net
7301 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7302 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7303 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7304 S:      Maintained
7305 F:      net/
7306 F:      include/net/
7307 F:      include/linux/in.h
7308 F:      include/linux/net.h
7309 F:      include/linux/netdevice.h
7310 F:      include/uapi/linux/in.h
7311 F:      include/uapi/linux/net.h
7312 F:      include/uapi/linux/netdevice.h
7313 F:      include/uapi/linux/net_namespace.h
7314 F:      tools/net/
7315 F:      tools/testing/selftests/net/
7316 F:      lib/random32.c
7317 F:      lib/test_bpf.c
7318
7319 NETWORKING [IPv4/IPv6]
7320 M:      "David S. Miller" <davem@davemloft.net>
7321 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
7322 M:      James Morris <jmorris@namei.org>
7323 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
7324 M:      Patrick McHardy <kaber@trash.net>
7325 L:      netdev@vger.kernel.org
7326 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7327 S:      Maintained
7328 F:      net/ipv4/
7329 F:      net/ipv6/
7330 F:      include/net/ip*
7331 F:      arch/x86/net/*
7332
7333 NETWORKING [IPSEC]
7334 M:      Steffen Klassert <steffen.klassert@secunet.com>
7335 M:      Herbert Xu <herbert@gondor.apana.org.au>
7336 M:      "David S. Miller" <davem@davemloft.net>
7337 L:      netdev@vger.kernel.org
7338 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
7339 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
7340 S:      Maintained
7341 F:      net/core/flow.c
7342 F:      net/xfrm/
7343 F:      net/key/
7344 F:      net/ipv4/xfrm*
7345 F:      net/ipv4/esp4.c
7346 F:      net/ipv4/ah4.c
7347 F:      net/ipv4/ipcomp.c
7348 F:      net/ipv4/ip_vti.c
7349 F:      net/ipv6/xfrm*
7350 F:      net/ipv6/esp6.c
7351 F:      net/ipv6/ah6.c
7352 F:      net/ipv6/ipcomp6.c
7353 F:      net/ipv6/ip6_vti.c
7354 F:      include/uapi/linux/xfrm.h
7355 F:      include/net/xfrm.h
7356
7357 NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
7358 M:      Paul Moore <paul@paul-moore.com>
7359 L:      netdev@vger.kernel.org
7360 S:      Maintained
7361
7362 NETWORKING [WIRELESS]
7363 L:      linux-wireless@vger.kernel.org
7364 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7365
7366 NETWORKING DRIVERS
7367 L:      netdev@vger.kernel.org
7368 W:      http://www.linuxfoundation.org/en/Net
7369 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7370 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7371 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7372 S:      Odd Fixes
7373 F:      drivers/net/
7374 F:      include/linux/if_*
7375 F:      include/linux/netdevice.h
7376 F:      include/linux/etherdevice.h
7377 F:      include/linux/fcdevice.h
7378 F:      include/linux/fddidevice.h
7379 F:      include/linux/hippidevice.h
7380 F:      include/linux/inetdevice.h
7381 F:      include/uapi/linux/if_*
7382 F:      include/uapi/linux/netdevice.h
7383
7384 NETWORKING DRIVERS (WIRELESS)
7385 M:      Kalle Valo <kvalo@codeaurora.org>
7386 L:      linux-wireless@vger.kernel.org
7387 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7388 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git/
7389 S:      Maintained
7390 F:      drivers/net/wireless/
7391
7392 NETXEN (1/10) GbE SUPPORT
7393 M:      Manish Chopra <manish.chopra@qlogic.com>
7394 M:      Sony Chacko <sony.chacko@qlogic.com>
7395 M:      Rajesh Borundia <rajesh.borundia@qlogic.com>
7396 L:      netdev@vger.kernel.org
7397 W:      http://www.qlogic.com
7398 S:      Supported
7399 F:      drivers/net/ethernet/qlogic/netxen/
7400
7401 NFC SUBSYSTEM
7402 M:      Lauro Ramos Venancio <lauro.venancio@openbossa.org>
7403 M:      Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
7404 M:      Samuel Ortiz <sameo@linux.intel.com>
7405 L:      linux-wireless@vger.kernel.org
7406 L:      linux-nfc@lists.01.org (subscribers-only)
7407 S:      Supported
7408 F:      net/nfc/
7409 F:      include/net/nfc/
7410 F:      include/uapi/linux/nfc.h
7411 F:      drivers/nfc/
7412 F:      include/linux/platform_data/pn544.h
7413 F:      Documentation/devicetree/bindings/net/nfc/
7414
7415 NFS, SUNRPC, AND LOCKD CLIENTS
7416 M:      Trond Myklebust <trond.myklebust@primarydata.com>
7417 M:      Anna Schumaker <anna.schumaker@netapp.com>
7418 L:      linux-nfs@vger.kernel.org
7419 W:      http://client.linux-nfs.org
7420 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
7421 S:      Maintained
7422 F:      fs/lockd/
7423 F:      fs/nfs/
7424 F:      fs/nfs_common/
7425 F:      net/sunrpc/
7426 F:      include/linux/lockd/
7427 F:      include/linux/nfs*
7428 F:      include/linux/sunrpc/
7429 F:      include/uapi/linux/nfs*
7430 F:      include/uapi/linux/sunrpc/
7431
7432 NILFS2 FILESYSTEM
7433 M:      Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
7434 L:      linux-nilfs@vger.kernel.org
7435 W:      http://nilfs.sourceforge.net/
7436 T:      git git://github.com/konis/nilfs2.git
7437 S:      Supported
7438 F:      Documentation/filesystems/nilfs2.txt
7439 F:      fs/nilfs2/
7440 F:      include/linux/nilfs2_fs.h
7441
7442 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
7443 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7444 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7445 S:      Maintained
7446 F:      Documentation/scsi/NinjaSCSI.txt
7447 F:      drivers/scsi/pcmcia/nsp_*
7448
7449 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
7450 M:      GOTO Masanori <gotom@debian.or.jp>
7451 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7452 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7453 S:      Maintained
7454 F:      Documentation/scsi/NinjaSCSI.txt
7455 F:      drivers/scsi/nsp32*
7456
7457 NIOS2 ARCHITECTURE
7458 M:      Ley Foon Tan <lftan@altera.com>
7459 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
7460 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
7461 S:      Maintained
7462 F:      arch/nios2/
7463
7464 NOKIA N900 POWER SUPPLY DRIVERS
7465 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
7466 S:      Maintained
7467 F:      include/linux/power/bq2415x_charger.h
7468 F:      include/linux/power/bq27x00_battery.h
7469 F:      include/linux/power/isp1704_charger.h
7470 F:      drivers/power/bq2415x_charger.c
7471 F:      drivers/power/bq27x00_battery.c
7472 F:      drivers/power/isp1704_charger.c
7473 F:      drivers/power/rx51_battery.c
7474
7475 NTB DRIVER CORE
7476 M:      Jon Mason <jdmason@kudzu.us>
7477 M:      Dave Jiang <dave.jiang@intel.com>
7478 M:      Allen Hubbe <Allen.Hubbe@emc.com>
7479 L:      linux-ntb@googlegroups.com
7480 S:      Supported
7481 W:      https://github.com/jonmason/ntb/wiki
7482 T:      git git://github.com/jonmason/ntb.git
7483 F:      drivers/ntb/
7484 F:      drivers/net/ntb_netdev.c
7485 F:      include/linux/ntb.h
7486 F:      include/linux/ntb_transport.h
7487
7488 NTB INTEL DRIVER
7489 M:      Jon Mason <jdmason@kudzu.us>
7490 M:      Dave Jiang <dave.jiang@intel.com>
7491 L:      linux-ntb@googlegroups.com
7492 S:      Supported
7493 W:      https://github.com/jonmason/ntb/wiki
7494 T:      git git://github.com/jonmason/ntb.git
7495 F:      drivers/ntb/hw/intel/
7496
7497 NTFS FILESYSTEM
7498 M:      Anton Altaparmakov <anton@tuxera.com>
7499 L:      linux-ntfs-dev@lists.sourceforge.net
7500 W:      http://www.tuxera.com/
7501 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
7502 S:      Supported
7503 F:      Documentation/filesystems/ntfs.txt
7504 F:      fs/ntfs/
7505
7506 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
7507 M:      Antonino Daplas <adaplas@gmail.com>
7508 L:      linux-fbdev@vger.kernel.org
7509 S:      Maintained
7510 F:      drivers/video/fbdev/riva/
7511 F:      drivers/video/fbdev/nvidia/
7512
7513 NVM EXPRESS DRIVER
7514 M:      Matthew Wilcox <willy@linux.intel.com>
7515 L:      linux-nvme@lists.infradead.org
7516 T:      git git://git.infradead.org/users/willy/linux-nvme.git
7517 S:      Supported
7518 F:      drivers/block/nvme*
7519 F:      include/linux/nvme.h
7520
7521 NVMEM FRAMEWORK
7522 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
7523 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
7524 S:      Maintained
7525 F:      drivers/nvmem/
7526 F:      Documentation/devicetree/bindings/nvmem/
7527 F:      include/linux/nvmem-consumer.h
7528 F:      include/linux/nvmem-provider.h
7529
7530 NXP-NCI NFC DRIVER
7531 M:      ClĂ©ment Perrochaud <clement.perrochaud@effinnov.com>
7532 R:      Charles Gorand <charles.gorand@effinnov.com>
7533 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
7534 S:      Supported
7535 F:      drivers/nfc/nxp-nci
7536
7537 NXP TDA998X DRM DRIVER
7538 M:      Russell King <rmk+kernel@arm.linux.org.uk>
7539 S:      Supported
7540 F:      drivers/gpu/drm/i2c/tda998x_drv.c
7541 F:      include/drm/i2c/tda998x.h
7542
7543 NXP TFA9879 DRIVER
7544 M:      Peter Rosin <peda@axentia.se>
7545 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7546 S:      Maintained
7547 F:      sound/soc/codecs/tfa9879*
7548
7549 OMAP SUPPORT
7550 M:      Tony Lindgren <tony@atomide.com>
7551 L:      linux-omap@vger.kernel.org
7552 W:      http://www.muru.com/linux/omap/
7553 W:      http://linux.omap.com/
7554 Q:      http://patchwork.kernel.org/project/linux-omap/list/
7555 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
7556 S:      Maintained
7557 F:      arch/arm/*omap*/
7558 F:      arch/arm/configs/omap1_defconfig
7559 F:      arch/arm/configs/omap2plus_defconfig
7560 F:      drivers/i2c/busses/i2c-omap.c
7561 F:      drivers/irqchip/irq-omap-intc.c
7562 F:      drivers/mfd/*omap*.c
7563 F:      drivers/mfd/menelaus.c
7564 F:      drivers/mfd/palmas.c
7565 F:      drivers/mfd/tps65217.c
7566 F:      drivers/mfd/tps65218.c
7567 F:      drivers/mfd/tps65910.c
7568 F:      drivers/mfd/twl-core.[ch]
7569 F:      drivers/mfd/twl4030*.c
7570 F:      drivers/mfd/twl6030*.c
7571 F:      drivers/mfd/twl6040*.c
7572 F:      drivers/regulator/palmas-regulator*.c
7573 F:      drivers/regulator/pbias-regulator.c
7574 F:      drivers/regulator/tps65217-regulator.c
7575 F:      drivers/regulator/tps65218-regulator.c
7576 F:      drivers/regulator/tps65910-regulator.c
7577 F:      drivers/regulator/twl-regulator.c
7578 F:      include/linux/i2c-omap.h
7579
7580 OMAP DEVICE TREE SUPPORT
7581 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7582 M:      Tony Lindgren <tony@atomide.com>
7583 L:      linux-omap@vger.kernel.org
7584 L:      devicetree@vger.kernel.org
7585 S:      Maintained
7586 F:      arch/arm/boot/dts/*omap*
7587 F:      arch/arm/boot/dts/*am3*
7588 F:      arch/arm/boot/dts/*am4*
7589 F:      arch/arm/boot/dts/*am5*
7590 F:      arch/arm/boot/dts/*dra7*
7591
7592 OMAP CLOCK FRAMEWORK SUPPORT
7593 M:      Paul Walmsley <paul@pwsan.com>
7594 L:      linux-omap@vger.kernel.org
7595 S:      Maintained
7596 F:      arch/arm/*omap*/*clock*
7597
7598 OMAP POWER MANAGEMENT SUPPORT
7599 M:      Kevin Hilman <khilman@deeprootsystems.com>
7600 L:      linux-omap@vger.kernel.org
7601 S:      Maintained
7602 F:      arch/arm/*omap*/*pm*
7603 F:      drivers/cpufreq/omap-cpufreq.c
7604
7605 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
7606 M:      Rajendra Nayak <rnayak@ti.com>
7607 M:      Paul Walmsley <paul@pwsan.com>
7608 L:      linux-omap@vger.kernel.org
7609 S:      Maintained
7610 F:      arch/arm/mach-omap2/prm*
7611
7612 OMAP AUDIO SUPPORT
7613 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
7614 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
7615 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7616 L:      linux-omap@vger.kernel.org
7617 S:      Maintained
7618 F:      sound/soc/omap/
7619
7620 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
7621 M:      Roger Quadros <rogerq@ti.com>
7622 M:      Tony Lindgren <tony@atomide.com>
7623 L:      linux-omap@vger.kernel.org
7624 S:      Maintained
7625 F:      drivers/memory/omap-gpmc.c
7626 F:      arch/arm/mach-omap2/*gpmc*
7627
7628 OMAP FRAMEBUFFER SUPPORT
7629 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
7630 L:      linux-fbdev@vger.kernel.org
7631 L:      linux-omap@vger.kernel.org
7632 S:      Maintained
7633 F:      drivers/video/fbdev/omap/
7634
7635 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
7636 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
7637 L:      linux-omap@vger.kernel.org
7638 L:      linux-fbdev@vger.kernel.org
7639 S:      Maintained
7640 F:      drivers/video/fbdev/omap2/
7641 F:      Documentation/arm/OMAP/DSS
7642
7643 OMAP HARDWARE SPINLOCK SUPPORT
7644 M:      Ohad Ben-Cohen <ohad@wizery.com>
7645 L:      linux-omap@vger.kernel.org
7646 S:      Maintained
7647 F:      drivers/hwspinlock/omap_hwspinlock.c
7648
7649 OMAP MMC SUPPORT
7650 M:      Jarkko Lavinen <jarkko.lavinen@nokia.com>
7651 L:      linux-omap@vger.kernel.org
7652 S:      Maintained
7653 F:      drivers/mmc/host/omap.c
7654
7655 OMAP HS MMC SUPPORT
7656 L:      linux-mmc@vger.kernel.org
7657 L:      linux-omap@vger.kernel.org
7658 S:      Orphan
7659 F:      drivers/mmc/host/omap_hsmmc.c
7660
7661 OMAP RANDOM NUMBER GENERATOR SUPPORT
7662 M:      Deepak Saxena <dsaxena@plexity.net>
7663 S:      Maintained
7664 F:      drivers/char/hw_random/omap-rng.c
7665
7666 OMAP HWMOD SUPPORT
7667 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7668 M:      Paul Walmsley <paul@pwsan.com>
7669 L:      linux-omap@vger.kernel.org
7670 S:      Maintained
7671 F:      arch/arm/mach-omap2/omap_hwmod.*
7672
7673 OMAP HWMOD DATA
7674 M:      Paul Walmsley <paul@pwsan.com>
7675 L:      linux-omap@vger.kernel.org
7676 S:      Maintained
7677 F:      arch/arm/mach-omap2/omap_hwmod*data*
7678
7679 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
7680 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7681 L:      linux-omap@vger.kernel.org
7682 S:      Maintained
7683 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
7684
7685 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
7686 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7687 L:      linux-media@vger.kernel.org
7688 S:      Maintained
7689 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
7690 F:      drivers/media/platform/omap3isp/
7691 F:      drivers/staging/media/omap4iss/
7692
7693 OMAP USB SUPPORT
7694 M:      Felipe Balbi <balbi@ti.com>
7695 L:      linux-usb@vger.kernel.org
7696 L:      linux-omap@vger.kernel.org
7697 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7698 S:      Maintained
7699 F:      drivers/usb/*/*omap*
7700 F:      arch/arm/*omap*/usb*
7701
7702 OMAP GPIO DRIVER
7703 M:      Javier Martinez Canillas <javier@dowhile0.org>
7704 M:      Santosh Shilimkar <ssantosh@kernel.org>
7705 M:      Kevin Hilman <khilman@deeprootsystems.com>
7706 L:      linux-omap@vger.kernel.org
7707 S:      Maintained
7708 F:      drivers/gpio/gpio-omap.c
7709
7710 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
7711 M:      Mark Jackson <mpfj@newflow.co.uk>
7712 L:      linux-omap@vger.kernel.org
7713 S:      Maintained
7714 F:      arch/arm/boot/dts/am335x-nano.dts
7715
7716 OMFS FILESYSTEM
7717 M:      Bob Copeland <me@bobcopeland.com>
7718 L:      linux-karma-devel@lists.sourceforge.net
7719 S:      Maintained
7720 F:      Documentation/filesystems/omfs.txt
7721 F:      fs/omfs/
7722
7723 OMNIKEY CARDMAN 4000 DRIVER
7724 M:      Harald Welte <laforge@gnumonks.org>
7725 S:      Maintained
7726 F:      drivers/char/pcmcia/cm4000_cs.c
7727 F:      include/linux/cm4000_cs.h
7728 F:      include/uapi/linux/cm4000_cs.h
7729
7730 OMNIKEY CARDMAN 4040 DRIVER
7731 M:      Harald Welte <laforge@gnumonks.org>
7732 S:      Maintained
7733 F:      drivers/char/pcmcia/cm4040_cs.*
7734
7735 OMNIVISION OV7670 SENSOR DRIVER
7736 M:      Jonathan Corbet <corbet@lwn.net>
7737 L:      linux-media@vger.kernel.org
7738 T:      git git://linuxtv.org/media_tree.git
7739 S:      Maintained
7740 F:      drivers/media/i2c/ov7670.c
7741
7742 ONENAND FLASH DRIVER
7743 M:      Kyungmin Park <kyungmin.park@samsung.com>
7744 L:      linux-mtd@lists.infradead.org
7745 S:      Maintained
7746 F:      drivers/mtd/onenand/
7747 F:      include/linux/mtd/onenand*.h
7748
7749 ONSTREAM SCSI TAPE DRIVER
7750 M:      Willem Riede <osst@riede.org>
7751 L:      osst-users@lists.sourceforge.net
7752 L:      linux-scsi@vger.kernel.org
7753 S:      Maintained
7754 F:      Documentation/scsi/osst.txt
7755 F:      drivers/scsi/osst.*
7756 F:      drivers/scsi/osst_*.h
7757 F:      drivers/scsi/st.h
7758
7759 OPENCORES I2C BUS DRIVER
7760 M:      Peter Korsgaard <jacmet@sunsite.dk>
7761 L:      linux-i2c@vger.kernel.org
7762 S:      Maintained
7763 F:      Documentation/i2c/busses/i2c-ocores
7764 F:      drivers/i2c/busses/i2c-ocores.c
7765
7766 OPEN FIRMWARE AND FLATTENED DEVICE TREE
7767 M:      Rob Herring <robh+dt@kernel.org>
7768 M:      Frank Rowand <frowand.list@gmail.com>
7769 M:      Grant Likely <grant.likely@linaro.org>
7770 L:      devicetree@vger.kernel.org
7771 W:      http://www.devicetree.org/
7772 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/glikely/linux.git
7773 S:      Maintained
7774 F:      drivers/of/
7775 F:      include/linux/of*.h
7776 F:      scripts/dtc/
7777
7778 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
7779 M:      Rob Herring <robh+dt@kernel.org>
7780 M:      Pawel Moll <pawel.moll@arm.com>
7781 M:      Mark Rutland <mark.rutland@arm.com>
7782 M:      Ian Campbell <ijc+devicetree@hellion.org.uk>
7783 M:      Kumar Gala <galak@codeaurora.org>
7784 L:      devicetree@vger.kernel.org
7785 S:      Maintained
7786 F:      Documentation/devicetree/
7787 F:      arch/*/boot/dts/
7788 F:      include/dt-bindings/
7789
7790 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
7791 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
7792 L:      devicetree@vger.kernel.org
7793 S:      Maintained
7794 F:      Documentation/devicetree/dynamic-resolution-notes.txt
7795 F:      Documentation/devicetree/overlay-notes.txt
7796 F:      drivers/of/overlay.c
7797 F:      drivers/of/resolver.c
7798
7799 OPENRISC ARCHITECTURE
7800 M:      Jonas Bonn <jonas@southpole.se>
7801 W:      http://openrisc.net
7802 L:      linux@lists.openrisc.net (moderated for non-subscribers)
7803 S:      Maintained
7804 T:      git git://openrisc.net/~jonas/linux
7805 F:      arch/openrisc/
7806
7807 OPENVSWITCH
7808 M:      Pravin Shelar <pshelar@nicira.com>
7809 L:      netdev@vger.kernel.org
7810 L:      dev@openvswitch.org
7811 W:      http://openvswitch.org
7812 S:      Maintained
7813 F:      net/openvswitch/
7814 F:      include/uapi/linux/openvswitch.h
7815
7816 OPL4 DRIVER
7817 M:      Clemens Ladisch <clemens@ladisch.de>
7818 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7819 T:      git git://git.alsa-project.org/alsa-kernel.git
7820 S:      Maintained
7821 F:      sound/drivers/opl4/
7822
7823 OPROFILE
7824 M:      Robert Richter <rric@kernel.org>
7825 L:      oprofile-list@lists.sf.net
7826 S:      Maintained
7827 F:      arch/*/include/asm/oprofile*.h
7828 F:      arch/*/oprofile/
7829 F:      drivers/oprofile/
7830 F:      include/linux/oprofile.h
7831
7832 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
7833 M:      Mark Fasheh <mfasheh@suse.com>
7834 M:      Joel Becker <jlbec@evilplan.org>
7835 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
7836 W:      http://ocfs2.wiki.kernel.org
7837 S:      Supported
7838 F:      Documentation/filesystems/ocfs2.txt
7839 F:      Documentation/filesystems/dlmfs.txt
7840 F:      fs/ocfs2/
7841
7842 ORINOCO DRIVER
7843 L:      linux-wireless@vger.kernel.org
7844 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
7845 W:      http://www.nongnu.org/orinoco/
7846 S:      Orphan
7847 F:      drivers/net/wireless/orinoco/
7848
7849 OSD LIBRARY and FILESYSTEM
7850 M:      Boaz Harrosh <ooo@electrozaur.com>
7851 M:      Benny Halevy <bhalevy@primarydata.com>
7852 L:      osd-dev@open-osd.org
7853 W:      http://open-osd.org
7854 T:      git git://git.open-osd.org/open-osd.git
7855 S:      Maintained
7856 F:      drivers/scsi/osd/
7857 F:      include/scsi/osd_*
7858 F:      fs/exofs/
7859
7860 OVERLAY FILESYSTEM
7861 M:      Miklos Szeredi <miklos@szeredi.hu>
7862 L:      linux-unionfs@vger.kernel.org
7863 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
7864 S:      Supported
7865 F:      fs/overlayfs/
7866 F:      Documentation/filesystems/overlayfs.txt
7867
7868 P54 WIRELESS DRIVER
7869 M:      Christian Lamparter <chunkeey@googlemail.com>
7870 L:      linux-wireless@vger.kernel.org
7871 W:      http://wireless.kernel.org/en/users/Drivers/p54
7872 S:      Maintained
7873 F:      drivers/net/wireless/p54/
7874
7875 PA SEMI ETHERNET DRIVER
7876 M:      Olof Johansson <olof@lixom.net>
7877 L:      netdev@vger.kernel.org
7878 S:      Maintained
7879 F:      drivers/net/ethernet/pasemi/*
7880
7881 PA SEMI SMBUS DRIVER
7882 M:      Olof Johansson <olof@lixom.net>
7883 L:      linux-i2c@vger.kernel.org
7884 S:      Maintained
7885 F:      drivers/i2c/busses/i2c-pasemi.c
7886
7887 PADATA PARALLEL EXECUTION MECHANISM
7888 M:      Steffen Klassert <steffen.klassert@secunet.com>
7889 L:      linux-crypto@vger.kernel.org
7890 S:      Maintained
7891 F:      kernel/padata.c
7892 F:      include/linux/padata.h
7893 F:      Documentation/padata.txt
7894
7895 PANASONIC LAPTOP ACPI EXTRAS DRIVER
7896 M:      Harald Welte <laforge@gnumonks.org>
7897 L:      platform-driver-x86@vger.kernel.org
7898 S:      Maintained
7899 F:      drivers/platform/x86/panasonic-laptop.c
7900
7901 PANASONIC MN10300/AM33/AM34 PORT
7902 M:      David Howells <dhowells@redhat.com>
7903 M:      Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
7904 L:      linux-am33-list@redhat.com (moderated for non-subscribers)
7905 W:      ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
7906 S:      Maintained
7907 F:      Documentation/mn10300/
7908 F:      arch/mn10300/
7909
7910 PARALLEL PORT SUBSYSTEM
7911 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
7912 M:      Sudip Mukherjee <sudip@vectorindia.org>
7913 L:      linux-parport@lists.infradead.org (subscribers-only)
7914 S:      Maintained
7915 F:      drivers/parport/
7916 F:      include/linux/parport*.h
7917 F:      drivers/char/ppdev.c
7918 F:      include/uapi/linux/ppdev.h
7919 F:      Documentation/parport*.txt
7920
7921 PARAVIRT_OPS INTERFACE
7922 M:      Jeremy Fitzhardinge <jeremy@goop.org>
7923 M:      Chris Wright <chrisw@sous-sol.org>
7924 M:      Alok Kataria <akataria@vmware.com>
7925 M:      Rusty Russell <rusty@rustcorp.com.au>
7926 L:      virtualization@lists.linux-foundation.org
7927 S:      Supported
7928 F:      Documentation/virtual/paravirt_ops.txt
7929 F:      arch/*/kernel/paravirt*
7930 F:      arch/*/include/asm/paravirt.h
7931
7932 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
7933 M:      Tim Waugh <tim@cyberelk.net>
7934 L:      linux-parport@lists.infradead.org (subscribers-only)
7935 S:      Maintained
7936 F:      Documentation/blockdev/paride.txt
7937 F:      drivers/block/paride/
7938
7939 PARISC ARCHITECTURE
7940 M:      "James E.J. Bottomley" <jejb@parisc-linux.org>
7941 M:      Helge Deller <deller@gmx.de>
7942 L:      linux-parisc@vger.kernel.org
7943 W:      http://www.parisc-linux.org/
7944 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
7945 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
7946 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
7947 S:      Maintained
7948 F:      arch/parisc/
7949 F:      Documentation/parisc/
7950 F:      drivers/parisc/
7951 F:      drivers/char/agp/parisc-agp.c
7952 F:      drivers/input/serio/gscps2.c
7953 F:      drivers/parport/parport_gsc.*
7954 F:      drivers/tty/serial/8250/8250_gsc.c
7955 F:      drivers/video/fbdev/sti*
7956 F:      drivers/video/console/sti*
7957 F:      drivers/video/logo/logo_parisc*
7958
7959 PC87360 HARDWARE MONITORING DRIVER
7960 M:      Jim Cromie <jim.cromie@gmail.com>
7961 L:      lm-sensors@lm-sensors.org
7962 S:      Maintained
7963 F:      Documentation/hwmon/pc87360
7964 F:      drivers/hwmon/pc87360.c
7965
7966 PC8736x GPIO DRIVER
7967 M:      Jim Cromie <jim.cromie@gmail.com>
7968 S:      Maintained
7969 F:      drivers/char/pc8736x_gpio.c
7970
7971 PC87427 HARDWARE MONITORING DRIVER
7972 M:      Jean Delvare <jdelvare@suse.com>
7973 L:      lm-sensors@lm-sensors.org
7974 S:      Maintained
7975 F:      Documentation/hwmon/pc87427
7976 F:      drivers/hwmon/pc87427.c
7977
7978 PCA9532 LED DRIVER
7979 M:      Riku Voipio <riku.voipio@iki.fi>
7980 S:      Maintained
7981 F:      drivers/leds/leds-pca9532.c
7982 F:      include/linux/leds-pca9532.h
7983
7984 PCA9541 I2C BUS MASTER SELECTOR DRIVER
7985 M:      Guenter Roeck <linux@roeck-us.net>
7986 L:      linux-i2c@vger.kernel.org
7987 S:      Maintained
7988 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
7989
7990 PCDP - PRIMARY CONSOLE AND DEBUG PORT
7991 M:      Khalid Aziz <khalid@gonehiking.org>
7992 S:      Maintained
7993 F:      drivers/firmware/pcdp.*
7994
7995 PCI ERROR RECOVERY
7996 M:      Linas Vepstas <linasvepstas@gmail.com>
7997 L:      linux-pci@vger.kernel.org
7998 S:      Supported
7999 F:      Documentation/PCI/pci-error-recovery.txt
8000
8001 PCI SUBSYSTEM
8002 M:      Bjorn Helgaas <bhelgaas@google.com>
8003 L:      linux-pci@vger.kernel.org
8004 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
8005 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
8006 S:      Supported
8007 F:      Documentation/PCI/
8008 F:      drivers/pci/
8009 F:      include/linux/pci*
8010 F:      arch/x86/pci/
8011 F:      arch/x86/kernel/quirks.c
8012
8013 PCI DRIVER FOR ALTERA PCIE IP
8014 M:      Ley Foon Tan <lftan@altera.com>
8015 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
8016 L:      linux-pci@vger.kernel.org
8017 S:      Supported
8018 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
8019 F:      drivers/pci/host/pcie-altera.c
8020
8021 PCI DRIVER FOR ARM VERSATILE PLATFORM
8022 M:      Rob Herring <robh@kernel.org>
8023 L:      linux-pci@vger.kernel.org
8024 L:      linux-arm-kernel@lists.infradead.org
8025 S:      Maintained
8026 F:      Documentation/devicetree/bindings/pci/versatile.txt
8027 F:      drivers/pci/host/pci-versatile.c
8028
8029 PCI DRIVER FOR APPLIEDMICRO XGENE
8030 M:      Tanmay Inamdar <tinamdar@apm.com>
8031 L:      linux-pci@vger.kernel.org
8032 L:      linux-arm-kernel@lists.infradead.org
8033 S:      Maintained
8034 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
8035 F:      drivers/pci/host/pci-xgene.c
8036
8037 PCI DRIVER FOR FREESCALE LAYERSCAPE
8038 M:      Minghuan Lian <minghuan.Lian@freescale.com>
8039 M:      Mingkai Hu <mingkai.hu@freescale.com>
8040 M:      Roy Zang <tie-fei.zang@freescale.com>
8041 L:      linuxppc-dev@lists.ozlabs.org
8042 L:      linux-pci@vger.kernel.org
8043 L:      linux-arm-kernel@lists.infradead.org
8044 S:      Maintained
8045 F:      drivers/pci/host/*layerscape*
8046
8047 PCI DRIVER FOR IMX6
8048 M:      Richard Zhu <Richard.Zhu@freescale.com>
8049 M:      Lucas Stach <l.stach@pengutronix.de>
8050 L:      linux-pci@vger.kernel.org
8051 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8052 S:      Maintained
8053 F:      drivers/pci/host/*imx6*
8054
8055 PCI DRIVER FOR TI KEYSTONE
8056 M:      Murali Karicheri <m-karicheri2@ti.com>
8057 L:      linux-pci@vger.kernel.org
8058 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8059 S:      Maintained
8060 F:      drivers/pci/host/*keystone*
8061
8062 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
8063 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8064 M:      Jason Cooper <jason@lakedaemon.net>
8065 L:      linux-pci@vger.kernel.org
8066 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8067 S:      Maintained
8068 F:      drivers/pci/host/*mvebu*
8069
8070 PCI DRIVER FOR NVIDIA TEGRA
8071 M:      Thierry Reding <thierry.reding@gmail.com>
8072 L:      linux-tegra@vger.kernel.org
8073 L:      linux-pci@vger.kernel.org
8074 S:      Supported
8075 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
8076 F:      drivers/pci/host/pci-tegra.c
8077
8078 PCI DRIVER FOR TI DRA7XX
8079 M:      Kishon Vijay Abraham I <kishon@ti.com>
8080 L:      linux-omap@vger.kernel.org
8081 L:      linux-pci@vger.kernel.org
8082 S:      Supported
8083 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
8084 F:      drivers/pci/host/pci-dra7xx.c
8085
8086 PCI DRIVER FOR RENESAS R-CAR
8087 M:      Simon Horman <horms@verge.net.au>
8088 L:      linux-pci@vger.kernel.org
8089 L:      linux-sh@vger.kernel.org
8090 S:      Maintained
8091 F:      drivers/pci/host/*rcar*
8092
8093 PCI DRIVER FOR SAMSUNG EXYNOS
8094 M:      Jingoo Han <jingoohan1@gmail.com>
8095 L:      linux-pci@vger.kernel.org
8096 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8097 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8098 S:      Maintained
8099 F:      drivers/pci/host/pci-exynos.c
8100
8101 PCI DRIVER FOR SYNOPSIS DESIGNWARE
8102 M:      Jingoo Han <jingoohan1@gmail.com>
8103 M:      Pratyush Anand <pratyush.anand@gmail.com>
8104 L:      linux-pci@vger.kernel.org
8105 S:      Maintained
8106 F:      drivers/pci/host/*designware*
8107
8108 PCI DRIVER FOR GENERIC OF HOSTS
8109 M:      Will Deacon <will.deacon@arm.com>
8110 L:      linux-pci@vger.kernel.org
8111 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8112 S:      Maintained
8113 F:      Documentation/devicetree/bindings/pci/host-generic-pci.txt
8114 F:      drivers/pci/host/pci-host-generic.c
8115
8116 PCIE DRIVER FOR ST SPEAR13XX
8117 M:      Pratyush Anand <pratyush.anand@gmail.com>
8118 L:      linux-pci@vger.kernel.org
8119 S:      Maintained
8120 F:      drivers/pci/host/*spear*
8121
8122 PCI MSI DRIVER FOR ALTERA MSI IP
8123 M:      Ley Foon Tan <lftan@altera.com>
8124 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
8125 L:      linux-pci@vger.kernel.org
8126 S:      Supported
8127 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
8128 F:      drivers/pci/host/pcie-altera-msi.c
8129
8130 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
8131 M:      Duc Dang <dhdang@apm.com>
8132 L:      linux-pci@vger.kernel.org
8133 L:      linux-arm-kernel@lists.infradead.org
8134 S:      Maintained
8135 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
8136 F:      drivers/pci/host/pci-xgene-msi.c
8137
8138 PCIE DRIVER FOR HISILICON
8139 M:      Zhou Wang <wangzhou1@hisilicon.com>
8140 L:      linux-pci@vger.kernel.org
8141 S:      Maintained
8142 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
8143 F:      drivers/pci/host/pcie-hisi.c
8144
8145 PCMCIA SUBSYSTEM
8146 P:      Linux PCMCIA Team
8147 L:      linux-pcmcia@lists.infradead.org
8148 W:      http://lists.infradead.org/mailman/listinfo/linux-pcmcia
8149 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
8150 S:      Maintained
8151 F:      Documentation/pcmcia/
8152 F:      drivers/pcmcia/
8153 F:      include/pcmcia/
8154
8155 PCNET32 NETWORK DRIVER
8156 M:      Don Fry <pcnet32@frontier.com>
8157 L:      netdev@vger.kernel.org
8158 S:      Maintained
8159 F:      drivers/net/ethernet/amd/pcnet32.c
8160
8161 PCRYPT PARALLEL CRYPTO ENGINE
8162 M:      Steffen Klassert <steffen.klassert@secunet.com>
8163 L:      linux-crypto@vger.kernel.org
8164 S:      Maintained
8165 F:      crypto/pcrypt.c
8166 F:      include/crypto/pcrypt.h
8167
8168 PER-CPU MEMORY ALLOCATOR
8169 M:      Tejun Heo <tj@kernel.org>
8170 M:      Christoph Lameter <cl@linux-foundation.org>
8171 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
8172 S:      Maintained
8173 F:      include/linux/percpu*.h
8174 F:      mm/percpu*.c
8175 F:      arch/*/include/asm/percpu.h
8176
8177 PER-TASK DELAY ACCOUNTING
8178 M:      Balbir Singh <bsingharora@gmail.com>
8179 S:      Maintained
8180 F:      include/linux/delayacct.h
8181 F:      kernel/delayacct.c
8182
8183 PERFORMANCE EVENTS SUBSYSTEM
8184 M:      Peter Zijlstra <a.p.zijlstra@chello.nl>
8185 M:      Ingo Molnar <mingo@redhat.com>
8186 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
8187 L:      linux-kernel@vger.kernel.org
8188 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
8189 S:      Supported
8190 F:      kernel/events/*
8191 F:      include/linux/perf_event.h
8192 F:      include/uapi/linux/perf_event.h
8193 F:      arch/*/kernel/perf_event*.c
8194 F:      arch/*/kernel/*/perf_event*.c
8195 F:      arch/*/kernel/*/*/perf_event*.c
8196 F:      arch/*/include/asm/perf_event.h
8197 F:      arch/*/kernel/perf_callchain.c
8198 F:      tools/perf/
8199
8200 PERSONALITY HANDLING
8201 M:      Christoph Hellwig <hch@infradead.org>
8202 L:      linux-abi-devel@lists.sourceforge.net
8203 S:      Maintained
8204 F:      include/linux/personality.h
8205 F:      include/uapi/linux/personality.h
8206
8207 PHONET PROTOCOL
8208 M:      Remi Denis-Courmont <courmisch@gmail.com>
8209 S:      Supported
8210 F:      Documentation/networking/phonet.txt
8211 F:      include/linux/phonet.h
8212 F:      include/net/phonet/
8213 F:      include/uapi/linux/phonet.h
8214 F:      net/phonet/
8215
8216 PHRAM MTD DRIVER
8217 M:      Joern Engel <joern@lazybastard.org>
8218 L:      linux-mtd@lists.infradead.org
8219 S:      Maintained
8220 F:      drivers/mtd/devices/phram.c
8221
8222 PICOLCD HID DRIVER
8223 M:      Bruno PrĂ©mont <bonbons@linux-vserver.org>
8224 L:      linux-input@vger.kernel.org
8225 S:      Maintained
8226 F:      drivers/hid/hid-picolcd*
8227
8228 PICOXCELL SUPPORT
8229 M:      Jamie Iles <jamie@jamieiles.com>
8230 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8231 T:      git git://github.com/jamieiles/linux-2.6-ji.git
8232 S:      Supported
8233 F:      arch/arm/boot/dts/picoxcell*
8234 F:      arch/arm/mach-picoxcell/
8235 F:      drivers/crypto/picoxcell*
8236
8237 PIN CONTROL SUBSYSTEM
8238 M:      Linus Walleij <linus.walleij@linaro.org>
8239 L:      linux-gpio@vger.kernel.org
8240 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
8241 S:      Maintained
8242 F:      drivers/pinctrl/
8243 F:      include/linux/pinctrl/
8244
8245 PIN CONTROLLER - ATMEL AT91
8246 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
8247 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8248 S:      Maintained
8249 F:      drivers/pinctrl/pinctrl-at91.*
8250
8251 PIN CONTROLLER - INTEL
8252 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8253 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
8254 S:      Maintained
8255 F:      drivers/pinctrl/intel/
8256
8257 PIN CONTROLLER - RENESAS
8258 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8259 L:      linux-sh@vger.kernel.org
8260 S:      Maintained
8261 F:      drivers/pinctrl/sh-pfc/
8262
8263 PIN CONTROLLER - SAMSUNG
8264 M:      Tomasz Figa <tomasz.figa@gmail.com>
8265 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8266 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8267 S:      Maintained
8268 F:      drivers/pinctrl/samsung/
8269
8270 PIN CONTROLLER - ST SPEAR
8271 M:      Viresh Kumar <vireshk@kernel.org>
8272 L:      spear-devel@list.st.com
8273 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8274 W:      http://www.st.com/spear
8275 S:      Maintained
8276 F:      drivers/pinctrl/spear/
8277
8278 PKTCDVD DRIVER
8279 M:      Jiri Kosina <jikos@kernel.org>
8280 S:      Maintained
8281 F:      drivers/block/pktcdvd.c
8282 F:      include/linux/pktcdvd.h
8283 F:      include/uapi/linux/pktcdvd.h
8284
8285 PKUNITY SOC DRIVERS
8286 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
8287 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
8288 S:      Maintained
8289 T:      git git://github.com/gxt/linux.git
8290 F:      drivers/input/serio/i8042-unicore32io.h
8291 F:      drivers/i2c/busses/i2c-puv3.c
8292 F:      drivers/video/fbdev/fb-puv3.c
8293 F:      drivers/rtc/rtc-puv3.c
8294
8295 PMBUS HARDWARE MONITORING DRIVERS
8296 M:      Guenter Roeck <linux@roeck-us.net>
8297 L:      lm-sensors@lm-sensors.org
8298 W:      http://www.lm-sensors.org/
8299 W:      http://www.roeck-us.net/linux/drivers/
8300 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8301 S:      Maintained
8302 F:      Documentation/hwmon/pmbus
8303 F:      drivers/hwmon/pmbus/
8304 F:      include/linux/i2c/pmbus.h
8305
8306 PMC SIERRA MaxRAID DRIVER
8307 L:      linux-scsi@vger.kernel.org
8308 W:      http://www.pmc-sierra.com/
8309 S:      Orphan
8310 F:      drivers/scsi/pmcraid.*
8311
8312 PMC SIERRA PM8001 DRIVER
8313 M:      Jack Wang <jinpu.wang@profitbricks.com>
8314 M:      lindar_liu@usish.com
8315 L:      pmchba@pmcs.com
8316 L:      linux-scsi@vger.kernel.org
8317 S:      Supported
8318 F:      drivers/scsi/pm8001/
8319
8320 POSIX CLOCKS and TIMERS
8321 M:      Thomas Gleixner <tglx@linutronix.de>
8322 L:      linux-kernel@vger.kernel.org
8323 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8324 S:      Maintained
8325 F:      fs/timerfd.c
8326 F:      include/linux/timer*
8327 F:      kernel/time/*timer*
8328
8329 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
8330 M:      Sebastian Reichel <sre@kernel.org>
8331 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
8332 M:      David Woodhouse <dwmw2@infradead.org>
8333 L:      linux-pm@vger.kernel.org
8334 T:      git git://git.infradead.org/battery-2.6.git
8335 S:      Maintained
8336 F:      include/linux/power_supply.h
8337 F:      drivers/power/
8338 X:      drivers/power/avs/
8339
8340 POWER STATE COORDINATION INTERFACE (PSCI)
8341 M:      Mark Rutland <mark.rutland@arm.com>
8342 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
8343 L:      linux-arm-kernel@lists.infradead.org
8344 S:      Maintained
8345 F:      drivers/firmware/psci.c
8346 F:      include/linux/psci.h
8347 F:      include/uapi/linux/psci.h
8348
8349 PNP SUPPORT
8350 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
8351 S:      Maintained
8352 F:      drivers/pnp/
8353
8354 PPP PROTOCOL DRIVERS AND COMPRESSORS
8355 M:      Paul Mackerras <paulus@samba.org>
8356 L:      linux-ppp@vger.kernel.org
8357 S:      Maintained
8358 F:      drivers/net/ppp/ppp_*
8359
8360 PPP OVER ATM (RFC 2364)
8361 M:      Mitchell Blank Jr <mitch@sfgoth.com>
8362 S:      Maintained
8363 F:      net/atm/pppoatm.c
8364 F:      include/uapi/linux/atmppp.h
8365
8366 PPP OVER ETHERNET
8367 M:      Michal Ostrowski <mostrows@earthlink.net>
8368 S:      Maintained
8369 F:      drivers/net/ppp/pppoe.c
8370 F:      drivers/net/ppp/pppox.c
8371
8372 PPP OVER L2TP
8373 M:      James Chapman <jchapman@katalix.com>
8374 S:      Maintained
8375 F:      net/l2tp/l2tp_ppp.c
8376 F:      include/linux/if_pppol2tp.h
8377 F:      include/uapi/linux/if_pppol2tp.h
8378
8379 PPS SUPPORT
8380 M:      Rodolfo Giometti <giometti@enneenne.com>
8381 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
8382 L:      linuxpps@ml.enneenne.com (subscribers-only)
8383 S:      Maintained
8384 F:      Documentation/pps/
8385 F:      drivers/pps/
8386 F:      include/linux/pps*.h
8387
8388 PPTP DRIVER
8389 M:      Dmitry Kozlov <xeb@mail.ru>
8390 L:      netdev@vger.kernel.org
8391 S:      Maintained
8392 F:      drivers/net/ppp/pptp.c
8393 W:      http://sourceforge.net/projects/accel-pptp
8394
8395 PREEMPTIBLE KERNEL
8396 M:      Robert Love <rml@tech9.net>
8397 L:      kpreempt-tech@lists.sourceforge.net
8398 W:      ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
8399 S:      Supported
8400 F:      Documentation/preempt-locking.txt
8401 F:      include/linux/preempt.h
8402
8403 PRISM54 WIRELESS DRIVER
8404 M:      "Luis R. Rodriguez" <mcgrof@gmail.com>
8405 L:      linux-wireless@vger.kernel.org
8406 W:      http://wireless.kernel.org/en/users/Drivers/p54
8407 S:      Obsolete
8408 F:      drivers/net/wireless/prism54/
8409
8410 PS3 NETWORK SUPPORT
8411 M:      Geoff Levand <geoff@infradead.org>
8412 L:      netdev@vger.kernel.org
8413 L:      linuxppc-dev@lists.ozlabs.org
8414 S:      Maintained
8415 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
8416
8417 PS3 PLATFORM SUPPORT
8418 M:      Geoff Levand <geoff@infradead.org>
8419 L:      linuxppc-dev@lists.ozlabs.org
8420 S:      Maintained
8421 F:      arch/powerpc/boot/ps3*
8422 F:      arch/powerpc/include/asm/lv1call.h
8423 F:      arch/powerpc/include/asm/ps3*.h
8424 F:      arch/powerpc/platforms/ps3/
8425 F:      drivers/*/ps3*
8426 F:      drivers/ps3/
8427 F:      drivers/rtc/rtc-ps3.c
8428 F:      drivers/usb/host/*ps3.c
8429 F:      sound/ppc/snd_ps3*
8430
8431 PS3VRAM DRIVER
8432 M:      Jim Paris <jim@jtan.com>
8433 M:      Geoff Levand <geoff@infradead.org>
8434 L:      linuxppc-dev@lists.ozlabs.org
8435 S:      Maintained
8436 F:      drivers/block/ps3vram.c
8437
8438 PSTORE FILESYSTEM
8439 M:      Anton Vorontsov <anton@enomsg.org>
8440 M:      Colin Cross <ccross@android.com>
8441 M:      Kees Cook <keescook@chromium.org>
8442 M:      Tony Luck <tony.luck@intel.com>
8443 S:      Maintained
8444 T:      git git://git.infradead.org/users/cbou/linux-pstore.git
8445 F:      fs/pstore/
8446 F:      include/linux/pstore*
8447 F:      drivers/firmware/efi/efi-pstore.c
8448 F:      drivers/acpi/apei/erst.c
8449
8450 PTP HARDWARE CLOCK SUPPORT
8451 M:      Richard Cochran <richardcochran@gmail.com>
8452 L:      netdev@vger.kernel.org
8453 S:      Maintained
8454 W:      http://linuxptp.sourceforge.net/
8455 F:      Documentation/ABI/testing/sysfs-ptp
8456 F:      Documentation/ptp/*
8457 F:      drivers/net/ethernet/freescale/gianfar_ptp.c
8458 F:      drivers/net/phy/dp83640*
8459 F:      drivers/ptp/*
8460 F:      include/linux/ptp_cl*
8461
8462 PTRACE SUPPORT
8463 M:      Roland McGrath <roland@hack.frob.com>
8464 M:      Oleg Nesterov <oleg@redhat.com>
8465 S:      Maintained
8466 F:      include/asm-generic/syscall.h
8467 F:      include/linux/ptrace.h
8468 F:      include/linux/regset.h
8469 F:      include/linux/tracehook.h
8470 F:      include/uapi/linux/ptrace.h
8471 F:      kernel/ptrace.c
8472
8473 PVRUSB2 VIDEO4LINUX DRIVER
8474 M:      Mike Isely <isely@pobox.com>
8475 L:      pvrusb2@isely.net       (subscribers-only)
8476 L:      linux-media@vger.kernel.org
8477 W:      http://www.isely.net/pvrusb2/
8478 T:      git git://linuxtv.org/media_tree.git
8479 S:      Maintained
8480 F:      Documentation/video4linux/README.pvrusb2
8481 F:      drivers/media/usb/pvrusb2/
8482
8483 PWC WEBCAM DRIVER
8484 M:      Hans de Goede <hdegoede@redhat.com>
8485 L:      linux-media@vger.kernel.org
8486 T:      git git://linuxtv.org/media_tree.git
8487 S:      Maintained
8488 F:      drivers/media/usb/pwc/*
8489
8490 PWM FAN DRIVER
8491 M:      Kamil Debski <k.debski@samsung.com>
8492 L:      lm-sensors@lm-sensors.org
8493 S:      Supported
8494 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
8495 F:      Documentation/hwmon/pwm-fan
8496 F:      drivers/hwmon/pwm-fan.c
8497
8498 PWM SUBSYSTEM
8499 M:      Thierry Reding <thierry.reding@gmail.com>
8500 L:      linux-pwm@vger.kernel.org
8501 S:      Maintained
8502 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
8503 F:      Documentation/pwm.txt
8504 F:      Documentation/devicetree/bindings/pwm/
8505 F:      include/linux/pwm.h
8506 F:      drivers/pwm/
8507 F:      drivers/video/backlight/pwm_bl.c
8508 F:      include/linux/pwm_backlight.h
8509
8510 PXA2xx/PXA3xx SUPPORT
8511 M:      Daniel Mack <daniel@zonque.org>
8512 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
8513 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8514 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8515 T:      git git://github.com/hzhuang1/linux.git
8516 T:      git git://github.com/rjarzmik/linux.git
8517 S:      Maintained
8518 F:      arch/arm/mach-pxa/
8519 F:      drivers/dma/pxa*
8520 F:      drivers/pcmcia/pxa2xx*
8521 F:      drivers/spi/spi-pxa2xx*
8522 F:      drivers/usb/gadget/udc/pxa2*
8523 F:      include/sound/pxa2xx-lib.h
8524 F:      sound/arm/pxa*
8525 F:      sound/soc/pxa/
8526
8527 PXA3xx NAND FLASH DRIVER
8528 M:      Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
8529 L:      linux-mtd@lists.infradead.org
8530 S:      Maintained
8531 F:      drivers/mtd/nand/pxa3xx_nand.c
8532
8533 MMP SUPPORT
8534 M:      Eric Miao <eric.y.miao@gmail.com>
8535 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
8536 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8537 T:      git git://github.com/hzhuang1/linux.git
8538 T:      git git://git.linaro.org/people/ycmiao/pxa-linux.git
8539 S:      Maintained
8540 F:      arch/arm/mach-mmp/
8541
8542 PXA MMCI DRIVER
8543 S:      Orphan
8544
8545 PXA RTC DRIVER
8546 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8547 L:      rtc-linux@googlegroups.com
8548 S:      Maintained
8549
8550 QAT DRIVER
8551 M:      Tadeusz Struk <tadeusz.struk@intel.com>
8552 L:      qat-linux@intel.com
8553 S:      Supported
8554 F:      drivers/crypto/qat/
8555
8556 QIB DRIVER
8557 M:      Mike Marciniszyn <infinipath@intel.com>
8558 L:      linux-rdma@vger.kernel.org
8559 S:      Supported
8560 F:      drivers/infiniband/hw/qib/
8561
8562 QLOGIC QLA1280 SCSI DRIVER
8563 M:      Michael Reed <mdr@sgi.com>
8564 L:      linux-scsi@vger.kernel.org
8565 S:      Maintained
8566 F:      drivers/scsi/qla1280.[ch]
8567
8568 QLOGIC QLA2XXX FC-SCSI DRIVER
8569 M:      qla2xxx-upstream@qlogic.com
8570 L:      linux-scsi@vger.kernel.org
8571 S:      Supported
8572 F:      Documentation/scsi/LICENSE.qla2xxx
8573 F:      drivers/scsi/qla2xxx/
8574
8575 QLOGIC QLA4XXX iSCSI DRIVER
8576 M:      QLogic-Storage-Upstream@qlogic.com
8577 L:      linux-scsi@vger.kernel.org
8578 S:      Supported
8579 F:      Documentation/scsi/LICENSE.qla4xxx
8580 F:      drivers/scsi/qla4xxx/
8581
8582 QLOGIC QLA3XXX NETWORK DRIVER
8583 M:      Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
8584 M:      Ron Mercer <ron.mercer@qlogic.com>
8585 M:      linux-driver@qlogic.com
8586 L:      netdev@vger.kernel.org
8587 S:      Supported
8588 F:      Documentation/networking/LICENSE.qla3xxx
8589 F:      drivers/net/ethernet/qlogic/qla3xxx.*
8590
8591 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
8592 M:      Dept-GELinuxNICDev@qlogic.com
8593 L:      netdev@vger.kernel.org
8594 S:      Supported
8595 F:      drivers/net/ethernet/qlogic/qlcnic/
8596
8597 QLOGIC QLGE 10Gb ETHERNET DRIVER
8598 M:      Harish Patil <harish.patil@qlogic.com>
8599 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
8600 M:      Dept-GELinuxNICDev@qlogic.com
8601 M:      linux-driver@qlogic.com
8602 L:      netdev@vger.kernel.org
8603 S:      Supported
8604 F:      drivers/net/ethernet/qlogic/qlge/
8605
8606 QLOGIC QL4xxx ETHERNET DRIVER
8607 M:      Yuval Mintz <Yuval.Mintz@qlogic.com>
8608 M:      Ariel Elior <Ariel.Elior@qlogic.com>
8609 M:      everest-linux-l2@qlogic.com
8610 L:      netdev@vger.kernel.org
8611 S:      Supported
8612 F:      drivers/net/ethernet/qlogic/qed/
8613 F:      include/linux/qed/
8614 F:      drivers/net/ethernet/qlogic/qede/
8615
8616 QNX4 FILESYSTEM
8617 M:      Anders Larsen <al@alarsen.net>
8618 W:      http://www.alarsen.net/linux/qnx4fs/
8619 S:      Maintained
8620 F:      fs/qnx4/
8621 F:      include/uapi/linux/qnx4_fs.h
8622 F:      include/uapi/linux/qnxtypes.h
8623
8624 QT1010 MEDIA DRIVER
8625 M:      Antti Palosaari <crope@iki.fi>
8626 L:      linux-media@vger.kernel.org
8627 W:      http://linuxtv.org/
8628 W:      http://palosaari.fi/linux/
8629 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8630 T:      git git://linuxtv.org/anttip/media_tree.git
8631 S:      Maintained
8632 F:      drivers/media/tuners/qt1010*
8633
8634 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
8635 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
8636 L:      linux-wireless@vger.kernel.org
8637 L:      ath9k-devel@lists.ath9k.org
8638 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
8639 S:      Supported
8640 F:      drivers/net/wireless/ath/ath9k/
8641
8642 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
8643 M:      Kalle Valo <kvalo@qca.qualcomm.com>
8644 L:      ath10k@lists.infradead.org
8645 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
8646 T:      git git://github.com/kvalo/ath.git
8647 S:      Supported
8648 F:      drivers/net/wireless/ath/ath10k/
8649
8650 QUALCOMM HEXAGON ARCHITECTURE
8651 M:      Richard Kuo <rkuo@codeaurora.org>
8652 L:      linux-hexagon@vger.kernel.org
8653 S:      Supported
8654 F:      arch/hexagon/
8655
8656 QUALCOMM WCN36XX WIRELESS DRIVER
8657 M:      Eugene Krasnikov <k.eugene.e@gmail.com>
8658 L:      wcn36xx@lists.infradead.org
8659 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
8660 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
8661 S:      Supported
8662 F:      drivers/net/wireless/ath/wcn36xx/
8663
8664 RADOS BLOCK DEVICE (RBD)
8665 M:      Ilya Dryomov <idryomov@gmail.com>
8666 M:      Sage Weil <sage@redhat.com>
8667 M:      Alex Elder <elder@kernel.org>
8668 L:      ceph-devel@vger.kernel.org
8669 W:      http://ceph.com/
8670 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
8671 T:      git git://github.com/ceph/ceph-client.git
8672 S:      Supported
8673 F:      Documentation/ABI/testing/sysfs-bus-rbd
8674 F:      drivers/block/rbd.c
8675 F:      drivers/block/rbd_types.h
8676
8677 RADEON FRAMEBUFFER DISPLAY DRIVER
8678 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
8679 L:      linux-fbdev@vger.kernel.org
8680 S:      Maintained
8681 F:      drivers/video/fbdev/aty/radeon*
8682 F:      include/uapi/linux/radeonfb.h
8683
8684 RADIOSHARK RADIO DRIVER
8685 M:      Hans de Goede <hdegoede@redhat.com>
8686 L:      linux-media@vger.kernel.org
8687 T:      git git://linuxtv.org/media_tree.git
8688 S:      Maintained
8689 F:      drivers/media/radio/radio-shark.c
8690
8691 RADIOSHARK2 RADIO DRIVER
8692 M:      Hans de Goede <hdegoede@redhat.com>
8693 L:      linux-media@vger.kernel.org
8694 T:      git git://linuxtv.org/media_tree.git
8695 S:      Maintained
8696 F:      drivers/media/radio/radio-shark2.c
8697 F:      drivers/media/radio/radio-tea5777.c
8698
8699 RAGE128 FRAMEBUFFER DISPLAY DRIVER
8700 M:      Paul Mackerras <paulus@samba.org>
8701 L:      linux-fbdev@vger.kernel.org
8702 S:      Maintained
8703 F:      drivers/video/fbdev/aty/aty128fb.c
8704
8705 RALINK RT2X00 WIRELESS LAN DRIVER
8706 P:      rt2x00 project
8707 M:      Stanislaw Gruszka <sgruszka@redhat.com>
8708 M:      Helmut Schaa <helmut.schaa@googlemail.com>
8709 L:      linux-wireless@vger.kernel.org
8710 S:      Maintained
8711 F:      drivers/net/wireless/rt2x00/
8712
8713 RAMDISK RAM BLOCK DEVICE DRIVER
8714 M:      Jens Axboe <axboe@kernel.dk>
8715 S:      Maintained
8716 F:      Documentation/blockdev/ramdisk.txt
8717 F:      drivers/block/brd.c
8718
8719 RANDOM NUMBER DRIVER
8720 M:      "Theodore Ts'o" <tytso@mit.edu>
8721 S:      Maintained
8722 F:      drivers/char/random.c
8723
8724 RAPIDIO SUBSYSTEM
8725 M:      Matt Porter <mporter@kernel.crashing.org>
8726 M:      Alexandre Bounine <alexandre.bounine@idt.com>
8727 S:      Maintained
8728 F:      drivers/rapidio/
8729
8730 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
8731 L:      linux-wireless@vger.kernel.org
8732 S:      Orphan
8733 F:      drivers/net/wireless/ray*
8734
8735 RCUTORTURE MODULE
8736 M:      Josh Triplett <josh@joshtriplett.org>
8737 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8738 L:      linux-kernel@vger.kernel.org
8739 S:      Supported
8740 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8741 F:      Documentation/RCU/torture.txt
8742 F:      kernel/rcu/rcutorture.c
8743
8744 RCUTORTURE TEST FRAMEWORK
8745 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8746 M:      Josh Triplett <josh@joshtriplett.org>
8747 R:      Steven Rostedt <rostedt@goodmis.org>
8748 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8749 R:      Lai Jiangshan <jiangshanlai@gmail.com>
8750 L:      linux-kernel@vger.kernel.org
8751 S:      Supported
8752 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8753 F:      tools/testing/selftests/rcutorture
8754
8755 RDC R-321X SoC
8756 M:      Florian Fainelli <florian@openwrt.org>
8757 S:      Maintained
8758
8759 RDC R6040 FAST ETHERNET DRIVER
8760 M:      Florian Fainelli <florian@openwrt.org>
8761 L:      netdev@vger.kernel.org
8762 S:      Maintained
8763 F:      drivers/net/ethernet/rdc/r6040.c
8764
8765 RDS - RELIABLE DATAGRAM SOCKETS
8766 M:      Chien Yen <chien.yen@oracle.com>
8767 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
8768 S:      Supported
8769 F:      net/rds/
8770
8771 READ-COPY UPDATE (RCU)
8772 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8773 M:      Josh Triplett <josh@joshtriplett.org>
8774 R:      Steven Rostedt <rostedt@goodmis.org>
8775 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8776 R:      Lai Jiangshan <jiangshanlai@gmail.com>
8777 L:      linux-kernel@vger.kernel.org
8778 W:      http://www.rdrop.com/users/paulmck/RCU/
8779 S:      Supported
8780 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8781 F:      Documentation/RCU/
8782 X:      Documentation/RCU/torture.txt
8783 F:      include/linux/rcu*
8784 X:      include/linux/srcu.h
8785 F:      kernel/rcu/
8786 X:      kernel/torture.c
8787
8788 REAL TIME CLOCK (RTC) SUBSYSTEM
8789 M:      Alessandro Zummo <a.zummo@towertech.it>
8790 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
8791 L:      rtc-linux@googlegroups.com
8792 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
8793 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
8794 S:      Maintained
8795 F:      Documentation/rtc.txt
8796 F:      drivers/rtc/
8797 F:      include/linux/rtc.h
8798 F:      include/uapi/linux/rtc.h
8799
8800 REALTEK AUDIO CODECS
8801 M:      Bard Liao <bardliao@realtek.com>
8802 M:      Oder Chiou <oder_chiou@realtek.com>
8803 S:      Maintained
8804 F:      sound/soc/codecs/rt*
8805 F:      include/sound/rt*.h
8806
8807 REISERFS FILE SYSTEM
8808 L:      reiserfs-devel@vger.kernel.org
8809 S:      Supported
8810 F:      fs/reiserfs/
8811
8812 REGISTER MAP ABSTRACTION
8813 M:      Mark Brown <broonie@kernel.org>
8814 L:      linux-kernel@vger.kernel.org
8815 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
8816 S:      Supported
8817 F:      drivers/base/regmap/
8818 F:      include/linux/regmap.h
8819
8820 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
8821 M:      Ohad Ben-Cohen <ohad@wizery.com>
8822 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
8823 S:      Maintained
8824 F:      drivers/remoteproc/
8825 F:      Documentation/remoteproc.txt
8826 F:      include/linux/remoteproc.h
8827
8828 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
8829 M:      Ohad Ben-Cohen <ohad@wizery.com>
8830 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
8831 S:      Maintained
8832 F:      drivers/rpmsg/
8833 F:      Documentation/rpmsg.txt
8834 F:      include/linux/rpmsg.h
8835
8836 RESET CONTROLLER FRAMEWORK
8837 M:      Philipp Zabel <p.zabel@pengutronix.de>
8838 S:      Maintained
8839 F:      drivers/reset/
8840 F:      Documentation/devicetree/bindings/reset/
8841 F:      include/dt-bindings/reset/
8842 F:      include/linux/reset.h
8843 F:      include/linux/reset-controller.h
8844
8845 RFKILL
8846 M:      Johannes Berg <johannes@sipsolutions.net>
8847 L:      linux-wireless@vger.kernel.org
8848 W:      http://wireless.kernel.org/
8849 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
8850 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
8851 S:      Maintained
8852 F:      Documentation/rfkill.txt
8853 F:      net/rfkill/
8854
8855 RHASHTABLE
8856 M:      Thomas Graf <tgraf@suug.ch>
8857 L:      netdev@vger.kernel.org
8858 S:      Maintained
8859 F:      lib/rhashtable.c
8860 F:      include/linux/rhashtable.h
8861
8862 RICOH SMARTMEDIA/XD DRIVER
8863 M:      Maxim Levitsky <maximlevitsky@gmail.com>
8864 S:      Maintained
8865 F:      drivers/mtd/nand/r852.c
8866 F:      drivers/mtd/nand/r852.h
8867
8868 RICOH R5C592 MEMORYSTICK DRIVER
8869 M:      Maxim Levitsky <maximlevitsky@gmail.com>
8870 S:      Maintained
8871 F:      drivers/memstick/host/r592.*
8872
8873 ROCCAT DRIVERS
8874 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
8875 W:      http://sourceforge.net/projects/roccat/
8876 S:      Maintained
8877 F:      drivers/hid/hid-roccat*
8878 F:      include/linux/hid-roccat*
8879 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
8880
8881 ROCKER DRIVER
8882 M:      Jiri Pirko <jiri@resnulli.us>
8883 M:      Scott Feldman <sfeldma@gmail.com>
8884 L:      netdev@vger.kernel.org
8885 S:      Supported
8886 F:      drivers/net/ethernet/rocker/
8887
8888 ROCKETPORT DRIVER
8889 P:      Comtrol Corp.
8890 W:      http://www.comtrol.com
8891 S:      Maintained
8892 F:      Documentation/serial/rocket.txt
8893 F:      drivers/tty/rocket*
8894
8895 ROCKETPORT EXPRESS/INFINITY DRIVER
8896 M:      Kevin Cernekee <cernekee@gmail.com>
8897 L:      linux-serial@vger.kernel.org
8898 S:      Odd Fixes
8899 F:      drivers/tty/serial/rp2.*
8900
8901 ROSE NETWORK LAYER
8902 M:      Ralf Baechle <ralf@linux-mips.org>
8903 L:      linux-hams@vger.kernel.org
8904 W:      http://www.linux-ax25.org/
8905 S:      Maintained
8906 F:      include/net/rose.h
8907 F:      include/uapi/linux/rose.h
8908 F:      net/rose/
8909
8910 RTL2830 MEDIA DRIVER
8911 M:      Antti Palosaari <crope@iki.fi>
8912 L:      linux-media@vger.kernel.org
8913 W:      http://linuxtv.org/
8914 W:      http://palosaari.fi/linux/
8915 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8916 T:      git git://linuxtv.org/anttip/media_tree.git
8917 S:      Maintained
8918 F:      drivers/media/dvb-frontends/rtl2830*
8919
8920 RTL2832 MEDIA DRIVER
8921 M:      Antti Palosaari <crope@iki.fi>
8922 L:      linux-media@vger.kernel.org
8923 W:      http://linuxtv.org/
8924 W:      http://palosaari.fi/linux/
8925 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8926 T:      git git://linuxtv.org/anttip/media_tree.git
8927 S:      Maintained
8928 F:      drivers/media/dvb-frontends/rtl2832*
8929
8930 RTL2832_SDR MEDIA DRIVER
8931 M:      Antti Palosaari <crope@iki.fi>
8932 L:      linux-media@vger.kernel.org
8933 W:      http://linuxtv.org/
8934 W:      http://palosaari.fi/linux/
8935 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8936 T:      git git://linuxtv.org/anttip/media_tree.git
8937 S:      Maintained
8938 F:      drivers/media/dvb-frontends/rtl2832_sdr*
8939
8940 RTL8180 WIRELESS DRIVER
8941 L:      linux-wireless@vger.kernel.org
8942 W:      http://wireless.kernel.org/
8943 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8944 S:      Orphan
8945 F:      drivers/net/wireless/rtl818x/rtl8180/
8946
8947 RTL8187 WIRELESS DRIVER
8948 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
8949 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
8950 M:      Larry Finger <Larry.Finger@lwfinger.net>
8951 L:      linux-wireless@vger.kernel.org
8952 W:      http://wireless.kernel.org/
8953 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8954 S:      Maintained
8955 F:      drivers/net/wireless/rtl818x/rtl8187/
8956
8957 RTL8192CE WIRELESS DRIVER
8958 M:      Larry Finger <Larry.Finger@lwfinger.net>
8959 M:      Chaoming Li <chaoming_li@realsil.com.cn>
8960 L:      linux-wireless@vger.kernel.org
8961 W:      http://wireless.kernel.org/
8962 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8963 S:      Maintained
8964 F:      drivers/net/wireless/rtlwifi/
8965 F:      drivers/net/wireless/rtlwifi/rtl8192ce/
8966
8967 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
8968 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
8969 L:      linux-wireless@vger.kernel.org
8970 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8723au-mac80211
8971 S:      Maintained
8972 F:      drivers/net/wireless/realtek/rtl8xxxu/
8973
8974 S3 SAVAGE FRAMEBUFFER DRIVER
8975 M:      Antonino Daplas <adaplas@gmail.com>
8976 L:      linux-fbdev@vger.kernel.org
8977 S:      Maintained
8978 F:      drivers/video/fbdev/savage/
8979
8980 S390
8981 M:      Martin Schwidefsky <schwidefsky@de.ibm.com>
8982 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
8983 L:      linux-s390@vger.kernel.org
8984 W:      http://www.ibm.com/developerworks/linux/linux390/
8985 S:      Supported
8986 F:      arch/s390/
8987 F:      drivers/s390/
8988 F:      Documentation/s390/
8989 F:      Documentation/DocBook/s390*
8990
8991 S390 COMMON I/O LAYER
8992 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
8993 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
8994 L:      linux-s390@vger.kernel.org
8995 W:      http://www.ibm.com/developerworks/linux/linux390/
8996 S:      Supported
8997 F:      drivers/s390/cio/
8998
8999 S390 DASD DRIVER
9000 M:      Stefan Weinhuber <wein@de.ibm.com>
9001 M:      Stefan Haberland <stefan.haberland@de.ibm.com>
9002 L:      linux-s390@vger.kernel.org
9003 W:      http://www.ibm.com/developerworks/linux/linux390/
9004 S:      Supported
9005 F:      drivers/s390/block/dasd*
9006 F:      block/partitions/ibm.c
9007
9008 S390 NETWORK DRIVERS
9009 M:      Ursula Braun <ursula.braun@de.ibm.com>
9010 L:      linux-s390@vger.kernel.org
9011 W:      http://www.ibm.com/developerworks/linux/linux390/
9012 S:      Supported
9013 F:      drivers/s390/net/
9014
9015 S390 PCI SUBSYSTEM
9016 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
9017 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
9018 L:      linux-s390@vger.kernel.org
9019 W:      http://www.ibm.com/developerworks/linux/linux390/
9020 S:      Supported
9021 F:      arch/s390/pci/
9022 F:      drivers/pci/hotplug/s390_pci_hpc.c
9023
9024 S390 ZCRYPT DRIVER
9025 M:      Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
9026 L:      linux-s390@vger.kernel.org
9027 W:      http://www.ibm.com/developerworks/linux/linux390/
9028 S:      Supported
9029 F:      drivers/s390/crypto/
9030
9031 S390 ZFCP DRIVER
9032 M:      Steffen Maier <maier@linux.vnet.ibm.com>
9033 L:      linux-s390@vger.kernel.org
9034 W:      http://www.ibm.com/developerworks/linux/linux390/
9035 S:      Supported
9036 F:      drivers/s390/scsi/zfcp_*
9037
9038 S390 IUCV NETWORK LAYER
9039 M:      Ursula Braun <ursula.braun@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/net/*iucv*
9044 F:      include/net/iucv/
9045 F:      net/iucv/
9046
9047 S3C24XX SD/MMC Driver
9048 M:      Ben Dooks <ben-linux@fluff.org>
9049 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9050 S:      Supported
9051 F:      drivers/mmc/host/s3cmci.*
9052
9053 SAA6588 RDS RECEIVER DRIVER
9054 M:      Hans Verkuil <hverkuil@xs4all.nl>
9055 L:      linux-media@vger.kernel.org
9056 T:      git git://linuxtv.org/media_tree.git
9057 W:      http://linuxtv.org
9058 S:      Odd Fixes
9059 F:      drivers/media/i2c/saa6588*
9060
9061 SAA7134 VIDEO4LINUX DRIVER
9062 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9063 L:      linux-media@vger.kernel.org
9064 W:      http://linuxtv.org
9065 T:      git git://linuxtv.org/media_tree.git
9066 S:      Odd fixes
9067 F:      Documentation/video4linux/*.saa7134
9068 F:      drivers/media/pci/saa7134/
9069
9070 SAA7146 VIDEO4LINUX-2 DRIVER
9071 M:      Hans Verkuil <hverkuil@xs4all.nl>
9072 L:      linux-media@vger.kernel.org
9073 T:      git git://linuxtv.org/media_tree.git
9074 S:      Maintained
9075 F:      drivers/media/common/saa7146/
9076 F:      drivers/media/pci/saa7146/
9077 F:      include/media/saa7146*
9078
9079 SAMSUNG LAPTOP DRIVER
9080 M:      Corentin Chary <corentin.chary@gmail.com>
9081 L:      platform-driver-x86@vger.kernel.org
9082 S:      Maintained
9083 F:      drivers/platform/x86/samsung-laptop.c
9084
9085 SAMSUNG AUDIO (ASoC) DRIVERS
9086 M:      Sangbeom Kim <sbkim73@samsung.com>
9087 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9088 S:      Supported
9089 F:      sound/soc/samsung/
9090
9091 SAMSUNG FRAMEBUFFER DRIVER
9092 M:      Jingoo Han <jingoohan1@gmail.com>
9093 L:      linux-fbdev@vger.kernel.org
9094 S:      Maintained
9095 F:      drivers/video/fbdev/s3c-fb.c
9096
9097 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
9098 M:      Sangbeom Kim <sbkim73@samsung.com>
9099 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
9100 L:      linux-kernel@vger.kernel.org
9101 L:      linux-samsung-soc@vger.kernel.org
9102 S:      Supported
9103 F:      drivers/mfd/sec*.c
9104 F:      drivers/regulator/s2m*.c
9105 F:      drivers/regulator/s5m*.c
9106 F:      drivers/clk/clk-s2mps11.c
9107 F:      drivers/rtc/rtc-s5m.c
9108 F:      include/linux/mfd/samsung/
9109 F:      Documentation/devicetree/bindings/regulator/s5m8767-regulator.txt
9110 F:      Documentation/devicetree/bindings/mfd/s2mp*.txt
9111
9112 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
9113 M:      Kyungmin Park <kyungmin.park@samsung.com>
9114 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
9115 L:      linux-media@vger.kernel.org
9116 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
9117 S:      Supported
9118 F:      drivers/media/platform/exynos4-is/
9119
9120 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
9121 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
9122 L:      linux-media@vger.kernel.org
9123 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9124 S:      Maintained
9125 F:      drivers/media/platform/s3c-camif/
9126 F:      include/media/s3c_camif.h
9127
9128 SAMSUNG S5C73M3 CAMERA DRIVER
9129 M:      Kyungmin Park <kyungmin.park@samsung.com>
9130 M:      Andrzej Hajda <a.hajda@samsung.com>
9131 L:      linux-media@vger.kernel.org
9132 S:      Supported
9133 F:      drivers/media/i2c/s5c73m3/*
9134
9135 SAMSUNG S5K5BAF CAMERA DRIVER
9136 M:      Kyungmin Park <kyungmin.park@samsung.com>
9137 M:      Andrzej Hajda <a.hajda@samsung.com>
9138 L:      linux-media@vger.kernel.org
9139 S:      Supported
9140 F:      drivers/media/i2c/s5k5baf.c
9141
9142 SAMSUNG S3FWRN5 NFC DRIVER
9143 M:      Robert Baldyga <r.baldyga@samsung.com>
9144 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
9145 S:      Supported
9146 F:      drivers/nfc/s3fwrn5
9147
9148 SAMSUNG SOC CLOCK DRIVERS
9149 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
9150 M:      Tomasz Figa <tomasz.figa@gmail.com>
9151 S:      Supported
9152 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9153 F:      drivers/clk/samsung/
9154
9155 SAMSUNG SXGBE DRIVERS
9156 M:      Byungho An <bh74.an@samsung.com>
9157 M:      Girish K S <ks.giri@samsung.com>
9158 M:      Vipul Pandya <vipul.pandya@samsung.com>
9159 S:      Supported
9160 L:      netdev@vger.kernel.org
9161 F:      drivers/net/ethernet/samsung/sxgbe/
9162
9163 SAMSUNG THERMAL DRIVER
9164 M:      Lukasz Majewski <l.majewski@samsung.com>
9165 L:      linux-pm@vger.kernel.org
9166 L:      linux-samsung-soc@vger.kernel.org
9167 S:      Supported
9168 T:      https://github.com/lmajewski/linux-samsung-thermal.git
9169 F:      drivers/thermal/samsung/
9170
9171 SAMSUNG USB2 PHY DRIVER
9172 M:      Kamil Debski <k.debski@samsung.com>
9173 L:      linux-kernel@vger.kernel.org
9174 S:      Supported
9175 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
9176 F:      Documentation/phy/samsung-usb2.txt
9177 F:      drivers/phy/phy-exynos4210-usb2.c
9178 F:      drivers/phy/phy-exynos4x12-usb2.c
9179 F:      drivers/phy/phy-exynos5250-usb2.c
9180 F:      drivers/phy/phy-s5pv210-usb2.c
9181 F:      drivers/phy/phy-samsung-usb2.c
9182 F:      drivers/phy/phy-samsung-usb2.h
9183
9184 SERIAL DRIVERS
9185 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9186 L:      linux-serial@vger.kernel.org
9187 S:      Maintained
9188 F:      drivers/tty/serial/
9189
9190 SYNOPSYS DESIGNWARE DMAC DRIVER
9191 M:      Viresh Kumar <vireshk@kernel.org>
9192 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9193 S:      Maintained
9194 F:      include/linux/dma/dw.h
9195 F:      include/linux/platform_data/dma-dw.h
9196 F:      drivers/dma/dw/
9197
9198 SYNOPSYS DESIGNWARE ETHERNET QOS 4.10a driver
9199 M: Lars Persson <lars.persson@axis.com>
9200 L: netdev@vger.kernel.org
9201 S: Supported
9202 F: Documentation/devicetree/bindings/net/snps,dwc-qos-ethernet.txt
9203 F: drivers/net/ethernet/synopsys/dwc_eth_qos.c
9204
9205 SYNOPSYS DESIGNWARE I2C DRIVER
9206 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9207 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
9208 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9209 L:      linux-i2c@vger.kernel.org
9210 S:      Maintained
9211 F:      drivers/i2c/busses/i2c-designware-*
9212 F:      include/linux/platform_data/i2c-designware.h
9213
9214 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
9215 M:      Seungwon Jeon <tgih.jun@samsung.com>
9216 M:      Jaehoon Chung <jh80.chung@samsung.com>
9217 L:      linux-mmc@vger.kernel.org
9218 S:      Maintained
9219 F:      include/linux/mmc/dw_mmc.h
9220 F:      drivers/mmc/host/dw_mmc*
9221
9222 THUNDERBOLT DRIVER
9223 M:      Andreas Noever <andreas.noever@gmail.com>
9224 S:      Maintained
9225 F:      drivers/thunderbolt/
9226
9227 TIMEKEEPING, CLOCKSOURCE CORE, NTP
9228 M:      John Stultz <john.stultz@linaro.org>
9229 M:      Thomas Gleixner <tglx@linutronix.de>
9230 L:      linux-kernel@vger.kernel.org
9231 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
9232 S:      Supported
9233 F:      include/linux/clocksource.h
9234 F:      include/linux/time.h
9235 F:      include/linux/timex.h
9236 F:      include/uapi/linux/time.h
9237 F:      include/uapi/linux/timex.h
9238 F:      kernel/time/clocksource.c
9239 F:      kernel/time/time*.c
9240 F:      kernel/time/ntp.c
9241 F:      tools/testing/selftests/timers/
9242
9243 SC1200 WDT DRIVER
9244 M:      Zwane Mwaikambo <zwanem@gmail.com>
9245 S:      Maintained
9246 F:      drivers/watchdog/sc1200wdt.c
9247
9248 SCHEDULER
9249 M:      Ingo Molnar <mingo@redhat.com>
9250 M:      Peter Zijlstra <peterz@infradead.org>
9251 L:      linux-kernel@vger.kernel.org
9252 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
9253 S:      Maintained
9254 F:      kernel/sched/
9255 F:      include/linux/sched.h
9256 F:      include/uapi/linux/sched.h
9257 F:      include/linux/wait.h
9258
9259 SCORE ARCHITECTURE
9260 M:      Chen Liqin <liqin.linux@gmail.com>
9261 M:      Lennox Wu <lennox.wu@gmail.com>
9262 W:      http://www.sunplus.com
9263 S:      Supported
9264 F:      arch/score/
9265
9266 SYSTEM CONTROL & POWER INTERFACE (SCPI) Message Protocol drivers
9267 M:      Sudeep Holla <sudeep.holla@arm.com>
9268 L:      linux-arm-kernel@lists.infradead.org
9269 S:      Maintained
9270 F:      Documentation/devicetree/bindings/arm/arm,scpi.txt
9271 F:      drivers/clk/clk-scpi.c
9272 F:      drivers/cpufreq/scpi-cpufreq.c
9273 F:      drivers/firmware/arm_scpi.c
9274 F:      include/linux/scpi_protocol.h
9275
9276 SCSI CDROM DRIVER
9277 M:      Jens Axboe <axboe@kernel.dk>
9278 L:      linux-scsi@vger.kernel.org
9279 W:      http://www.kernel.dk
9280 S:      Maintained
9281 F:      drivers/scsi/sr*
9282
9283 SCSI RDMA PROTOCOL (SRP) INITIATOR
9284 M:      Bart Van Assche <bart.vanassche@sandisk.com>
9285 L:      linux-rdma@vger.kernel.org
9286 S:      Supported
9287 W:      http://www.openfabrics.org
9288 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9289 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
9290 F:      drivers/infiniband/ulp/srp/
9291 F:      include/scsi/srp.h
9292
9293 SCSI SG DRIVER
9294 M:      Doug Gilbert <dgilbert@interlog.com>
9295 L:      linux-scsi@vger.kernel.org
9296 W:      http://sg.danny.cz/sg
9297 S:      Maintained
9298 F:      Documentation/scsi/scsi-generic.txt
9299 F:      drivers/scsi/sg.c
9300 F:      include/scsi/sg.h
9301
9302 SCSI SUBSYSTEM
9303 M:      "James E.J. Bottomley" <JBottomley@odin.com>
9304 L:      linux-scsi@vger.kernel.org
9305 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
9306 S:      Maintained
9307 F:      drivers/scsi/
9308 F:      include/scsi/
9309
9310 SCSI TAPE DRIVER
9311 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
9312 L:      linux-scsi@vger.kernel.org
9313 S:      Maintained
9314 F:      Documentation/scsi/st.txt
9315 F:      drivers/scsi/st.*
9316 F:      drivers/scsi/st_*.h
9317
9318 SCTP PROTOCOL
9319 M:      Vlad Yasevich <vyasevich@gmail.com>
9320 M:      Neil Horman <nhorman@tuxdriver.com>
9321 L:      linux-sctp@vger.kernel.org
9322 W:      http://lksctp.sourceforge.net
9323 S:      Maintained
9324 F:      Documentation/networking/sctp.txt
9325 F:      include/linux/sctp.h
9326 F:      include/uapi/linux/sctp.h
9327 F:      include/net/sctp/
9328 F:      net/sctp/
9329
9330 SCx200 CPU SUPPORT
9331 M:      Jim Cromie <jim.cromie@gmail.com>
9332 S:      Odd Fixes
9333 F:      Documentation/i2c/busses/scx200_acb
9334 F:      arch/x86/platform/scx200/
9335 F:      drivers/watchdog/scx200_wdt.c
9336 F:      drivers/i2c/busses/scx200*
9337 F:      drivers/mtd/maps/scx200_docflash.c
9338 F:      include/linux/scx200.h
9339
9340 SCx200 GPIO DRIVER
9341 M:      Jim Cromie <jim.cromie@gmail.com>
9342 S:      Maintained
9343 F:      drivers/char/scx200_gpio.c
9344 F:      include/linux/scx200_gpio.h
9345
9346 SCx200 HRT CLOCKSOURCE DRIVER
9347 M:      Jim Cromie <jim.cromie@gmail.com>
9348 S:      Maintained
9349 F:      drivers/clocksource/scx200_hrt.c
9350
9351 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
9352 M:      Sascha Sommer <saschasommer@freenet.de>
9353 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
9354 S:      Maintained
9355 F:      drivers/mmc/host/sdricoh_cs.c
9356
9357 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
9358 L:      linux-mmc@vger.kernel.org
9359 S:      Orphan
9360 F:      drivers/mmc/host/sdhci.*
9361 F:      drivers/mmc/host/sdhci-pltfm.[ch]
9362
9363 SECURE COMPUTING
9364 M:      Kees Cook <keescook@chromium.org>
9365 R:      Andy Lutomirski <luto@amacapital.net>
9366 R:      Will Drewry <wad@chromium.org>
9367 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
9368 S:      Supported
9369 F:      kernel/seccomp.c
9370 F:      include/uapi/linux/seccomp.h
9371 F:      include/linux/seccomp.h
9372 F:      tools/testing/selftests/seccomp/*
9373 K:      \bsecure_computing
9374 K:      \bTIF_SECCOMP\b
9375
9376 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
9377 M:      Ben Dooks <ben-linux@fluff.org>
9378 M:      Jaehoon Chung <jh80.chung@samsung.com>
9379 L:      linux-mmc@vger.kernel.org
9380 S:      Maintained
9381 F:      drivers/mmc/host/sdhci-s3c*
9382
9383 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
9384 M:      Viresh Kumar <vireshk@kernel.org>
9385 L:      spear-devel@list.st.com
9386 L:      linux-mmc@vger.kernel.org
9387 S:      Maintained
9388 F:      drivers/mmc/host/sdhci-spear.c
9389
9390 SECURITY SUBSYSTEM
9391 M:      James Morris <james.l.morris@oracle.com>
9392 M:      "Serge E. Hallyn" <serge@hallyn.com>
9393 L:      linux-security-module@vger.kernel.org (suggested Cc:)
9394 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
9395 W:      http://kernsec.org/
9396 S:      Supported
9397 F:      security/
9398
9399 SECURITY CONTACT
9400 M:      Security Officers <security@kernel.org>
9401 S:      Supported
9402
9403 SELINUX SECURITY MODULE
9404 M:      Paul Moore <paul@paul-moore.com>
9405 M:      Stephen Smalley <sds@tycho.nsa.gov>
9406 M:      Eric Paris <eparis@parisplace.org>
9407 L:      selinux@tycho.nsa.gov (moderated for non-subscribers)
9408 W:      http://selinuxproject.org
9409 T:      git git://git.infradead.org/users/pcmoore/selinux
9410 S:      Supported
9411 F:      include/linux/selinux*
9412 F:      security/selinux/
9413 F:      scripts/selinux/
9414
9415 APPARMOR SECURITY MODULE
9416 M:      John Johansen <john.johansen@canonical.com>
9417 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
9418 W:      apparmor.wiki.kernel.org
9419 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
9420 S:      Supported
9421 F:      security/apparmor/
9422
9423 YAMA SECURITY MODULE
9424 M:      Kees Cook <keescook@chromium.org>
9425 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
9426 S:      Supported
9427 F:      security/yama/
9428
9429 SENSABLE PHANTOM
9430 M:      Jiri Slaby <jirislaby@gmail.com>
9431 S:      Maintained
9432 F:      drivers/misc/phantom.c
9433 F:      include/uapi/linux/phantom.h
9434
9435 SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
9436 M:      Jayamohan Kallickal <jayamohan.kallickal@avagotech.com>
9437 M:      Minh Tran <minh.tran@avagotech.com>
9438 M:      John Soni Jose <sony.john-n@avagotech.com>
9439 L:      linux-scsi@vger.kernel.org
9440 W:      http://www.avagotech.com
9441 S:      Supported
9442 F:      drivers/scsi/be2iscsi/
9443
9444 Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER
9445 M:      Sathya Perla <sathya.perla@avagotech.com>
9446 M:      Ajit Khaparde <ajit.khaparde@avagotech.com>
9447 M:      Padmanabh Ratnakar <padmanabh.ratnakar@avagotech.com>
9448 M:      Sriharsha Basavapatna <sriharsha.basavapatna@avagotech.com>
9449 L:      netdev@vger.kernel.org
9450 W:      http://www.emulex.com
9451 S:      Supported
9452 F:      drivers/net/ethernet/emulex/benet/
9453
9454 EMULEX ONECONNECT ROCE DRIVER
9455 M:      Selvin Xavier <selvin.xavier@avagotech.com>
9456 M:      Devesh Sharma <devesh.sharma@avagotech.com>
9457 M:      Mitesh Ahuja <mitesh.ahuja@avagotech.com>
9458 L:      linux-rdma@vger.kernel.org
9459 W:      http://www.emulex.com
9460 S:      Supported
9461 F:      drivers/infiniband/hw/ocrdma/
9462
9463 SFC NETWORK DRIVER
9464 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
9465 M:      Shradha Shah <sshah@solarflare.com>
9466 L:      netdev@vger.kernel.org
9467 S:      Supported
9468 F:      drivers/net/ethernet/sfc/
9469
9470 SGI GRU DRIVER
9471 M:      Dimitri Sivanich <sivanich@sgi.com>
9472 S:      Maintained
9473 F:      drivers/misc/sgi-gru/
9474
9475 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
9476 M:      Pat Gefre <pfg@sgi.com>
9477 L:      linux-ia64@vger.kernel.org
9478 S:      Supported
9479 F:      Documentation/ia64/serial.txt
9480 F:      drivers/tty/serial/ioc?_serial.c
9481 F:      include/linux/ioc?.h
9482
9483 SGI XP/XPC/XPNET DRIVER
9484 M:      Cliff Whickman <cpw@sgi.com>
9485 M:      Robin Holt <robinmholt@gmail.com>
9486 S:      Maintained
9487 F:      drivers/misc/sgi-xp/
9488
9489 SI2157 MEDIA DRIVER
9490 M:      Antti Palosaari <crope@iki.fi>
9491 L:      linux-media@vger.kernel.org
9492 W:      http://linuxtv.org/
9493 W:      http://palosaari.fi/linux/
9494 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9495 T:      git git://linuxtv.org/anttip/media_tree.git
9496 S:      Maintained
9497 F:      drivers/media/tuners/si2157*
9498
9499 SI2168 MEDIA DRIVER
9500 M:      Antti Palosaari <crope@iki.fi>
9501 L:      linux-media@vger.kernel.org
9502 W:      http://linuxtv.org/
9503 W:      http://palosaari.fi/linux/
9504 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9505 T:      git git://linuxtv.org/anttip/media_tree.git
9506 S:      Maintained
9507 F:      drivers/media/dvb-frontends/si2168*
9508
9509 SI470X FM RADIO RECEIVER I2C DRIVER
9510 M:      Hans Verkuil <hverkuil@xs4all.nl>
9511 L:      linux-media@vger.kernel.org
9512 T:      git git://linuxtv.org/media_tree.git
9513 W:      http://linuxtv.org
9514 S:      Odd Fixes
9515 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
9516
9517 SI470X FM RADIO RECEIVER USB DRIVER
9518 M:      Hans Verkuil <hverkuil@xs4all.nl>
9519 L:      linux-media@vger.kernel.org
9520 T:      git git://linuxtv.org/media_tree.git
9521 W:      http://linuxtv.org
9522 S:      Maintained
9523 F:      drivers/media/radio/si470x/radio-si470x-common.c
9524 F:      drivers/media/radio/si470x/radio-si470x.h
9525 F:      drivers/media/radio/si470x/radio-si470x-usb.c
9526
9527 SI4713 FM RADIO TRANSMITTER I2C DRIVER
9528 M:      Eduardo Valentin <edubezval@gmail.com>
9529 L:      linux-media@vger.kernel.org
9530 T:      git git://linuxtv.org/media_tree.git
9531 W:      http://linuxtv.org
9532 S:      Odd Fixes
9533 F:      drivers/media/radio/si4713/si4713.?
9534
9535 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
9536 M:      Eduardo Valentin <edubezval@gmail.com>
9537 L:      linux-media@vger.kernel.org
9538 T:      git git://linuxtv.org/media_tree.git
9539 W:      http://linuxtv.org
9540 S:      Odd Fixes
9541 F:      drivers/media/radio/si4713/radio-platform-si4713.c
9542
9543 SI4713 FM RADIO TRANSMITTER USB DRIVER
9544 M:      Hans Verkuil <hverkuil@xs4all.nl>
9545 L:      linux-media@vger.kernel.org
9546 T:      git git://linuxtv.org/media_tree.git
9547 W:      http://linuxtv.org
9548 S:      Maintained
9549 F:      drivers/media/radio/si4713/radio-usb-si4713.c
9550
9551 SIANO DVB DRIVER
9552 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9553 L:      linux-media@vger.kernel.org
9554 W:      http://linuxtv.org
9555 T:      git git://linuxtv.org/media_tree.git
9556 S:      Odd fixes
9557 F:      drivers/media/common/siano/
9558 F:      drivers/media/usb/siano/
9559 F:      drivers/media/usb/siano/
9560 F:      drivers/media/mmc/siano/
9561
9562 SIMPLEFB FB DRIVER
9563 M:      Hans de Goede <hdegoede@redhat.com>
9564 L:      linux-fbdev@vger.kernel.org
9565 S:      Maintained
9566 F:      Documentation/devicetree/bindings/video/simple-framebuffer.txt
9567 F:      drivers/video/fbdev/simplefb.c
9568 F:      include/linux/platform_data/simplefb.h
9569
9570 SH_VEU V4L2 MEM2MEM DRIVER
9571 L:      linux-media@vger.kernel.org
9572 S:      Orphan
9573 F:      drivers/media/platform/sh_veu.c
9574
9575 SH_VOU V4L2 OUTPUT DRIVER
9576 L:      linux-media@vger.kernel.org
9577 S:      Orphan
9578 F:      drivers/media/platform/sh_vou.c
9579 F:      include/media/sh_vou.h
9580
9581 SIMPLE FIRMWARE INTERFACE (SFI)
9582 M:      Len Brown <lenb@kernel.org>
9583 L:      sfi-devel@simplefirmware.org
9584 W:      http://simplefirmware.org/
9585 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
9586 S:      Supported
9587 F:      arch/x86/platform/sfi/
9588 F:      drivers/sfi/
9589 F:      include/linux/sfi*.h
9590
9591 SIMTEC EB110ATX (Chalice CATS)
9592 P:      Ben Dooks
9593 P:      Vincent Sanders <vince@simtec.co.uk>
9594 M:      Simtec Linux Team <linux@simtec.co.uk>
9595 W:      http://www.simtec.co.uk/products/EB110ATX/
9596 S:      Supported
9597
9598 SIMTEC EB2410ITX (BAST)
9599 P:      Ben Dooks
9600 P:      Vincent Sanders <vince@simtec.co.uk>
9601 M:      Simtec Linux Team <linux@simtec.co.uk>
9602 W:      http://www.simtec.co.uk/products/EB2410ITX/
9603 S:      Supported
9604 F:      arch/arm/mach-s3c24xx/mach-bast.c
9605 F:      arch/arm/mach-s3c24xx/bast-ide.c
9606 F:      arch/arm/mach-s3c24xx/bast-irq.c
9607
9608 TI DAVINCI MACHINE SUPPORT
9609 M:      Sekhar Nori <nsekhar@ti.com>
9610 M:      Kevin Hilman <khilman@deeprootsystems.com>
9611 T:      git git://gitorious.org/linux-davinci/linux-davinci.git
9612 Q:      http://patchwork.kernel.org/project/linux-davinci/list/
9613 S:      Supported
9614 F:      arch/arm/mach-davinci/
9615 F:      drivers/i2c/busses/i2c-davinci.c
9616
9617 TI DAVINCI SERIES MEDIA DRIVER
9618 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9619 L:      linux-media@vger.kernel.org
9620 W:      http://linuxtv.org/
9621 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9622 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9623 S:      Maintained
9624 F:      drivers/media/platform/davinci/
9625 F:      include/media/davinci/
9626
9627 TI AM437X VPFE DRIVER
9628 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9629 L:      linux-media@vger.kernel.org
9630 W:      http://linuxtv.org/
9631 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9632 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9633 S:      Maintained
9634 F:      drivers/media/platform/am437x/
9635
9636 OV2659 OMNIVISION SENSOR DRIVER
9637 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9638 L:      linux-media@vger.kernel.org
9639 W:      http://linuxtv.org/
9640 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9641 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9642 S:      Maintained
9643 F:      drivers/media/i2c/ov2659.c
9644 F:      include/media/ov2659.h
9645
9646 SILICON MOTION SM712 FRAME BUFFER DRIVER
9647 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
9648 M:      Teddy Wang <teddy.wang@siliconmotion.com>
9649 M:      Sudip Mukherjee <sudip@vectorindia.org>
9650 L:      linux-fbdev@vger.kernel.org
9651 S:      Maintained
9652 F:      drivers/video/fbdev/sm712*
9653 F:      Documentation/fb/sm712fb.txt
9654
9655 SIS 190 ETHERNET DRIVER
9656 M:      Francois Romieu <romieu@fr.zoreil.com>
9657 L:      netdev@vger.kernel.org
9658 S:      Maintained
9659 F:      drivers/net/ethernet/sis/sis190.c
9660
9661 SIS 900/7016 FAST ETHERNET DRIVER
9662 M:      Daniele Venzano <venza@brownhat.org>
9663 W:      http://www.brownhat.org/sis900.html
9664 L:      netdev@vger.kernel.org
9665 S:      Maintained
9666 F:      drivers/net/ethernet/sis/sis900.*
9667
9668 SIS FRAMEBUFFER DRIVER
9669 M:      Thomas Winischhofer <thomas@winischhofer.net>
9670 W:      http://www.winischhofer.net/linuxsisvga.shtml
9671 S:      Maintained
9672 F:      Documentation/fb/sisfb.txt
9673 F:      drivers/video/fbdev/sis/
9674 F:      include/video/sisfb.h
9675
9676 SIS USB2VGA DRIVER
9677 M:      Thomas Winischhofer <thomas@winischhofer.net>
9678 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
9679 S:      Maintained
9680 F:      drivers/usb/misc/sisusbvga/
9681
9682 SLAB ALLOCATOR
9683 M:      Christoph Lameter <cl@linux.com>
9684 M:      Pekka Enberg <penberg@kernel.org>
9685 M:      David Rientjes <rientjes@google.com>
9686 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
9687 M:      Andrew Morton <akpm@linux-foundation.org>
9688 L:      linux-mm@kvack.org
9689 S:      Maintained
9690 F:      include/linux/sl?b*.h
9691 F:      mm/sl?b*
9692
9693 SLEEPABLE READ-COPY UPDATE (SRCU)
9694 M:      Lai Jiangshan <jiangshanlai@gmail.com>
9695 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9696 M:      Josh Triplett <josh@joshtriplett.org>
9697 R:      Steven Rostedt <rostedt@goodmis.org>
9698 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9699 L:      linux-kernel@vger.kernel.org
9700 W:      http://www.rdrop.com/users/paulmck/RCU/
9701 S:      Supported
9702 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9703 F:      include/linux/srcu.h
9704 F:      kernel/rcu/srcu.c
9705
9706 SMACK SECURITY MODULE
9707 M:      Casey Schaufler <casey@schaufler-ca.com>
9708 L:      linux-security-module@vger.kernel.org
9709 W:      http://schaufler-ca.com
9710 T:      git git://git.gitorious.org/smack-next/kernel.git
9711 S:      Maintained
9712 F:      Documentation/security/Smack.txt
9713 F:      security/smack/
9714
9715 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
9716 M:      Kevin Hilman <khilman@kernel.org>
9717 M:      Nishanth Menon <nm@ti.com>
9718 S:      Maintained
9719 F:      drivers/power/avs/
9720 F:      include/linux/power/smartreflex.h
9721 L:      linux-pm@vger.kernel.org
9722
9723 SMC91x ETHERNET DRIVER
9724 M:      Nicolas Pitre <nico@fluxnic.net>
9725 S:      Odd Fixes
9726 F:      drivers/net/ethernet/smsc/smc91x.*
9727
9728 SMIA AND SMIA++ IMAGE SENSOR DRIVER
9729 M:      Sakari Ailus <sakari.ailus@iki.fi>
9730 L:      linux-media@vger.kernel.org
9731 S:      Maintained
9732 F:      drivers/media/i2c/smiapp/
9733 F:      include/media/smiapp.h
9734 F:      drivers/media/i2c/smiapp-pll.c
9735 F:      drivers/media/i2c/smiapp-pll.h
9736 F:      include/uapi/linux/smiapp.h
9737 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
9738
9739 SMM665 HARDWARE MONITOR DRIVER
9740 M:      Guenter Roeck <linux@roeck-us.net>
9741 L:      lm-sensors@lm-sensors.org
9742 S:      Maintained
9743 F:      Documentation/hwmon/smm665
9744 F:      drivers/hwmon/smm665.c
9745
9746 SMSC EMC2103 HARDWARE MONITOR DRIVER
9747 M:      Steve Glendinning <steve.glendinning@shawell.net>
9748 L:      lm-sensors@lm-sensors.org
9749 S:      Maintained
9750 F:      Documentation/hwmon/emc2103
9751 F:      drivers/hwmon/emc2103.c
9752
9753 SMSC SCH5627 HARDWARE MONITOR DRIVER
9754 M:      Hans de Goede <hdegoede@redhat.com>
9755 L:      lm-sensors@lm-sensors.org
9756 S:      Supported
9757 F:      Documentation/hwmon/sch5627
9758 F:      drivers/hwmon/sch5627.c
9759
9760 SMSC47B397 HARDWARE MONITOR DRIVER
9761 M:      Jean Delvare <jdelvare@suse.com>
9762 L:      lm-sensors@lm-sensors.org
9763 S:      Maintained
9764 F:      Documentation/hwmon/smsc47b397
9765 F:      drivers/hwmon/smsc47b397.c
9766
9767 SMSC911x ETHERNET DRIVER
9768 M:      Steve Glendinning <steve.glendinning@shawell.net>
9769 L:      netdev@vger.kernel.org
9770 S:      Maintained
9771 F:      include/linux/smsc911x.h
9772 F:      drivers/net/ethernet/smsc/smsc911x.*
9773
9774 SMSC9420 PCI ETHERNET DRIVER
9775 M:      Steve Glendinning <steve.glendinning@shawell.net>
9776 L:      netdev@vger.kernel.org
9777 S:      Maintained
9778 F:      drivers/net/ethernet/smsc/smsc9420.*
9779
9780 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
9781 M:      Steve Glendinning <steve.glendinning@shawell.net>
9782 L:      linux-fbdev@vger.kernel.org
9783 S:      Maintained
9784 F:      drivers/video/fbdev/smscufx.c
9785
9786 SOC-CAMERA V4L2 SUBSYSTEM
9787 M:      Guennadi Liakhovetski <g.liakhovetski@gmx.de>
9788 L:      linux-media@vger.kernel.org
9789 T:      git git://linuxtv.org/media_tree.git
9790 S:      Maintained
9791 F:      include/media/soc*
9792 F:      drivers/media/i2c/soc_camera/
9793 F:      drivers/media/platform/soc_camera/
9794
9795 SOEKRIS NET48XX LED SUPPORT
9796 M:      Chris Boot <bootc@bootc.net>
9797 S:      Maintained
9798 F:      drivers/leds/leds-net48xx.c
9799
9800 SOFTLOGIC 6x10 MPEG CODEC
9801 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
9802 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
9803 M:      Andrey Utkin <andrey.krieger.utkin@gmail.com>
9804 M:      Ismael Luceno <ismael@iodev.co.uk>
9805 L:      linux-media@vger.kernel.org
9806 S:      Supported
9807 F:      drivers/media/pci/solo6x10/
9808
9809 SOFTWARE RAID (Multiple Disks) SUPPORT
9810 M:      Neil Brown <neilb@suse.com>
9811 L:      linux-raid@vger.kernel.org
9812 S:      Supported
9813 F:      drivers/md/
9814 F:      include/linux/raid/
9815 F:      include/uapi/linux/raid/
9816
9817 SONIC NETWORK DRIVER
9818 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
9819 L:      netdev@vger.kernel.org
9820 S:      Maintained
9821 F:      drivers/net/ethernet/natsemi/sonic.*
9822
9823 SONICS SILICON BACKPLANE DRIVER (SSB)
9824 M:      Michael Buesch <m@bues.ch>
9825 L:      netdev@vger.kernel.org
9826 S:      Maintained
9827 F:      drivers/ssb/
9828 F:      include/linux/ssb/
9829
9830 SONY VAIO CONTROL DEVICE DRIVER
9831 M:      Mattia Dongili <malattia@linux.it>
9832 L:      platform-driver-x86@vger.kernel.org
9833 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
9834 S:      Maintained
9835 F:      Documentation/laptops/sony-laptop.txt
9836 F:      drivers/char/sonypi.c
9837 F:      drivers/platform/x86/sony-laptop.c
9838 F:      include/linux/sony-laptop.h
9839
9840 SONY MEMORYSTICK CARD SUPPORT
9841 M:      Alex Dubov <oakad@yahoo.com>
9842 W:      http://tifmxx.berlios.de/
9843 S:      Maintained
9844 F:      drivers/memstick/host/tifm_ms.c
9845
9846 SONY MEMORYSTICK STANDARD SUPPORT
9847 M:      Maxim Levitsky <maximlevitsky@gmail.com>
9848 S:      Maintained
9849 F:      drivers/memstick/core/ms_block.*
9850
9851 SOUND
9852 M:      Jaroslav Kysela <perex@perex.cz>
9853 M:      Takashi Iwai <tiwai@suse.com>
9854 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9855 W:      http://www.alsa-project.org/
9856 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
9857 T:      git git://git.alsa-project.org/alsa-kernel.git
9858 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
9859 S:      Maintained
9860 F:      Documentation/sound/
9861 F:      include/sound/
9862 F:      include/uapi/sound/
9863 F:      sound/
9864
9865 SOUND - COMPRESSED AUDIO
9866 M:      Vinod Koul <vinod.koul@intel.com>
9867 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9868 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
9869 S:      Supported
9870 F:      Documentation/sound/alsa/compress_offload.txt
9871 F:      include/sound/compress_driver.h
9872 F:      include/uapi/sound/compress_*
9873 F:      sound/core/compress_offload.c
9874 F:      sound/soc/soc-compress.c
9875
9876 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
9877 M:      Liam Girdwood <lgirdwood@gmail.com>
9878 M:      Mark Brown <broonie@kernel.org>
9879 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
9880 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9881 W:      http://alsa-project.org/main/index.php/ASoC
9882 S:      Supported
9883 F:      Documentation/sound/alsa/soc/
9884 F:      sound/soc/
9885 F:      include/sound/soc*
9886
9887 SOUND - DMAENGINE HELPERS
9888 M:      Lars-Peter Clausen <lars@metafoo.de>
9889 S:      Supported
9890 F:      include/sound/dmaengine_pcm.h
9891 F:      sound/core/pcm_dmaengine.c
9892 F:      sound/soc/soc-generic-dmaengine-pcm.c
9893
9894 SP2 MEDIA DRIVER
9895 M:      Olli Salonen <olli.salonen@iki.fi>
9896 L:      linux-media@vger.kernel.org
9897 W:      http://linuxtv.org/
9898 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9899 S:      Maintained
9900 F:      drivers/media/dvb-frontends/sp2*
9901
9902 SPARC + UltraSPARC (sparc/sparc64)
9903 M:      "David S. Miller" <davem@davemloft.net>
9904 L:      sparclinux@vger.kernel.org
9905 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
9906 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
9907 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
9908 S:      Maintained
9909 F:      arch/sparc/
9910 F:      drivers/sbus/
9911
9912 SPARC SERIAL DRIVERS
9913 M:      "David S. Miller" <davem@davemloft.net>
9914 L:      sparclinux@vger.kernel.org
9915 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
9916 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
9917 S:      Maintained
9918 F:      include/linux/sunserialcore.h
9919 F:      drivers/tty/serial/suncore.c
9920 F:      drivers/tty/serial/sunhv.c
9921 F:      drivers/tty/serial/sunsab.c
9922 F:      drivers/tty/serial/sunsab.h
9923 F:      drivers/tty/serial/sunsu.c
9924 F:      drivers/tty/serial/sunzilog.c
9925 F:      drivers/tty/serial/sunzilog.h
9926
9927 SPARSE CHECKER
9928 M:      "Christopher Li" <sparse@chrisli.org>
9929 L:      linux-sparse@vger.kernel.org
9930 W:      https://sparse.wiki.kernel.org/
9931 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
9932 T:      git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
9933 S:      Maintained
9934 F:      include/linux/compiler.h
9935
9936 SPEAR PLATFORM SUPPORT
9937 M:      Viresh Kumar <vireshk@kernel.org>
9938 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
9939 L:      spear-devel@list.st.com
9940 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9941 W:      http://www.st.com/spear
9942 S:      Maintained
9943 F:      arch/arm/mach-spear/
9944
9945 SPEAR CLOCK FRAMEWORK SUPPORT
9946 M:      Viresh Kumar <vireshk@kernel.org>
9947 L:      spear-devel@list.st.com
9948 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9949 W:      http://www.st.com/spear
9950 S:      Maintained
9951 F:      drivers/clk/spear/
9952
9953 SPI SUBSYSTEM
9954 M:      Mark Brown <broonie@kernel.org>
9955 L:      linux-spi@vger.kernel.org
9956 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
9957 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
9958 S:      Maintained
9959 F:      Documentation/spi/
9960 F:      drivers/spi/
9961 F:      include/linux/spi/
9962 F:      include/uapi/linux/spi/
9963
9964 SPIDERNET NETWORK DRIVER for CELL
9965 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
9966 L:      netdev@vger.kernel.org
9967 S:      Supported
9968 F:      Documentation/networking/spider_net.txt
9969 F:      drivers/net/ethernet/toshiba/spider_net*
9970
9971 SPU FILE SYSTEM
9972 M:      Jeremy Kerr <jk@ozlabs.org>
9973 L:      linuxppc-dev@lists.ozlabs.org
9974 W:      http://www.ibm.com/developerworks/power/cell/
9975 S:      Supported
9976 F:      Documentation/filesystems/spufs.txt
9977 F:      arch/powerpc/platforms/cell/spufs/
9978
9979 SQUASHFS FILE SYSTEM
9980 M:      Phillip Lougher <phillip@squashfs.org.uk>
9981 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
9982 W:      http://squashfs.org.uk
9983 S:      Maintained
9984 F:      Documentation/filesystems/squashfs.txt
9985 F:      fs/squashfs/
9986
9987 SRM (Alpha) environment access
9988 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
9989 S:      Maintained
9990 F:      arch/alpha/kernel/srm_env.c
9991
9992 STABLE BRANCH
9993 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9994 L:      stable@vger.kernel.org
9995 S:      Supported
9996 F:      Documentation/stable_kernel_rules.txt
9997
9998 STAGING SUBSYSTEM
9999 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10000 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
10001 L:      devel@driverdev.osuosl.org
10002 S:      Supported
10003 F:      drivers/staging/
10004
10005 STAGING - COMEDI
10006 M:      Ian Abbott <abbotti@mev.co.uk>
10007 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
10008 S:      Odd Fixes
10009 F:      drivers/staging/comedi/
10010
10011 STAGING - FLARION FT1000 DRIVERS
10012 M:      Marek Belisko <marek.belisko@gmail.com>
10013 S:      Odd Fixes
10014 F:      drivers/staging/ft1000/
10015
10016 STAGING - INDUSTRIAL IO
10017 M:      Jonathan Cameron <jic23@kernel.org>
10018 L:      linux-iio@vger.kernel.org
10019 S:      Odd Fixes
10020 F:      drivers/staging/iio/
10021
10022 STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
10023 M:      Jarod Wilson <jarod@wilsonet.com>
10024 W:      http://www.lirc.org/
10025 S:      Odd Fixes
10026 F:      drivers/staging/media/lirc/
10027
10028 STAGING - LUSTRE PARALLEL FILESYSTEM
10029 M:      Oleg Drokin <oleg.drokin@intel.com>
10030 M:      Andreas Dilger <andreas.dilger@intel.com>
10031 L:      lustre-devel@lists.lustre.org (moderated for non-subscribers)
10032 W:      http://wiki.lustre.org/
10033 S:      Maintained
10034 F:      drivers/staging/lustre
10035
10036 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
10037 M:      Marc Dietrich <marvin24@gmx.de>
10038 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
10039 L:      linux-tegra@vger.kernel.org
10040 S:      Maintained
10041 F:      drivers/staging/nvec/
10042
10043 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
10044 M:      Jens Frederich <jfrederich@gmail.com>
10045 M:      Daniel Drake <dsd@laptop.org>
10046 M:      Jon Nettleton <jon.nettleton@gmail.com>
10047 W:      http://wiki.laptop.org/go/DCON
10048 S:      Maintained
10049 F:      drivers/staging/olpc_dcon/
10050
10051 STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
10052 M:      Willy Tarreau <willy@meta-x.org>
10053 S:      Odd Fixes
10054 F:      drivers/staging/panel/
10055
10056 STAGING - REALTEK RTL8712U DRIVERS
10057 M:      Larry Finger <Larry.Finger@lwfinger.net>
10058 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
10059 S:      Odd Fixes
10060 F:      drivers/staging/rtl8712/
10061
10062 STAGING - REALTEK RTL8723U WIRELESS DRIVER
10063 M:      Larry Finger <Larry.Finger@lwfinger.net>
10064 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
10065 L:      linux-wireless@vger.kernel.org
10066 S:      Maintained
10067 F:      drivers/staging/rtl8723au/
10068
10069 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
10070 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
10071 M:      Teddy Wang <teddy.wang@siliconmotion.com>
10072 M:      Sudip Mukherjee <sudip@vectorindia.org>
10073 L:      linux-fbdev@vger.kernel.org
10074 S:      Maintained
10075 F:      drivers/staging/sm750fb/
10076
10077 STAGING - SLICOSS
10078 M:      Lior Dotan <liodot@gmail.com>
10079 M:      Christopher Harrer <charrer@alacritech.com>
10080 S:      Odd Fixes
10081 F:      drivers/staging/slicoss/
10082
10083 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
10084 M:      William Hubbs <w.d.hubbs@gmail.com>
10085 M:      Chris Brannon <chris@the-brannons.com>
10086 M:      Kirk Reiser <kirk@reisers.ca>
10087 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
10088 L:      speakup@linux-speakup.org
10089 W:      http://www.linux-speakup.org/
10090 S:      Odd Fixes
10091 F:      drivers/staging/speakup/
10092
10093 STAGING - VIA VT665X DRIVERS
10094 M:      Forest Bond <forest@alittletooquiet.net>
10095 S:      Odd Fixes
10096 F:      drivers/staging/vt665?/
10097
10098 STAGING - WILC1000 WIFI DRIVER
10099 M:      Johnny Kim <johnny.kim@atmel.com>
10100 M:      Rachel Kim <rachel.kim@atmel.com>
10101 M:      Dean Lee <dean.lee@atmel.com>
10102 M:      Chris Park <chris.park@atmel.com>
10103 L:      linux-wireless@vger.kernel.org
10104 S:      Supported
10105 F:      drivers/staging/wilc1000/
10106
10107 STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
10108 M:      Arnaud Patard <arnaud.patard@rtp-net.org>
10109 S:      Odd Fixes
10110 F:      drivers/staging/xgifb/
10111
10112 HFI1 DRIVER
10113 M:      Mike Marciniszyn <infinipath@intel.com>
10114 L:      linux-rdma@vger.kernel.org
10115 S:      Supported
10116 F:      drivers/staging/rdma/hfi1
10117
10118 STARFIRE/DURALAN NETWORK DRIVER
10119 M:      Ion Badulescu <ionut@badula.org>
10120 S:      Odd Fixes
10121 F:      drivers/net/ethernet/adaptec/starfire*
10122
10123 SUN3/3X
10124 M:      Sam Creasey <sammy@sammy.net>
10125 W:      http://sammy.net/sun3/
10126 S:      Maintained
10127 F:      arch/m68k/kernel/*sun3*
10128 F:      arch/m68k/sun3*/
10129 F:      arch/m68k/include/asm/sun3*
10130 F:      drivers/net/ethernet/i825xx/sun3*
10131
10132 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
10133 M:      Hans de Goede <hdegoede@redhat.com>
10134 L:      linux-input@vger.kernel.org
10135 S:      Maintained
10136 F:      Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
10137 F:      drivers/input/keyboard/sun4i-lradc-keys.c
10138
10139 SUNDANCE NETWORK DRIVER
10140 M:      Denis Kirjanov <kda@linux-powerpc.org>
10141 L:      netdev@vger.kernel.org
10142 S:      Maintained
10143 F:      drivers/net/ethernet/dlink/sundance.c
10144
10145 SUPERH
10146 L:      linux-sh@vger.kernel.org
10147 Q:      http://patchwork.kernel.org/project/linux-sh/list/
10148 S:      Orphan
10149 F:      Documentation/sh/
10150 F:      arch/sh/
10151 F:      drivers/sh/
10152
10153 SUSPEND TO RAM
10154 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
10155 M:      Len Brown <len.brown@intel.com>
10156 M:      Pavel Machek <pavel@ucw.cz>
10157 L:      linux-pm@vger.kernel.org
10158 S:      Supported
10159 F:      Documentation/power/
10160 F:      arch/x86/kernel/acpi/
10161 F:      drivers/base/power/
10162 F:      kernel/power/
10163 F:      include/linux/suspend.h
10164 F:      include/linux/freezer.h
10165 F:      include/linux/pm.h
10166
10167 SVGA HANDLING
10168 M:      Martin Mares <mj@ucw.cz>
10169 L:      linux-video@atrey.karlin.mff.cuni.cz
10170 S:      Maintained
10171 F:      Documentation/svga.txt
10172 F:      arch/x86/boot/video*
10173
10174 SWIOTLB SUBSYSTEM
10175 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10176 L:      linux-kernel@vger.kernel.org
10177 S:      Supported
10178 F:      lib/swiotlb.c
10179 F:      arch/*/kernel/pci-swiotlb.c
10180 F:      include/linux/swiotlb.h
10181
10182 SWITCHDEV
10183 M:      Jiri Pirko <jiri@resnulli.us>
10184 L:      netdev@vger.kernel.org
10185 S:      Supported
10186 F:      net/switchdev/
10187 F:      include/net/switchdev.h
10188
10189 SYNOPSYS ARC ARCHITECTURE
10190 M:      Vineet Gupta <vgupta@synopsys.com>
10191 L:      linux-snps-arc@lists.infraded.org
10192 S:      Supported
10193 F:      arch/arc/
10194 F:      Documentation/devicetree/bindings/arc/*
10195 F:      drivers/tty/serial/arc_uart.c
10196 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
10197
10198 SYNOPSYS ARC SDP platform support
10199 M:      Alexey Brodkin <abrodkin@synopsys.com>
10200 S:      Supported
10201 F:      arch/arc/plat-axs10x
10202 F:      arch/arc/boot/dts/ax*
10203 F:      Documentation/devicetree/bindings/arc/axs10*
10204
10205 SYSTEM CONFIGURATION (SYSCON)
10206 M:      Lee Jones <lee.jones@linaro.org>
10207 M:      Arnd Bergmann <arnd@arndb.de>
10208 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
10209 S:      Supported
10210 F:      drivers/mfd/syscon.c
10211
10212 SYSV FILESYSTEM
10213 M:      Christoph Hellwig <hch@infradead.org>
10214 S:      Maintained
10215 F:      Documentation/filesystems/sysv-fs.txt
10216 F:      fs/sysv/
10217 F:      include/linux/sysv_fs.h
10218
10219 TARGET SUBSYSTEM
10220 M:      "Nicholas A. Bellinger" <nab@linux-iscsi.org>
10221 L:      linux-scsi@vger.kernel.org
10222 L:      target-devel@vger.kernel.org
10223 W:      http://www.linux-iscsi.org
10224 W:      http://groups.google.com/group/linux-iscsi-target-dev
10225 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10226 S:      Supported
10227 F:      drivers/target/
10228 F:      include/target/
10229 F:      Documentation/target/
10230
10231 TASKSTATS STATISTICS INTERFACE
10232 M:      Balbir Singh <bsingharora@gmail.com>
10233 S:      Maintained
10234 F:      Documentation/accounting/taskstats*
10235 F:      include/linux/taskstats*
10236 F:      kernel/taskstats.c
10237
10238 TC CLASSIFIER
10239 M:      Jamal Hadi Salim <jhs@mojatatu.com>
10240 L:      netdev@vger.kernel.org
10241 S:      Maintained
10242 F:      include/net/pkt_cls.h
10243 F:      include/uapi/linux/pkt_cls.h
10244 F:      net/sched/
10245
10246 TCP LOW PRIORITY MODULE
10247 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
10248 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
10249 W:      http://tcp-lp-mod.sourceforge.net/
10250 S:      Maintained
10251 F:      net/ipv4/tcp_lp.c
10252
10253 TDA10071 MEDIA DRIVER
10254 M:      Antti Palosaari <crope@iki.fi>
10255 L:      linux-media@vger.kernel.org
10256 W:      http://linuxtv.org/
10257 W:      http://palosaari.fi/linux/
10258 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10259 T:      git git://linuxtv.org/anttip/media_tree.git
10260 S:      Maintained
10261 F:      drivers/media/dvb-frontends/tda10071*
10262
10263 TDA18212 MEDIA DRIVER
10264 M:      Antti Palosaari <crope@iki.fi>
10265 L:      linux-media@vger.kernel.org
10266 W:      http://linuxtv.org/
10267 W:      http://palosaari.fi/linux/
10268 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10269 T:      git git://linuxtv.org/anttip/media_tree.git
10270 S:      Maintained
10271 F:      drivers/media/tuners/tda18212*
10272
10273 TDA18218 MEDIA DRIVER
10274 M:      Antti Palosaari <crope@iki.fi>
10275 L:      linux-media@vger.kernel.org
10276 W:      http://linuxtv.org/
10277 W:      http://palosaari.fi/linux/
10278 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10279 T:      git git://linuxtv.org/anttip/media_tree.git
10280 S:      Maintained
10281 F:      drivers/media/tuners/tda18218*
10282
10283 TDA18271 MEDIA DRIVER
10284 M:      Michael Krufky <mkrufky@linuxtv.org>
10285 L:      linux-media@vger.kernel.org
10286 W:      http://linuxtv.org/
10287 W:      http://github.com/mkrufky
10288 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10289 T:      git git://linuxtv.org/mkrufky/tuners.git
10290 S:      Maintained
10291 F:      drivers/media/tuners/tda18271*
10292
10293 TDA827x MEDIA DRIVER
10294 M:      Michael Krufky <mkrufky@linuxtv.org>
10295 L:      linux-media@vger.kernel.org
10296 W:      http://linuxtv.org/
10297 W:      http://github.com/mkrufky
10298 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10299 T:      git git://linuxtv.org/mkrufky/tuners.git
10300 S:      Maintained
10301 F:      drivers/media/tuners/tda8290.*
10302
10303 TDA8290 MEDIA DRIVER
10304 M:      Michael Krufky <mkrufky@linuxtv.org>
10305 L:      linux-media@vger.kernel.org
10306 W:      http://linuxtv.org/
10307 W:      http://github.com/mkrufky
10308 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10309 T:      git git://linuxtv.org/mkrufky/tuners.git
10310 S:      Maintained
10311 F:      drivers/media/tuners/tda8290.*
10312
10313 TDA9840 MEDIA DRIVER
10314 M:      Hans Verkuil <hverkuil@xs4all.nl>
10315 L:      linux-media@vger.kernel.org
10316 T:      git git://linuxtv.org/media_tree.git
10317 W:      http://linuxtv.org
10318 S:      Maintained
10319 F:      drivers/media/i2c/tda9840*
10320
10321 TEA5761 TUNER DRIVER
10322 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10323 L:      linux-media@vger.kernel.org
10324 W:      http://linuxtv.org
10325 T:      git git://linuxtv.org/media_tree.git
10326 S:      Odd fixes
10327 F:      drivers/media/tuners/tea5761.*
10328
10329 TEA5767 TUNER DRIVER
10330 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10331 L:      linux-media@vger.kernel.org
10332 W:      http://linuxtv.org
10333 T:      git git://linuxtv.org/media_tree.git
10334 S:      Maintained
10335 F:      drivers/media/tuners/tea5767.*
10336
10337 TEA6415C MEDIA DRIVER
10338 M:      Hans Verkuil <hverkuil@xs4all.nl>
10339 L:      linux-media@vger.kernel.org
10340 T:      git git://linuxtv.org/media_tree.git
10341 W:      http://linuxtv.org
10342 S:      Maintained
10343 F:      drivers/media/i2c/tea6415c*
10344
10345 TEA6420 MEDIA DRIVER
10346 M:      Hans Verkuil <hverkuil@xs4all.nl>
10347 L:      linux-media@vger.kernel.org
10348 T:      git git://linuxtv.org/media_tree.git
10349 W:      http://linuxtv.org
10350 S:      Maintained
10351 F:      drivers/media/i2c/tea6420*
10352
10353 TEAM DRIVER
10354 M:      Jiri Pirko <jiri@resnulli.us>
10355 L:      netdev@vger.kernel.org
10356 S:      Supported
10357 F:      drivers/net/team/
10358 F:      include/linux/if_team.h
10359 F:      include/uapi/linux/if_team.h
10360
10361 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
10362 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
10363 S:      Maintained
10364 F:      arch/x86/platform/ts5500/
10365
10366 TECHNOTREND USB IR RECEIVER
10367 M:      Sean Young <sean@mess.org>
10368 L:      linux-media@vger.kernel.org
10369 S:      Maintained
10370 F:      drivers/media/rc/ttusbir.c
10371
10372 TEGRA ARCHITECTURE SUPPORT
10373 M:      Stephen Warren <swarren@wwwdotorg.org>
10374 M:      Thierry Reding <thierry.reding@gmail.com>
10375 M:      Alexandre Courbot <gnurou@gmail.com>
10376 L:      linux-tegra@vger.kernel.org
10377 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
10378 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
10379 S:      Supported
10380 N:      [^a-z]tegra
10381
10382 TEGRA CLOCK DRIVER
10383 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
10384 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
10385 S:      Supported
10386 F:      drivers/clk/tegra/
10387
10388 TEGRA DMA DRIVER
10389 M:      Laxman Dewangan <ldewangan@nvidia.com>
10390 S:      Supported
10391 F:      drivers/dma/tegra20-apb-dma.c
10392
10393 TEGRA I2C DRIVER
10394 M:      Laxman Dewangan <ldewangan@nvidia.com>
10395 S:      Supported
10396 F:      drivers/i2c/busses/i2c-tegra.c
10397
10398 TEGRA IOMMU DRIVERS
10399 M:      Hiroshi Doyu <hdoyu@nvidia.com>
10400 S:      Supported
10401 F:      drivers/iommu/tegra*
10402
10403 TEGRA KBC DRIVER
10404 M:      Rakesh Iyer <riyer@nvidia.com>
10405 M:      Laxman Dewangan <ldewangan@nvidia.com>
10406 S:      Supported
10407 F:      drivers/input/keyboard/tegra-kbc.c
10408
10409 TEGRA PWM DRIVER
10410 M:      Thierry Reding <thierry.reding@gmail.com>
10411 S:      Supported
10412 F:      drivers/pwm/pwm-tegra.c
10413
10414 TEGRA SERIAL DRIVER
10415 M:      Laxman Dewangan <ldewangan@nvidia.com>
10416 S:      Supported
10417 F:      drivers/tty/serial/serial-tegra.c
10418
10419 TEGRA SPI DRIVER
10420 M:      Laxman Dewangan <ldewangan@nvidia.com>
10421 S:      Supported
10422 F:      drivers/spi/spi-tegra*
10423
10424 TEHUTI ETHERNET DRIVER
10425 M:      Andy Gospodarek <andy@greyhouse.net>
10426 L:      netdev@vger.kernel.org
10427 S:      Supported
10428 F:      drivers/net/ethernet/tehuti/*
10429
10430 Telecom Clock Driver for MCPL0010
10431 M:      Mark Gross <mark.gross@intel.com>
10432 S:      Supported
10433 F:      drivers/char/tlclk.c
10434
10435 TENSILICA XTENSA PORT (xtensa)
10436 M:      Chris Zankel <chris@zankel.net>
10437 M:      Max Filippov <jcmvbkbc@gmail.com>
10438 L:      linux-xtensa@linux-xtensa.org
10439 S:      Maintained
10440 F:      arch/xtensa/
10441 F:      drivers/irqchip/irq-xtensa-*
10442
10443 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
10444 M:      Hans Verkuil <hverkuil@xs4all.nl>
10445 L:      linux-media@vger.kernel.org
10446 T:      git git://linuxtv.org/media_tree.git
10447 W:      http://linuxtv.org
10448 S:      Maintained
10449 F:      drivers/media/radio/radio-raremono.c
10450
10451 THERMAL
10452 M:      Zhang Rui <rui.zhang@intel.com>
10453 M:      Eduardo Valentin <edubezval@gmail.com>
10454 L:      linux-pm@vger.kernel.org
10455 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
10456 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
10457 Q:      https://patchwork.kernel.org/project/linux-pm/list/
10458 S:      Supported
10459 F:      drivers/thermal/
10460 F:      include/linux/thermal.h
10461 F:      include/uapi/linux/thermal.h
10462 F:      include/linux/cpu_cooling.h
10463 F:      Documentation/devicetree/bindings/thermal/
10464
10465 THERMAL/CPU_COOLING
10466 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
10467 M:      Viresh Kumar <viresh.kumar@linaro.org>
10468 M:      Javi Merino <javi.merino@arm.com>
10469 L:      linux-pm@vger.kernel.org
10470 S:      Supported
10471 F:      Documentation/thermal/cpu-cooling-api.txt
10472 F:      drivers/thermal/cpu_cooling.c
10473 F:      include/linux/cpu_cooling.h
10474
10475 THINGM BLINK(1) USB RGB LED DRIVER
10476 M:      Vivien Didelot <vivien.didelot@savoirfairelinux.com>
10477 S:      Maintained
10478 F:      drivers/hid/hid-thingm.c
10479
10480 THINKPAD ACPI EXTRAS DRIVER
10481 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
10482 L:      ibm-acpi-devel@lists.sourceforge.net
10483 L:      platform-driver-x86@vger.kernel.org
10484 W:      http://ibm-acpi.sourceforge.net
10485 W:      http://thinkwiki.org/wiki/Ibm-acpi
10486 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
10487 S:      Maintained
10488 F:      drivers/platform/x86/thinkpad_acpi.c
10489
10490 TI BANDGAP AND THERMAL DRIVER
10491 M:      Eduardo Valentin <edubezval@gmail.com>
10492 L:      linux-pm@vger.kernel.org
10493 L:      linux-omap@vger.kernel.org
10494 S:      Maintained
10495 F:      drivers/thermal/ti-soc-thermal/
10496
10497 TI CDCE706 CLOCK DRIVER
10498 M:      Max Filippov <jcmvbkbc@gmail.com>
10499 S:      Maintained
10500 F:      drivers/clk/clk-cdce706.c
10501
10502 TI CLOCK DRIVER
10503 M:      Tero Kristo <t-kristo@ti.com>
10504 L:      linux-omap@vger.kernel.org
10505 S:      Maintained
10506 F:      drivers/clk/ti/
10507 F:      include/linux/clk/ti.h
10508
10509 TI FLASH MEDIA INTERFACE DRIVER
10510 M:      Alex Dubov <oakad@yahoo.com>
10511 S:      Maintained
10512 F:      drivers/misc/tifm*
10513 F:      drivers/mmc/host/tifm_sd.c
10514 F:      include/linux/tifm.h
10515
10516 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
10517 M:      Santosh Shilimkar <ssantosh@kernel.org>
10518 L:      linux-kernel@vger.kernel.org
10519 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10520 S:      Maintained
10521 F:      drivers/soc/ti/*
10522 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
10523
10524
10525 TI LM49xxx FAMILY ASoC CODEC DRIVERS
10526 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
10527 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
10528 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10529 S:      Maintained
10530 F:      sound/soc/codecs/lm49453*
10531 F:      sound/soc/codecs/isabelle*
10532
10533 TI LP855x BACKLIGHT DRIVER
10534 M:      Milo Kim <milo.kim@ti.com>
10535 S:      Maintained
10536 F:      Documentation/backlight/lp855x-driver.txt
10537 F:      drivers/video/backlight/lp855x_bl.c
10538 F:      include/linux/platform_data/lp855x.h
10539
10540 TI LP8727 CHARGER DRIVER
10541 M:      Milo Kim <milo.kim@ti.com>
10542 S:      Maintained
10543 F:      drivers/power/lp8727_charger.c
10544 F:      include/linux/platform_data/lp8727.h
10545
10546 TI LP8788 MFD DRIVER
10547 M:      Milo Kim <milo.kim@ti.com>
10548 S:      Maintained
10549 F:      drivers/iio/adc/lp8788_adc.c
10550 F:      drivers/leds/leds-lp8788.c
10551 F:      drivers/mfd/lp8788*.c
10552 F:      drivers/power/lp8788-charger.c
10553 F:      drivers/regulator/lp8788-*.c
10554 F:      include/linux/mfd/lp8788*.h
10555
10556 TI NETCP ETHERNET DRIVER
10557 M:      Wingman Kwok <w-kwok2@ti.com>
10558 M:      Murali Karicheri <m-karicheri2@ti.com>
10559 L:      netdev@vger.kernel.org
10560 S:      Maintained
10561 F:      drivers/net/ethernet/ti/netcp*
10562
10563 TI TAS571X FAMILY ASoC CODEC DRIVER
10564 M:      Kevin Cernekee <cernekee@chromium.org>
10565 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10566 S:      Odd Fixes
10567 F:      sound/soc/codecs/tas571x*
10568
10569 TI TWL4030 SERIES SOC CODEC DRIVER
10570 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
10571 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10572 S:      Maintained
10573 F:      sound/soc/codecs/twl4030*
10574
10575 TI WILINK WIRELESS DRIVERS
10576 L:      linux-wireless@vger.kernel.org
10577 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
10578 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
10579 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
10580 S:      Orphan
10581 F:      drivers/net/wireless/ti/
10582 F:      include/linux/wl12xx.h
10583
10584 TIPC NETWORK LAYER
10585 M:      Jon Maloy <jon.maloy@ericsson.com>
10586 M:      Ying Xue <ying.xue@windriver.com>
10587 L:      netdev@vger.kernel.org (core kernel code)
10588 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
10589 W:      http://tipc.sourceforge.net/
10590 S:      Maintained
10591 F:      include/uapi/linux/tipc*.h
10592 F:      net/tipc/
10593
10594 TILE ARCHITECTURE
10595 M:      Chris Metcalf <cmetcalf@ezchip.com>
10596 W:      http://www.ezchip.com/scm/
10597 S:      Supported
10598 F:      arch/tile/
10599 F:      drivers/char/tile-srom.c
10600 F:      drivers/edac/tile_edac.c
10601 F:      drivers/net/ethernet/tile/
10602 F:      drivers/rtc/rtc-tile.c
10603 F:      drivers/tty/hvc/hvc_tile.c
10604 F:      drivers/tty/serial/tilegx.c
10605 F:      drivers/usb/host/*-tilegx.c
10606 F:      include/linux/usb/tilegx.h
10607
10608 TLAN NETWORK DRIVER
10609 M:      Samuel Chessman <chessman@tux.org>
10610 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
10611 W:      http://sourceforge.net/projects/tlan/
10612 S:      Maintained
10613 F:      Documentation/networking/tlan.txt
10614 F:      drivers/net/ethernet/ti/tlan.*
10615
10616 TOMOYO SECURITY MODULE
10617 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
10618 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
10619 L:      tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
10620 L:      tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
10621 L:      tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
10622 L:      tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
10623 W:      http://tomoyo.sourceforge.jp/
10624 T:      quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
10625 S:      Maintained
10626 F:      security/tomoyo/
10627
10628 TOPSTAR LAPTOP EXTRAS DRIVER
10629 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
10630 L:      platform-driver-x86@vger.kernel.org
10631 S:      Maintained
10632 F:      drivers/platform/x86/topstar-laptop.c
10633
10634 TOSHIBA ACPI EXTRAS DRIVER
10635 M:      Azael Avalos <coproscefalo@gmail.com>
10636 L:      platform-driver-x86@vger.kernel.org
10637 S:      Maintained
10638 F:      drivers/platform/x86/toshiba_acpi.c
10639
10640 TOSHIBA BLUETOOTH DRIVER
10641 M:      Azael Avalos <coproscefalo@gmail.com>
10642 L:      platform-driver-x86@vger.kernel.org
10643 S:      Maintained
10644 F:      drivers/platform/x86/toshiba_bluetooth.c
10645
10646 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
10647 M:      Azael Avalos <coproscefalo@gmail.com>
10648 L:      platform-driver-x86@vger.kernel.org
10649 S:      Maintained
10650 F:      drivers/platform/x86/toshiba_haps.c
10651
10652 TOSHIBA SMM DRIVER
10653 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
10654 W:      http://www.buzzard.org.uk/toshiba/
10655 S:      Maintained
10656 F:      drivers/char/toshiba.c
10657 F:      include/linux/toshiba.h
10658 F:      include/uapi/linux/toshiba.h
10659
10660 TOSHIBA TC358743 DRIVER
10661 M:      Mats Randgaard <matrandg@cisco.com>
10662 L:      linux-media@vger.kernel.org
10663 S:      Maintained
10664 F:      drivers/media/i2c/tc358743*
10665 F:      include/media/tc358743.h
10666
10667 TMIO MMC DRIVER
10668 M:      Ian Molton <ian@mnementh.co.uk>
10669 L:      linux-mmc@vger.kernel.org
10670 S:      Maintained
10671 F:      drivers/mmc/host/tmio_mmc*
10672 F:      drivers/mmc/host/sh_mobile_sdhi.c
10673 F:      include/linux/mmc/tmio.h
10674 F:      include/linux/mmc/sh_mobile_sdhi.h
10675
10676 TMP401 HARDWARE MONITOR DRIVER
10677 M:      Guenter Roeck <linux@roeck-us.net>
10678 L:      lm-sensors@lm-sensors.org
10679 S:      Maintained
10680 F:      Documentation/hwmon/tmp401
10681 F:      drivers/hwmon/tmp401.c
10682
10683 TMPFS (SHMEM FILESYSTEM)
10684 M:      Hugh Dickins <hughd@google.com>
10685 L:      linux-mm@kvack.org
10686 S:      Maintained
10687 F:      include/linux/shmem_fs.h
10688 F:      mm/shmem.c
10689
10690 TM6000 VIDEO4LINUX DRIVER
10691 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10692 L:      linux-media@vger.kernel.org
10693 W:      http://linuxtv.org
10694 T:      git git://linuxtv.org/media_tree.git
10695 S:      Odd fixes
10696 F:      drivers/media/usb/tm6000/
10697
10698 TW68 VIDEO4LINUX DRIVER
10699 M:      Hans Verkuil <hverkuil@xs4all.nl>
10700 L:      linux-media@vger.kernel.org
10701 T:      git git://linuxtv.org/media_tree.git
10702 W:      http://linuxtv.org
10703 S:      Odd Fixes
10704 F:      drivers/media/pci/tw68/
10705
10706 TPM DEVICE DRIVER
10707 M:      Peter Huewe <peterhuewe@gmx.de>
10708 M:      Marcel Selhorst <tpmdd@selhorst.net>
10709 R:      Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
10710 W:      http://tpmdd.sourceforge.net
10711 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
10712 Q:      git git://github.com/PeterHuewe/linux-tpmdd.git
10713 T:      https://github.com/PeterHuewe/linux-tpmdd
10714 S:      Maintained
10715 F:      drivers/char/tpm/
10716
10717 TPM IBM_VTPM DEVICE DRIVER
10718 M:      Ashley Lai <ashleydlai@gmail.com>
10719 W:      http://tpmdd.sourceforge.net
10720 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
10721 S:      Maintained
10722 F:      drivers/char/tpm/tpm_ibmvtpm*
10723
10724 TRACING
10725 M:      Steven Rostedt <rostedt@goodmis.org>
10726 M:      Ingo Molnar <mingo@redhat.com>
10727 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
10728 S:      Maintained
10729 F:      Documentation/trace/ftrace.txt
10730 F:      arch/*/*/*/ftrace.h
10731 F:      arch/*/kernel/ftrace.c
10732 F:      include/*/ftrace.h
10733 F:      include/linux/trace*.h
10734 F:      include/trace/
10735 F:      kernel/trace/
10736 F:      tools/testing/selftests/ftrace/
10737
10738 TRIVIAL PATCHES
10739 M:      Jiri Kosina <trivial@kernel.org>
10740 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
10741 S:      Maintained
10742 K:      ^Subject:.*(?i)trivial
10743
10744 TTY LAYER
10745 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10746 M:      Jiri Slaby <jslaby@suse.com>
10747 S:      Supported
10748 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
10749 F:      Documentation/serial/
10750 F:      drivers/tty/
10751 F:      drivers/tty/serial/serial_core.c
10752 F:      include/linux/serial_core.h
10753 F:      include/linux/serial.h
10754 F:      include/linux/tty.h
10755 F:      include/uapi/linux/serial_core.h
10756 F:      include/uapi/linux/serial.h
10757 F:      include/uapi/linux/tty.h
10758
10759 TUA9001 MEDIA DRIVER
10760 M:      Antti Palosaari <crope@iki.fi>
10761 L:      linux-media@vger.kernel.org
10762 W:      http://linuxtv.org/
10763 W:      http://palosaari.fi/linux/
10764 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10765 T:      git git://linuxtv.org/anttip/media_tree.git
10766 S:      Maintained
10767 F:      drivers/media/tuners/tua9001*
10768
10769 TULIP NETWORK DRIVERS
10770 M:      Grant Grundler <grundler@parisc-linux.org>
10771 L:      netdev@vger.kernel.org
10772 S:      Maintained
10773 F:      drivers/net/ethernet/dec/tulip/
10774
10775 TUN/TAP driver
10776 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
10777 W:      http://vtun.sourceforge.net/tun
10778 S:      Maintained
10779 F:      Documentation/networking/tuntap.txt
10780 F:      arch/um/os-Linux/drivers/
10781
10782 TURBOCHANNEL SUBSYSTEM
10783 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
10784 M:      Ralf Baechle <ralf@linux-mips.org>
10785 L:      linux-mips@linux-mips.org
10786 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
10787 S:      Maintained
10788 F:      drivers/tc/
10789 F:      include/linux/tc.h
10790
10791 U14-34F SCSI DRIVER
10792 M:      Dario Ballabio <ballabio_dario@emc.com>
10793 L:      linux-scsi@vger.kernel.org
10794 S:      Maintained
10795 F:      drivers/scsi/u14-34f.c
10796
10797 UBI FILE SYSTEM (UBIFS)
10798 M:      Artem Bityutskiy <dedekind1@gmail.com>
10799 M:      Adrian Hunter <adrian.hunter@intel.com>
10800 L:      linux-mtd@lists.infradead.org
10801 T:      git git://git.infradead.org/ubifs-2.6.git
10802 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
10803 S:      Maintained
10804 F:      Documentation/filesystems/ubifs.txt
10805 F:      fs/ubifs/
10806
10807 UCLINUX (M68KNOMMU AND COLDFIRE)
10808 M:      Greg Ungerer <gerg@uclinux.org>
10809 W:      http://www.uclinux.org/
10810 L:      linux-m68k@lists.linux-m68k.org
10811 L:      uclinux-dev@uclinux.org  (subscribers-only)
10812 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
10813 S:      Maintained
10814 F:      arch/m68k/coldfire/
10815 F:      arch/m68k/68*/
10816 F:      arch/m68k/*/*_no.*
10817 F:      arch/m68k/include/asm/*_no.*
10818
10819 UDF FILESYSTEM
10820 M:      Jan Kara <jack@suse.com>
10821 S:      Maintained
10822 F:      Documentation/filesystems/udf.txt
10823 F:      fs/udf/
10824
10825 UFS FILESYSTEM
10826 M:      Evgeniy Dushistov <dushistov@mail.ru>
10827 S:      Maintained
10828 F:      Documentation/filesystems/ufs.txt
10829 F:      fs/ufs/
10830
10831 UHID USERSPACE HID IO DRIVER:
10832 M:      David Herrmann <dh.herrmann@googlemail.com>
10833 L:      linux-input@vger.kernel.org
10834 S:      Maintained
10835 F:      drivers/hid/uhid.c
10836 F:      include/uapi/linux/uhid.h
10837
10838 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
10839 L:      linux-usb@vger.kernel.org
10840 S:      Orphan
10841 F:      drivers/uwb/
10842 F:      include/linux/uwb.h
10843 F:      include/linux/uwb/
10844
10845 UNICORE32 ARCHITECTURE:
10846 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
10847 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
10848 S:      Maintained
10849 T:      git git://github.com/gxt/linux.git
10850 F:      arch/unicore32/
10851
10852 UNIFDEF
10853 M:      Tony Finch <dot@dotat.at>
10854 W:      http://dotat.at/prog/unifdef
10855 S:      Maintained
10856 F:      scripts/unifdef.c
10857
10858 UNIFORM CDROM DRIVER
10859 M:      Jens Axboe <axboe@kernel.dk>
10860 W:      http://www.kernel.dk
10861 S:      Maintained
10862 F:      Documentation/cdrom/
10863 F:      drivers/cdrom/cdrom.c
10864 F:      include/linux/cdrom.h
10865 F:      include/uapi/linux/cdrom.h
10866
10867 UNISYS S-PAR DRIVERS
10868 M:      Benjamin Romer <benjamin.romer@unisys.com>
10869 M:      David Kershner <david.kershner@unisys.com>
10870 L:      sparmaintainer@unisys.com (Unisys internal)
10871 S:      Supported
10872 F:      drivers/staging/unisys/
10873
10874 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
10875 M:      Vinayak Holikatti <vinholikatti@gmail.com>
10876 L:      linux-scsi@vger.kernel.org
10877 S:      Supported
10878 F:      Documentation/scsi/ufs.txt
10879 F:      drivers/scsi/ufs/
10880
10881 UNSORTED BLOCK IMAGES (UBI)
10882 M:      Artem Bityutskiy <dedekind1@gmail.com>
10883 M:      Richard Weinberger <richard@nod.at>
10884 W:      http://www.linux-mtd.infradead.org/
10885 L:      linux-mtd@lists.infradead.org
10886 T:      git git://git.infradead.org/ubifs-2.6.git
10887 S:      Supported
10888 F:      drivers/mtd/ubi/
10889 F:      include/linux/mtd/ubi.h
10890 F:      include/uapi/mtd/ubi-user.h
10891
10892 USB ACM DRIVER
10893 M:      Oliver Neukum <oliver@neukum.org>
10894 L:      linux-usb@vger.kernel.org
10895 S:      Maintained
10896 F:      Documentation/usb/acm.txt
10897 F:      drivers/usb/class/cdc-acm.*
10898
10899 USB AR5523 WIRELESS DRIVER
10900 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
10901 L:      linux-wireless@vger.kernel.org
10902 S:      Maintained
10903 F:      drivers/net/wireless/ath/ar5523/
10904
10905 USB ATTACHED SCSI
10906 M:      Hans de Goede <hdegoede@redhat.com>
10907 M:      Gerd Hoffmann <kraxel@redhat.com>
10908 L:      linux-usb@vger.kernel.org
10909 L:      linux-scsi@vger.kernel.org
10910 S:      Maintained
10911 F:      drivers/usb/storage/uas.c
10912
10913 USB CDC ETHERNET DRIVER
10914 M:      Oliver Neukum <oliver@neukum.org>
10915 L:      linux-usb@vger.kernel.org
10916 S:      Maintained
10917 F:      drivers/net/usb/cdc_*.c
10918 F:      include/uapi/linux/usb/cdc.h
10919
10920 USB CHAOSKEY DRIVER
10921 M:      Keith Packard <keithp@keithp.com>
10922 L:      linux-usb@vger.kernel.org
10923 S:      Maintained
10924 F:      drivers/usb/misc/chaoskey.c
10925
10926 USB CYPRESS C67X00 DRIVER
10927 M:      Peter Korsgaard <jacmet@sunsite.dk>
10928 L:      linux-usb@vger.kernel.org
10929 S:      Maintained
10930 F:      drivers/usb/c67x00/
10931
10932 USB DAVICOM DM9601 DRIVER
10933 M:      Peter Korsgaard <jacmet@sunsite.dk>
10934 L:      netdev@vger.kernel.org
10935 W:      http://www.linux-usb.org/usbnet
10936 S:      Maintained
10937 F:      drivers/net/usb/dm9601.c
10938
10939 USB DIAMOND RIO500 DRIVER
10940 M:      Cesar Miquel <miquel@df.uba.ar>
10941 L:      rio500-users@lists.sourceforge.net
10942 W:      http://rio500.sourceforge.net
10943 S:      Maintained
10944 F:      drivers/usb/misc/rio500*
10945
10946 USB EHCI DRIVER
10947 M:      Alan Stern <stern@rowland.harvard.edu>
10948 L:      linux-usb@vger.kernel.org
10949 S:      Maintained
10950 F:      Documentation/usb/ehci.txt
10951 F:      drivers/usb/host/ehci*
10952
10953 USB GADGET/PERIPHERAL SUBSYSTEM
10954 M:      Felipe Balbi <balbi@ti.com>
10955 L:      linux-usb@vger.kernel.org
10956 W:      http://www.linux-usb.org/gadget
10957 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
10958 S:      Maintained
10959 F:      drivers/usb/gadget/
10960 F:      include/linux/usb/gadget*
10961
10962 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
10963 M:      Jiri Kosina <jikos@kernel.org>
10964 L:      linux-usb@vger.kernel.org
10965 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
10966 S:      Maintained
10967 F:      Documentation/hid/hiddev.txt
10968 F:      drivers/hid/usbhid/
10969
10970 USB ISP116X DRIVER
10971 M:      Olav Kongas <ok@artecdesign.ee>
10972 L:      linux-usb@vger.kernel.org
10973 S:      Maintained
10974 F:      drivers/usb/host/isp116x*
10975 F:      include/linux/usb/isp116x.h
10976
10977 USB MASS STORAGE DRIVER
10978 M:      Matthew Dharm <mdharm-usb@one-eyed-alien.net>
10979 L:      linux-usb@vger.kernel.org
10980 L:      usb-storage@lists.one-eyed-alien.net
10981 S:      Maintained
10982 W:      http://www.one-eyed-alien.net/~mdharm/linux-usb/
10983 F:      drivers/usb/storage/
10984
10985 USB MIDI DRIVER
10986 M:      Clemens Ladisch <clemens@ladisch.de>
10987 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10988 T:      git git://git.alsa-project.org/alsa-kernel.git
10989 S:      Maintained
10990 F:      sound/usb/midi.*
10991
10992 USB NETWORKING DRIVERS
10993 L:      linux-usb@vger.kernel.org
10994 S:      Odd Fixes
10995 F:      drivers/net/usb/
10996
10997 USB OHCI DRIVER
10998 M:      Alan Stern <stern@rowland.harvard.edu>
10999 L:      linux-usb@vger.kernel.org
11000 S:      Maintained
11001 F:      Documentation/usb/ohci.txt
11002 F:      drivers/usb/host/ohci*
11003
11004 USB OTG FSM (Finite State Machine)
11005 M:      Peter Chen <Peter.Chen@freescale.com>
11006 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
11007 L:      linux-usb@vger.kernel.org
11008 S:      Maintained
11009 F:      drivers/usb/common/usb-otg-fsm.c
11010
11011 USB OVER IP DRIVER
11012 M:      Valentina Manea <valentina.manea.m@gmail.com>
11013 M:      Shuah Khan <shuah.kh@samsung.com>
11014 L:      linux-usb@vger.kernel.org
11015 S:      Maintained
11016 F:      drivers/usb/usbip/
11017 F:      tools/usb/usbip/
11018
11019 USB PEGASUS DRIVER
11020 M:      Petko Manolov <petkan@nucleusys.com>
11021 L:      linux-usb@vger.kernel.org
11022 L:      netdev@vger.kernel.org
11023 T:      git git://github.com/petkan/pegasus.git
11024 W:      https://github.com/petkan/pegasus
11025 S:      Maintained
11026 F:      drivers/net/usb/pegasus.*
11027
11028 USB PHY LAYER
11029 M:      Felipe Balbi <balbi@ti.com>
11030 L:      linux-usb@vger.kernel.org
11031 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
11032 S:      Maintained
11033 F:      drivers/usb/phy/
11034
11035 USB PRINTER DRIVER (usblp)
11036 M:      Pete Zaitcev <zaitcev@redhat.com>
11037 L:      linux-usb@vger.kernel.org
11038 S:      Supported
11039 F:      drivers/usb/class/usblp.c
11040
11041 USB RTL8150 DRIVER
11042 M:      Petko Manolov <petkan@nucleusys.com>
11043 L:      linux-usb@vger.kernel.org
11044 L:      netdev@vger.kernel.org
11045 T:      git git://github.com/petkan/rtl8150.git
11046 W:      https://github.com/petkan/rtl8150
11047 S:      Maintained
11048 F:      drivers/net/usb/rtl8150.c
11049
11050 USB SERIAL SUBSYSTEM
11051 M:      Johan Hovold <johan@kernel.org>
11052 L:      linux-usb@vger.kernel.org
11053 S:      Maintained
11054 F:      Documentation/usb/usb-serial.txt
11055 F:      drivers/usb/serial/
11056 F:      include/linux/usb/serial.h
11057
11058 USB SMSC75XX ETHERNET DRIVER
11059 M:      Steve Glendinning <steve.glendinning@shawell.net>
11060 L:      netdev@vger.kernel.org
11061 S:      Maintained
11062 F:      drivers/net/usb/smsc75xx.*
11063
11064 USB SMSC95XX ETHERNET DRIVER
11065 M:      Steve Glendinning <steve.glendinning@shawell.net>
11066 L:      netdev@vger.kernel.org
11067 S:      Maintained
11068 F:      drivers/net/usb/smsc95xx.*
11069
11070 USB SUBSYSTEM
11071 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11072 L:      linux-usb@vger.kernel.org
11073 W:      http://www.linux-usb.org
11074 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
11075 S:      Supported
11076 F:      Documentation/usb/
11077 F:      drivers/usb/
11078 F:      include/linux/usb.h
11079 F:      include/linux/usb/
11080
11081 USB UHCI DRIVER
11082 M:      Alan Stern <stern@rowland.harvard.edu>
11083 L:      linux-usb@vger.kernel.org
11084 S:      Maintained
11085 F:      drivers/usb/host/uhci*
11086
11087 USB "USBNET" DRIVER FRAMEWORK
11088 M:      Oliver Neukum <oneukum@suse.com>
11089 L:      netdev@vger.kernel.org
11090 W:      http://www.linux-usb.org/usbnet
11091 S:      Maintained
11092 F:      drivers/net/usb/usbnet.c
11093 F:      include/linux/usb/usbnet.h
11094
11095 USB VIDEO CLASS
11096 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11097 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
11098 L:      linux-media@vger.kernel.org
11099 T:      git git://linuxtv.org/media_tree.git
11100 W:      http://www.ideasonboard.org/uvc/
11101 S:      Maintained
11102 F:      drivers/media/usb/uvc/
11103 F:      include/uapi/linux/uvcvideo.h
11104
11105 USB VISION DRIVER
11106 M:      Hans Verkuil <hverkuil@xs4all.nl>
11107 L:      linux-media@vger.kernel.org
11108 T:      git git://linuxtv.org/media_tree.git
11109 W:      http://linuxtv.org
11110 S:      Odd Fixes
11111 F:      drivers/media/usb/usbvision/
11112
11113 USB WEBCAM GADGET
11114 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11115 L:      linux-usb@vger.kernel.org
11116 S:      Maintained
11117 F:      drivers/usb/gadget/function/*uvc*
11118 F:      drivers/usb/gadget/legacy/webcam.c
11119
11120 USB WIRELESS RNDIS DRIVER (rndis_wlan)
11121 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
11122 L:      linux-wireless@vger.kernel.org
11123 S:      Maintained
11124 F:      drivers/net/wireless/rndis_wlan.c
11125
11126 USB XHCI DRIVER
11127 M:      Mathias Nyman <mathias.nyman@intel.com>
11128 L:      linux-usb@vger.kernel.org
11129 S:      Supported
11130 F:      drivers/usb/host/xhci*
11131 F:      drivers/usb/host/pci-quirks*
11132
11133 USB ZD1201 DRIVER
11134 L:      linux-wireless@vger.kernel.org
11135 W:      http://linux-lc100020.sourceforge.net
11136 S:      Orphan
11137 F:      drivers/net/wireless/zd1201.*
11138
11139 USB ZR364XX DRIVER
11140 M:      Antoine Jacquet <royale@zerezo.com>
11141 L:      linux-usb@vger.kernel.org
11142 L:      linux-media@vger.kernel.org
11143 T:      git git://linuxtv.org/media_tree.git
11144 W:      http://royale.zerezo.com/zr364xx/
11145 S:      Maintained
11146 F:      Documentation/video4linux/zr364xx.txt
11147 F:      drivers/media/usb/zr364xx/
11148
11149 ULPI BUS
11150 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
11151 L:      linux-usb@vger.kernel.org
11152 S:      Maintained
11153 F:      drivers/usb/common/ulpi.c
11154 F:      include/linux/ulpi/
11155
11156 USER-MODE LINUX (UML)
11157 M:      Jeff Dike <jdike@addtoit.com>
11158 M:      Richard Weinberger <richard@nod.at>
11159 L:      user-mode-linux-devel@lists.sourceforge.net
11160 L:      user-mode-linux-user@lists.sourceforge.net
11161 W:      http://user-mode-linux.sourceforge.net
11162 S:      Maintained
11163 F:      Documentation/virtual/uml/
11164 F:      arch/um/
11165 F:      arch/x86/um/
11166 F:      fs/hostfs/
11167 F:      fs/hppfs/
11168
11169 USERSPACE I/O (UIO)
11170 M:      "Hans J. Koch" <hjk@hansjkoch.de>
11171 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11172 S:      Maintained
11173 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
11174 F:      Documentation/DocBook/uio-howto.tmpl
11175 F:      drivers/uio/
11176 F:      include/linux/uio*.h
11177
11178 UTIL-LINUX PACKAGE
11179 M:      Karel Zak <kzak@redhat.com>
11180 L:      util-linux@vger.kernel.org
11181 W:      http://en.wikipedia.org/wiki/Util-linux
11182 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
11183 S:      Maintained
11184
11185 UVESAFB DRIVER
11186 M:      Michal Januszewski <spock@gentoo.org>
11187 L:      linux-fbdev@vger.kernel.org
11188 W:      http://dev.gentoo.org/~spock/projects/uvesafb/
11189 S:      Maintained
11190 F:      Documentation/fb/uvesafb.txt
11191 F:      drivers/video/fbdev/uvesafb.*
11192
11193 VF610 NAND DRIVER
11194 M:      Stefan Agner <stefan@agner.ch>
11195 L:      linux-mtd@lists.infradead.org
11196 S:      Supported
11197 F:      drivers/mtd/nand/vf610_nfc.c
11198
11199 VFAT/FAT/MSDOS FILESYSTEM
11200 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
11201 S:      Maintained
11202 F:      Documentation/filesystems/vfat.txt
11203 F:      fs/fat/
11204
11205 VFIO DRIVER
11206 M:      Alex Williamson <alex.williamson@redhat.com>
11207 L:      kvm@vger.kernel.org
11208 S:      Maintained
11209 F:      Documentation/vfio.txt
11210 F:      drivers/vfio/
11211 F:      include/linux/vfio.h
11212 F:      include/uapi/linux/vfio.h
11213
11214 VFIO PLATFORM DRIVER
11215 M:      Baptiste Reynal <b.reynal@virtualopensystems.com>
11216 L:      kvm@vger.kernel.org
11217 S:      Maintained
11218 F:      drivers/vfio/platform/
11219
11220 VIDEOBUF2 FRAMEWORK
11221 M:      Pawel Osciak <pawel@osciak.com>
11222 M:      Marek Szyprowski <m.szyprowski@samsung.com>
11223 M:      Kyungmin Park <kyungmin.park@samsung.com>
11224 L:      linux-media@vger.kernel.org
11225 S:      Maintained
11226 F:      drivers/media/v4l2-core/videobuf2-*
11227 F:      include/media/videobuf2-*
11228
11229 VIRTIO CONSOLE DRIVER
11230 M:      Amit Shah <amit.shah@redhat.com>
11231 L:      virtualization@lists.linux-foundation.org
11232 S:      Maintained
11233 F:      drivers/char/virtio_console.c
11234 F:      include/linux/virtio_console.h
11235 F:      include/uapi/linux/virtio_console.h
11236
11237 VIRTIO CORE, NET AND BLOCK DRIVERS
11238 M:      "Michael S. Tsirkin" <mst@redhat.com>
11239 L:      virtualization@lists.linux-foundation.org
11240 S:      Maintained
11241 F:      drivers/virtio/
11242 F:      tools/virtio/
11243 F:      drivers/net/virtio_net.c
11244 F:      drivers/block/virtio_blk.c
11245 F:      include/linux/virtio_*.h
11246 F:      include/uapi/linux/virtio_*.h
11247
11248 VIRTIO DRIVERS FOR S390
11249 M:      Christian Borntraeger <borntraeger@de.ibm.com>
11250 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
11251 L:      linux-s390@vger.kernel.org
11252 L:      virtualization@lists.linux-foundation.org
11253 L:      kvm@vger.kernel.org
11254 S:      Supported
11255 F:      drivers/s390/virtio/
11256
11257 VIRTIO GPU DRIVER
11258 M:      David Airlie <airlied@linux.ie>
11259 M:      Gerd Hoffmann <kraxel@redhat.com>
11260 L:      dri-devel@lists.freedesktop.org
11261 L:      virtualization@lists.linux-foundation.org
11262 S:      Maintained
11263 F:      drivers/gpu/drm/virtio/
11264 F:      include/uapi/linux/virtio_gpu.h
11265
11266 VIRTIO HOST (VHOST)
11267 M:      "Michael S. Tsirkin" <mst@redhat.com>
11268 L:      kvm@vger.kernel.org
11269 L:      virtualization@lists.linux-foundation.org
11270 L:      netdev@vger.kernel.org
11271 S:      Maintained
11272 F:      drivers/vhost/
11273 F:      include/uapi/linux/vhost.h
11274
11275 VIRTIO INPUT DRIVER
11276 M:      Gerd Hoffmann <kraxel@redhat.com>
11277 S:      Maintained
11278 F:      drivers/virtio/virtio_input.c
11279 F:      include/uapi/linux/virtio_input.h
11280
11281 VIA RHINE NETWORK DRIVER
11282 S:      Orphan
11283 F:      drivers/net/ethernet/via/via-rhine.c
11284
11285 VIA SD/MMC CARD CONTROLLER DRIVER
11286 M:      Bruce Chang <brucechang@via.com.tw>
11287 M:      Harald Welte <HaraldWelte@viatech.com>
11288 S:      Maintained
11289 F:      drivers/mmc/host/via-sdmmc.c
11290
11291 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
11292 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
11293 L:      linux-fbdev@vger.kernel.org
11294 S:      Maintained
11295 F:      include/linux/via-core.h
11296 F:      include/linux/via-gpio.h
11297 F:      include/linux/via_i2c.h
11298 F:      drivers/video/fbdev/via/
11299
11300 VIA VELOCITY NETWORK DRIVER
11301 M:      Francois Romieu <romieu@fr.zoreil.com>
11302 L:      netdev@vger.kernel.org
11303 S:      Maintained
11304 F:      drivers/net/ethernet/via/via-velocity.*
11305
11306 VIVID VIRTUAL VIDEO DRIVER
11307 M:      Hans Verkuil <hverkuil@xs4all.nl>
11308 L:      linux-media@vger.kernel.org
11309 T:      git git://linuxtv.org/media_tree.git
11310 W:      http://linuxtv.org
11311 S:      Maintained
11312 F:      drivers/media/platform/vivid/*
11313
11314 VLAN (802.1Q)
11315 M:      Patrick McHardy <kaber@trash.net>
11316 L:      netdev@vger.kernel.org
11317 S:      Maintained
11318 F:      drivers/net/macvlan.c
11319 F:      include/linux/if_*vlan.h
11320 F:      net/8021q/
11321
11322 VLYNQ BUS
11323 M:      Florian Fainelli <florian@openwrt.org>
11324 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
11325 S:      Maintained
11326 F:      drivers/vlynq/vlynq.c
11327 F:      include/linux/vlynq.h
11328
11329 VME SUBSYSTEM
11330 M:      Martyn Welch <martyn@welchs.me.uk>
11331 M:      Manohar Vanga <manohar.vanga@gmail.com>
11332 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11333 L:      devel@driverdev.osuosl.org
11334 S:      Maintained
11335 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
11336 F:      Documentation/vme_api.txt
11337 F:      drivers/staging/vme/
11338 F:      drivers/vme/
11339 F:      include/linux/vme*
11340
11341 VMWARE HYPERVISOR INTERFACE
11342 M:      Alok Kataria <akataria@vmware.com>
11343 L:      virtualization@lists.linux-foundation.org
11344 S:      Supported
11345 F:      arch/x86/kernel/cpu/vmware.c
11346
11347 VMWARE BALLOON DRIVER
11348 M:      Xavier Deguillard <xdeguillard@vmware.com>
11349 M:      Philip Moltmann <moltmann@vmware.com>
11350 M:      "VMware, Inc." <pv-drivers@vmware.com>
11351 L:      linux-kernel@vger.kernel.org
11352 S:      Maintained
11353 F:      drivers/misc/vmw_balloon.c
11354
11355 VMWARE VMMOUSE SUBDRIVER
11356 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
11357 M:      "VMware, Inc." <pv-drivers@vmware.com>
11358 L:      linux-input@vger.kernel.org
11359 S:      Maintained
11360 F:      drivers/input/mouse/vmmouse.c
11361 F:      drivers/input/mouse/vmmouse.h
11362
11363 VMWARE VMXNET3 ETHERNET DRIVER
11364 M:      Shrikrishna Khare <skhare@vmware.com>
11365 M:      "VMware, Inc." <pv-drivers@vmware.com>
11366 L:      netdev@vger.kernel.org
11367 S:      Maintained
11368 F:      drivers/net/vmxnet3/
11369
11370 VMware PVSCSI driver
11371 M:      Arvind Kumar <arvindkumar@vmware.com>
11372 M:      VMware PV-Drivers <pv-drivers@vmware.com>
11373 L:      linux-scsi@vger.kernel.org
11374 S:      Maintained
11375 F:      drivers/scsi/vmw_pvscsi.c
11376 F:      drivers/scsi/vmw_pvscsi.h
11377
11378 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
11379 M:      Liam Girdwood <lgirdwood@gmail.com>
11380 M:      Mark Brown <broonie@kernel.org>
11381 L:      linux-kernel@vger.kernel.org
11382 W:      http://www.slimlogic.co.uk/?p=48
11383 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
11384 S:      Supported
11385 F:      drivers/regulator/
11386 F:      include/linux/regulator/
11387
11388 VRF
11389 M:      David Ahern <dsa@cumulusnetworks.com>
11390 M:      Shrijeet Mukherjee <shm@cumulusnetworks.com>
11391 L:      netdev@vger.kernel.org
11392 S:      Maintained
11393 F:      drivers/net/vrf.c
11394 F:      Documentation/networking/vrf.txt
11395
11396 VT1211 HARDWARE MONITOR DRIVER
11397 M:      Juerg Haefliger <juergh@gmail.com>
11398 L:      lm-sensors@lm-sensors.org
11399 S:      Maintained
11400 F:      Documentation/hwmon/vt1211
11401 F:      drivers/hwmon/vt1211.c
11402
11403 VT8231 HARDWARE MONITOR DRIVER
11404 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
11405 L:      lm-sensors@lm-sensors.org
11406 S:      Maintained
11407 F:      drivers/hwmon/vt8231.c
11408
11409 VUB300 USB to SDIO/SD/MMC bridge chip
11410 M:      Tony Olech <tony.olech@elandigitalsystems.com>
11411 L:      linux-mmc@vger.kernel.org
11412 L:      linux-usb@vger.kernel.org
11413 S:      Supported
11414 F:      drivers/mmc/host/vub300.c
11415
11416 W1 DALLAS'S 1-WIRE BUS
11417 M:      Evgeniy Polyakov <zbr@ioremap.net>
11418 S:      Maintained
11419 F:      Documentation/w1/
11420 F:      drivers/w1/
11421
11422 W83791D HARDWARE MONITORING DRIVER
11423 M:      Marc Hulsman <m.hulsman@tudelft.nl>
11424 L:      lm-sensors@lm-sensors.org
11425 S:      Maintained
11426 F:      Documentation/hwmon/w83791d
11427 F:      drivers/hwmon/w83791d.c
11428
11429 W83793 HARDWARE MONITORING DRIVER
11430 M:      Rudolf Marek <r.marek@assembler.cz>
11431 L:      lm-sensors@lm-sensors.org
11432 S:      Maintained
11433 F:      Documentation/hwmon/w83793
11434 F:      drivers/hwmon/w83793.c
11435
11436 W83795 HARDWARE MONITORING DRIVER
11437 M:      Jean Delvare <jdelvare@suse.com>
11438 L:      lm-sensors@lm-sensors.org
11439 S:      Maintained
11440 F:      drivers/hwmon/w83795.c
11441
11442 W83L51xD SD/MMC CARD INTERFACE DRIVER
11443 M:      Pierre Ossman <pierre@ossman.eu>
11444 S:      Maintained
11445 F:      drivers/mmc/host/wbsd.*
11446
11447 WACOM PROTOCOL 4 SERIAL TABLETS
11448 M:      Julian Squires <julian@cipht.net>
11449 M:      Hans de Goede <hdegoede@redhat.com>
11450 L:      linux-input@vger.kernel.org
11451 S:      Maintained
11452 F:      drivers/input/tablet/wacom_serial4.c
11453
11454 WATCHDOG DEVICE DRIVERS
11455 M:      Wim Van Sebroeck <wim@iguana.be>
11456 L:      linux-watchdog@vger.kernel.org
11457 W:      http://www.linux-watchdog.org/
11458 T:      git git://www.linux-watchdog.org/linux-watchdog.git
11459 S:      Maintained
11460 F:      Documentation/watchdog/
11461 F:      drivers/watchdog/
11462 F:      include/linux/watchdog.h
11463 F:      include/uapi/linux/watchdog.h
11464
11465 WD7000 SCSI DRIVER
11466 M:      Miroslav Zagorac <zaga@fly.cc.fer.hr>
11467 L:      linux-scsi@vger.kernel.org
11468 S:      Maintained
11469 F:      drivers/scsi/wd7000.c
11470
11471 WIIMOTE HID DRIVER
11472 M:      David Herrmann <dh.herrmann@googlemail.com>
11473 L:      linux-input@vger.kernel.org
11474 S:      Maintained
11475 F:      drivers/hid/hid-wiimote*
11476
11477 WINBOND CIR DRIVER
11478 M:      David Härdeman <david@hardeman.nu>
11479 S:      Maintained
11480 F:      drivers/media/rc/winbond-cir.c
11481
11482 WIMAX STACK
11483 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
11484 M:      linux-wimax@intel.com
11485 L:      wimax@linuxwimax.org (subscribers-only)
11486 S:      Supported
11487 W:      http://linuxwimax.org
11488 F:      Documentation/wimax/README.wimax
11489 F:      include/linux/wimax/debug.h
11490 F:      include/net/wimax.h
11491 F:      include/uapi/linux/wimax.h
11492 F:      net/wimax/
11493
11494 WISTRON LAPTOP BUTTON DRIVER
11495 M:      Miloslav Trmac <mitr@volny.cz>
11496 S:      Maintained
11497 F:      drivers/input/misc/wistron_btns.c
11498
11499 WL3501 WIRELESS PCMCIA CARD DRIVER
11500 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
11501 L:      linux-wireless@vger.kernel.org
11502 W:      http://oops.ghostprotocols.net:81/blog
11503 S:      Maintained
11504 F:      drivers/net/wireless/wl3501*
11505
11506 WOLFSON MICROELECTRONICS DRIVERS
11507 L:      patches@opensource.wolfsonmicro.com
11508 T:      git https://github.com/CirrusLogic/linux-drivers.git
11509 W:      https://github.com/CirrusLogic/linux-drivers/wiki
11510 S:      Supported
11511 F:      Documentation/hwmon/wm83??
11512 F:      arch/arm/mach-s3c64xx/mach-crag6410*
11513 F:      drivers/clk/clk-wm83*.c
11514 F:      drivers/extcon/extcon-arizona.c
11515 F:      drivers/leds/leds-wm83*.c
11516 F:      drivers/gpio/gpio-*wm*.c
11517 F:      drivers/gpio/gpio-arizona.c
11518 F:      drivers/hwmon/wm83??-hwmon.c
11519 F:      drivers/input/misc/wm831x-on.c
11520 F:      drivers/input/touchscreen/wm831x-ts.c
11521 F:      drivers/input/touchscreen/wm97*.c
11522 F:      drivers/mfd/arizona*
11523 F:      drivers/mfd/wm*.c
11524 F:      drivers/power/wm83*.c
11525 F:      drivers/rtc/rtc-wm83*.c
11526 F:      drivers/regulator/wm8*.c
11527 F:      drivers/video/backlight/wm83*_bl.c
11528 F:      drivers/watchdog/wm83*_wdt.c
11529 F:      include/linux/mfd/arizona/
11530 F:      include/linux/mfd/wm831x/
11531 F:      include/linux/mfd/wm8350/
11532 F:      include/linux/mfd/wm8400*
11533 F:      include/linux/wm97xx.h
11534 F:      include/sound/wm????.h
11535 F:      sound/soc/codecs/arizona.?
11536 F:      sound/soc/codecs/wm*
11537
11538 WORKQUEUE
11539 M:      Tejun Heo <tj@kernel.org>
11540 R:      Lai Jiangshan <jiangshanlai@gmail.com>
11541 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
11542 S:      Maintained
11543 F:      include/linux/workqueue.h
11544 F:      kernel/workqueue.c
11545 F:      Documentation/workqueue.txt
11546
11547 X.25 NETWORK LAYER
11548 M:      Andrew Hendry <andrew.hendry@gmail.com>
11549 L:      linux-x25@vger.kernel.org
11550 S:      Odd Fixes
11551 F:      Documentation/networking/x25*
11552 F:      include/net/x25*
11553 F:      net/x25/
11554
11555 X86 ARCHITECTURE (32-BIT AND 64-BIT)
11556 M:      Thomas Gleixner <tglx@linutronix.de>
11557 M:      Ingo Molnar <mingo@redhat.com>
11558 M:      "H. Peter Anvin" <hpa@zytor.com>
11559 M:      x86@kernel.org
11560 L:      linux-kernel@vger.kernel.org
11561 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
11562 S:      Maintained
11563 F:      Documentation/x86/
11564 F:      arch/x86/
11565
11566 X86 PLATFORM DRIVERS
11567 M:      Darren Hart <dvhart@infradead.org>
11568 L:      platform-driver-x86@vger.kernel.org
11569 T:      git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git
11570 S:      Maintained
11571 F:      drivers/platform/x86/
11572
11573 X86 MCE INFRASTRUCTURE
11574 M:      Tony Luck <tony.luck@intel.com>
11575 M:      Borislav Petkov <bp@alien8.de>
11576 L:      linux-edac@vger.kernel.org
11577 S:      Maintained
11578 F:      arch/x86/kernel/cpu/mcheck/*
11579
11580 X86 VDSO
11581 M:      Andy Lutomirski <luto@amacapital.net>
11582 L:      linux-kernel@vger.kernel.org
11583 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
11584 S:      Maintained
11585 F:      arch/x86/entry/vdso/
11586
11587 XC2028/3028 TUNER DRIVER
11588 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
11589 L:      linux-media@vger.kernel.org
11590 W:      http://linuxtv.org
11591 T:      git git://linuxtv.org/media_tree.git
11592 S:      Maintained
11593 F:      drivers/media/tuners/tuner-xc2028.*
11594
11595 XEN HYPERVISOR INTERFACE
11596 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11597 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
11598 M:      David Vrabel <david.vrabel@citrix.com>
11599 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11600 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
11601 S:      Supported
11602 F:      arch/x86/xen/
11603 F:      drivers/*/xen-*front.c
11604 F:      drivers/xen/
11605 F:      arch/x86/include/asm/xen/
11606 F:      include/xen/
11607 F:      include/uapi/xen/
11608
11609 XEN HYPERVISOR ARM
11610 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
11611 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11612 S:      Supported
11613 F:      arch/arm/xen/
11614 F:      arch/arm/include/asm/xen/
11615
11616 XEN HYPERVISOR ARM64
11617 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
11618 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11619 S:      Supported
11620 F:      arch/arm64/xen/
11621 F:      arch/arm64/include/asm/xen/
11622
11623 XEN NETWORK BACKEND DRIVER
11624 M:      Ian Campbell <ian.campbell@citrix.com>
11625 M:      Wei Liu <wei.liu2@citrix.com>
11626 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11627 L:      netdev@vger.kernel.org
11628 S:      Supported
11629 F:      drivers/net/xen-netback/*
11630
11631 XEN PCI SUBSYSTEM
11632 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11633 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11634 S:      Supported
11635 F:      arch/x86/pci/*xen*
11636 F:      drivers/pci/*xen*
11637
11638 XEN BLOCK SUBSYSTEM
11639 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11640 M:      Roger Pau MonnĂ© <roger.pau@citrix.com>
11641 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11642 S:      Supported
11643 F:      drivers/block/xen-blkback/*
11644 F:      drivers/block/xen*
11645
11646 XEN PVSCSI DRIVERS
11647 M:      Juergen Gross <jgross@suse.com>
11648 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11649 L:      linux-scsi@vger.kernel.org
11650 S:      Supported
11651 F:      drivers/scsi/xen-scsifront.c
11652 F:      drivers/xen/xen-scsiback.c
11653 F:      include/xen/interface/io/vscsiif.h
11654
11655 XEN SWIOTLB SUBSYSTEM
11656 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11657 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11658 S:      Supported
11659 F:      arch/x86/xen/*swiotlb*
11660 F:      drivers/xen/*swiotlb*
11661
11662 XFS FILESYSTEM
11663 P:      Silicon Graphics Inc
11664 M:      Dave Chinner <david@fromorbit.com>
11665 M:      xfs@oss.sgi.com
11666 L:      xfs@oss.sgi.com
11667 W:      http://oss.sgi.com/projects/xfs
11668 T:      git git://oss.sgi.com/xfs/xfs.git
11669 S:      Supported
11670 F:      Documentation/filesystems/xfs.txt
11671 F:      fs/xfs/
11672
11673 XILINX AXI ETHERNET DRIVER
11674 M:      Anirudha Sarangi <anirudh@xilinx.com>
11675 M:      John Linn <John.Linn@xilinx.com>
11676 S:      Maintained
11677 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
11678
11679 XILINX UARTLITE SERIAL DRIVER
11680 M:      Peter Korsgaard <jacmet@sunsite.dk>
11681 L:      linux-serial@vger.kernel.org
11682 S:      Maintained
11683 F:      drivers/tty/serial/uartlite.c
11684
11685 XILINX VIDEO IP CORES
11686 M:      Hyun Kwon <hyun.kwon@xilinx.com>
11687 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11688 L:      linux-media@vger.kernel.org
11689 T:      git git://linuxtv.org/media_tree.git
11690 S:      Supported
11691 F:      Documentation/devicetree/bindings/media/xilinx/
11692 F:      drivers/media/platform/xilinx/
11693 F:      include/uapi/linux/xilinx-v4l2-controls.h
11694
11695 XILLYBUS DRIVER
11696 M:      Eli Billauer <eli.billauer@gmail.com>
11697 L:      linux-kernel@vger.kernel.org
11698 S:      Supported
11699 F:      drivers/char/xillybus/
11700
11701 XTENSA XTFPGA PLATFORM SUPPORT
11702 M:      Max Filippov <jcmvbkbc@gmail.com>
11703 L:      linux-xtensa@linux-xtensa.org
11704 S:      Maintained
11705 F:      drivers/spi/spi-xtensa-xtfpga.c
11706 F:      sound/soc/xtensa/xtfpga-i2s.c
11707
11708 YAM DRIVER FOR AX.25
11709 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
11710 L:      linux-hams@vger.kernel.org
11711 S:      Maintained
11712 F:      drivers/net/hamradio/yam*
11713 F:      include/linux/yam.h
11714
11715 YEALINK PHONE DRIVER
11716 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
11717 L:      usbb2k-api-dev@nongnu.org
11718 S:      Maintained
11719 F:      Documentation/input/yealink.txt
11720 F:      drivers/input/misc/yealink.*
11721
11722 Z8530 DRIVER FOR AX.25
11723 M:      Joerg Reuter <jreuter@yaina.de>
11724 W:      http://yaina.de/jreuter/
11725 W:      http://www.qsl.net/dl1bke/
11726 L:      linux-hams@vger.kernel.org
11727 S:      Maintained
11728 F:      Documentation/networking/z8530drv.txt
11729 F:      drivers/net/hamradio/*scc.c
11730 F:      drivers/net/hamradio/z8530.h
11731
11732 ZBUD COMPRESSED PAGE ALLOCATOR
11733 M:      Seth Jennings <sjennings@variantweb.net>
11734 L:      linux-mm@kvack.org
11735 S:      Maintained
11736 F:      mm/zbud.c
11737 F:      include/linux/zbud.h
11738
11739 ZD1211RW WIRELESS DRIVER
11740 M:      Daniel Drake <dsd@gentoo.org>
11741 M:      Ulrich Kunitz <kune@deine-taler.de>
11742 W:      http://zd1211.ath.cx/wiki/DriverRewrite
11743 L:      linux-wireless@vger.kernel.org
11744 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
11745 S:      Maintained
11746 F:      drivers/net/wireless/zd1211rw/
11747
11748 ZPOOL COMPRESSED PAGE STORAGE API
11749 M:      Dan Streetman <ddstreet@ieee.org>
11750 L:      linux-mm@kvack.org
11751 S:      Maintained
11752 F:      mm/zpool.c
11753 F:      include/linux/zpool.h
11754
11755 ZR36067 VIDEO FOR LINUX DRIVER
11756 L:      mjpeg-users@lists.sourceforge.net
11757 L:      linux-media@vger.kernel.org
11758 W:      http://mjpeg.sourceforge.net/driver-zoran/
11759 T:      hg http://linuxtv.org/hg/v4l-dvb
11760 S:      Odd Fixes
11761 F:      drivers/media/pci/zoran/
11762
11763 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
11764 M:      Minchan Kim <minchan@kernel.org>
11765 M:      Nitin Gupta <ngupta@vflare.org>
11766 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
11767 L:      linux-kernel@vger.kernel.org
11768 S:      Maintained
11769 F:      drivers/block/zram/
11770 F:      Documentation/blockdev/zram.txt
11771
11772 ZS DECSTATION Z85C30 SERIAL DRIVER
11773 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
11774 S:      Maintained
11775 F:      drivers/tty/serial/zs.*
11776
11777 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
11778 M:      Minchan Kim <minchan@kernel.org>
11779 M:      Nitin Gupta <ngupta@vflare.org>
11780 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
11781 L:      linux-mm@kvack.org
11782 S:      Maintained
11783 F:      mm/zsmalloc.c
11784 F:      include/linux/zsmalloc.h
11785 F:      Documentation/vm/zsmalloc.txt
11786
11787 ZSWAP COMPRESSED SWAP CACHING
11788 M:      Seth Jennings <sjennings@variantweb.net>
11789 L:      linux-mm@kvack.org
11790 S:      Maintained
11791 F:      mm/zswap.c
11792
11793 THE REST
11794 M:      Linus Torvalds <torvalds@linux-foundation.org>
11795 L:      linux-kernel@vger.kernel.org
11796 Q:      http://patchwork.kernel.org/project/LKML/list/
11797 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
11798 S:      Buried alive in reporters
11799 F:      *
11800 F:      */