]> git.karo-electronics.de Git - karo-tx-linux.git/blob - MAINTAINERS
Merge remote-tracking branch 'usb/usb-next'
[karo-tx-linux.git] / MAINTAINERS
1
2
3         List of maintainers and how to submit kernel changes
4
5 Please try to follow the guidelines below.  This will make things
6 easier on the maintainers.  Not all of these guidelines matter for every
7 trivial patch so apply some common sense.
8
9 1.      Always _test_ your changes, however small, on at least 4 or
10         5 people, preferably many more.
11
12 2.      Try to release a few ALPHA test versions to the net. Announce
13         them onto the kernel channel and await results. This is especially
14         important for device drivers, because often that's the only way
15         you will find things like the fact version 3 firmware needs
16         a magic fix you didn't know about, or some clown changed the
17         chips on a board and not its name.  (Don't laugh!  Look at the
18         SMC etherpower for that.)
19
20 3.      Make sure your changes compile correctly in multiple
21         configurations. In particular check that changes work both as a
22         module and built into the kernel.
23
24 4.      When you are happy with a change make it generally available for
25         testing and await feedback.
26
27 5.      Make a patch available to the relevant maintainer in the list. Use
28         'diff -u' to make the patch easy to merge. Be prepared to get your
29         changes sent back with seemingly silly requests about formatting
30         and variable names.  These aren't as silly as they seem. One
31         job the maintainers (and especially Linus) do is to keep things
32         looking the same. Sometimes this means that the clever hack in
33         your driver to get around a problem actually needs to become a
34         generalized kernel feature ready for next time.
35
36         PLEASE check your patch with the automated style checker
37         (scripts/checkpatch.pl) to catch trivial style violations.
38         See Documentation/CodingStyle for guidance here.
39
40         PLEASE CC: the maintainers and mailing lists that are generated
41         by scripts/get_maintainer.pl.  The results returned by the
42         script will be best if you have git installed and are making
43         your changes in a branch derived from Linus' latest git tree.
44         See Documentation/SubmittingPatches for details.
45
46         PLEASE try to include any credit lines you want added with the
47         patch. It avoids people being missed off by mistake and makes
48         it easier to know who wants adding and who doesn't.
49
50         PLEASE document known bugs. If it doesn't work for everything
51         or does something very odd once a month document it.
52
53         PLEASE remember that submissions must be made under the terms
54         of the Linux Foundation certificate of contribution and should
55         include a Signed-off-by: line.  The current version of this
56         "Developer's Certificate of Origin" (DCO) is listed in the file
57         Documentation/SubmittingPatches.
58
59 6.      Make sure you have the right to send any changes you make. If you
60         do changes at work you may find your employer owns the patch
61         not you.
62
63 7.      When sending security related changes or reports to a maintainer
64         please Cc: security@kernel.org, especially if the maintainer
65         does not respond.
66
67 8.      Happy hacking.
68
69 Descriptions of section entries:
70
71         P: Person (obsolete)
72         M: Mail patches to: FullName <address@domain>
73         R: Designated reviewer: FullName <address@domain>
74            These reviewers should be CCed on patches.
75         L: Mailing list that is relevant to this area
76         W: Web-page with status/info
77         Q: Patchwork web based patch tracking system site
78         T: SCM tree type and location.
79            Type is one of: git, hg, quilt, stgit, topgit
80         S: Status, one of the following:
81            Supported:   Someone is actually paid to look after this.
82            Maintained:  Someone actually looks after it.
83            Odd Fixes:   It has a maintainer but they don't have time to do
84                         much other than throw the odd patch in. See below..
85            Orphan:      No current maintainer [but maybe you could take the
86                         role as you write your new code].
87            Obsolete:    Old code. Something tagged obsolete generally means
88                         it has been replaced by a better system and you
89                         should be using that.
90         F: Files and directories with wildcard patterns.
91            A trailing slash includes all files and subdirectory files.
92            F:   drivers/net/    all files in and below drivers/net
93            F:   drivers/net/*   all files in drivers/net, but not below
94            F:   */net/*         all files in "any top level directory"/net
95            One pattern per line.  Multiple F: lines acceptable.
96         N: Files and directories with regex patterns.
97            N:   [^a-z]tegra     all files whose path contains the word tegra
98            One pattern per line.  Multiple N: lines acceptable.
99            scripts/get_maintainer.pl has different behavior for files that
100            match F: pattern and matches of N: patterns.  By default,
101            get_maintainer will not look at git log history when an F: pattern
102            match occurs.  When an N: match occurs, git log history is used
103            to also notify the people that have git commit signatures.
104         X: Files and directories that are NOT maintained, same rules as F:
105            Files exclusions are tested before file matches.
106            Can be useful for excluding a specific subdirectory, for instance:
107            F:   net/
108            X:   net/ipv6/
109            matches all files in and below net excluding net/ipv6/
110         K: Keyword perl extended regex pattern to match content in a
111            patch or file.  For instance:
112            K: of_get_profile
113               matches patches or files that contain "of_get_profile"
114            K: \b(printk|pr_(info|err))\b
115               matches patches or files that contain one or more of the words
116               printk, pr_info or pr_err
117            One regex pattern per line.  Multiple K: lines acceptable.
118
119 Note: For the hard of thinking, this list is meant to remain in alphabetical
120 order. If you could add yourselves to it in alphabetical order that would be
121 so much easier [Ed]
122
123 Maintainers List (try to look for most precise areas first)
124
125                 -----------------------------------
126
127 3C59X NETWORK DRIVER
128 M:      Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
129 L:      netdev@vger.kernel.org
130 S:      Maintained
131 F:      Documentation/networking/vortex.txt
132 F:      drivers/net/ethernet/3com/3c59x.c
133
134 3CR990 NETWORK DRIVER
135 M:      David Dillow <dave@thedillows.org>
136 L:      netdev@vger.kernel.org
137 S:      Maintained
138 F:      drivers/net/ethernet/3com/typhoon*
139
140 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
141 M:      Adam Radford <linuxraid@lsi.com>
142 L:      linux-scsi@vger.kernel.org
143 W:      http://www.lsi.com
144 S:      Supported
145 F:      drivers/scsi/3w-*
146
147 53C700 AND 53C700-66 SCSI DRIVER
148 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
149 L:      linux-scsi@vger.kernel.org
150 S:      Maintained
151 F:      drivers/scsi/53c700*
152
153 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
154 M:      Alexander Aring <alex.aring@gmail.com>
155 M:      Jukka Rissanen <jukka.rissanen@linux.intel.com>
156 L:      linux-bluetooth@vger.kernel.org
157 L:      linux-wpan@vger.kernel.org
158 S:      Maintained
159 F:      net/6lowpan/
160 F:      include/net/6lowpan.h
161 F:      Documentation/networking/6lowpan.txt
162
163 6PACK NETWORK DRIVER FOR AX.25
164 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
165 L:      linux-hams@vger.kernel.org
166 S:      Maintained
167 F:      drivers/net/hamradio/6pack.c
168
169 8169 10/100/1000 GIGABIT ETHERNET DRIVER
170 M:      Realtek linux nic maintainers <nic_swsd@realtek.com>
171 L:      netdev@vger.kernel.org
172 S:      Maintained
173 F:      drivers/net/ethernet/realtek/r8169.c
174
175 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
176 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
177 L:      linux-serial@vger.kernel.org
178 W:      http://serial.sourceforge.net
179 S:      Maintained
180 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
181 F:      drivers/tty/serial/8250*
182 F:      include/linux/serial_8250.h
183
184 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
185 L:      netdev@vger.kernel.org
186 S:      Orphan / Obsolete
187 F:      drivers/net/ethernet/8390/
188
189 9P FILE SYSTEM
190 M:      Eric Van Hensbergen <ericvh@gmail.com>
191 M:      Ron Minnich <rminnich@sandia.gov>
192 M:      Latchesar Ionkov <lucho@ionkov.net>
193 L:      v9fs-developer@lists.sourceforge.net
194 W:      http://swik.net/v9fs
195 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
196 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
197 S:      Maintained
198 F:      Documentation/filesystems/9p.txt
199 F:      fs/9p/
200 F:      net/9p/
201 F:      include/net/9p/
202 F:      include/uapi/linux/virtio_9p.h
203 F:      include/trace/events/9p.h
204
205
206 A8293 MEDIA DRIVER
207 M:      Antti Palosaari <crope@iki.fi>
208 L:      linux-media@vger.kernel.org
209 W:      http://linuxtv.org/
210 W:      http://palosaari.fi/linux/
211 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
212 T:      git git://linuxtv.org/anttip/media_tree.git
213 S:      Maintained
214 F:      drivers/media/dvb-frontends/a8293*
215
216 AACRAID SCSI RAID DRIVER
217 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
218 L:      linux-scsi@vger.kernel.org
219 W:      http://www.adaptec.com/
220 S:      Supported
221 F:      Documentation/scsi/aacraid.txt
222 F:      drivers/scsi/aacraid/
223
224 ABI/API
225 L:      linux-api@vger.kernel.org
226 F:      Documentation/ABI/
227 F:      include/linux/syscalls.h
228 F:      include/uapi/
229 F:      kernel/sys_ni.c
230
231 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
232 M:      Hans de Goede <hdegoede@redhat.com>
233 L:      lm-sensors@lm-sensors.org
234 S:      Maintained
235 F:      drivers/hwmon/abituguru.c
236
237 ABIT UGURU 3 HARDWARE MONITOR DRIVER
238 M:      Alistair John Strachan <alistair@devzero.co.uk>
239 L:      lm-sensors@lm-sensors.org
240 S:      Maintained
241 F:      drivers/hwmon/abituguru3.c
242
243 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 XGBE DRIVER
658 M:      Tom Lendacky <thomas.lendacky@amd.com>
659 L:      netdev@vger.kernel.org
660 S:      Supported
661 F:      drivers/net/ethernet/amd/xgbe/
662
663 AMS (Apple Motion Sensor) DRIVER
664 M:      Michael Hanselmann <linux-kernel@hansmi.ch>
665 S:      Supported
666 F:      drivers/macintosh/ams/
667
668 AMSO1100 RNIC DRIVER
669 M:      Tom Tucker <tom@opengridcomputing.com>
670 M:      Steve Wise <swise@opengridcomputing.com>
671 L:      linux-rdma@vger.kernel.org
672 S:      Maintained
673 F:      drivers/infiniband/hw/amso1100/
674
675 ANALOG DEVICES INC AD9389B DRIVER
676 M:      Hans Verkuil <hans.verkuil@cisco.com>
677 L:      linux-media@vger.kernel.org
678 S:      Maintained
679 F:      drivers/media/i2c/ad9389b*
680
681 ANALOG DEVICES INC ADV7180 DRIVER
682 M:      Lars-Peter Clausen <lars@metafoo.de>
683 L:      linux-media@vger.kernel.org
684 W:      http://ez.analog.com/community/linux-device-drivers
685 S:      Supported
686 F:      drivers/media/i2c/adv7180.c
687
688 ANALOG DEVICES INC ADV7511 DRIVER
689 M:      Hans Verkuil <hans.verkuil@cisco.com>
690 L:      linux-media@vger.kernel.org
691 S:      Maintained
692 F:      drivers/media/i2c/adv7511*
693
694 ANALOG DEVICES INC ADV7604 DRIVER
695 M:      Hans Verkuil <hans.verkuil@cisco.com>
696 L:      linux-media@vger.kernel.org
697 S:      Maintained
698 F:      drivers/media/i2c/adv7604*
699
700 ANALOG DEVICES INC ADV7842 DRIVER
701 M:      Hans Verkuil <hans.verkuil@cisco.com>
702 L:      linux-media@vger.kernel.org
703 S:      Maintained
704 F:      drivers/media/i2c/adv7842*
705
706 ANALOG DEVICES INC ASOC CODEC DRIVERS
707 M:      Lars-Peter Clausen <lars@metafoo.de>
708 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
709 W:      http://wiki.analog.com/
710 W:      http://ez.analog.com/community/linux-device-drivers
711 S:      Supported
712 F:      sound/soc/codecs/adau*
713 F:      sound/soc/codecs/adav*
714 F:      sound/soc/codecs/ad1*
715 F:      sound/soc/codecs/ad7*
716 F:      sound/soc/codecs/ssm*
717 F:      sound/soc/codecs/sigmadsp.*
718
719 ANALOG DEVICES INC ASOC DRIVERS
720 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
721 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
722 W:      http://blackfin.uclinux.org/
723 S:      Supported
724 F:      sound/soc/blackfin/*
725
726 ANALOG DEVICES INC IIO DRIVERS
727 M:      Lars-Peter Clausen <lars@metafoo.de>
728 M:      Michael Hennerich <Michael.Hennerich@analog.com>
729 W:      http://wiki.analog.com/
730 W:      http://ez.analog.com/community/linux-device-drivers
731 S:      Supported
732 F:      drivers/iio/*/ad*
733 X:      drivers/iio/*/adjd*
734 F:      drivers/staging/iio/*/ad*
735 F:      staging/iio/trigger/iio-trig-bfin-timer.c
736
737 ANALOG DEVICES INC DMA DRIVERS
738 M:      Lars-Peter Clausen <lars@metafoo.de>
739 W:      http://ez.analog.com/community/linux-device-drivers
740 S:      Supported
741 F:      drivers/dma/dma-axi-dmac.c
742
743 ANDROID DRIVERS
744 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
745 M:      Arve HjønnevĂ¥g <arve@android.com>
746 M:      Riley Andrews <riandrews@android.com>
747 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
748 L:      devel@driverdev.osuosl.org
749 S:      Supported
750 F:      drivers/android/
751 F:      drivers/staging/android/
752
753 AOA (Apple Onboard Audio) ALSA DRIVER
754 M:      Johannes Berg <johannes@sipsolutions.net>
755 L:      linuxppc-dev@lists.ozlabs.org
756 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
757 S:      Maintained
758 F:      sound/aoa/
759
760 APM DRIVER
761 M:      Jiri Kosina <jikos@kernel.org>
762 S:      Odd fixes
763 F:      arch/x86/kernel/apm_32.c
764 F:      include/linux/apm_bios.h
765 F:      include/uapi/linux/apm_bios.h
766 F:      drivers/char/apm-emulation.c
767
768 APPLE BCM5974 MULTITOUCH DRIVER
769 M:      Henrik Rydberg <rydberg@bitmath.org>
770 L:      linux-input@vger.kernel.org
771 S:      Odd fixes
772 F:      drivers/input/mouse/bcm5974.c
773
774 APPLE SMC DRIVER
775 M:      Henrik Rydberg <rydberg@bitmath.org>
776 L:      lm-sensors@lm-sensors.org
777 S:      Odd fixes
778 F:      drivers/hwmon/applesmc.c
779
780 APPLETALK NETWORK LAYER
781 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
782 S:      Maintained
783 F:      drivers/net/appletalk/
784 F:      net/appletalk/
785
786 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
787 M:      Duc Dang <dhdang@apm.com>
788 S:      Supported
789 F:      arch/arm64/boot/dts/apm/
790
791 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
792 M:      Iyappan Subramanian <isubramanian@apm.com>
793 M:      Keyur Chudgar <kchudgar@apm.com>
794 S:      Supported
795 F:      drivers/net/ethernet/apm/xgene/
796 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
797
798 APTINA CAMERA SENSOR PLL
799 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
800 L:      linux-media@vger.kernel.org
801 S:      Maintained
802 F:      drivers/media/i2c/aptina-pll.*
803
804 ARC FRAMEBUFFER DRIVER
805 M:      Jaya Kumar <jayalk@intworks.biz>
806 S:      Maintained
807 F:      drivers/video/fbdev/arcfb.c
808 F:      drivers/video/fbdev/core/fb_defio.c
809
810 ARCNET NETWORK LAYER
811 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
812 L:      netdev@vger.kernel.org
813 S:      Maintained
814 F:      drivers/net/arcnet/
815 F:      include/uapi/linux/if_arcnet.h
816
817 ARM MFM AND FLOPPY DRIVERS
818 M:      Ian Molton <spyro@f2s.com>
819 S:      Maintained
820 F:      arch/arm/lib/floppydma.S
821 F:      arch/arm/include/asm/floppy.h
822
823 ARM PMU PROFILING AND DEBUGGING
824 M:      Will Deacon <will.deacon@arm.com>
825 R:      Mark Rutland <mark.rutland@arm.com>
826 S:      Maintained
827 F:      arch/arm*/kernel/perf_*
828 F:      arch/arm/oprofile/common.c
829 F:      arch/arm*/kernel/hw_breakpoint.c
830 F:      arch/arm*/include/asm/hw_breakpoint.h
831 F:      arch/arm*/include/asm/perf_event.h
832 F:      drivers/perf/arm_pmu.c
833 F:      include/linux/perf/arm_pmu.h
834
835 ARM PORT
836 M:      Russell King <linux@arm.linux.org.uk>
837 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
838 W:      http://www.arm.linux.org.uk/
839 S:      Maintained
840 F:      arch/arm/
841
842 ARM SUB-ARCHITECTURES
843 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
844 S:      Maintained
845 F:      arch/arm/mach-*/
846 F:      arch/arm/plat-*/
847 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
848
849 ARM PRIMECELL AACI PL041 DRIVER
850 M:      Russell King <linux@arm.linux.org.uk>
851 S:      Maintained
852 F:      sound/arm/aaci.*
853
854 ARM PRIMECELL CLCD PL110 DRIVER
855 M:      Russell King <linux@arm.linux.org.uk>
856 S:      Maintained
857 F:      drivers/video/fbdev/amba-clcd.*
858
859 ARM PRIMECELL KMI PL050 DRIVER
860 M:      Russell King <linux@arm.linux.org.uk>
861 S:      Maintained
862 F:      drivers/input/serio/ambakmi.*
863 F:      include/linux/amba/kmi.h
864
865 ARM PRIMECELL MMCI PL180/1 DRIVER
866 M:      Russell King <linux@arm.linux.org.uk>
867 S:      Maintained
868 F:      drivers/mmc/host/mmci.*
869 F:      include/linux/amba/mmci.h
870
871 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
872 M:      Russell King <linux@arm.linux.org.uk>
873 S:      Maintained
874 F:      drivers/tty/serial/amba-pl01*.c
875 F:      include/linux/amba/serial.h
876
877 ARM PRIMECELL BUS SUPPORT
878 M:      Russell King <linux@arm.linux.org.uk>
879 S:      Maintained
880 F:      drivers/amba/
881 F:      include/linux/amba/bus.h
882
883 ARM/ADS SPHERE MACHINE SUPPORT
884 M:      Lennert Buytenhek <kernel@wantstofly.org>
885 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
886 S:      Maintained
887
888 ARM/AFEB9260 MACHINE SUPPORT
889 M:      Sergey Lapin <slapin@ossfans.org>
890 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
891 S:      Maintained
892
893 ARM/AJECO 1ARM MACHINE SUPPORT
894 M:      Lennert Buytenhek <kernel@wantstofly.org>
895 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
896 S:      Maintained
897
898 ARM/Allwinner sunXi SoC support
899 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
900 M:      Chen-Yu Tsai <wens@csie.org>
901 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
902 S:      Maintained
903 N:      sun[x456789]i
904
905 ARM/Allwinner SoC Clock Support
906 M:      Emilio LĂ³pez <emilio@elopez.com.ar>
907 S:      Maintained
908 F:      drivers/clk/sunxi/
909
910 ARM/Amlogic MesonX SoC support
911 M:      Carlo Caione <carlo@caione.org>
912 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
913 S:      Maintained
914 F:      drivers/media/rc/meson-ir.c
915 N:      meson[x68]
916
917 ARM/Annapurna Labs ALPINE ARCHITECTURE
918 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
919 S:      Maintained
920 F:      arch/arm/mach-alpine/
921
922 ARM/ATMEL AT91RM9200, AT91SAM9 AND SAMA5 SOC SUPPORT
923 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
924 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
925 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
926 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
927 W:      http://www.linux4sam.org
928 S:      Supported
929 F:      arch/arm/mach-at91/
930 F:      include/soc/at91/
931 F:      arch/arm/boot/dts/at91*.dts
932 F:      arch/arm/boot/dts/at91*.dtsi
933 F:      arch/arm/boot/dts/sama*.dts
934 F:      arch/arm/boot/dts/sama*.dtsi
935 F:      arch/arm/include/debug/at91.S
936
937 ARM/ATMEL AT91 Clock Support
938 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
939 S:      Maintained
940 F:      drivers/clk/at91
941
942 ARM/CALXEDA HIGHBANK ARCHITECTURE
943 M:      Rob Herring <robh@kernel.org>
944 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
945 S:      Maintained
946 F:      arch/arm/mach-highbank/
947
948 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
949 M:      Krzysztof Halasa <khalasa@piap.pl>
950 S:      Maintained
951 F:      arch/arm/mach-cns3xxx/
952
953 ARM/CAVIUM THUNDER NETWORK DRIVER
954 M:      Sunil Goutham <sgoutham@cavium.com>
955 M:      Robert Richter <rric@kernel.org>
956 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
957 S:      Supported
958 F:      drivers/net/ethernet/cavium/thunder/
959
960 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
961 M:      Alexander Shiyan <shc_work@mail.ru>
962 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
963 S:      Odd Fixes
964 N:      clps711x
965
966 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
967 M:      Hartley Sweeten <hsweeten@visionengravers.com>
968 M:      Ryan Mallon <rmallon@gmail.com>
969 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
970 S:      Maintained
971 F:      arch/arm/mach-ep93xx/
972 F:      arch/arm/mach-ep93xx/include/mach/
973
974 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
975 M:      Lennert Buytenhek <kernel@wantstofly.org>
976 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
977 S:      Maintained
978
979 ARM/CLKDEV SUPPORT
980 M:      Russell King <linux@arm.linux.org.uk>
981 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
982 S:      Maintained
983 F:      arch/arm/include/asm/clkdev.h
984 F:      drivers/clk/clkdev.c
985
986 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
987 M:      Mike Rapoport <mike@compulab.co.il>
988 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
989 S:      Maintained
990
991 ARM/CONTEC MICRO9 MACHINE SUPPORT
992 M:      Hubert Feurstein <hubert.feurstein@contec.at>
993 S:      Maintained
994 F:      arch/arm/mach-ep93xx/micro9.c
995
996 ARM/CORESIGHT FRAMEWORK AND DRIVERS
997 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
998 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
999 S:      Maintained
1000 F:      drivers/hwtracing/coresight/*
1001 F:      Documentation/trace/coresight.txt
1002 F:      Documentation/devicetree/bindings/arm/coresight.txt
1003 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1004
1005 ARM/CORGI MACHINE SUPPORT
1006 M:      Richard Purdie <rpurdie@rpsys.net>
1007 S:      Maintained
1008
1009 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1010 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1011 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1012 T:      git git://github.com/ulli-kroll/linux.git
1013 S:      Maintained
1014 F:      arch/arm/mach-gemini/
1015 F:      drivers/rtc/rtc-gemini.c
1016
1017 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1018 M:      Barry Song <baohua@kernel.org>
1019 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1020 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1021 S:      Maintained
1022 F:      arch/arm/mach-prima2/
1023 F:      drivers/clk/sirf/
1024 F:      drivers/clocksource/timer-prima2.c
1025 F:      drivers/clocksource/timer-atlas7.c
1026 N:      [^a-z]sirf
1027
1028 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1029 M:      Baruch Siach <baruch@tkos.co.il>
1030 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1031 S:      Maintained
1032 F:      arch/arm/boot/dts/cx92755*
1033 N:      digicolor
1034
1035 ARM/EBSA110 MACHINE SUPPORT
1036 M:      Russell King <linux@arm.linux.org.uk>
1037 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1038 W:      http://www.arm.linux.org.uk/
1039 S:      Maintained
1040 F:      arch/arm/mach-ebsa110/
1041 F:      drivers/net/ethernet/amd/am79c961a.*
1042
1043 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1044 M:      Uwe Kleine-König <kernel@pengutronix.de>
1045 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1046 S:      Maintained
1047 N:      efm32
1048
1049 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1050 M:      Daniel Ribeiro <drwyrm@gmail.com>
1051 M:      Stefan Schmidt <stefan@openezx.org>
1052 M:      Harald Welte <laforge@openezx.org>
1053 L:      openezx-devel@lists.openezx.org (moderated for non-subscribers)
1054 W:      http://www.openezx.org/
1055 S:      Maintained
1056 T:      topgit git://git.openezx.org/openezx.git
1057 F:      arch/arm/mach-pxa/ezx.c
1058
1059 ARM/FARADAY FA526 PORT
1060 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1061 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1062 S:      Maintained
1063 T:      git git://git.berlios.de/gemini-board
1064 F:      arch/arm/mm/*-fa*
1065
1066 ARM/FOOTBRIDGE ARCHITECTURE
1067 M:      Russell King <linux@arm.linux.org.uk>
1068 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1069 W:      http://www.arm.linux.org.uk/
1070 S:      Maintained
1071 F:      arch/arm/include/asm/hardware/dec21285.h
1072 F:      arch/arm/mach-footbridge/
1073
1074 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1075 M:      Shawn Guo <shawnguo@kernel.org>
1076 M:      Sascha Hauer <kernel@pengutronix.de>
1077 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1078 S:      Maintained
1079 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1080 F:      arch/arm/mach-imx/
1081 F:      arch/arm/mach-mxs/
1082 F:      arch/arm/boot/dts/imx*
1083 F:      arch/arm/configs/imx*_defconfig
1084 F:      drivers/clk/imx/
1085 F:      include/soc/imx/
1086
1087 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1088 M:      Shawn Guo <shawnguo@kernel.org>
1089 M:      Sascha Hauer <kernel@pengutronix.de>
1090 R:      Stefan Agner <stefan@agner.ch>
1091 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1092 S:      Maintained
1093 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1094 F:      arch/arm/mach-imx/*vf610*
1095 F:      arch/arm/boot/dts/vf*
1096
1097 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1098 M:      Lennert Buytenhek <kernel@wantstofly.org>
1099 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1100 S:      Maintained
1101
1102 ARM/GUMSTIX MACHINE SUPPORT
1103 M:      Steve Sakoman <sakoman@gmail.com>
1104 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1105 S:      Maintained
1106
1107 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1108 M:      Philipp Zabel <philipp.zabel@gmail.com>
1109 M:      Paul Parsons <lost.distance@yahoo.com>
1110 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1111 S:      Maintained
1112 F:      arch/arm/mach-pxa/hx4700.c
1113 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1114 F:      sound/soc/pxa/hx4700.c
1115
1116 ARM/HISILICON SOC SUPPORT
1117 M:      Wei Xu <xuwei5@hisilicon.com>
1118 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1119 W:      http://www.hisilicon.com
1120 S:      Supported
1121 T:      git git://github.com/hisilicon/linux-hisi.git
1122 F:      arch/arm/mach-hisi/
1123
1124 ARM/HP JORNADA 7XX MACHINE SUPPORT
1125 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1126 W:      www.jlime.com
1127 S:      Maintained
1128 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1129 F:      arch/arm/mach-sa1100/jornada720.c
1130 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1131
1132 ARM/IGEP MACHINE SUPPORT
1133 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1134 M:      Javier Martinez Canillas <javier@dowhile0.org>
1135 L:      linux-omap@vger.kernel.org
1136 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1137 S:      Maintained
1138 F:      arch/arm/boot/dts/omap3-igep*
1139
1140 ARM/INCOME PXA270 SUPPORT
1141 M:      Marek Vasut <marek.vasut@gmail.com>
1142 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1143 S:      Maintained
1144 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1145
1146 ARM/INTEL IOP32X ARM ARCHITECTURE
1147 M:      Lennert Buytenhek <kernel@wantstofly.org>
1148 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1149 S:      Maintained
1150
1151 ARM/INTEL IOP33X ARM ARCHITECTURE
1152 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1153 S:      Orphan
1154
1155 ARM/INTEL IOP13XX ARM ARCHITECTURE
1156 M:      Lennert Buytenhek <kernel@wantstofly.org>
1157 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1158 S:      Maintained
1159
1160 ARM/INTEL IQ81342EX MACHINE SUPPORT
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 IXDP2850 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 IXP4XX ARM ARCHITECTURE
1171 M:      Imre Kaloz <kaloz@openwrt.org>
1172 M:      Krzysztof Halasa <khalasa@piap.pl>
1173 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1174 S:      Maintained
1175 F:      arch/arm/mach-ixp4xx/
1176
1177 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1178 M:      Jonathan Cameron <jic23@cam.ac.uk>
1179 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1180 S:      Maintained
1181 F:      arch/arm/mach-pxa/stargate2.c
1182 F:      drivers/pcmcia/pxa2xx_stargate2.c
1183
1184 ARM/INTEL XSC3 (MANZANO) ARM CORE
1185 M:      Lennert Buytenhek <kernel@wantstofly.org>
1186 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1187 S:      Maintained
1188
1189 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
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/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
1195 M:      Santosh Shilimkar <ssantosh@kernel.org>
1196 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1197 S:      Maintained
1198 F:      arch/arm/mach-keystone/
1199 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
1200
1201 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
1202 M:      Santosh Shilimkar <ssantosh@kernel.org>
1203 L:      linux-kernel@vger.kernel.org
1204 S:      Maintained
1205 F:      drivers/clk/keystone/
1206
1207 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
1208 M:      Santosh Shilimkar <ssantosh@kernel.org>
1209 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1210 L:      linux-kernel@vger.kernel.org
1211 S:      Maintained
1212 F:      drivers/clocksource/timer-keystone.c
1213
1214 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
1215 M:      Santosh Shilimkar <ssantosh@kernel.org>
1216 L:      linux-kernel@vger.kernel.org
1217 S:      Maintained
1218 F:      drivers/power/reset/keystone-reset.c
1219
1220 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
1221 M:      Santosh Shilimkar <ssantosh@kernel.org>
1222 L:      linux-kernel@vger.kernel.org
1223 S:      Maintained
1224 F:      drivers/memory/*emif*
1225
1226 ARM/LOGICPD PXA270 MACHINE SUPPORT
1227 M:      Lennert Buytenhek <kernel@wantstofly.org>
1228 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1229 S:      Maintained
1230
1231 ARM/LPC18XX ARCHITECTURE
1232 M:      Joachim Eastwood <manabian@gmail.com>
1233 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1234 S:      Maintained
1235 F:      arch/arm/boot/dts/lpc43*
1236 F:      drivers/clk/nxp/clk-lpc18xx*
1237 F:      drivers/clocksource/time-lpc32xx.c
1238 F:      drivers/i2c/busses/i2c-lpc2k.c
1239 F:      drivers/memory/pl172.c
1240 F:      drivers/mtd/spi-nor/nxp-spifi.c
1241 F:      drivers/rtc/rtc-lpc24xx.c
1242 N:      lpc18xx
1243
1244 ARM/MAGICIAN MACHINE SUPPORT
1245 M:      Philipp Zabel <philipp.zabel@gmail.com>
1246 S:      Maintained
1247
1248 ARM/Marvell Kirkwood and Armada 370, 375, 38x, XP SOC support
1249 M:      Jason Cooper <jason@lakedaemon.net>
1250 M:      Andrew Lunn <andrew@lunn.ch>
1251 M:      Gregory Clement <gregory.clement@free-electrons.com>
1252 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1253 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1254 S:      Maintained
1255 F:      arch/arm/mach-mvebu/
1256 F:      drivers/rtc/rtc-armada38x.c
1257 F:      arch/arm/boot/dts/armada*
1258 F:      arch/arm/boot/dts/kirkwood*
1259
1260
1261 ARM/Marvell Berlin SoC support
1262 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1263 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1264 S:      Maintained
1265 F:      arch/arm/mach-berlin/
1266 F:      arch/arm/boot/dts/berlin*
1267
1268
1269 ARM/Marvell Dove/MV78xx0/Orion SOC support
1270 M:      Jason Cooper <jason@lakedaemon.net>
1271 M:      Andrew Lunn <andrew@lunn.ch>
1272 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1273 M:      Gregory Clement <gregory.clement@free-electrons.com>
1274 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1275 S:      Maintained
1276 F:      arch/arm/mach-dove/
1277 F:      arch/arm/mach-mv78xx0/
1278 F:      arch/arm/mach-orion5x/
1279 F:      arch/arm/plat-orion/
1280 F:      arch/arm/boot/dts/dove*
1281 F:      arch/arm/boot/dts/orion5x*
1282
1283
1284 ARM/Orion SoC/Technologic Systems TS-78xx platform support
1285 M:      Alexander Clouter <alex@digriz.org.uk>
1286 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1287 W:      http://www.digriz.org.uk/ts78xx/kernel
1288 S:      Maintained
1289 F:      arch/arm/mach-orion5x/ts78xx-*
1290
1291 ARM/Mediatek RTC DRIVER
1292 M:      Eddie Huang <eddie.huang@mediatek.com>
1293 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1294 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1295 S:      Maintained
1296 F:      drivers/rtc/rtc-mt6397.c
1297
1298 ARM/Mediatek SoC support
1299 M:      Matthias Brugger <matthias.bgg@gmail.com>
1300 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1301 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1302 S:      Maintained
1303 F:      arch/arm/boot/dts/mt6*
1304 F:      arch/arm/boot/dts/mt8*
1305 F:      arch/arm/mach-mediatek/
1306 N:      mtk
1307 K:      mediatek
1308
1309 ARM/Mediatek USB3 PHY DRIVER
1310 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
1311 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1312 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1313 S:      Maintained
1314 F:      drivers/phy/phy-mt65xx-usb3.c
1315
1316 ARM/MICREL KS8695 ARCHITECTURE
1317 M:      Greg Ungerer <gerg@uclinux.org>
1318 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1319 F:      arch/arm/mach-ks8695/
1320 S:      Odd Fixes
1321
1322 ARM/MIOA701 MACHINE SUPPORT
1323 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1324 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1325 F:      arch/arm/mach-pxa/mioa701.c
1326 S:      Maintained
1327
1328 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1329 M:      Michael Petchkovsky <mkpetch@internode.on.net>
1330 S:      Maintained
1331
1332 ARM/NOMADIK ARCHITECTURE
1333 M:      Alessandro Rubini <rubini@unipv.it>
1334 M:      Linus Walleij <linus.walleij@linaro.org>
1335 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1336 S:      Maintained
1337 F:      arch/arm/mach-nomadik/
1338 F:      drivers/pinctrl/nomadik/
1339 F:      drivers/i2c/busses/i2c-nomadik.c
1340 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
1341
1342 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
1343 M:      Nelson Castillo <arhuaco@freaks-unidos.net>
1344 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
1345 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
1346 S:      Supported
1347
1348 ARM/TOSA MACHINE SUPPORT
1349 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1350 M:      Dirk Opfer <dirk@opfer-online.de>
1351 S:      Maintained
1352
1353 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
1354 M:      Marek Vasut <marek.vasut@gmail.com>
1355 L:      linux-arm-kernel@lists.infradead.org
1356 W:      http://hackndev.com
1357 S:      Maintained
1358 F:      arch/arm/mach-pxa/include/mach/palmtx.h
1359 F:      arch/arm/mach-pxa/palmtx.c
1360 F:      arch/arm/mach-pxa/include/mach/palmt5.h
1361 F:      arch/arm/mach-pxa/palmt5.c
1362 F:      arch/arm/mach-pxa/include/mach/palmld.h
1363 F:      arch/arm/mach-pxa/palmld.c
1364 F:      arch/arm/mach-pxa/include/mach/palmte2.h
1365 F:      arch/arm/mach-pxa/palmte2.c
1366 F:      arch/arm/mach-pxa/include/mach/palmtc.h
1367 F:      arch/arm/mach-pxa/palmtc.c
1368
1369 ARM/PALM TREO SUPPORT
1370 M:      Tomas Cech <sleep_walker@suse.com>
1371 L:      linux-arm-kernel@lists.infradead.org
1372 W:      http://hackndev.com
1373 S:      Maintained
1374 F:      arch/arm/mach-pxa/include/mach/palmtreo.h
1375 F:      arch/arm/mach-pxa/palmtreo.c
1376
1377 ARM/PALMZ72 SUPPORT
1378 M:      Sergey Lapin <slapin@ossfans.org>
1379 L:      linux-arm-kernel@lists.infradead.org
1380 W:      http://hackndev.com
1381 S:      Maintained
1382 F:      arch/arm/mach-pxa/include/mach/palmz72.h
1383 F:      arch/arm/mach-pxa/palmz72.c
1384
1385 ARM/PLEB SUPPORT
1386 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
1387 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1388 S:      Maintained
1389
1390 ARM/PT DIGITAL BOARD PORT
1391 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
1392 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1393 W:      http://www.arm.linux.org.uk/
1394 S:      Maintained
1395
1396 ARM/QUALCOMM SUPPORT
1397 M:      Kumar Gala <galak@codeaurora.org>
1398 M:      Andy Gross <agross@codeaurora.org>
1399 M:      David Brown <davidb@codeaurora.org>
1400 L:      linux-arm-msm@vger.kernel.org
1401 L:      linux-soc@vger.kernel.org
1402 S:      Maintained
1403 F:      arch/arm/mach-qcom/
1404 F:      drivers/soc/qcom/
1405 F:      drivers/tty/serial/msm_serial.h
1406 F:      drivers/tty/serial/msm_serial.c
1407 F:      drivers/*/pm8???-*
1408 F:      drivers/mfd/ssbi.c
1409 F:      drivers/firmware/qcom_scm.c
1410 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git
1411
1412 ARM/RADISYS ENP2611 MACHINE SUPPORT
1413 M:      Lennert Buytenhek <kernel@wantstofly.org>
1414 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1415 S:      Maintained
1416
1417 ARM/RISCPC ARCHITECTURE
1418 M:      Russell King <linux@arm.linux.org.uk>
1419 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1420 W:      http://www.arm.linux.org.uk/
1421 S:      Maintained
1422 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
1423 F:      arch/arm/include/asm/hardware/ioc.h
1424 F:      arch/arm/include/asm/hardware/iomd.h
1425 F:      arch/arm/include/asm/hardware/memc.h
1426 F:      arch/arm/mach-rpc/
1427 F:      drivers/net/ethernet/8390/etherh.c
1428 F:      drivers/net/ethernet/i825xx/ether1*
1429 F:      drivers/net/ethernet/seeq/ether3*
1430 F:      drivers/scsi/arm/
1431
1432 ARM/Rockchip SoC support
1433 M:      Heiko Stuebner <heiko@sntech.de>
1434 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1435 L:      linux-rockchip@lists.infradead.org
1436 S:      Maintained
1437 F:      arch/arm/boot/dts/rk3*
1438 F:      arch/arm/mach-rockchip/
1439 F:      drivers/clk/rockchip/
1440 F:      drivers/i2c/busses/i2c-rk3x.c
1441 F:      drivers/*/*rockchip*
1442 F:      drivers/*/*/*rockchip*
1443 F:      sound/soc/rockchip/
1444 N:      rockchip
1445
1446 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
1447 M:      Kukjin Kim <kgene@kernel.org>
1448 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
1449 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1450 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1451 S:      Maintained
1452 F:      arch/arm/boot/dts/s3c*
1453 F:      arch/arm/boot/dts/exynos*
1454 F:      arch/arm64/boot/dts/exynos/
1455 F:      arch/arm/plat-samsung/
1456 F:      arch/arm/mach-s3c24*/
1457 F:      arch/arm/mach-s3c64xx/
1458 F:      arch/arm/mach-s5p*/
1459 F:      arch/arm/mach-exynos*/
1460 F:      drivers/*/*s3c2410*
1461 F:      drivers/*/*/*s3c2410*
1462 F:      drivers/spi/spi-s3c*
1463 F:      drivers/soc/samsung/*
1464 F:      sound/soc/samsung/*
1465 F:      Documentation/arm/Samsung/
1466 F:      Documentation/devicetree/bindings/arm/samsung/
1467 F:      Documentation/devicetree/bindings/sram/samsung-sram.txt
1468 F:      Documentation/devicetree/bindings/power/pd-samsung.txt
1469 N:      exynos
1470
1471 ARM/SAMSUNG MOBILE MACHINE SUPPORT
1472 M:      Kyungmin Park <kyungmin.park@samsung.com>
1473 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1474 S:      Maintained
1475 F:      arch/arm/mach-s5pv210/
1476
1477 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1478 M:      Kyungmin Park <kyungmin.park@samsung.com>
1479 M:      Kamil Debski <k.debski@samsung.com>
1480 L:      linux-arm-kernel@lists.infradead.org
1481 L:      linux-media@vger.kernel.org
1482 S:      Maintained
1483 F:      drivers/media/platform/s5p-g2d/
1484
1485 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1486 M:      Kyungmin Park <kyungmin.park@samsung.com>
1487 M:      Kamil Debski <k.debski@samsung.com>
1488 M:      Jeongtae Park <jtp.park@samsung.com>
1489 L:      linux-arm-kernel@lists.infradead.org
1490 L:      linux-media@vger.kernel.org
1491 S:      Maintained
1492 F:      arch/arm/plat-samsung/s5p-dev-mfc.c
1493 F:      drivers/media/platform/s5p-mfc/
1494
1495 ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1496 M:      Kyungmin Park <kyungmin.park@samsung.com>
1497 M:      Tomasz Stanislawski <t.stanislaws@samsung.com>
1498 L:      linux-arm-kernel@lists.infradead.org
1499 L:      linux-media@vger.kernel.org
1500 S:      Maintained
1501 F:      drivers/media/platform/s5p-tv/
1502
1503 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
1504 M:      Andrzej Pietrasiewicz <andrzej.p@samsung.com>
1505 M:      Jacek Anaszewski <j.anaszewski@samsung.com>
1506 L:      linux-arm-kernel@lists.infradead.org
1507 L:      linux-media@vger.kernel.org
1508 S:      Maintained
1509 F:      drivers/media/platform/s5p-jpeg/
1510
1511 ARM/SHMOBILE ARM ARCHITECTURE
1512 M:      Simon Horman <horms@verge.net.au>
1513 M:      Magnus Damm <magnus.damm@gmail.com>
1514 L:      linux-sh@vger.kernel.org
1515 W:      http://oss.renesas.com
1516 Q:      http://patchwork.kernel.org/project/linux-sh/list/
1517 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1518 S:      Supported
1519 F:      arch/arm/boot/dts/emev2*
1520 F:      arch/arm/boot/dts/r7s*
1521 F:      arch/arm/boot/dts/r8a*
1522 F:      arch/arm/boot/dts/sh*
1523 F:      arch/arm/configs/shmobile_defconfig
1524 F:      arch/arm/include/debug/renesas-scif.S
1525 F:      arch/arm/mach-shmobile/
1526 F:      drivers/sh/
1527
1528 ARM/SOCFPGA ARCHITECTURE
1529 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1530 S:      Maintained
1531 F:      arch/arm/mach-socfpga/
1532 F:      arch/arm/boot/dts/socfpga*
1533 F:      arch/arm/configs/socfpga_defconfig
1534 W:      http://www.rocketboards.org
1535 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
1536
1537 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1538 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1539 S:      Maintained
1540 F:      drivers/clk/socfpga/
1541
1542 ARM/SOCFPGA EDAC SUPPORT
1543 M:      Thor Thayer <tthayer@opensource.altera.com>
1544 S:      Maintained
1545 F:      drivers/edac/altera_edac.
1546
1547 ARM/STI ARCHITECTURE
1548 M:      Srinivas Kandagatla <srinivas.kandagatla@gmail.com>
1549 M:      Maxime Coquelin <maxime.coquelin@st.com>
1550 M:      Patrice Chotard <patrice.chotard@st.com>
1551 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1552 L:      kernel@stlinux.com
1553 W:      http://www.stlinux.com
1554 S:      Maintained
1555 F:      arch/arm/mach-sti/
1556 F:      arch/arm/boot/dts/sti*
1557 F:      drivers/char/hw_random/st-rng.c
1558 F:      drivers/clocksource/arm_global_timer.c
1559 F:      drivers/clocksource/clksrc_st_lpc.c
1560 F:      drivers/i2c/busses/i2c-st.c
1561 F:      drivers/media/rc/st_rc.c
1562 F:      drivers/media/platform/sti/c8sectpfe/
1563 F:      drivers/mmc/host/sdhci-st.c
1564 F:      drivers/phy/phy-miphy28lp.c
1565 F:      drivers/phy/phy-miphy365x.c
1566 F:      drivers/phy/phy-stih407-usb.c
1567 F:      drivers/phy/phy-stih41x-usb.c
1568 F:      drivers/pinctrl/pinctrl-st.c
1569 F:      drivers/reset/sti/
1570 F:      drivers/rtc/rtc-st-lpc.c
1571 F:      drivers/tty/serial/st-asc.c
1572 F:      drivers/usb/dwc3/dwc3-st.c
1573 F:      drivers/usb/host/ehci-st.c
1574 F:      drivers/usb/host/ohci-st.c
1575 F:      drivers/watchdog/st_lpc_wdt.c
1576 F:      drivers/ata/ahci_st.c
1577
1578 ARM/STM32 ARCHITECTURE
1579 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
1580 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1581 S:      Maintained
1582 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git
1583 N:      stm32
1584 F:      drivers/clocksource/armv7m_systick.c
1585
1586 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
1587 M:      Lennert Buytenhek <kernel@wantstofly.org>
1588 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1589 S:      Maintained
1590
1591 ARM/TETON BGA MACHINE SUPPORT
1592 M:      "Mark F. Brown" <mark.brown314@gmail.com>
1593 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1594 S:      Maintained
1595
1596 ARM/THECUS N2100 MACHINE SUPPORT
1597 M:      Lennert Buytenhek <kernel@wantstofly.org>
1598 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1599 S:      Maintained
1600
1601 ARM/NUVOTON W90X900 ARM ARCHITECTURE
1602 M:      Wan ZongShun <mcuos.com@gmail.com>
1603 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1604 W:      http://www.mcuos.com
1605 S:      Maintained
1606 F:      arch/arm/mach-w90x900/
1607 F:      drivers/input/keyboard/w90p910_keypad.c
1608 F:      drivers/input/touchscreen/w90p910_ts.c
1609 F:      drivers/watchdog/nuc900_wdt.c
1610 F:      drivers/net/ethernet/nuvoton/w90p910_ether.c
1611 F:      drivers/mtd/nand/nuc900_nand.c
1612 F:      drivers/rtc/rtc-nuc900.c
1613 F:      drivers/spi/spi-nuc900.c
1614 F:      drivers/usb/host/ehci-w90x900.c
1615 F:      drivers/video/fbdev/nuc900fb.c
1616
1617 ARM/U300 MACHINE SUPPORT
1618 M:      Linus Walleij <linus.walleij@linaro.org>
1619 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1620 S:      Supported
1621 F:      arch/arm/mach-u300/
1622 F:      drivers/clocksource/timer-u300.c
1623 F:      drivers/i2c/busses/i2c-stu300.c
1624 F:      drivers/rtc/rtc-coh901331.c
1625 F:      drivers/watchdog/coh901327_wdt.c
1626 F:      drivers/dma/coh901318*
1627 F:      drivers/mfd/ab3100*
1628 F:      drivers/rtc/rtc-ab3100.c
1629 F:      drivers/rtc/rtc-coh901331.c
1630 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1631
1632 ARM/UNIPHIER ARCHITECTURE
1633 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
1634 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1635 S:      Maintained
1636 F:      arch/arm/boot/dts/uniphier*
1637 F:      arch/arm/include/asm/hardware/cache-uniphier.h
1638 F:      arch/arm/mach-uniphier/
1639 F:      arch/arm/mm/cache-uniphier.c
1640 F:      drivers/i2c/busses/i2c-uniphier*
1641 F:      drivers/pinctrl/uniphier/
1642 F:      drivers/tty/serial/8250/8250_uniphier.c
1643 N:      uniphier
1644
1645 ARM/Ux500 ARM ARCHITECTURE
1646 M:      Linus Walleij <linus.walleij@linaro.org>
1647 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1648 S:      Maintained
1649 F:      arch/arm/mach-ux500/
1650 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
1651 F:      drivers/dma/ste_dma40*
1652 F:      drivers/hwspinlock/u8500_hsem.c
1653 F:      drivers/mfd/abx500*
1654 F:      drivers/mfd/ab8500*
1655 F:      drivers/mfd/dbx500*
1656 F:      drivers/mfd/db8500*
1657 F:      drivers/pinctrl/nomadik/pinctrl-ab*
1658 F:      drivers/pinctrl/nomadik/pinctrl-nomadik*
1659 F:      drivers/rtc/rtc-ab8500.c
1660 F:      drivers/rtc/rtc-pl031.c
1661 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1662
1663 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
1664 M:      Ulf Hansson <ulf.hansson@linaro.org>
1665 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1666 T:      git git://git.linaro.org/people/ulfh/clk.git
1667 S:      Maintained
1668 F:      drivers/clk/ux500/
1669 F:      include/linux/platform_data/clk-ux500.h
1670
1671 ARM/VERSATILE EXPRESS PLATFORM
1672 M:      Liviu Dudau <liviu.dudau@arm.com>
1673 M:      Sudeep Holla <sudeep.holla@arm.com>
1674 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
1675 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1676 S:      Maintained
1677 F:      arch/arm/boot/dts/vexpress*
1678 F:      arch/arm64/boot/dts/arm/vexpress*
1679 F:      arch/arm/mach-vexpress/
1680 F:      */*/vexpress*
1681 F:      */*/*/vexpress*
1682 F:      drivers/clk/versatile/clk-vexpress-osc.c
1683 F:      drivers/clocksource/versatile.c
1684
1685 ARM/VFP SUPPORT
1686 M:      Russell King <linux@arm.linux.org.uk>
1687 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1688 W:      http://www.arm.linux.org.uk/
1689 S:      Maintained
1690 F:      arch/arm/vfp/
1691
1692 ARM/VOIPAC PXA270 SUPPORT
1693 M:      Marek Vasut <marek.vasut@gmail.com>
1694 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1695 S:      Maintained
1696 F:      arch/arm/mach-pxa/vpac270.c
1697 F:      arch/arm/mach-pxa/include/mach/vpac270.h
1698
1699 ARM/VT8500 ARM ARCHITECTURE
1700 M:      Tony Prisk <linux@prisktech.co.nz>
1701 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1702 S:      Maintained
1703 F:      arch/arm/mach-vt8500/
1704 F:      drivers/clocksource/vt8500_timer.c
1705 F:      drivers/i2c/busses/i2c-wmt.c
1706 F:      drivers/mmc/host/wmt-sdmmc.c
1707 F:      drivers/pwm/pwm-vt8500.c
1708 F:      drivers/rtc/rtc-vt8500.c
1709 F:      drivers/tty/serial/vt8500_serial.c
1710 F:      drivers/usb/host/ehci-platform.c
1711 F:      drivers/usb/host/uhci-platform.c
1712 F:      drivers/video/fbdev/vt8500lcdfb.*
1713 F:      drivers/video/fbdev/wm8505fb*
1714 F:      drivers/video/fbdev/wmt_ge_rops.*
1715
1716 ARM/ZIPIT Z2 SUPPORT
1717 M:      Marek Vasut <marek.vasut@gmail.com>
1718 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1719 S:      Maintained
1720 F:      arch/arm/mach-pxa/z2.c
1721 F:      arch/arm/mach-pxa/include/mach/z2.h
1722
1723 ARM/ZTE ARCHITECTURE
1724 M:      Jun Nie <jun.nie@linaro.org>
1725 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1726 S:      Maintained
1727 F:      arch/arm/mach-zx/
1728 F:      drivers/clk/zte/
1729 F:      Documentation/devicetree/bindings/arm/zte.txt
1730 F:      Documentation/devicetree/bindings/clock/zx296702-clk.txt
1731
1732 ARM/ZYNQ ARCHITECTURE
1733 M:      Michal Simek <michal.simek@xilinx.com>
1734 R:      Sören Brinkmann <soren.brinkmann@xilinx.com>
1735 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1736 W:      http://wiki.xilinx.com
1737 T:      git https://github.com/Xilinx/linux-xlnx.git
1738 S:      Supported
1739 F:      arch/arm/mach-zynq/
1740 F:      drivers/cpuidle/cpuidle-zynq.c
1741 F:      drivers/block/xsysace.c
1742 N:      zynq
1743 N:      xilinx
1744 F:      drivers/clocksource/cadence_ttc_timer.c
1745 F:      drivers/i2c/busses/i2c-cadence.c
1746 F:      drivers/mmc/host/sdhci-of-arasan.c
1747 F:      drivers/edac/synopsys_edac.c
1748
1749 ARM SMMU DRIVERS
1750 M:      Will Deacon <will.deacon@arm.com>
1751 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1752 S:      Maintained
1753 F:      drivers/iommu/arm-smmu.c
1754 F:      drivers/iommu/arm-smmu-v3.c
1755 F:      drivers/iommu/io-pgtable-arm.c
1756
1757 ARM64 PORT (AARCH64 ARCHITECTURE)
1758 M:      Catalin Marinas <catalin.marinas@arm.com>
1759 M:      Will Deacon <will.deacon@arm.com>
1760 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1761 S:      Maintained
1762 F:      arch/arm64/
1763 F:      Documentation/arm64/
1764
1765 AS3645A LED FLASH CONTROLLER DRIVER
1766 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1767 L:      linux-media@vger.kernel.org
1768 T:      git git://linuxtv.org/media_tree.git
1769 S:      Maintained
1770 F:      drivers/media/i2c/as3645a.c
1771 F:      include/media/as3645a.h
1772
1773 ASC7621 HARDWARE MONITOR DRIVER
1774 M:      George Joseph <george.joseph@fairview5.com>
1775 L:      lm-sensors@lm-sensors.org
1776 S:      Maintained
1777 F:      Documentation/hwmon/asc7621
1778 F:      drivers/hwmon/asc7621.c
1779
1780 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
1781 M:      Corentin Chary <corentin.chary@gmail.com>
1782 L:      acpi4asus-user@lists.sourceforge.net
1783 L:      platform-driver-x86@vger.kernel.org
1784 W:      http://acpi4asus.sf.net
1785 S:      Maintained
1786 F:      drivers/platform/x86/asus*.c
1787 F:      drivers/platform/x86/eeepc*.c
1788
1789 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
1790 R:      Dan Williams <dan.j.williams@intel.com>
1791 W:      http://sourceforge.net/projects/xscaleiop
1792 S:      Odd fixes
1793 F:      Documentation/crypto/async-tx-api.txt
1794 F:      crypto/async_tx/
1795 F:      drivers/dma/
1796 F:      include/linux/dmaengine.h
1797 F:      include/linux/async_tx.h
1798
1799 AT24 EEPROM DRIVER
1800 M:      Wolfram Sang <wsa@the-dreams.de>
1801 L:      linux-i2c@vger.kernel.org
1802 S:      Maintained
1803 F:      drivers/misc/eeprom/at24.c
1804 F:      include/linux/platform_data/at24.h
1805
1806 ATA OVER ETHERNET (AOE) DRIVER
1807 M:      "Ed L. Cashin" <ed.cashin@acm.org>
1808 W:      http://www.openaoe.org/
1809 S:      Supported
1810 F:      Documentation/aoe/
1811 F:      drivers/block/aoe/
1812
1813 ATHEROS ATH GENERIC UTILITIES
1814 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1815 L:      linux-wireless@vger.kernel.org
1816 S:      Supported
1817 F:      drivers/net/wireless/ath/*
1818
1819 ATHEROS ATH5K WIRELESS DRIVER
1820 M:      Jiri Slaby <jirislaby@gmail.com>
1821 M:      Nick Kossifidis <mickflemm@gmail.com>
1822 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1823 L:      linux-wireless@vger.kernel.org
1824 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
1825 S:      Maintained
1826 F:      drivers/net/wireless/ath/ath5k/
1827
1828 ATHEROS ATH6KL WIRELESS DRIVER
1829 M:      Kalle Valo <kvalo@qca.qualcomm.com>
1830 L:      linux-wireless@vger.kernel.org
1831 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
1832 T:      git git://github.com/kvalo/ath.git
1833 S:      Supported
1834 F:      drivers/net/wireless/ath/ath6kl/
1835
1836 WILOCITY WIL6210 WIRELESS DRIVER
1837 M:      Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com>
1838 L:      linux-wireless@vger.kernel.org
1839 L:      wil6210@qca.qualcomm.com
1840 S:      Supported
1841 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
1842 F:      drivers/net/wireless/ath/wil6210/
1843 F:      include/uapi/linux/wil6210_uapi.h
1844
1845 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1846 M:      Christian Lamparter <chunkeey@googlemail.com>
1847 L:      linux-wireless@vger.kernel.org
1848 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
1849 S:      Maintained
1850 F:      drivers/net/wireless/ath/carl9170/
1851
1852 ATK0110 HWMON DRIVER
1853 M:      Luca Tettamanti <kronos.it@gmail.com>
1854 L:      lm-sensors@lm-sensors.org
1855 S:      Maintained
1856 F:      drivers/hwmon/asus_atk0110.c
1857
1858 ATI_REMOTE2 DRIVER
1859 M:      Ville Syrjala <syrjala@sci.fi>
1860 S:      Maintained
1861 F:      drivers/input/misc/ati_remote2.c
1862
1863 ATLX ETHERNET DRIVERS
1864 M:      Jay Cliburn <jcliburn@gmail.com>
1865 M:      Chris Snook <chris.snook@gmail.com>
1866 L:      netdev@vger.kernel.org
1867 W:      http://sourceforge.net/projects/atl1
1868 W:      http://atl1.sourceforge.net
1869 S:      Maintained
1870 F:      drivers/net/ethernet/atheros/
1871
1872 ATM
1873 M:      Chas Williams <3chas3@gmail.com>
1874 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
1875 L:      netdev@vger.kernel.org
1876 W:      http://linux-atm.sourceforge.net
1877 S:      Maintained
1878 F:      drivers/atm/
1879 F:      include/linux/atm*
1880 F:      include/uapi/linux/atm*
1881
1882 ATMEL AT91 / AT32 MCI DRIVER
1883 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1884 S:      Maintained
1885 F:      drivers/mmc/host/atmel-mci.c
1886 F:      drivers/mmc/host/atmel-mci-regs.h
1887
1888 ATMEL AT91 / AT32 SERIAL DRIVER
1889 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1890 S:      Supported
1891 F:      drivers/tty/serial/atmel_serial.c
1892
1893 ATMEL Audio ALSA driver
1894 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1895 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1896 S:      Supported
1897 F:      sound/soc/atmel
1898
1899 ATMEL DMA DRIVER
1900 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1901 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1902 S:      Supported
1903 F:      drivers/dma/at_hdmac.c
1904 F:      drivers/dma/at_hdmac_regs.h
1905 F:      include/linux/platform_data/dma-atmel.h
1906
1907 ATMEL XDMA DRIVER
1908 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1909 L:      linux-arm-kernel@lists.infradead.org
1910 L:      dmaengine@vger.kernel.org
1911 S:      Supported
1912 F:      drivers/dma/at_xdmac.c
1913
1914 ATMEL I2C DRIVER
1915 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1916 L:      linux-i2c@vger.kernel.org
1917 S:      Supported
1918 F:      drivers/i2c/busses/i2c-at91.c
1919
1920 ATMEL ISI DRIVER
1921 M:      Josh Wu <josh.wu@atmel.com>
1922 L:      linux-media@vger.kernel.org
1923 S:      Supported
1924 F:      drivers/media/platform/soc_camera/atmel-isi.c
1925 F:      include/media/atmel-isi.h
1926
1927 ATMEL LCDFB DRIVER
1928 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1929 L:      linux-fbdev@vger.kernel.org
1930 S:      Maintained
1931 F:      drivers/video/fbdev/atmel_lcdfb.c
1932 F:      include/video/atmel_lcdc.h
1933
1934 ATMEL MACB ETHERNET DRIVER
1935 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1936 S:      Supported
1937 F:      drivers/net/ethernet/cadence/
1938
1939 ATMEL NAND DRIVER
1940 M:      Josh Wu <josh.wu@atmel.com>
1941 L:      linux-mtd@lists.infradead.org
1942 S:      Supported
1943 F:      drivers/mtd/nand/atmel_nand*
1944
1945 ATMEL SDMMC DRIVER
1946 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1947 L:      linux-mmc@vger.kernel.org
1948 S:      Supported
1949 F:      drivers/mmc/host/sdhci-of-at91.c
1950
1951 ATMEL SPI DRIVER
1952 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1953 S:      Supported
1954 F:      drivers/spi/spi-atmel.*
1955
1956 ATMEL SSC DRIVER
1957 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1958 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1959 S:      Supported
1960 F:      drivers/misc/atmel-ssc.c
1961 F:      include/linux/atmel-ssc.h
1962
1963 ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1964 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1965 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1966 S:      Supported
1967 F:      drivers/misc/atmel_tclib.c
1968 F:      drivers/clocksource/tcb_clksrc.c
1969
1970 ATMEL USBA UDC DRIVER
1971 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1972 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1973 S:      Supported
1974 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
1975
1976 ATMEL WIRELESS DRIVER
1977 M:      Simon Kelley <simon@thekelleys.org.uk>
1978 L:      linux-wireless@vger.kernel.org
1979 W:      http://www.thekelleys.org.uk/atmel
1980 W:      http://atmelwlandriver.sourceforge.net/
1981 S:      Maintained
1982 F:      drivers/net/wireless/atmel*
1983
1984 ATMEL MAXTOUCH DRIVER
1985 M:      Nick Dyer <nick.dyer@itdev.co.uk>
1986 T:      git git://github.com/atmel-maxtouch/linux.git
1987 S:      Supported
1988 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
1989 F:      drivers/input/touchscreen/atmel_mxt_ts.c
1990 F:      include/linux/platform_data/atmel_mxt_ts.h
1991
1992 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
1993 M:      Bradley Grove <linuxdrivers@attotech.com>
1994 L:      linux-scsi@vger.kernel.org
1995 W:      http://www.attotech.com
1996 S:      Supported
1997 F:      drivers/scsi/esas2r
1998
1999 ATUSB IEEE 802.15.4 RADIO DRIVER
2000 M:      Stefan Schmidt <stefan@osg.samsung.com>
2001 L:      linux-wpan@vger.kernel.org
2002 S:      Maintained
2003 F:      drivers/net/ieee802154/atusb.c
2004 F:      drivers/net/ieee802154/atusb.h
2005 F:      drivers/net/ieee802154/at86rf230.h
2006
2007 AUDIT SUBSYSTEM
2008 M:      Paul Moore <paul@paul-moore.com>
2009 M:      Eric Paris <eparis@redhat.com>
2010 L:      linux-audit@redhat.com (moderated for non-subscribers)
2011 W:      http://people.redhat.com/sgrubb/audit/
2012 T:      git git://git.infradead.org/users/pcmoore/audit
2013 S:      Maintained
2014 F:      include/linux/audit.h
2015 F:      include/uapi/linux/audit.h
2016 F:      kernel/audit*
2017
2018 AUXILIARY DISPLAY DRIVERS
2019 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2020 W:      http://miguelojeda.es/auxdisplay.htm
2021 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2022 S:      Maintained
2023 F:      drivers/auxdisplay/
2024 F:      include/linux/cfag12864b.h
2025
2026 AVR32 ARCHITECTURE
2027 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
2028 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
2029 W:      http://www.atmel.com/products/AVR32/
2030 W:      http://mirror.egtvedt.no/avr32linux.org/
2031 W:      http://avrfreaks.net/
2032 S:      Maintained
2033 F:      arch/avr32/
2034
2035 AVR32/AT32AP MACHINE SUPPORT
2036 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
2037 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
2038 S:      Maintained
2039 F:      arch/avr32/mach-at32ap/
2040
2041 AX.25 NETWORK LAYER
2042 M:      Ralf Baechle <ralf@linux-mips.org>
2043 L:      linux-hams@vger.kernel.org
2044 W:      http://www.linux-ax25.org/
2045 S:      Maintained
2046 F:      include/uapi/linux/ax25.h
2047 F:      include/net/ax25.h
2048 F:      net/ax25/
2049
2050 AZ6007 DVB DRIVER
2051 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2052 L:      linux-media@vger.kernel.org
2053 W:      http://linuxtv.org
2054 T:      git git://linuxtv.org/media_tree.git
2055 S:      Maintained
2056 F:      drivers/media/usb/dvb-usb-v2/az6007.c
2057
2058 AZTECH FM RADIO RECEIVER DRIVER
2059 M:      Hans Verkuil <hverkuil@xs4all.nl>
2060 L:      linux-media@vger.kernel.org
2061 T:      git git://linuxtv.org/media_tree.git
2062 W:      http://linuxtv.org
2063 S:      Maintained
2064 F:      drivers/media/radio/radio-aztech*
2065
2066 B43 WIRELESS DRIVER
2067 L:      linux-wireless@vger.kernel.org
2068 L:      b43-dev@lists.infradead.org
2069 W:      http://wireless.kernel.org/en/users/Drivers/b43
2070 S:      Odd Fixes
2071 F:      drivers/net/wireless/b43/
2072
2073 B43LEGACY WIRELESS DRIVER
2074 M:      Larry Finger <Larry.Finger@lwfinger.net>
2075 L:      linux-wireless@vger.kernel.org
2076 L:      b43-dev@lists.infradead.org
2077 W:      http://wireless.kernel.org/en/users/Drivers/b43
2078 S:      Maintained
2079 F:      drivers/net/wireless/b43legacy/
2080
2081 BACKLIGHT CLASS/SUBSYSTEM
2082 M:      Jingoo Han <jingoohan1@gmail.com>
2083 M:      Lee Jones <lee.jones@linaro.org>
2084 S:      Maintained
2085 F:      drivers/video/backlight/
2086 F:      include/linux/backlight.h
2087
2088 BATMAN ADVANCED
2089 M:      Marek Lindner <mareklindner@neomailbox.ch>
2090 M:      Simon Wunderlich <sw@simonwunderlich.de>
2091 M:      Antonio Quartulli <antonio@meshcoding.com>
2092 L:      b.a.t.m.a.n@lists.open-mesh.org
2093 W:      http://www.open-mesh.org/
2094 S:      Maintained
2095 F:      net/batman-adv/
2096
2097 BAYCOM/HDLCDRV DRIVERS FOR AX.25
2098 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
2099 L:      linux-hams@vger.kernel.org
2100 W:      http://www.baycom.org/~tom/ham/ham.html
2101 S:      Maintained
2102 F:      drivers/net/hamradio/baycom*
2103
2104 BCACHE (BLOCK LAYER CACHE)
2105 M:      Kent Overstreet <kent.overstreet@gmail.com>
2106 L:      linux-bcache@vger.kernel.org
2107 W:      http://bcache.evilpiepirate.org
2108 S:      Maintained
2109 F:      drivers/md/bcache/
2110
2111 BDISP ST MEDIA DRIVER
2112 M:      Fabien Dessenne <fabien.dessenne@st.com>
2113 L:      linux-media@vger.kernel.org
2114 T:      git git://linuxtv.org/media_tree.git
2115 W:      http://linuxtv.org
2116 S:      Supported
2117 F:      drivers/media/platform/sti/bdisp
2118
2119 BEFS FILE SYSTEM
2120 S:      Orphan
2121 F:      Documentation/filesystems/befs.txt
2122 F:      fs/befs/
2123
2124 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
2125 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
2126 L:      netdev@vger.kernel.org
2127 S:      Maintained
2128 F:      drivers/net/ethernet/ec_bhf.c
2129
2130 BFS FILE SYSTEM
2131 M:      "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
2132 S:      Maintained
2133 F:      Documentation/filesystems/bfs.txt
2134 F:      fs/bfs/
2135 F:      include/uapi/linux/bfs_fs.h
2136
2137 BLACKFIN ARCHITECTURE
2138 M:      Steven Miao <realmz6@gmail.com>
2139 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2140 T:      git git://git.code.sf.net/p/adi-linux/code
2141 W:      http://blackfin.uclinux.org
2142 S:      Supported
2143 F:      arch/blackfin/
2144
2145 BLACKFIN EMAC DRIVER
2146 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2147 W:      http://blackfin.uclinux.org
2148 S:      Supported
2149 F:      drivers/net/ethernet/adi/
2150
2151 BLACKFIN RTC DRIVER
2152 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2153 W:      http://blackfin.uclinux.org
2154 S:      Supported
2155 F:      drivers/rtc/rtc-bfin.c
2156
2157 BLACKFIN SDH DRIVER
2158 M:      Sonic Zhang <sonic.zhang@analog.com>
2159 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2160 W:      http://blackfin.uclinux.org
2161 S:      Supported
2162 F:      drivers/mmc/host/bfin_sdh.c
2163
2164 BLACKFIN SERIAL DRIVER
2165 M:      Sonic Zhang <sonic.zhang@analog.com>
2166 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2167 W:      http://blackfin.uclinux.org
2168 S:      Supported
2169 F:      drivers/tty/serial/bfin_uart.c
2170
2171 BLACKFIN WATCHDOG DRIVER
2172 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2173 W:      http://blackfin.uclinux.org
2174 S:      Supported
2175 F:      drivers/watchdog/bfin_wdt.c
2176
2177 BLACKFIN I2C TWI DRIVER
2178 M:      Sonic Zhang <sonic.zhang@analog.com>
2179 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2180 W:      http://blackfin.uclinux.org/
2181 S:      Supported
2182 F:      drivers/i2c/busses/i2c-bfin-twi.c
2183
2184 BLACKFIN MEDIA DRIVER
2185 M:      Scott Jiang <scott.jiang.linux@gmail.com>
2186 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2187 W:      http://blackfin.uclinux.org/
2188 S:      Supported
2189 F:      drivers/media/platform/blackfin/
2190 F:      drivers/media/i2c/adv7183*
2191 F:      drivers/media/i2c/vs6624*
2192
2193 BLINKM RGB LED DRIVER
2194 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
2195 S:      Maintained
2196 F:      drivers/leds/leds-blinkm.c
2197
2198 BLOCK LAYER
2199 M:      Jens Axboe <axboe@kernel.dk>
2200 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
2201 S:      Maintained
2202 F:      block/
2203 F:      kernel/trace/blktrace.c
2204
2205 BLOCK2MTD DRIVER
2206 M:      Joern Engel <joern@lazybastard.org>
2207 L:      linux-mtd@lists.infradead.org
2208 S:      Maintained
2209 F:      drivers/mtd/devices/block2mtd.c
2210
2211 BLUETOOTH DRIVERS
2212 M:      Marcel Holtmann <marcel@holtmann.org>
2213 M:      Gustavo Padovan <gustavo@padovan.org>
2214 M:      Johan Hedberg <johan.hedberg@gmail.com>
2215 L:      linux-bluetooth@vger.kernel.org
2216 W:      http://www.bluez.org/
2217 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2218 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2219 S:      Maintained
2220 F:      drivers/bluetooth/
2221
2222 BLUETOOTH SUBSYSTEM
2223 M:      Marcel Holtmann <marcel@holtmann.org>
2224 M:      Gustavo Padovan <gustavo@padovan.org>
2225 M:      Johan Hedberg <johan.hedberg@gmail.com>
2226 L:      linux-bluetooth@vger.kernel.org
2227 W:      http://www.bluez.org/
2228 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2229 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2230 S:      Maintained
2231 F:      net/bluetooth/
2232 F:      include/net/bluetooth/
2233
2234 BONDING DRIVER
2235 M:      Jay Vosburgh <j.vosburgh@gmail.com>
2236 M:      Veaceslav Falico <vfalico@gmail.com>
2237 M:      Andy Gospodarek <gospo@cumulusnetworks.com>
2238 L:      netdev@vger.kernel.org
2239 W:      http://sourceforge.net/projects/bonding/
2240 S:      Supported
2241 F:      drivers/net/bonding/
2242 F:      include/uapi/linux/if_bonding.h
2243
2244 BPF (Safe dynamic programs and tools)
2245 M:      Alexei Starovoitov <ast@kernel.org>
2246 L:      netdev@vger.kernel.org
2247 L:      linux-kernel@vger.kernel.org
2248 S:      Supported
2249 F:      kernel/bpf/
2250
2251 BROADCOM B44 10/100 ETHERNET DRIVER
2252 M:      Gary Zambrano <zambrano@broadcom.com>
2253 L:      netdev@vger.kernel.org
2254 S:      Supported
2255 F:      drivers/net/ethernet/broadcom/b44.*
2256
2257 BROADCOM GENET ETHERNET DRIVER
2258 M:      Florian Fainelli <f.fainelli@gmail.com>
2259 L:      netdev@vger.kernel.org
2260 S:      Supported
2261 F:      drivers/net/ethernet/broadcom/genet/
2262
2263 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
2264 M:      Sony Chacko <sony.chacko@qlogic.com>
2265 M:      Dept-HSGLinuxNICDev@qlogic.com
2266 L:      netdev@vger.kernel.org
2267 S:      Supported
2268 F:      drivers/net/ethernet/broadcom/bnx2.*
2269 F:      drivers/net/ethernet/broadcom/bnx2_*
2270
2271 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
2272 M:      Ariel Elior <ariel.elior@qlogic.com>
2273 L:      netdev@vger.kernel.org
2274 S:      Supported
2275 F:      drivers/net/ethernet/broadcom/bnx2x/
2276
2277 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
2278 M:      Florian Fainelli <f.fainelli@gmail.com>
2279 M:      Ray Jui <rjui@broadcom.com>
2280 M:      Scott Branden <sbranden@broadcom.com>
2281 L:      bcm-kernel-feedback-list@broadcom.com
2282 T:      git git://github.com/broadcom/mach-bcm
2283 S:      Maintained
2284 F:      arch/arm/mach-bcm/
2285 F:      arch/arm/boot/dts/bcm113*
2286 F:      arch/arm/boot/dts/bcm216*
2287 F:      arch/arm/boot/dts/bcm281*
2288 F:      arch/arm/configs/bcm_defconfig
2289 F:      drivers/mmc/host/sdhci-bcm-kona.c
2290 F:      drivers/clocksource/bcm_kona_timer.c
2291
2292 BROADCOM BCM2835 ARM ARCHITECTURE
2293 M:      Stephen Warren <swarren@wwwdotorg.org>
2294 M:      Lee Jones <lee@kernel.org>
2295 M:      Eric Anholt <eric@anholt.net>
2296 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
2297 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2298 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rpi/linux-rpi.git
2299 S:      Maintained
2300 N:      bcm2835
2301
2302 BROADCOM BCM33XX MIPS ARCHITECTURE
2303 M:      Kevin Cernekee <cernekee@gmail.com>
2304 L:      linux-mips@linux-mips.org
2305 S:      Maintained
2306 F:      arch/mips/bcm3384/*
2307 F:      arch/mips/include/asm/mach-bcm3384/*
2308 F:      arch/mips/kernel/*bmips*
2309
2310 BROADCOM BCM47XX MIPS ARCHITECTURE
2311 M:      Hauke Mehrtens <hauke@hauke-m.de>
2312 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2313 L:      linux-mips@linux-mips.org
2314 S:      Maintained
2315 F:      arch/mips/bcm47xx/*
2316 F:      arch/mips/include/asm/mach-bcm47xx/*
2317
2318 BROADCOM BCM5301X ARM ARCHITECTURE
2319 M:      Hauke Mehrtens <hauke@hauke-m.de>
2320 L:      linux-arm-kernel@lists.infradead.org
2321 S:      Maintained
2322 F:      arch/arm/mach-bcm/bcm_5301x.c
2323 F:      arch/arm/boot/dts/bcm5301x.dtsi
2324 F:      arch/arm/boot/dts/bcm470*
2325
2326 BROADCOM BCM63XX ARM ARCHITECTURE
2327 M:      Florian Fainelli <f.fainelli@gmail.com>
2328 L:      linux-arm-kernel@lists.infradead.org
2329 T:      git git://github.com/broadcom/arm-bcm63xx.git
2330 S:      Maintained
2331 F:      arch/arm/mach-bcm/bcm63xx.c
2332 F:      arch/arm/include/debug/bcm63xx.S
2333
2334 BROADCOM BCM63XX/BCM33XX UDC DRIVER
2335 M:      Kevin Cernekee <cernekee@gmail.com>
2336 L:      linux-usb@vger.kernel.org
2337 S:      Maintained
2338 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
2339
2340 BROADCOM BCM7XXX ARM ARCHITECTURE
2341 M:      Brian Norris <computersforpeace@gmail.com>
2342 M:      Gregory Fong <gregory.0xf0@gmail.com>
2343 M:      Florian Fainelli <f.fainelli@gmail.com>
2344 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2345 T:      git git://github.com/broadcom/stblinux.git
2346 S:      Maintained
2347 F:      arch/arm/mach-bcm/*brcmstb*
2348 F:      arch/arm/boot/dts/bcm7*.dts*
2349 F:      drivers/bus/brcmstb_gisb.c
2350 N:      brcmstb
2351
2352 BROADCOM BMIPS MIPS ARCHITECTURE
2353 M:      Kevin Cernekee <cernekee@gmail.com>
2354 M:      Florian Fainelli <f.fainelli@gmail.com>
2355 L:      linux-mips@linux-mips.org
2356 T:      git git://github.com/broadcom/stblinux.git
2357 S:      Maintained
2358 F:      arch/mips/bmips/*
2359 F:      arch/mips/include/asm/mach-bmips/*
2360 F:      arch/mips/kernel/*bmips*
2361 F:      arch/mips/boot/dts/brcm/bcm*.dts*
2362 F:      drivers/irqchip/irq-bcm7*
2363 F:      drivers/irqchip/irq-brcmstb*
2364
2365 BROADCOM TG3 GIGABIT ETHERNET DRIVER
2366 M:      Prashant Sreedharan <prashant@broadcom.com>
2367 M:      Michael Chan <mchan@broadcom.com>
2368 L:      netdev@vger.kernel.org
2369 S:      Supported
2370 F:      drivers/net/ethernet/broadcom/tg3.*
2371
2372 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2373 M:      Brett Rudley <brudley@broadcom.com>
2374 M:      Arend van Spriel <arend@broadcom.com>
2375 M:      Franky (Zhenhui) Lin <frankyl@broadcom.com>
2376 M:      Hante Meuleman <meuleman@broadcom.com>
2377 L:      linux-wireless@vger.kernel.org
2378 L:      brcm80211-dev-list@broadcom.com
2379 S:      Supported
2380 F:      drivers/net/wireless/brcm80211/
2381
2382 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
2383 M:      QLogic-Storage-Upstream@qlogic.com
2384 L:      linux-scsi@vger.kernel.org
2385 S:      Supported
2386 F:      drivers/scsi/bnx2fc/
2387
2388 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
2389 M:      QLogic-Storage-Upstream@qlogic.com
2390 L:      linux-scsi@vger.kernel.org
2391 S:      Supported
2392 F:      drivers/scsi/bnx2i/
2393
2394 BROADCOM IPROC ARM ARCHITECTURE
2395 M:      Ray Jui <rjui@broadcom.com>
2396 M:      Scott Branden <sbranden@broadcom.com>
2397 M:      Jon Mason <jonmason@broadcom.com>
2398 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2399 L:      bcm-kernel-feedback-list@broadcom.com
2400 T:      git git://github.com/broadcom/cygnus-linux.git
2401 S:      Maintained
2402 N:      iproc
2403 N:      cygnus
2404 N:      nsp
2405 N:      bcm9113*
2406 N:      bcm9583*
2407 N:      bcm9585*
2408 N:      bcm9586*
2409 N:      bcm988312
2410 N:      bcm113*
2411 N:      bcm583*
2412 N:      bcm585*
2413 N:      bcm586*
2414 N:      bcm88312
2415
2416 BROADCOM BRCMSTB GPIO DRIVER
2417 M:      Gregory Fong <gregory.0xf0@gmail.com>
2418 L:      bcm-kernel-feedback-list@broadcom.com>
2419 S:      Supported
2420 F:      drivers/gpio/gpio-brcmstb.c
2421 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
2422
2423 BROADCOM KONA GPIO DRIVER
2424 M:      Ray Jui <rjui@broadcom.com>
2425 L:      bcm-kernel-feedback-list@broadcom.com
2426 S:      Supported
2427 F:      drivers/gpio/gpio-bcm-kona.c
2428 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
2429
2430 BROADCOM NVRAM DRIVER
2431 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2432 L:      linux-mips@linux-mips.org
2433 S:      Maintained
2434 F:      drivers/firmware/broadcom/*
2435
2436 BROADCOM STB NAND FLASH DRIVER
2437 M:      Brian Norris <computersforpeace@gmail.com>
2438 L:      linux-mtd@lists.infradead.org
2439 S:      Maintained
2440 F:      drivers/mtd/nand/brcmnand/
2441
2442 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2443 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2444 L:      linux-wireless@vger.kernel.org
2445 S:      Maintained
2446 F:      drivers/bcma/
2447 F:      include/linux/bcma/
2448
2449 BROADCOM SYSTEMPORT ETHERNET DRIVER
2450 M:      Florian Fainelli <f.fainelli@gmail.com>
2451 L:      netdev@vger.kernel.org
2452 S:      Supported
2453 F:      drivers/net/ethernet/broadcom/bcmsysport.*
2454
2455 BROCADE BFA FC SCSI DRIVER
2456 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
2457 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
2458 L:      linux-scsi@vger.kernel.org
2459 S:      Supported
2460 F:      drivers/scsi/bfa/
2461
2462 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
2463 M:      Rasesh Mody <rasesh.mody@qlogic.com>
2464 L:      netdev@vger.kernel.org
2465 S:      Supported
2466 F:      drivers/net/ethernet/brocade/bna/
2467
2468 BSG (block layer generic sg v4 driver)
2469 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
2470 L:      linux-scsi@vger.kernel.org
2471 S:      Supported
2472 F:      block/bsg.c
2473 F:      include/linux/bsg.h
2474 F:      include/uapi/linux/bsg.h
2475
2476 BT87X AUDIO DRIVER
2477 M:      Clemens Ladisch <clemens@ladisch.de>
2478 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2479 T:      git git://git.alsa-project.org/alsa-kernel.git
2480 S:      Maintained
2481 F:      Documentation/sound/alsa/Bt87x.txt
2482 F:      sound/pci/bt87x.c
2483
2484 BT8XXGPIO DRIVER
2485 M:      Michael Buesch <m@bues.ch>
2486 W:      http://bu3sch.de/btgpio.php
2487 S:      Maintained
2488 F:      drivers/gpio/gpio-bt8xx.c
2489
2490 BTRFS FILE SYSTEM
2491 M:      Chris Mason <clm@fb.com>
2492 M:      Josef Bacik <jbacik@fb.com>
2493 M:      David Sterba <dsterba@suse.com>
2494 L:      linux-btrfs@vger.kernel.org
2495 W:      http://btrfs.wiki.kernel.org/
2496 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
2497 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
2498 S:      Maintained
2499 F:      Documentation/filesystems/btrfs.txt
2500 F:      fs/btrfs/
2501
2502 BTTV VIDEO4LINUX DRIVER
2503 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2504 L:      linux-media@vger.kernel.org
2505 W:      http://linuxtv.org
2506 T:      git git://linuxtv.org/media_tree.git
2507 S:      Odd fixes
2508 F:      Documentation/video4linux/bttv/
2509 F:      drivers/media/pci/bt8xx/bttv*
2510
2511 BUSLOGIC SCSI DRIVER
2512 M:      Khalid Aziz <khalid@gonehiking.org>
2513 L:      linux-scsi@vger.kernel.org
2514 S:      Maintained
2515 F:      drivers/scsi/BusLogic.*
2516 F:      drivers/scsi/FlashPoint.*
2517
2518 C-MEDIA CMI8788 DRIVER
2519 M:      Clemens Ladisch <clemens@ladisch.de>
2520 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2521 T:      git git://git.alsa-project.org/alsa-kernel.git
2522 S:      Maintained
2523 F:      sound/pci/oxygen/
2524
2525 C6X ARCHITECTURE
2526 M:      Mark Salter <msalter@redhat.com>
2527 M:      Aurelien Jacquiot <a-jacquiot@ti.com>
2528 L:      linux-c6x-dev@linux-c6x.org
2529 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
2530 S:      Maintained
2531 F:      arch/c6x/
2532
2533 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
2534 M:      David Howells <dhowells@redhat.com>
2535 L:      linux-cachefs@redhat.com
2536 S:      Supported
2537 F:      Documentation/filesystems/caching/cachefiles.txt
2538 F:      fs/cachefiles/
2539
2540 CADET FM/AM RADIO RECEIVER DRIVER
2541 M:      Hans Verkuil <hverkuil@xs4all.nl>
2542 L:      linux-media@vger.kernel.org
2543 T:      git git://linuxtv.org/media_tree.git
2544 W:      http://linuxtv.org
2545 S:      Maintained
2546 F:      drivers/media/radio/radio-cadet*
2547
2548 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
2549 M:      Jonathan Corbet <corbet@lwn.net>
2550 L:      linux-media@vger.kernel.org
2551 T:      git git://linuxtv.org/media_tree.git
2552 S:      Maintained
2553 F:      Documentation/video4linux/cafe_ccic
2554 F:      drivers/media/platform/marvell-ccic/
2555
2556 CAIF NETWORK LAYER
2557 M:      Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
2558 L:      netdev@vger.kernel.org
2559 S:      Supported
2560 F:      Documentation/networking/caif/
2561 F:      drivers/net/caif/
2562 F:      include/uapi/linux/caif/
2563 F:      include/net/caif/
2564 F:      net/caif/
2565
2566 CALGARY x86-64 IOMMU
2567 M:      Muli Ben-Yehuda <muli@il.ibm.com>
2568 M:      "Jon D. Mason" <jdmason@kudzu.us>
2569 L:      discuss@x86-64.org
2570 S:      Maintained
2571 F:      arch/x86/kernel/pci-calgary_64.c
2572 F:      arch/x86/kernel/tce_64.c
2573 F:      arch/x86/include/asm/calgary.h
2574 F:      arch/x86/include/asm/tce.h
2575
2576 CAN NETWORK LAYER
2577 M:      Oliver Hartkopp <socketcan@hartkopp.net>
2578 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2579 L:      linux-can@vger.kernel.org
2580 W:      https://github.com/linux-can
2581 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2582 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2583 S:      Maintained
2584 F:      Documentation/networking/can.txt
2585 F:      net/can/
2586 F:      include/linux/can/core.h
2587 F:      include/uapi/linux/can.h
2588 F:      include/uapi/linux/can/bcm.h
2589 F:      include/uapi/linux/can/raw.h
2590 F:      include/uapi/linux/can/gw.h
2591
2592 CAN NETWORK DRIVERS
2593 M:      Wolfgang Grandegger <wg@grandegger.com>
2594 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2595 L:      linux-can@vger.kernel.org
2596 W:      https://github.com/linux-can
2597 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2598 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2599 S:      Maintained
2600 F:      drivers/net/can/
2601 F:      include/linux/can/dev.h
2602 F:      include/linux/can/platform/
2603 F:      include/uapi/linux/can/error.h
2604 F:      include/uapi/linux/can/netlink.h
2605
2606 CAPABILITIES
2607 M:      Serge Hallyn <serge.hallyn@canonical.com>
2608 L:      linux-security-module@vger.kernel.org
2609 S:      Supported
2610 F:      include/linux/capability.h
2611 F:      include/uapi/linux/capability.h
2612 F:      security/commoncap.c
2613 F:      kernel/capability.c
2614
2615 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
2616 M:      Kevin Tsai <ktsai@capellamicro.com>
2617 S:      Maintained
2618 F:      drivers/iio/light/cm*
2619 F:      Documentation/devicetree/bindings/i2c/trivial-devices.txt
2620
2621 CAVIUM LIQUIDIO NETWORK DRIVER
2622 M:     Derek Chickles <derek.chickles@caviumnetworks.com>
2623 M:     Satanand Burla <satananda.burla@caviumnetworks.com>
2624 M:     Felix Manlunas <felix.manlunas@caviumnetworks.com>
2625 M:     Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com>
2626 L:     netdev@vger.kernel.org
2627 W:     http://www.cavium.com
2628 S:     Supported
2629 F:     drivers/net/ethernet/cavium/liquidio/
2630
2631 CC2520 IEEE-802.15.4 RADIO DRIVER
2632 M:      Varka Bhadram <varkabhadram@gmail.com>
2633 L:      linux-wpan@vger.kernel.org
2634 S:      Maintained
2635 F:      drivers/net/ieee802154/cc2520.c
2636 F:      include/linux/spi/cc2520.h
2637 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
2638
2639 CELL BROADBAND ENGINE ARCHITECTURE
2640 M:      Arnd Bergmann <arnd@arndb.de>
2641 L:      linuxppc-dev@lists.ozlabs.org
2642 W:      http://www.ibm.com/developerworks/power/cell/
2643 S:      Supported
2644 F:      arch/powerpc/include/asm/cell*.h
2645 F:      arch/powerpc/include/asm/spu*.h
2646 F:      arch/powerpc/include/uapi/asm/spu*.h
2647 F:      arch/powerpc/oprofile/*cell*
2648 F:      arch/powerpc/platforms/cell/
2649
2650 CEPH COMMON CODE (LIBCEPH)
2651 M:      Ilya Dryomov <idryomov@gmail.com>
2652 M:      "Yan, Zheng" <zyan@redhat.com>
2653 M:      Sage Weil <sage@redhat.com>
2654 L:      ceph-devel@vger.kernel.org
2655 W:      http://ceph.com/
2656 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2657 T:      git git://github.com/ceph/ceph-client.git
2658 S:      Supported
2659 F:      net/ceph/
2660 F:      include/linux/ceph/
2661 F:      include/linux/crush/
2662
2663 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
2664 M:      "Yan, Zheng" <zyan@redhat.com>
2665 M:      Sage Weil <sage@redhat.com>
2666 M:      Ilya Dryomov <idryomov@gmail.com>
2667 L:      ceph-devel@vger.kernel.org
2668 W:      http://ceph.com/
2669 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2670 T:      git git://github.com/ceph/ceph-client.git
2671 S:      Supported
2672 F:      Documentation/filesystems/ceph.txt
2673 F:      fs/ceph/
2674
2675 CERTIFICATE HANDLING:
2676 M:      David Howells <dhowells@redhat.com>
2677 M:      David Woodhouse <dwmw2@infradead.org>
2678 L:      keyrings@linux-nfs.org
2679 S:      Maintained
2680 F:      Documentation/module-signing.txt
2681 F:      certs/
2682 F:      scripts/extract-cert.c
2683
2684 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
2685 L:      linux-usb@vger.kernel.org
2686 S:      Orphan
2687 F:      Documentation/usb/WUSB-Design-overview.txt
2688 F:      Documentation/usb/wusb-cbaf
2689 F:      drivers/usb/host/hwa-hc.c
2690 F:      drivers/usb/host/whci/
2691 F:      drivers/usb/wusbcore/
2692 F:      include/linux/usb/wusb*
2693
2694 CFAG12864B LCD DRIVER
2695 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2696 W:      http://miguelojeda.es/auxdisplay.htm
2697 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2698 S:      Maintained
2699 F:      drivers/auxdisplay/cfag12864b.c
2700 F:      include/linux/cfag12864b.h
2701
2702 CFAG12864BFB LCD FRAMEBUFFER DRIVER
2703 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2704 W:      http://miguelojeda.es/auxdisplay.htm
2705 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2706 S:      Maintained
2707 F:      drivers/auxdisplay/cfag12864bfb.c
2708 F:      include/linux/cfag12864b.h
2709
2710 CFG80211 and NL80211
2711 M:      Johannes Berg <johannes@sipsolutions.net>
2712 L:      linux-wireless@vger.kernel.org
2713 W:      http://wireless.kernel.org/
2714 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2715 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
2716 S:      Maintained
2717 F:      include/uapi/linux/nl80211.h
2718 F:      include/net/cfg80211.h
2719 F:      net/wireless/*
2720 X:      net/wireless/wext*
2721
2722 CHAR and MISC DRIVERS
2723 M:      Arnd Bergmann <arnd@arndb.de>
2724 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2725 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
2726 S:      Supported
2727 F:      drivers/char/*
2728 F:      drivers/misc/*
2729 F:      include/linux/miscdevice.h
2730
2731 CHECKPATCH
2732 M:      Andy Whitcroft <apw@canonical.com>
2733 M:      Joe Perches <joe@perches.com>
2734 S:      Maintained
2735 F:      scripts/checkpatch.pl
2736
2737 CHINESE DOCUMENTATION
2738 M:      Harry Wei <harryxiyou@gmail.com>
2739 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
2740 L:      linux-kernel@zh-kernel.org (moderated for non-subscribers)
2741 S:      Maintained
2742 F:      Documentation/zh_CN/
2743
2744 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
2745 M:      Peter Chen <Peter.Chen@freescale.com>
2746 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
2747 L:      linux-usb@vger.kernel.org
2748 S:      Maintained
2749 F:      drivers/usb/chipidea/
2750
2751 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
2752 M:      Hans de Goede <hdegoede@redhat.com>
2753 L:      linux-input@vger.kernel.org
2754 S:      Maintained
2755 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
2756 F:      drivers/input/touchscreen/chipone_icn8318.c
2757
2758 CHROME HARDWARE PLATFORM SUPPORT
2759 M:      Olof Johansson <olof@lixom.net>
2760 S:      Maintained
2761 F:      drivers/platform/chrome/
2762
2763 CISCO VIC ETHERNET NIC DRIVER
2764 M:      Christian Benvenuti <benve@cisco.com>
2765 M:      Sujith Sankar <ssujith@cisco.com>
2766 M:      Govindarajulu Varadarajan <_govind@gmx.com>
2767 M:      Neel Patel <neepatel@cisco.com>
2768 S:      Supported
2769 F:      drivers/net/ethernet/cisco/enic/
2770
2771 CISCO VIC LOW LATENCY NIC DRIVER
2772 M:      Christian Benvenuti <benve@cisco.com>
2773 M:      Dave Goodell <dgoodell@cisco.com>
2774 S:      Supported
2775 F:      drivers/infiniband/hw/usnic/
2776
2777 CIRRUS LOGIC EP93XX ETHERNET DRIVER
2778 M:      Hartley Sweeten <hsweeten@visionengravers.com>
2779 L:      netdev@vger.kernel.org
2780 S:      Maintained
2781 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
2782
2783 CIRRUS LOGIC AUDIO CODEC DRIVERS
2784 M:      Brian Austin <brian.austin@cirrus.com>
2785 M:      Paul Handrigan <Paul.Handrigan@cirrus.com>
2786 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2787 S:      Maintained
2788 F:      sound/soc/codecs/cs*
2789
2790 CLEANCACHE API
2791 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2792 L:      linux-kernel@vger.kernel.org
2793 S:      Maintained
2794 F:      mm/cleancache.c
2795 F:      include/linux/cleancache.h
2796
2797 CLK API
2798 M:      Russell King <linux@arm.linux.org.uk>
2799 L:      linux-clk@vger.kernel.org
2800 S:      Maintained
2801 F:      include/linux/clk.h
2802
2803 CLOCKSOURCE, CLOCKEVENT DRIVERS
2804 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2805 M:      Thomas Gleixner <tglx@linutronix.de>
2806 L:      linux-kernel@vger.kernel.org
2807 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
2808 S:      Supported
2809 F:      drivers/clocksource
2810
2811 CISCO FCOE HBA DRIVER
2812 M:      Hiral Patel <hiralpat@cisco.com>
2813 M:      Suma Ramars <sramars@cisco.com>
2814 M:      Brian Uchino <buchino@cisco.com>
2815 L:      linux-scsi@vger.kernel.org
2816 S:      Supported
2817 F:      drivers/scsi/fnic/
2818
2819 CISCO SCSI HBA DRIVER
2820 M:      Narsimhulu Musini <nmusini@cisco.com>
2821 M:      Sesidhar Baddela <sebaddel@cisco.com>
2822 L:      linux-scsi@vger.kernel.org
2823 S:      Supported
2824 F:      drivers/scsi/snic/
2825
2826 CMPC ACPI DRIVER
2827 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2828 M:      Daniel Oliveira Nascimento <don@syst.com.br>
2829 L:      platform-driver-x86@vger.kernel.org
2830 S:      Supported
2831 F:      drivers/platform/x86/classmate-laptop.c
2832
2833 COBALT MEDIA DRIVER
2834 M:      Hans Verkuil <hans.verkuil@cisco.com>
2835 L:      linux-media@vger.kernel.org
2836 T:      git git://linuxtv.org/media_tree.git
2837 W:      http://linuxtv.org
2838 S:      Supported
2839 F:      drivers/media/pci/cobalt/
2840
2841 COCCINELLE/Semantic Patches (SmPL)
2842 M:      Julia Lawall <Julia.Lawall@lip6.fr>
2843 M:      Gilles Muller <Gilles.Muller@lip6.fr>
2844 M:      Nicolas Palix <nicolas.palix@imag.fr>
2845 M:      Michal Marek <mmarek@suse.com>
2846 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
2847 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
2848 W:      http://coccinelle.lip6.fr/
2849 S:      Supported
2850 F:      Documentation/coccinelle.txt
2851 F:      scripts/coccinelle/
2852 F:      scripts/coccicheck
2853
2854 CODA FILE SYSTEM
2855 M:      Jan Harkes <jaharkes@cs.cmu.edu>
2856 M:      coda@cs.cmu.edu
2857 L:      codalist@coda.cs.cmu.edu
2858 W:      http://www.coda.cs.cmu.edu/
2859 S:      Maintained
2860 F:      Documentation/filesystems/coda.txt
2861 F:      fs/coda/
2862 F:      include/linux/coda*.h
2863 F:      include/uapi/linux/coda*.h
2864
2865 CODA V4L2 MEM2MEM DRIVER
2866 M:      Philipp Zabel <p.zabel@pengutronix.de>
2867 L:      linux-media@vger.kernel.org
2868 S:      Maintained
2869 F:      Documentation/devicetree/bindings/media/coda.txt
2870 F:      drivers/media/platform/coda/
2871
2872 COMMON CLK FRAMEWORK
2873 M:      Michael Turquette <mturquette@baylibre.com>
2874 M:      Stephen Boyd <sboyd@codeaurora.org>
2875 L:      linux-clk@vger.kernel.org
2876 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
2877 S:      Maintained
2878 F:      drivers/clk/
2879 X:      drivers/clk/clkdev.c
2880 F:      include/linux/clk-pr*
2881 F:      include/linux/clk/
2882
2883 COMMON INTERNET FILE SYSTEM (CIFS)
2884 M:      Steve French <sfrench@samba.org>
2885 L:      linux-cifs@vger.kernel.org
2886 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
2887 W:      http://linux-cifs.samba.org/
2888 T:      git git://git.samba.org/sfrench/cifs-2.6.git
2889 S:      Supported
2890 F:      Documentation/filesystems/cifs/
2891 F:      fs/cifs/
2892
2893 COMPACTPCI HOTPLUG CORE
2894 M:      Scott Murray <scott@spiteful.org>
2895 L:      linux-pci@vger.kernel.org
2896 S:      Maintained
2897 F:      drivers/pci/hotplug/cpci_hotplug*
2898
2899 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
2900 M:      Scott Murray <scott@spiteful.org>
2901 L:      linux-pci@vger.kernel.org
2902 S:      Maintained
2903 F:      drivers/pci/hotplug/cpcihp_zt5550.*
2904
2905 COMPACTPCI HOTPLUG GENERIC DRIVER
2906 M:      Scott Murray <scott@spiteful.org>
2907 L:      linux-pci@vger.kernel.org
2908 S:      Maintained
2909 F:      drivers/pci/hotplug/cpcihp_generic.c
2910
2911 COMPAL LAPTOP SUPPORT
2912 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
2913 L:      platform-driver-x86@vger.kernel.org
2914 S:      Maintained
2915 F:      drivers/platform/x86/compal-laptop.c
2916
2917 CONEXANT ACCESSRUNNER USB DRIVER
2918 M:      Simon Arlott <cxacru@fire.lp0.eu>
2919 L:      accessrunner-general@lists.sourceforge.net
2920 W:      http://accessrunner.sourceforge.net/
2921 S:      Maintained
2922 F:      drivers/usb/atm/cxacru.c
2923
2924 CONFIGFS
2925 M:      Joel Becker <jlbec@evilplan.org>
2926 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
2927 S:      Supported
2928 F:      fs/configfs/
2929 F:      include/linux/configfs.h
2930
2931 CONNECTOR
2932 M:      Evgeniy Polyakov <zbr@ioremap.net>
2933 L:      netdev@vger.kernel.org
2934 S:      Maintained
2935 F:      drivers/connector/
2936
2937 CONTROL GROUP (CGROUP)
2938 M:      Tejun Heo <tj@kernel.org>
2939 M:      Li Zefan <lizefan@huawei.com>
2940 M:      Johannes Weiner <hannes@cmpxchg.org>
2941 L:      cgroups@vger.kernel.org
2942 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
2943 S:      Maintained
2944 F:      Documentation/cgroups/
2945 F:      include/linux/cgroup*
2946 F:      kernel/cgroup*
2947
2948 CONTROL GROUP - CPUSET
2949 M:      Li Zefan <lizefan@huawei.com>
2950 L:      cgroups@vger.kernel.org
2951 W:      http://www.bullopensource.org/cpuset/
2952 W:      http://oss.sgi.com/projects/cpusets/
2953 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
2954 S:      Maintained
2955 F:      Documentation/cgroups/cpusets.txt
2956 F:      include/linux/cpuset.h
2957 F:      kernel/cpuset.c
2958
2959 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
2960 M:      Johannes Weiner <hannes@cmpxchg.org>
2961 M:      Michal Hocko <mhocko@kernel.org>
2962 L:      cgroups@vger.kernel.org
2963 L:      linux-mm@kvack.org
2964 S:      Maintained
2965 F:      mm/memcontrol.c
2966 F:      mm/swap_cgroup.c
2967
2968 CORETEMP HARDWARE MONITORING DRIVER
2969 M:      Fenghua Yu <fenghua.yu@intel.com>
2970 L:      lm-sensors@lm-sensors.org
2971 S:      Maintained
2972 F:      Documentation/hwmon/coretemp
2973 F:      drivers/hwmon/coretemp.c
2974
2975 COSA/SRP SYNC SERIAL DRIVER
2976 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
2977 W:      http://www.fi.muni.cz/~kas/cosa/
2978 S:      Maintained
2979 F:      drivers/net/wan/cosa*
2980
2981 CPMAC ETHERNET DRIVER
2982 M:      Florian Fainelli <florian@openwrt.org>
2983 L:      netdev@vger.kernel.org
2984 S:      Maintained
2985 F:      drivers/net/ethernet/ti/cpmac.c
2986
2987 CPU FREQUENCY DRIVERS
2988 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
2989 M:      Viresh Kumar <viresh.kumar@linaro.org>
2990 L:      linux-pm@vger.kernel.org
2991 S:      Maintained
2992 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2993 T:      git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
2994 F:      drivers/cpufreq/
2995 F:      include/linux/cpufreq.h
2996
2997 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
2998 M:      Viresh Kumar <viresh.kumar@linaro.org>
2999 M:      Sudeep Holla <sudeep.holla@arm.com>
3000 L:      linux-pm@vger.kernel.org
3001 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
3002 S:      Maintained
3003 F:      drivers/cpufreq/arm_big_little.h
3004 F:      drivers/cpufreq/arm_big_little.c
3005 F:      drivers/cpufreq/arm_big_little_dt.c
3006
3007 CPUIDLE DRIVER - ARM BIG LITTLE
3008 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
3009 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3010 L:      linux-pm@vger.kernel.org
3011 L:      linux-arm-kernel@lists.infradead.org
3012 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3013 S:      Maintained
3014 F:      drivers/cpuidle/cpuidle-big_little.c
3015
3016 CPUIDLE DRIVER - ARM EXYNOS
3017 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
3018 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3019 M:      Kukjin Kim <kgene@kernel.org>
3020 L:      linux-pm@vger.kernel.org
3021 L:      linux-samsung-soc@vger.kernel.org
3022 S:      Supported
3023 F:      drivers/cpuidle/cpuidle-exynos.c
3024 F:      arch/arm/mach-exynos/pm.c
3025
3026 CPUIDLE DRIVERS
3027 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
3028 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3029 L:      linux-pm@vger.kernel.org
3030 S:      Maintained
3031 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3032 F:      drivers/cpuidle/*
3033 F:      include/linux/cpuidle.h
3034
3035 CPUID/MSR DRIVER
3036 M:      "H. Peter Anvin" <hpa@zytor.com>
3037 S:      Maintained
3038 F:      arch/x86/kernel/cpuid.c
3039 F:      arch/x86/kernel/msr.c
3040
3041 CPU POWER MONITORING SUBSYSTEM
3042 M:      Thomas Renninger <trenn@suse.com>
3043 L:      linux-pm@vger.kernel.org
3044 S:      Maintained
3045 F:      tools/power/cpupower/
3046
3047 CRAMFS FILESYSTEM
3048 W:      http://sourceforge.net/projects/cramfs/
3049 S:      Orphan / Obsolete
3050 F:      Documentation/filesystems/cramfs.txt
3051 F:      fs/cramfs/
3052
3053 CRIS PORT
3054 M:      Mikael Starvik <starvik@axis.com>
3055 M:      Jesper Nilsson <jesper.nilsson@axis.com>
3056 L:      linux-cris-kernel@axis.com
3057 W:      http://developer.axis.com
3058 S:      Maintained
3059 F:      arch/cris/
3060 F:      drivers/tty/serial/crisv10.*
3061
3062 CRYPTO API
3063 M:      Herbert Xu <herbert@gondor.apana.org.au>
3064 M:      "David S. Miller" <davem@davemloft.net>
3065 L:      linux-crypto@vger.kernel.org
3066 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
3067 S:      Maintained
3068 F:      Documentation/crypto/
3069 F:      Documentation/DocBook/crypto-API.tmpl
3070 F:      arch/*/crypto/
3071 F:      crypto/
3072 F:      drivers/crypto/
3073 F:      include/crypto/
3074
3075 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
3076 M:      Neil Horman <nhorman@tuxdriver.com>
3077 L:      linux-crypto@vger.kernel.org
3078 S:      Maintained
3079 F:      crypto/ansi_cprng.c
3080 F:      crypto/rng.c
3081
3082 CS5535 Audio ALSA driver
3083 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
3084 S:      Maintained
3085 F:      sound/pci/cs5535audio/
3086
3087 CW1200 WLAN driver
3088 M:      Solomon Peachy <pizza@shaftnet.org>
3089 S:      Maintained
3090 F:      drivers/net/wireless/cw1200/
3091
3092 CX18 VIDEO4LINUX DRIVER
3093 M:      Andy Walls <awalls@md.metrocast.net>
3094 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
3095 L:      linux-media@vger.kernel.org
3096 T:      git git://linuxtv.org/media_tree.git
3097 W:      http://linuxtv.org
3098 W:      http://www.ivtvdriver.org/index.php/Cx18
3099 S:      Maintained
3100 F:      Documentation/video4linux/cx18.txt
3101 F:      drivers/media/pci/cx18/
3102 F:      include/uapi/linux/ivtv*
3103
3104 CX2341X MPEG ENCODER HELPER MODULE
3105 M:      Hans Verkuil <hverkuil@xs4all.nl>
3106 L:      linux-media@vger.kernel.org
3107 T:      git git://linuxtv.org/media_tree.git
3108 W:      http://linuxtv.org
3109 S:      Maintained
3110 F:      drivers/media/common/cx2341x*
3111 F:      include/media/cx2341x*
3112
3113 CX24120 MEDIA DRIVER
3114 M:      Jemma Denson <jdenson@gmail.com>
3115 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
3116 L:      linux-media@vger.kernel.org
3117 W:      http://linuxtv.org/
3118 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3119 S:      Maintained
3120 F:      drivers/media/dvb-frontends/cx24120*
3121
3122 CX88 VIDEO4LINUX DRIVER
3123 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3124 L:      linux-media@vger.kernel.org
3125 W:      http://linuxtv.org
3126 T:      git git://linuxtv.org/media_tree.git
3127 S:      Odd fixes
3128 F:      Documentation/video4linux/cx88/
3129 F:      drivers/media/pci/cx88/
3130
3131 CXD2820R MEDIA DRIVER
3132 M:      Antti Palosaari <crope@iki.fi>
3133 L:      linux-media@vger.kernel.org
3134 W:      http://linuxtv.org/
3135 W:      http://palosaari.fi/linux/
3136 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3137 T:      git git://linuxtv.org/anttip/media_tree.git
3138 S:      Maintained
3139 F:      drivers/media/dvb-frontends/cxd2820r*
3140
3141 CXGB3 ETHERNET DRIVER (CXGB3)
3142 M:      Santosh Raspatur <santosh@chelsio.com>
3143 L:      netdev@vger.kernel.org
3144 W:      http://www.chelsio.com
3145 S:      Supported
3146 F:      drivers/net/ethernet/chelsio/cxgb3/
3147
3148 CXGB3 ISCSI DRIVER (CXGB3I)
3149 M:      Karen Xie <kxie@chelsio.com>
3150 L:      linux-scsi@vger.kernel.org
3151 W:      http://www.chelsio.com
3152 S:      Supported
3153 F:      drivers/scsi/cxgbi/cxgb3i
3154
3155 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
3156 M:      Steve Wise <swise@chelsio.com>
3157 L:      linux-rdma@vger.kernel.org
3158 W:      http://www.openfabrics.org
3159 S:      Supported
3160 F:      drivers/infiniband/hw/cxgb3/
3161
3162 CXGB4 ETHERNET DRIVER (CXGB4)
3163 M:      Hariprasad S <hariprasad@chelsio.com>
3164 L:      netdev@vger.kernel.org
3165 W:      http://www.chelsio.com
3166 S:      Supported
3167 F:      drivers/net/ethernet/chelsio/cxgb4/
3168
3169 CXGB4 ISCSI DRIVER (CXGB4I)
3170 M:      Karen Xie <kxie@chelsio.com>
3171 L:      linux-scsi@vger.kernel.org
3172 W:      http://www.chelsio.com
3173 S:      Supported
3174 F:      drivers/scsi/cxgbi/cxgb4i
3175
3176 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
3177 M:      Steve Wise <swise@chelsio.com>
3178 L:      linux-rdma@vger.kernel.org
3179 W:      http://www.openfabrics.org
3180 S:      Supported
3181 F:      drivers/infiniband/hw/cxgb4/
3182
3183 CXGB4VF ETHERNET DRIVER (CXGB4VF)
3184 M:      Casey Leedom <leedom@chelsio.com>
3185 L:      netdev@vger.kernel.org
3186 W:      http://www.chelsio.com
3187 S:      Supported
3188 F:      drivers/net/ethernet/chelsio/cxgb4vf/
3189
3190 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
3191 M:      Ian Munsie <imunsie@au1.ibm.com>
3192 M:      Michael Neuling <mikey@neuling.org>
3193 L:      linuxppc-dev@lists.ozlabs.org
3194 S:      Supported
3195 F:      drivers/misc/cxl/
3196 F:      include/misc/cxl*
3197 F:      include/uapi/misc/cxl.h
3198 F:      Documentation/powerpc/cxl.txt
3199 F:      Documentation/powerpc/cxl.txt
3200 F:      Documentation/ABI/testing/sysfs-class-cxl
3201
3202 STMMAC ETHERNET DRIVER
3203 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
3204 L:      netdev@vger.kernel.org
3205 W:      http://www.stlinux.com
3206 S:      Supported
3207 F:      drivers/net/ethernet/stmicro/stmmac/
3208
3209 CYBERPRO FB DRIVER
3210 M:      Russell King <linux@arm.linux.org.uk>
3211 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3212 W:      http://www.arm.linux.org.uk/
3213 S:      Maintained
3214 F:      drivers/video/fbdev/cyber2000fb.*
3215
3216 CYCLADES ASYNC MUX DRIVER
3217 W:      http://www.cyclades.com/
3218 S:      Orphan
3219 F:      drivers/tty/cyclades.c
3220 F:      include/linux/cyclades.h
3221 F:      include/uapi/linux/cyclades.h
3222
3223 CYCLADES PC300 DRIVER
3224 W:      http://www.cyclades.com/
3225 S:      Orphan
3226 F:      drivers/net/wan/pc300*
3227
3228 CYPRESS_FIRMWARE MEDIA DRIVER
3229 M:      Antti Palosaari <crope@iki.fi>
3230 L:      linux-media@vger.kernel.org
3231 W:      http://linuxtv.org/
3232 W:      http://palosaari.fi/linux/
3233 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3234 T:      git git://linuxtv.org/anttip/media_tree.git
3235 S:      Maintained
3236 F:      drivers/media/common/cypress_firmware*
3237
3238 CYTTSP TOUCHSCREEN DRIVER
3239 M:      Ferruh Yigit <fery@cypress.com>
3240 L:      linux-input@vger.kernel.org
3241 S:      Supported
3242 F:      drivers/input/touchscreen/cyttsp*
3243 F:      include/linux/input/cyttsp.h
3244
3245 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
3246 M:      Joshua Kinard <kumba@gentoo.org>
3247 S:      Maintained
3248 F:      drivers/rtc/rtc-ds1685.c
3249 F:      include/linux/rtc/ds1685.h
3250
3251 DAMA SLAVE for AX.25
3252 M:      Joerg Reuter <jreuter@yaina.de>
3253 W:      http://yaina.de/jreuter/
3254 W:      http://www.qsl.net/dl1bke/
3255 L:      linux-hams@vger.kernel.org
3256 S:      Maintained
3257 F:      net/ax25/af_ax25.c
3258 F:      net/ax25/ax25_dev.c
3259 F:      net/ax25/ax25_ds_*
3260 F:      net/ax25/ax25_in.c
3261 F:      net/ax25/ax25_out.c
3262 F:      net/ax25/ax25_timer.c
3263 F:      net/ax25/sysctl_net_ax25.c
3264
3265 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
3266 L:      netdev@vger.kernel.org
3267 S:      Orphan
3268 F:      Documentation/networking/dmfe.txt
3269 F:      drivers/net/ethernet/dec/tulip/dmfe.c
3270
3271 DC390/AM53C974 SCSI driver
3272 M:      Hannes Reinecke <hare@suse.com>
3273 L:      linux-scsi@vger.kernel.org
3274 S:      Maintained
3275 F:      drivers/scsi/am53c974.c
3276
3277 DC395x SCSI driver
3278 M:      Oliver Neukum <oliver@neukum.org>
3279 M:      Ali Akcaagac <aliakc@web.de>
3280 M:      Jamie Lenehan <lenehan@twibble.org>
3281 L:      dc395x@twibble.org
3282 W:      http://twibble.org/dist/dc395x/
3283 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
3284 S:      Maintained
3285 F:      Documentation/scsi/dc395x.txt
3286 F:      drivers/scsi/dc395x.*
3287
3288 DCCP PROTOCOL
3289 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
3290 L:      dccp@vger.kernel.org
3291 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
3292 S:      Maintained
3293 F:      include/linux/dccp.h
3294 F:      include/uapi/linux/dccp.h
3295 F:      include/linux/tfrc.h
3296 F:      net/dccp/
3297
3298 DECnet NETWORK LAYER
3299 W:      http://linux-decnet.sourceforge.net
3300 L:      linux-decnet-user@lists.sourceforge.net
3301 S:      Orphan
3302 F:      Documentation/networking/decnet.txt
3303 F:      net/decnet/
3304
3305 DECSTATION PLATFORM SUPPORT
3306 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3307 L:      linux-mips@linux-mips.org
3308 W:      http://www.linux-mips.org/wiki/DECstation
3309 S:      Maintained
3310 F:      arch/mips/dec/
3311 F:      arch/mips/include/asm/dec/
3312 F:      arch/mips/include/asm/mach-dec/
3313
3314 DEFXX FDDI NETWORK DRIVER
3315 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3316 S:      Maintained
3317 F:      drivers/net/fddi/defxx.*
3318
3319 DELL LAPTOP DRIVER
3320 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3321 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3322 L:      platform-driver-x86@vger.kernel.org
3323 S:      Maintained
3324 F:      drivers/platform/x86/dell-laptop.c
3325
3326 DELL LAPTOP RBTN DRIVER
3327 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3328 S:      Maintained
3329 F:      drivers/platform/x86/dell-rbtn.*
3330
3331 DELL LAPTOP FREEFALL DRIVER
3332 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3333 S:      Maintained
3334 F:      drivers/platform/x86/dell-smo8800.c
3335
3336 DELL LAPTOP SMM DRIVER
3337 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3338 S:      Maintained
3339 F:      drivers/hwmon/dell-smm-hwmon.c
3340 F:      include/uapi/linux/i8k.h
3341
3342 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
3343 M:      Doug Warzecha <Douglas_Warzecha@dell.com>
3344 S:      Maintained
3345 F:      Documentation/dcdbas.txt
3346 F:      drivers/firmware/dcdbas.*
3347
3348 DELL WMI EXTRAS DRIVER
3349 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3350 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3351 S:      Maintained
3352 F:      drivers/platform/x86/dell-wmi.c
3353
3354 DESIGNWARE USB2 DRD IP DRIVER
3355 M:      John Youn <johnyoun@synopsys.com>
3356 L:      linux-usb@vger.kernel.org
3357 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3358 S:      Maintained
3359 F:      drivers/usb/dwc2/
3360
3361 DESIGNWARE USB3 DRD IP DRIVER
3362 M:      Felipe Balbi <balbi@ti.com>
3363 L:      linux-usb@vger.kernel.org
3364 L:      linux-omap@vger.kernel.org
3365 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3366 S:      Maintained
3367 F:      drivers/usb/dwc3/
3368
3369 DEVICE COREDUMP (DEV_COREDUMP)
3370 M:      Johannes Berg <johannes@sipsolutions.net>
3371 L:      linux-kernel@vger.kernel.org
3372 S:      Maintained
3373 F:      drivers/base/devcoredump.c
3374 F:      include/linux/devcoredump.h
3375
3376 DEVICE FREQUENCY (DEVFREQ)
3377 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
3378 M:      Kyungmin Park <kyungmin.park@samsung.com>
3379 L:      linux-pm@vger.kernel.org
3380 S:      Maintained
3381 F:      drivers/devfreq/
3382
3383 DEVICE NUMBER REGISTRY
3384 M:      Torben Mathiasen <device@lanana.org>
3385 W:      http://lanana.org/docs/device-list/index.html
3386 S:      Maintained
3387
3388 DEVICE-MAPPER  (LVM)
3389 M:      Alasdair Kergon <agk@redhat.com>
3390 M:      Mike Snitzer <snitzer@redhat.com>
3391 M:      dm-devel@redhat.com
3392 L:      dm-devel@redhat.com
3393 W:      http://sources.redhat.com/dm
3394 Q:      http://patchwork.kernel.org/project/dm-devel/list/
3395 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
3396 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
3397 S:      Maintained
3398 F:      Documentation/device-mapper/
3399 F:      drivers/md/dm*
3400 F:      drivers/md/persistent-data/
3401 F:      include/linux/device-mapper.h
3402 F:      include/linux/dm-*.h
3403 F:      include/uapi/linux/dm-*.h
3404
3405 DIALOG SEMICONDUCTOR DRIVERS
3406 M:      Support Opensource <support.opensource@diasemi.com>
3407 W:      http://www.dialog-semiconductor.com/products
3408 S:      Supported
3409 F:      Documentation/hwmon/da90??
3410 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
3411 F:      drivers/gpio/gpio-da90??.c
3412 F:      drivers/hwmon/da90??-hwmon.c
3413 F:      drivers/iio/adc/da91??-*.c
3414 F:      drivers/input/misc/da90??_onkey.c
3415 F:      drivers/input/touchscreen/da9052_tsi.c
3416 F:      drivers/leds/leds-da90??.c
3417 F:      drivers/mfd/da903x.c
3418 F:      drivers/mfd/da90??-*.c
3419 F:      drivers/mfd/da91??-*.c
3420 F:      drivers/power/da9052-battery.c
3421 F:      drivers/power/da91??-*.c
3422 F:      drivers/regulator/da903x.c
3423 F:      drivers/regulator/da9???-regulator.[ch]
3424 F:      drivers/rtc/rtc-da90??.c
3425 F:      drivers/video/backlight/da90??_bl.c
3426 F:      drivers/watchdog/da90??_wdt.c
3427 F:      include/linux/mfd/da903x.h
3428 F:      include/linux/mfd/da9052/
3429 F:      include/linux/mfd/da9055/
3430 F:      include/linux/mfd/da9063/
3431 F:      include/linux/mfd/da9150/
3432 F:      include/sound/da[79]*.h
3433 F:      sound/soc/codecs/da[79]*.[ch]
3434
3435 DIGI NEO AND CLASSIC PCI PRODUCTS
3436 M:      Lidza Louina <lidza.louina@gmail.com>
3437 M:      Mark Hounschell <markh@compro.net>
3438 L:      driverdev-devel@linuxdriverproject.org
3439 S:      Maintained
3440 F:      drivers/staging/dgnc/
3441
3442 DIGI EPCA PCI PRODUCTS
3443 M:      Lidza Louina <lidza.louina@gmail.com>
3444 M:      Daeseok Youn <daeseok.youn@gmail.com>
3445 L:      driverdev-devel@linuxdriverproject.org
3446 S:      Maintained
3447 F:      drivers/staging/dgap/
3448
3449 DIOLAN U2C-12 I2C DRIVER
3450 M:      Guenter Roeck <linux@roeck-us.net>
3451 L:      linux-i2c@vger.kernel.org
3452 S:      Maintained
3453 F:      drivers/i2c/busses/i2c-diolan-u2c.c
3454
3455 DIRECT ACCESS (DAX)
3456 M:      Matthew Wilcox <willy@linux.intel.com>
3457 L:      linux-fsdevel@vger.kernel.org
3458 S:      Supported
3459 F:      fs/dax.c
3460
3461 DIRECTORY NOTIFICATION (DNOTIFY)
3462 M:      Eric Paris <eparis@parisplace.org>
3463 S:      Maintained
3464 F:      Documentation/filesystems/dnotify.txt
3465 F:      fs/notify/dnotify/
3466 F:      include/linux/dnotify.h
3467
3468 DISK GEOMETRY AND PARTITION HANDLING
3469 M:      Andries Brouwer <aeb@cwi.nl>
3470 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
3471 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
3472 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
3473 S:      Maintained
3474
3475 DISKQUOTA
3476 M:      Jan Kara <jack@suse.com>
3477 S:      Maintained
3478 F:      Documentation/filesystems/quota.txt
3479 F:      fs/quota/
3480 F:      include/linux/quota*.h
3481 F:      include/uapi/linux/quota*.h
3482
3483 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
3484 M:      Bernie Thompson <bernie@plugable.com>
3485 L:      linux-fbdev@vger.kernel.org
3486 S:      Maintained
3487 W:      http://plugable.com/category/projects/udlfb/
3488 F:      drivers/video/fbdev/udlfb.c
3489 F:      include/video/udlfb.h
3490 F:      Documentation/fb/udlfb.txt
3491
3492 DISTRIBUTED LOCK MANAGER (DLM)
3493 M:      Christine Caulfield <ccaulfie@redhat.com>
3494 M:      David Teigland <teigland@redhat.com>
3495 L:      cluster-devel@redhat.com
3496 W:      http://sources.redhat.com/cluster/
3497 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
3498 S:      Supported
3499 F:      fs/dlm/
3500
3501 DMA BUFFER SHARING FRAMEWORK
3502 M:      Sumit Semwal <sumit.semwal@linaro.org>
3503 S:      Maintained
3504 L:      linux-media@vger.kernel.org
3505 L:      dri-devel@lists.freedesktop.org
3506 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
3507 F:      drivers/dma-buf/
3508 F:      include/linux/dma-buf*
3509 F:      include/linux/reservation.h
3510 F:      include/linux/*fence.h
3511 F:      Documentation/dma-buf-sharing.txt
3512 T:      git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
3513
3514 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
3515 M:      Vinod Koul <vinod.koul@intel.com>
3516 L:      dmaengine@vger.kernel.org
3517 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
3518 S:      Maintained
3519 F:      drivers/dma/
3520 F:      include/linux/dmaengine.h
3521 F:      Documentation/dmaengine/
3522 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
3523
3524 DME1737 HARDWARE MONITOR DRIVER
3525 M:      Juerg Haefliger <juergh@gmail.com>
3526 L:      lm-sensors@lm-sensors.org
3527 S:      Maintained
3528 F:      Documentation/hwmon/dme1737
3529 F:      drivers/hwmon/dme1737.c
3530
3531 DMI/SMBIOS SUPPORT
3532 M:      Jean Delvare <jdelvare@suse.com>
3533 S:      Maintained
3534 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
3535 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
3536 F:      drivers/firmware/dmi-id.c
3537 F:      drivers/firmware/dmi_scan.c
3538 F:      include/linux/dmi.h
3539
3540 DOCUMENTATION
3541 M:      Jonathan Corbet <corbet@lwn.net>
3542 L:      linux-doc@vger.kernel.org
3543 S:      Maintained
3544 F:      Documentation/
3545 F:      scripts/docproc.c
3546 F:      scripts/kernel-doc*
3547 X:      Documentation/ABI/
3548 X:      Documentation/devicetree/
3549 X:      Documentation/acpi
3550 X:      Documentation/power
3551 X:      Documentation/spi
3552 X:      Documentation/DocBook/media
3553 T:      git git://git.lwn.net/linux.git docs-next
3554
3555 DOUBLETALK DRIVER
3556 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
3557 L:      blinux-list@redhat.com
3558 S:      Maintained
3559 F:      drivers/char/dtlk.c
3560 F:      include/linux/dtlk.h
3561
3562 DPT_I2O SCSI RAID DRIVER
3563 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
3564 L:      linux-scsi@vger.kernel.org
3565 W:      http://www.adaptec.com/
3566 S:      Maintained
3567 F:      drivers/scsi/dpt*
3568 F:      drivers/scsi/dpt/
3569
3570 DRBD DRIVER
3571 P:      Philipp Reisner
3572 P:      Lars Ellenberg
3573 M:      drbd-dev@lists.linbit.com
3574 L:      drbd-user@lists.linbit.com
3575 W:      http://www.drbd.org
3576 T:      git git://git.drbd.org/linux-2.6-drbd.git drbd
3577 T:      git git://git.drbd.org/drbd-8.3.git
3578 S:      Supported
3579 F:      drivers/block/drbd/
3580 F:      lib/lru_cache.c
3581 F:      Documentation/blockdev/drbd/
3582
3583 DRIVER CORE, KOBJECTS, DEBUGFS, KERNFS AND SYSFS
3584 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3585 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
3586 S:      Supported
3587 F:      Documentation/kobject.txt
3588 F:      drivers/base/
3589 F:      fs/debugfs/
3590 F:      fs/kernfs/
3591 F:      fs/sysfs/
3592 F:      include/linux/debugfs.h
3593 F:      include/linux/kobj*
3594 F:      lib/kobj*
3595
3596 DRM DRIVERS
3597 M:      David Airlie <airlied@linux.ie>
3598 L:      dri-devel@lists.freedesktop.org
3599 T:      git git://people.freedesktop.org/~airlied/linux
3600 S:      Maintained
3601 F:      drivers/gpu/drm/
3602 F:      drivers/gpu/vga/
3603 F:      include/drm/
3604 F:      include/uapi/drm/
3605
3606 RADEON DRM DRIVERS
3607 M:      Alex Deucher <alexander.deucher@amd.com>
3608 M:      Christian König <christian.koenig@amd.com>
3609 L:      dri-devel@lists.freedesktop.org
3610 T:      git git://people.freedesktop.org/~agd5f/linux
3611 S:      Supported
3612 F:      drivers/gpu/drm/radeon/
3613 F:      include/uapi/drm/radeon*
3614
3615 DRM PANEL DRIVERS
3616 M:      Thierry Reding <thierry.reding@gmail.com>
3617 L:      dri-devel@lists.freedesktop.org
3618 T:      git git://anongit.freedesktop.org/tegra/linux.git
3619 S:      Maintained
3620 F:      drivers/gpu/drm/drm_panel.c
3621 F:      drivers/gpu/drm/panel/
3622 F:      include/drm/drm_panel.h
3623 F:      Documentation/devicetree/bindings/panel/
3624
3625 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
3626 M:      Daniel Vetter <daniel.vetter@intel.com>
3627 M:      Jani Nikula <jani.nikula@linux.intel.com>
3628 L:      intel-gfx@lists.freedesktop.org
3629 L:      dri-devel@lists.freedesktop.org
3630 W:      https://01.org/linuxgraphics/
3631 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
3632 T:      git git://anongit.freedesktop.org/drm-intel
3633 S:      Supported
3634 F:      drivers/gpu/drm/i915/
3635 F:      include/drm/i915*
3636 F:      include/uapi/drm/i915*
3637
3638 DRM DRIVERS FOR ATMEL HLCDC
3639 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
3640 L:      dri-devel@lists.freedesktop.org
3641 S:      Supported
3642 F:      drivers/gpu/drm/atmel-hlcdc/
3643 F:      Documentation/devicetree/bindings/drm/atmel/
3644
3645 DRM DRIVERS FOR EXYNOS
3646 M:      Inki Dae <inki.dae@samsung.com>
3647 M:      Joonyoung Shim <jy0922.shim@samsung.com>
3648 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
3649 M:      Kyungmin Park <kyungmin.park@samsung.com>
3650 L:      dri-devel@lists.freedesktop.org
3651 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
3652 S:      Supported
3653 F:      drivers/gpu/drm/exynos/
3654 F:      include/drm/exynos*
3655 F:      include/uapi/drm/exynos*
3656
3657 DRM DRIVERS FOR FREESCALE DCU
3658 M:      Jianwei Wang <jianwei.wang.chn@gmail.com>
3659 M:      Alison Wang <alison.wang@freescale.com>
3660 L:      dri-devel@lists.freedesktop.org
3661 S:      Supported
3662 F:      drivers/gpu/drm/fsl-dcu/
3663 F:      Documentation/devicetree/bindings/video/fsl,dcu.txt
3664 F:      Documentation/devicetree/bindings/panel/nec,nl4827hc19_05b.txt
3665
3666 DRM DRIVERS FOR FREESCALE IMX
3667 M:      Philipp Zabel <p.zabel@pengutronix.de>
3668 L:      dri-devel@lists.freedesktop.org
3669 S:      Maintained
3670 F:      drivers/gpu/drm/imx/
3671 F:      Documentation/devicetree/bindings/drm/imx/
3672
3673 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
3674 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
3675 L:      dri-devel@lists.freedesktop.org
3676 T:      git git://github.com/patjak/drm-gma500
3677 S:      Maintained
3678 F:      drivers/gpu/drm/gma500
3679 F:      include/drm/gma500*
3680
3681 DRM DRIVERS FOR NVIDIA TEGRA
3682 M:      Thierry Reding <thierry.reding@gmail.com>
3683 M:      Terje Bergström <tbergstrom@nvidia.com>
3684 L:      dri-devel@lists.freedesktop.org
3685 L:      linux-tegra@vger.kernel.org
3686 T:      git git://anongit.freedesktop.org/tegra/linux.git
3687 S:      Supported
3688 F:      drivers/gpu/drm/tegra/
3689 F:      drivers/gpu/host1x/
3690 F:      include/linux/host1x.h
3691 F:      include/uapi/drm/tegra_drm.h
3692 F:      Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt
3693
3694 DRM DRIVERS FOR RENESAS
3695 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
3696 L:      dri-devel@lists.freedesktop.org
3697 L:      linux-sh@vger.kernel.org
3698 T:      git git://people.freedesktop.org/~airlied/linux
3699 S:      Supported
3700 F:      drivers/gpu/drm/rcar-du/
3701 F:      drivers/gpu/drm/shmobile/
3702 F:      include/linux/platform_data/shmob_drm.h
3703
3704 DRM DRIVERS FOR ROCKCHIP
3705 M:      Mark Yao <mark.yao@rock-chips.com>
3706 L:      dri-devel@lists.freedesktop.org
3707 S:      Maintained
3708 F:      drivers/gpu/drm/rockchip/
3709 F:      Documentation/devicetree/bindings/video/rockchip*
3710
3711 DRM DRIVERS FOR STI
3712 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
3713 M:      Vincent Abriou <vincent.abriou@st.com>
3714 L:      dri-devel@lists.freedesktop.org
3715 T:      git http://git.linaro.org/people/benjamin.gaignard/kernel.git
3716 S:      Maintained
3717 F:      drivers/gpu/drm/sti
3718 F:      Documentation/devicetree/bindings/gpu/st,stih4xx.txt
3719
3720 DSBR100 USB FM RADIO DRIVER
3721 M:      Alexey Klimov <klimov.linux@gmail.com>
3722 L:      linux-media@vger.kernel.org
3723 T:      git git://linuxtv.org/media_tree.git
3724 S:      Maintained
3725 F:      drivers/media/radio/dsbr100.c
3726
3727 DSCC4 DRIVER
3728 M:      Francois Romieu <romieu@fr.zoreil.com>
3729 L:      netdev@vger.kernel.org
3730 S:      Maintained
3731 F:      drivers/net/wan/dscc4.c
3732
3733 DT3155 MEDIA DRIVER
3734 M:      Hans Verkuil <hverkuil@xs4all.nl>
3735 L:      linux-media@vger.kernel.org
3736 T:      git git://linuxtv.org/media_tree.git
3737 W:      http://linuxtv.org
3738 S:      Odd Fixes
3739 F:      drivers/media/pci/dt3155/
3740
3741 DVB_USB_AF9015 MEDIA DRIVER
3742 M:      Antti Palosaari <crope@iki.fi>
3743 L:      linux-media@vger.kernel.org
3744 W:      http://linuxtv.org/
3745 W:      http://palosaari.fi/linux/
3746 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3747 T:      git git://linuxtv.org/anttip/media_tree.git
3748 S:      Maintained
3749 F:      drivers/media/usb/dvb-usb-v2/af9015*
3750
3751 DVB_USB_AF9035 MEDIA DRIVER
3752 M:      Antti Palosaari <crope@iki.fi>
3753 L:      linux-media@vger.kernel.org
3754 W:      http://linuxtv.org/
3755 W:      http://palosaari.fi/linux/
3756 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3757 T:      git git://linuxtv.org/anttip/media_tree.git
3758 S:      Maintained
3759 F:      drivers/media/usb/dvb-usb-v2/af9035*
3760
3761 DVB_USB_ANYSEE MEDIA DRIVER
3762 M:      Antti Palosaari <crope@iki.fi>
3763 L:      linux-media@vger.kernel.org
3764 W:      http://linuxtv.org/
3765 W:      http://palosaari.fi/linux/
3766 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3767 T:      git git://linuxtv.org/anttip/media_tree.git
3768 S:      Maintained
3769 F:      drivers/media/usb/dvb-usb-v2/anysee*
3770
3771 DVB_USB_AU6610 MEDIA DRIVER
3772 M:      Antti Palosaari <crope@iki.fi>
3773 L:      linux-media@vger.kernel.org
3774 W:      http://linuxtv.org/
3775 W:      http://palosaari.fi/linux/
3776 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3777 T:      git git://linuxtv.org/anttip/media_tree.git
3778 S:      Maintained
3779 F:      drivers/media/usb/dvb-usb-v2/au6610*
3780
3781 DVB_USB_CE6230 MEDIA DRIVER
3782 M:      Antti Palosaari <crope@iki.fi>
3783 L:      linux-media@vger.kernel.org
3784 W:      http://linuxtv.org/
3785 W:      http://palosaari.fi/linux/
3786 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3787 T:      git git://linuxtv.org/anttip/media_tree.git
3788 S:      Maintained
3789 F:      drivers/media/usb/dvb-usb-v2/ce6230*
3790
3791 DVB_USB_CXUSB MEDIA DRIVER
3792 M:      Michael Krufky <mkrufky@linuxtv.org>
3793 L:      linux-media@vger.kernel.org
3794 W:      http://linuxtv.org/
3795 W:      http://github.com/mkrufky
3796 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3797 T:      git git://linuxtv.org/media_tree.git
3798 S:      Maintained
3799 F:      drivers/media/usb/dvb-usb/cxusb*
3800
3801 DVB_USB_EC168 MEDIA DRIVER
3802 M:      Antti Palosaari <crope@iki.fi>
3803 L:      linux-media@vger.kernel.org
3804 W:      http://linuxtv.org/
3805 W:      http://palosaari.fi/linux/
3806 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3807 T:      git git://linuxtv.org/anttip/media_tree.git
3808 S:      Maintained
3809 F:      drivers/media/usb/dvb-usb-v2/ec168*
3810
3811 DVB_USB_GL861 MEDIA DRIVER
3812 M:      Antti Palosaari <crope@iki.fi>
3813 L:      linux-media@vger.kernel.org
3814 W:      http://linuxtv.org/
3815 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3816 T:      git git://linuxtv.org/anttip/media_tree.git
3817 S:      Maintained
3818 F:      drivers/media/usb/dvb-usb-v2/gl861*
3819
3820 DVB_USB_MXL111SF MEDIA DRIVER
3821 M:      Michael Krufky <mkrufky@linuxtv.org>
3822 L:      linux-media@vger.kernel.org
3823 W:      http://linuxtv.org/
3824 W:      http://github.com/mkrufky
3825 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3826 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
3827 S:      Maintained
3828 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
3829
3830 DVB_USB_RTL28XXU MEDIA DRIVER
3831 M:      Antti Palosaari <crope@iki.fi>
3832 L:      linux-media@vger.kernel.org
3833 W:      http://linuxtv.org/
3834 W:      http://palosaari.fi/linux/
3835 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3836 T:      git git://linuxtv.org/anttip/media_tree.git
3837 S:      Maintained
3838 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
3839
3840 DVB_USB_V2 MEDIA DRIVER
3841 M:      Antti Palosaari <crope@iki.fi>
3842 L:      linux-media@vger.kernel.org
3843 W:      http://linuxtv.org/
3844 W:      http://palosaari.fi/linux/
3845 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3846 T:      git git://linuxtv.org/anttip/media_tree.git
3847 S:      Maintained
3848 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
3849 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
3850
3851 DYNAMIC DEBUG
3852 M:      Jason Baron <jbaron@akamai.com>
3853 S:      Maintained
3854 F:      lib/dynamic_debug.c
3855 F:      include/linux/dynamic_debug.h
3856
3857 DZ DECSTATION DZ11 SERIAL DRIVER
3858 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3859 S:      Maintained
3860 F:      drivers/tty/serial/dz.*
3861
3862 E3X0 POWER BUTTON DRIVER
3863 M:      Moritz Fischer <moritz.fischer@ettus.com>
3864 L:      usrp-users@lists.ettus.com
3865 W:      http://www.ettus.com
3866 S:      Supported
3867 F:      drivers/input/misc/e3x0-button.c
3868 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
3869
3870 E4000 MEDIA DRIVER
3871 M:      Antti Palosaari <crope@iki.fi>
3872 L:      linux-media@vger.kernel.org
3873 W:      http://linuxtv.org/
3874 W:      http://palosaari.fi/linux/
3875 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3876 T:      git git://linuxtv.org/anttip/media_tree.git
3877 S:      Maintained
3878 F:      drivers/media/tuners/e4000*
3879
3880 EATA ISA/EISA/PCI SCSI DRIVER
3881 M:      Dario Ballabio <ballabio_dario@emc.com>
3882 L:      linux-scsi@vger.kernel.org
3883 S:      Maintained
3884 F:      drivers/scsi/eata.c
3885
3886 EC100 MEDIA DRIVER
3887 M:      Antti Palosaari <crope@iki.fi>
3888 L:      linux-media@vger.kernel.org
3889 W:      http://linuxtv.org/
3890 W:      http://palosaari.fi/linux/
3891 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3892 T:      git git://linuxtv.org/anttip/media_tree.git
3893 S:      Maintained
3894 F:      drivers/media/dvb-frontends/ec100*
3895
3896 ECRYPT FILE SYSTEM
3897 M:      Tyler Hicks <tyhicks@canonical.com>
3898 L:      ecryptfs@vger.kernel.org
3899 W:      http://ecryptfs.org
3900 W:      https://launchpad.net/ecryptfs
3901 S:      Supported
3902 F:      Documentation/filesystems/ecryptfs.txt
3903 F:      fs/ecryptfs/
3904
3905 EDAC-CORE
3906 M:      Doug Thompson <dougthompson@xmission.com>
3907 M:      Borislav Petkov <bp@alien8.de>
3908 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3909 L:      linux-edac@vger.kernel.org
3910 W:      bluesmoke.sourceforge.net
3911 T:      git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git#for-next
3912 T:      git://git.kernel.org/pub/linux/kernel/git/mchehab/linux-edac.git#linux_next
3913 S:      Supported
3914 F:      Documentation/edac.txt
3915 F:      drivers/edac/
3916 F:      include/linux/edac.h
3917
3918 EDAC-AMD64
3919 M:      Doug Thompson <dougthompson@xmission.com>
3920 M:      Borislav Petkov <bp@alien8.de>
3921 L:      linux-edac@vger.kernel.org
3922 W:      bluesmoke.sourceforge.net
3923 S:      Maintained
3924 F:      drivers/edac/amd64_edac*
3925
3926 EDAC-CALXEDA
3927 M:      Doug Thompson <dougthompson@xmission.com>
3928 M:      Robert Richter <rric@kernel.org>
3929 L:      linux-edac@vger.kernel.org
3930 W:      bluesmoke.sourceforge.net
3931 S:      Maintained
3932 F:      drivers/edac/highbank*
3933
3934 EDAC-CAVIUM
3935 M:      Ralf Baechle <ralf@linux-mips.org>
3936 M:      David Daney <david.daney@cavium.com>
3937 L:      linux-edac@vger.kernel.org
3938 L:      linux-mips@linux-mips.org
3939 W:      bluesmoke.sourceforge.net
3940 S:      Supported
3941 F:      drivers/edac/octeon_edac*
3942
3943 EDAC-E752X
3944 M:      Mark Gross <mark.gross@intel.com>
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/e752x_edac.c
3950
3951 EDAC-E7XXX
3952 M:      Doug Thompson <dougthompson@xmission.com>
3953 L:      linux-edac@vger.kernel.org
3954 W:      bluesmoke.sourceforge.net
3955 S:      Maintained
3956 F:      drivers/edac/e7xxx_edac.c
3957
3958 EDAC-GHES
3959 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3960 L:      linux-edac@vger.kernel.org
3961 W:      bluesmoke.sourceforge.net
3962 S:      Maintained
3963 F:      drivers/edac/ghes_edac.c
3964
3965 EDAC-I82443BXGX
3966 M:      Tim Small <tim@buttersideup.com>
3967 L:      linux-edac@vger.kernel.org
3968 W:      bluesmoke.sourceforge.net
3969 S:      Maintained
3970 F:      drivers/edac/i82443bxgx_edac.c
3971
3972 EDAC-I3000
3973 M:      Jason Uhlenkott <juhlenko@akamai.com>
3974 L:      linux-edac@vger.kernel.org
3975 W:      bluesmoke.sourceforge.net
3976 S:      Maintained
3977 F:      drivers/edac/i3000_edac.c
3978
3979 EDAC-I5000
3980 M:      Doug Thompson <dougthompson@xmission.com>
3981 L:      linux-edac@vger.kernel.org
3982 W:      bluesmoke.sourceforge.net
3983 S:      Maintained
3984 F:      drivers/edac/i5000_edac.c
3985
3986 EDAC-I5400
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/i5400_edac.c
3992
3993 EDAC-I7300
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/i7300_edac.c
3999
4000 EDAC-I7CORE
4001 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4002 L:      linux-edac@vger.kernel.org
4003 W:      bluesmoke.sourceforge.net
4004 S:      Maintained
4005 F:      drivers/edac/i7core_edac.c
4006
4007 EDAC-I82975X
4008 M:      Ranganathan Desikan <ravi@jetztechnologies.com>
4009 M:      "Arvind R." <arvino55@gmail.com>
4010 L:      linux-edac@vger.kernel.org
4011 W:      bluesmoke.sourceforge.net
4012 S:      Maintained
4013 F:      drivers/edac/i82975x_edac.c
4014
4015 EDAC-IE31200
4016 M:      Jason Baron <jbaron@akamai.com>
4017 L:      linux-edac@vger.kernel.org
4018 W:      bluesmoke.sourceforge.net
4019 S:      Maintained
4020 F:      drivers/edac/ie31200_edac.c
4021
4022 EDAC-MPC85XX
4023 M:      Johannes Thumshirn <morbidrsa@gmail.com>
4024 L:      linux-edac@vger.kernel.org
4025 W:      bluesmoke.sourceforge.net
4026 S:      Maintained
4027 F:      drivers/edac/mpc85xx_edac.[ch]
4028
4029 EDAC-PASEMI
4030 M:      Egor Martovetsky <egor@pasemi.com>
4031 L:      linux-edac@vger.kernel.org
4032 W:      bluesmoke.sourceforge.net
4033 S:      Maintained
4034 F:      drivers/edac/pasemi_edac.c
4035
4036 EDAC-R82600
4037 M:      Tim Small <tim@buttersideup.com>
4038 L:      linux-edac@vger.kernel.org
4039 W:      bluesmoke.sourceforge.net
4040 S:      Maintained
4041 F:      drivers/edac/r82600_edac.c
4042
4043 EDAC-SBRIDGE
4044 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4045 L:      linux-edac@vger.kernel.org
4046 W:      bluesmoke.sourceforge.net
4047 S:      Maintained
4048 F:      drivers/edac/sb_edac.c
4049
4050 EDAC-XGENE
4051 APPLIED MICRO (APM) X-GENE SOC EDAC
4052 M:     Loc Ho <lho@apm.com>
4053 S:     Supported
4054 F:     drivers/edac/xgene_edac.c
4055 F:     Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
4056
4057 EDIROL UA-101/UA-1000 DRIVER
4058 M:      Clemens Ladisch <clemens@ladisch.de>
4059 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4060 T:      git git://git.alsa-project.org/alsa-kernel.git
4061 S:      Maintained
4062 F:      sound/usb/misc/ua101.c
4063
4064 EXTENSIBLE FIRMWARE INTERFACE (EFI)
4065 M:      Matt Fleming <matt@codeblueprint.co.uk>
4066 L:      linux-efi@vger.kernel.org
4067 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4068 S:      Maintained
4069 F:      Documentation/efi-stub.txt
4070 F:      arch/ia64/kernel/efi.c
4071 F:      arch/x86/boot/compressed/eboot.[ch]
4072 F:      arch/x86/include/asm/efi.h
4073 F:      arch/x86/platform/efi/*
4074 F:      drivers/firmware/efi/*
4075 F:      include/linux/efi*.h
4076
4077 EFI VARIABLE FILESYSTEM
4078 M:      Matthew Garrett <matthew.garrett@nebula.com>
4079 M:      Jeremy Kerr <jk@ozlabs.org>
4080 M:      Matt Fleming <matt@codeblueprint.co.uk>
4081 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4082 L:      linux-efi@vger.kernel.org
4083 S:      Maintained
4084 F:      fs/efivarfs/
4085
4086 EFIFB FRAMEBUFFER DRIVER
4087 L:      linux-fbdev@vger.kernel.org
4088 M:      Peter Jones <pjones@redhat.com>
4089 S:      Maintained
4090 F:      drivers/video/fbdev/efifb.c
4091
4092 EFS FILESYSTEM
4093 W:      http://aeschi.ch.eu.org/efs/
4094 S:      Orphan
4095 F:      fs/efs/
4096
4097 EHCA (IBM GX bus InfiniBand adapter) DRIVER
4098 M:      Hoang-Nam Nguyen <hnguyen@de.ibm.com>
4099 M:      Christoph Raisch <raisch@de.ibm.com>
4100 L:      linux-rdma@vger.kernel.org
4101 S:      Supported
4102 F:      drivers/infiniband/hw/ehca/
4103
4104 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
4105 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
4106 L:      netdev@vger.kernel.org
4107 S:      Maintained
4108 F:      drivers/net/ethernet/ibm/ehea/
4109
4110 EM28XX VIDEO4LINUX DRIVER
4111 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4112 L:      linux-media@vger.kernel.org
4113 W:      http://linuxtv.org
4114 T:      git git://linuxtv.org/media_tree.git
4115 S:      Maintained
4116 F:      drivers/media/usb/em28xx/
4117
4118 EMBEDDED LINUX
4119 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
4120 M:      Matt Mackall <mpm@selenic.com>
4121 M:      David Woodhouse <dwmw2@infradead.org>
4122 L:      linux-embedded@vger.kernel.org
4123 S:      Maintained
4124
4125 EMULEX/AVAGO LPFC FC/FCOE SCSI DRIVER
4126 M:      James Smart <james.smart@avagotech.com>
4127 M:      Dick Kennedy <dick.kennedy@avagotech.com>
4128 L:      linux-scsi@vger.kernel.org
4129 W:      http://www.avagotech.com
4130 S:      Supported
4131 F:      drivers/scsi/lpfc/
4132
4133 ENE CB710 FLASH CARD READER DRIVER
4134 M:      MichaÅ‚ MirosÅ‚aw <mirq-linux@rere.qmqm.pl>
4135 S:      Maintained
4136 F:      drivers/misc/cb710/
4137 F:      drivers/mmc/host/cb710-mmc.*
4138 F:      include/linux/cb710.h
4139
4140 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
4141 M:      Maxim Levitsky <maximlevitsky@gmail.com>
4142 S:      Maintained
4143 F:      drivers/media/rc/ene_ir.*
4144
4145 ENHANCED ERROR HANDLING (EEH)
4146 M:      Gavin Shan <shangw@linux.vnet.ibm.com>
4147 L:      linuxppc-dev@lists.ozlabs.org
4148 S:      Supported
4149 F:      Documentation/powerpc/eeh-pci-error-recovery.txt
4150 F:      arch/powerpc/kernel/eeh*.c
4151
4152 EPSON S1D13XXX FRAMEBUFFER DRIVER
4153 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
4154 S:      Maintained
4155 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
4156 F:      drivers/video/fbdev/s1d13xxxfb.c
4157 F:      include/video/s1d13xxxfb.h
4158
4159 ET131X NETWORK DRIVER
4160 M:      Mark Einon <mark.einon@gmail.com>
4161 S:      Odd Fixes
4162 F:      drivers/net/ethernet/agere/
4163
4164 ETHERNET BRIDGE
4165 M:      Stephen Hemminger <stephen@networkplumber.org>
4166 L:      bridge@lists.linux-foundation.org
4167 L:      netdev@vger.kernel.org
4168 W:      http://www.linuxfoundation.org/en/Net:Bridge
4169 S:      Maintained
4170 F:      include/linux/netfilter_bridge/
4171 F:      net/bridge/
4172
4173 ETHERNET PHY LIBRARY
4174 M:      Florian Fainelli <f.fainelli@gmail.com>
4175 L:      netdev@vger.kernel.org
4176 S:      Maintained
4177 F:      include/linux/phy.h
4178 F:      include/linux/phy_fixed.h
4179 F:      drivers/net/phy/
4180 F:      Documentation/networking/phy.txt
4181 F:      drivers/of/of_mdio.c
4182 F:      drivers/of/of_net.c
4183
4184 EXT2 FILE SYSTEM
4185 M:      Jan Kara <jack@suse.com>
4186 L:      linux-ext4@vger.kernel.org
4187 S:      Maintained
4188 F:      Documentation/filesystems/ext2.txt
4189 F:      fs/ext2/
4190 F:      include/linux/ext2*
4191
4192 EXT4 FILE SYSTEM
4193 M:      "Theodore Ts'o" <tytso@mit.edu>
4194 M:      Andreas Dilger <adilger.kernel@dilger.ca>
4195 L:      linux-ext4@vger.kernel.org
4196 W:      http://ext4.wiki.kernel.org
4197 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
4198 S:      Maintained
4199 F:      Documentation/filesystems/ext4.txt
4200 F:      fs/ext4/
4201
4202 Extended Verification Module (EVM)
4203 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
4204 L:      linux-ima-devel@lists.sourceforge.net
4205 L:      linux-security-module@vger.kernel.org
4206 S:      Supported
4207 F:      security/integrity/evm/
4208
4209 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
4210 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
4211 M:      Chanwoo Choi <cw00.choi@samsung.com>
4212 L:      linux-kernel@vger.kernel.org
4213 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
4214 S:      Maintained
4215 F:      drivers/extcon/
4216 F:      Documentation/extcon/
4217
4218 EXYNOS DP DRIVER
4219 M:      Jingoo Han <jingoohan1@gmail.com>
4220 L:      dri-devel@lists.freedesktop.org
4221 S:      Maintained
4222 F:      drivers/gpu/drm/exynos/exynos_dp*
4223
4224 EXYNOS MIPI DISPLAY DRIVERS
4225 M:      Inki Dae <inki.dae@samsung.com>
4226 M:      Donghwa Lee <dh09.lee@samsung.com>
4227 M:      Kyungmin Park <kyungmin.park@samsung.com>
4228 L:      linux-fbdev@vger.kernel.org
4229 S:      Maintained
4230 F:      drivers/video/fbdev/exynos/exynos_mipi*
4231 F:      include/video/exynos_mipi*
4232
4233 F71805F HARDWARE MONITORING DRIVER
4234 M:      Jean Delvare <jdelvare@suse.com>
4235 L:      lm-sensors@lm-sensors.org
4236 S:      Maintained
4237 F:      Documentation/hwmon/f71805f
4238 F:      drivers/hwmon/f71805f.c
4239
4240 FC0011 TUNER DRIVER
4241 M:      Michael Buesch <m@bues.ch>
4242 L:      linux-media@vger.kernel.org
4243 S:      Maintained
4244 F:      drivers/media/tuners/fc0011.h
4245 F:      drivers/media/tuners/fc0011.c
4246
4247 FC2580 MEDIA DRIVER
4248 M:      Antti Palosaari <crope@iki.fi>
4249 L:      linux-media@vger.kernel.org
4250 W:      http://linuxtv.org/
4251 W:      http://palosaari.fi/linux/
4252 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4253 T:      git git://linuxtv.org/anttip/media_tree.git
4254 S:      Maintained
4255 F:      drivers/media/tuners/fc2580*
4256
4257 FANOTIFY
4258 M:      Eric Paris <eparis@redhat.com>
4259 S:      Maintained
4260 F:      fs/notify/fanotify/
4261 F:      include/linux/fanotify.h
4262 F:      include/uapi/linux/fanotify.h
4263
4264 FARSYNC SYNCHRONOUS DRIVER
4265 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
4266 W:      http://www.farsite.co.uk/
4267 S:      Supported
4268 F:      drivers/net/wan/farsync.*
4269
4270 FAULT INJECTION SUPPORT
4271 M:      Akinobu Mita <akinobu.mita@gmail.com>
4272 S:      Supported
4273 F:      Documentation/fault-injection/
4274 F:      lib/fault-inject.c
4275
4276 FBTFT Framebuffer drivers
4277 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
4278 M:      Noralf Trønnes <noralf@tronnes.org>
4279 S:      Maintained
4280 F:      drivers/staging/fbtft/
4281
4282 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
4283 M:      Vasu Dev <vasu.dev@intel.com>
4284 L:      fcoe-devel@open-fcoe.org
4285 W:      www.Open-FCoE.org
4286 S:      Supported
4287 F:      drivers/scsi/libfc/
4288 F:      drivers/scsi/fcoe/
4289 F:      include/scsi/fc/
4290 F:      include/scsi/libfc.h
4291 F:      include/scsi/libfcoe.h
4292 F:      include/uapi/scsi/fc/
4293
4294 FILE LOCKING (flock() and fcntl()/lockf())
4295 M:      Jeff Layton <jlayton@poochiereds.net>
4296 M:      "J. Bruce Fields" <bfields@fieldses.org>
4297 L:      linux-fsdevel@vger.kernel.org
4298 S:      Maintained
4299 F:      include/linux/fcntl.h
4300 F:      include/linux/fs.h
4301 F:      include/uapi/linux/fcntl.h
4302 F:      include/uapi/linux/fs.h
4303 F:      fs/fcntl.c
4304 F:      fs/locks.c
4305
4306 FILESYSTEMS (VFS and infrastructure)
4307 M:      Alexander Viro <viro@zeniv.linux.org.uk>
4308 L:      linux-fsdevel@vger.kernel.org
4309 S:      Maintained
4310 F:      fs/*
4311
4312 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
4313 M:      Riku Voipio <riku.voipio@iki.fi>
4314 L:      lm-sensors@lm-sensors.org
4315 S:      Maintained
4316 F:      drivers/hwmon/f75375s.c
4317 F:      include/linux/f75375s.h
4318
4319 FIREWIRE AUDIO DRIVERS
4320 M:      Clemens Ladisch <clemens@ladisch.de>
4321 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4322 T:      git git://git.alsa-project.org/alsa-kernel.git
4323 S:      Maintained
4324 F:      sound/firewire/
4325
4326 FIREWIRE MEDIA DRIVERS (firedtv)
4327 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4328 L:      linux-media@vger.kernel.org
4329 L:      linux1394-devel@lists.sourceforge.net
4330 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
4331 S:      Maintained
4332 F:      drivers/media/firewire/
4333
4334 FIREWIRE SBP-2 TARGET
4335 M:      Chris Boot <bootc@bootc.net>
4336 L:      linux-scsi@vger.kernel.org
4337 L:      target-devel@vger.kernel.org
4338 L:      linux1394-devel@lists.sourceforge.net
4339 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
4340 S:      Maintained
4341 F:      drivers/target/sbp/
4342
4343 FIREWIRE SUBSYSTEM
4344 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4345 L:      linux1394-devel@lists.sourceforge.net
4346 W:      http://ieee1394.wiki.kernel.org/
4347 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
4348 S:      Maintained
4349 F:      drivers/firewire/
4350 F:      include/linux/firewire.h
4351 F:      include/uapi/linux/firewire*.h
4352 F:      tools/firewire/
4353
4354 FIRMWARE LOADER (request_firmware)
4355 M:      Ming Lei <ming.lei@canonical.com>
4356 L:      linux-kernel@vger.kernel.org
4357 S:      Maintained
4358 F:      Documentation/firmware_class/
4359 F:      drivers/base/firmware*.c
4360 F:      include/linux/firmware.h
4361
4362 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
4363 M:      Joshua Morris <josh.h.morris@us.ibm.com>
4364 M:      Philip Kelleher <pjk1939@linux.vnet.ibm.com>
4365 S:      Maintained
4366 F:      drivers/block/rsxx/
4367
4368 FLOPPY DRIVER
4369 M:      Jiri Kosina <jikos@kernel.org>
4370 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
4371 S:      Odd fixes
4372 F:      drivers/block/floppy.c
4373
4374 FMC SUBSYSTEM
4375 M:      Alessandro Rubini <rubini@gnudd.com>
4376 W:      http://www.ohwr.org/projects/fmc-bus
4377 S:      Supported
4378 F:      drivers/fmc/
4379 F:      include/linux/fmc*.h
4380 F:      include/linux/ipmi-fru.h
4381 K:      fmc_d.*register
4382
4383 FPU EMULATOR
4384 M:      Bill Metzenthen <billm@melbpc.org.au>
4385 W:      http://floatingpoint.sourceforge.net/emulator/index.html
4386 S:      Maintained
4387 F:      arch/x86/math-emu/
4388
4389 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
4390 L:      netdev@vger.kernel.org
4391 S:      Orphan
4392 F:      drivers/net/wan/dlci.c
4393 F:      drivers/net/wan/sdla.c
4394
4395 FRAMEBUFFER LAYER
4396 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
4397 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
4398 L:      linux-fbdev@vger.kernel.org
4399 W:      http://linux-fbdev.sourceforge.net/
4400 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
4401 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git
4402 S:      Maintained
4403 F:      Documentation/fb/
4404 F:      Documentation/devicetree/bindings/fb/
4405 F:      drivers/video/
4406 F:      include/video/
4407 F:      include/linux/fb.h
4408 F:      include/uapi/video/
4409 F:      include/uapi/linux/fb.h
4410
4411 FREESCALE DIU FRAMEBUFFER DRIVER
4412 M:      Timur Tabi <timur@tabi.org>
4413 L:      linux-fbdev@vger.kernel.org
4414 S:      Maintained
4415 F:      drivers/video/fbdev/fsl-diu-fb.*
4416
4417 FREESCALE DMA DRIVER
4418 M:      Li Yang <leoli@freescale.com>
4419 M:      Zhang Wei <zw@zh-kernel.org>
4420 L:      linuxppc-dev@lists.ozlabs.org
4421 S:      Maintained
4422 F:      drivers/dma/fsldma.*
4423
4424 FREESCALE I2C CPM DRIVER
4425 M:      Jochen Friedrich <jochen@scram.de>
4426 L:      linuxppc-dev@lists.ozlabs.org
4427 L:      linux-i2c@vger.kernel.org
4428 S:      Maintained
4429 F:      drivers/i2c/busses/i2c-cpm.c
4430
4431 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
4432 M:      Sascha Hauer <kernel@pengutronix.de>
4433 L:      linux-fbdev@vger.kernel.org
4434 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4435 S:      Maintained
4436 F:      include/linux/platform_data/video-imxfb.h
4437 F:      drivers/video/fbdev/imxfb.c
4438
4439 FREESCALE QUAD SPI DRIVER
4440 M:      Han Xu <han.xu@freescale.com>
4441 L:      linux-mtd@lists.infradead.org
4442 S:      Maintained
4443 F:      drivers/mtd/spi-nor/fsl-quadspi.c
4444
4445 FREESCALE SOC FS_ENET DRIVER
4446 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
4447 M:      Vitaly Bordug <vbordug@ru.mvista.com>
4448 L:      linuxppc-dev@lists.ozlabs.org
4449 L:      netdev@vger.kernel.org
4450 S:      Maintained
4451 F:      drivers/net/ethernet/freescale/fs_enet/
4452 F:      include/linux/fs_enet_pd.h
4453
4454 FREESCALE QUICC ENGINE LIBRARY
4455 L:      linuxppc-dev@lists.ozlabs.org
4456 S:      Orphan
4457 F:      arch/powerpc/sysdev/qe_lib/
4458 F:      arch/powerpc/include/asm/*qe.h
4459
4460 FREESCALE USB PERIPHERAL DRIVERS
4461 M:      Li Yang <leoli@freescale.com>
4462 L:      linux-usb@vger.kernel.org
4463 L:      linuxppc-dev@lists.ozlabs.org
4464 S:      Maintained
4465 F:      drivers/usb/gadget/udc/fsl*
4466
4467 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
4468 M:      Li Yang <leoli@freescale.com>
4469 L:      netdev@vger.kernel.org
4470 L:      linuxppc-dev@lists.ozlabs.org
4471 S:      Maintained
4472 F:      drivers/net/ethernet/freescale/ucc_geth*
4473
4474 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
4475 M:      Claudiu Manoil <claudiu.manoil@freescale.com>
4476 L:      netdev@vger.kernel.org
4477 S:      Maintained
4478 F:      drivers/net/ethernet/freescale/gianfar*
4479 X:      drivers/net/ethernet/freescale/gianfar_ptp.c
4480 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
4481
4482 FREESCALE QUICC ENGINE UCC UART DRIVER
4483 M:      Timur Tabi <timur@tabi.org>
4484 L:      linuxppc-dev@lists.ozlabs.org
4485 S:      Maintained
4486 F:      drivers/tty/serial/ucc_uart.c
4487
4488 FREESCALE SOC SOUND DRIVERS
4489 M:      Timur Tabi <timur@tabi.org>
4490 M:      Nicolin Chen <nicoleotsuka@gmail.com>
4491 M:      Xiubo Li <Xiubo.Lee@gmail.com>
4492 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4493 L:      linuxppc-dev@lists.ozlabs.org
4494 S:      Maintained
4495 F:      sound/soc/fsl/fsl*
4496 F:      sound/soc/fsl/imx*
4497 F:      sound/soc/fsl/mpc8610_hpcd.c
4498
4499 FREESCALE QORIQ MANAGEMENT COMPLEX DRIVER
4500 M:      "J. German Rivera" <German.Rivera@freescale.com>
4501 L:      linux-kernel@vger.kernel.org
4502 S:      Maintained
4503 F:      drivers/staging/fsl-mc/
4504
4505 FREEVXFS FILESYSTEM
4506 M:      Christoph Hellwig <hch@infradead.org>
4507 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
4508 S:      Maintained
4509 F:      fs/freevxfs/
4510
4511 FREEZER
4512 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4513 M:      Pavel Machek <pavel@ucw.cz>
4514 L:      linux-pm@vger.kernel.org
4515 S:      Supported
4516 F:      Documentation/power/freezing-of-tasks.txt
4517 F:      include/linux/freezer.h
4518 F:      kernel/freezer.c
4519
4520 FRONTSWAP API
4521 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4522 L:      linux-kernel@vger.kernel.org
4523 S:      Maintained
4524 F:      mm/frontswap.c
4525 F:      include/linux/frontswap.h
4526
4527 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
4528 M:      David Howells <dhowells@redhat.com>
4529 L:      linux-cachefs@redhat.com
4530 S:      Supported
4531 F:      Documentation/filesystems/caching/
4532 F:      fs/fscache/
4533 F:      include/linux/fscache*.h
4534
4535 F2FS FILE SYSTEM
4536 M:      Jaegeuk Kim <jaegeuk@kernel.org>
4537 M:      Changman Lee <cm224.lee@samsung.com>
4538 R:      Chao Yu <chao2.yu@samsung.com>
4539 L:      linux-f2fs-devel@lists.sourceforge.net
4540 W:      http://en.wikipedia.org/wiki/F2FS
4541 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
4542 S:      Maintained
4543 F:      Documentation/filesystems/f2fs.txt
4544 F:      Documentation/ABI/testing/sysfs-fs-f2fs
4545 F:      fs/f2fs/
4546 F:      include/linux/f2fs_fs.h
4547 F:      include/trace/events/f2fs.h
4548
4549 FUJITSU FR-V (FRV) PORT
4550 M:      David Howells <dhowells@redhat.com>
4551 S:      Maintained
4552 F:      arch/frv/
4553
4554 FUJITSU LAPTOP EXTRAS
4555 M:      Jonathan Woithe <jwoithe@just42.net>
4556 L:      platform-driver-x86@vger.kernel.org
4557 S:      Maintained
4558 F:      drivers/platform/x86/fujitsu-laptop.c
4559
4560 FUJITSU M-5MO LS CAMERA ISP DRIVER
4561 M:      Kyungmin Park <kyungmin.park@samsung.com>
4562 M:      Heungjun Kim <riverful.kim@samsung.com>
4563 L:      linux-media@vger.kernel.org
4564 S:      Maintained
4565 F:      drivers/media/i2c/m5mols/
4566 F:      include/media/m5mols.h
4567
4568 FUJITSU TABLET EXTRAS
4569 M:      Robert Gerlach <khnz@gmx.de>
4570 L:      platform-driver-x86@vger.kernel.org
4571 S:      Maintained
4572 F:      drivers/platform/x86/fujitsu-tablet.c
4573
4574 FUSE: FILESYSTEM IN USERSPACE
4575 M:      Miklos Szeredi <miklos@szeredi.hu>
4576 L:      fuse-devel@lists.sourceforge.net
4577 W:      http://fuse.sourceforge.net/
4578 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
4579 S:      Maintained
4580 F:      fs/fuse/
4581 F:      include/uapi/linux/fuse.h
4582 F:      Documentation/filesystems/fuse.txt
4583
4584 FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
4585 M:      Rik Faith <faith@cs.unc.edu>
4586 L:      linux-scsi@vger.kernel.org
4587 S:      Odd Fixes (e.g., new signatures)
4588 F:      drivers/scsi/fdomain.*
4589
4590 GCOV BASED KERNEL PROFILING
4591 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
4592 S:      Maintained
4593 F:      kernel/gcov/
4594 F:      Documentation/gcov.txt
4595
4596 GDT SCSI DISK ARRAY CONTROLLER DRIVER
4597 M:      Achim Leubner <achim_leubner@adaptec.com>
4598 L:      linux-scsi@vger.kernel.org
4599 W:      http://www.icp-vortex.com/
4600 S:      Supported
4601 F:      drivers/scsi/gdt*
4602
4603 GDB KERNEL DEBUGGING HELPER SCRIPTS
4604 M:      Jan Kiszka <jan.kiszka@siemens.com>
4605 S:      Supported
4606 F:      scripts/gdb/
4607
4608 GEMTEK FM RADIO RECEIVER DRIVER
4609 M:      Hans Verkuil <hverkuil@xs4all.nl>
4610 L:      linux-media@vger.kernel.org
4611 T:      git git://linuxtv.org/media_tree.git
4612 W:      http://linuxtv.org
4613 S:      Maintained
4614 F:      drivers/media/radio/radio-gemtek*
4615
4616 GENERIC GPIO I2C DRIVER
4617 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
4618 S:      Supported
4619 F:      drivers/i2c/busses/i2c-gpio.c
4620 F:      include/linux/i2c-gpio.h
4621
4622 GENERIC GPIO I2C MULTIPLEXER DRIVER
4623 M:      Peter Korsgaard <peter.korsgaard@barco.com>
4624 L:      linux-i2c@vger.kernel.org
4625 S:      Supported
4626 F:      drivers/i2c/muxes/i2c-mux-gpio.c
4627 F:      include/linux/i2c-mux-gpio.h
4628 F:      Documentation/i2c/muxes/i2c-mux-gpio
4629
4630 GENERIC HDLC (WAN) DRIVERS
4631 M:      Krzysztof Halasa <khc@pm.waw.pl>
4632 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
4633 S:      Maintained
4634 F:      drivers/net/wan/c101.c
4635 F:      drivers/net/wan/hd6457*
4636 F:      drivers/net/wan/hdlc*
4637 F:      drivers/net/wan/n2.c
4638 F:      drivers/net/wan/pc300too.c
4639 F:      drivers/net/wan/pci200syn.c
4640 F:      drivers/net/wan/wanxl*
4641
4642 GENERIC INCLUDE/ASM HEADER FILES
4643 M:      Arnd Bergmann <arnd@arndb.de>
4644 L:      linux-arch@vger.kernel.org
4645 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
4646 S:      Maintained
4647 F:      include/asm-generic/
4648 F:      include/uapi/asm-generic/
4649
4650 GENERIC PHY FRAMEWORK
4651 M:      Kishon Vijay Abraham I <kishon@ti.com>
4652 L:      linux-kernel@vger.kernel.org
4653 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
4654 S:      Supported
4655 F:      drivers/phy/
4656 F:      include/linux/phy/
4657
4658 GENERIC PM DOMAINS
4659 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4660 M:      Kevin Hilman <khilman@kernel.org>
4661 M:      Ulf Hansson <ulf.hansson@linaro.org>
4662 L:      linux-pm@vger.kernel.org
4663 S:      Supported
4664 F:      drivers/base/power/domain*.c
4665 F:      include/linux/pm_domain.h
4666
4667 GENERIC UIO DRIVER FOR PCI DEVICES
4668 M:      "Michael S. Tsirkin" <mst@redhat.com>
4669 L:      kvm@vger.kernel.org
4670 S:      Supported
4671 F:      drivers/uio/uio_pci_generic.c
4672
4673 GET_MAINTAINER SCRIPT
4674 M:      Joe Perches <joe@perches.com>
4675 S:      Maintained
4676 F:      scripts/get_maintainer.pl
4677
4678 GFS2 FILE SYSTEM
4679 M:      Steven Whitehouse <swhiteho@redhat.com>
4680 M:      Bob Peterson <rpeterso@redhat.com>
4681 L:      cluster-devel@redhat.com
4682 W:      http://sources.redhat.com/cluster/
4683 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
4684 S:      Supported
4685 F:      Documentation/filesystems/gfs2*.txt
4686 F:      fs/gfs2/
4687 F:      include/uapi/linux/gfs2_ondisk.h
4688
4689 GIGASET ISDN DRIVERS
4690 M:      Paul Bolle <pebolle@tiscali.nl>
4691 L:      gigaset307x-common@lists.sourceforge.net
4692 W:      http://gigaset307x.sourceforge.net/
4693 S:      Odd Fixes
4694 F:      Documentation/isdn/README.gigaset
4695 F:      drivers/isdn/gigaset/
4696 F:      include/uapi/linux/gigaset_dev.h
4697
4698 GO7007 MPEG CODEC
4699 M:      Hans Verkuil <hans.verkuil@cisco.com>
4700 L:      linux-media@vger.kernel.org
4701 S:      Maintained
4702 F:      drivers/media/usb/go7007/
4703
4704 GOODIX TOUCHSCREEN
4705 M:      Bastien Nocera <hadess@hadess.net>
4706 L:      linux-input@vger.kernel.org
4707 S:      Maintained
4708 F:      drivers/input/touchscreen/goodix.c
4709
4710 GPIO SUBSYSTEM
4711 M:      Linus Walleij <linus.walleij@linaro.org>
4712 M:      Alexandre Courbot <gnurou@gmail.com>
4713 L:      linux-gpio@vger.kernel.org
4714 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
4715 S:      Maintained
4716 F:      Documentation/gpio/
4717 F:      drivers/gpio/
4718 F:      include/linux/gpio/
4719 F:      include/linux/gpio.h
4720 F:      include/asm-generic/gpio.h
4721
4722 GRE DEMULTIPLEXER DRIVER
4723 M:      Dmitry Kozlov <xeb@mail.ru>
4724 L:      netdev@vger.kernel.org
4725 S:      Maintained
4726 F:      net/ipv4/gre_demux.c
4727 F:      net/ipv4/gre_offload.c
4728 F:      include/net/gre.h
4729
4730 GRETH 10/100/1G Ethernet MAC device driver
4731 M:      Kristoffer Glembo <kristoffer@gaisler.com>
4732 L:      netdev@vger.kernel.org
4733 S:      Maintained
4734 F:      drivers/net/ethernet/aeroflex/
4735
4736 GSPCA FINEPIX SUBDRIVER
4737 M:      Frank Zago <frank@zago.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/finepix.c
4742
4743 GSPCA GL860 SUBDRIVER
4744 M:      Olivier Lorin <o.lorin@laposte.net>
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/gl860/
4749
4750 GSPCA M5602 SUBDRIVER
4751 M:      Erik Andren <erik.andren@gmail.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/m5602/
4756
4757 GSPCA PAC207 SONIXB SUBDRIVER
4758 M:      Hans de Goede <hdegoede@redhat.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/pac207.c
4763
4764 GSPCA SN9C20X SUBDRIVER
4765 M:      Brian Johnson <brijohn@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/sn9c20x.c
4770
4771 GSPCA T613 SUBDRIVER
4772 M:      Leandro Costantino <lcostantino@gmail.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/t613.c
4777
4778 GSPCA USB WEBCAM DRIVER
4779 M:      Hans de Goede <hdegoede@redhat.com>
4780 L:      linux-media@vger.kernel.org
4781 T:      git git://linuxtv.org/media_tree.git
4782 S:      Maintained
4783 F:      drivers/media/usb/gspca/
4784
4785 GUID PARTITION TABLE (GPT)
4786 M:      Davidlohr Bueso <dave@stgolabs.net>
4787 L:      linux-efi@vger.kernel.org
4788 S:      Maintained
4789 F:      block/partitions/efi.*
4790
4791 STK1160 USB VIDEO CAPTURE DRIVER
4792 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
4793 L:      linux-media@vger.kernel.org
4794 T:      git git://linuxtv.org/media_tree.git
4795 S:      Maintained
4796 F:      drivers/media/usb/stk1160/
4797
4798 H8/300 ARCHITECTURE
4799 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
4800 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
4801 W:      http://uclinux-h8.sourceforge.jp
4802 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
4803 S:      Maintained
4804 F:      arch/h8300/
4805 F:      drivers/clocksource/h8300_*.c
4806 F:      drivers/clk/h8300/
4807 F:      drivers/irqchip/irq-renesas-h8*.c
4808
4809 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
4810 M:      Frank Seidel <frank@f-seidel.de>
4811 L:      platform-driver-x86@vger.kernel.org
4812 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
4813 S:      Maintained
4814 F:      drivers/platform/x86/hdaps.c
4815
4816 HDPVR USB VIDEO ENCODER DRIVER
4817 M:      Hans Verkuil <hverkuil@xs4all.nl>
4818 L:      linux-media@vger.kernel.org
4819 T:      git git://linuxtv.org/media_tree.git
4820 W:      http://linuxtv.org
4821 S:      Odd Fixes
4822 F:      drivers/media/usb/hdpvr/
4823
4824 HWPOISON MEMORY FAILURE HANDLING
4825 M:      Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
4826 L:      linux-mm@kvack.org
4827 S:      Maintained
4828 F:      mm/memory-failure.c
4829 F:      mm/hwpoison-inject.c
4830
4831 HYPERVISOR VIRTUAL CONSOLE DRIVER
4832 L:      linuxppc-dev@lists.ozlabs.org
4833 S:      Odd Fixes
4834 F:      drivers/tty/hvc/
4835
4836 HACKRF MEDIA DRIVER
4837 M:      Antti Palosaari <crope@iki.fi>
4838 L:      linux-media@vger.kernel.org
4839 W:      http://linuxtv.org/
4840 W:      http://palosaari.fi/linux/
4841 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4842 T:      git git://linuxtv.org/anttip/media_tree.git
4843 S:      Maintained
4844 F:      drivers/media/usb/hackrf/
4845
4846 HARDWARE MONITORING
4847 M:      Jean Delvare <jdelvare@suse.com>
4848 M:      Guenter Roeck <linux@roeck-us.net>
4849 L:      lm-sensors@lm-sensors.org
4850 W:      http://www.lm-sensors.org/
4851 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/
4852 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
4853 S:      Maintained
4854 F:      Documentation/hwmon/
4855 F:      drivers/hwmon/
4856 F:      include/linux/hwmon*.h
4857
4858 HARDWARE RANDOM NUMBER GENERATOR CORE
4859 M:      Matt Mackall <mpm@selenic.com>
4860 M:      Herbert Xu <herbert@gondor.apana.org.au>
4861 L:      linux-crypto@vger.kernel.org
4862 S:      Odd fixes
4863 F:      Documentation/hw_random.txt
4864 F:      drivers/char/hw_random/
4865 F:      include/linux/hw_random.h
4866
4867 HARDWARE SPINLOCK CORE
4868 M:      Ohad Ben-Cohen <ohad@wizery.com>
4869 S:      Maintained
4870 F:      Documentation/hwspinlock.txt
4871 F:      drivers/hwspinlock/hwspinlock_*
4872 F:      include/linux/hwspinlock.h
4873
4874 HARMONY SOUND DRIVER
4875 L:      linux-parisc@vger.kernel.org
4876 S:      Maintained
4877 F:      sound/parisc/harmony.*
4878
4879 HD29L2 MEDIA DRIVER
4880 M:      Antti Palosaari <crope@iki.fi>
4881 L:      linux-media@vger.kernel.org
4882 W:      http://linuxtv.org/
4883 W:      http://palosaari.fi/linux/
4884 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4885 T:      git git://linuxtv.org/anttip/media_tree.git
4886 S:      Maintained
4887 F:      drivers/media/dvb-frontends/hd29l2*
4888
4889 HEWLETT-PACKARD SMART2 RAID DRIVER
4890 L:      iss_storagedev@hp.com
4891 S:      Orphan
4892 F:      Documentation/blockdev/cpqarray.txt
4893 F:      drivers/block/cpqarray.*
4894
4895 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
4896 M:      Don Brace <don.brace@pmcs.com>
4897 L:      iss_storagedev@hp.com
4898 L:      storagedev@pmcs.com
4899 L:      linux-scsi@vger.kernel.org
4900 S:      Supported
4901 F:      Documentation/scsi/hpsa.txt
4902 F:      drivers/scsi/hpsa*.[ch]
4903 F:      include/linux/cciss*.h
4904 F:      include/uapi/linux/cciss*.h
4905
4906 HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
4907 M:      Don Brace <don.brace@pmcs.com>
4908 L:      iss_storagedev@hp.com
4909 L:      storagedev@pmcs.com
4910 L:      linux-scsi@vger.kernel.org
4911 S:      Supported
4912 F:      Documentation/blockdev/cciss.txt
4913 F:      drivers/block/cciss*
4914 F:      include/linux/cciss_ioctl.h
4915 F:      include/uapi/linux/cciss_ioctl.h
4916
4917 HFS FILESYSTEM
4918 L:      linux-fsdevel@vger.kernel.org
4919 S:      Orphan
4920 F:      Documentation/filesystems/hfs.txt
4921 F:      fs/hfs/
4922
4923 HFSPLUS FILESYSTEM
4924 L:      linux-fsdevel@vger.kernel.org
4925 S:      Orphan
4926 F:      Documentation/filesystems/hfsplus.txt
4927 F:      fs/hfsplus/
4928
4929 HGA FRAMEBUFFER DRIVER
4930 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
4931 L:      linux-nvidia@lists.surfsouth.com
4932 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
4933 S:      Maintained
4934 F:      drivers/video/fbdev/hgafb.c
4935
4936 HIBERNATION (aka Software Suspend, aka swsusp)
4937 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4938 M:      Pavel Machek <pavel@ucw.cz>
4939 L:      linux-pm@vger.kernel.org
4940 S:      Supported
4941 F:      arch/x86/power/
4942 F:      drivers/base/power/
4943 F:      kernel/power/
4944 F:      include/linux/suspend.h
4945 F:      include/linux/freezer.h
4946 F:      include/linux/pm.h
4947 F:      arch/*/include/asm/suspend*.h
4948
4949 HID CORE LAYER
4950 M:      Jiri Kosina <jikos@kernel.org>
4951 L:      linux-input@vger.kernel.org
4952 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
4953 S:      Maintained
4954 F:      drivers/hid/
4955 F:      include/linux/hid*
4956 F:      include/uapi/linux/hid*
4957
4958 HID SENSOR HUB DRIVERS
4959 M:      Jiri Kosina <jikos@kernel.org>
4960 M:      Jonathan Cameron <jic23@kernel.org>
4961 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
4962 L:      linux-input@vger.kernel.org
4963 L:      linux-iio@vger.kernel.org
4964 S:      Maintained
4965 F:      Documentation/hid/hid-sensor*
4966 F:      drivers/hid/hid-sensor-*
4967 F:      drivers/iio/*/hid-*
4968 F:      include/linux/hid-sensor-*
4969
4970 HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
4971 M:      Thomas Gleixner <tglx@linutronix.de>
4972 L:      linux-kernel@vger.kernel.org
4973 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4974 S:      Maintained
4975 F:      Documentation/timers/
4976 F:      kernel/time/hrtimer.c
4977 F:      kernel/time/clockevents.c
4978 F:      kernel/time/tick*.*
4979 F:      kernel/time/timer_*.c
4980 F:      include/linux/clockchips.h
4981 F:      include/linux/hrtimer.h
4982
4983 HIGH-SPEED SCC DRIVER FOR AX.25
4984 L:      linux-hams@vger.kernel.org
4985 S:      Orphan
4986 F:      drivers/net/hamradio/dmascc.c
4987 F:      drivers/net/hamradio/scc.c
4988
4989 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
4990 M:      HighPoint Linux Team <linux@highpoint-tech.com>
4991 W:      http://www.highpoint-tech.com
4992 S:      Supported
4993 F:      Documentation/scsi/hptiop.txt
4994 F:      drivers/scsi/hptiop.c
4995
4996 HIPPI
4997 M:      Jes Sorensen <jes@trained-monkey.org>
4998 L:      linux-hippi@sunsite.dk
4999 S:      Maintained
5000 F:      include/linux/hippidevice.h
5001 F:      include/uapi/linux/if_hippi.h
5002 F:      net/802/hippi.c
5003 F:      drivers/net/hippi/
5004
5005 HOST AP DRIVER
5006 M:      Jouni Malinen <j@w1.fi>
5007 L:      hostap@shmoo.com (subscribers-only)
5008 L:      linux-wireless@vger.kernel.org
5009 W:      http://hostap.epitest.fi/
5010 S:      Maintained
5011 F:      drivers/net/wireless/hostap/
5012
5013 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
5014 L:      platform-driver-x86@vger.kernel.org
5015 S:      Orphan
5016 F:      drivers/platform/x86/tc1100-wmi.c
5017
5018 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
5019 M:      Jaroslav Kysela <perex@perex.cz>
5020 S:      Maintained
5021 F:      drivers/net/ethernet/hp/hp100.*
5022
5023 HPET:   High Precision Event Timers driver
5024 M:      Clemens Ladisch <clemens@ladisch.de>
5025 S:      Maintained
5026 F:      Documentation/timers/hpet.txt
5027 F:      drivers/char/hpet.c
5028 F:      include/linux/hpet.h
5029 F:      include/uapi/linux/hpet.h
5030
5031 HPET:   x86
5032 S:      Orphan
5033 F:      arch/x86/kernel/hpet.c
5034 F:      arch/x86/include/asm/hpet.h
5035
5036 HPFS FILESYSTEM
5037 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
5038 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
5039 S:      Maintained
5040 F:      fs/hpfs/
5041
5042 HSI SUBSYSTEM
5043 M:      Sebastian Reichel <sre@kernel.org>
5044 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
5045 S:      Maintained
5046 F:      Documentation/ABI/testing/sysfs-bus-hsi
5047 F:      Documentation/hsi.txt
5048 F:      drivers/hsi/
5049 F:      include/linux/hsi/
5050 F:      include/uapi/linux/hsi/
5051
5052 HSO 3G MODEM DRIVER
5053 M:      Jan Dumon <j.dumon@option.com>
5054 W:      http://www.pharscape.org
5055 S:      Maintained
5056 F:      drivers/net/usb/hso.c
5057
5058 HSR NETWORK PROTOCOL
5059 M:      Arvid Brodin <arvid.brodin@alten.se>
5060 L:      netdev@vger.kernel.org
5061 S:      Maintained
5062 F:      net/hsr/
5063
5064 HTCPEN TOUCHSCREEN DRIVER
5065 M:      Pau Oliva Fora <pof@eslack.org>
5066 L:      linux-input@vger.kernel.org
5067 S:      Maintained
5068 F:      drivers/input/touchscreen/htcpen.c
5069
5070 HUGETLB FILESYSTEM
5071 M:      Nadia Yvette Chambers <nyc@holomorphy.com>
5072 S:      Maintained
5073 F:      fs/hugetlbfs/
5074
5075 Hyper-V CORE AND DRIVERS
5076 M:      "K. Y. Srinivasan" <kys@microsoft.com>
5077 M:      Haiyang Zhang <haiyangz@microsoft.com>
5078 L:      devel@linuxdriverproject.org
5079 S:      Maintained
5080 F:      arch/x86/include/asm/mshyperv.h
5081 F:      arch/x86/include/uapi/asm/hyperv.h
5082 F:      arch/x86/kernel/cpu/mshyperv.c
5083 F:      drivers/hid/hid-hyperv.c
5084 F:      drivers/hv/
5085 F:      drivers/input/serio/hyperv-keyboard.c
5086 F:      drivers/net/hyperv/
5087 F:      drivers/scsi/storvsc_drv.c
5088 F:      drivers/video/fbdev/hyperv_fb.c
5089 F:      include/linux/hyperv.h
5090 F:      tools/hv/
5091 F:      Documentation/ABI/stable/sysfs-bus-vmbus
5092
5093 I2C OVER PARALLEL PORT
5094 M:      Jean Delvare <jdelvare@suse.com>
5095 L:      linux-i2c@vger.kernel.org
5096 S:      Maintained
5097 F:      Documentation/i2c/busses/i2c-parport
5098 F:      Documentation/i2c/busses/i2c-parport-light
5099 F:      drivers/i2c/busses/i2c-parport.c
5100 F:      drivers/i2c/busses/i2c-parport-light.c
5101
5102 I2C/SMBUS CONTROLLER DRIVERS FOR PC
5103 M:      Jean Delvare <jdelvare@suse.com>
5104 L:      linux-i2c@vger.kernel.org
5105 S:      Maintained
5106 F:      Documentation/i2c/busses/i2c-ali1535
5107 F:      Documentation/i2c/busses/i2c-ali1563
5108 F:      Documentation/i2c/busses/i2c-ali15x3
5109 F:      Documentation/i2c/busses/i2c-amd756
5110 F:      Documentation/i2c/busses/i2c-amd8111
5111 F:      Documentation/i2c/busses/i2c-i801
5112 F:      Documentation/i2c/busses/i2c-nforce2
5113 F:      Documentation/i2c/busses/i2c-piix4
5114 F:      Documentation/i2c/busses/i2c-sis5595
5115 F:      Documentation/i2c/busses/i2c-sis630
5116 F:      Documentation/i2c/busses/i2c-sis96x
5117 F:      Documentation/i2c/busses/i2c-via
5118 F:      Documentation/i2c/busses/i2c-viapro
5119 F:      drivers/i2c/busses/i2c-ali1535.c
5120 F:      drivers/i2c/busses/i2c-ali1563.c
5121 F:      drivers/i2c/busses/i2c-ali15x3.c
5122 F:      drivers/i2c/busses/i2c-amd756.c
5123 F:      drivers/i2c/busses/i2c-amd756-s4882.c
5124 F:      drivers/i2c/busses/i2c-amd8111.c
5125 F:      drivers/i2c/busses/i2c-i801.c
5126 F:      drivers/i2c/busses/i2c-isch.c
5127 F:      drivers/i2c/busses/i2c-nforce2.c
5128 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
5129 F:      drivers/i2c/busses/i2c-piix4.c
5130 F:      drivers/i2c/busses/i2c-sis5595.c
5131 F:      drivers/i2c/busses/i2c-sis630.c
5132 F:      drivers/i2c/busses/i2c-sis96x.c
5133 F:      drivers/i2c/busses/i2c-via.c
5134 F:      drivers/i2c/busses/i2c-viapro.c
5135
5136 I2C/SMBUS ISMT DRIVER
5137 M:      Seth Heasley <seth.heasley@intel.com>
5138 M:      Neil Horman <nhorman@tuxdriver.com>
5139 L:      linux-i2c@vger.kernel.org
5140 F:      drivers/i2c/busses/i2c-ismt.c
5141 F:      Documentation/i2c/busses/i2c-ismt
5142
5143 I2C/SMBUS STUB DRIVER
5144 M:      Jean Delvare <jdelvare@suse.com>
5145 L:      linux-i2c@vger.kernel.org
5146 S:      Maintained
5147 F:      drivers/i2c/i2c-stub.c
5148
5149 I2C SUBSYSTEM
5150 M:      Wolfram Sang <wsa@the-dreams.de>
5151 L:      linux-i2c@vger.kernel.org
5152 W:      https://i2c.wiki.kernel.org/
5153 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
5154 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
5155 S:      Maintained
5156 F:      Documentation/devicetree/bindings/i2c/
5157 F:      Documentation/i2c/
5158 F:      drivers/i2c/
5159 F:      drivers/i2c/*/
5160 F:      include/linux/i2c.h
5161 F:      include/linux/i2c-*.h
5162 F:      include/uapi/linux/i2c.h
5163 F:      include/uapi/linux/i2c-*.h
5164
5165 I2C ACPI SUPPORT
5166 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
5167 L:      linux-i2c@vger.kernel.org
5168 L:      linux-acpi@vger.kernel.org
5169 S:      Maintained
5170
5171 I2C-TAOS-EVM DRIVER
5172 M:      Jean Delvare <jdelvare@suse.com>
5173 L:      linux-i2c@vger.kernel.org
5174 S:      Maintained
5175 F:      Documentation/i2c/busses/i2c-taos-evm
5176 F:      drivers/i2c/busses/i2c-taos-evm.c
5177
5178 I2C-TINY-USB DRIVER
5179 M:      Till Harbaum <till@harbaum.org>
5180 L:      linux-i2c@vger.kernel.org
5181 W:      http://www.harbaum.org/till/i2c_tiny_usb
5182 S:      Maintained
5183 F:      drivers/i2c/busses/i2c-tiny-usb.c
5184
5185 i386 BOOT CODE
5186 M:      "H. Peter Anvin" <hpa@zytor.com>
5187 S:      Maintained
5188 F:      arch/x86/boot/
5189
5190 i386 SETUP CODE / CPU ERRATA WORKAROUNDS
5191 M:      "H. Peter Anvin" <hpa@zytor.com>
5192 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
5193 S:      Maintained
5194
5195 IA64 (Itanium) PLATFORM
5196 M:      Tony Luck <tony.luck@intel.com>
5197 M:      Fenghua Yu <fenghua.yu@intel.com>
5198 L:      linux-ia64@vger.kernel.org
5199 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
5200 S:      Maintained
5201 F:      arch/ia64/
5202
5203 IBM Power VMX Cryptographic instructions
5204 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5205 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5206 L:      linux-crypto@vger.kernel.org
5207 S:      Supported
5208 F:      drivers/crypto/vmx/Makefile
5209 F:      drivers/crypto/vmx/Kconfig
5210 F:      drivers/crypto/vmx/vmx.c
5211 F:      drivers/crypto/vmx/aes*
5212 F:      drivers/crypto/vmx/ghash*
5213 F:      drivers/crypto/vmx/ppc-xlate.pl
5214
5215 IBM Power in-Nest Crypto Acceleration
5216 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5217 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5218 L:      linux-crypto@vger.kernel.org
5219 S:      Supported
5220 F:      drivers/crypto/nx/Makefile
5221 F:      drivers/crypto/nx/Kconfig
5222 F:      drivers/crypto/nx/nx-aes*
5223 F:      drivers/crypto/nx/nx-sha*
5224 F:      drivers/crypto/nx/nx.*
5225 F:      drivers/crypto/nx/nx_csbcpb.h
5226 F:      drivers/crypto/nx/nx_debugfs.h
5227
5228 IBM Power 842 compression accelerator
5229 M:      Dan Streetman <ddstreet@ieee.org>
5230 S:      Supported
5231 F:      drivers/crypto/nx/Makefile
5232 F:      drivers/crypto/nx/Kconfig
5233 F:      drivers/crypto/nx/nx-842*
5234 F:      include/linux/sw842.h
5235 F:      crypto/842.c
5236 F:      lib/842/
5237
5238 IBM Power Linux RAID adapter
5239 M:      Brian King <brking@us.ibm.com>
5240 S:      Supported
5241 F:      drivers/scsi/ipr.*
5242
5243 IBM Power Virtual Ethernet Device Driver
5244 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
5245 L:      netdev@vger.kernel.org
5246 S:      Supported
5247 F:      drivers/net/ethernet/ibm/ibmveth.*
5248
5249 IBM Power Virtual SCSI 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/ibmvscsi*
5254 F:      drivers/scsi/ibmvscsi/viosrp.h
5255
5256 IBM Power Virtual FC Device Drivers
5257 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5258 L:      linux-scsi@vger.kernel.org
5259 S:      Supported
5260 F:      drivers/scsi/ibmvscsi/ibmvfc*
5261
5262 IBM ServeRAID RAID DRIVER
5263 S:      Orphan
5264 F:      drivers/scsi/ips.*
5265
5266 ICH LPC AND GPIO DRIVER
5267 M:      Peter Tyser <ptyser@xes-inc.com>
5268 S:      Maintained
5269 F:      drivers/mfd/lpc_ich.c
5270 F:      drivers/gpio/gpio-ich.c
5271
5272 IDE SUBSYSTEM
5273 M:      "David S. Miller" <davem@davemloft.net>
5274 L:      linux-ide@vger.kernel.org
5275 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
5276 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
5277 S:      Maintained
5278 F:      Documentation/ide/
5279 F:      drivers/ide/
5280 F:      include/linux/ide.h
5281
5282 IDEAPAD LAPTOP EXTRAS DRIVER
5283 M:      Ike Panhc <ike.pan@canonical.com>
5284 L:      platform-driver-x86@vger.kernel.org
5285 W:      http://launchpad.net/ideapad-laptop
5286 S:      Maintained
5287 F:      drivers/platform/x86/ideapad-laptop.c
5288
5289 IDEAPAD LAPTOP SLIDEBAR DRIVER
5290 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
5291 L:      linux-input@vger.kernel.org
5292 W:      https://github.com/o2genum/ideapad-slidebar
5293 S:      Maintained
5294 F:      drivers/input/misc/ideapad_slidebar.c
5295
5296 IDE/ATAPI DRIVERS
5297 M:      Borislav Petkov <bp@alien8.de>
5298 L:      linux-ide@vger.kernel.org
5299 S:      Maintained
5300 F:      Documentation/cdrom/ide-cd
5301 F:      drivers/ide/ide-cd*
5302
5303 IDLE-I7300
5304 M:      Andy Henroid <andrew.d.henroid@intel.com>
5305 L:      linux-pm@vger.kernel.org
5306 S:      Supported
5307 F:      drivers/idle/i7300_idle.c
5308
5309 IEEE 802.15.4 SUBSYSTEM
5310 M:      Alexander Aring <alex.aring@gmail.com>
5311 L:      linux-wpan@vger.kernel.org
5312 W:      https://github.com/linux-wpan
5313 T:      git git://github.com/linux-wpan/linux-wpan-next.git
5314 S:      Maintained
5315 F:      net/ieee802154/
5316 F:      net/mac802154/
5317 F:      drivers/net/ieee802154/
5318 F:      include/linux/nl802154.h
5319 F:      include/linux/ieee802154.h
5320 F:      include/net/nl802154.h
5321 F:      include/net/mac802154.h
5322 F:      include/net/af_ieee802154.h
5323 F:      include/net/cfg802154.h
5324 F:      include/net/ieee802154_netdev.h
5325 F:      Documentation/networking/ieee802154.txt
5326
5327 IGORPLUG-USB IR RECEIVER
5328 M:      Sean Young <sean@mess.org>
5329 L:      linux-media@vger.kernel.org
5330 S:      Maintained
5331 F:      drivers/media/rc/igorplugusb.c
5332
5333 IGUANAWORKS USB IR TRANSCEIVER
5334 M:      Sean Young <sean@mess.org>
5335 L:      linux-media@vger.kernel.org
5336 S:      Maintained
5337 F:      drivers/media/rc/iguanair.c
5338
5339 IIO SUBSYSTEM AND DRIVERS
5340 M:      Jonathan Cameron <jic23@kernel.org>
5341 R:      Hartmut Knaack <knaack.h@gmx.de>
5342 R:      Lars-Peter Clausen <lars@metafoo.de>
5343 R:      Peter Meerwald <pmeerw@pmeerw.net>
5344 L:      linux-iio@vger.kernel.org
5345 S:      Maintained
5346 F:      drivers/iio/
5347 F:      drivers/staging/iio/
5348 F:      include/linux/iio/
5349 F:      tools/iio/
5350
5351 IKANOS/ADI EAGLE ADSL USB DRIVER
5352 M:      Matthieu Castet <castet.matthieu@free.fr>
5353 M:      Stanislaw Gruszka <stf_xl@wp.pl>
5354 S:      Maintained
5355 F:      drivers/usb/atm/ueagle-atm.c
5356
5357 INA209 HARDWARE MONITOR DRIVER
5358 M:      Guenter Roeck <linux@roeck-us.net>
5359 L:      lm-sensors@lm-sensors.org
5360 S:      Maintained
5361 F:      Documentation/hwmon/ina209
5362 F:      Documentation/devicetree/bindings/i2c/ina209.txt
5363 F:      drivers/hwmon/ina209.c
5364
5365 INA2XX HARDWARE MONITOR DRIVER
5366 M:      Guenter Roeck <linux@roeck-us.net>
5367 L:      lm-sensors@lm-sensors.org
5368 S:      Maintained
5369 F:      Documentation/hwmon/ina2xx
5370 F:      drivers/hwmon/ina2xx.c
5371 F:      include/linux/platform_data/ina2xx.h
5372
5373 INDUSTRY PACK SUBSYSTEM (IPACK)
5374 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
5375 M:      Jens Taprogge <jens.taprogge@taprogge.org>
5376 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5377 L:      industrypack-devel@lists.sourceforge.net
5378 W:      http://industrypack.sourceforge.net
5379 S:      Maintained
5380 F:      drivers/ipack/
5381
5382 INGENIC JZ4780 DMA Driver
5383 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
5384 S:      Maintained
5385 F:      drivers/dma/dma-jz4780.c
5386
5387 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
5388 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
5389 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
5390 L:      linux-ima-devel@lists.sourceforge.net
5391 L:      linux-ima-user@lists.sourceforge.net
5392 L:      linux-security-module@vger.kernel.org
5393 S:      Supported
5394 F:      security/integrity/ima/
5395
5396 IMGTEC IR DECODER DRIVER
5397 M:      James Hogan <james.hogan@imgtec.com>
5398 S:      Maintained
5399 F:      drivers/media/rc/img-ir/
5400
5401 IMS TWINTURBO FRAMEBUFFER DRIVER
5402 L:      linux-fbdev@vger.kernel.org
5403 S:      Orphan
5404 F:      drivers/video/fbdev/imsttfb.c
5405
5406 INFINIBAND SUBSYSTEM
5407 M:      Doug Ledford <dledford@redhat.com>
5408 M:      Sean Hefty <sean.hefty@intel.com>
5409 M:      Hal Rosenstock <hal.rosenstock@gmail.com>
5410 L:      linux-rdma@vger.kernel.org
5411 W:      http://www.openfabrics.org/
5412 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5413 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git
5414 S:      Supported
5415 F:      Documentation/infiniband/
5416 F:      drivers/infiniband/
5417 F:      drivers/staging/rdma/
5418 F:      include/uapi/linux/if_infiniband.h
5419 F:      include/uapi/rdma/
5420 F:      include/rdma/
5421
5422 INOTIFY
5423 M:      John McCutchan <john@johnmccutchan.com>
5424 M:      Robert Love <rlove@rlove.org>
5425 M:      Eric Paris <eparis@parisplace.org>
5426 S:      Maintained
5427 F:      Documentation/filesystems/inotify.txt
5428 F:      fs/notify/inotify/
5429 F:      include/linux/inotify.h
5430 F:      include/uapi/linux/inotify.h
5431
5432 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
5433 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
5434 L:      linux-input@vger.kernel.org
5435 Q:      http://patchwork.kernel.org/project/linux-input/list/
5436 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
5437 S:      Maintained
5438 F:      drivers/input/
5439 F:      include/linux/input.h
5440 F:      include/uapi/linux/input.h
5441 F:      include/linux/input/
5442
5443 INPUT MULTITOUCH (MT) PROTOCOL
5444 M:      Henrik Rydberg <rydberg@bitmath.org>
5445 L:      linux-input@vger.kernel.org
5446 S:      Odd fixes
5447 F:      Documentation/input/multi-touch-protocol.txt
5448 F:      drivers/input/input-mt.c
5449 K:      \b(ABS|SYN)_MT_
5450
5451 INTEL ASoC BDW/HSW DRIVERS
5452 M:      Jie Yang <yang.jie@linux.intel.com>
5453 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5454 S:      Supported
5455 F:      sound/soc/intel/common/sst-dsp*
5456 F:      sound/soc/intel/common/sst-firmware.c
5457 F:      sound/soc/intel/boards/broadwell.c
5458 F:      sound/soc/intel/haswell/
5459
5460 INTEL C600 SERIES SAS CONTROLLER DRIVER
5461 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
5462 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
5463 L:      linux-scsi@vger.kernel.org
5464 T:      git git://git.code.sf.net/p/intel-sas/isci
5465 S:      Supported
5466 F:      drivers/scsi/isci/
5467
5468 INTEL IDLE DRIVER
5469 M:      Len Brown <lenb@kernel.org>
5470 L:      linux-pm@vger.kernel.org
5471 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
5472 S:      Supported
5473 F:      drivers/idle/intel_idle.c
5474
5475 INTEL PSTATE DRIVER
5476 M:      Kristen Carlson Accardi <kristen@linux.intel.com>
5477 L:      linux-pm@vger.kernel.org
5478 S:      Supported
5479 F:      drivers/cpufreq/intel_pstate.c
5480
5481 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
5482 M:      Maik Broemme <mbroemme@plusserver.de>
5483 L:      linux-fbdev@vger.kernel.org
5484 S:      Maintained
5485 F:      Documentation/fb/intelfb.txt
5486 F:      drivers/video/fbdev/intelfb/
5487
5488 INTEL 810/815 FRAMEBUFFER DRIVER
5489 M:      Antonino Daplas <adaplas@gmail.com>
5490 L:      linux-fbdev@vger.kernel.org
5491 S:      Maintained
5492 F:      drivers/video/fbdev/i810/
5493
5494 INTEL MENLOW THERMAL DRIVER
5495 M:      Sujith Thomas <sujith.thomas@intel.com>
5496 L:      platform-driver-x86@vger.kernel.org
5497 W:      https://01.org/linux-acpi
5498 S:      Supported
5499 F:      drivers/platform/x86/intel_menlow.c
5500
5501 INTEL I/OAT DMA DRIVER
5502 M:      Dave Jiang <dave.jiang@intel.com>
5503 R:      Dan Williams <dan.j.williams@intel.com>
5504 L:      dmaengine@vger.kernel.org
5505 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5506 S:      Supported
5507 F:      drivers/dma/ioat*
5508
5509 INTEL IOMMU (VT-d)
5510 M:      David Woodhouse <dwmw2@infradead.org>
5511 L:      iommu@lists.linux-foundation.org
5512 T:      git git://git.infradead.org/iommu-2.6.git
5513 S:      Supported
5514 F:      drivers/iommu/intel-iommu.c
5515 F:      include/linux/intel-iommu.h
5516
5517 INTEL IOP-ADMA DMA DRIVER
5518 R:      Dan Williams <dan.j.williams@intel.com>
5519 S:      Odd fixes
5520 F:      drivers/dma/iop-adma.c
5521
5522 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
5523 M:      Krzysztof Halasa <khalasa@piap.pl>
5524 S:      Maintained
5525 F:      arch/arm/mach-ixp4xx/include/mach/qmgr.h
5526 F:      arch/arm/mach-ixp4xx/include/mach/npe.h
5527 F:      arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
5528 F:      arch/arm/mach-ixp4xx/ixp4xx_npe.c
5529 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
5530 F:      drivers/net/wan/ixp4xx_hss.c
5531
5532 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
5533 M:      Deepak Saxena <dsaxena@plexity.net>
5534 S:      Maintained
5535 F:      drivers/char/hw_random/ixp4xx-rng.c
5536
5537 INTEL ETHERNET DRIVERS
5538 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
5539 R:      Jesse Brandeburg <jesse.brandeburg@intel.com>
5540 R:      Shannon Nelson <shannon.nelson@intel.com>
5541 R:      Carolyn Wyborny <carolyn.wyborny@intel.com>
5542 R:      Don Skidmore <donald.c.skidmore@intel.com>
5543 R:      Matthew Vick <matthew.vick@intel.com>
5544 R:      John Ronciak <john.ronciak@intel.com>
5545 R:      Mitch Williams <mitch.a.williams@intel.com>
5546 L:      intel-wired-lan@lists.osuosl.org
5547 W:      http://www.intel.com/support/feedback.htm
5548 W:      http://e1000.sourceforge.net/
5549 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
5550 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
5551 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
5552 S:      Supported
5553 F:      Documentation/networking/e100.txt
5554 F:      Documentation/networking/e1000.txt
5555 F:      Documentation/networking/e1000e.txt
5556 F:      Documentation/networking/igb.txt
5557 F:      Documentation/networking/igbvf.txt
5558 F:      Documentation/networking/ixgb.txt
5559 F:      Documentation/networking/ixgbe.txt
5560 F:      Documentation/networking/ixgbevf.txt
5561 F:      Documentation/networking/i40e.txt
5562 F:      Documentation/networking/i40evf.txt
5563 F:      drivers/net/ethernet/intel/
5564 F:      drivers/net/ethernet/intel/*/
5565
5566 INTEL-MID GPIO DRIVER
5567 M:      David Cohen <david.a.cohen@linux.intel.com>
5568 L:      linux-gpio@vger.kernel.org
5569 S:      Maintained
5570 F:      drivers/gpio/gpio-intel-mid.c
5571
5572 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
5573 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
5574 L:      linux-wireless@vger.kernel.org
5575 S:      Maintained
5576 F:      Documentation/networking/README.ipw2100
5577 F:      Documentation/networking/README.ipw2200
5578 F:      drivers/net/wireless/ipw2x00/
5579
5580 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
5581 M:      Richard L Maliszewski <richard.l.maliszewski@intel.com>
5582 M:      Gang Wei <gang.wei@intel.com>
5583 M:      Shane Wang <shane.wang@intel.com>
5584 L:      tboot-devel@lists.sourceforge.net
5585 W:      http://tboot.sourceforge.net
5586 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
5587 S:      Supported
5588 F:      Documentation/intel_txt.txt
5589 F:      include/linux/tboot.h
5590 F:      arch/x86/kernel/tboot.c
5591
5592 INTEL WIRELESS WIMAX CONNECTION 2400
5593 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
5594 M:      linux-wimax@intel.com
5595 L:      wimax@linuxwimax.org (subscribers-only)
5596 S:      Supported
5597 W:      http://linuxwimax.org
5598 F:      Documentation/wimax/README.i2400m
5599 F:      drivers/net/wimax/i2400m/
5600 F:      include/uapi/linux/wimax/i2400m.h
5601
5602 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
5603 M:      Stanislaw Gruszka <sgruszka@redhat.com>
5604 L:      linux-wireless@vger.kernel.org
5605 S:      Supported
5606 F:      drivers/net/wireless/iwlegacy/
5607
5608 INTEL WIRELESS WIFI LINK (iwlwifi)
5609 M:      Johannes Berg <johannes.berg@intel.com>
5610 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
5611 M:      Intel Linux Wireless <linuxwifi@intel.com>
5612 L:      linux-wireless@vger.kernel.org
5613 W:      http://intellinuxwireless.org
5614 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
5615 S:      Supported
5616 F:      drivers/net/wireless/iwlwifi/
5617
5618 INTEL MANAGEMENT ENGINE (mei)
5619 M:      Tomas Winkler <tomas.winkler@intel.com>
5620 L:      linux-kernel@vger.kernel.org
5621 S:      Supported
5622 F:      include/uapi/linux/mei.h
5623 F:      include/linux/mei_cl_bus.h
5624 F:      drivers/misc/mei/*
5625 F:      Documentation/misc-devices/mei/*
5626
5627 INTEL PMC IPC DRIVER
5628 M:      Zha Qipeng<qipeng.zha@intel.com>
5629 L:      platform-driver-x86@vger.kernel.org
5630 S:      Maintained
5631 F:      drivers/platform/x86/intel_pmc_ipc.c
5632 F:      arch/x86/include/asm/intel_pmc_ipc.h
5633
5634 IOC3 ETHERNET DRIVER
5635 M:      Ralf Baechle <ralf@linux-mips.org>
5636 L:      linux-mips@linux-mips.org
5637 S:      Maintained
5638 F:      drivers/net/ethernet/sgi/ioc3-eth.c
5639
5640 IOC3 SERIAL DRIVER
5641 M:      Pat Gefre <pfg@sgi.com>
5642 L:      linux-serial@vger.kernel.org
5643 S:      Maintained
5644 F:      drivers/tty/serial/ioc3_serial.c
5645
5646 IOMMU DRIVERS
5647 M:      Joerg Roedel <joro@8bytes.org>
5648 L:      iommu@lists.linux-foundation.org
5649 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
5650 S:      Maintained
5651 F:      drivers/iommu/
5652
5653 IP MASQUERADING
5654 M:      Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
5655 S:      Maintained
5656 F:      net/ipv4/netfilter/ipt_MASQUERADE.c
5657
5658 IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
5659 M:      Francois Romieu <romieu@fr.zoreil.com>
5660 M:      Sorbica Shieh <sorbica@icplus.com.tw>
5661 L:      netdev@vger.kernel.org
5662 S:      Maintained
5663 F:      drivers/net/ethernet/icplus/ipg.*
5664
5665 IPATH DRIVER
5666 M:      Mike Marciniszyn <infinipath@intel.com>
5667 L:      linux-rdma@vger.kernel.org
5668 S:      Maintained
5669 F:      drivers/staging/rdma/ipath/
5670
5671 IPMI SUBSYSTEM
5672 M:      Corey Minyard <minyard@acm.org>
5673 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
5674 W:      http://openipmi.sourceforge.net/
5675 S:      Supported
5676 F:      Documentation/IPMI.txt
5677 F:      drivers/char/ipmi/
5678 F:      include/linux/ipmi*
5679 F:      include/uapi/linux/ipmi*
5680
5681 QCOM AUDIO (ASoC) DRIVERS
5682 M:      Patrick Lai <plai@codeaurora.org>
5683 M:      Banajit Goswami <bgoswami@codeaurora.org>
5684 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5685 S:      Supported
5686 F:      sound/soc/qcom/
5687
5688 IPS SCSI RAID DRIVER
5689 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
5690 L:      linux-scsi@vger.kernel.org
5691 W:      http://www.adaptec.com/
5692 S:      Maintained
5693 F:      drivers/scsi/ips*
5694
5695 IPVS
5696 M:      Wensong Zhang <wensong@linux-vs.org>
5697 M:      Simon Horman <horms@verge.net.au>
5698 M:      Julian Anastasov <ja@ssi.bg>
5699 L:      netdev@vger.kernel.org
5700 L:      lvs-devel@vger.kernel.org
5701 S:      Maintained
5702 F:      Documentation/networking/ipvs-sysctl.txt
5703 F:      include/net/ip_vs.h
5704 F:      include/uapi/linux/ip_vs.h
5705 F:      net/netfilter/ipvs/
5706
5707 IPWIRELESS DRIVER
5708 M:      Jiri Kosina <jikos@kernel.org>
5709 M:      David Sterba <dsterba@suse.com>
5710 S:      Odd Fixes
5711 F:      drivers/tty/ipwireless/
5712
5713 IPX NETWORK LAYER
5714 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
5715 L:      netdev@vger.kernel.org
5716 S:      Maintained
5717 F:      include/net/ipx.h
5718 F:      include/uapi/linux/ipx.h
5719 F:      net/ipx/
5720
5721 IRDA SUBSYSTEM
5722 M:      Samuel Ortiz <samuel@sortiz.org>
5723 L:      irda-users@lists.sourceforge.net (subscribers-only)
5724 L:      netdev@vger.kernel.org
5725 W:      http://irda.sourceforge.net/
5726 S:      Maintained
5727 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
5728 F:      Documentation/networking/irda.txt
5729 F:      drivers/net/irda/
5730 F:      include/net/irda/
5731 F:      net/irda/
5732
5733 IRQ SUBSYSTEM
5734 M:      Thomas Gleixner <tglx@linutronix.de>
5735 L:      linux-kernel@vger.kernel.org
5736 S:      Maintained
5737 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5738 F:      kernel/irq/
5739
5740 IRQCHIP DRIVERS
5741 M:      Thomas Gleixner <tglx@linutronix.de>
5742 M:      Jason Cooper <jason@lakedaemon.net>
5743 M:      Marc Zyngier <marc.zyngier@arm.com>
5744 L:      linux-kernel@vger.kernel.org
5745 S:      Maintained
5746 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5747 T:      git git://git.infradead.org/users/jcooper/linux.git irqchip/core
5748 F:      Documentation/devicetree/bindings/interrupt-controller/
5749 F:      drivers/irqchip/
5750
5751 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
5752 M:      Jiang Liu <jiang.liu@linux.intel.com>
5753 M:      Marc Zyngier <marc.zyngier@arm.com>
5754 S:      Maintained
5755 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5756 F:      Documentation/IRQ-domain.txt
5757 F:      include/linux/irqdomain.h
5758 F:      kernel/irq/irqdomain.c
5759 F:      kernel/irq/msi.c
5760
5761 ISAPNP
5762 M:      Jaroslav Kysela <perex@perex.cz>
5763 S:      Maintained
5764 F:      Documentation/isapnp.txt
5765 F:      drivers/pnp/isapnp/
5766 F:      include/linux/isapnp.h
5767
5768 ISA RADIO MODULE
5769 M:      Hans Verkuil <hverkuil@xs4all.nl>
5770 L:      linux-media@vger.kernel.org
5771 T:      git git://linuxtv.org/media_tree.git
5772 W:      http://linuxtv.org
5773 S:      Maintained
5774 F:      drivers/media/radio/radio-isa*
5775
5776 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
5777 M:      Peter Jones <pjones@redhat.com>
5778 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
5779 S:      Maintained
5780 F:      drivers/firmware/iscsi_ibft*
5781
5782 ISCSI
5783 M:      Mike Christie <michaelc@cs.wisc.edu>
5784 L:      open-iscsi@googlegroups.com
5785 W:      www.open-iscsi.org
5786 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
5787 S:      Maintained
5788 F:      drivers/scsi/*iscsi*
5789 F:      include/scsi/*iscsi*
5790
5791 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
5792 M:      Or Gerlitz <ogerlitz@mellanox.com>
5793 M:      Sagi Grimberg <sagig@mellanox.com>
5794 M:      Roi Dayan <roid@mellanox.com>
5795 L:      linux-rdma@vger.kernel.org
5796 S:      Supported
5797 W:      http://www.openfabrics.org
5798 W:      www.open-iscsi.org
5799 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5800 F:      drivers/infiniband/ulp/iser/
5801
5802 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
5803 M:      Sagi Grimberg <sagig@mellanox.com>
5804 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
5805 L:      linux-rdma@vger.kernel.org
5806 L:      target-devel@vger.kernel.org
5807 S:      Supported
5808 W:      http://www.linux-iscsi.org
5809 F:      drivers/infiniband/ulp/isert
5810
5811 ISDN SUBSYSTEM
5812 M:      Karsten Keil <isdn@linux-pingi.de>
5813 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5814 L:      netdev@vger.kernel.org
5815 W:      http://www.isdn4linux.de
5816 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
5817 S:      Maintained
5818 F:      Documentation/isdn/
5819 F:      drivers/isdn/
5820 F:      include/linux/isdn.h
5821 F:      include/linux/isdn/
5822 F:      include/uapi/linux/isdn.h
5823 F:      include/uapi/linux/isdn/
5824
5825 ISDN SUBSYSTEM (Eicon active card driver)
5826 M:      Armin Schindler <mac@melware.de>
5827 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5828 W:      http://www.melware.de
5829 S:      Maintained
5830 F:      drivers/isdn/hardware/eicon/
5831
5832 IT87 HARDWARE MONITORING DRIVER
5833 M:      Jean Delvare <jdelvare@suse.com>
5834 L:      lm-sensors@lm-sensors.org
5835 S:      Maintained
5836 F:      Documentation/hwmon/it87
5837 F:      drivers/hwmon/it87.c
5838
5839 IT913X MEDIA DRIVER
5840 M:      Antti Palosaari <crope@iki.fi>
5841 L:      linux-media@vger.kernel.org
5842 W:      http://linuxtv.org/
5843 W:      http://palosaari.fi/linux/
5844 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5845 T:      git git://linuxtv.org/anttip/media_tree.git
5846 S:      Maintained
5847 F:      drivers/media/tuners/it913x*
5848
5849 IVTV VIDEO4LINUX DRIVER
5850 M:      Andy Walls <awalls@md.metrocast.net>
5851 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
5852 L:      linux-media@vger.kernel.org
5853 T:      git git://linuxtv.org/media_tree.git
5854 W:      http://www.ivtvdriver.org
5855 S:      Maintained
5856 F:      Documentation/video4linux/*.ivtv
5857 F:      drivers/media/pci/ivtv/
5858 F:      include/uapi/linux/ivtv*
5859
5860 IX2505V MEDIA DRIVER
5861 M:      Malcolm Priestley <tvboxspy@gmail.com>
5862 L:      linux-media@vger.kernel.org
5863 W:      http://linuxtv.org/
5864 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5865 S:      Maintained
5866 F:      drivers/media/dvb-frontends/ix2505v*
5867
5868 JC42.4 TEMPERATURE SENSOR DRIVER
5869 M:      Guenter Roeck <linux@roeck-us.net>
5870 L:      lm-sensors@lm-sensors.org
5871 S:      Maintained
5872 F:      drivers/hwmon/jc42.c
5873 F:      Documentation/hwmon/jc42
5874
5875 JFS FILESYSTEM
5876 M:      Dave Kleikamp <shaggy@kernel.org>
5877 L:      jfs-discussion@lists.sourceforge.net
5878 W:      http://jfs.sourceforge.net/
5879 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
5880 S:      Maintained
5881 F:      Documentation/filesystems/jfs.txt
5882 F:      fs/jfs/
5883
5884 JME NETWORK DRIVER
5885 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
5886 L:      netdev@vger.kernel.org
5887 S:      Maintained
5888 F:      drivers/net/ethernet/jme.*
5889
5890 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
5891 M:      David Woodhouse <dwmw2@infradead.org>
5892 L:      linux-mtd@lists.infradead.org
5893 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
5894 S:      Maintained
5895 F:      fs/jffs2/
5896 F:      include/uapi/linux/jffs2.h
5897
5898 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
5899 M:      "Theodore Ts'o" <tytso@mit.edu>
5900 M:      Jan Kara <jack@suse.com>
5901 L:      linux-ext4@vger.kernel.org
5902 S:      Maintained
5903 F:      fs/jbd2/
5904 F:      include/linux/jbd2.h
5905
5906 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
5907 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
5908 L:      linux-media@vger.kernel.org
5909 S:      Maintained
5910 F:      drivers/media/platform/rcar_jpu.c
5911
5912 JSM Neo PCI based serial card
5913 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
5914 L:      linux-serial@vger.kernel.org
5915 S:      Maintained
5916 F:      drivers/tty/serial/jsm/
5917
5918 K10TEMP HARDWARE MONITORING DRIVER
5919 M:      Clemens Ladisch <clemens@ladisch.de>
5920 L:      lm-sensors@lm-sensors.org
5921 S:      Maintained
5922 F:      Documentation/hwmon/k10temp
5923 F:      drivers/hwmon/k10temp.c
5924
5925 K8TEMP HARDWARE MONITORING DRIVER
5926 M:      Rudolf Marek <r.marek@assembler.cz>
5927 L:      lm-sensors@lm-sensors.org
5928 S:      Maintained
5929 F:      Documentation/hwmon/k8temp
5930 F:      drivers/hwmon/k8temp.c
5931
5932 KCONFIG
5933 M:      "Yann E. MORIN" <yann.morin.1998@free.fr>
5934 L:      linux-kbuild@vger.kernel.org
5935 T:      git git://gitorious.org/linux-kconfig/linux-kconfig
5936 S:      Maintained
5937 F:      Documentation/kbuild/kconfig-language.txt
5938 F:      scripts/kconfig/
5939
5940 KDUMP
5941 M:      Vivek Goyal <vgoyal@redhat.com>
5942 M:      Haren Myneni <hbabu@us.ibm.com>
5943 L:      kexec@lists.infradead.org
5944 W:      http://lse.sourceforge.net/kdump/
5945 S:      Maintained
5946 F:      Documentation/kdump/
5947
5948 KEENE FM RADIO TRANSMITTER DRIVER
5949 M:      Hans Verkuil <hverkuil@xs4all.nl>
5950 L:      linux-media@vger.kernel.org
5951 T:      git git://linuxtv.org/media_tree.git
5952 W:      http://linuxtv.org
5953 S:      Maintained
5954 F:      drivers/media/radio/radio-keene*
5955
5956 KERNEL AUTOMOUNTER v4 (AUTOFS4)
5957 M:      Ian Kent <raven@themaw.net>
5958 L:      autofs@vger.kernel.org
5959 S:      Maintained
5960 F:      fs/autofs4/
5961
5962 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
5963 M:      Michal Marek <mmarek@suse.com>
5964 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
5965 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
5966 L:      linux-kbuild@vger.kernel.org
5967 S:      Maintained
5968 F:      Documentation/kbuild/
5969 F:      Makefile
5970 F:      scripts/Makefile.*
5971 F:      scripts/basic/
5972 F:      scripts/mk*
5973 F:      scripts/package/
5974
5975 KERNEL JANITORS
5976 L:      kernel-janitors@vger.kernel.org
5977 W:      http://kernelnewbies.org/KernelJanitors
5978 S:      Odd Fixes
5979
5980 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
5981 M:      "J. Bruce Fields" <bfields@fieldses.org>
5982 M:      Jeff Layton <jlayton@poochiereds.net>
5983 L:      linux-nfs@vger.kernel.org
5984 W:      http://nfs.sourceforge.net/
5985 S:      Supported
5986 F:      fs/nfsd/
5987 F:      include/uapi/linux/nfsd/
5988 F:      fs/lockd/
5989 F:      fs/nfs_common/
5990 F:      net/sunrpc/
5991 F:      include/linux/lockd/
5992 F:      include/linux/sunrpc/
5993 F:      include/uapi/linux/sunrpc/
5994
5995 KERNEL SELFTEST FRAMEWORK
5996 M:      Shuah Khan <shuahkh@osg.samsung.com>
5997 L:      linux-api@vger.kernel.org
5998 T:      git git://git.kernel.org/pub/scm/shuah/linux-kselftest
5999 S:      Maintained
6000 F:      tools/testing/selftests
6001
6002 KERNEL VIRTUAL MACHINE (KVM)
6003 M:      Gleb Natapov <gleb@kernel.org>
6004 M:      Paolo Bonzini <pbonzini@redhat.com>
6005 L:      kvm@vger.kernel.org
6006 W:      http://www.linux-kvm.org
6007 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
6008 S:      Supported
6009 F:      Documentation/*/kvm*.txt
6010 F:      Documentation/virtual/kvm/
6011 F:      arch/*/kvm/
6012 F:      arch/x86/kernel/kvm.c
6013 F:      arch/x86/kernel/kvmclock.c
6014 F:      arch/*/include/asm/kvm*
6015 F:      include/linux/kvm*
6016 F:      include/uapi/linux/kvm*
6017 F:      virt/kvm/
6018
6019 KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
6020 M:      Joerg Roedel <joro@8bytes.org>
6021 L:      kvm@vger.kernel.org
6022 W:      http://www.linux-kvm.org/
6023 S:      Maintained
6024 F:      arch/x86/include/asm/svm.h
6025 F:      arch/x86/kvm/svm.c
6026
6027 KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
6028 M:      Alexander Graf <agraf@suse.com>
6029 L:      kvm-ppc@vger.kernel.org
6030 W:      http://www.linux-kvm.org/
6031 T:      git git://github.com/agraf/linux-2.6.git
6032 S:      Supported
6033 F:      arch/powerpc/include/asm/kvm*
6034 F:      arch/powerpc/kvm/
6035
6036 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
6037 M:      Christian Borntraeger <borntraeger@de.ibm.com>
6038 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
6039 L:      linux-s390@vger.kernel.org
6040 W:      http://www.ibm.com/developerworks/linux/linux390/
6041 S:      Supported
6042 F:      Documentation/s390/kvm.txt
6043 F:      arch/s390/include/asm/kvm*
6044 F:      arch/s390/kvm/
6045
6046 KERNEL VIRTUAL MACHINE (KVM) FOR ARM
6047 M:      Christoffer Dall <christoffer.dall@linaro.org>
6048 M:      Marc Zyngier <marc.zyngier@arm.com>
6049 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6050 L:      kvmarm@lists.cs.columbia.edu
6051 W:      http://systems.cs.columbia.edu/projects/kvm-arm
6052 S:      Supported
6053 F:      arch/arm/include/uapi/asm/kvm*
6054 F:      arch/arm/include/asm/kvm*
6055 F:      arch/arm/kvm/
6056 F:      virt/kvm/arm/
6057 F:      include/kvm/arm_*
6058
6059 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
6060 M:      Christoffer Dall <christoffer.dall@linaro.org>
6061 M:      Marc Zyngier <marc.zyngier@arm.com>
6062 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6063 L:      kvmarm@lists.cs.columbia.edu
6064 S:      Maintained
6065 F:      arch/arm64/include/uapi/asm/kvm*
6066 F:      arch/arm64/include/asm/kvm*
6067 F:      arch/arm64/kvm/
6068
6069 KEXEC
6070 M:      Eric Biederman <ebiederm@xmission.com>
6071 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
6072 L:      kexec@lists.infradead.org
6073 S:      Maintained
6074 F:      include/linux/kexec.h
6075 F:      include/uapi/linux/kexec.h
6076 F:      kernel/kexec.c
6077
6078 KEYS/KEYRINGS:
6079 M:      David Howells <dhowells@redhat.com>
6080 L:      keyrings@vger.kernel.org
6081 S:      Maintained
6082 F:      Documentation/security/keys.txt
6083 F:      include/linux/key.h
6084 F:      include/linux/key-type.h
6085 F:      include/keys/
6086 F:      security/keys/
6087
6088 KEYS-TRUSTED
6089 M:      David Safford <safford@us.ibm.com>
6090 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6091 L:      linux-security-module@vger.kernel.org
6092 L:      keyrings@vger.kernel.org
6093 S:      Supported
6094 F:      Documentation/security/keys-trusted-encrypted.txt
6095 F:      include/keys/trusted-type.h
6096 F:      security/keys/trusted.c
6097 F:      security/keys/trusted.h
6098
6099 KEYS-ENCRYPTED
6100 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6101 M:      David Safford <safford@us.ibm.com>
6102 L:      linux-security-module@vger.kernel.org
6103 L:      keyrings@vger.kernel.org
6104 S:      Supported
6105 F:      Documentation/security/keys-trusted-encrypted.txt
6106 F:      include/keys/encrypted-type.h
6107 F:      security/keys/encrypted-keys/
6108
6109 KGDB / KDB /debug_core
6110 M:      Jason Wessel <jason.wessel@windriver.com>
6111 W:      http://kgdb.wiki.kernel.org/
6112 L:      kgdb-bugreport@lists.sourceforge.net
6113 S:      Maintained
6114 F:      Documentation/DocBook/kgdb.tmpl
6115 F:      drivers/misc/kgdbts.c
6116 F:      drivers/tty/serial/kgdboc.c
6117 F:      include/linux/kdb.h
6118 F:      include/linux/kgdb.h
6119 F:      kernel/debug/
6120
6121 KMEMCHECK
6122 M:      Vegard Nossum <vegardno@ifi.uio.no>
6123 M:      Pekka Enberg <penberg@kernel.org>
6124 S:      Maintained
6125 F:      Documentation/kmemcheck.txt
6126 F:      arch/x86/include/asm/kmemcheck.h
6127 F:      arch/x86/mm/kmemcheck/
6128 F:      include/linux/kmemcheck.h
6129 F:      mm/kmemcheck.c
6130
6131 KMEMLEAK
6132 M:      Catalin Marinas <catalin.marinas@arm.com>
6133 S:      Maintained
6134 F:      Documentation/kmemleak.txt
6135 F:      include/linux/kmemleak.h
6136 F:      mm/kmemleak.c
6137 F:      mm/kmemleak-test.c
6138
6139 KPROBES
6140 M:      Ananth N Mavinakayanahalli <ananth@in.ibm.com>
6141 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
6142 M:      "David S. Miller" <davem@davemloft.net>
6143 M:      Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
6144 S:      Maintained
6145 F:      Documentation/kprobes.txt
6146 F:      include/linux/kprobes.h
6147 F:      kernel/kprobes.c
6148
6149 KS0108 LCD CONTROLLER DRIVER
6150 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
6151 W:      http://miguelojeda.es/auxdisplay.htm
6152 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
6153 S:      Maintained
6154 F:      Documentation/auxdisplay/ks0108
6155 F:      drivers/auxdisplay/ks0108.c
6156 F:      include/linux/ks0108.h
6157
6158 L3MDEV
6159 M:      David Ahern <dsa@cumulusnetworks.com>
6160 L:      netdev@vger.kernel.org
6161 S:      Maintained
6162 F:      net/l3mdev
6163 F:      include/net/l3mdev.h
6164
6165 LAPB module
6166 L:      linux-x25@vger.kernel.org
6167 S:      Orphan
6168 F:      Documentation/networking/lapb-module.txt
6169 F:      include/*/lapb.h
6170 F:      net/lapb/
6171
6172 LASI 53c700 driver for PARISC
6173 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
6174 L:      linux-scsi@vger.kernel.org
6175 S:      Maintained
6176 F:      Documentation/scsi/53c700.txt
6177 F:      drivers/scsi/53c700*
6178
6179 LED SUBSYSTEM
6180 M:      Richard Purdie <rpurdie@rpsys.net>
6181 M:      Jacek Anaszewski <j.anaszewski@samsung.com>
6182 L:      linux-leds@vger.kernel.org
6183 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
6184 S:      Maintained
6185 F:      drivers/leds/
6186 F:      include/linux/leds.h
6187
6188 LEGACY EEPROM DRIVER
6189 M:      Jean Delvare <jdelvare@suse.com>
6190 S:      Maintained
6191 F:      Documentation/misc-devices/eeprom
6192 F:      drivers/misc/eeprom/eeprom.c
6193
6194 LEGO USB Tower driver
6195 M:      Juergen Stuber <starblue@users.sourceforge.net>
6196 L:      legousb-devel@lists.sourceforge.net
6197 W:      http://legousb.sourceforge.net/
6198 S:      Maintained
6199 F:      drivers/usb/misc/legousbtower.c
6200
6201 LG2160 MEDIA DRIVER
6202 M:      Michael Krufky <mkrufky@linuxtv.org>
6203 L:      linux-media@vger.kernel.org
6204 W:      http://linuxtv.org/
6205 W:      http://github.com/mkrufky
6206 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6207 T:      git git://linuxtv.org/mkrufky/tuners.git
6208 S:      Maintained
6209 F:      drivers/media/dvb-frontends/lg2160.*
6210
6211 LGDT3305 MEDIA DRIVER
6212 M:      Michael Krufky <mkrufky@linuxtv.org>
6213 L:      linux-media@vger.kernel.org
6214 W:      http://linuxtv.org/
6215 W:      http://github.com/mkrufky
6216 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6217 T:      git git://linuxtv.org/mkrufky/tuners.git
6218 S:      Maintained
6219 F:      drivers/media/dvb-frontends/lgdt3305.*
6220
6221 LGUEST
6222 M:      Rusty Russell <rusty@rustcorp.com.au>
6223 L:      lguest@lists.ozlabs.org
6224 W:      http://lguest.ozlabs.org/
6225 S:      Odd Fixes
6226 F:      arch/x86/include/asm/lguest*.h
6227 F:      arch/x86/lguest/
6228 F:      drivers/lguest/
6229 F:      include/linux/lguest*.h
6230 F:      tools/lguest/
6231
6232 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
6233 M:      Tejun Heo <tj@kernel.org>
6234 L:      linux-ide@vger.kernel.org
6235 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6236 S:      Maintained
6237 F:      drivers/ata/
6238 F:      include/linux/ata.h
6239 F:      include/linux/libata.h
6240
6241 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
6242 M:      Viresh Kumar <vireshk@kernel.org>
6243 L:      linux-ide@vger.kernel.org
6244 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6245 S:      Maintained
6246 F:      include/linux/pata_arasan_cf_data.h
6247 F:      drivers/ata/pata_arasan_cf.c
6248
6249 LIBATA PATA DRIVERS
6250 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6251 M:      Tejun Heo <tj@kernel.org>
6252 L:      linux-ide@vger.kernel.org
6253 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6254 S:      Maintained
6255 F:      drivers/ata/pata_*.c
6256 F:      drivers/ata/ata_generic.c
6257
6258 LIBATA SATA AHCI PLATFORM devices support
6259 M:      Hans de Goede <hdegoede@redhat.com>
6260 M:      Tejun Heo <tj@kernel.org>
6261 L:      linux-ide@vger.kernel.org
6262 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6263 S:      Maintained
6264 F:      drivers/ata/ahci_platform.c
6265 F:      drivers/ata/libahci_platform.c
6266 F:      include/linux/ahci_platform.h
6267
6268 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
6269 M:      Mikael Pettersson <mikpelinux@gmail.com>
6270 L:      linux-ide@vger.kernel.org
6271 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6272 S:      Maintained
6273 F:      drivers/ata/sata_promise.*
6274
6275 LIBLOCKDEP
6276 M:      Sasha Levin <sasha.levin@oracle.com>
6277 S:      Maintained
6278 F:      tools/lib/lockdep/
6279
6280 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
6281 M:      Dan Williams <dan.j.williams@intel.com>
6282 L:      linux-nvdimm@lists.01.org
6283 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6284 S:      Supported
6285 F:      drivers/nvdimm/*
6286 F:      include/linux/nd.h
6287 F:      include/linux/libnvdimm.h
6288 F:      include/uapi/linux/ndctl.h
6289
6290 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
6291 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6292 L:      linux-nvdimm@lists.01.org
6293 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6294 S:      Supported
6295 F:      drivers/nvdimm/blk.c
6296 F:      drivers/nvdimm/region_devs.c
6297 F:      drivers/acpi/nfit*
6298
6299 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
6300 M:      Vishal Verma <vishal.l.verma@intel.com>
6301 L:      linux-nvdimm@lists.01.org
6302 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6303 S:      Supported
6304 F:      drivers/nvdimm/btt*
6305
6306 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
6307 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6308 L:      linux-nvdimm@lists.01.org
6309 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6310 S:      Supported
6311 F:      drivers/nvdimm/pmem.c
6312 F:      include/linux/pmem.h
6313 F:      arch/*/include/asm/pmem.h
6314
6315 LIGHTNVM PLATFORM SUPPORT
6316 M:      Matias Bjorling <mb@lightnvm.io>
6317 W:      http://github/OpenChannelSSD
6318 S:      Maintained
6319 F:      drivers/lightnvm/
6320 F:      include/linux/lightnvm.h
6321 F:      include/uapi/linux/lightnvm.h
6322
6323 LINUX FOR IBM pSERIES (RS/6000)
6324 M:      Paul Mackerras <paulus@au.ibm.com>
6325 W:      http://www.ibm.com/linux/ltc/projects/ppc
6326 S:      Supported
6327 F:      arch/powerpc/boot/rs6000.h
6328
6329 LINUX FOR POWERPC (32-BIT AND 64-BIT)
6330 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6331 M:      Paul Mackerras <paulus@samba.org>
6332 M:      Michael Ellerman <mpe@ellerman.id.au>
6333 W:      http://www.penguinppc.org/
6334 L:      linuxppc-dev@lists.ozlabs.org
6335 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
6336 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
6337 S:      Supported
6338 F:      Documentation/powerpc/
6339 F:      arch/powerpc/
6340
6341 LINUX FOR POWER MACINTOSH
6342 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6343 W:      http://www.penguinppc.org/
6344 L:      linuxppc-dev@lists.ozlabs.org
6345 S:      Maintained
6346 F:      arch/powerpc/platforms/powermac/
6347 F:      drivers/macintosh/
6348
6349 LINUX FOR POWERPC EMBEDDED MPC5XXX
6350 M:      Anatolij Gustschin <agust@denx.de>
6351 L:      linuxppc-dev@lists.ozlabs.org
6352 T:      git git://git.denx.de/linux-denx-agust.git
6353 S:      Maintained
6354 F:      arch/powerpc/platforms/512x/
6355 F:      arch/powerpc/platforms/52xx/
6356
6357 LINUX FOR POWERPC EMBEDDED PPC4XX
6358 M:      Alistair Popple <alistair@popple.id.au>
6359 M:      Matt Porter <mporter@kernel.crashing.org>
6360 W:      http://www.penguinppc.org/
6361 L:      linuxppc-dev@lists.ozlabs.org
6362 S:      Maintained
6363 F:      arch/powerpc/platforms/40x/
6364 F:      arch/powerpc/platforms/44x/
6365
6366 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
6367 L:      linuxppc-dev@lists.ozlabs.org
6368 S:      Orphan
6369 F:      arch/powerpc/*/*virtex*
6370 F:      arch/powerpc/*/*/*virtex*
6371
6372 LINUX FOR POWERPC EMBEDDED PPC8XX
6373 M:      Vitaly Bordug <vitb@kernel.crashing.org>
6374 W:      http://www.penguinppc.org/
6375 L:      linuxppc-dev@lists.ozlabs.org
6376 S:      Maintained
6377 F:      arch/powerpc/platforms/8xx/
6378
6379 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
6380 M:      Scott Wood <scottwood@freescale.com>
6381 M:      Kumar Gala <galak@kernel.crashing.org>
6382 W:      http://www.penguinppc.org/
6383 L:      linuxppc-dev@lists.ozlabs.org
6384 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
6385 S:      Maintained
6386 F:      arch/powerpc/platforms/83xx/
6387 F:      arch/powerpc/platforms/85xx/
6388
6389 LINUX FOR POWERPC PA SEMI PWRFICIENT
6390 M:      Olof Johansson <olof@lixom.net>
6391 L:      linuxppc-dev@lists.ozlabs.org
6392 S:      Maintained
6393 F:      arch/powerpc/platforms/pasemi/
6394 F:      drivers/*/*pasemi*
6395 F:      drivers/*/*/*pasemi*
6396
6397 LINUX SECURITY MODULE (LSM) FRAMEWORK
6398 M:      Chris Wright <chrisw@sous-sol.org>
6399 L:      linux-security-module@vger.kernel.org
6400 S:      Supported
6401
6402 LIS3LV02D ACCELEROMETER DRIVER
6403 M:      Eric Piel <eric.piel@tremplin-utc.net>
6404 S:      Maintained
6405 F:      Documentation/misc-devices/lis3lv02d
6406 F:      drivers/misc/lis3lv02d/
6407 F:      drivers/platform/x86/hp_accel.c
6408
6409 LIVE PATCHING
6410 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6411 M:      Seth Jennings <sjenning@redhat.com>
6412 M:      Jiri Kosina <jikos@kernel.org>
6413 M:      Vojtech Pavlik <vojtech@suse.com>
6414 S:      Maintained
6415 F:      kernel/livepatch/
6416 F:      include/linux/livepatch.h
6417 F:      arch/x86/include/asm/livepatch.h
6418 F:      arch/x86/kernel/livepatch.c
6419 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
6420 F:      samples/livepatch/
6421 L:      live-patching@vger.kernel.org
6422 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
6423
6424 LLC (802.2)
6425 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
6426 S:      Maintained
6427 F:      include/linux/llc.h
6428 F:      include/uapi/linux/llc.h
6429 F:      include/net/llc*
6430 F:      net/llc/
6431
6432 LM73 HARDWARE MONITOR DRIVER
6433 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
6434 L:      lm-sensors@lm-sensors.org
6435 S:      Maintained
6436 F:      drivers/hwmon/lm73.c
6437
6438 LM78 HARDWARE MONITOR DRIVER
6439 M:      Jean Delvare <jdelvare@suse.com>
6440 L:      lm-sensors@lm-sensors.org
6441 S:      Maintained
6442 F:      Documentation/hwmon/lm78
6443 F:      drivers/hwmon/lm78.c
6444
6445 LM83 HARDWARE MONITOR DRIVER
6446 M:      Jean Delvare <jdelvare@suse.com>
6447 L:      lm-sensors@lm-sensors.org
6448 S:      Maintained
6449 F:      Documentation/hwmon/lm83
6450 F:      drivers/hwmon/lm83.c
6451
6452 LM90 HARDWARE MONITOR DRIVER
6453 M:      Jean Delvare <jdelvare@suse.com>
6454 L:      lm-sensors@lm-sensors.org
6455 S:      Maintained
6456 F:      Documentation/hwmon/lm90
6457 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
6458 F:      drivers/hwmon/lm90.c
6459
6460 LM95234 HARDWARE MONITOR DRIVER
6461 M:      Guenter Roeck <linux@roeck-us.net>
6462 L:      lm-sensors@lm-sensors.org
6463 S:      Maintained
6464 F:      Documentation/hwmon/lm95234
6465 F:      drivers/hwmon/lm95234.c
6466
6467 LME2510 MEDIA DRIVER
6468 M:      Malcolm Priestley <tvboxspy@gmail.com>
6469 L:      linux-media@vger.kernel.org
6470 W:      http://linuxtv.org/
6471 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6472 S:      Maintained
6473 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
6474
6475 LOCKDEP AND LOCKSTAT
6476 M:      Peter Zijlstra <peterz@infradead.org>
6477 M:      Ingo Molnar <mingo@redhat.com>
6478 L:      linux-kernel@vger.kernel.org
6479 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
6480 S:      Maintained
6481 F:      Documentation/locking/lockdep*.txt
6482 F:      Documentation/locking/lockstat.txt
6483 F:      include/linux/lockdep.h
6484 F:      kernel/locking/
6485
6486 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
6487 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
6488 L:      linux-ntfs-dev@lists.sourceforge.net
6489 W:      http://www.linux-ntfs.org/content/view/19/37/
6490 S:      Maintained
6491 F:      Documentation/ldm.txt
6492 F:      block/partitions/ldm.*
6493
6494 LogFS
6495 M:      Joern Engel <joern@logfs.org>
6496 M:      Prasad Joshi <prasadjoshi.linux@gmail.com>
6497 L:      logfs@logfs.org
6498 W:      logfs.org
6499 S:      Maintained
6500 F:      fs/logfs/
6501
6502 LPC32XX MACHINE SUPPORT
6503 M:      Roland Stigge <stigge@antcom.de>
6504 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6505 S:      Maintained
6506 F:      arch/arm/mach-lpc32xx/
6507
6508 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
6509 M:      Nagalakshmi Nandigama <nagalakshmi.nandigama@avagotech.com>
6510 M:      Praveen Krishnamoorthy <praveen.krishnamoorthy@avagotech.com>
6511 M:      Sreekanth Reddy <sreekanth.reddy@avagotech.com>
6512 M:      Abhijit Mahajan <abhijit.mahajan@avagotech.com>
6513 L:      MPT-FusionLinux.pdl@avagotech.com
6514 L:      linux-scsi@vger.kernel.org
6515 W:      http://www.lsilogic.com/support
6516 S:      Supported
6517 F:      drivers/message/fusion/
6518 F:      drivers/scsi/mpt2sas/
6519 F:      drivers/scsi/mpt3sas/
6520
6521 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
6522 M:      Matthew Wilcox <matthew@wil.cx>
6523 L:      linux-scsi@vger.kernel.org
6524 S:      Maintained
6525 F:      drivers/scsi/sym53c8xx_2/
6526
6527 LTC4261 HARDWARE MONITOR DRIVER
6528 M:      Guenter Roeck <linux@roeck-us.net>
6529 L:      lm-sensors@lm-sensors.org
6530 S:      Maintained
6531 F:      Documentation/hwmon/ltc4261
6532 F:      drivers/hwmon/ltc4261.c
6533
6534 LTP (Linux Test Project)
6535 M:      Mike Frysinger <vapier@gentoo.org>
6536 M:      Cyril Hrubis <chrubis@suse.cz>
6537 M:      Wanlong Gao <wanlong.gao@gmail.com>
6538 M:      Jan Stancek <jstancek@redhat.com>
6539 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
6540 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
6541 L:      ltp@lists.linux.it (subscribers-only)
6542 W:      http://linux-test-project.github.io/
6543 T:      git git://github.com/linux-test-project/ltp.git
6544 S:      Maintained
6545
6546 M32R ARCHITECTURE
6547 W:      http://www.linux-m32r.org/
6548 S:      Orphan
6549 F:      arch/m32r/
6550
6551 M68K ARCHITECTURE
6552 M:      Geert Uytterhoeven <geert@linux-m68k.org>
6553 L:      linux-m68k@lists.linux-m68k.org
6554 W:      http://www.linux-m68k.org/
6555 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
6556 S:      Maintained
6557 F:      arch/m68k/
6558 F:      drivers/zorro/
6559
6560 M68K ON APPLE MACINTOSH
6561 M:      Joshua Thompson <funaho@jurai.org>
6562 W:      http://www.mac.linux-m68k.org/
6563 L:      linux-m68k@lists.linux-m68k.org
6564 S:      Maintained
6565 F:      arch/m68k/mac/
6566
6567 M68K ON HP9000/300
6568 M:      Philip Blundell <philb@gnu.org>
6569 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
6570 S:      Maintained
6571 F:      arch/m68k/hp300/
6572
6573 M88DS3103 MEDIA DRIVER
6574 M:      Antti Palosaari <crope@iki.fi>
6575 L:      linux-media@vger.kernel.org
6576 W:      http://linuxtv.org/
6577 W:      http://palosaari.fi/linux/
6578 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6579 T:      git git://linuxtv.org/anttip/media_tree.git
6580 S:      Maintained
6581 F:      drivers/media/dvb-frontends/m88ds3103*
6582
6583 M88RS2000 MEDIA DRIVER
6584 M:      Malcolm Priestley <tvboxspy@gmail.com>
6585 L:      linux-media@vger.kernel.org
6586 W:      http://linuxtv.org/
6587 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6588 S:      Maintained
6589 F:      drivers/media/dvb-frontends/m88rs2000*
6590
6591 MA901 MASTERKIT USB FM RADIO DRIVER
6592 M:      Alexey Klimov <klimov.linux@gmail.com>
6593 L:      linux-media@vger.kernel.org
6594 T:      git git://linuxtv.org/media_tree.git
6595 S:      Maintained
6596 F:      drivers/media/radio/radio-ma901.c
6597
6598 MAC80211
6599 M:      Johannes Berg <johannes@sipsolutions.net>
6600 L:      linux-wireless@vger.kernel.org
6601 W:      http://wireless.kernel.org/
6602 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6603 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
6604 S:      Maintained
6605 F:      Documentation/networking/mac80211-injection.txt
6606 F:      include/net/mac80211.h
6607 F:      net/mac80211/
6608
6609 MACVLAN DRIVER
6610 M:      Patrick McHardy <kaber@trash.net>
6611 L:      netdev@vger.kernel.org
6612 S:      Maintained
6613 F:      drivers/net/macvlan.c
6614 F:      include/linux/if_macvlan.h
6615
6616 MAILBOX API
6617 M:      Jassi Brar <jassisinghbrar@gmail.com>
6618 L:      linux-kernel@vger.kernel.org
6619 S:      Maintained
6620 F:      drivers/mailbox/
6621 F:      include/linux/mailbox_client.h
6622 F:      include/linux/mailbox_controller.h
6623
6624 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
6625 M:      Michael Kerrisk <mtk.manpages@gmail.com>
6626 W:      http://www.kernel.org/doc/man-pages
6627 L:      linux-man@vger.kernel.org
6628 S:      Maintained
6629
6630 MARVELL ARMADA DRM SUPPORT
6631 M:      Russell King <rmk+kernel@arm.linux.org.uk>
6632 S:      Maintained
6633 F:      drivers/gpu/drm/armada/
6634
6635 MARVELL 88E6352 DSA support
6636 M:      Guenter Roeck <linux@roeck-us.net>
6637 S:      Maintained
6638 F:      drivers/net/dsa/mv88e6352.c
6639
6640 MARVELL CRYPTO DRIVER
6641 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
6642 M:      Arnaud Ebalard <arno@natisbad.org>
6643 F:      drivers/crypto/marvell/
6644 S:      Maintained
6645 L:      linux-crypto@vger.kernel.org
6646
6647 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
6648 M:      Mirko Lindner <mlindner@marvell.com>
6649 M:      Stephen Hemminger <stephen@networkplumber.org>
6650 L:      netdev@vger.kernel.org
6651 S:      Maintained
6652 F:      drivers/net/ethernet/marvell/sk*
6653
6654 MARVELL LIBERTAS WIRELESS DRIVER
6655 L:      libertas-dev@lists.infradead.org
6656 S:      Orphan
6657 F:      drivers/net/wireless/libertas/
6658
6659 MARVELL MV643XX ETHERNET DRIVER
6660 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
6661 L:      netdev@vger.kernel.org
6662 S:      Maintained
6663 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
6664 F:      include/linux/mv643xx.h
6665
6666 MARVELL MVNETA ETHERNET DRIVER
6667 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
6668 L:      netdev@vger.kernel.org
6669 S:      Maintained
6670 F:      drivers/net/ethernet/marvell/mvneta.*
6671
6672 MARVELL MWIFIEX WIRELESS DRIVER
6673 M:      Amitkumar Karwar <akarwar@marvell.com>
6674 M:      Nishant Sarmukadam <nishants@marvell.com>
6675 L:      linux-wireless@vger.kernel.org
6676 S:      Maintained
6677 F:      drivers/net/wireless/mwifiex/
6678
6679 MARVELL MWL8K WIRELESS DRIVER
6680 M:      Lennert Buytenhek <buytenh@wantstofly.org>
6681 L:      linux-wireless@vger.kernel.org
6682 S:      Odd Fixes
6683 F:      drivers/net/wireless/mwl8k.c
6684
6685 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
6686 M:      Nicolas Pitre <nico@fluxnic.net>
6687 S:      Odd Fixes
6688 F:      drivers/mmc/host/mvsdio.*
6689
6690 MATROX FRAMEBUFFER DRIVER
6691 L:      linux-fbdev@vger.kernel.org
6692 S:      Orphan
6693 F:      drivers/video/fbdev/matrox/matroxfb_*
6694 F:      include/uapi/linux/matroxfb.h
6695
6696 MAX16065 HARDWARE MONITOR DRIVER
6697 M:      Guenter Roeck <linux@roeck-us.net>
6698 L:      lm-sensors@lm-sensors.org
6699 S:      Maintained
6700 F:      Documentation/hwmon/max16065
6701 F:      drivers/hwmon/max16065.c
6702
6703 MAX20751 HARDWARE MONITOR DRIVER
6704 M:      Guenter Roeck <linux@roeck-us.net>
6705 L:      lm-sensors@lm-sensors.org
6706 S:      Maintained
6707 F:      Documentation/hwmon/max20751
6708 F:      drivers/hwmon/max20751.c
6709
6710 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6711 M:      "Hans J. Koch" <hjk@hansjkoch.de>
6712 L:      lm-sensors@lm-sensors.org
6713 S:      Maintained
6714 F:      Documentation/hwmon/max6650
6715 F:      drivers/hwmon/max6650.c
6716
6717 MAX6697 HARDWARE MONITOR DRIVER
6718 M:      Guenter Roeck <linux@roeck-us.net>
6719 L:      lm-sensors@lm-sensors.org
6720 S:      Maintained
6721 F:      Documentation/hwmon/max6697
6722 F:      Documentation/devicetree/bindings/i2c/max6697.txt
6723 F:      drivers/hwmon/max6697.c
6724 F:      include/linux/platform_data/max6697.h
6725
6726 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
6727 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6728 L:      linux-pm@vger.kernel.org
6729 S:      Supported
6730 F:      drivers/power/max14577_charger.c
6731 F:      drivers/power/max77693_charger.c
6732
6733 MAXIM MAX77802 MULTIFUNCTION PMIC DEVICE DRIVERS
6734 M:      Javier Martinez Canillas <javier@osg.samsung.com>
6735 L:      linux-kernel@vger.kernel.org
6736 S:      Supported
6737 F:      drivers/*/*max77802.c
6738 F:      Documentation/devicetree/bindings/*/*max77802.txt
6739 F:      include/dt-bindings/*/*max77802.h
6740
6741 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
6742 M:      Chanwoo Choi <cw00.choi@samsung.com>
6743 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6744 L:      linux-kernel@vger.kernel.org
6745 S:      Supported
6746 F:      drivers/*/max14577.c
6747 F:      drivers/*/max77686.c
6748 F:      drivers/*/max77693.c
6749 F:      drivers/extcon/extcon-max14577.c
6750 F:      drivers/extcon/extcon-max77693.c
6751 F:      drivers/rtc/rtc-max77686.c
6752 F:      drivers/clk/clk-max77686.c
6753 F:      Documentation/devicetree/bindings/mfd/max14577.txt
6754 F:      Documentation/devicetree/bindings/*/max77686.txt
6755 F:      Documentation/devicetree/bindings/mfd/max77693.txt
6756 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
6757 F:      include/linux/mfd/max14577*.h
6758 F:      include/linux/mfd/max77686*.h
6759 F:      include/linux/mfd/max77693*.h
6760
6761 MAXIRADIO FM RADIO RECEIVER DRIVER
6762 M:      Hans Verkuil <hverkuil@xs4all.nl>
6763 L:      linux-media@vger.kernel.org
6764 T:      git git://linuxtv.org/media_tree.git
6765 W:      http://linuxtv.org
6766 S:      Maintained
6767 F:      drivers/media/radio/radio-maxiradio*
6768
6769 MEDIA DRIVERS FOR RENESAS - VSP1
6770 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6771 L:      linux-media@vger.kernel.org
6772 L:      linux-sh@vger.kernel.org
6773 T:      git git://linuxtv.org/media_tree.git
6774 S:      Supported
6775 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
6776 F:      drivers/media/platform/vsp1/
6777
6778 MEDIA DRIVERS FOR ASCOT2E
6779 M:      Sergey Kozlov <serjk@netup.ru>
6780 L:      linux-media@vger.kernel.org
6781 W:      http://linuxtv.org
6782 W:      http://netup.tv/
6783 T:      git git://linuxtv.org/media_tree.git
6784 S:      Supported
6785 F:      drivers/media/dvb-frontends/ascot2e*
6786
6787 MEDIA DRIVERS FOR CXD2841ER
6788 M:      Sergey Kozlov <serjk@netup.ru>
6789 L:      linux-media@vger.kernel.org
6790 W:      http://linuxtv.org/
6791 W:      http://netup.tv/
6792 T:      git git://linuxtv.org/media_tree.git
6793 S:      Supported
6794 F:      drivers/media/dvb-frontends/cxd2841er*
6795
6796 MEDIA DRIVERS FOR HORUS3A
6797 M:      Sergey Kozlov <serjk@netup.ru>
6798 L:      linux-media@vger.kernel.org
6799 W:      http://linuxtv.org/
6800 W:      http://netup.tv/
6801 T:      git git://linuxtv.org/media_tree.git
6802 S:      Supported
6803 F:      drivers/media/dvb-frontends/horus3a*
6804
6805 MEDIA DRIVERS FOR LNBH25
6806 M:      Sergey Kozlov <serjk@netup.ru>
6807 L:      linux-media@vger.kernel.org
6808 W:      http://linuxtv.org/
6809 W:      http://netup.tv/
6810 T:      git git://linuxtv.org/media_tree.git
6811 S:      Supported
6812 F:      drivers/media/dvb-frontends/lnbh25*
6813
6814 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
6815 M:      Sergey Kozlov <serjk@netup.ru>
6816 L:      linux-media@vger.kernel.org
6817 W:      http://linuxtv.org/
6818 W:      http://netup.tv/
6819 T:      git git://linuxtv.org/media_tree.git
6820 S:      Supported
6821 F:      drivers/media/pci/netup_unidvb/*
6822
6823 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
6824 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
6825 P:      LinuxTV.org Project
6826 L:      linux-media@vger.kernel.org
6827 W:      http://linuxtv.org
6828 Q:      http://patchwork.kernel.org/project/linux-media/list/
6829 T:      git git://linuxtv.org/media_tree.git
6830 S:      Maintained
6831 F:      Documentation/dvb/
6832 F:      Documentation/video4linux/
6833 F:      Documentation/DocBook/media/
6834 F:      drivers/media/
6835 F:      drivers/staging/media/
6836 F:      include/media/
6837 F:      include/uapi/linux/dvb/
6838 F:      include/uapi/linux/videodev2.h
6839 F:      include/uapi/linux/media.h
6840 F:      include/uapi/linux/v4l2-*
6841 F:      include/uapi/linux/meye.h
6842 F:      include/uapi/linux/ivtv*
6843 F:      include/uapi/linux/uvcvideo.h
6844
6845 MEDIATEK MT7601U WIRELESS LAN DRIVER
6846 M:      Jakub Kicinski <kubakici@wp.pl>
6847 L:      linux-wireless@vger.kernel.org
6848 S:      Maintained
6849 F:      drivers/net/wireless/mediatek/mt7601u/
6850
6851 MEGARAID SCSI/SAS DRIVERS
6852 M:      Kashyap Desai <kashyap.desai@avagotech.com>
6853 M:      Sumit Saxena <sumit.saxena@avagotech.com>
6854 M:      Uday Lingala <uday.lingala@avagotech.com>
6855 L:      megaraidlinux.pdl@avagotech.com
6856 L:      linux-scsi@vger.kernel.org
6857 W:      http://www.lsi.com
6858 S:      Maintained
6859 F:      Documentation/scsi/megaraid.txt
6860 F:      drivers/scsi/megaraid.*
6861 F:      drivers/scsi/megaraid/
6862
6863 MELLANOX ETHERNET DRIVER (mlx4_en)
6864 M:      Amir Vadai <amirv@mellanox.com>
6865 L:      netdev@vger.kernel.org
6866 S:      Supported
6867 W:      http://www.mellanox.com
6868 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6869 F:      drivers/net/ethernet/mellanox/mlx4/en_*
6870
6871 MELLANOX ETHERNET SWITCH DRIVERS
6872 M:      Jiri Pirko <jiri@mellanox.com>
6873 M:      Ido Schimmel <idosch@mellanox.com>
6874 L:      netdev@vger.kernel.org
6875 S:      Supported
6876 W:      http://www.mellanox.com
6877 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6878 F:      drivers/net/ethernet/mellanox/mlxsw/
6879
6880 MEMBARRIER SUPPORT
6881 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
6882 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
6883 L:      linux-kernel@vger.kernel.org
6884 S:      Supported
6885 F:      kernel/membarrier.c
6886 F:      include/uapi/linux/membarrier.h
6887
6888 MEMORY MANAGEMENT
6889 L:      linux-mm@kvack.org
6890 W:      http://www.linux-mm.org
6891 S:      Maintained
6892 F:      include/linux/mm.h
6893 F:      include/linux/gfp.h
6894 F:      include/linux/mmzone.h
6895 F:      include/linux/memory_hotplug.h
6896 F:      include/linux/vmalloc.h
6897 F:      mm/
6898
6899 MEMORY TECHNOLOGY DEVICES (MTD)
6900 M:      David Woodhouse <dwmw2@infradead.org>
6901 M:      Brian Norris <computersforpeace@gmail.com>
6902 L:      linux-mtd@lists.infradead.org
6903 W:      http://www.linux-mtd.infradead.org/
6904 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
6905 T:      git git://git.infradead.org/linux-mtd.git
6906 T:      git git://git.infradead.org/l2-mtd.git
6907 S:      Maintained
6908 F:      drivers/mtd/
6909 F:      include/linux/mtd/
6910 F:      include/uapi/mtd/
6911
6912 MEN A21 WATCHDOG DRIVER
6913 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6914 L:      linux-watchdog@vger.kernel.org
6915 S:      Maintained
6916 F:      drivers/watchdog/mena21_wdt.c
6917
6918 MEN CHAMELEON BUS (mcb)
6919 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6920 S:      Maintained
6921 F:      drivers/mcb/
6922 F:      include/linux/mcb.h
6923 F:      Documentation/men-chameleon-bus.txt
6924
6925 MEN F21BMC (Board Management Controller)
6926 M:      Andreas Werner <andreas.werner@men.de>
6927 S:      Supported
6928 F:      drivers/mfd/menf21bmc.c
6929 F:      drivers/watchdog/menf21bmc_wdt.c
6930 F:      drivers/leds/leds-menf21bmc.c
6931 F:      drivers/hwmon/menf21bmc_hwmon.c
6932 F:      Documentation/hwmon/menf21bmc
6933
6934 METAG ARCHITECTURE
6935 M:      James Hogan <james.hogan@imgtec.com>
6936 L:      linux-metag@vger.kernel.org
6937 S:      Supported
6938 F:      arch/metag/
6939 F:      Documentation/metag/
6940 F:      Documentation/devicetree/bindings/metag/
6941 F:      drivers/clocksource/metag_generic.c
6942 F:      drivers/irqchip/irq-metag.c
6943 F:      drivers/irqchip/irq-metag-ext.c
6944 F:      drivers/tty/metag_da.c
6945
6946 MICROBLAZE ARCHITECTURE
6947 M:      Michal Simek <monstr@monstr.eu>
6948 W:      http://www.monstr.eu/fdt/
6949 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
6950 S:      Supported
6951 F:      arch/microblaze/
6952
6953 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
6954 M:      Chen Yu <yu.c.chen@intel.com>
6955 L:      platform-driver-x86@vger.kernel.org
6956 S:      Supported
6957 F:      drivers/platform/x86/surfacepro3_button.c
6958
6959 MICROTEK X6 SCANNER
6960 M:      Oliver Neukum <oliver@neukum.org>
6961 S:      Maintained
6962 F:      drivers/usb/image/microtek.*
6963
6964 MIPS
6965 M:      Ralf Baechle <ralf@linux-mips.org>
6966 L:      linux-mips@linux-mips.org
6967 W:      http://www.linux-mips.org/
6968 T:      git git://git.linux-mips.org/pub/scm/ralf/linux.git
6969 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
6970 S:      Supported
6971 F:      Documentation/mips/
6972 F:      arch/mips/
6973
6974 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
6975 M:      Hans Verkuil <hverkuil@xs4all.nl>
6976 L:      linux-media@vger.kernel.org
6977 T:      git git://linuxtv.org/media_tree.git
6978 W:      http://linuxtv.org
6979 S:      Odd Fixes
6980 F:      drivers/media/radio/radio-miropcm20*
6981
6982 Mellanox MLX5 core VPI driver
6983 M:      Eli Cohen <eli@mellanox.com>
6984 L:      netdev@vger.kernel.org
6985 L:      linux-rdma@vger.kernel.org
6986 W:      http://www.mellanox.com
6987 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6988 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
6989 T:      git git://openfabrics.org/~eli/connect-ib.git
6990 S:      Supported
6991 F:      drivers/net/ethernet/mellanox/mlx5/core/
6992 F:      include/linux/mlx5/
6993
6994 Mellanox MLX5 IB driver
6995 M:      Eli Cohen <eli@mellanox.com>
6996 L:      linux-rdma@vger.kernel.org
6997 W:      http://www.mellanox.com
6998 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
6999 T:      git git://openfabrics.org/~eli/connect-ib.git
7000 S:      Supported
7001 F:      include/linux/mlx5/
7002 F:      drivers/infiniband/hw/mlx5/
7003
7004 MN88472 MEDIA DRIVER
7005 M:      Antti Palosaari <crope@iki.fi>
7006 L:      linux-media@vger.kernel.org
7007 W:      http://linuxtv.org/
7008 W:      http://palosaari.fi/linux/
7009 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7010 T:      git git://linuxtv.org/anttip/media_tree.git
7011 S:      Maintained
7012 F:      drivers/staging/media/mn88472/
7013 F:      drivers/media/dvb-frontends/mn88472.h
7014
7015 MN88473 MEDIA DRIVER
7016 M:      Antti Palosaari <crope@iki.fi>
7017 L:      linux-media@vger.kernel.org
7018 W:      http://linuxtv.org/
7019 W:      http://palosaari.fi/linux/
7020 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7021 T:      git git://linuxtv.org/anttip/media_tree.git
7022 S:      Maintained
7023 F:      drivers/staging/media/mn88473/
7024 F:      drivers/media/dvb-frontends/mn88473.h
7025
7026 MODULE SUPPORT
7027 M:      Rusty Russell <rusty@rustcorp.com.au>
7028 S:      Maintained
7029 F:      include/linux/module.h
7030 F:      kernel/module.c
7031
7032 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
7033 W:      http://popies.net/meye/
7034 S:      Orphan
7035 F:      Documentation/video4linux/meye.txt
7036 F:      drivers/media/pci/meye/
7037 F:      include/uapi/linux/meye.h
7038
7039 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
7040 M:      Jiri Slaby <jirislaby@gmail.com>
7041 S:      Maintained
7042 F:      Documentation/serial/moxa-smartio
7043 F:      drivers/tty/mxser.*
7044
7045 MR800 AVERMEDIA USB FM RADIO DRIVER
7046 M:      Alexey Klimov <klimov.linux@gmail.com>
7047 L:      linux-media@vger.kernel.org
7048 T:      git git://linuxtv.org/media_tree.git
7049 S:      Maintained
7050 F:      drivers/media/radio/radio-mr800.c
7051
7052 MRF24J40 IEEE 802.15.4 RADIO DRIVER
7053 M:      Alan Ott <alan@signal11.us>
7054 L:      linux-wpan@vger.kernel.org
7055 S:      Maintained
7056 F:      drivers/net/ieee802154/mrf24j40.c
7057 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
7058
7059 MSI LAPTOP SUPPORT
7060 M:      "Lee, Chun-Yi" <jlee@suse.com>
7061 L:      platform-driver-x86@vger.kernel.org
7062 S:      Maintained
7063 F:      drivers/platform/x86/msi-laptop.c
7064
7065 MSI WMI SUPPORT
7066 L:      platform-driver-x86@vger.kernel.org
7067 S:      Orphan
7068 F:      drivers/platform/x86/msi-wmi.c
7069
7070 MSI001 MEDIA DRIVER
7071 M:      Antti Palosaari <crope@iki.fi>
7072 L:      linux-media@vger.kernel.org
7073 W:      http://linuxtv.org/
7074 W:      http://palosaari.fi/linux/
7075 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7076 T:      git git://linuxtv.org/anttip/media_tree.git
7077 S:      Maintained
7078 F:      drivers/media/tuners/msi001*
7079
7080 MSI2500 MEDIA DRIVER
7081 M:      Antti Palosaari <crope@iki.fi>
7082 L:      linux-media@vger.kernel.org
7083 W:      http://linuxtv.org/
7084 W:      http://palosaari.fi/linux/
7085 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7086 T:      git git://linuxtv.org/anttip/media_tree.git
7087 S:      Maintained
7088 F:      drivers/media/usb/msi2500/
7089
7090 MSYSTEMS DISKONCHIP G3 MTD DRIVER
7091 M:      Robert Jarzmik <robert.jarzmik@free.fr>
7092 L:      linux-mtd@lists.infradead.org
7093 S:      Maintained
7094 F:      drivers/mtd/devices/docg3*
7095
7096 MT9M032 APTINA SENSOR DRIVER
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/mt9m032.c
7102 F:      include/media/mt9m032.h
7103
7104 MT9P031 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:      drivers/media/i2c/mt9p031.c
7110 F:      include/media/mt9p031.h
7111
7112 MT9T001 APTINA CAMERA SENSOR
7113 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7114 L:      linux-media@vger.kernel.org
7115 T:      git git://linuxtv.org/media_tree.git
7116 S:      Maintained
7117 F:      drivers/media/i2c/mt9t001.c
7118 F:      include/media/mt9t001.h
7119
7120 MT9V032 APTINA CAMERA SENSOR
7121 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7122 L:      linux-media@vger.kernel.org
7123 T:      git git://linuxtv.org/media_tree.git
7124 S:      Maintained
7125 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
7126 F:      drivers/media/i2c/mt9v032.c
7127 F:      include/media/mt9v032.h
7128
7129 MULTIFUNCTION DEVICES (MFD)
7130 M:      Lee Jones <lee.jones@linaro.org>
7131 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
7132 S:      Supported
7133 F:      drivers/mfd/
7134 F:      include/linux/mfd/
7135
7136 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
7137 M:      Ulf Hansson <ulf.hansson@linaro.org>
7138 L:      linux-mmc@vger.kernel.org
7139 T:      git git://git.linaro.org/people/ulf.hansson/mmc.git
7140 S:      Maintained
7141 F:      drivers/mmc/
7142 F:      include/linux/mmc/
7143 F:      include/uapi/linux/mmc/
7144
7145 MULTIMEDIA CARD (MMC) ETC. OVER SPI
7146 S:      Orphan
7147 F:      drivers/mmc/host/mmc_spi.c
7148 F:      include/linux/spi/mmc_spi.h
7149
7150 MULTISOUND SOUND DRIVER
7151 M:      Andrew Veliath <andrewtv@usa.net>
7152 S:      Maintained
7153 F:      Documentation/sound/oss/MultiSound
7154 F:      sound/oss/msnd*
7155
7156 MULTITECH MULTIPORT CARD (ISICOM)
7157 S:      Orphan
7158 F:      drivers/tty/isicom.c
7159 F:      include/linux/isicom.h
7160
7161 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
7162 M:      Felipe Balbi <balbi@ti.com>
7163 L:      linux-usb@vger.kernel.org
7164 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7165 S:      Maintained
7166 F:      drivers/usb/musb/
7167
7168 MXL5007T MEDIA DRIVER
7169 M:      Michael Krufky <mkrufky@linuxtv.org>
7170 L:      linux-media@vger.kernel.org
7171 W:      http://linuxtv.org/
7172 W:      http://github.com/mkrufky
7173 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7174 T:      git git://linuxtv.org/mkrufky/tuners.git
7175 S:      Maintained
7176 F:      drivers/media/tuners/mxl5007t.*
7177
7178 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
7179 M:      Hyong-Youb Kim <hykim@myri.com>
7180 L:      netdev@vger.kernel.org
7181 W:      https://www.myricom.com/support/downloads/myri10ge.html
7182 S:      Supported
7183 F:      drivers/net/ethernet/myricom/myri10ge/
7184
7185 NATSEMI ETHERNET DRIVER (DP8381x)
7186 S:      Orphan
7187 F:      drivers/net/ethernet/natsemi/natsemi.c
7188
7189 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
7190 M:      Daniel Mack <zonque@gmail.com>
7191 S:      Maintained
7192 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7193 W:      http://www.native-instruments.com
7194 F:      sound/usb/caiaq/
7195
7196 NCP FILESYSTEM
7197 M:      Petr Vandrovec <petr@vandrovec.name>
7198 S:      Odd Fixes
7199 F:      fs/ncpfs/
7200
7201 NCR 5380 SCSI DRIVERS
7202 M:      Finn Thain <fthain@telegraphics.com.au>
7203 M:      Michael Schmitz <schmitzmic@gmail.com>
7204 L:      linux-scsi@vger.kernel.org
7205 S:      Maintained
7206 F:      Documentation/scsi/g_NCR5380.txt
7207 F:      drivers/scsi/NCR5380.*
7208 F:      drivers/scsi/arm/cumana_1.c
7209 F:      drivers/scsi/arm/oak.c
7210 F:      drivers/scsi/atari_NCR5380.c
7211 F:      drivers/scsi/atari_scsi.*
7212 F:      drivers/scsi/dmx3191d.c
7213 F:      drivers/scsi/dtc.*
7214 F:      drivers/scsi/g_NCR5380.*
7215 F:      drivers/scsi/g_NCR5380_mmio.c
7216 F:      drivers/scsi/mac_scsi.*
7217 F:      drivers/scsi/pas16.*
7218 F:      drivers/scsi/sun3_scsi.*
7219 F:      drivers/scsi/sun3_scsi_vme.c
7220 F:      drivers/scsi/t128.*
7221
7222 NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
7223 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
7224 L:      linux-scsi@vger.kernel.org
7225 S:      Maintained
7226 F:      drivers/scsi/NCR_D700.*
7227
7228 NCT6775 HARDWARE MONITOR DRIVER
7229 M:      Guenter Roeck <linux@roeck-us.net>
7230 L:      lm-sensors@lm-sensors.org
7231 S:      Maintained
7232 F:      Documentation/hwmon/nct6775
7233 F:      drivers/hwmon/nct6775.c
7234
7235 NETEFFECT IWARP RNIC DRIVER (IW_NES)
7236 M:      Faisal Latif <faisal.latif@intel.com>
7237 L:      linux-rdma@vger.kernel.org
7238 W:      http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
7239 S:      Supported
7240 F:      drivers/infiniband/hw/nes/
7241
7242 NETEM NETWORK EMULATOR
7243 M:      Stephen Hemminger <stephen@networkplumber.org>
7244 L:      netem@lists.linux-foundation.org
7245 S:      Maintained
7246 F:      net/sched/sch_netem.c
7247
7248 NETERION 10GbE DRIVERS (s2io/vxge)
7249 M:      Jon Mason <jdmason@kudzu.us>
7250 L:      netdev@vger.kernel.org
7251 S:      Supported
7252 F:      Documentation/networking/s2io.txt
7253 F:      Documentation/networking/vxge.txt
7254 F:      drivers/net/ethernet/neterion/
7255
7256 NETFILTER ({IP,IP6,ARP,EB,NF}TABLES)
7257 M:      Pablo Neira Ayuso <pablo@netfilter.org>
7258 M:      Patrick McHardy <kaber@trash.net>
7259 M:      Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
7260 L:      netfilter-devel@vger.kernel.org
7261 L:      coreteam@netfilter.org
7262 W:      http://www.netfilter.org/
7263 W:      http://www.iptables.org/
7264 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
7265 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
7266 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
7267 S:      Supported
7268 F:      include/linux/netfilter*
7269 F:      include/linux/netfilter/
7270 F:      include/net/netfilter/
7271 F:      include/uapi/linux/netfilter*
7272 F:      include/uapi/linux/netfilter/
7273 F:      net/*/netfilter.c
7274 F:      net/*/netfilter/
7275 F:      net/netfilter/
7276 F:      net/bridge/br_netfilter*.c
7277
7278 NETLABEL
7279 M:      Paul Moore <paul@paul-moore.com>
7280 W:      http://netlabel.sf.net
7281 L:      netdev@vger.kernel.org
7282 S:      Maintained
7283 F:      Documentation/netlabel/
7284 F:      include/net/netlabel.h
7285 F:      net/netlabel/
7286
7287 NETROM NETWORK LAYER
7288 M:      Ralf Baechle <ralf@linux-mips.org>
7289 L:      linux-hams@vger.kernel.org
7290 W:      http://www.linux-ax25.org/
7291 S:      Maintained
7292 F:      include/net/netrom.h
7293 F:      include/uapi/linux/netrom.h
7294 F:      net/netrom/
7295
7296 NETWORK BLOCK DEVICE (NBD)
7297 M:      Markus Pargmann <mpa@pengutronix.de>
7298 S:      Maintained
7299 L:      nbd-general@lists.sourceforge.net
7300 T:      git git://git.pengutronix.de/git/mpa/linux-nbd.git
7301 F:      Documentation/blockdev/nbd.txt
7302 F:      drivers/block/nbd.c
7303 F:      include/uapi/linux/nbd.h
7304
7305 NETWORK DROP MONITOR
7306 M:      Neil Horman <nhorman@tuxdriver.com>
7307 L:      netdev@vger.kernel.org
7308 S:      Maintained
7309 W:      https://fedorahosted.org/dropwatch/
7310 F:      net/core/drop_monitor.c
7311
7312 NETWORKING [GENERAL]
7313 M:      "David S. Miller" <davem@davemloft.net>
7314 L:      netdev@vger.kernel.org
7315 W:      http://www.linuxfoundation.org/en/Net
7316 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7317 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7318 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7319 S:      Maintained
7320 F:      net/
7321 F:      include/net/
7322 F:      include/linux/in.h
7323 F:      include/linux/net.h
7324 F:      include/linux/netdevice.h
7325 F:      include/uapi/linux/in.h
7326 F:      include/uapi/linux/net.h
7327 F:      include/uapi/linux/netdevice.h
7328 F:      include/uapi/linux/net_namespace.h
7329 F:      tools/net/
7330 F:      tools/testing/selftests/net/
7331 F:      lib/random32.c
7332 F:      lib/test_bpf.c
7333
7334 NETWORKING [IPv4/IPv6]
7335 M:      "David S. Miller" <davem@davemloft.net>
7336 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
7337 M:      James Morris <jmorris@namei.org>
7338 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
7339 M:      Patrick McHardy <kaber@trash.net>
7340 L:      netdev@vger.kernel.org
7341 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7342 S:      Maintained
7343 F:      net/ipv4/
7344 F:      net/ipv6/
7345 F:      include/net/ip*
7346 F:      arch/x86/net/*
7347
7348 NETWORKING [IPSEC]
7349 M:      Steffen Klassert <steffen.klassert@secunet.com>
7350 M:      Herbert Xu <herbert@gondor.apana.org.au>
7351 M:      "David S. Miller" <davem@davemloft.net>
7352 L:      netdev@vger.kernel.org
7353 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
7354 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
7355 S:      Maintained
7356 F:      net/core/flow.c
7357 F:      net/xfrm/
7358 F:      net/key/
7359 F:      net/ipv4/xfrm*
7360 F:      net/ipv4/esp4.c
7361 F:      net/ipv4/ah4.c
7362 F:      net/ipv4/ipcomp.c
7363 F:      net/ipv4/ip_vti.c
7364 F:      net/ipv6/xfrm*
7365 F:      net/ipv6/esp6.c
7366 F:      net/ipv6/ah6.c
7367 F:      net/ipv6/ipcomp6.c
7368 F:      net/ipv6/ip6_vti.c
7369 F:      include/uapi/linux/xfrm.h
7370 F:      include/net/xfrm.h
7371
7372 NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
7373 M:      Paul Moore <paul@paul-moore.com>
7374 L:      netdev@vger.kernel.org
7375 S:      Maintained
7376
7377 NETWORKING [WIRELESS]
7378 L:      linux-wireless@vger.kernel.org
7379 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7380
7381 NETWORKING DRIVERS
7382 L:      netdev@vger.kernel.org
7383 W:      http://www.linuxfoundation.org/en/Net
7384 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7385 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7386 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7387 S:      Odd Fixes
7388 F:      drivers/net/
7389 F:      include/linux/if_*
7390 F:      include/linux/netdevice.h
7391 F:      include/linux/etherdevice.h
7392 F:      include/linux/fcdevice.h
7393 F:      include/linux/fddidevice.h
7394 F:      include/linux/hippidevice.h
7395 F:      include/linux/inetdevice.h
7396 F:      include/uapi/linux/if_*
7397 F:      include/uapi/linux/netdevice.h
7398
7399 NETWORKING DRIVERS (WIRELESS)
7400 M:      Kalle Valo <kvalo@codeaurora.org>
7401 L:      linux-wireless@vger.kernel.org
7402 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7403 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git/
7404 S:      Maintained
7405 F:      drivers/net/wireless/
7406
7407 NETXEN (1/10) GbE SUPPORT
7408 M:      Manish Chopra <manish.chopra@qlogic.com>
7409 M:      Sony Chacko <sony.chacko@qlogic.com>
7410 M:      Rajesh Borundia <rajesh.borundia@qlogic.com>
7411 L:      netdev@vger.kernel.org
7412 W:      http://www.qlogic.com
7413 S:      Supported
7414 F:      drivers/net/ethernet/qlogic/netxen/
7415
7416 NFC SUBSYSTEM
7417 M:      Lauro Ramos Venancio <lauro.venancio@openbossa.org>
7418 M:      Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
7419 M:      Samuel Ortiz <sameo@linux.intel.com>
7420 L:      linux-wireless@vger.kernel.org
7421 L:      linux-nfc@lists.01.org (subscribers-only)
7422 S:      Supported
7423 F:      net/nfc/
7424 F:      include/net/nfc/
7425 F:      include/uapi/linux/nfc.h
7426 F:      drivers/nfc/
7427 F:      include/linux/platform_data/pn544.h
7428 F:      Documentation/devicetree/bindings/net/nfc/
7429
7430 NFS, SUNRPC, AND LOCKD CLIENTS
7431 M:      Trond Myklebust <trond.myklebust@primarydata.com>
7432 M:      Anna Schumaker <anna.schumaker@netapp.com>
7433 L:      linux-nfs@vger.kernel.org
7434 W:      http://client.linux-nfs.org
7435 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
7436 S:      Maintained
7437 F:      fs/lockd/
7438 F:      fs/nfs/
7439 F:      fs/nfs_common/
7440 F:      net/sunrpc/
7441 F:      include/linux/lockd/
7442 F:      include/linux/nfs*
7443 F:      include/linux/sunrpc/
7444 F:      include/uapi/linux/nfs*
7445 F:      include/uapi/linux/sunrpc/
7446
7447 NILFS2 FILESYSTEM
7448 M:      Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
7449 L:      linux-nilfs@vger.kernel.org
7450 W:      http://nilfs.sourceforge.net/
7451 T:      git git://github.com/konis/nilfs2.git
7452 S:      Supported
7453 F:      Documentation/filesystems/nilfs2.txt
7454 F:      fs/nilfs2/
7455 F:      include/linux/nilfs2_fs.h
7456
7457 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
7458 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7459 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7460 S:      Maintained
7461 F:      Documentation/scsi/NinjaSCSI.txt
7462 F:      drivers/scsi/pcmcia/nsp_*
7463
7464 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
7465 M:      GOTO Masanori <gotom@debian.or.jp>
7466 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7467 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7468 S:      Maintained
7469 F:      Documentation/scsi/NinjaSCSI.txt
7470 F:      drivers/scsi/nsp32*
7471
7472 NIOS2 ARCHITECTURE
7473 M:      Ley Foon Tan <lftan@altera.com>
7474 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
7475 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
7476 S:      Maintained
7477 F:      arch/nios2/
7478
7479 NOKIA N900 POWER SUPPLY DRIVERS
7480 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
7481 S:      Maintained
7482 F:      include/linux/power/bq2415x_charger.h
7483 F:      include/linux/power/bq27xxx_battery.h
7484 F:      include/linux/power/isp1704_charger.h
7485 F:      drivers/power/bq2415x_charger.c
7486 F:      drivers/power/bq27xxx_battery.c
7487 F:      drivers/power/isp1704_charger.c
7488 F:      drivers/power/rx51_battery.c
7489
7490 NTB DRIVER CORE
7491 M:      Jon Mason <jdmason@kudzu.us>
7492 M:      Dave Jiang <dave.jiang@intel.com>
7493 M:      Allen Hubbe <Allen.Hubbe@emc.com>
7494 L:      linux-ntb@googlegroups.com
7495 S:      Supported
7496 W:      https://github.com/jonmason/ntb/wiki
7497 T:      git git://github.com/jonmason/ntb.git
7498 F:      drivers/ntb/
7499 F:      drivers/net/ntb_netdev.c
7500 F:      include/linux/ntb.h
7501 F:      include/linux/ntb_transport.h
7502
7503 NTB INTEL DRIVER
7504 M:      Jon Mason <jdmason@kudzu.us>
7505 M:      Dave Jiang <dave.jiang@intel.com>
7506 L:      linux-ntb@googlegroups.com
7507 S:      Supported
7508 W:      https://github.com/jonmason/ntb/wiki
7509 T:      git git://github.com/jonmason/ntb.git
7510 F:      drivers/ntb/hw/intel/
7511
7512 NTFS FILESYSTEM
7513 M:      Anton Altaparmakov <anton@tuxera.com>
7514 L:      linux-ntfs-dev@lists.sourceforge.net
7515 W:      http://www.tuxera.com/
7516 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
7517 S:      Supported
7518 F:      Documentation/filesystems/ntfs.txt
7519 F:      fs/ntfs/
7520
7521 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
7522 M:      Antonino Daplas <adaplas@gmail.com>
7523 L:      linux-fbdev@vger.kernel.org
7524 S:      Maintained
7525 F:      drivers/video/fbdev/riva/
7526 F:      drivers/video/fbdev/nvidia/
7527
7528 NVM EXPRESS DRIVER
7529 M:      Keith Busch <keith.busch@intel.com>
7530 M:      Jens Axboe <axboe@fb.com>
7531 L:      linux-nvme@lists.infradead.org
7532 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
7533 W:      https://kernel.googlesource.com/pub/scm/linux/kernel/git/axboe/linux-block/
7534 S:      Supported
7535 F:      drivers/nvme/host/
7536 F:      include/linux/nvme.h
7537
7538 NVMEM FRAMEWORK
7539 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
7540 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
7541 S:      Maintained
7542 F:      drivers/nvmem/
7543 F:      Documentation/devicetree/bindings/nvmem/
7544 F:      include/linux/nvmem-consumer.h
7545 F:      include/linux/nvmem-provider.h
7546
7547 NXP-NCI NFC DRIVER
7548 M:      ClĂ©ment Perrochaud <clement.perrochaud@effinnov.com>
7549 R:      Charles Gorand <charles.gorand@effinnov.com>
7550 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
7551 S:      Supported
7552 F:      drivers/nfc/nxp-nci
7553
7554 NXP TDA998X DRM DRIVER
7555 M:      Russell King <rmk+kernel@arm.linux.org.uk>
7556 S:      Supported
7557 F:      drivers/gpu/drm/i2c/tda998x_drv.c
7558 F:      include/drm/i2c/tda998x.h
7559
7560 NXP TFA9879 DRIVER
7561 M:      Peter Rosin <peda@axentia.se>
7562 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7563 S:      Maintained
7564 F:      sound/soc/codecs/tfa9879*
7565
7566 OMAP SUPPORT
7567 M:      Tony Lindgren <tony@atomide.com>
7568 L:      linux-omap@vger.kernel.org
7569 W:      http://www.muru.com/linux/omap/
7570 W:      http://linux.omap.com/
7571 Q:      http://patchwork.kernel.org/project/linux-omap/list/
7572 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
7573 S:      Maintained
7574 F:      arch/arm/*omap*/
7575 F:      arch/arm/configs/omap1_defconfig
7576 F:      arch/arm/configs/omap2plus_defconfig
7577 F:      drivers/i2c/busses/i2c-omap.c
7578 F:      drivers/irqchip/irq-omap-intc.c
7579 F:      drivers/mfd/*omap*.c
7580 F:      drivers/mfd/menelaus.c
7581 F:      drivers/mfd/palmas.c
7582 F:      drivers/mfd/tps65217.c
7583 F:      drivers/mfd/tps65218.c
7584 F:      drivers/mfd/tps65910.c
7585 F:      drivers/mfd/twl-core.[ch]
7586 F:      drivers/mfd/twl4030*.c
7587 F:      drivers/mfd/twl6030*.c
7588 F:      drivers/mfd/twl6040*.c
7589 F:      drivers/regulator/palmas-regulator*.c
7590 F:      drivers/regulator/pbias-regulator.c
7591 F:      drivers/regulator/tps65217-regulator.c
7592 F:      drivers/regulator/tps65218-regulator.c
7593 F:      drivers/regulator/tps65910-regulator.c
7594 F:      drivers/regulator/twl-regulator.c
7595 F:      include/linux/i2c-omap.h
7596
7597 OMAP DEVICE TREE SUPPORT
7598 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7599 M:      Tony Lindgren <tony@atomide.com>
7600 L:      linux-omap@vger.kernel.org
7601 L:      devicetree@vger.kernel.org
7602 S:      Maintained
7603 F:      arch/arm/boot/dts/*omap*
7604 F:      arch/arm/boot/dts/*am3*
7605 F:      arch/arm/boot/dts/*am4*
7606 F:      arch/arm/boot/dts/*am5*
7607 F:      arch/arm/boot/dts/*dra7*
7608
7609 OMAP CLOCK FRAMEWORK SUPPORT
7610 M:      Paul Walmsley <paul@pwsan.com>
7611 L:      linux-omap@vger.kernel.org
7612 S:      Maintained
7613 F:      arch/arm/*omap*/*clock*
7614
7615 OMAP POWER MANAGEMENT SUPPORT
7616 M:      Kevin Hilman <khilman@deeprootsystems.com>
7617 L:      linux-omap@vger.kernel.org
7618 S:      Maintained
7619 F:      arch/arm/*omap*/*pm*
7620 F:      drivers/cpufreq/omap-cpufreq.c
7621
7622 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
7623 M:      Rajendra Nayak <rnayak@ti.com>
7624 M:      Paul Walmsley <paul@pwsan.com>
7625 L:      linux-omap@vger.kernel.org
7626 S:      Maintained
7627 F:      arch/arm/mach-omap2/prm*
7628
7629 OMAP AUDIO SUPPORT
7630 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
7631 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
7632 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7633 L:      linux-omap@vger.kernel.org
7634 S:      Maintained
7635 F:      sound/soc/omap/
7636
7637 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
7638 M:      Roger Quadros <rogerq@ti.com>
7639 M:      Tony Lindgren <tony@atomide.com>
7640 L:      linux-omap@vger.kernel.org
7641 S:      Maintained
7642 F:      drivers/memory/omap-gpmc.c
7643 F:      arch/arm/mach-omap2/*gpmc*
7644
7645 OMAP FRAMEBUFFER SUPPORT
7646 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
7647 L:      linux-fbdev@vger.kernel.org
7648 L:      linux-omap@vger.kernel.org
7649 S:      Maintained
7650 F:      drivers/video/fbdev/omap/
7651
7652 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
7653 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
7654 L:      linux-omap@vger.kernel.org
7655 L:      linux-fbdev@vger.kernel.org
7656 S:      Maintained
7657 F:      drivers/video/fbdev/omap2/
7658 F:      Documentation/arm/OMAP/DSS
7659
7660 OMAP HARDWARE SPINLOCK SUPPORT
7661 M:      Ohad Ben-Cohen <ohad@wizery.com>
7662 L:      linux-omap@vger.kernel.org
7663 S:      Maintained
7664 F:      drivers/hwspinlock/omap_hwspinlock.c
7665
7666 OMAP MMC SUPPORT
7667 M:      Jarkko Lavinen <jarkko.lavinen@nokia.com>
7668 L:      linux-omap@vger.kernel.org
7669 S:      Maintained
7670 F:      drivers/mmc/host/omap.c
7671
7672 OMAP HS MMC SUPPORT
7673 L:      linux-mmc@vger.kernel.org
7674 L:      linux-omap@vger.kernel.org
7675 S:      Orphan
7676 F:      drivers/mmc/host/omap_hsmmc.c
7677
7678 OMAP RANDOM NUMBER GENERATOR SUPPORT
7679 M:      Deepak Saxena <dsaxena@plexity.net>
7680 S:      Maintained
7681 F:      drivers/char/hw_random/omap-rng.c
7682
7683 OMAP HWMOD SUPPORT
7684 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7685 M:      Paul Walmsley <paul@pwsan.com>
7686 L:      linux-omap@vger.kernel.org
7687 S:      Maintained
7688 F:      arch/arm/mach-omap2/omap_hwmod.*
7689
7690 OMAP HWMOD DATA
7691 M:      Paul Walmsley <paul@pwsan.com>
7692 L:      linux-omap@vger.kernel.org
7693 S:      Maintained
7694 F:      arch/arm/mach-omap2/omap_hwmod*data*
7695
7696 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
7697 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7698 L:      linux-omap@vger.kernel.org
7699 S:      Maintained
7700 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
7701
7702 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
7703 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7704 L:      linux-media@vger.kernel.org
7705 S:      Maintained
7706 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
7707 F:      drivers/media/platform/omap3isp/
7708 F:      drivers/staging/media/omap4iss/
7709
7710 OMAP USB SUPPORT
7711 M:      Felipe Balbi <balbi@ti.com>
7712 L:      linux-usb@vger.kernel.org
7713 L:      linux-omap@vger.kernel.org
7714 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7715 S:      Maintained
7716 F:      drivers/usb/*/*omap*
7717 F:      arch/arm/*omap*/usb*
7718
7719 OMAP GPIO DRIVER
7720 M:      Javier Martinez Canillas <javier@dowhile0.org>
7721 M:      Santosh Shilimkar <ssantosh@kernel.org>
7722 M:      Kevin Hilman <khilman@deeprootsystems.com>
7723 L:      linux-omap@vger.kernel.org
7724 S:      Maintained
7725 F:      drivers/gpio/gpio-omap.c
7726
7727 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
7728 M:      Mark Jackson <mpfj@newflow.co.uk>
7729 L:      linux-omap@vger.kernel.org
7730 S:      Maintained
7731 F:      arch/arm/boot/dts/am335x-nano.dts
7732
7733 OMFS FILESYSTEM
7734 M:      Bob Copeland <me@bobcopeland.com>
7735 L:      linux-karma-devel@lists.sourceforge.net
7736 S:      Maintained
7737 F:      Documentation/filesystems/omfs.txt
7738 F:      fs/omfs/
7739
7740 OMNIKEY CARDMAN 4000 DRIVER
7741 M:      Harald Welte <laforge@gnumonks.org>
7742 S:      Maintained
7743 F:      drivers/char/pcmcia/cm4000_cs.c
7744 F:      include/linux/cm4000_cs.h
7745 F:      include/uapi/linux/cm4000_cs.h
7746
7747 OMNIKEY CARDMAN 4040 DRIVER
7748 M:      Harald Welte <laforge@gnumonks.org>
7749 S:      Maintained
7750 F:      drivers/char/pcmcia/cm4040_cs.*
7751
7752 OMNIVISION OV7670 SENSOR DRIVER
7753 M:      Jonathan Corbet <corbet@lwn.net>
7754 L:      linux-media@vger.kernel.org
7755 T:      git git://linuxtv.org/media_tree.git
7756 S:      Maintained
7757 F:      drivers/media/i2c/ov7670.c
7758
7759 ONENAND FLASH DRIVER
7760 M:      Kyungmin Park <kyungmin.park@samsung.com>
7761 L:      linux-mtd@lists.infradead.org
7762 S:      Maintained
7763 F:      drivers/mtd/onenand/
7764 F:      include/linux/mtd/onenand*.h
7765
7766 ONSTREAM SCSI TAPE DRIVER
7767 M:      Willem Riede <osst@riede.org>
7768 L:      osst-users@lists.sourceforge.net
7769 L:      linux-scsi@vger.kernel.org
7770 S:      Maintained
7771 F:      Documentation/scsi/osst.txt
7772 F:      drivers/scsi/osst.*
7773 F:      drivers/scsi/osst_*.h
7774 F:      drivers/scsi/st.h
7775
7776 OPENCORES I2C BUS DRIVER
7777 M:      Peter Korsgaard <jacmet@sunsite.dk>
7778 L:      linux-i2c@vger.kernel.org
7779 S:      Maintained
7780 F:      Documentation/i2c/busses/i2c-ocores
7781 F:      drivers/i2c/busses/i2c-ocores.c
7782
7783 OPEN FIRMWARE AND FLATTENED DEVICE TREE
7784 M:      Rob Herring <robh+dt@kernel.org>
7785 M:      Frank Rowand <frowand.list@gmail.com>
7786 M:      Grant Likely <grant.likely@linaro.org>
7787 L:      devicetree@vger.kernel.org
7788 W:      http://www.devicetree.org/
7789 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/glikely/linux.git
7790 S:      Maintained
7791 F:      drivers/of/
7792 F:      include/linux/of*.h
7793 F:      scripts/dtc/
7794
7795 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
7796 M:      Rob Herring <robh+dt@kernel.org>
7797 M:      Pawel Moll <pawel.moll@arm.com>
7798 M:      Mark Rutland <mark.rutland@arm.com>
7799 M:      Ian Campbell <ijc+devicetree@hellion.org.uk>
7800 M:      Kumar Gala <galak@codeaurora.org>
7801 L:      devicetree@vger.kernel.org
7802 S:      Maintained
7803 F:      Documentation/devicetree/
7804 F:      arch/*/boot/dts/
7805 F:      include/dt-bindings/
7806
7807 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
7808 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
7809 L:      devicetree@vger.kernel.org
7810 S:      Maintained
7811 F:      Documentation/devicetree/dynamic-resolution-notes.txt
7812 F:      Documentation/devicetree/overlay-notes.txt
7813 F:      drivers/of/overlay.c
7814 F:      drivers/of/resolver.c
7815
7816 OPENRISC ARCHITECTURE
7817 M:      Jonas Bonn <jonas@southpole.se>
7818 W:      http://openrisc.net
7819 L:      linux@lists.openrisc.net (moderated for non-subscribers)
7820 S:      Maintained
7821 T:      git git://openrisc.net/~jonas/linux
7822 F:      arch/openrisc/
7823
7824 OPENVSWITCH
7825 M:      Pravin Shelar <pshelar@nicira.com>
7826 L:      netdev@vger.kernel.org
7827 L:      dev@openvswitch.org
7828 W:      http://openvswitch.org
7829 S:      Maintained
7830 F:      net/openvswitch/
7831 F:      include/uapi/linux/openvswitch.h
7832
7833 OPL4 DRIVER
7834 M:      Clemens Ladisch <clemens@ladisch.de>
7835 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7836 T:      git git://git.alsa-project.org/alsa-kernel.git
7837 S:      Maintained
7838 F:      sound/drivers/opl4/
7839
7840 OPROFILE
7841 M:      Robert Richter <rric@kernel.org>
7842 L:      oprofile-list@lists.sf.net
7843 S:      Maintained
7844 F:      arch/*/include/asm/oprofile*.h
7845 F:      arch/*/oprofile/
7846 F:      drivers/oprofile/
7847 F:      include/linux/oprofile.h
7848
7849 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
7850 M:      Mark Fasheh <mfasheh@suse.com>
7851 M:      Joel Becker <jlbec@evilplan.org>
7852 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
7853 W:      http://ocfs2.wiki.kernel.org
7854 S:      Supported
7855 F:      Documentation/filesystems/ocfs2.txt
7856 F:      Documentation/filesystems/dlmfs.txt
7857 F:      fs/ocfs2/
7858
7859 ORINOCO DRIVER
7860 L:      linux-wireless@vger.kernel.org
7861 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
7862 W:      http://www.nongnu.org/orinoco/
7863 S:      Orphan
7864 F:      drivers/net/wireless/orinoco/
7865
7866 OSD LIBRARY and FILESYSTEM
7867 M:      Boaz Harrosh <ooo@electrozaur.com>
7868 M:      Benny Halevy <bhalevy@primarydata.com>
7869 L:      osd-dev@open-osd.org
7870 W:      http://open-osd.org
7871 T:      git git://git.open-osd.org/open-osd.git
7872 S:      Maintained
7873 F:      drivers/scsi/osd/
7874 F:      include/scsi/osd_*
7875 F:      fs/exofs/
7876
7877 OVERLAY FILESYSTEM
7878 M:      Miklos Szeredi <miklos@szeredi.hu>
7879 L:      linux-unionfs@vger.kernel.org
7880 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
7881 S:      Supported
7882 F:      fs/overlayfs/
7883 F:      Documentation/filesystems/overlayfs.txt
7884
7885 P54 WIRELESS DRIVER
7886 M:      Christian Lamparter <chunkeey@googlemail.com>
7887 L:      linux-wireless@vger.kernel.org
7888 W:      http://wireless.kernel.org/en/users/Drivers/p54
7889 S:      Maintained
7890 F:      drivers/net/wireless/p54/
7891
7892 PA SEMI ETHERNET DRIVER
7893 M:      Olof Johansson <olof@lixom.net>
7894 L:      netdev@vger.kernel.org
7895 S:      Maintained
7896 F:      drivers/net/ethernet/pasemi/*
7897
7898 PA SEMI SMBUS DRIVER
7899 M:      Olof Johansson <olof@lixom.net>
7900 L:      linux-i2c@vger.kernel.org
7901 S:      Maintained
7902 F:      drivers/i2c/busses/i2c-pasemi.c
7903
7904 PADATA PARALLEL EXECUTION MECHANISM
7905 M:      Steffen Klassert <steffen.klassert@secunet.com>
7906 L:      linux-crypto@vger.kernel.org
7907 S:      Maintained
7908 F:      kernel/padata.c
7909 F:      include/linux/padata.h
7910 F:      Documentation/padata.txt
7911
7912 PANASONIC LAPTOP ACPI EXTRAS DRIVER
7913 M:      Harald Welte <laforge@gnumonks.org>
7914 L:      platform-driver-x86@vger.kernel.org
7915 S:      Maintained
7916 F:      drivers/platform/x86/panasonic-laptop.c
7917
7918 PANASONIC MN10300/AM33/AM34 PORT
7919 M:      David Howells <dhowells@redhat.com>
7920 M:      Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
7921 L:      linux-am33-list@redhat.com (moderated for non-subscribers)
7922 W:      ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
7923 S:      Maintained
7924 F:      Documentation/mn10300/
7925 F:      arch/mn10300/
7926
7927 PARALLEL PORT SUBSYSTEM
7928 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
7929 M:      Sudip Mukherjee <sudip@vectorindia.org>
7930 L:      linux-parport@lists.infradead.org (subscribers-only)
7931 S:      Maintained
7932 F:      drivers/parport/
7933 F:      include/linux/parport*.h
7934 F:      drivers/char/ppdev.c
7935 F:      include/uapi/linux/ppdev.h
7936 F:      Documentation/parport*.txt
7937
7938 PARAVIRT_OPS INTERFACE
7939 M:      Jeremy Fitzhardinge <jeremy@goop.org>
7940 M:      Chris Wright <chrisw@sous-sol.org>
7941 M:      Alok Kataria <akataria@vmware.com>
7942 M:      Rusty Russell <rusty@rustcorp.com.au>
7943 L:      virtualization@lists.linux-foundation.org
7944 S:      Supported
7945 F:      Documentation/virtual/paravirt_ops.txt
7946 F:      arch/*/kernel/paravirt*
7947 F:      arch/*/include/asm/paravirt.h
7948
7949 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
7950 M:      Tim Waugh <tim@cyberelk.net>
7951 L:      linux-parport@lists.infradead.org (subscribers-only)
7952 S:      Maintained
7953 F:      Documentation/blockdev/paride.txt
7954 F:      drivers/block/paride/
7955
7956 PARISC ARCHITECTURE
7957 M:      "James E.J. Bottomley" <jejb@parisc-linux.org>
7958 M:      Helge Deller <deller@gmx.de>
7959 L:      linux-parisc@vger.kernel.org
7960 W:      http://www.parisc-linux.org/
7961 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
7962 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
7963 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
7964 S:      Maintained
7965 F:      arch/parisc/
7966 F:      Documentation/parisc/
7967 F:      drivers/parisc/
7968 F:      drivers/char/agp/parisc-agp.c
7969 F:      drivers/input/serio/gscps2.c
7970 F:      drivers/parport/parport_gsc.*
7971 F:      drivers/tty/serial/8250/8250_gsc.c
7972 F:      drivers/video/fbdev/sti*
7973 F:      drivers/video/console/sti*
7974 F:      drivers/video/logo/logo_parisc*
7975
7976 PC87360 HARDWARE MONITORING DRIVER
7977 M:      Jim Cromie <jim.cromie@gmail.com>
7978 L:      lm-sensors@lm-sensors.org
7979 S:      Maintained
7980 F:      Documentation/hwmon/pc87360
7981 F:      drivers/hwmon/pc87360.c
7982
7983 PC8736x GPIO DRIVER
7984 M:      Jim Cromie <jim.cromie@gmail.com>
7985 S:      Maintained
7986 F:      drivers/char/pc8736x_gpio.c
7987
7988 PC87427 HARDWARE MONITORING DRIVER
7989 M:      Jean Delvare <jdelvare@suse.com>
7990 L:      lm-sensors@lm-sensors.org
7991 S:      Maintained
7992 F:      Documentation/hwmon/pc87427
7993 F:      drivers/hwmon/pc87427.c
7994
7995 PCA9532 LED DRIVER
7996 M:      Riku Voipio <riku.voipio@iki.fi>
7997 S:      Maintained
7998 F:      drivers/leds/leds-pca9532.c
7999 F:      include/linux/leds-pca9532.h
8000
8001 PCA9541 I2C BUS MASTER SELECTOR DRIVER
8002 M:      Guenter Roeck <linux@roeck-us.net>
8003 L:      linux-i2c@vger.kernel.org
8004 S:      Maintained
8005 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
8006
8007 PCDP - PRIMARY CONSOLE AND DEBUG PORT
8008 M:      Khalid Aziz <khalid@gonehiking.org>
8009 S:      Maintained
8010 F:      drivers/firmware/pcdp.*
8011
8012 PCI ERROR RECOVERY
8013 M:      Linas Vepstas <linasvepstas@gmail.com>
8014 L:      linux-pci@vger.kernel.org
8015 S:      Supported
8016 F:      Documentation/PCI/pci-error-recovery.txt
8017
8018 PCI SUBSYSTEM
8019 M:      Bjorn Helgaas <bhelgaas@google.com>
8020 L:      linux-pci@vger.kernel.org
8021 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
8022 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
8023 S:      Supported
8024 F:      Documentation/PCI/
8025 F:      drivers/pci/
8026 F:      include/linux/pci*
8027 F:      arch/x86/pci/
8028 F:      arch/x86/kernel/quirks.c
8029
8030 PCI DRIVER FOR ALTERA PCIE IP
8031 M:      Ley Foon Tan <lftan@altera.com>
8032 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
8033 L:      linux-pci@vger.kernel.org
8034 S:      Supported
8035 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
8036 F:      drivers/pci/host/pcie-altera.c
8037
8038 PCI DRIVER FOR ARM VERSATILE PLATFORM
8039 M:      Rob Herring <robh@kernel.org>
8040 L:      linux-pci@vger.kernel.org
8041 L:      linux-arm-kernel@lists.infradead.org
8042 S:      Maintained
8043 F:      Documentation/devicetree/bindings/pci/versatile.txt
8044 F:      drivers/pci/host/pci-versatile.c
8045
8046 PCI DRIVER FOR APPLIEDMICRO XGENE
8047 M:      Tanmay Inamdar <tinamdar@apm.com>
8048 L:      linux-pci@vger.kernel.org
8049 L:      linux-arm-kernel@lists.infradead.org
8050 S:      Maintained
8051 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
8052 F:      drivers/pci/host/pci-xgene.c
8053
8054 PCI DRIVER FOR FREESCALE LAYERSCAPE
8055 M:      Minghuan Lian <minghuan.Lian@freescale.com>
8056 M:      Mingkai Hu <mingkai.hu@freescale.com>
8057 M:      Roy Zang <tie-fei.zang@freescale.com>
8058 L:      linuxppc-dev@lists.ozlabs.org
8059 L:      linux-pci@vger.kernel.org
8060 L:      linux-arm-kernel@lists.infradead.org
8061 S:      Maintained
8062 F:      drivers/pci/host/*layerscape*
8063
8064 PCI DRIVER FOR IMX6
8065 M:      Richard Zhu <Richard.Zhu@freescale.com>
8066 M:      Lucas Stach <l.stach@pengutronix.de>
8067 L:      linux-pci@vger.kernel.org
8068 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8069 S:      Maintained
8070 F:      drivers/pci/host/*imx6*
8071
8072 PCI DRIVER FOR TI KEYSTONE
8073 M:      Murali Karicheri <m-karicheri2@ti.com>
8074 L:      linux-pci@vger.kernel.org
8075 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8076 S:      Maintained
8077 F:      drivers/pci/host/*keystone*
8078
8079 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
8080 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8081 M:      Jason Cooper <jason@lakedaemon.net>
8082 L:      linux-pci@vger.kernel.org
8083 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8084 S:      Maintained
8085 F:      drivers/pci/host/*mvebu*
8086
8087 PCI DRIVER FOR NVIDIA TEGRA
8088 M:      Thierry Reding <thierry.reding@gmail.com>
8089 L:      linux-tegra@vger.kernel.org
8090 L:      linux-pci@vger.kernel.org
8091 S:      Supported
8092 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
8093 F:      drivers/pci/host/pci-tegra.c
8094
8095 PCI DRIVER FOR TI DRA7XX
8096 M:      Kishon Vijay Abraham I <kishon@ti.com>
8097 L:      linux-omap@vger.kernel.org
8098 L:      linux-pci@vger.kernel.org
8099 S:      Supported
8100 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
8101 F:      drivers/pci/host/pci-dra7xx.c
8102
8103 PCI DRIVER FOR RENESAS R-CAR
8104 M:      Simon Horman <horms@verge.net.au>
8105 L:      linux-pci@vger.kernel.org
8106 L:      linux-sh@vger.kernel.org
8107 S:      Maintained
8108 F:      drivers/pci/host/*rcar*
8109
8110 PCI DRIVER FOR SAMSUNG EXYNOS
8111 M:      Jingoo Han <jingoohan1@gmail.com>
8112 L:      linux-pci@vger.kernel.org
8113 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8114 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8115 S:      Maintained
8116 F:      drivers/pci/host/pci-exynos.c
8117
8118 PCI DRIVER FOR SYNOPSIS DESIGNWARE
8119 M:      Jingoo Han <jingoohan1@gmail.com>
8120 M:      Pratyush Anand <pratyush.anand@gmail.com>
8121 L:      linux-pci@vger.kernel.org
8122 S:      Maintained
8123 F:      drivers/pci/host/*designware*
8124
8125 PCI DRIVER FOR GENERIC OF HOSTS
8126 M:      Will Deacon <will.deacon@arm.com>
8127 L:      linux-pci@vger.kernel.org
8128 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8129 S:      Maintained
8130 F:      Documentation/devicetree/bindings/pci/host-generic-pci.txt
8131 F:      drivers/pci/host/pci-host-generic.c
8132
8133 PCIE DRIVER FOR ST SPEAR13XX
8134 M:      Pratyush Anand <pratyush.anand@gmail.com>
8135 L:      linux-pci@vger.kernel.org
8136 S:      Maintained
8137 F:      drivers/pci/host/*spear*
8138
8139 PCI MSI DRIVER FOR ALTERA MSI IP
8140 M:      Ley Foon Tan <lftan@altera.com>
8141 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
8142 L:      linux-pci@vger.kernel.org
8143 S:      Supported
8144 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
8145 F:      drivers/pci/host/pcie-altera-msi.c
8146
8147 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
8148 M:      Duc Dang <dhdang@apm.com>
8149 L:      linux-pci@vger.kernel.org
8150 L:      linux-arm-kernel@lists.infradead.org
8151 S:      Maintained
8152 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
8153 F:      drivers/pci/host/pci-xgene-msi.c
8154
8155 PCIE DRIVER FOR HISILICON
8156 M:      Zhou Wang <wangzhou1@hisilicon.com>
8157 L:      linux-pci@vger.kernel.org
8158 S:      Maintained
8159 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
8160 F:      drivers/pci/host/pcie-hisi.c
8161
8162 PCMCIA SUBSYSTEM
8163 P:      Linux PCMCIA Team
8164 L:      linux-pcmcia@lists.infradead.org
8165 W:      http://lists.infradead.org/mailman/listinfo/linux-pcmcia
8166 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
8167 S:      Maintained
8168 F:      Documentation/pcmcia/
8169 F:      drivers/pcmcia/
8170 F:      include/pcmcia/
8171
8172 PCNET32 NETWORK DRIVER
8173 M:      Don Fry <pcnet32@frontier.com>
8174 L:      netdev@vger.kernel.org
8175 S:      Maintained
8176 F:      drivers/net/ethernet/amd/pcnet32.c
8177
8178 PCRYPT PARALLEL CRYPTO ENGINE
8179 M:      Steffen Klassert <steffen.klassert@secunet.com>
8180 L:      linux-crypto@vger.kernel.org
8181 S:      Maintained
8182 F:      crypto/pcrypt.c
8183 F:      include/crypto/pcrypt.h
8184
8185 PER-CPU MEMORY ALLOCATOR
8186 M:      Tejun Heo <tj@kernel.org>
8187 M:      Christoph Lameter <cl@linux-foundation.org>
8188 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
8189 S:      Maintained
8190 F:      include/linux/percpu*.h
8191 F:      mm/percpu*.c
8192 F:      arch/*/include/asm/percpu.h
8193
8194 PER-TASK DELAY ACCOUNTING
8195 M:      Balbir Singh <bsingharora@gmail.com>
8196 S:      Maintained
8197 F:      include/linux/delayacct.h
8198 F:      kernel/delayacct.c
8199
8200 PERFORMANCE EVENTS SUBSYSTEM
8201 M:      Peter Zijlstra <a.p.zijlstra@chello.nl>
8202 M:      Ingo Molnar <mingo@redhat.com>
8203 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
8204 L:      linux-kernel@vger.kernel.org
8205 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
8206 S:      Supported
8207 F:      kernel/events/*
8208 F:      include/linux/perf_event.h
8209 F:      include/uapi/linux/perf_event.h
8210 F:      arch/*/kernel/perf_event*.c
8211 F:      arch/*/kernel/*/perf_event*.c
8212 F:      arch/*/kernel/*/*/perf_event*.c
8213 F:      arch/*/include/asm/perf_event.h
8214 F:      arch/*/kernel/perf_callchain.c
8215 F:      tools/perf/
8216
8217 PERSONALITY HANDLING
8218 M:      Christoph Hellwig <hch@infradead.org>
8219 L:      linux-abi-devel@lists.sourceforge.net
8220 S:      Maintained
8221 F:      include/linux/personality.h
8222 F:      include/uapi/linux/personality.h
8223
8224 PHONET PROTOCOL
8225 M:      Remi Denis-Courmont <courmisch@gmail.com>
8226 S:      Supported
8227 F:      Documentation/networking/phonet.txt
8228 F:      include/linux/phonet.h
8229 F:      include/net/phonet/
8230 F:      include/uapi/linux/phonet.h
8231 F:      net/phonet/
8232
8233 PHRAM MTD DRIVER
8234 M:      Joern Engel <joern@lazybastard.org>
8235 L:      linux-mtd@lists.infradead.org
8236 S:      Maintained
8237 F:      drivers/mtd/devices/phram.c
8238
8239 PICOLCD HID DRIVER
8240 M:      Bruno PrĂ©mont <bonbons@linux-vserver.org>
8241 L:      linux-input@vger.kernel.org
8242 S:      Maintained
8243 F:      drivers/hid/hid-picolcd*
8244
8245 PICOXCELL SUPPORT
8246 M:      Jamie Iles <jamie@jamieiles.com>
8247 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8248 T:      git git://github.com/jamieiles/linux-2.6-ji.git
8249 S:      Supported
8250 F:      arch/arm/boot/dts/picoxcell*
8251 F:      arch/arm/mach-picoxcell/
8252 F:      drivers/crypto/picoxcell*
8253
8254 PIN CONTROL SUBSYSTEM
8255 M:      Linus Walleij <linus.walleij@linaro.org>
8256 L:      linux-gpio@vger.kernel.org
8257 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
8258 S:      Maintained
8259 F:      drivers/pinctrl/
8260 F:      include/linux/pinctrl/
8261
8262 PIN CONTROLLER - ATMEL AT91
8263 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
8264 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8265 S:      Maintained
8266 F:      drivers/pinctrl/pinctrl-at91.*
8267
8268 PIN CONTROLLER - INTEL
8269 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8270 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
8271 S:      Maintained
8272 F:      drivers/pinctrl/intel/
8273
8274 PIN CONTROLLER - RENESAS
8275 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8276 L:      linux-sh@vger.kernel.org
8277 S:      Maintained
8278 F:      drivers/pinctrl/sh-pfc/
8279
8280 PIN CONTROLLER - SAMSUNG
8281 M:      Tomasz Figa <tomasz.figa@gmail.com>
8282 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8283 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8284 S:      Maintained
8285 F:      drivers/pinctrl/samsung/
8286
8287 PIN CONTROLLER - ST SPEAR
8288 M:      Viresh Kumar <vireshk@kernel.org>
8289 L:      spear-devel@list.st.com
8290 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8291 W:      http://www.st.com/spear
8292 S:      Maintained
8293 F:      drivers/pinctrl/spear/
8294
8295 PKTCDVD DRIVER
8296 M:      Jiri Kosina <jikos@kernel.org>
8297 S:      Maintained
8298 F:      drivers/block/pktcdvd.c
8299 F:      include/linux/pktcdvd.h
8300 F:      include/uapi/linux/pktcdvd.h
8301
8302 PKUNITY SOC DRIVERS
8303 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
8304 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
8305 S:      Maintained
8306 T:      git git://github.com/gxt/linux.git
8307 F:      drivers/input/serio/i8042-unicore32io.h
8308 F:      drivers/i2c/busses/i2c-puv3.c
8309 F:      drivers/video/fbdev/fb-puv3.c
8310 F:      drivers/rtc/rtc-puv3.c
8311
8312 PMBUS HARDWARE MONITORING DRIVERS
8313 M:      Guenter Roeck <linux@roeck-us.net>
8314 L:      lm-sensors@lm-sensors.org
8315 W:      http://www.lm-sensors.org/
8316 W:      http://www.roeck-us.net/linux/drivers/
8317 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8318 S:      Maintained
8319 F:      Documentation/hwmon/pmbus
8320 F:      drivers/hwmon/pmbus/
8321 F:      include/linux/i2c/pmbus.h
8322
8323 PMC SIERRA MaxRAID DRIVER
8324 L:      linux-scsi@vger.kernel.org
8325 W:      http://www.pmc-sierra.com/
8326 S:      Orphan
8327 F:      drivers/scsi/pmcraid.*
8328
8329 PMC SIERRA PM8001 DRIVER
8330 M:      Jack Wang <jinpu.wang@profitbricks.com>
8331 M:      lindar_liu@usish.com
8332 L:      pmchba@pmcs.com
8333 L:      linux-scsi@vger.kernel.org
8334 S:      Supported
8335 F:      drivers/scsi/pm8001/
8336
8337 POSIX CLOCKS and TIMERS
8338 M:      Thomas Gleixner <tglx@linutronix.de>
8339 L:      linux-kernel@vger.kernel.org
8340 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8341 S:      Maintained
8342 F:      fs/timerfd.c
8343 F:      include/linux/timer*
8344 F:      kernel/time/*timer*
8345
8346 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
8347 M:      Sebastian Reichel <sre@kernel.org>
8348 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
8349 M:      David Woodhouse <dwmw2@infradead.org>
8350 L:      linux-pm@vger.kernel.org
8351 T:      git git://git.infradead.org/battery-2.6.git
8352 S:      Maintained
8353 F:      include/linux/power_supply.h
8354 F:      drivers/power/
8355 X:      drivers/power/avs/
8356
8357 POWER STATE COORDINATION INTERFACE (PSCI)
8358 M:      Mark Rutland <mark.rutland@arm.com>
8359 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
8360 L:      linux-arm-kernel@lists.infradead.org
8361 S:      Maintained
8362 F:      drivers/firmware/psci.c
8363 F:      include/linux/psci.h
8364 F:      include/uapi/linux/psci.h
8365
8366 PNP SUPPORT
8367 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
8368 S:      Maintained
8369 F:      drivers/pnp/
8370
8371 PPP PROTOCOL DRIVERS AND COMPRESSORS
8372 M:      Paul Mackerras <paulus@samba.org>
8373 L:      linux-ppp@vger.kernel.org
8374 S:      Maintained
8375 F:      drivers/net/ppp/ppp_*
8376
8377 PPP OVER ATM (RFC 2364)
8378 M:      Mitchell Blank Jr <mitch@sfgoth.com>
8379 S:      Maintained
8380 F:      net/atm/pppoatm.c
8381 F:      include/uapi/linux/atmppp.h
8382
8383 PPP OVER ETHERNET
8384 M:      Michal Ostrowski <mostrows@earthlink.net>
8385 S:      Maintained
8386 F:      drivers/net/ppp/pppoe.c
8387 F:      drivers/net/ppp/pppox.c
8388
8389 PPP OVER L2TP
8390 M:      James Chapman <jchapman@katalix.com>
8391 S:      Maintained
8392 F:      net/l2tp/l2tp_ppp.c
8393 F:      include/linux/if_pppol2tp.h
8394 F:      include/uapi/linux/if_pppol2tp.h
8395
8396 PPS SUPPORT
8397 M:      Rodolfo Giometti <giometti@enneenne.com>
8398 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
8399 L:      linuxpps@ml.enneenne.com (subscribers-only)
8400 S:      Maintained
8401 F:      Documentation/pps/
8402 F:      drivers/pps/
8403 F:      include/linux/pps*.h
8404
8405 PPTP DRIVER
8406 M:      Dmitry Kozlov <xeb@mail.ru>
8407 L:      netdev@vger.kernel.org
8408 S:      Maintained
8409 F:      drivers/net/ppp/pptp.c
8410 W:      http://sourceforge.net/projects/accel-pptp
8411
8412 PREEMPTIBLE KERNEL
8413 M:      Robert Love <rml@tech9.net>
8414 L:      kpreempt-tech@lists.sourceforge.net
8415 W:      ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
8416 S:      Supported
8417 F:      Documentation/preempt-locking.txt
8418 F:      include/linux/preempt.h
8419
8420 PRISM54 WIRELESS DRIVER
8421 M:      "Luis R. Rodriguez" <mcgrof@gmail.com>
8422 L:      linux-wireless@vger.kernel.org
8423 W:      http://wireless.kernel.org/en/users/Drivers/p54
8424 S:      Obsolete
8425 F:      drivers/net/wireless/prism54/
8426
8427 PS3 NETWORK SUPPORT
8428 M:      Geoff Levand <geoff@infradead.org>
8429 L:      netdev@vger.kernel.org
8430 L:      linuxppc-dev@lists.ozlabs.org
8431 S:      Maintained
8432 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
8433
8434 PS3 PLATFORM SUPPORT
8435 M:      Geoff Levand <geoff@infradead.org>
8436 L:      linuxppc-dev@lists.ozlabs.org
8437 S:      Maintained
8438 F:      arch/powerpc/boot/ps3*
8439 F:      arch/powerpc/include/asm/lv1call.h
8440 F:      arch/powerpc/include/asm/ps3*.h
8441 F:      arch/powerpc/platforms/ps3/
8442 F:      drivers/*/ps3*
8443 F:      drivers/ps3/
8444 F:      drivers/rtc/rtc-ps3.c
8445 F:      drivers/usb/host/*ps3.c
8446 F:      sound/ppc/snd_ps3*
8447
8448 PS3VRAM DRIVER
8449 M:      Jim Paris <jim@jtan.com>
8450 M:      Geoff Levand <geoff@infradead.org>
8451 L:      linuxppc-dev@lists.ozlabs.org
8452 S:      Maintained
8453 F:      drivers/block/ps3vram.c
8454
8455 PSTORE FILESYSTEM
8456 M:      Anton Vorontsov <anton@enomsg.org>
8457 M:      Colin Cross <ccross@android.com>
8458 M:      Kees Cook <keescook@chromium.org>
8459 M:      Tony Luck <tony.luck@intel.com>
8460 S:      Maintained
8461 T:      git git://git.infradead.org/users/cbou/linux-pstore.git
8462 F:      fs/pstore/
8463 F:      include/linux/pstore*
8464 F:      drivers/firmware/efi/efi-pstore.c
8465 F:      drivers/acpi/apei/erst.c
8466
8467 PTP HARDWARE CLOCK SUPPORT
8468 M:      Richard Cochran <richardcochran@gmail.com>
8469 L:      netdev@vger.kernel.org
8470 S:      Maintained
8471 W:      http://linuxptp.sourceforge.net/
8472 F:      Documentation/ABI/testing/sysfs-ptp
8473 F:      Documentation/ptp/*
8474 F:      drivers/net/ethernet/freescale/gianfar_ptp.c
8475 F:      drivers/net/phy/dp83640*
8476 F:      drivers/ptp/*
8477 F:      include/linux/ptp_cl*
8478
8479 PTRACE SUPPORT
8480 M:      Roland McGrath <roland@hack.frob.com>
8481 M:      Oleg Nesterov <oleg@redhat.com>
8482 S:      Maintained
8483 F:      include/asm-generic/syscall.h
8484 F:      include/linux/ptrace.h
8485 F:      include/linux/regset.h
8486 F:      include/linux/tracehook.h
8487 F:      include/uapi/linux/ptrace.h
8488 F:      kernel/ptrace.c
8489
8490 PVRUSB2 VIDEO4LINUX DRIVER
8491 M:      Mike Isely <isely@pobox.com>
8492 L:      pvrusb2@isely.net       (subscribers-only)
8493 L:      linux-media@vger.kernel.org
8494 W:      http://www.isely.net/pvrusb2/
8495 T:      git git://linuxtv.org/media_tree.git
8496 S:      Maintained
8497 F:      Documentation/video4linux/README.pvrusb2
8498 F:      drivers/media/usb/pvrusb2/
8499
8500 PWC WEBCAM DRIVER
8501 M:      Hans de Goede <hdegoede@redhat.com>
8502 L:      linux-media@vger.kernel.org
8503 T:      git git://linuxtv.org/media_tree.git
8504 S:      Maintained
8505 F:      drivers/media/usb/pwc/*
8506
8507 PWM FAN DRIVER
8508 M:      Kamil Debski <k.debski@samsung.com>
8509 L:      lm-sensors@lm-sensors.org
8510 S:      Supported
8511 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
8512 F:      Documentation/hwmon/pwm-fan
8513 F:      drivers/hwmon/pwm-fan.c
8514
8515 PWM SUBSYSTEM
8516 M:      Thierry Reding <thierry.reding@gmail.com>
8517 L:      linux-pwm@vger.kernel.org
8518 S:      Maintained
8519 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
8520 F:      Documentation/pwm.txt
8521 F:      Documentation/devicetree/bindings/pwm/
8522 F:      include/linux/pwm.h
8523 F:      drivers/pwm/
8524 F:      drivers/video/backlight/pwm_bl.c
8525 F:      include/linux/pwm_backlight.h
8526
8527 PXA2xx/PXA3xx SUPPORT
8528 M:      Daniel Mack <daniel@zonque.org>
8529 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
8530 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8531 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8532 T:      git git://github.com/hzhuang1/linux.git
8533 T:      git git://github.com/rjarzmik/linux.git
8534 S:      Maintained
8535 F:      arch/arm/mach-pxa/
8536 F:      drivers/dma/pxa*
8537 F:      drivers/pcmcia/pxa2xx*
8538 F:      drivers/spi/spi-pxa2xx*
8539 F:      drivers/usb/gadget/udc/pxa2*
8540 F:      include/sound/pxa2xx-lib.h
8541 F:      sound/arm/pxa*
8542 F:      sound/soc/pxa/
8543
8544 PXA3xx NAND FLASH DRIVER
8545 M:      Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
8546 L:      linux-mtd@lists.infradead.org
8547 S:      Maintained
8548 F:      drivers/mtd/nand/pxa3xx_nand.c
8549
8550 MMP SUPPORT
8551 M:      Eric Miao <eric.y.miao@gmail.com>
8552 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
8553 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8554 T:      git git://github.com/hzhuang1/linux.git
8555 T:      git git://git.linaro.org/people/ycmiao/pxa-linux.git
8556 S:      Maintained
8557 F:      arch/arm/mach-mmp/
8558
8559 PXA MMCI DRIVER
8560 S:      Orphan
8561
8562 PXA RTC DRIVER
8563 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8564 L:      rtc-linux@googlegroups.com
8565 S:      Maintained
8566
8567 QAT DRIVER
8568 M:      Tadeusz Struk <tadeusz.struk@intel.com>
8569 L:      qat-linux@intel.com
8570 S:      Supported
8571 F:      drivers/crypto/qat/
8572
8573 QIB DRIVER
8574 M:      Mike Marciniszyn <infinipath@intel.com>
8575 L:      linux-rdma@vger.kernel.org
8576 S:      Supported
8577 F:      drivers/infiniband/hw/qib/
8578
8579 QLOGIC QLA1280 SCSI DRIVER
8580 M:      Michael Reed <mdr@sgi.com>
8581 L:      linux-scsi@vger.kernel.org
8582 S:      Maintained
8583 F:      drivers/scsi/qla1280.[ch]
8584
8585 QLOGIC QLA2XXX FC-SCSI DRIVER
8586 M:      qla2xxx-upstream@qlogic.com
8587 L:      linux-scsi@vger.kernel.org
8588 S:      Supported
8589 F:      Documentation/scsi/LICENSE.qla2xxx
8590 F:      drivers/scsi/qla2xxx/
8591
8592 QLOGIC QLA4XXX iSCSI DRIVER
8593 M:      QLogic-Storage-Upstream@qlogic.com
8594 L:      linux-scsi@vger.kernel.org
8595 S:      Supported
8596 F:      Documentation/scsi/LICENSE.qla4xxx
8597 F:      drivers/scsi/qla4xxx/
8598
8599 QLOGIC QLA3XXX NETWORK DRIVER
8600 M:      Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
8601 M:      Ron Mercer <ron.mercer@qlogic.com>
8602 M:      linux-driver@qlogic.com
8603 L:      netdev@vger.kernel.org
8604 S:      Supported
8605 F:      Documentation/networking/LICENSE.qla3xxx
8606 F:      drivers/net/ethernet/qlogic/qla3xxx.*
8607
8608 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
8609 M:      Dept-GELinuxNICDev@qlogic.com
8610 L:      netdev@vger.kernel.org
8611 S:      Supported
8612 F:      drivers/net/ethernet/qlogic/qlcnic/
8613
8614 QLOGIC QLGE 10Gb ETHERNET DRIVER
8615 M:      Harish Patil <harish.patil@qlogic.com>
8616 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
8617 M:      Dept-GELinuxNICDev@qlogic.com
8618 M:      linux-driver@qlogic.com
8619 L:      netdev@vger.kernel.org
8620 S:      Supported
8621 F:      drivers/net/ethernet/qlogic/qlge/
8622
8623 QLOGIC QL4xxx ETHERNET DRIVER
8624 M:      Yuval Mintz <Yuval.Mintz@qlogic.com>
8625 M:      Ariel Elior <Ariel.Elior@qlogic.com>
8626 M:      everest-linux-l2@qlogic.com
8627 L:      netdev@vger.kernel.org
8628 S:      Supported
8629 F:      drivers/net/ethernet/qlogic/qed/
8630 F:      include/linux/qed/
8631 F:      drivers/net/ethernet/qlogic/qede/
8632
8633 QNX4 FILESYSTEM
8634 M:      Anders Larsen <al@alarsen.net>
8635 W:      http://www.alarsen.net/linux/qnx4fs/
8636 S:      Maintained
8637 F:      fs/qnx4/
8638 F:      include/uapi/linux/qnx4_fs.h
8639 F:      include/uapi/linux/qnxtypes.h
8640
8641 QT1010 MEDIA DRIVER
8642 M:      Antti Palosaari <crope@iki.fi>
8643 L:      linux-media@vger.kernel.org
8644 W:      http://linuxtv.org/
8645 W:      http://palosaari.fi/linux/
8646 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8647 T:      git git://linuxtv.org/anttip/media_tree.git
8648 S:      Maintained
8649 F:      drivers/media/tuners/qt1010*
8650
8651 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
8652 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
8653 L:      linux-wireless@vger.kernel.org
8654 L:      ath9k-devel@lists.ath9k.org
8655 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
8656 S:      Supported
8657 F:      drivers/net/wireless/ath/ath9k/
8658
8659 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
8660 M:      Kalle Valo <kvalo@qca.qualcomm.com>
8661 L:      ath10k@lists.infradead.org
8662 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
8663 T:      git git://github.com/kvalo/ath.git
8664 S:      Supported
8665 F:      drivers/net/wireless/ath/ath10k/
8666
8667 QUALCOMM HEXAGON ARCHITECTURE
8668 M:      Richard Kuo <rkuo@codeaurora.org>
8669 L:      linux-hexagon@vger.kernel.org
8670 S:      Supported
8671 F:      arch/hexagon/
8672
8673 QUALCOMM WCN36XX WIRELESS DRIVER
8674 M:      Eugene Krasnikov <k.eugene.e@gmail.com>
8675 L:      wcn36xx@lists.infradead.org
8676 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
8677 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
8678 S:      Supported
8679 F:      drivers/net/wireless/ath/wcn36xx/
8680
8681 RADOS BLOCK DEVICE (RBD)
8682 M:      Ilya Dryomov <idryomov@gmail.com>
8683 M:      Sage Weil <sage@redhat.com>
8684 M:      Alex Elder <elder@kernel.org>
8685 L:      ceph-devel@vger.kernel.org
8686 W:      http://ceph.com/
8687 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
8688 T:      git git://github.com/ceph/ceph-client.git
8689 S:      Supported
8690 F:      Documentation/ABI/testing/sysfs-bus-rbd
8691 F:      drivers/block/rbd.c
8692 F:      drivers/block/rbd_types.h
8693
8694 RADEON FRAMEBUFFER DISPLAY DRIVER
8695 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
8696 L:      linux-fbdev@vger.kernel.org
8697 S:      Maintained
8698 F:      drivers/video/fbdev/aty/radeon*
8699 F:      include/uapi/linux/radeonfb.h
8700
8701 RADIOSHARK RADIO DRIVER
8702 M:      Hans de Goede <hdegoede@redhat.com>
8703 L:      linux-media@vger.kernel.org
8704 T:      git git://linuxtv.org/media_tree.git
8705 S:      Maintained
8706 F:      drivers/media/radio/radio-shark.c
8707
8708 RADIOSHARK2 RADIO DRIVER
8709 M:      Hans de Goede <hdegoede@redhat.com>
8710 L:      linux-media@vger.kernel.org
8711 T:      git git://linuxtv.org/media_tree.git
8712 S:      Maintained
8713 F:      drivers/media/radio/radio-shark2.c
8714 F:      drivers/media/radio/radio-tea5777.c
8715
8716 RAGE128 FRAMEBUFFER DISPLAY DRIVER
8717 M:      Paul Mackerras <paulus@samba.org>
8718 L:      linux-fbdev@vger.kernel.org
8719 S:      Maintained
8720 F:      drivers/video/fbdev/aty/aty128fb.c
8721
8722 RALINK RT2X00 WIRELESS LAN DRIVER
8723 P:      rt2x00 project
8724 M:      Stanislaw Gruszka <sgruszka@redhat.com>
8725 M:      Helmut Schaa <helmut.schaa@googlemail.com>
8726 L:      linux-wireless@vger.kernel.org
8727 S:      Maintained
8728 F:      drivers/net/wireless/rt2x00/
8729
8730 RAMDISK RAM BLOCK DEVICE DRIVER
8731 M:      Jens Axboe <axboe@kernel.dk>
8732 S:      Maintained
8733 F:      Documentation/blockdev/ramdisk.txt
8734 F:      drivers/block/brd.c
8735
8736 RANDOM NUMBER DRIVER
8737 M:      "Theodore Ts'o" <tytso@mit.edu>
8738 S:      Maintained
8739 F:      drivers/char/random.c
8740
8741 RAPIDIO SUBSYSTEM
8742 M:      Matt Porter <mporter@kernel.crashing.org>
8743 M:      Alexandre Bounine <alexandre.bounine@idt.com>
8744 S:      Maintained
8745 F:      drivers/rapidio/
8746
8747 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
8748 L:      linux-wireless@vger.kernel.org
8749 S:      Orphan
8750 F:      drivers/net/wireless/ray*
8751
8752 RCUTORTURE MODULE
8753 M:      Josh Triplett <josh@joshtriplett.org>
8754 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8755 L:      linux-kernel@vger.kernel.org
8756 S:      Supported
8757 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8758 F:      Documentation/RCU/torture.txt
8759 F:      kernel/rcu/rcutorture.c
8760
8761 RCUTORTURE TEST FRAMEWORK
8762 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8763 M:      Josh Triplett <josh@joshtriplett.org>
8764 R:      Steven Rostedt <rostedt@goodmis.org>
8765 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8766 R:      Lai Jiangshan <jiangshanlai@gmail.com>
8767 L:      linux-kernel@vger.kernel.org
8768 S:      Supported
8769 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8770 F:      tools/testing/selftests/rcutorture
8771
8772 RDC R-321X SoC
8773 M:      Florian Fainelli <florian@openwrt.org>
8774 S:      Maintained
8775
8776 RDC R6040 FAST ETHERNET DRIVER
8777 M:      Florian Fainelli <florian@openwrt.org>
8778 L:      netdev@vger.kernel.org
8779 S:      Maintained
8780 F:      drivers/net/ethernet/rdc/r6040.c
8781
8782 RDS - RELIABLE DATAGRAM SOCKETS
8783 M:      Chien Yen <chien.yen@oracle.com>
8784 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
8785 S:      Supported
8786 F:      net/rds/
8787
8788 READ-COPY UPDATE (RCU)
8789 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8790 M:      Josh Triplett <josh@joshtriplett.org>
8791 R:      Steven Rostedt <rostedt@goodmis.org>
8792 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8793 R:      Lai Jiangshan <jiangshanlai@gmail.com>
8794 L:      linux-kernel@vger.kernel.org
8795 W:      http://www.rdrop.com/users/paulmck/RCU/
8796 S:      Supported
8797 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8798 F:      Documentation/RCU/
8799 X:      Documentation/RCU/torture.txt
8800 F:      include/linux/rcu*
8801 X:      include/linux/srcu.h
8802 F:      kernel/rcu/
8803 X:      kernel/torture.c
8804
8805 REAL TIME CLOCK (RTC) SUBSYSTEM
8806 M:      Alessandro Zummo <a.zummo@towertech.it>
8807 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
8808 L:      rtc-linux@googlegroups.com
8809 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
8810 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
8811 S:      Maintained
8812 F:      Documentation/rtc.txt
8813 F:      drivers/rtc/
8814 F:      include/linux/rtc.h
8815 F:      include/uapi/linux/rtc.h
8816
8817 REALTEK AUDIO CODECS
8818 M:      Bard Liao <bardliao@realtek.com>
8819 M:      Oder Chiou <oder_chiou@realtek.com>
8820 S:      Maintained
8821 F:      sound/soc/codecs/rt*
8822 F:      include/sound/rt*.h
8823
8824 REISERFS FILE SYSTEM
8825 L:      reiserfs-devel@vger.kernel.org
8826 S:      Supported
8827 F:      fs/reiserfs/
8828
8829 REGISTER MAP ABSTRACTION
8830 M:      Mark Brown <broonie@kernel.org>
8831 L:      linux-kernel@vger.kernel.org
8832 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
8833 S:      Supported
8834 F:      drivers/base/regmap/
8835 F:      include/linux/regmap.h
8836
8837 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
8838 M:      Ohad Ben-Cohen <ohad@wizery.com>
8839 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
8840 S:      Maintained
8841 F:      drivers/remoteproc/
8842 F:      Documentation/remoteproc.txt
8843 F:      include/linux/remoteproc.h
8844
8845 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
8846 M:      Ohad Ben-Cohen <ohad@wizery.com>
8847 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
8848 S:      Maintained
8849 F:      drivers/rpmsg/
8850 F:      Documentation/rpmsg.txt
8851 F:      include/linux/rpmsg.h
8852
8853 RESET CONTROLLER FRAMEWORK
8854 M:      Philipp Zabel <p.zabel@pengutronix.de>
8855 S:      Maintained
8856 F:      drivers/reset/
8857 F:      Documentation/devicetree/bindings/reset/
8858 F:      include/dt-bindings/reset/
8859 F:      include/linux/reset.h
8860 F:      include/linux/reset-controller.h
8861
8862 RFKILL
8863 M:      Johannes Berg <johannes@sipsolutions.net>
8864 L:      linux-wireless@vger.kernel.org
8865 W:      http://wireless.kernel.org/
8866 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
8867 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
8868 S:      Maintained
8869 F:      Documentation/rfkill.txt
8870 F:      net/rfkill/
8871
8872 RHASHTABLE
8873 M:      Thomas Graf <tgraf@suug.ch>
8874 L:      netdev@vger.kernel.org
8875 S:      Maintained
8876 F:      lib/rhashtable.c
8877 F:      include/linux/rhashtable.h
8878
8879 RICOH SMARTMEDIA/XD DRIVER
8880 M:      Maxim Levitsky <maximlevitsky@gmail.com>
8881 S:      Maintained
8882 F:      drivers/mtd/nand/r852.c
8883 F:      drivers/mtd/nand/r852.h
8884
8885 RICOH R5C592 MEMORYSTICK DRIVER
8886 M:      Maxim Levitsky <maximlevitsky@gmail.com>
8887 S:      Maintained
8888 F:      drivers/memstick/host/r592.*
8889
8890 ROCCAT DRIVERS
8891 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
8892 W:      http://sourceforge.net/projects/roccat/
8893 S:      Maintained
8894 F:      drivers/hid/hid-roccat*
8895 F:      include/linux/hid-roccat*
8896 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
8897
8898 ROCKER DRIVER
8899 M:      Jiri Pirko <jiri@resnulli.us>
8900 M:      Scott Feldman <sfeldma@gmail.com>
8901 L:      netdev@vger.kernel.org
8902 S:      Supported
8903 F:      drivers/net/ethernet/rocker/
8904
8905 ROCKETPORT DRIVER
8906 P:      Comtrol Corp.
8907 W:      http://www.comtrol.com
8908 S:      Maintained
8909 F:      Documentation/serial/rocket.txt
8910 F:      drivers/tty/rocket*
8911
8912 ROCKETPORT EXPRESS/INFINITY DRIVER
8913 M:      Kevin Cernekee <cernekee@gmail.com>
8914 L:      linux-serial@vger.kernel.org
8915 S:      Odd Fixes
8916 F:      drivers/tty/serial/rp2.*
8917
8918 ROSE NETWORK LAYER
8919 M:      Ralf Baechle <ralf@linux-mips.org>
8920 L:      linux-hams@vger.kernel.org
8921 W:      http://www.linux-ax25.org/
8922 S:      Maintained
8923 F:      include/net/rose.h
8924 F:      include/uapi/linux/rose.h
8925 F:      net/rose/
8926
8927 RTL2830 MEDIA DRIVER
8928 M:      Antti Palosaari <crope@iki.fi>
8929 L:      linux-media@vger.kernel.org
8930 W:      http://linuxtv.org/
8931 W:      http://palosaari.fi/linux/
8932 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8933 T:      git git://linuxtv.org/anttip/media_tree.git
8934 S:      Maintained
8935 F:      drivers/media/dvb-frontends/rtl2830*
8936
8937 RTL2832 MEDIA DRIVER
8938 M:      Antti Palosaari <crope@iki.fi>
8939 L:      linux-media@vger.kernel.org
8940 W:      http://linuxtv.org/
8941 W:      http://palosaari.fi/linux/
8942 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8943 T:      git git://linuxtv.org/anttip/media_tree.git
8944 S:      Maintained
8945 F:      drivers/media/dvb-frontends/rtl2832*
8946
8947 RTL2832_SDR MEDIA DRIVER
8948 M:      Antti Palosaari <crope@iki.fi>
8949 L:      linux-media@vger.kernel.org
8950 W:      http://linuxtv.org/
8951 W:      http://palosaari.fi/linux/
8952 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8953 T:      git git://linuxtv.org/anttip/media_tree.git
8954 S:      Maintained
8955 F:      drivers/media/dvb-frontends/rtl2832_sdr*
8956
8957 RTL8180 WIRELESS DRIVER
8958 L:      linux-wireless@vger.kernel.org
8959 W:      http://wireless.kernel.org/
8960 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8961 S:      Orphan
8962 F:      drivers/net/wireless/rtl818x/rtl8180/
8963
8964 RTL8187 WIRELESS DRIVER
8965 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
8966 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
8967 M:      Larry Finger <Larry.Finger@lwfinger.net>
8968 L:      linux-wireless@vger.kernel.org
8969 W:      http://wireless.kernel.org/
8970 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8971 S:      Maintained
8972 F:      drivers/net/wireless/rtl818x/rtl8187/
8973
8974 RTL8192CE WIRELESS DRIVER
8975 M:      Larry Finger <Larry.Finger@lwfinger.net>
8976 M:      Chaoming Li <chaoming_li@realsil.com.cn>
8977 L:      linux-wireless@vger.kernel.org
8978 W:      http://wireless.kernel.org/
8979 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8980 S:      Maintained
8981 F:      drivers/net/wireless/rtlwifi/
8982 F:      drivers/net/wireless/rtlwifi/rtl8192ce/
8983
8984 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
8985 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
8986 L:      linux-wireless@vger.kernel.org
8987 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8723au-mac80211
8988 S:      Maintained
8989 F:      drivers/net/wireless/realtek/rtl8xxxu/
8990
8991 S3 SAVAGE FRAMEBUFFER DRIVER
8992 M:      Antonino Daplas <adaplas@gmail.com>
8993 L:      linux-fbdev@vger.kernel.org
8994 S:      Maintained
8995 F:      drivers/video/fbdev/savage/
8996
8997 S390
8998 M:      Martin Schwidefsky <schwidefsky@de.ibm.com>
8999 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
9000 L:      linux-s390@vger.kernel.org
9001 W:      http://www.ibm.com/developerworks/linux/linux390/
9002 S:      Supported
9003 F:      arch/s390/
9004 F:      drivers/s390/
9005 F:      Documentation/s390/
9006 F:      Documentation/DocBook/s390*
9007
9008 S390 COMMON I/O LAYER
9009 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
9010 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
9011 L:      linux-s390@vger.kernel.org
9012 W:      http://www.ibm.com/developerworks/linux/linux390/
9013 S:      Supported
9014 F:      drivers/s390/cio/
9015
9016 S390 DASD DRIVER
9017 M:      Stefan Weinhuber <wein@de.ibm.com>
9018 M:      Stefan Haberland <stefan.haberland@de.ibm.com>
9019 L:      linux-s390@vger.kernel.org
9020 W:      http://www.ibm.com/developerworks/linux/linux390/
9021 S:      Supported
9022 F:      drivers/s390/block/dasd*
9023 F:      block/partitions/ibm.c
9024
9025 S390 NETWORK DRIVERS
9026 M:      Ursula Braun <ursula.braun@de.ibm.com>
9027 L:      linux-s390@vger.kernel.org
9028 W:      http://www.ibm.com/developerworks/linux/linux390/
9029 S:      Supported
9030 F:      drivers/s390/net/
9031
9032 S390 PCI SUBSYSTEM
9033 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
9034 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
9035 L:      linux-s390@vger.kernel.org
9036 W:      http://www.ibm.com/developerworks/linux/linux390/
9037 S:      Supported
9038 F:      arch/s390/pci/
9039 F:      drivers/pci/hotplug/s390_pci_hpc.c
9040
9041 S390 ZCRYPT DRIVER
9042 M:      Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
9043 L:      linux-s390@vger.kernel.org
9044 W:      http://www.ibm.com/developerworks/linux/linux390/
9045 S:      Supported
9046 F:      drivers/s390/crypto/
9047
9048 S390 ZFCP DRIVER
9049 M:      Steffen Maier <maier@linux.vnet.ibm.com>
9050 L:      linux-s390@vger.kernel.org
9051 W:      http://www.ibm.com/developerworks/linux/linux390/
9052 S:      Supported
9053 F:      drivers/s390/scsi/zfcp_*
9054
9055 S390 IUCV NETWORK LAYER
9056 M:      Ursula Braun <ursula.braun@de.ibm.com>
9057 L:      linux-s390@vger.kernel.org
9058 W:      http://www.ibm.com/developerworks/linux/linux390/
9059 S:      Supported
9060 F:      drivers/s390/net/*iucv*
9061 F:      include/net/iucv/
9062 F:      net/iucv/
9063
9064 S390 IOMMU (PCI)
9065 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
9066 L:      linux-s390@vger.kernel.org
9067 W:      http://www.ibm.com/developerworks/linux/linux390/
9068 S:      Supported
9069 F:      drivers/iommu/s390-iommu.c
9070
9071 S3C24XX SD/MMC Driver
9072 M:      Ben Dooks <ben-linux@fluff.org>
9073 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9074 S:      Supported
9075 F:      drivers/mmc/host/s3cmci.*
9076
9077 SAA6588 RDS RECEIVER DRIVER
9078 M:      Hans Verkuil <hverkuil@xs4all.nl>
9079 L:      linux-media@vger.kernel.org
9080 T:      git git://linuxtv.org/media_tree.git
9081 W:      http://linuxtv.org
9082 S:      Odd Fixes
9083 F:      drivers/media/i2c/saa6588*
9084
9085 SAA7134 VIDEO4LINUX DRIVER
9086 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9087 L:      linux-media@vger.kernel.org
9088 W:      http://linuxtv.org
9089 T:      git git://linuxtv.org/media_tree.git
9090 S:      Odd fixes
9091 F:      Documentation/video4linux/*.saa7134
9092 F:      drivers/media/pci/saa7134/
9093
9094 SAA7146 VIDEO4LINUX-2 DRIVER
9095 M:      Hans Verkuil <hverkuil@xs4all.nl>
9096 L:      linux-media@vger.kernel.org
9097 T:      git git://linuxtv.org/media_tree.git
9098 S:      Maintained
9099 F:      drivers/media/common/saa7146/
9100 F:      drivers/media/pci/saa7146/
9101 F:      include/media/saa7146*
9102
9103 SAMSUNG LAPTOP DRIVER
9104 M:      Corentin Chary <corentin.chary@gmail.com>
9105 L:      platform-driver-x86@vger.kernel.org
9106 S:      Maintained
9107 F:      drivers/platform/x86/samsung-laptop.c
9108
9109 SAMSUNG AUDIO (ASoC) DRIVERS
9110 M:      Sangbeom Kim <sbkim73@samsung.com>
9111 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9112 S:      Supported
9113 F:      sound/soc/samsung/
9114
9115 SAMSUNG FRAMEBUFFER DRIVER
9116 M:      Jingoo Han <jingoohan1@gmail.com>
9117 L:      linux-fbdev@vger.kernel.org
9118 S:      Maintained
9119 F:      drivers/video/fbdev/s3c-fb.c
9120
9121 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
9122 M:      Sangbeom Kim <sbkim73@samsung.com>
9123 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
9124 L:      linux-kernel@vger.kernel.org
9125 L:      linux-samsung-soc@vger.kernel.org
9126 S:      Supported
9127 F:      drivers/mfd/sec*.c
9128 F:      drivers/regulator/s2m*.c
9129 F:      drivers/regulator/s5m*.c
9130 F:      drivers/clk/clk-s2mps11.c
9131 F:      drivers/rtc/rtc-s5m.c
9132 F:      include/linux/mfd/samsung/
9133 F:      Documentation/devicetree/bindings/regulator/s5m8767-regulator.txt
9134 F:      Documentation/devicetree/bindings/mfd/s2mp*.txt
9135
9136 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
9137 M:      Kyungmin Park <kyungmin.park@samsung.com>
9138 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
9139 L:      linux-media@vger.kernel.org
9140 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
9141 S:      Supported
9142 F:      drivers/media/platform/exynos4-is/
9143
9144 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
9145 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
9146 L:      linux-media@vger.kernel.org
9147 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9148 S:      Maintained
9149 F:      drivers/media/platform/s3c-camif/
9150 F:      include/media/s3c_camif.h
9151
9152 SAMSUNG S5C73M3 CAMERA DRIVER
9153 M:      Kyungmin Park <kyungmin.park@samsung.com>
9154 M:      Andrzej Hajda <a.hajda@samsung.com>
9155 L:      linux-media@vger.kernel.org
9156 S:      Supported
9157 F:      drivers/media/i2c/s5c73m3/*
9158
9159 SAMSUNG S5K5BAF CAMERA DRIVER
9160 M:      Kyungmin Park <kyungmin.park@samsung.com>
9161 M:      Andrzej Hajda <a.hajda@samsung.com>
9162 L:      linux-media@vger.kernel.org
9163 S:      Supported
9164 F:      drivers/media/i2c/s5k5baf.c
9165
9166 SAMSUNG S3FWRN5 NFC DRIVER
9167 M:      Robert Baldyga <r.baldyga@samsung.com>
9168 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
9169 S:      Supported
9170 F:      drivers/nfc/s3fwrn5
9171
9172 SAMSUNG SOC CLOCK DRIVERS
9173 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
9174 M:      Tomasz Figa <tomasz.figa@gmail.com>
9175 S:      Supported
9176 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9177 F:      drivers/clk/samsung/
9178
9179 SAMSUNG SXGBE DRIVERS
9180 M:      Byungho An <bh74.an@samsung.com>
9181 M:      Girish K S <ks.giri@samsung.com>
9182 M:      Vipul Pandya <vipul.pandya@samsung.com>
9183 S:      Supported
9184 L:      netdev@vger.kernel.org
9185 F:      drivers/net/ethernet/samsung/sxgbe/
9186
9187 SAMSUNG THERMAL DRIVER
9188 M:      Lukasz Majewski <l.majewski@samsung.com>
9189 L:      linux-pm@vger.kernel.org
9190 L:      linux-samsung-soc@vger.kernel.org
9191 S:      Supported
9192 T:      https://github.com/lmajewski/linux-samsung-thermal.git
9193 F:      drivers/thermal/samsung/
9194
9195 SAMSUNG USB2 PHY DRIVER
9196 M:      Kamil Debski <k.debski@samsung.com>
9197 L:      linux-kernel@vger.kernel.org
9198 S:      Supported
9199 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
9200 F:      Documentation/phy/samsung-usb2.txt
9201 F:      drivers/phy/phy-exynos4210-usb2.c
9202 F:      drivers/phy/phy-exynos4x12-usb2.c
9203 F:      drivers/phy/phy-exynos5250-usb2.c
9204 F:      drivers/phy/phy-s5pv210-usb2.c
9205 F:      drivers/phy/phy-samsung-usb2.c
9206 F:      drivers/phy/phy-samsung-usb2.h
9207
9208 SERIAL DRIVERS
9209 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9210 L:      linux-serial@vger.kernel.org
9211 S:      Maintained
9212 F:      drivers/tty/serial/
9213
9214 SYNOPSYS DESIGNWARE DMAC DRIVER
9215 M:      Viresh Kumar <vireshk@kernel.org>
9216 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9217 S:      Maintained
9218 F:      include/linux/dma/dw.h
9219 F:      include/linux/platform_data/dma-dw.h
9220 F:      drivers/dma/dw/
9221
9222 SYNOPSYS DESIGNWARE ETHERNET QOS 4.10a driver
9223 M: Lars Persson <lars.persson@axis.com>
9224 L: netdev@vger.kernel.org
9225 S: Supported
9226 F: Documentation/devicetree/bindings/net/snps,dwc-qos-ethernet.txt
9227 F: drivers/net/ethernet/synopsys/dwc_eth_qos.c
9228
9229 SYNOPSYS DESIGNWARE I2C DRIVER
9230 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9231 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
9232 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9233 L:      linux-i2c@vger.kernel.org
9234 S:      Maintained
9235 F:      drivers/i2c/busses/i2c-designware-*
9236 F:      include/linux/platform_data/i2c-designware.h
9237
9238 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
9239 M:      Seungwon Jeon <tgih.jun@samsung.com>
9240 M:      Jaehoon Chung <jh80.chung@samsung.com>
9241 L:      linux-mmc@vger.kernel.org
9242 S:      Maintained
9243 F:      include/linux/mmc/dw_mmc.h
9244 F:      drivers/mmc/host/dw_mmc*
9245
9246 THUNDERBOLT DRIVER
9247 M:      Andreas Noever <andreas.noever@gmail.com>
9248 S:      Maintained
9249 F:      drivers/thunderbolt/
9250
9251 TIMEKEEPING, CLOCKSOURCE CORE, NTP
9252 M:      John Stultz <john.stultz@linaro.org>
9253 M:      Thomas Gleixner <tglx@linutronix.de>
9254 L:      linux-kernel@vger.kernel.org
9255 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
9256 S:      Supported
9257 F:      include/linux/clocksource.h
9258 F:      include/linux/time.h
9259 F:      include/linux/timex.h
9260 F:      include/uapi/linux/time.h
9261 F:      include/uapi/linux/timex.h
9262 F:      kernel/time/clocksource.c
9263 F:      kernel/time/time*.c
9264 F:      kernel/time/ntp.c
9265 F:      tools/testing/selftests/timers/
9266
9267 SC1200 WDT DRIVER
9268 M:      Zwane Mwaikambo <zwanem@gmail.com>
9269 S:      Maintained
9270 F:      drivers/watchdog/sc1200wdt.c
9271
9272 SCHEDULER
9273 M:      Ingo Molnar <mingo@redhat.com>
9274 M:      Peter Zijlstra <peterz@infradead.org>
9275 L:      linux-kernel@vger.kernel.org
9276 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
9277 S:      Maintained
9278 F:      kernel/sched/
9279 F:      include/linux/sched.h
9280 F:      include/uapi/linux/sched.h
9281 F:      include/linux/wait.h
9282
9283 SCORE ARCHITECTURE
9284 M:      Chen Liqin <liqin.linux@gmail.com>
9285 M:      Lennox Wu <lennox.wu@gmail.com>
9286 W:      http://www.sunplus.com
9287 S:      Supported
9288 F:      arch/score/
9289
9290 SYSTEM CONTROL & POWER INTERFACE (SCPI) Message Protocol drivers
9291 M:      Sudeep Holla <sudeep.holla@arm.com>
9292 L:      linux-arm-kernel@lists.infradead.org
9293 S:      Maintained
9294 F:      Documentation/devicetree/bindings/arm/arm,scpi.txt
9295 F:      drivers/clk/clk-scpi.c
9296 F:      drivers/cpufreq/scpi-cpufreq.c
9297 F:      drivers/firmware/arm_scpi.c
9298 F:      include/linux/scpi_protocol.h
9299
9300 SCSI CDROM DRIVER
9301 M:      Jens Axboe <axboe@kernel.dk>
9302 L:      linux-scsi@vger.kernel.org
9303 W:      http://www.kernel.dk
9304 S:      Maintained
9305 F:      drivers/scsi/sr*
9306
9307 SCSI RDMA PROTOCOL (SRP) INITIATOR
9308 M:      Bart Van Assche <bart.vanassche@sandisk.com>
9309 L:      linux-rdma@vger.kernel.org
9310 S:      Supported
9311 W:      http://www.openfabrics.org
9312 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9313 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
9314 F:      drivers/infiniband/ulp/srp/
9315 F:      include/scsi/srp.h
9316
9317 SCSI SG DRIVER
9318 M:      Doug Gilbert <dgilbert@interlog.com>
9319 L:      linux-scsi@vger.kernel.org
9320 W:      http://sg.danny.cz/sg
9321 S:      Maintained
9322 F:      Documentation/scsi/scsi-generic.txt
9323 F:      drivers/scsi/sg.c
9324 F:      include/scsi/sg.h
9325
9326 SCSI SUBSYSTEM
9327 M:      "James E.J. Bottomley" <JBottomley@odin.com>
9328 L:      linux-scsi@vger.kernel.org
9329 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
9330 S:      Maintained
9331 F:      drivers/scsi/
9332 F:      include/scsi/
9333
9334 SCSI TAPE DRIVER
9335 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
9336 L:      linux-scsi@vger.kernel.org
9337 S:      Maintained
9338 F:      Documentation/scsi/st.txt
9339 F:      drivers/scsi/st.*
9340 F:      drivers/scsi/st_*.h
9341
9342 SCTP PROTOCOL
9343 M:      Vlad Yasevich <vyasevich@gmail.com>
9344 M:      Neil Horman <nhorman@tuxdriver.com>
9345 L:      linux-sctp@vger.kernel.org
9346 W:      http://lksctp.sourceforge.net
9347 S:      Maintained
9348 F:      Documentation/networking/sctp.txt
9349 F:      include/linux/sctp.h
9350 F:      include/uapi/linux/sctp.h
9351 F:      include/net/sctp/
9352 F:      net/sctp/
9353
9354 SCx200 CPU SUPPORT
9355 M:      Jim Cromie <jim.cromie@gmail.com>
9356 S:      Odd Fixes
9357 F:      Documentation/i2c/busses/scx200_acb
9358 F:      arch/x86/platform/scx200/
9359 F:      drivers/watchdog/scx200_wdt.c
9360 F:      drivers/i2c/busses/scx200*
9361 F:      drivers/mtd/maps/scx200_docflash.c
9362 F:      include/linux/scx200.h
9363
9364 SCx200 GPIO DRIVER
9365 M:      Jim Cromie <jim.cromie@gmail.com>
9366 S:      Maintained
9367 F:      drivers/char/scx200_gpio.c
9368 F:      include/linux/scx200_gpio.h
9369
9370 SCx200 HRT CLOCKSOURCE DRIVER
9371 M:      Jim Cromie <jim.cromie@gmail.com>
9372 S:      Maintained
9373 F:      drivers/clocksource/scx200_hrt.c
9374
9375 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
9376 M:      Sascha Sommer <saschasommer@freenet.de>
9377 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
9378 S:      Maintained
9379 F:      drivers/mmc/host/sdricoh_cs.c
9380
9381 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
9382 L:      linux-mmc@vger.kernel.org
9383 S:      Orphan
9384 F:      drivers/mmc/host/sdhci.*
9385 F:      drivers/mmc/host/sdhci-pltfm.[ch]
9386
9387 SECURE COMPUTING
9388 M:      Kees Cook <keescook@chromium.org>
9389 R:      Andy Lutomirski <luto@amacapital.net>
9390 R:      Will Drewry <wad@chromium.org>
9391 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
9392 S:      Supported
9393 F:      kernel/seccomp.c
9394 F:      include/uapi/linux/seccomp.h
9395 F:      include/linux/seccomp.h
9396 F:      tools/testing/selftests/seccomp/*
9397 K:      \bsecure_computing
9398 K:      \bTIF_SECCOMP\b
9399
9400 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
9401 M:      Ben Dooks <ben-linux@fluff.org>
9402 M:      Jaehoon Chung <jh80.chung@samsung.com>
9403 L:      linux-mmc@vger.kernel.org
9404 S:      Maintained
9405 F:      drivers/mmc/host/sdhci-s3c*
9406
9407 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
9408 M:      Viresh Kumar <vireshk@kernel.org>
9409 L:      spear-devel@list.st.com
9410 L:      linux-mmc@vger.kernel.org
9411 S:      Maintained
9412 F:      drivers/mmc/host/sdhci-spear.c
9413
9414 SECURITY SUBSYSTEM
9415 M:      James Morris <james.l.morris@oracle.com>
9416 M:      "Serge E. Hallyn" <serge@hallyn.com>
9417 L:      linux-security-module@vger.kernel.org (suggested Cc:)
9418 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
9419 W:      http://kernsec.org/
9420 S:      Supported
9421 F:      security/
9422
9423 SECURITY CONTACT
9424 M:      Security Officers <security@kernel.org>
9425 S:      Supported
9426
9427 SELINUX SECURITY MODULE
9428 M:      Paul Moore <paul@paul-moore.com>
9429 M:      Stephen Smalley <sds@tycho.nsa.gov>
9430 M:      Eric Paris <eparis@parisplace.org>
9431 L:      selinux@tycho.nsa.gov (moderated for non-subscribers)
9432 W:      http://selinuxproject.org
9433 T:      git git://git.infradead.org/users/pcmoore/selinux
9434 S:      Supported
9435 F:      include/linux/selinux*
9436 F:      security/selinux/
9437 F:      scripts/selinux/
9438
9439 APPARMOR SECURITY MODULE
9440 M:      John Johansen <john.johansen@canonical.com>
9441 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
9442 W:      apparmor.wiki.kernel.org
9443 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
9444 S:      Supported
9445 F:      security/apparmor/
9446
9447 YAMA SECURITY MODULE
9448 M:      Kees Cook <keescook@chromium.org>
9449 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
9450 S:      Supported
9451 F:      security/yama/
9452
9453 SENSABLE PHANTOM
9454 M:      Jiri Slaby <jirislaby@gmail.com>
9455 S:      Maintained
9456 F:      drivers/misc/phantom.c
9457 F:      include/uapi/linux/phantom.h
9458
9459 SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
9460 M:      Jayamohan Kallickal <jayamohan.kallickal@avagotech.com>
9461 M:      Minh Tran <minh.tran@avagotech.com>
9462 M:      John Soni Jose <sony.john-n@avagotech.com>
9463 L:      linux-scsi@vger.kernel.org
9464 W:      http://www.avagotech.com
9465 S:      Supported
9466 F:      drivers/scsi/be2iscsi/
9467
9468 Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER
9469 M:      Sathya Perla <sathya.perla@avagotech.com>
9470 M:      Ajit Khaparde <ajit.khaparde@avagotech.com>
9471 M:      Padmanabh Ratnakar <padmanabh.ratnakar@avagotech.com>
9472 M:      Sriharsha Basavapatna <sriharsha.basavapatna@avagotech.com>
9473 L:      netdev@vger.kernel.org
9474 W:      http://www.emulex.com
9475 S:      Supported
9476 F:      drivers/net/ethernet/emulex/benet/
9477
9478 EMULEX ONECONNECT ROCE DRIVER
9479 M:      Selvin Xavier <selvin.xavier@avagotech.com>
9480 M:      Devesh Sharma <devesh.sharma@avagotech.com>
9481 M:      Mitesh Ahuja <mitesh.ahuja@avagotech.com>
9482 L:      linux-rdma@vger.kernel.org
9483 W:      http://www.emulex.com
9484 S:      Supported
9485 F:      drivers/infiniband/hw/ocrdma/
9486
9487 SFC NETWORK DRIVER
9488 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
9489 M:      Shradha Shah <sshah@solarflare.com>
9490 L:      netdev@vger.kernel.org
9491 S:      Supported
9492 F:      drivers/net/ethernet/sfc/
9493
9494 SGI GRU DRIVER
9495 M:      Dimitri Sivanich <sivanich@sgi.com>
9496 S:      Maintained
9497 F:      drivers/misc/sgi-gru/
9498
9499 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
9500 M:      Pat Gefre <pfg@sgi.com>
9501 L:      linux-ia64@vger.kernel.org
9502 S:      Supported
9503 F:      Documentation/ia64/serial.txt
9504 F:      drivers/tty/serial/ioc?_serial.c
9505 F:      include/linux/ioc?.h
9506
9507 SGI XP/XPC/XPNET DRIVER
9508 M:      Cliff Whickman <cpw@sgi.com>
9509 M:      Robin Holt <robinmholt@gmail.com>
9510 S:      Maintained
9511 F:      drivers/misc/sgi-xp/
9512
9513 SI2157 MEDIA DRIVER
9514 M:      Antti Palosaari <crope@iki.fi>
9515 L:      linux-media@vger.kernel.org
9516 W:      http://linuxtv.org/
9517 W:      http://palosaari.fi/linux/
9518 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9519 T:      git git://linuxtv.org/anttip/media_tree.git
9520 S:      Maintained
9521 F:      drivers/media/tuners/si2157*
9522
9523 SI2168 MEDIA DRIVER
9524 M:      Antti Palosaari <crope@iki.fi>
9525 L:      linux-media@vger.kernel.org
9526 W:      http://linuxtv.org/
9527 W:      http://palosaari.fi/linux/
9528 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9529 T:      git git://linuxtv.org/anttip/media_tree.git
9530 S:      Maintained
9531 F:      drivers/media/dvb-frontends/si2168*
9532
9533 SI470X FM RADIO RECEIVER I2C DRIVER
9534 M:      Hans Verkuil <hverkuil@xs4all.nl>
9535 L:      linux-media@vger.kernel.org
9536 T:      git git://linuxtv.org/media_tree.git
9537 W:      http://linuxtv.org
9538 S:      Odd Fixes
9539 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
9540
9541 SI470X FM RADIO RECEIVER USB DRIVER
9542 M:      Hans Verkuil <hverkuil@xs4all.nl>
9543 L:      linux-media@vger.kernel.org
9544 T:      git git://linuxtv.org/media_tree.git
9545 W:      http://linuxtv.org
9546 S:      Maintained
9547 F:      drivers/media/radio/si470x/radio-si470x-common.c
9548 F:      drivers/media/radio/si470x/radio-si470x.h
9549 F:      drivers/media/radio/si470x/radio-si470x-usb.c
9550
9551 SI4713 FM RADIO TRANSMITTER I2C DRIVER
9552 M:      Eduardo Valentin <edubezval@gmail.com>
9553 L:      linux-media@vger.kernel.org
9554 T:      git git://linuxtv.org/media_tree.git
9555 W:      http://linuxtv.org
9556 S:      Odd Fixes
9557 F:      drivers/media/radio/si4713/si4713.?
9558
9559 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
9560 M:      Eduardo Valentin <edubezval@gmail.com>
9561 L:      linux-media@vger.kernel.org
9562 T:      git git://linuxtv.org/media_tree.git
9563 W:      http://linuxtv.org
9564 S:      Odd Fixes
9565 F:      drivers/media/radio/si4713/radio-platform-si4713.c
9566
9567 SI4713 FM RADIO TRANSMITTER USB DRIVER
9568 M:      Hans Verkuil <hverkuil@xs4all.nl>
9569 L:      linux-media@vger.kernel.org
9570 T:      git git://linuxtv.org/media_tree.git
9571 W:      http://linuxtv.org
9572 S:      Maintained
9573 F:      drivers/media/radio/si4713/radio-usb-si4713.c
9574
9575 SIANO DVB DRIVER
9576 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9577 L:      linux-media@vger.kernel.org
9578 W:      http://linuxtv.org
9579 T:      git git://linuxtv.org/media_tree.git
9580 S:      Odd fixes
9581 F:      drivers/media/common/siano/
9582 F:      drivers/media/usb/siano/
9583 F:      drivers/media/usb/siano/
9584 F:      drivers/media/mmc/siano/
9585
9586 SIMPLEFB FB DRIVER
9587 M:      Hans de Goede <hdegoede@redhat.com>
9588 L:      linux-fbdev@vger.kernel.org
9589 S:      Maintained
9590 F:      Documentation/devicetree/bindings/video/simple-framebuffer.txt
9591 F:      drivers/video/fbdev/simplefb.c
9592 F:      include/linux/platform_data/simplefb.h
9593
9594 SH_VEU V4L2 MEM2MEM DRIVER
9595 L:      linux-media@vger.kernel.org
9596 S:      Orphan
9597 F:      drivers/media/platform/sh_veu.c
9598
9599 SH_VOU V4L2 OUTPUT DRIVER
9600 L:      linux-media@vger.kernel.org
9601 S:      Orphan
9602 F:      drivers/media/platform/sh_vou.c
9603 F:      include/media/sh_vou.h
9604
9605 SIMPLE FIRMWARE INTERFACE (SFI)
9606 M:      Len Brown <lenb@kernel.org>
9607 L:      sfi-devel@simplefirmware.org
9608 W:      http://simplefirmware.org/
9609 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
9610 S:      Supported
9611 F:      arch/x86/platform/sfi/
9612 F:      drivers/sfi/
9613 F:      include/linux/sfi*.h
9614
9615 SIMTEC EB110ATX (Chalice CATS)
9616 P:      Ben Dooks
9617 P:      Vincent Sanders <vince@simtec.co.uk>
9618 M:      Simtec Linux Team <linux@simtec.co.uk>
9619 W:      http://www.simtec.co.uk/products/EB110ATX/
9620 S:      Supported
9621
9622 SIMTEC EB2410ITX (BAST)
9623 P:      Ben Dooks
9624 P:      Vincent Sanders <vince@simtec.co.uk>
9625 M:      Simtec Linux Team <linux@simtec.co.uk>
9626 W:      http://www.simtec.co.uk/products/EB2410ITX/
9627 S:      Supported
9628 F:      arch/arm/mach-s3c24xx/mach-bast.c
9629 F:      arch/arm/mach-s3c24xx/bast-ide.c
9630 F:      arch/arm/mach-s3c24xx/bast-irq.c
9631
9632 TI DAVINCI MACHINE SUPPORT
9633 M:      Sekhar Nori <nsekhar@ti.com>
9634 M:      Kevin Hilman <khilman@deeprootsystems.com>
9635 T:      git git://gitorious.org/linux-davinci/linux-davinci.git
9636 Q:      http://patchwork.kernel.org/project/linux-davinci/list/
9637 S:      Supported
9638 F:      arch/arm/mach-davinci/
9639 F:      drivers/i2c/busses/i2c-davinci.c
9640
9641 TI DAVINCI SERIES MEDIA DRIVER
9642 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9643 L:      linux-media@vger.kernel.org
9644 W:      http://linuxtv.org/
9645 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9646 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9647 S:      Maintained
9648 F:      drivers/media/platform/davinci/
9649 F:      include/media/davinci/
9650
9651 TI AM437X VPFE DRIVER
9652 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9653 L:      linux-media@vger.kernel.org
9654 W:      http://linuxtv.org/
9655 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9656 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9657 S:      Maintained
9658 F:      drivers/media/platform/am437x/
9659
9660 OV2659 OMNIVISION SENSOR DRIVER
9661 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9662 L:      linux-media@vger.kernel.org
9663 W:      http://linuxtv.org/
9664 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9665 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9666 S:      Maintained
9667 F:      drivers/media/i2c/ov2659.c
9668 F:      include/media/ov2659.h
9669
9670 SILICON MOTION SM712 FRAME BUFFER DRIVER
9671 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
9672 M:      Teddy Wang <teddy.wang@siliconmotion.com>
9673 M:      Sudip Mukherjee <sudip@vectorindia.org>
9674 L:      linux-fbdev@vger.kernel.org
9675 S:      Maintained
9676 F:      drivers/video/fbdev/sm712*
9677 F:      Documentation/fb/sm712fb.txt
9678
9679 SIS 190 ETHERNET DRIVER
9680 M:      Francois Romieu <romieu@fr.zoreil.com>
9681 L:      netdev@vger.kernel.org
9682 S:      Maintained
9683 F:      drivers/net/ethernet/sis/sis190.c
9684
9685 SIS 900/7016 FAST ETHERNET DRIVER
9686 M:      Daniele Venzano <venza@brownhat.org>
9687 W:      http://www.brownhat.org/sis900.html
9688 L:      netdev@vger.kernel.org
9689 S:      Maintained
9690 F:      drivers/net/ethernet/sis/sis900.*
9691
9692 SIS FRAMEBUFFER DRIVER
9693 M:      Thomas Winischhofer <thomas@winischhofer.net>
9694 W:      http://www.winischhofer.net/linuxsisvga.shtml
9695 S:      Maintained
9696 F:      Documentation/fb/sisfb.txt
9697 F:      drivers/video/fbdev/sis/
9698 F:      include/video/sisfb.h
9699
9700 SIS USB2VGA DRIVER
9701 M:      Thomas Winischhofer <thomas@winischhofer.net>
9702 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
9703 S:      Maintained
9704 F:      drivers/usb/misc/sisusbvga/
9705
9706 SLAB ALLOCATOR
9707 M:      Christoph Lameter <cl@linux.com>
9708 M:      Pekka Enberg <penberg@kernel.org>
9709 M:      David Rientjes <rientjes@google.com>
9710 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
9711 M:      Andrew Morton <akpm@linux-foundation.org>
9712 L:      linux-mm@kvack.org
9713 S:      Maintained
9714 F:      include/linux/sl?b*.h
9715 F:      mm/sl?b*
9716
9717 SLEEPABLE READ-COPY UPDATE (SRCU)
9718 M:      Lai Jiangshan <jiangshanlai@gmail.com>
9719 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9720 M:      Josh Triplett <josh@joshtriplett.org>
9721 R:      Steven Rostedt <rostedt@goodmis.org>
9722 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9723 L:      linux-kernel@vger.kernel.org
9724 W:      http://www.rdrop.com/users/paulmck/RCU/
9725 S:      Supported
9726 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9727 F:      include/linux/srcu.h
9728 F:      kernel/rcu/srcu.c
9729
9730 SMACK SECURITY MODULE
9731 M:      Casey Schaufler <casey@schaufler-ca.com>
9732 L:      linux-security-module@vger.kernel.org
9733 W:      http://schaufler-ca.com
9734 T:      git git://git.gitorious.org/smack-next/kernel.git
9735 S:      Maintained
9736 F:      Documentation/security/Smack.txt
9737 F:      security/smack/
9738
9739 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
9740 M:      Kevin Hilman <khilman@kernel.org>
9741 M:      Nishanth Menon <nm@ti.com>
9742 S:      Maintained
9743 F:      drivers/power/avs/
9744 F:      include/linux/power/smartreflex.h
9745 L:      linux-pm@vger.kernel.org
9746
9747 SMC91x ETHERNET DRIVER
9748 M:      Nicolas Pitre <nico@fluxnic.net>
9749 S:      Odd Fixes
9750 F:      drivers/net/ethernet/smsc/smc91x.*
9751
9752 SMIA AND SMIA++ IMAGE SENSOR DRIVER
9753 M:      Sakari Ailus <sakari.ailus@iki.fi>
9754 L:      linux-media@vger.kernel.org
9755 S:      Maintained
9756 F:      drivers/media/i2c/smiapp/
9757 F:      include/media/smiapp.h
9758 F:      drivers/media/i2c/smiapp-pll.c
9759 F:      drivers/media/i2c/smiapp-pll.h
9760 F:      include/uapi/linux/smiapp.h
9761 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
9762
9763 SMM665 HARDWARE MONITOR DRIVER
9764 M:      Guenter Roeck <linux@roeck-us.net>
9765 L:      lm-sensors@lm-sensors.org
9766 S:      Maintained
9767 F:      Documentation/hwmon/smm665
9768 F:      drivers/hwmon/smm665.c
9769
9770 SMSC EMC2103 HARDWARE MONITOR DRIVER
9771 M:      Steve Glendinning <steve.glendinning@shawell.net>
9772 L:      lm-sensors@lm-sensors.org
9773 S:      Maintained
9774 F:      Documentation/hwmon/emc2103
9775 F:      drivers/hwmon/emc2103.c
9776
9777 SMSC SCH5627 HARDWARE MONITOR DRIVER
9778 M:      Hans de Goede <hdegoede@redhat.com>
9779 L:      lm-sensors@lm-sensors.org
9780 S:      Supported
9781 F:      Documentation/hwmon/sch5627
9782 F:      drivers/hwmon/sch5627.c
9783
9784 SMSC47B397 HARDWARE MONITOR DRIVER
9785 M:      Jean Delvare <jdelvare@suse.com>
9786 L:      lm-sensors@lm-sensors.org
9787 S:      Maintained
9788 F:      Documentation/hwmon/smsc47b397
9789 F:      drivers/hwmon/smsc47b397.c
9790
9791 SMSC911x ETHERNET DRIVER
9792 M:      Steve Glendinning <steve.glendinning@shawell.net>
9793 L:      netdev@vger.kernel.org
9794 S:      Maintained
9795 F:      include/linux/smsc911x.h
9796 F:      drivers/net/ethernet/smsc/smsc911x.*
9797
9798 SMSC9420 PCI ETHERNET DRIVER
9799 M:      Steve Glendinning <steve.glendinning@shawell.net>
9800 L:      netdev@vger.kernel.org
9801 S:      Maintained
9802 F:      drivers/net/ethernet/smsc/smsc9420.*
9803
9804 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
9805 M:      Steve Glendinning <steve.glendinning@shawell.net>
9806 L:      linux-fbdev@vger.kernel.org
9807 S:      Maintained
9808 F:      drivers/video/fbdev/smscufx.c
9809
9810 SOC-CAMERA V4L2 SUBSYSTEM
9811 M:      Guennadi Liakhovetski <g.liakhovetski@gmx.de>
9812 L:      linux-media@vger.kernel.org
9813 T:      git git://linuxtv.org/media_tree.git
9814 S:      Maintained
9815 F:      include/media/soc*
9816 F:      drivers/media/i2c/soc_camera/
9817 F:      drivers/media/platform/soc_camera/
9818
9819 SOEKRIS NET48XX LED SUPPORT
9820 M:      Chris Boot <bootc@bootc.net>
9821 S:      Maintained
9822 F:      drivers/leds/leds-net48xx.c
9823
9824 SOFTLOGIC 6x10 MPEG CODEC
9825 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
9826 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
9827 M:      Andrey Utkin <andrey.krieger.utkin@gmail.com>
9828 M:      Ismael Luceno <ismael@iodev.co.uk>
9829 L:      linux-media@vger.kernel.org
9830 S:      Supported
9831 F:      drivers/media/pci/solo6x10/
9832
9833 SOFTWARE RAID (Multiple Disks) SUPPORT
9834 M:      Neil Brown <neilb@suse.com>
9835 L:      linux-raid@vger.kernel.org
9836 S:      Supported
9837 F:      drivers/md/
9838 F:      include/linux/raid/
9839 F:      include/uapi/linux/raid/
9840
9841 SONIC NETWORK DRIVER
9842 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
9843 L:      netdev@vger.kernel.org
9844 S:      Maintained
9845 F:      drivers/net/ethernet/natsemi/sonic.*
9846
9847 SONICS SILICON BACKPLANE DRIVER (SSB)
9848 M:      Michael Buesch <m@bues.ch>
9849 L:      netdev@vger.kernel.org
9850 S:      Maintained
9851 F:      drivers/ssb/
9852 F:      include/linux/ssb/
9853
9854 SONY VAIO CONTROL DEVICE DRIVER
9855 M:      Mattia Dongili <malattia@linux.it>
9856 L:      platform-driver-x86@vger.kernel.org
9857 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
9858 S:      Maintained
9859 F:      Documentation/laptops/sony-laptop.txt
9860 F:      drivers/char/sonypi.c
9861 F:      drivers/platform/x86/sony-laptop.c
9862 F:      include/linux/sony-laptop.h
9863
9864 SONY MEMORYSTICK CARD SUPPORT
9865 M:      Alex Dubov <oakad@yahoo.com>
9866 W:      http://tifmxx.berlios.de/
9867 S:      Maintained
9868 F:      drivers/memstick/host/tifm_ms.c
9869
9870 SONY MEMORYSTICK STANDARD SUPPORT
9871 M:      Maxim Levitsky <maximlevitsky@gmail.com>
9872 S:      Maintained
9873 F:      drivers/memstick/core/ms_block.*
9874
9875 SOUND
9876 M:      Jaroslav Kysela <perex@perex.cz>
9877 M:      Takashi Iwai <tiwai@suse.com>
9878 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9879 W:      http://www.alsa-project.org/
9880 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
9881 T:      git git://git.alsa-project.org/alsa-kernel.git
9882 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
9883 S:      Maintained
9884 F:      Documentation/sound/
9885 F:      include/sound/
9886 F:      include/uapi/sound/
9887 F:      sound/
9888
9889 SOUND - COMPRESSED AUDIO
9890 M:      Vinod Koul <vinod.koul@intel.com>
9891 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9892 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
9893 S:      Supported
9894 F:      Documentation/sound/alsa/compress_offload.txt
9895 F:      include/sound/compress_driver.h
9896 F:      include/uapi/sound/compress_*
9897 F:      sound/core/compress_offload.c
9898 F:      sound/soc/soc-compress.c
9899
9900 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
9901 M:      Liam Girdwood <lgirdwood@gmail.com>
9902 M:      Mark Brown <broonie@kernel.org>
9903 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
9904 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9905 W:      http://alsa-project.org/main/index.php/ASoC
9906 S:      Supported
9907 F:      Documentation/sound/alsa/soc/
9908 F:      sound/soc/
9909 F:      include/sound/soc*
9910
9911 SOUND - DMAENGINE HELPERS
9912 M:      Lars-Peter Clausen <lars@metafoo.de>
9913 S:      Supported
9914 F:      include/sound/dmaengine_pcm.h
9915 F:      sound/core/pcm_dmaengine.c
9916 F:      sound/soc/soc-generic-dmaengine-pcm.c
9917
9918 SP2 MEDIA DRIVER
9919 M:      Olli Salonen <olli.salonen@iki.fi>
9920 L:      linux-media@vger.kernel.org
9921 W:      http://linuxtv.org/
9922 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9923 S:      Maintained
9924 F:      drivers/media/dvb-frontends/sp2*
9925
9926 SPARC + UltraSPARC (sparc/sparc64)
9927 M:      "David S. Miller" <davem@davemloft.net>
9928 L:      sparclinux@vger.kernel.org
9929 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
9930 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
9931 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
9932 S:      Maintained
9933 F:      arch/sparc/
9934 F:      drivers/sbus/
9935
9936 SPARC SERIAL DRIVERS
9937 M:      "David S. Miller" <davem@davemloft.net>
9938 L:      sparclinux@vger.kernel.org
9939 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
9940 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
9941 S:      Maintained
9942 F:      include/linux/sunserialcore.h
9943 F:      drivers/tty/serial/suncore.c
9944 F:      drivers/tty/serial/sunhv.c
9945 F:      drivers/tty/serial/sunsab.c
9946 F:      drivers/tty/serial/sunsab.h
9947 F:      drivers/tty/serial/sunsu.c
9948 F:      drivers/tty/serial/sunzilog.c
9949 F:      drivers/tty/serial/sunzilog.h
9950
9951 SPARSE CHECKER
9952 M:      "Christopher Li" <sparse@chrisli.org>
9953 L:      linux-sparse@vger.kernel.org
9954 W:      https://sparse.wiki.kernel.org/
9955 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
9956 T:      git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
9957 S:      Maintained
9958 F:      include/linux/compiler.h
9959
9960 SPEAR PLATFORM SUPPORT
9961 M:      Viresh Kumar <vireshk@kernel.org>
9962 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
9963 L:      spear-devel@list.st.com
9964 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9965 W:      http://www.st.com/spear
9966 S:      Maintained
9967 F:      arch/arm/mach-spear/
9968
9969 SPEAR CLOCK FRAMEWORK SUPPORT
9970 M:      Viresh Kumar <vireshk@kernel.org>
9971 L:      spear-devel@list.st.com
9972 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9973 W:      http://www.st.com/spear
9974 S:      Maintained
9975 F:      drivers/clk/spear/
9976
9977 SPI SUBSYSTEM
9978 M:      Mark Brown <broonie@kernel.org>
9979 L:      linux-spi@vger.kernel.org
9980 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
9981 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
9982 S:      Maintained
9983 F:      Documentation/spi/
9984 F:      drivers/spi/
9985 F:      include/linux/spi/
9986 F:      include/uapi/linux/spi/
9987
9988 SPIDERNET NETWORK DRIVER for CELL
9989 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
9990 L:      netdev@vger.kernel.org
9991 S:      Supported
9992 F:      Documentation/networking/spider_net.txt
9993 F:      drivers/net/ethernet/toshiba/spider_net*
9994
9995 SPU FILE SYSTEM
9996 M:      Jeremy Kerr <jk@ozlabs.org>
9997 L:      linuxppc-dev@lists.ozlabs.org
9998 W:      http://www.ibm.com/developerworks/power/cell/
9999 S:      Supported
10000 F:      Documentation/filesystems/spufs.txt
10001 F:      arch/powerpc/platforms/cell/spufs/
10002
10003 SQUASHFS FILE SYSTEM
10004 M:      Phillip Lougher <phillip@squashfs.org.uk>
10005 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
10006 W:      http://squashfs.org.uk
10007 S:      Maintained
10008 F:      Documentation/filesystems/squashfs.txt
10009 F:      fs/squashfs/
10010
10011 SRM (Alpha) environment access
10012 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
10013 S:      Maintained
10014 F:      arch/alpha/kernel/srm_env.c
10015
10016 STABLE BRANCH
10017 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10018 L:      stable@vger.kernel.org
10019 S:      Supported
10020 F:      Documentation/stable_kernel_rules.txt
10021
10022 STAGING SUBSYSTEM
10023 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10024 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
10025 L:      devel@driverdev.osuosl.org
10026 S:      Supported
10027 F:      drivers/staging/
10028
10029 STAGING - COMEDI
10030 M:      Ian Abbott <abbotti@mev.co.uk>
10031 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
10032 S:      Odd Fixes
10033 F:      drivers/staging/comedi/
10034
10035 STAGING - FLARION FT1000 DRIVERS
10036 M:      Marek Belisko <marek.belisko@gmail.com>
10037 S:      Odd Fixes
10038 F:      drivers/staging/ft1000/
10039
10040 STAGING - INDUSTRIAL IO
10041 M:      Jonathan Cameron <jic23@kernel.org>
10042 L:      linux-iio@vger.kernel.org
10043 S:      Odd Fixes
10044 F:      drivers/staging/iio/
10045
10046 STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
10047 M:      Jarod Wilson <jarod@wilsonet.com>
10048 W:      http://www.lirc.org/
10049 S:      Odd Fixes
10050 F:      drivers/staging/media/lirc/
10051
10052 STAGING - LUSTRE PARALLEL FILESYSTEM
10053 M:      Oleg Drokin <oleg.drokin@intel.com>
10054 M:      Andreas Dilger <andreas.dilger@intel.com>
10055 L:      lustre-devel@lists.lustre.org (moderated for non-subscribers)
10056 W:      http://wiki.lustre.org/
10057 S:      Maintained
10058 F:      drivers/staging/lustre
10059
10060 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
10061 M:      Marc Dietrich <marvin24@gmx.de>
10062 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
10063 L:      linux-tegra@vger.kernel.org
10064 S:      Maintained
10065 F:      drivers/staging/nvec/
10066
10067 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
10068 M:      Jens Frederich <jfrederich@gmail.com>
10069 M:      Daniel Drake <dsd@laptop.org>
10070 M:      Jon Nettleton <jon.nettleton@gmail.com>
10071 W:      http://wiki.laptop.org/go/DCON
10072 S:      Maintained
10073 F:      drivers/staging/olpc_dcon/
10074
10075 STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
10076 M:      Willy Tarreau <willy@meta-x.org>
10077 S:      Odd Fixes
10078 F:      drivers/staging/panel/
10079
10080 STAGING - REALTEK RTL8712U DRIVERS
10081 M:      Larry Finger <Larry.Finger@lwfinger.net>
10082 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
10083 S:      Odd Fixes
10084 F:      drivers/staging/rtl8712/
10085
10086 STAGING - REALTEK RTL8723U WIRELESS DRIVER
10087 M:      Larry Finger <Larry.Finger@lwfinger.net>
10088 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
10089 L:      linux-wireless@vger.kernel.org
10090 S:      Maintained
10091 F:      drivers/staging/rtl8723au/
10092
10093 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
10094 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
10095 M:      Teddy Wang <teddy.wang@siliconmotion.com>
10096 M:      Sudip Mukherjee <sudip@vectorindia.org>
10097 L:      linux-fbdev@vger.kernel.org
10098 S:      Maintained
10099 F:      drivers/staging/sm750fb/
10100
10101 STAGING - SLICOSS
10102 M:      Lior Dotan <liodot@gmail.com>
10103 M:      Christopher Harrer <charrer@alacritech.com>
10104 S:      Odd Fixes
10105 F:      drivers/staging/slicoss/
10106
10107 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
10108 M:      William Hubbs <w.d.hubbs@gmail.com>
10109 M:      Chris Brannon <chris@the-brannons.com>
10110 M:      Kirk Reiser <kirk@reisers.ca>
10111 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
10112 L:      speakup@linux-speakup.org
10113 W:      http://www.linux-speakup.org/
10114 S:      Odd Fixes
10115 F:      drivers/staging/speakup/
10116
10117 STAGING - VIA VT665X DRIVERS
10118 M:      Forest Bond <forest@alittletooquiet.net>
10119 S:      Odd Fixes
10120 F:      drivers/staging/vt665?/
10121
10122 STAGING - WILC1000 WIFI DRIVER
10123 M:      Johnny Kim <johnny.kim@atmel.com>
10124 M:      Rachel Kim <rachel.kim@atmel.com>
10125 M:      Dean Lee <dean.lee@atmel.com>
10126 M:      Chris Park <chris.park@atmel.com>
10127 L:      linux-wireless@vger.kernel.org
10128 S:      Supported
10129 F:      drivers/staging/wilc1000/
10130
10131 STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
10132 M:      Arnaud Patard <arnaud.patard@rtp-net.org>
10133 S:      Odd Fixes
10134 F:      drivers/staging/xgifb/
10135
10136 HFI1 DRIVER
10137 M:      Mike Marciniszyn <infinipath@intel.com>
10138 L:      linux-rdma@vger.kernel.org
10139 S:      Supported
10140 F:      drivers/staging/rdma/hfi1
10141
10142 STARFIRE/DURALAN NETWORK DRIVER
10143 M:      Ion Badulescu <ionut@badula.org>
10144 S:      Odd Fixes
10145 F:      drivers/net/ethernet/adaptec/starfire*
10146
10147 SUN3/3X
10148 M:      Sam Creasey <sammy@sammy.net>
10149 W:      http://sammy.net/sun3/
10150 S:      Maintained
10151 F:      arch/m68k/kernel/*sun3*
10152 F:      arch/m68k/sun3*/
10153 F:      arch/m68k/include/asm/sun3*
10154 F:      drivers/net/ethernet/i825xx/sun3*
10155
10156 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
10157 M:      Hans de Goede <hdegoede@redhat.com>
10158 L:      linux-input@vger.kernel.org
10159 S:      Maintained
10160 F:      Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
10161 F:      drivers/input/keyboard/sun4i-lradc-keys.c
10162
10163 SUNDANCE NETWORK DRIVER
10164 M:      Denis Kirjanov <kda@linux-powerpc.org>
10165 L:      netdev@vger.kernel.org
10166 S:      Maintained
10167 F:      drivers/net/ethernet/dlink/sundance.c
10168
10169 SUPERH
10170 L:      linux-sh@vger.kernel.org
10171 Q:      http://patchwork.kernel.org/project/linux-sh/list/
10172 S:      Orphan
10173 F:      Documentation/sh/
10174 F:      arch/sh/
10175 F:      drivers/sh/
10176
10177 SUSPEND TO RAM
10178 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
10179 M:      Len Brown <len.brown@intel.com>
10180 M:      Pavel Machek <pavel@ucw.cz>
10181 L:      linux-pm@vger.kernel.org
10182 S:      Supported
10183 F:      Documentation/power/
10184 F:      arch/x86/kernel/acpi/
10185 F:      drivers/base/power/
10186 F:      kernel/power/
10187 F:      include/linux/suspend.h
10188 F:      include/linux/freezer.h
10189 F:      include/linux/pm.h
10190
10191 SVGA HANDLING
10192 M:      Martin Mares <mj@ucw.cz>
10193 L:      linux-video@atrey.karlin.mff.cuni.cz
10194 S:      Maintained
10195 F:      Documentation/svga.txt
10196 F:      arch/x86/boot/video*
10197
10198 SWIOTLB SUBSYSTEM
10199 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10200 L:      linux-kernel@vger.kernel.org
10201 S:      Supported
10202 F:      lib/swiotlb.c
10203 F:      arch/*/kernel/pci-swiotlb.c
10204 F:      include/linux/swiotlb.h
10205
10206 SWITCHDEV
10207 M:      Jiri Pirko <jiri@resnulli.us>
10208 L:      netdev@vger.kernel.org
10209 S:      Supported
10210 F:      net/switchdev/
10211 F:      include/net/switchdev.h
10212
10213 SYNOPSYS ARC ARCHITECTURE
10214 M:      Vineet Gupta <vgupta@synopsys.com>
10215 L:      linux-snps-arc@lists.infraded.org
10216 S:      Supported
10217 F:      arch/arc/
10218 F:      Documentation/devicetree/bindings/arc/*
10219 F:      drivers/tty/serial/arc_uart.c
10220 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
10221
10222 SYNOPSYS ARC SDP platform support
10223 M:      Alexey Brodkin <abrodkin@synopsys.com>
10224 S:      Supported
10225 F:      arch/arc/plat-axs10x
10226 F:      arch/arc/boot/dts/ax*
10227 F:      Documentation/devicetree/bindings/arc/axs10*
10228
10229 SYSTEM CONFIGURATION (SYSCON)
10230 M:      Lee Jones <lee.jones@linaro.org>
10231 M:      Arnd Bergmann <arnd@arndb.de>
10232 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
10233 S:      Supported
10234 F:      drivers/mfd/syscon.c
10235
10236 SYSV FILESYSTEM
10237 M:      Christoph Hellwig <hch@infradead.org>
10238 S:      Maintained
10239 F:      Documentation/filesystems/sysv-fs.txt
10240 F:      fs/sysv/
10241 F:      include/linux/sysv_fs.h
10242
10243 TARGET SUBSYSTEM
10244 M:      "Nicholas A. Bellinger" <nab@linux-iscsi.org>
10245 L:      linux-scsi@vger.kernel.org
10246 L:      target-devel@vger.kernel.org
10247 W:      http://www.linux-iscsi.org
10248 W:      http://groups.google.com/group/linux-iscsi-target-dev
10249 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10250 S:      Supported
10251 F:      drivers/target/
10252 F:      include/target/
10253 F:      Documentation/target/
10254
10255 TASKSTATS STATISTICS INTERFACE
10256 M:      Balbir Singh <bsingharora@gmail.com>
10257 S:      Maintained
10258 F:      Documentation/accounting/taskstats*
10259 F:      include/linux/taskstats*
10260 F:      kernel/taskstats.c
10261
10262 TC CLASSIFIER
10263 M:      Jamal Hadi Salim <jhs@mojatatu.com>
10264 L:      netdev@vger.kernel.org
10265 S:      Maintained
10266 F:      include/net/pkt_cls.h
10267 F:      include/uapi/linux/pkt_cls.h
10268 F:      net/sched/
10269
10270 TCP LOW PRIORITY MODULE
10271 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
10272 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
10273 W:      http://tcp-lp-mod.sourceforge.net/
10274 S:      Maintained
10275 F:      net/ipv4/tcp_lp.c
10276
10277 TDA10071 MEDIA DRIVER
10278 M:      Antti Palosaari <crope@iki.fi>
10279 L:      linux-media@vger.kernel.org
10280 W:      http://linuxtv.org/
10281 W:      http://palosaari.fi/linux/
10282 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10283 T:      git git://linuxtv.org/anttip/media_tree.git
10284 S:      Maintained
10285 F:      drivers/media/dvb-frontends/tda10071*
10286
10287 TDA18212 MEDIA DRIVER
10288 M:      Antti Palosaari <crope@iki.fi>
10289 L:      linux-media@vger.kernel.org
10290 W:      http://linuxtv.org/
10291 W:      http://palosaari.fi/linux/
10292 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10293 T:      git git://linuxtv.org/anttip/media_tree.git
10294 S:      Maintained
10295 F:      drivers/media/tuners/tda18212*
10296
10297 TDA18218 MEDIA DRIVER
10298 M:      Antti Palosaari <crope@iki.fi>
10299 L:      linux-media@vger.kernel.org
10300 W:      http://linuxtv.org/
10301 W:      http://palosaari.fi/linux/
10302 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10303 T:      git git://linuxtv.org/anttip/media_tree.git
10304 S:      Maintained
10305 F:      drivers/media/tuners/tda18218*
10306
10307 TDA18271 MEDIA DRIVER
10308 M:      Michael Krufky <mkrufky@linuxtv.org>
10309 L:      linux-media@vger.kernel.org
10310 W:      http://linuxtv.org/
10311 W:      http://github.com/mkrufky
10312 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10313 T:      git git://linuxtv.org/mkrufky/tuners.git
10314 S:      Maintained
10315 F:      drivers/media/tuners/tda18271*
10316
10317 TDA827x MEDIA DRIVER
10318 M:      Michael Krufky <mkrufky@linuxtv.org>
10319 L:      linux-media@vger.kernel.org
10320 W:      http://linuxtv.org/
10321 W:      http://github.com/mkrufky
10322 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10323 T:      git git://linuxtv.org/mkrufky/tuners.git
10324 S:      Maintained
10325 F:      drivers/media/tuners/tda8290.*
10326
10327 TDA8290 MEDIA DRIVER
10328 M:      Michael Krufky <mkrufky@linuxtv.org>
10329 L:      linux-media@vger.kernel.org
10330 W:      http://linuxtv.org/
10331 W:      http://github.com/mkrufky
10332 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10333 T:      git git://linuxtv.org/mkrufky/tuners.git
10334 S:      Maintained
10335 F:      drivers/media/tuners/tda8290.*
10336
10337 TDA9840 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/tda9840*
10344
10345 TEA5761 TUNER DRIVER
10346 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10347 L:      linux-media@vger.kernel.org
10348 W:      http://linuxtv.org
10349 T:      git git://linuxtv.org/media_tree.git
10350 S:      Odd fixes
10351 F:      drivers/media/tuners/tea5761.*
10352
10353 TEA5767 TUNER DRIVER
10354 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10355 L:      linux-media@vger.kernel.org
10356 W:      http://linuxtv.org
10357 T:      git git://linuxtv.org/media_tree.git
10358 S:      Maintained
10359 F:      drivers/media/tuners/tea5767.*
10360
10361 TEA6415C MEDIA DRIVER
10362 M:      Hans Verkuil <hverkuil@xs4all.nl>
10363 L:      linux-media@vger.kernel.org
10364 T:      git git://linuxtv.org/media_tree.git
10365 W:      http://linuxtv.org
10366 S:      Maintained
10367 F:      drivers/media/i2c/tea6415c*
10368
10369 TEA6420 MEDIA DRIVER
10370 M:      Hans Verkuil <hverkuil@xs4all.nl>
10371 L:      linux-media@vger.kernel.org
10372 T:      git git://linuxtv.org/media_tree.git
10373 W:      http://linuxtv.org
10374 S:      Maintained
10375 F:      drivers/media/i2c/tea6420*
10376
10377 TEAM DRIVER
10378 M:      Jiri Pirko <jiri@resnulli.us>
10379 L:      netdev@vger.kernel.org
10380 S:      Supported
10381 F:      drivers/net/team/
10382 F:      include/linux/if_team.h
10383 F:      include/uapi/linux/if_team.h
10384
10385 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
10386 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
10387 S:      Maintained
10388 F:      arch/x86/platform/ts5500/
10389
10390 TECHNOTREND USB IR RECEIVER
10391 M:      Sean Young <sean@mess.org>
10392 L:      linux-media@vger.kernel.org
10393 S:      Maintained
10394 F:      drivers/media/rc/ttusbir.c
10395
10396 TEGRA ARCHITECTURE SUPPORT
10397 M:      Stephen Warren <swarren@wwwdotorg.org>
10398 M:      Thierry Reding <thierry.reding@gmail.com>
10399 M:      Alexandre Courbot <gnurou@gmail.com>
10400 L:      linux-tegra@vger.kernel.org
10401 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
10402 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
10403 S:      Supported
10404 N:      [^a-z]tegra
10405
10406 TEGRA CLOCK DRIVER
10407 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
10408 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
10409 S:      Supported
10410 F:      drivers/clk/tegra/
10411
10412 TEGRA DMA DRIVER
10413 M:      Laxman Dewangan <ldewangan@nvidia.com>
10414 S:      Supported
10415 F:      drivers/dma/tegra20-apb-dma.c
10416
10417 TEGRA I2C DRIVER
10418 M:      Laxman Dewangan <ldewangan@nvidia.com>
10419 S:      Supported
10420 F:      drivers/i2c/busses/i2c-tegra.c
10421
10422 TEGRA IOMMU DRIVERS
10423 M:      Hiroshi Doyu <hdoyu@nvidia.com>
10424 S:      Supported
10425 F:      drivers/iommu/tegra*
10426
10427 TEGRA KBC DRIVER
10428 M:      Rakesh Iyer <riyer@nvidia.com>
10429 M:      Laxman Dewangan <ldewangan@nvidia.com>
10430 S:      Supported
10431 F:      drivers/input/keyboard/tegra-kbc.c
10432
10433 TEGRA PWM DRIVER
10434 M:      Thierry Reding <thierry.reding@gmail.com>
10435 S:      Supported
10436 F:      drivers/pwm/pwm-tegra.c
10437
10438 TEGRA SERIAL DRIVER
10439 M:      Laxman Dewangan <ldewangan@nvidia.com>
10440 S:      Supported
10441 F:      drivers/tty/serial/serial-tegra.c
10442
10443 TEGRA SPI DRIVER
10444 M:      Laxman Dewangan <ldewangan@nvidia.com>
10445 S:      Supported
10446 F:      drivers/spi/spi-tegra*
10447
10448 TEHUTI ETHERNET DRIVER
10449 M:      Andy Gospodarek <andy@greyhouse.net>
10450 L:      netdev@vger.kernel.org
10451 S:      Supported
10452 F:      drivers/net/ethernet/tehuti/*
10453
10454 Telecom Clock Driver for MCPL0010
10455 M:      Mark Gross <mark.gross@intel.com>
10456 S:      Supported
10457 F:      drivers/char/tlclk.c
10458
10459 TENSILICA XTENSA PORT (xtensa)
10460 M:      Chris Zankel <chris@zankel.net>
10461 M:      Max Filippov <jcmvbkbc@gmail.com>
10462 L:      linux-xtensa@linux-xtensa.org
10463 S:      Maintained
10464 F:      arch/xtensa/
10465 F:      drivers/irqchip/irq-xtensa-*
10466
10467 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
10468 M:      Hans Verkuil <hverkuil@xs4all.nl>
10469 L:      linux-media@vger.kernel.org
10470 T:      git git://linuxtv.org/media_tree.git
10471 W:      http://linuxtv.org
10472 S:      Maintained
10473 F:      drivers/media/radio/radio-raremono.c
10474
10475 THERMAL
10476 M:      Zhang Rui <rui.zhang@intel.com>
10477 M:      Eduardo Valentin <edubezval@gmail.com>
10478 L:      linux-pm@vger.kernel.org
10479 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
10480 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
10481 Q:      https://patchwork.kernel.org/project/linux-pm/list/
10482 S:      Supported
10483 F:      drivers/thermal/
10484 F:      include/linux/thermal.h
10485 F:      include/uapi/linux/thermal.h
10486 F:      include/linux/cpu_cooling.h
10487 F:      Documentation/devicetree/bindings/thermal/
10488
10489 THERMAL/CPU_COOLING
10490 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
10491 M:      Viresh Kumar <viresh.kumar@linaro.org>
10492 M:      Javi Merino <javi.merino@arm.com>
10493 L:      linux-pm@vger.kernel.org
10494 S:      Supported
10495 F:      Documentation/thermal/cpu-cooling-api.txt
10496 F:      drivers/thermal/cpu_cooling.c
10497 F:      include/linux/cpu_cooling.h
10498
10499 THINGM BLINK(1) USB RGB LED DRIVER
10500 M:      Vivien Didelot <vivien.didelot@savoirfairelinux.com>
10501 S:      Maintained
10502 F:      drivers/hid/hid-thingm.c
10503
10504 THINKPAD ACPI EXTRAS DRIVER
10505 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
10506 L:      ibm-acpi-devel@lists.sourceforge.net
10507 L:      platform-driver-x86@vger.kernel.org
10508 W:      http://ibm-acpi.sourceforge.net
10509 W:      http://thinkwiki.org/wiki/Ibm-acpi
10510 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
10511 S:      Maintained
10512 F:      drivers/platform/x86/thinkpad_acpi.c
10513
10514 TI BANDGAP AND THERMAL DRIVER
10515 M:      Eduardo Valentin <edubezval@gmail.com>
10516 L:      linux-pm@vger.kernel.org
10517 L:      linux-omap@vger.kernel.org
10518 S:      Maintained
10519 F:      drivers/thermal/ti-soc-thermal/
10520
10521 TI CDCE706 CLOCK DRIVER
10522 M:      Max Filippov <jcmvbkbc@gmail.com>
10523 S:      Maintained
10524 F:      drivers/clk/clk-cdce706.c
10525
10526 TI CLOCK DRIVER
10527 M:      Tero Kristo <t-kristo@ti.com>
10528 L:      linux-omap@vger.kernel.org
10529 S:      Maintained
10530 F:      drivers/clk/ti/
10531 F:      include/linux/clk/ti.h
10532
10533 TI FLASH MEDIA INTERFACE DRIVER
10534 M:      Alex Dubov <oakad@yahoo.com>
10535 S:      Maintained
10536 F:      drivers/misc/tifm*
10537 F:      drivers/mmc/host/tifm_sd.c
10538 F:      include/linux/tifm.h
10539
10540 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
10541 M:      Santosh Shilimkar <ssantosh@kernel.org>
10542 L:      linux-kernel@vger.kernel.org
10543 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10544 S:      Maintained
10545 F:      drivers/soc/ti/*
10546 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
10547
10548
10549 TI LM49xxx FAMILY ASoC CODEC DRIVERS
10550 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
10551 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
10552 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10553 S:      Maintained
10554 F:      sound/soc/codecs/lm49453*
10555 F:      sound/soc/codecs/isabelle*
10556
10557 TI LP855x BACKLIGHT DRIVER
10558 M:      Milo Kim <milo.kim@ti.com>
10559 S:      Maintained
10560 F:      Documentation/backlight/lp855x-driver.txt
10561 F:      drivers/video/backlight/lp855x_bl.c
10562 F:      include/linux/platform_data/lp855x.h
10563
10564 TI LP8727 CHARGER DRIVER
10565 M:      Milo Kim <milo.kim@ti.com>
10566 S:      Maintained
10567 F:      drivers/power/lp8727_charger.c
10568 F:      include/linux/platform_data/lp8727.h
10569
10570 TI LP8788 MFD DRIVER
10571 M:      Milo Kim <milo.kim@ti.com>
10572 S:      Maintained
10573 F:      drivers/iio/adc/lp8788_adc.c
10574 F:      drivers/leds/leds-lp8788.c
10575 F:      drivers/mfd/lp8788*.c
10576 F:      drivers/power/lp8788-charger.c
10577 F:      drivers/regulator/lp8788-*.c
10578 F:      include/linux/mfd/lp8788*.h
10579
10580 TI NETCP ETHERNET DRIVER
10581 M:      Wingman Kwok <w-kwok2@ti.com>
10582 M:      Murali Karicheri <m-karicheri2@ti.com>
10583 L:      netdev@vger.kernel.org
10584 S:      Maintained
10585 F:      drivers/net/ethernet/ti/netcp*
10586
10587 TI TAS571X FAMILY ASoC CODEC DRIVER
10588 M:      Kevin Cernekee <cernekee@chromium.org>
10589 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10590 S:      Odd Fixes
10591 F:      sound/soc/codecs/tas571x*
10592
10593 TI TWL4030 SERIES SOC CODEC DRIVER
10594 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
10595 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10596 S:      Maintained
10597 F:      sound/soc/codecs/twl4030*
10598
10599 TI WILINK WIRELESS DRIVERS
10600 L:      linux-wireless@vger.kernel.org
10601 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
10602 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
10603 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
10604 S:      Orphan
10605 F:      drivers/net/wireless/ti/
10606 F:      include/linux/wl12xx.h
10607
10608 TIPC NETWORK LAYER
10609 M:      Jon Maloy <jon.maloy@ericsson.com>
10610 M:      Ying Xue <ying.xue@windriver.com>
10611 L:      netdev@vger.kernel.org (core kernel code)
10612 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
10613 W:      http://tipc.sourceforge.net/
10614 S:      Maintained
10615 F:      include/uapi/linux/tipc*.h
10616 F:      net/tipc/
10617
10618 TILE ARCHITECTURE
10619 M:      Chris Metcalf <cmetcalf@ezchip.com>
10620 W:      http://www.ezchip.com/scm/
10621 S:      Supported
10622 F:      arch/tile/
10623 F:      drivers/char/tile-srom.c
10624 F:      drivers/edac/tile_edac.c
10625 F:      drivers/net/ethernet/tile/
10626 F:      drivers/rtc/rtc-tile.c
10627 F:      drivers/tty/hvc/hvc_tile.c
10628 F:      drivers/tty/serial/tilegx.c
10629 F:      drivers/usb/host/*-tilegx.c
10630 F:      include/linux/usb/tilegx.h
10631
10632 TLAN NETWORK DRIVER
10633 M:      Samuel Chessman <chessman@tux.org>
10634 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
10635 W:      http://sourceforge.net/projects/tlan/
10636 S:      Maintained
10637 F:      Documentation/networking/tlan.txt
10638 F:      drivers/net/ethernet/ti/tlan.*
10639
10640 TOMOYO SECURITY MODULE
10641 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
10642 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
10643 L:      tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
10644 L:      tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
10645 L:      tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
10646 L:      tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
10647 W:      http://tomoyo.sourceforge.jp/
10648 T:      quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
10649 S:      Maintained
10650 F:      security/tomoyo/
10651
10652 TOPSTAR LAPTOP EXTRAS DRIVER
10653 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
10654 L:      platform-driver-x86@vger.kernel.org
10655 S:      Maintained
10656 F:      drivers/platform/x86/topstar-laptop.c
10657
10658 TOSHIBA ACPI EXTRAS DRIVER
10659 M:      Azael Avalos <coproscefalo@gmail.com>
10660 L:      platform-driver-x86@vger.kernel.org
10661 S:      Maintained
10662 F:      drivers/platform/x86/toshiba_acpi.c
10663
10664 TOSHIBA BLUETOOTH DRIVER
10665 M:      Azael Avalos <coproscefalo@gmail.com>
10666 L:      platform-driver-x86@vger.kernel.org
10667 S:      Maintained
10668 F:      drivers/platform/x86/toshiba_bluetooth.c
10669
10670 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
10671 M:      Azael Avalos <coproscefalo@gmail.com>
10672 L:      platform-driver-x86@vger.kernel.org
10673 S:      Maintained
10674 F:      drivers/platform/x86/toshiba_haps.c
10675
10676 TOSHIBA WMI HOTKEYS DRIVER
10677 M:      Azael Avalos <coproscefalo@gmail.com>
10678 L:      platform-driver-x86@vger.kernel.org
10679 S:      Maintained
10680 F:      drivers/platform/x86/toshiba-wmi.c
10681
10682 TOSHIBA SMM DRIVER
10683 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
10684 W:      http://www.buzzard.org.uk/toshiba/
10685 S:      Maintained
10686 F:      drivers/char/toshiba.c
10687 F:      include/linux/toshiba.h
10688 F:      include/uapi/linux/toshiba.h
10689
10690 TOSHIBA TC358743 DRIVER
10691 M:      Mats Randgaard <matrandg@cisco.com>
10692 L:      linux-media@vger.kernel.org
10693 S:      Maintained
10694 F:      drivers/media/i2c/tc358743*
10695 F:      include/media/tc358743.h
10696
10697 TMIO MMC DRIVER
10698 M:      Ian Molton <ian@mnementh.co.uk>
10699 L:      linux-mmc@vger.kernel.org
10700 S:      Maintained
10701 F:      drivers/mmc/host/tmio_mmc*
10702 F:      drivers/mmc/host/sh_mobile_sdhi.c
10703 F:      include/linux/mmc/tmio.h
10704 F:      include/linux/mmc/sh_mobile_sdhi.h
10705
10706 TMP401 HARDWARE MONITOR DRIVER
10707 M:      Guenter Roeck <linux@roeck-us.net>
10708 L:      lm-sensors@lm-sensors.org
10709 S:      Maintained
10710 F:      Documentation/hwmon/tmp401
10711 F:      drivers/hwmon/tmp401.c
10712
10713 TMPFS (SHMEM FILESYSTEM)
10714 M:      Hugh Dickins <hughd@google.com>
10715 L:      linux-mm@kvack.org
10716 S:      Maintained
10717 F:      include/linux/shmem_fs.h
10718 F:      mm/shmem.c
10719
10720 TM6000 VIDEO4LINUX DRIVER
10721 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10722 L:      linux-media@vger.kernel.org
10723 W:      http://linuxtv.org
10724 T:      git git://linuxtv.org/media_tree.git
10725 S:      Odd fixes
10726 F:      drivers/media/usb/tm6000/
10727
10728 TW68 VIDEO4LINUX DRIVER
10729 M:      Hans Verkuil <hverkuil@xs4all.nl>
10730 L:      linux-media@vger.kernel.org
10731 T:      git git://linuxtv.org/media_tree.git
10732 W:      http://linuxtv.org
10733 S:      Odd Fixes
10734 F:      drivers/media/pci/tw68/
10735
10736 TPM DEVICE DRIVER
10737 M:      Peter Huewe <peterhuewe@gmx.de>
10738 M:      Marcel Selhorst <tpmdd@selhorst.net>
10739 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
10740 R:      Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
10741 W:      http://tpmdd.sourceforge.net
10742 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
10743 Q:      git git://github.com/PeterHuewe/linux-tpmdd.git
10744 T:      https://github.com/PeterHuewe/linux-tpmdd
10745 S:      Maintained
10746 F:      drivers/char/tpm/
10747
10748 TPM IBM_VTPM DEVICE DRIVER
10749 M:      Ashley Lai <ashleydlai@gmail.com>
10750 W:      http://tpmdd.sourceforge.net
10751 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
10752 S:      Maintained
10753 F:      drivers/char/tpm/tpm_ibmvtpm*
10754
10755 TRACING
10756 M:      Steven Rostedt <rostedt@goodmis.org>
10757 M:      Ingo Molnar <mingo@redhat.com>
10758 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
10759 S:      Maintained
10760 F:      Documentation/trace/ftrace.txt
10761 F:      arch/*/*/*/ftrace.h
10762 F:      arch/*/kernel/ftrace.c
10763 F:      include/*/ftrace.h
10764 F:      include/linux/trace*.h
10765 F:      include/trace/
10766 F:      kernel/trace/
10767 F:      tools/testing/selftests/ftrace/
10768
10769 TRIVIAL PATCHES
10770 M:      Jiri Kosina <trivial@kernel.org>
10771 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
10772 S:      Maintained
10773 K:      ^Subject:.*(?i)trivial
10774
10775 TTY LAYER
10776 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10777 M:      Jiri Slaby <jslaby@suse.com>
10778 S:      Supported
10779 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
10780 F:      Documentation/serial/
10781 F:      drivers/tty/
10782 F:      drivers/tty/serial/serial_core.c
10783 F:      include/linux/serial_core.h
10784 F:      include/linux/serial.h
10785 F:      include/linux/tty.h
10786 F:      include/uapi/linux/serial_core.h
10787 F:      include/uapi/linux/serial.h
10788 F:      include/uapi/linux/tty.h
10789
10790 TUA9001 MEDIA DRIVER
10791 M:      Antti Palosaari <crope@iki.fi>
10792 L:      linux-media@vger.kernel.org
10793 W:      http://linuxtv.org/
10794 W:      http://palosaari.fi/linux/
10795 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10796 T:      git git://linuxtv.org/anttip/media_tree.git
10797 S:      Maintained
10798 F:      drivers/media/tuners/tua9001*
10799
10800 TULIP NETWORK DRIVERS
10801 M:      Grant Grundler <grundler@parisc-linux.org>
10802 L:      netdev@vger.kernel.org
10803 S:      Maintained
10804 F:      drivers/net/ethernet/dec/tulip/
10805
10806 TUN/TAP driver
10807 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
10808 W:      http://vtun.sourceforge.net/tun
10809 S:      Maintained
10810 F:      Documentation/networking/tuntap.txt
10811 F:      arch/um/os-Linux/drivers/
10812
10813 TURBOCHANNEL SUBSYSTEM
10814 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
10815 M:      Ralf Baechle <ralf@linux-mips.org>
10816 L:      linux-mips@linux-mips.org
10817 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
10818 S:      Maintained
10819 F:      drivers/tc/
10820 F:      include/linux/tc.h
10821
10822 U14-34F SCSI DRIVER
10823 M:      Dario Ballabio <ballabio_dario@emc.com>
10824 L:      linux-scsi@vger.kernel.org
10825 S:      Maintained
10826 F:      drivers/scsi/u14-34f.c
10827
10828 UBI FILE SYSTEM (UBIFS)
10829 M:      Artem Bityutskiy <dedekind1@gmail.com>
10830 M:      Adrian Hunter <adrian.hunter@intel.com>
10831 L:      linux-mtd@lists.infradead.org
10832 T:      git git://git.infradead.org/ubifs-2.6.git
10833 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
10834 S:      Maintained
10835 F:      Documentation/filesystems/ubifs.txt
10836 F:      fs/ubifs/
10837
10838 UCLINUX (M68KNOMMU AND COLDFIRE)
10839 M:      Greg Ungerer <gerg@uclinux.org>
10840 W:      http://www.uclinux.org/
10841 L:      linux-m68k@lists.linux-m68k.org
10842 L:      uclinux-dev@uclinux.org  (subscribers-only)
10843 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
10844 S:      Maintained
10845 F:      arch/m68k/coldfire/
10846 F:      arch/m68k/68*/
10847 F:      arch/m68k/*/*_no.*
10848 F:      arch/m68k/include/asm/*_no.*
10849
10850 UDF FILESYSTEM
10851 M:      Jan Kara <jack@suse.com>
10852 S:      Maintained
10853 F:      Documentation/filesystems/udf.txt
10854 F:      fs/udf/
10855
10856 UFS FILESYSTEM
10857 M:      Evgeniy Dushistov <dushistov@mail.ru>
10858 S:      Maintained
10859 F:      Documentation/filesystems/ufs.txt
10860 F:      fs/ufs/
10861
10862 UHID USERSPACE HID IO DRIVER:
10863 M:      David Herrmann <dh.herrmann@googlemail.com>
10864 L:      linux-input@vger.kernel.org
10865 S:      Maintained
10866 F:      drivers/hid/uhid.c
10867 F:      include/uapi/linux/uhid.h
10868
10869 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
10870 L:      linux-usb@vger.kernel.org
10871 S:      Orphan
10872 F:      drivers/uwb/
10873 F:      include/linux/uwb.h
10874 F:      include/linux/uwb/
10875
10876 UNICORE32 ARCHITECTURE:
10877 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
10878 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
10879 S:      Maintained
10880 T:      git git://github.com/gxt/linux.git
10881 F:      arch/unicore32/
10882
10883 UNIFDEF
10884 M:      Tony Finch <dot@dotat.at>
10885 W:      http://dotat.at/prog/unifdef
10886 S:      Maintained
10887 F:      scripts/unifdef.c
10888
10889 UNIFORM CDROM DRIVER
10890 M:      Jens Axboe <axboe@kernel.dk>
10891 W:      http://www.kernel.dk
10892 S:      Maintained
10893 F:      Documentation/cdrom/
10894 F:      drivers/cdrom/cdrom.c
10895 F:      include/linux/cdrom.h
10896 F:      include/uapi/linux/cdrom.h
10897
10898 UNISYS S-PAR DRIVERS
10899 M:      Benjamin Romer <benjamin.romer@unisys.com>
10900 M:      David Kershner <david.kershner@unisys.com>
10901 L:      sparmaintainer@unisys.com (Unisys internal)
10902 S:      Supported
10903 F:      drivers/staging/unisys/
10904
10905 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
10906 M:      Vinayak Holikatti <vinholikatti@gmail.com>
10907 L:      linux-scsi@vger.kernel.org
10908 S:      Supported
10909 F:      Documentation/scsi/ufs.txt
10910 F:      drivers/scsi/ufs/
10911
10912 UNSORTED BLOCK IMAGES (UBI)
10913 M:      Artem Bityutskiy <dedekind1@gmail.com>
10914 M:      Richard Weinberger <richard@nod.at>
10915 W:      http://www.linux-mtd.infradead.org/
10916 L:      linux-mtd@lists.infradead.org
10917 T:      git git://git.infradead.org/ubifs-2.6.git
10918 S:      Supported
10919 F:      drivers/mtd/ubi/
10920 F:      include/linux/mtd/ubi.h
10921 F:      include/uapi/mtd/ubi-user.h
10922
10923 USB ACM DRIVER
10924 M:      Oliver Neukum <oliver@neukum.org>
10925 L:      linux-usb@vger.kernel.org
10926 S:      Maintained
10927 F:      Documentation/usb/acm.txt
10928 F:      drivers/usb/class/cdc-acm.*
10929
10930 USB AR5523 WIRELESS DRIVER
10931 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
10932 L:      linux-wireless@vger.kernel.org
10933 S:      Maintained
10934 F:      drivers/net/wireless/ath/ar5523/
10935
10936 USB ATTACHED SCSI
10937 M:      Hans de Goede <hdegoede@redhat.com>
10938 M:      Gerd Hoffmann <kraxel@redhat.com>
10939 L:      linux-usb@vger.kernel.org
10940 L:      linux-scsi@vger.kernel.org
10941 S:      Maintained
10942 F:      drivers/usb/storage/uas.c
10943
10944 USB CDC ETHERNET DRIVER
10945 M:      Oliver Neukum <oliver@neukum.org>
10946 L:      linux-usb@vger.kernel.org
10947 S:      Maintained
10948 F:      drivers/net/usb/cdc_*.c
10949 F:      include/uapi/linux/usb/cdc.h
10950
10951 USB CHAOSKEY DRIVER
10952 M:      Keith Packard <keithp@keithp.com>
10953 L:      linux-usb@vger.kernel.org
10954 S:      Maintained
10955 F:      drivers/usb/misc/chaoskey.c
10956
10957 USB CYPRESS C67X00 DRIVER
10958 M:      Peter Korsgaard <jacmet@sunsite.dk>
10959 L:      linux-usb@vger.kernel.org
10960 S:      Maintained
10961 F:      drivers/usb/c67x00/
10962
10963 USB DAVICOM DM9601 DRIVER
10964 M:      Peter Korsgaard <jacmet@sunsite.dk>
10965 L:      netdev@vger.kernel.org
10966 W:      http://www.linux-usb.org/usbnet
10967 S:      Maintained
10968 F:      drivers/net/usb/dm9601.c
10969
10970 USB DIAMOND RIO500 DRIVER
10971 M:      Cesar Miquel <miquel@df.uba.ar>
10972 L:      rio500-users@lists.sourceforge.net
10973 W:      http://rio500.sourceforge.net
10974 S:      Maintained
10975 F:      drivers/usb/misc/rio500*
10976
10977 USB EHCI DRIVER
10978 M:      Alan Stern <stern@rowland.harvard.edu>
10979 L:      linux-usb@vger.kernel.org
10980 S:      Maintained
10981 F:      Documentation/usb/ehci.txt
10982 F:      drivers/usb/host/ehci*
10983
10984 USB GADGET/PERIPHERAL SUBSYSTEM
10985 M:      Felipe Balbi <balbi@ti.com>
10986 L:      linux-usb@vger.kernel.org
10987 W:      http://www.linux-usb.org/gadget
10988 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
10989 S:      Maintained
10990 F:      drivers/usb/gadget/
10991 F:      include/linux/usb/gadget*
10992
10993 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
10994 M:      Jiri Kosina <jikos@kernel.org>
10995 L:      linux-usb@vger.kernel.org
10996 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
10997 S:      Maintained
10998 F:      Documentation/hid/hiddev.txt
10999 F:      drivers/hid/usbhid/
11000
11001 USB ISP116X DRIVER
11002 M:      Olav Kongas <ok@artecdesign.ee>
11003 L:      linux-usb@vger.kernel.org
11004 S:      Maintained
11005 F:      drivers/usb/host/isp116x*
11006 F:      include/linux/usb/isp116x.h
11007
11008 USB MASS STORAGE DRIVER
11009 M:      Matthew Dharm <mdharm-usb@one-eyed-alien.net>
11010 L:      linux-usb@vger.kernel.org
11011 L:      usb-storage@lists.one-eyed-alien.net
11012 S:      Maintained
11013 W:      http://www.one-eyed-alien.net/~mdharm/linux-usb/
11014 F:      drivers/usb/storage/
11015
11016 USB MIDI DRIVER
11017 M:      Clemens Ladisch <clemens@ladisch.de>
11018 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11019 T:      git git://git.alsa-project.org/alsa-kernel.git
11020 S:      Maintained
11021 F:      sound/usb/midi.*
11022
11023 USB NETWORKING DRIVERS
11024 L:      linux-usb@vger.kernel.org
11025 S:      Odd Fixes
11026 F:      drivers/net/usb/
11027
11028 USB OHCI DRIVER
11029 M:      Alan Stern <stern@rowland.harvard.edu>
11030 L:      linux-usb@vger.kernel.org
11031 S:      Maintained
11032 F:      Documentation/usb/ohci.txt
11033 F:      drivers/usb/host/ohci*
11034
11035 USB OTG FSM (Finite State Machine)
11036 M:      Peter Chen <Peter.Chen@freescale.com>
11037 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
11038 L:      linux-usb@vger.kernel.org
11039 S:      Maintained
11040 F:      drivers/usb/common/usb-otg-fsm.c
11041
11042 USB OVER IP DRIVER
11043 M:      Valentina Manea <valentina.manea.m@gmail.com>
11044 M:      Shuah Khan <shuah.kh@samsung.com>
11045 L:      linux-usb@vger.kernel.org
11046 S:      Maintained
11047 F:      drivers/usb/usbip/
11048 F:      tools/usb/usbip/
11049
11050 USB PEGASUS DRIVER
11051 M:      Petko Manolov <petkan@nucleusys.com>
11052 L:      linux-usb@vger.kernel.org
11053 L:      netdev@vger.kernel.org
11054 T:      git git://github.com/petkan/pegasus.git
11055 W:      https://github.com/petkan/pegasus
11056 S:      Maintained
11057 F:      drivers/net/usb/pegasus.*
11058
11059 USB PHY LAYER
11060 M:      Felipe Balbi <balbi@ti.com>
11061 L:      linux-usb@vger.kernel.org
11062 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
11063 S:      Maintained
11064 F:      drivers/usb/phy/
11065
11066 USB PRINTER DRIVER (usblp)
11067 M:      Pete Zaitcev <zaitcev@redhat.com>
11068 L:      linux-usb@vger.kernel.org
11069 S:      Supported
11070 F:      drivers/usb/class/usblp.c
11071
11072 USB RTL8150 DRIVER
11073 M:      Petko Manolov <petkan@nucleusys.com>
11074 L:      linux-usb@vger.kernel.org
11075 L:      netdev@vger.kernel.org
11076 T:      git git://github.com/petkan/rtl8150.git
11077 W:      https://github.com/petkan/rtl8150
11078 S:      Maintained
11079 F:      drivers/net/usb/rtl8150.c
11080
11081 USB SERIAL SUBSYSTEM
11082 M:      Johan Hovold <johan@kernel.org>
11083 L:      linux-usb@vger.kernel.org
11084 S:      Maintained
11085 F:      Documentation/usb/usb-serial.txt
11086 F:      drivers/usb/serial/
11087 F:      include/linux/usb/serial.h
11088
11089 USB SMSC75XX ETHERNET DRIVER
11090 M:      Steve Glendinning <steve.glendinning@shawell.net>
11091 L:      netdev@vger.kernel.org
11092 S:      Maintained
11093 F:      drivers/net/usb/smsc75xx.*
11094
11095 USB SMSC95XX ETHERNET DRIVER
11096 M:      Steve Glendinning <steve.glendinning@shawell.net>
11097 L:      netdev@vger.kernel.org
11098 S:      Maintained
11099 F:      drivers/net/usb/smsc95xx.*
11100
11101 USB SUBSYSTEM
11102 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11103 L:      linux-usb@vger.kernel.org
11104 W:      http://www.linux-usb.org
11105 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
11106 S:      Supported
11107 F:      Documentation/usb/
11108 F:      drivers/usb/
11109 F:      include/linux/usb.h
11110 F:      include/linux/usb/
11111
11112 USB UHCI DRIVER
11113 M:      Alan Stern <stern@rowland.harvard.edu>
11114 L:      linux-usb@vger.kernel.org
11115 S:      Maintained
11116 F:      drivers/usb/host/uhci*
11117
11118 USB "USBNET" DRIVER FRAMEWORK
11119 M:      Oliver Neukum <oneukum@suse.com>
11120 L:      netdev@vger.kernel.org
11121 W:      http://www.linux-usb.org/usbnet
11122 S:      Maintained
11123 F:      drivers/net/usb/usbnet.c
11124 F:      include/linux/usb/usbnet.h
11125
11126 USB VIDEO CLASS
11127 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11128 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
11129 L:      linux-media@vger.kernel.org
11130 T:      git git://linuxtv.org/media_tree.git
11131 W:      http://www.ideasonboard.org/uvc/
11132 S:      Maintained
11133 F:      drivers/media/usb/uvc/
11134 F:      include/uapi/linux/uvcvideo.h
11135
11136 USB VISION DRIVER
11137 M:      Hans Verkuil <hverkuil@xs4all.nl>
11138 L:      linux-media@vger.kernel.org
11139 T:      git git://linuxtv.org/media_tree.git
11140 W:      http://linuxtv.org
11141 S:      Odd Fixes
11142 F:      drivers/media/usb/usbvision/
11143
11144 USB WEBCAM GADGET
11145 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11146 L:      linux-usb@vger.kernel.org
11147 S:      Maintained
11148 F:      drivers/usb/gadget/function/*uvc*
11149 F:      drivers/usb/gadget/legacy/webcam.c
11150
11151 USB WIRELESS RNDIS DRIVER (rndis_wlan)
11152 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
11153 L:      linux-wireless@vger.kernel.org
11154 S:      Maintained
11155 F:      drivers/net/wireless/rndis_wlan.c
11156
11157 USB XHCI DRIVER
11158 M:      Mathias Nyman <mathias.nyman@intel.com>
11159 L:      linux-usb@vger.kernel.org
11160 S:      Supported
11161 F:      drivers/usb/host/xhci*
11162 F:      drivers/usb/host/pci-quirks*
11163
11164 USB ZD1201 DRIVER
11165 L:      linux-wireless@vger.kernel.org
11166 W:      http://linux-lc100020.sourceforge.net
11167 S:      Orphan
11168 F:      drivers/net/wireless/zd1201.*
11169
11170 USB ZR364XX DRIVER
11171 M:      Antoine Jacquet <royale@zerezo.com>
11172 L:      linux-usb@vger.kernel.org
11173 L:      linux-media@vger.kernel.org
11174 T:      git git://linuxtv.org/media_tree.git
11175 W:      http://royale.zerezo.com/zr364xx/
11176 S:      Maintained
11177 F:      Documentation/video4linux/zr364xx.txt
11178 F:      drivers/media/usb/zr364xx/
11179
11180 ULPI BUS
11181 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
11182 L:      linux-usb@vger.kernel.org
11183 S:      Maintained
11184 F:      drivers/usb/common/ulpi.c
11185 F:      include/linux/ulpi/
11186
11187 USER-MODE LINUX (UML)
11188 M:      Jeff Dike <jdike@addtoit.com>
11189 M:      Richard Weinberger <richard@nod.at>
11190 L:      user-mode-linux-devel@lists.sourceforge.net
11191 L:      user-mode-linux-user@lists.sourceforge.net
11192 W:      http://user-mode-linux.sourceforge.net
11193 S:      Maintained
11194 F:      Documentation/virtual/uml/
11195 F:      arch/um/
11196 F:      arch/x86/um/
11197 F:      fs/hostfs/
11198 F:      fs/hppfs/
11199
11200 USERSPACE I/O (UIO)
11201 M:      "Hans J. Koch" <hjk@hansjkoch.de>
11202 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11203 S:      Maintained
11204 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
11205 F:      Documentation/DocBook/uio-howto.tmpl
11206 F:      drivers/uio/
11207 F:      include/linux/uio*.h
11208
11209 UTIL-LINUX PACKAGE
11210 M:      Karel Zak <kzak@redhat.com>
11211 L:      util-linux@vger.kernel.org
11212 W:      http://en.wikipedia.org/wiki/Util-linux
11213 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
11214 S:      Maintained
11215
11216 UVESAFB DRIVER
11217 M:      Michal Januszewski <spock@gentoo.org>
11218 L:      linux-fbdev@vger.kernel.org
11219 W:      http://dev.gentoo.org/~spock/projects/uvesafb/
11220 S:      Maintained
11221 F:      Documentation/fb/uvesafb.txt
11222 F:      drivers/video/fbdev/uvesafb.*
11223
11224 VF610 NAND DRIVER
11225 M:      Stefan Agner <stefan@agner.ch>
11226 L:      linux-mtd@lists.infradead.org
11227 S:      Supported
11228 F:      drivers/mtd/nand/vf610_nfc.c
11229
11230 VFAT/FAT/MSDOS FILESYSTEM
11231 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
11232 S:      Maintained
11233 F:      Documentation/filesystems/vfat.txt
11234 F:      fs/fat/
11235
11236 VFIO DRIVER
11237 M:      Alex Williamson <alex.williamson@redhat.com>
11238 L:      kvm@vger.kernel.org
11239 S:      Maintained
11240 F:      Documentation/vfio.txt
11241 F:      drivers/vfio/
11242 F:      include/linux/vfio.h
11243 F:      include/uapi/linux/vfio.h
11244
11245 VFIO PLATFORM DRIVER
11246 M:      Baptiste Reynal <b.reynal@virtualopensystems.com>
11247 L:      kvm@vger.kernel.org
11248 S:      Maintained
11249 F:      drivers/vfio/platform/
11250
11251 VIDEOBUF2 FRAMEWORK
11252 M:      Pawel Osciak <pawel@osciak.com>
11253 M:      Marek Szyprowski <m.szyprowski@samsung.com>
11254 M:      Kyungmin Park <kyungmin.park@samsung.com>
11255 L:      linux-media@vger.kernel.org
11256 S:      Maintained
11257 F:      drivers/media/v4l2-core/videobuf2-*
11258 F:      include/media/videobuf2-*
11259
11260 VIRTUAL SERIO DEVICE DRIVER
11261 M:      Stephen Chandler Paul <thatslyude@gmail.com>
11262 S:      Maintained
11263 F:      drivers/input/serio/userio.c
11264 F:      include/uapi/linux/userio.h
11265
11266 VIRTIO CONSOLE DRIVER
11267 M:      Amit Shah <amit.shah@redhat.com>
11268 L:      virtualization@lists.linux-foundation.org
11269 S:      Maintained
11270 F:      drivers/char/virtio_console.c
11271 F:      include/linux/virtio_console.h
11272 F:      include/uapi/linux/virtio_console.h
11273
11274 VIRTIO CORE, NET AND BLOCK DRIVERS
11275 M:      "Michael S. Tsirkin" <mst@redhat.com>
11276 L:      virtualization@lists.linux-foundation.org
11277 S:      Maintained
11278 F:      drivers/virtio/
11279 F:      tools/virtio/
11280 F:      drivers/net/virtio_net.c
11281 F:      drivers/block/virtio_blk.c
11282 F:      include/linux/virtio_*.h
11283 F:      include/uapi/linux/virtio_*.h
11284
11285 VIRTIO DRIVERS FOR S390
11286 M:      Christian Borntraeger <borntraeger@de.ibm.com>
11287 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
11288 L:      linux-s390@vger.kernel.org
11289 L:      virtualization@lists.linux-foundation.org
11290 L:      kvm@vger.kernel.org
11291 S:      Supported
11292 F:      drivers/s390/virtio/
11293
11294 VIRTIO GPU DRIVER
11295 M:      David Airlie <airlied@linux.ie>
11296 M:      Gerd Hoffmann <kraxel@redhat.com>
11297 L:      dri-devel@lists.freedesktop.org
11298 L:      virtualization@lists.linux-foundation.org
11299 S:      Maintained
11300 F:      drivers/gpu/drm/virtio/
11301 F:      include/uapi/linux/virtio_gpu.h
11302
11303 VIRTIO HOST (VHOST)
11304 M:      "Michael S. Tsirkin" <mst@redhat.com>
11305 L:      kvm@vger.kernel.org
11306 L:      virtualization@lists.linux-foundation.org
11307 L:      netdev@vger.kernel.org
11308 S:      Maintained
11309 F:      drivers/vhost/
11310 F:      include/uapi/linux/vhost.h
11311
11312 VIRTIO INPUT DRIVER
11313 M:      Gerd Hoffmann <kraxel@redhat.com>
11314 S:      Maintained
11315 F:      drivers/virtio/virtio_input.c
11316 F:      include/uapi/linux/virtio_input.h
11317
11318 VIA RHINE NETWORK DRIVER
11319 S:      Orphan
11320 F:      drivers/net/ethernet/via/via-rhine.c
11321
11322 VIA SD/MMC CARD CONTROLLER DRIVER
11323 M:      Bruce Chang <brucechang@via.com.tw>
11324 M:      Harald Welte <HaraldWelte@viatech.com>
11325 S:      Maintained
11326 F:      drivers/mmc/host/via-sdmmc.c
11327
11328 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
11329 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
11330 L:      linux-fbdev@vger.kernel.org
11331 S:      Maintained
11332 F:      include/linux/via-core.h
11333 F:      include/linux/via-gpio.h
11334 F:      include/linux/via_i2c.h
11335 F:      drivers/video/fbdev/via/
11336
11337 VIA VELOCITY NETWORK DRIVER
11338 M:      Francois Romieu <romieu@fr.zoreil.com>
11339 L:      netdev@vger.kernel.org
11340 S:      Maintained
11341 F:      drivers/net/ethernet/via/via-velocity.*
11342
11343 VIRT LIB
11344 M:      Alex Williamson <alex.williamson@redhat.com>
11345 M:      Paolo Bonzini <pbonzini@redhat.com>
11346 L:      kvm@vger.kernel.org
11347 S:      Supported
11348 F:      virt/lib/
11349
11350 VIVID VIRTUAL VIDEO DRIVER
11351 M:      Hans Verkuil <hverkuil@xs4all.nl>
11352 L:      linux-media@vger.kernel.org
11353 T:      git git://linuxtv.org/media_tree.git
11354 W:      http://linuxtv.org
11355 S:      Maintained
11356 F:      drivers/media/platform/vivid/*
11357
11358 VLAN (802.1Q)
11359 M:      Patrick McHardy <kaber@trash.net>
11360 L:      netdev@vger.kernel.org
11361 S:      Maintained
11362 F:      drivers/net/macvlan.c
11363 F:      include/linux/if_*vlan.h
11364 F:      net/8021q/
11365
11366 VLYNQ BUS
11367 M:      Florian Fainelli <florian@openwrt.org>
11368 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
11369 S:      Maintained
11370 F:      drivers/vlynq/vlynq.c
11371 F:      include/linux/vlynq.h
11372
11373 VME SUBSYSTEM
11374 M:      Martyn Welch <martyn@welchs.me.uk>
11375 M:      Manohar Vanga <manohar.vanga@gmail.com>
11376 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11377 L:      devel@driverdev.osuosl.org
11378 S:      Maintained
11379 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
11380 F:      Documentation/vme_api.txt
11381 F:      drivers/staging/vme/
11382 F:      drivers/vme/
11383 F:      include/linux/vme*
11384
11385 VMWARE HYPERVISOR INTERFACE
11386 M:      Alok Kataria <akataria@vmware.com>
11387 L:      virtualization@lists.linux-foundation.org
11388 S:      Supported
11389 F:      arch/x86/kernel/cpu/vmware.c
11390
11391 VMWARE BALLOON DRIVER
11392 M:      Xavier Deguillard <xdeguillard@vmware.com>
11393 M:      Philip Moltmann <moltmann@vmware.com>
11394 M:      "VMware, Inc." <pv-drivers@vmware.com>
11395 L:      linux-kernel@vger.kernel.org
11396 S:      Maintained
11397 F:      drivers/misc/vmw_balloon.c
11398
11399 VMWARE VMMOUSE SUBDRIVER
11400 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
11401 M:      "VMware, Inc." <pv-drivers@vmware.com>
11402 L:      linux-input@vger.kernel.org
11403 S:      Maintained
11404 F:      drivers/input/mouse/vmmouse.c
11405 F:      drivers/input/mouse/vmmouse.h
11406
11407 VMWARE VMXNET3 ETHERNET DRIVER
11408 M:      Shrikrishna Khare <skhare@vmware.com>
11409 M:      "VMware, Inc." <pv-drivers@vmware.com>
11410 L:      netdev@vger.kernel.org
11411 S:      Maintained
11412 F:      drivers/net/vmxnet3/
11413
11414 VMware PVSCSI driver
11415 M:      Arvind Kumar <arvindkumar@vmware.com>
11416 M:      VMware PV-Drivers <pv-drivers@vmware.com>
11417 L:      linux-scsi@vger.kernel.org
11418 S:      Maintained
11419 F:      drivers/scsi/vmw_pvscsi.c
11420 F:      drivers/scsi/vmw_pvscsi.h
11421
11422 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
11423 M:      Liam Girdwood <lgirdwood@gmail.com>
11424 M:      Mark Brown <broonie@kernel.org>
11425 L:      linux-kernel@vger.kernel.org
11426 W:      http://www.slimlogic.co.uk/?p=48
11427 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
11428 S:      Supported
11429 F:      drivers/regulator/
11430 F:      include/linux/regulator/
11431
11432 VRF
11433 M:      David Ahern <dsa@cumulusnetworks.com>
11434 M:      Shrijeet Mukherjee <shm@cumulusnetworks.com>
11435 L:      netdev@vger.kernel.org
11436 S:      Maintained
11437 F:      drivers/net/vrf.c
11438 F:      Documentation/networking/vrf.txt
11439
11440 VT1211 HARDWARE MONITOR DRIVER
11441 M:      Juerg Haefliger <juergh@gmail.com>
11442 L:      lm-sensors@lm-sensors.org
11443 S:      Maintained
11444 F:      Documentation/hwmon/vt1211
11445 F:      drivers/hwmon/vt1211.c
11446
11447 VT8231 HARDWARE MONITOR DRIVER
11448 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
11449 L:      lm-sensors@lm-sensors.org
11450 S:      Maintained
11451 F:      drivers/hwmon/vt8231.c
11452
11453 VUB300 USB to SDIO/SD/MMC bridge chip
11454 M:      Tony Olech <tony.olech@elandigitalsystems.com>
11455 L:      linux-mmc@vger.kernel.org
11456 L:      linux-usb@vger.kernel.org
11457 S:      Supported
11458 F:      drivers/mmc/host/vub300.c
11459
11460 W1 DALLAS'S 1-WIRE BUS
11461 M:      Evgeniy Polyakov <zbr@ioremap.net>
11462 S:      Maintained
11463 F:      Documentation/w1/
11464 F:      drivers/w1/
11465
11466 W83791D HARDWARE MONITORING DRIVER
11467 M:      Marc Hulsman <m.hulsman@tudelft.nl>
11468 L:      lm-sensors@lm-sensors.org
11469 S:      Maintained
11470 F:      Documentation/hwmon/w83791d
11471 F:      drivers/hwmon/w83791d.c
11472
11473 W83793 HARDWARE MONITORING DRIVER
11474 M:      Rudolf Marek <r.marek@assembler.cz>
11475 L:      lm-sensors@lm-sensors.org
11476 S:      Maintained
11477 F:      Documentation/hwmon/w83793
11478 F:      drivers/hwmon/w83793.c
11479
11480 W83795 HARDWARE MONITORING DRIVER
11481 M:      Jean Delvare <jdelvare@suse.com>
11482 L:      lm-sensors@lm-sensors.org
11483 S:      Maintained
11484 F:      drivers/hwmon/w83795.c
11485
11486 W83L51xD SD/MMC CARD INTERFACE DRIVER
11487 M:      Pierre Ossman <pierre@ossman.eu>
11488 S:      Maintained
11489 F:      drivers/mmc/host/wbsd.*
11490
11491 WACOM PROTOCOL 4 SERIAL TABLETS
11492 M:      Julian Squires <julian@cipht.net>
11493 M:      Hans de Goede <hdegoede@redhat.com>
11494 L:      linux-input@vger.kernel.org
11495 S:      Maintained
11496 F:      drivers/input/tablet/wacom_serial4.c
11497
11498 WATCHDOG DEVICE DRIVERS
11499 M:      Wim Van Sebroeck <wim@iguana.be>
11500 L:      linux-watchdog@vger.kernel.org
11501 W:      http://www.linux-watchdog.org/
11502 T:      git git://www.linux-watchdog.org/linux-watchdog.git
11503 S:      Maintained
11504 F:      Documentation/watchdog/
11505 F:      drivers/watchdog/
11506 F:      include/linux/watchdog.h
11507 F:      include/uapi/linux/watchdog.h
11508
11509 WD7000 SCSI DRIVER
11510 M:      Miroslav Zagorac <zaga@fly.cc.fer.hr>
11511 L:      linux-scsi@vger.kernel.org
11512 S:      Maintained
11513 F:      drivers/scsi/wd7000.c
11514
11515 WIIMOTE HID DRIVER
11516 M:      David Herrmann <dh.herrmann@googlemail.com>
11517 L:      linux-input@vger.kernel.org
11518 S:      Maintained
11519 F:      drivers/hid/hid-wiimote*
11520
11521 WINBOND CIR DRIVER
11522 M:      David Härdeman <david@hardeman.nu>
11523 S:      Maintained
11524 F:      drivers/media/rc/winbond-cir.c
11525
11526 WIMAX STACK
11527 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
11528 M:      linux-wimax@intel.com
11529 L:      wimax@linuxwimax.org (subscribers-only)
11530 S:      Supported
11531 W:      http://linuxwimax.org
11532 F:      Documentation/wimax/README.wimax
11533 F:      include/linux/wimax/debug.h
11534 F:      include/net/wimax.h
11535 F:      include/uapi/linux/wimax.h
11536 F:      net/wimax/
11537
11538 WISTRON LAPTOP BUTTON DRIVER
11539 M:      Miloslav Trmac <mitr@volny.cz>
11540 S:      Maintained
11541 F:      drivers/input/misc/wistron_btns.c
11542
11543 WL3501 WIRELESS PCMCIA CARD DRIVER
11544 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
11545 L:      linux-wireless@vger.kernel.org
11546 W:      http://oops.ghostprotocols.net:81/blog
11547 S:      Maintained
11548 F:      drivers/net/wireless/wl3501*
11549
11550 WOLFSON MICROELECTRONICS DRIVERS
11551 L:      patches@opensource.wolfsonmicro.com
11552 T:      git https://github.com/CirrusLogic/linux-drivers.git
11553 W:      https://github.com/CirrusLogic/linux-drivers/wiki
11554 S:      Supported
11555 F:      Documentation/hwmon/wm83??
11556 F:      Documentation/devicetree/bindings/extcon/extcon-arizona.txt
11557 F:      Documentation/devicetree/bindings/regulator/arizona-regulator.txt
11558 F:      Documentation/devicetree/bindings/mfd/arizona.txt
11559 F:      arch/arm/mach-s3c64xx/mach-crag6410*
11560 F:      drivers/clk/clk-wm83*.c
11561 F:      drivers/extcon/extcon-arizona.c
11562 F:      drivers/leds/leds-wm83*.c
11563 F:      drivers/gpio/gpio-*wm*.c
11564 F:      drivers/gpio/gpio-arizona.c
11565 F:      drivers/hwmon/wm83??-hwmon.c
11566 F:      drivers/input/misc/wm831x-on.c
11567 F:      drivers/input/touchscreen/wm831x-ts.c
11568 F:      drivers/input/touchscreen/wm97*.c
11569 F:      drivers/mfd/arizona*
11570 F:      drivers/mfd/wm*.c
11571 F:      drivers/power/wm83*.c
11572 F:      drivers/rtc/rtc-wm83*.c
11573 F:      drivers/regulator/wm8*.c
11574 F:      drivers/video/backlight/wm83*_bl.c
11575 F:      drivers/watchdog/wm83*_wdt.c
11576 F:      include/linux/mfd/arizona/
11577 F:      include/linux/mfd/wm831x/
11578 F:      include/linux/mfd/wm8350/
11579 F:      include/linux/mfd/wm8400*
11580 F:      include/linux/wm97xx.h
11581 F:      include/sound/wm????.h
11582 F:      sound/soc/codecs/arizona.?
11583 F:      sound/soc/codecs/wm*
11584
11585 WORKQUEUE
11586 M:      Tejun Heo <tj@kernel.org>
11587 R:      Lai Jiangshan <jiangshanlai@gmail.com>
11588 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
11589 S:      Maintained
11590 F:      include/linux/workqueue.h
11591 F:      kernel/workqueue.c
11592 F:      Documentation/workqueue.txt
11593
11594 X.25 NETWORK LAYER
11595 M:      Andrew Hendry <andrew.hendry@gmail.com>
11596 L:      linux-x25@vger.kernel.org
11597 S:      Odd Fixes
11598 F:      Documentation/networking/x25*
11599 F:      include/net/x25*
11600 F:      net/x25/
11601
11602 X86 ARCHITECTURE (32-BIT AND 64-BIT)
11603 M:      Thomas Gleixner <tglx@linutronix.de>
11604 M:      Ingo Molnar <mingo@redhat.com>
11605 M:      "H. Peter Anvin" <hpa@zytor.com>
11606 M:      x86@kernel.org
11607 L:      linux-kernel@vger.kernel.org
11608 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
11609 S:      Maintained
11610 F:      Documentation/x86/
11611 F:      arch/x86/
11612
11613 X86 PLATFORM DRIVERS
11614 M:      Darren Hart <dvhart@infradead.org>
11615 L:      platform-driver-x86@vger.kernel.org
11616 T:      git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git
11617 S:      Maintained
11618 F:      drivers/platform/x86/
11619 F:      drivers/platform/olpc/
11620
11621 X86 MCE INFRASTRUCTURE
11622 M:      Tony Luck <tony.luck@intel.com>
11623 M:      Borislav Petkov <bp@alien8.de>
11624 L:      linux-edac@vger.kernel.org
11625 S:      Maintained
11626 F:      arch/x86/kernel/cpu/mcheck/*
11627
11628 X86 MICROCODE UPDATE SUPPORT
11629 M:      Borislav Petkov <bp@alien8.de>
11630 S:      Maintained
11631 F:      arch/x86/kernel/cpu/microcode/*
11632
11633 X86 VDSO
11634 M:      Andy Lutomirski <luto@amacapital.net>
11635 L:      linux-kernel@vger.kernel.org
11636 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
11637 S:      Maintained
11638 F:      arch/x86/entry/vdso/
11639
11640 XC2028/3028 TUNER DRIVER
11641 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
11642 L:      linux-media@vger.kernel.org
11643 W:      http://linuxtv.org
11644 T:      git git://linuxtv.org/media_tree.git
11645 S:      Maintained
11646 F:      drivers/media/tuners/tuner-xc2028.*
11647
11648 XEN HYPERVISOR INTERFACE
11649 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11650 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
11651 M:      David Vrabel <david.vrabel@citrix.com>
11652 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11653 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
11654 S:      Supported
11655 F:      arch/x86/xen/
11656 F:      drivers/*/xen-*front.c
11657 F:      drivers/xen/
11658 F:      arch/x86/include/asm/xen/
11659 F:      include/xen/
11660 F:      include/uapi/xen/
11661
11662 XEN HYPERVISOR ARM
11663 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
11664 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11665 S:      Supported
11666 F:      arch/arm/xen/
11667 F:      arch/arm/include/asm/xen/
11668
11669 XEN HYPERVISOR ARM64
11670 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
11671 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11672 S:      Supported
11673 F:      arch/arm64/xen/
11674 F:      arch/arm64/include/asm/xen/
11675
11676 XEN NETWORK BACKEND DRIVER
11677 M:      Ian Campbell <ian.campbell@citrix.com>
11678 M:      Wei Liu <wei.liu2@citrix.com>
11679 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11680 L:      netdev@vger.kernel.org
11681 S:      Supported
11682 F:      drivers/net/xen-netback/*
11683
11684 XEN PCI SUBSYSTEM
11685 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11686 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11687 S:      Supported
11688 F:      arch/x86/pci/*xen*
11689 F:      drivers/pci/*xen*
11690
11691 XEN BLOCK SUBSYSTEM
11692 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11693 M:      Roger Pau MonnĂ© <roger.pau@citrix.com>
11694 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11695 S:      Supported
11696 F:      drivers/block/xen-blkback/*
11697 F:      drivers/block/xen*
11698
11699 XEN PVSCSI DRIVERS
11700 M:      Juergen Gross <jgross@suse.com>
11701 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11702 L:      linux-scsi@vger.kernel.org
11703 S:      Supported
11704 F:      drivers/scsi/xen-scsifront.c
11705 F:      drivers/xen/xen-scsiback.c
11706 F:      include/xen/interface/io/vscsiif.h
11707
11708 XEN SWIOTLB SUBSYSTEM
11709 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11710 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11711 S:      Supported
11712 F:      arch/x86/xen/*swiotlb*
11713 F:      drivers/xen/*swiotlb*
11714
11715 XFS FILESYSTEM
11716 P:      Silicon Graphics Inc
11717 M:      Dave Chinner <david@fromorbit.com>
11718 M:      xfs@oss.sgi.com
11719 L:      xfs@oss.sgi.com
11720 W:      http://oss.sgi.com/projects/xfs
11721 T:      git git://oss.sgi.com/xfs/xfs.git
11722 S:      Supported
11723 F:      Documentation/filesystems/xfs.txt
11724 F:      fs/xfs/
11725
11726 XILINX AXI ETHERNET DRIVER
11727 M:      Anirudha Sarangi <anirudh@xilinx.com>
11728 M:      John Linn <John.Linn@xilinx.com>
11729 S:      Maintained
11730 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
11731
11732 XILINX UARTLITE SERIAL DRIVER
11733 M:      Peter Korsgaard <jacmet@sunsite.dk>
11734 L:      linux-serial@vger.kernel.org
11735 S:      Maintained
11736 F:      drivers/tty/serial/uartlite.c
11737
11738 XILINX VIDEO IP CORES
11739 M:      Hyun Kwon <hyun.kwon@xilinx.com>
11740 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11741 L:      linux-media@vger.kernel.org
11742 T:      git git://linuxtv.org/media_tree.git
11743 S:      Supported
11744 F:      Documentation/devicetree/bindings/media/xilinx/
11745 F:      drivers/media/platform/xilinx/
11746 F:      include/uapi/linux/xilinx-v4l2-controls.h
11747
11748 XILLYBUS DRIVER
11749 M:      Eli Billauer <eli.billauer@gmail.com>
11750 L:      linux-kernel@vger.kernel.org
11751 S:      Supported
11752 F:      drivers/char/xillybus/
11753
11754 XTENSA XTFPGA PLATFORM SUPPORT
11755 M:      Max Filippov <jcmvbkbc@gmail.com>
11756 L:      linux-xtensa@linux-xtensa.org
11757 S:      Maintained
11758 F:      drivers/spi/spi-xtensa-xtfpga.c
11759 F:      sound/soc/xtensa/xtfpga-i2s.c
11760
11761 YAM DRIVER FOR AX.25
11762 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
11763 L:      linux-hams@vger.kernel.org
11764 S:      Maintained
11765 F:      drivers/net/hamradio/yam*
11766 F:      include/linux/yam.h
11767
11768 YEALINK PHONE DRIVER
11769 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
11770 L:      usbb2k-api-dev@nongnu.org
11771 S:      Maintained
11772 F:      Documentation/input/yealink.txt
11773 F:      drivers/input/misc/yealink.*
11774
11775 Z8530 DRIVER FOR AX.25
11776 M:      Joerg Reuter <jreuter@yaina.de>
11777 W:      http://yaina.de/jreuter/
11778 W:      http://www.qsl.net/dl1bke/
11779 L:      linux-hams@vger.kernel.org
11780 S:      Maintained
11781 F:      Documentation/networking/z8530drv.txt
11782 F:      drivers/net/hamradio/*scc.c
11783 F:      drivers/net/hamradio/z8530.h
11784
11785 ZBUD COMPRESSED PAGE ALLOCATOR
11786 M:      Seth Jennings <sjennings@variantweb.net>
11787 L:      linux-mm@kvack.org
11788 S:      Maintained
11789 F:      mm/zbud.c
11790 F:      include/linux/zbud.h
11791
11792 ZD1211RW WIRELESS DRIVER
11793 M:      Daniel Drake <dsd@gentoo.org>
11794 M:      Ulrich Kunitz <kune@deine-taler.de>
11795 W:      http://zd1211.ath.cx/wiki/DriverRewrite
11796 L:      linux-wireless@vger.kernel.org
11797 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
11798 S:      Maintained
11799 F:      drivers/net/wireless/zd1211rw/
11800
11801 ZPOOL COMPRESSED PAGE STORAGE API
11802 M:      Dan Streetman <ddstreet@ieee.org>
11803 L:      linux-mm@kvack.org
11804 S:      Maintained
11805 F:      mm/zpool.c
11806 F:      include/linux/zpool.h
11807
11808 ZR36067 VIDEO FOR LINUX DRIVER
11809 L:      mjpeg-users@lists.sourceforge.net
11810 L:      linux-media@vger.kernel.org
11811 W:      http://mjpeg.sourceforge.net/driver-zoran/
11812 T:      hg http://linuxtv.org/hg/v4l-dvb
11813 S:      Odd Fixes
11814 F:      drivers/media/pci/zoran/
11815
11816 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
11817 M:      Minchan Kim <minchan@kernel.org>
11818 M:      Nitin Gupta <ngupta@vflare.org>
11819 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
11820 L:      linux-kernel@vger.kernel.org
11821 S:      Maintained
11822 F:      drivers/block/zram/
11823 F:      Documentation/blockdev/zram.txt
11824
11825 ZS DECSTATION Z85C30 SERIAL DRIVER
11826 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
11827 S:      Maintained
11828 F:      drivers/tty/serial/zs.*
11829
11830 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
11831 M:      Minchan Kim <minchan@kernel.org>
11832 M:      Nitin Gupta <ngupta@vflare.org>
11833 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
11834 L:      linux-mm@kvack.org
11835 S:      Maintained
11836 F:      mm/zsmalloc.c
11837 F:      include/linux/zsmalloc.h
11838 F:      Documentation/vm/zsmalloc.txt
11839
11840 ZSWAP COMPRESSED SWAP CACHING
11841 M:      Seth Jennings <sjennings@variantweb.net>
11842 L:      linux-mm@kvack.org
11843 S:      Maintained
11844 F:      mm/zswap.c
11845
11846 THE REST
11847 M:      Linus Torvalds <torvalds@linux-foundation.org>
11848 L:      linux-kernel@vger.kernel.org
11849 Q:      http://patchwork.kernel.org/project/LKML/list/
11850 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
11851 S:      Buried alive in reporters
11852 F:      *
11853 F:      */