]> git.karo-electronics.de Git - karo-tx-linux.git/blob - MAINTAINERS
Merge remote-tracking branch 'target-updates/for-next'
[karo-tx-linux.git] / MAINTAINERS
1
2
3         List of maintainers and how to submit kernel changes
4
5 Please try to follow the guidelines below.  This will make things
6 easier on the maintainers.  Not all of these guidelines matter for every
7 trivial patch so apply some common sense.
8
9 1.      Always _test_ your changes, however small, on at least 4 or
10         5 people, preferably many more.
11
12 2.      Try to release a few ALPHA test versions to the net. Announce
13         them onto the kernel channel and await results. This is especially
14         important for device drivers, because often that's the only way
15         you will find things like the fact version 3 firmware needs
16         a magic fix you didn't know about, or some clown changed the
17         chips on a board and not its name.  (Don't laugh!  Look at the
18         SMC etherpower for that.)
19
20 3.      Make sure your changes compile correctly in multiple
21         configurations. In particular check that changes work both as a
22         module and built into the kernel.
23
24 4.      When you are happy with a change make it generally available for
25         testing and await feedback.
26
27 5.      Make a patch available to the relevant maintainer in the list. Use
28         'diff -u' to make the patch easy to merge. Be prepared to get your
29         changes sent back with seemingly silly requests about formatting
30         and variable names.  These aren't as silly as they seem. One
31         job the maintainers (and especially Linus) do is to keep things
32         looking the same. Sometimes this means that the clever hack in
33         your driver to get around a problem actually needs to become a
34         generalized kernel feature ready for next time.
35
36         PLEASE check your patch with the automated style checker
37         (scripts/checkpatch.pl) to catch trivial style violations.
38         See Documentation/CodingStyle for guidance here.
39
40         PLEASE CC: the maintainers and mailing lists that are generated
41         by scripts/get_maintainer.pl.  The results returned by the
42         script will be best if you have git installed and are making
43         your changes in a branch derived from Linus' latest git tree.
44         See Documentation/SubmittingPatches for details.
45
46         PLEASE try to include any credit lines you want added with the
47         patch. It avoids people being missed off by mistake and makes
48         it easier to know who wants adding and who doesn't.
49
50         PLEASE document known bugs. If it doesn't work for everything
51         or does something very odd once a month document it.
52
53         PLEASE remember that submissions must be made under the terms
54         of the Linux Foundation certificate of contribution and should
55         include a Signed-off-by: line.  The current version of this
56         "Developer's Certificate of Origin" (DCO) is listed in the file
57         Documentation/SubmittingPatches.
58
59 6.      Make sure you have the right to send any changes you make. If you
60         do changes at work you may find your employer owns the patch
61         not you.
62
63 7.      When sending security related changes or reports to a maintainer
64         please Cc: security@kernel.org, especially if the maintainer
65         does not respond.
66
67 8.      Happy hacking.
68
69 Descriptions of section entries:
70
71         P: Person (obsolete)
72         M: Mail patches to: FullName <address@domain>
73         R: Designated reviewer: FullName <address@domain>
74            These reviewers should be CCed on patches.
75         L: Mailing list that is relevant to this area
76         W: Web-page with status/info
77         Q: Patchwork web based patch tracking system site
78         T: SCM tree type and location.
79            Type is one of: git, hg, quilt, stgit, topgit
80         S: Status, one of the following:
81            Supported:   Someone is actually paid to look after this.
82            Maintained:  Someone actually looks after it.
83            Odd Fixes:   It has a maintainer but they don't have time to do
84                         much other than throw the odd patch in. See below..
85            Orphan:      No current maintainer [but maybe you could take the
86                         role as you write your new code].
87            Obsolete:    Old code. Something tagged obsolete generally means
88                         it has been replaced by a better system and you
89                         should be using that.
90         F: Files and directories with wildcard patterns.
91            A trailing slash includes all files and subdirectory files.
92            F:   drivers/net/    all files in and below drivers/net
93            F:   drivers/net/*   all files in drivers/net, but not below
94            F:   */net/*         all files in "any top level directory"/net
95            One pattern per line.  Multiple F: lines acceptable.
96         N: Files and directories with regex patterns.
97            N:   [^a-z]tegra     all files whose path contains the word tegra
98            One pattern per line.  Multiple N: lines acceptable.
99            scripts/get_maintainer.pl has different behavior for files that
100            match F: pattern and matches of N: patterns.  By default,
101            get_maintainer will not look at git log history when an F: pattern
102            match occurs.  When an N: match occurs, git log history is used
103            to also notify the people that have git commit signatures.
104         X: Files and directories that are NOT maintained, same rules as F:
105            Files exclusions are tested before file matches.
106            Can be useful for excluding a specific subdirectory, for instance:
107            F:   net/
108            X:   net/ipv6/
109            matches all files in and below net excluding net/ipv6/
110         K: Keyword perl extended regex pattern to match content in a
111            patch or file.  For instance:
112            K: of_get_profile
113               matches patches or files that contain "of_get_profile"
114            K: \b(printk|pr_(info|err))\b
115               matches patches or files that contain one or more of the words
116               printk, pr_info or pr_err
117            One regex pattern per line.  Multiple K: lines acceptable.
118
119 Note: For the hard of thinking, this list is meant to remain in alphabetical
120 order. If you could add yourselves to it in alphabetical order that would be
121 so much easier [Ed]
122
123 Maintainers List (try to look for most precise areas first)
124
125                 -----------------------------------
126
127 3C59X NETWORK DRIVER
128 M:      Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
129 L:      netdev@vger.kernel.org
130 S:      Maintained
131 F:      Documentation/networking/vortex.txt
132 F:      drivers/net/ethernet/3com/3c59x.c
133
134 3CR990 NETWORK DRIVER
135 M:      David Dillow <dave@thedillows.org>
136 L:      netdev@vger.kernel.org
137 S:      Maintained
138 F:      drivers/net/ethernet/3com/typhoon*
139
140 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
141 M:      Adam Radford <linuxraid@lsi.com>
142 L:      linux-scsi@vger.kernel.org
143 W:      http://www.lsi.com
144 S:      Supported
145 F:      drivers/scsi/3w-*
146
147 53C700 AND 53C700-66 SCSI DRIVER
148 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
149 L:      linux-scsi@vger.kernel.org
150 S:      Maintained
151 F:      drivers/scsi/53c700*
152
153 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
154 M:      Alexander Aring <alex.aring@gmail.com>
155 M:      Jukka Rissanen <jukka.rissanen@linux.intel.com>
156 L:      linux-bluetooth@vger.kernel.org
157 L:      linux-wpan@vger.kernel.org
158 S:      Maintained
159 F:      net/6lowpan/
160 F:      include/net/6lowpan.h
161 F:      Documentation/networking/6lowpan.txt
162
163 6PACK NETWORK DRIVER FOR AX.25
164 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
165 L:      linux-hams@vger.kernel.org
166 S:      Maintained
167 F:      drivers/net/hamradio/6pack.c
168
169 8169 10/100/1000 GIGABIT ETHERNET DRIVER
170 M:      Realtek linux nic maintainers <nic_swsd@realtek.com>
171 L:      netdev@vger.kernel.org
172 S:      Maintained
173 F:      drivers/net/ethernet/realtek/r8169.c
174
175 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
176 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
177 L:      linux-serial@vger.kernel.org
178 W:      http://serial.sourceforge.net
179 S:      Maintained
180 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
181 F:      drivers/tty/serial/8250*
182 F:      include/linux/serial_8250.h
183
184 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
185 L:      netdev@vger.kernel.org
186 S:      Orphan / Obsolete
187 F:      drivers/net/ethernet/8390/
188
189 9P FILE SYSTEM
190 M:      Eric Van Hensbergen <ericvh@gmail.com>
191 M:      Ron Minnich <rminnich@sandia.gov>
192 M:      Latchesar Ionkov <lucho@ionkov.net>
193 L:      v9fs-developer@lists.sourceforge.net
194 W:      http://swik.net/v9fs
195 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
196 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
197 S:      Maintained
198 F:      Documentation/filesystems/9p.txt
199 F:      fs/9p/
200 F:      net/9p/
201 F:      include/net/9p/
202 F:      include/uapi/linux/virtio_9p.h
203 F:      include/trace/events/9p.h
204
205
206 A8293 MEDIA DRIVER
207 M:      Antti Palosaari <crope@iki.fi>
208 L:      linux-media@vger.kernel.org
209 W:      http://linuxtv.org/
210 W:      http://palosaari.fi/linux/
211 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
212 T:      git git://linuxtv.org/anttip/media_tree.git
213 S:      Maintained
214 F:      drivers/media/dvb-frontends/a8293*
215
216 AACRAID SCSI RAID DRIVER
217 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
218 L:      linux-scsi@vger.kernel.org
219 W:      http://www.adaptec.com/
220 S:      Supported
221 F:      Documentation/scsi/aacraid.txt
222 F:      drivers/scsi/aacraid/
223
224 ABI/API
225 L:      linux-api@vger.kernel.org
226 F:      Documentation/ABI/
227 F:      include/linux/syscalls.h
228 F:      include/uapi/
229 F:      kernel/sys_ni.c
230
231 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
232 M:      Hans de Goede <hdegoede@redhat.com>
233 L:      lm-sensors@lm-sensors.org
234 S:      Maintained
235 F:      drivers/hwmon/abituguru.c
236
237 ABIT UGURU 3 HARDWARE MONITOR DRIVER
238 M:      Alistair John Strachan <alistair@devzero.co.uk>
239 L:      lm-sensors@lm-sensors.org
240 S:      Maintained
241 F:      drivers/hwmon/abituguru3.c
242
243 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 FPGA MANAGER FRAMEWORK
4384 M:      Alan Tull <atull@opensource.altera.com>
4385 S:      Maintained
4386 F:      drivers/fpga/
4387 F:      include/linux/fpga/fpga-mgr.h
4388 W:      http://www.rocketboards.org
4389
4390 FPU EMULATOR
4391 M:      Bill Metzenthen <billm@melbpc.org.au>
4392 W:      http://floatingpoint.sourceforge.net/emulator/index.html
4393 S:      Maintained
4394 F:      arch/x86/math-emu/
4395
4396 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
4397 L:      netdev@vger.kernel.org
4398 S:      Orphan
4399 F:      drivers/net/wan/dlci.c
4400 F:      drivers/net/wan/sdla.c
4401
4402 FRAMEBUFFER LAYER
4403 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
4404 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
4405 L:      linux-fbdev@vger.kernel.org
4406 W:      http://linux-fbdev.sourceforge.net/
4407 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
4408 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git
4409 S:      Maintained
4410 F:      Documentation/fb/
4411 F:      Documentation/devicetree/bindings/fb/
4412 F:      drivers/video/
4413 F:      include/video/
4414 F:      include/linux/fb.h
4415 F:      include/uapi/video/
4416 F:      include/uapi/linux/fb.h
4417
4418 FREESCALE DIU FRAMEBUFFER DRIVER
4419 M:      Timur Tabi <timur@tabi.org>
4420 L:      linux-fbdev@vger.kernel.org
4421 S:      Maintained
4422 F:      drivers/video/fbdev/fsl-diu-fb.*
4423
4424 FREESCALE DMA DRIVER
4425 M:      Li Yang <leoli@freescale.com>
4426 M:      Zhang Wei <zw@zh-kernel.org>
4427 L:      linuxppc-dev@lists.ozlabs.org
4428 S:      Maintained
4429 F:      drivers/dma/fsldma.*
4430
4431 FREESCALE I2C CPM DRIVER
4432 M:      Jochen Friedrich <jochen@scram.de>
4433 L:      linuxppc-dev@lists.ozlabs.org
4434 L:      linux-i2c@vger.kernel.org
4435 S:      Maintained
4436 F:      drivers/i2c/busses/i2c-cpm.c
4437
4438 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
4439 M:      Sascha Hauer <kernel@pengutronix.de>
4440 L:      linux-fbdev@vger.kernel.org
4441 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4442 S:      Maintained
4443 F:      include/linux/platform_data/video-imxfb.h
4444 F:      drivers/video/fbdev/imxfb.c
4445
4446 FREESCALE QUAD SPI DRIVER
4447 M:      Han Xu <han.xu@freescale.com>
4448 L:      linux-mtd@lists.infradead.org
4449 S:      Maintained
4450 F:      drivers/mtd/spi-nor/fsl-quadspi.c
4451
4452 FREESCALE SOC FS_ENET DRIVER
4453 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
4454 M:      Vitaly Bordug <vbordug@ru.mvista.com>
4455 L:      linuxppc-dev@lists.ozlabs.org
4456 L:      netdev@vger.kernel.org
4457 S:      Maintained
4458 F:      drivers/net/ethernet/freescale/fs_enet/
4459 F:      include/linux/fs_enet_pd.h
4460
4461 FREESCALE QUICC ENGINE LIBRARY
4462 L:      linuxppc-dev@lists.ozlabs.org
4463 S:      Orphan
4464 F:      arch/powerpc/sysdev/qe_lib/
4465 F:      arch/powerpc/include/asm/*qe.h
4466
4467 FREESCALE USB PERIPHERAL DRIVERS
4468 M:      Li Yang <leoli@freescale.com>
4469 L:      linux-usb@vger.kernel.org
4470 L:      linuxppc-dev@lists.ozlabs.org
4471 S:      Maintained
4472 F:      drivers/usb/gadget/udc/fsl*
4473
4474 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
4475 M:      Li Yang <leoli@freescale.com>
4476 L:      netdev@vger.kernel.org
4477 L:      linuxppc-dev@lists.ozlabs.org
4478 S:      Maintained
4479 F:      drivers/net/ethernet/freescale/ucc_geth*
4480
4481 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
4482 M:      Claudiu Manoil <claudiu.manoil@freescale.com>
4483 L:      netdev@vger.kernel.org
4484 S:      Maintained
4485 F:      drivers/net/ethernet/freescale/gianfar*
4486 X:      drivers/net/ethernet/freescale/gianfar_ptp.c
4487 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
4488
4489 FREESCALE QUICC ENGINE UCC UART DRIVER
4490 M:      Timur Tabi <timur@tabi.org>
4491 L:      linuxppc-dev@lists.ozlabs.org
4492 S:      Maintained
4493 F:      drivers/tty/serial/ucc_uart.c
4494
4495 FREESCALE SOC SOUND DRIVERS
4496 M:      Timur Tabi <timur@tabi.org>
4497 M:      Nicolin Chen <nicoleotsuka@gmail.com>
4498 M:      Xiubo Li <Xiubo.Lee@gmail.com>
4499 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4500 L:      linuxppc-dev@lists.ozlabs.org
4501 S:      Maintained
4502 F:      sound/soc/fsl/fsl*
4503 F:      sound/soc/fsl/imx*
4504 F:      sound/soc/fsl/mpc8610_hpcd.c
4505
4506 FREESCALE QORIQ MANAGEMENT COMPLEX DRIVER
4507 M:      "J. German Rivera" <German.Rivera@freescale.com>
4508 L:      linux-kernel@vger.kernel.org
4509 S:      Maintained
4510 F:      drivers/staging/fsl-mc/
4511
4512 FREEVXFS FILESYSTEM
4513 M:      Christoph Hellwig <hch@infradead.org>
4514 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
4515 S:      Maintained
4516 F:      fs/freevxfs/
4517
4518 FREEZER
4519 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4520 M:      Pavel Machek <pavel@ucw.cz>
4521 L:      linux-pm@vger.kernel.org
4522 S:      Supported
4523 F:      Documentation/power/freezing-of-tasks.txt
4524 F:      include/linux/freezer.h
4525 F:      kernel/freezer.c
4526
4527 FRONTSWAP API
4528 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4529 L:      linux-kernel@vger.kernel.org
4530 S:      Maintained
4531 F:      mm/frontswap.c
4532 F:      include/linux/frontswap.h
4533
4534 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
4535 M:      David Howells <dhowells@redhat.com>
4536 L:      linux-cachefs@redhat.com
4537 S:      Supported
4538 F:      Documentation/filesystems/caching/
4539 F:      fs/fscache/
4540 F:      include/linux/fscache*.h
4541
4542 F2FS FILE SYSTEM
4543 M:      Jaegeuk Kim <jaegeuk@kernel.org>
4544 M:      Changman Lee <cm224.lee@samsung.com>
4545 R:      Chao Yu <chao2.yu@samsung.com>
4546 L:      linux-f2fs-devel@lists.sourceforge.net
4547 W:      http://en.wikipedia.org/wiki/F2FS
4548 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
4549 S:      Maintained
4550 F:      Documentation/filesystems/f2fs.txt
4551 F:      Documentation/ABI/testing/sysfs-fs-f2fs
4552 F:      fs/f2fs/
4553 F:      include/linux/f2fs_fs.h
4554 F:      include/trace/events/f2fs.h
4555
4556 FUJITSU FR-V (FRV) PORT
4557 M:      David Howells <dhowells@redhat.com>
4558 S:      Maintained
4559 F:      arch/frv/
4560
4561 FUJITSU LAPTOP EXTRAS
4562 M:      Jonathan Woithe <jwoithe@just42.net>
4563 L:      platform-driver-x86@vger.kernel.org
4564 S:      Maintained
4565 F:      drivers/platform/x86/fujitsu-laptop.c
4566
4567 FUJITSU M-5MO LS CAMERA ISP DRIVER
4568 M:      Kyungmin Park <kyungmin.park@samsung.com>
4569 M:      Heungjun Kim <riverful.kim@samsung.com>
4570 L:      linux-media@vger.kernel.org
4571 S:      Maintained
4572 F:      drivers/media/i2c/m5mols/
4573 F:      include/media/m5mols.h
4574
4575 FUJITSU TABLET EXTRAS
4576 M:      Robert Gerlach <khnz@gmx.de>
4577 L:      platform-driver-x86@vger.kernel.org
4578 S:      Maintained
4579 F:      drivers/platform/x86/fujitsu-tablet.c
4580
4581 FUSE: FILESYSTEM IN USERSPACE
4582 M:      Miklos Szeredi <miklos@szeredi.hu>
4583 L:      fuse-devel@lists.sourceforge.net
4584 W:      http://fuse.sourceforge.net/
4585 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
4586 S:      Maintained
4587 F:      fs/fuse/
4588 F:      include/uapi/linux/fuse.h
4589 F:      Documentation/filesystems/fuse.txt
4590
4591 FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
4592 M:      Rik Faith <faith@cs.unc.edu>
4593 L:      linux-scsi@vger.kernel.org
4594 S:      Odd Fixes (e.g., new signatures)
4595 F:      drivers/scsi/fdomain.*
4596
4597 GCOV BASED KERNEL PROFILING
4598 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
4599 S:      Maintained
4600 F:      kernel/gcov/
4601 F:      Documentation/gcov.txt
4602
4603 GDT SCSI DISK ARRAY CONTROLLER DRIVER
4604 M:      Achim Leubner <achim_leubner@adaptec.com>
4605 L:      linux-scsi@vger.kernel.org
4606 W:      http://www.icp-vortex.com/
4607 S:      Supported
4608 F:      drivers/scsi/gdt*
4609
4610 GDB KERNEL DEBUGGING HELPER SCRIPTS
4611 M:      Jan Kiszka <jan.kiszka@siemens.com>
4612 S:      Supported
4613 F:      scripts/gdb/
4614
4615 GEMTEK FM RADIO RECEIVER DRIVER
4616 M:      Hans Verkuil <hverkuil@xs4all.nl>
4617 L:      linux-media@vger.kernel.org
4618 T:      git git://linuxtv.org/media_tree.git
4619 W:      http://linuxtv.org
4620 S:      Maintained
4621 F:      drivers/media/radio/radio-gemtek*
4622
4623 GENERIC GPIO I2C DRIVER
4624 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
4625 S:      Supported
4626 F:      drivers/i2c/busses/i2c-gpio.c
4627 F:      include/linux/i2c-gpio.h
4628
4629 GENERIC GPIO I2C MULTIPLEXER DRIVER
4630 M:      Peter Korsgaard <peter.korsgaard@barco.com>
4631 L:      linux-i2c@vger.kernel.org
4632 S:      Supported
4633 F:      drivers/i2c/muxes/i2c-mux-gpio.c
4634 F:      include/linux/i2c-mux-gpio.h
4635 F:      Documentation/i2c/muxes/i2c-mux-gpio
4636
4637 GENERIC HDLC (WAN) DRIVERS
4638 M:      Krzysztof Halasa <khc@pm.waw.pl>
4639 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
4640 S:      Maintained
4641 F:      drivers/net/wan/c101.c
4642 F:      drivers/net/wan/hd6457*
4643 F:      drivers/net/wan/hdlc*
4644 F:      drivers/net/wan/n2.c
4645 F:      drivers/net/wan/pc300too.c
4646 F:      drivers/net/wan/pci200syn.c
4647 F:      drivers/net/wan/wanxl*
4648
4649 GENERIC INCLUDE/ASM HEADER FILES
4650 M:      Arnd Bergmann <arnd@arndb.de>
4651 L:      linux-arch@vger.kernel.org
4652 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
4653 S:      Maintained
4654 F:      include/asm-generic/
4655 F:      include/uapi/asm-generic/
4656
4657 GENERIC PHY FRAMEWORK
4658 M:      Kishon Vijay Abraham I <kishon@ti.com>
4659 L:      linux-kernel@vger.kernel.org
4660 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
4661 S:      Supported
4662 F:      drivers/phy/
4663 F:      include/linux/phy/
4664
4665 GENERIC PM DOMAINS
4666 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4667 M:      Kevin Hilman <khilman@kernel.org>
4668 M:      Ulf Hansson <ulf.hansson@linaro.org>
4669 L:      linux-pm@vger.kernel.org
4670 S:      Supported
4671 F:      drivers/base/power/domain*.c
4672 F:      include/linux/pm_domain.h
4673
4674 GENERIC UIO DRIVER FOR PCI DEVICES
4675 M:      "Michael S. Tsirkin" <mst@redhat.com>
4676 L:      kvm@vger.kernel.org
4677 S:      Supported
4678 F:      drivers/uio/uio_pci_generic.c
4679
4680 GET_MAINTAINER SCRIPT
4681 M:      Joe Perches <joe@perches.com>
4682 S:      Maintained
4683 F:      scripts/get_maintainer.pl
4684
4685 GFS2 FILE SYSTEM
4686 M:      Steven Whitehouse <swhiteho@redhat.com>
4687 M:      Bob Peterson <rpeterso@redhat.com>
4688 L:      cluster-devel@redhat.com
4689 W:      http://sources.redhat.com/cluster/
4690 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
4691 S:      Supported
4692 F:      Documentation/filesystems/gfs2*.txt
4693 F:      fs/gfs2/
4694 F:      include/uapi/linux/gfs2_ondisk.h
4695
4696 GIGASET ISDN DRIVERS
4697 M:      Paul Bolle <pebolle@tiscali.nl>
4698 L:      gigaset307x-common@lists.sourceforge.net
4699 W:      http://gigaset307x.sourceforge.net/
4700 S:      Odd Fixes
4701 F:      Documentation/isdn/README.gigaset
4702 F:      drivers/isdn/gigaset/
4703 F:      include/uapi/linux/gigaset_dev.h
4704
4705 GO7007 MPEG CODEC
4706 M:      Hans Verkuil <hans.verkuil@cisco.com>
4707 L:      linux-media@vger.kernel.org
4708 S:      Maintained
4709 F:      drivers/media/usb/go7007/
4710
4711 GOODIX TOUCHSCREEN
4712 M:      Bastien Nocera <hadess@hadess.net>
4713 L:      linux-input@vger.kernel.org
4714 S:      Maintained
4715 F:      drivers/input/touchscreen/goodix.c
4716
4717 GPIO SUBSYSTEM
4718 M:      Linus Walleij <linus.walleij@linaro.org>
4719 M:      Alexandre Courbot <gnurou@gmail.com>
4720 L:      linux-gpio@vger.kernel.org
4721 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
4722 S:      Maintained
4723 F:      Documentation/gpio/
4724 F:      drivers/gpio/
4725 F:      include/linux/gpio/
4726 F:      include/linux/gpio.h
4727 F:      include/asm-generic/gpio.h
4728
4729 GRE DEMULTIPLEXER DRIVER
4730 M:      Dmitry Kozlov <xeb@mail.ru>
4731 L:      netdev@vger.kernel.org
4732 S:      Maintained
4733 F:      net/ipv4/gre_demux.c
4734 F:      net/ipv4/gre_offload.c
4735 F:      include/net/gre.h
4736
4737 GRETH 10/100/1G Ethernet MAC device driver
4738 M:      Kristoffer Glembo <kristoffer@gaisler.com>
4739 L:      netdev@vger.kernel.org
4740 S:      Maintained
4741 F:      drivers/net/ethernet/aeroflex/
4742
4743 GSPCA FINEPIX SUBDRIVER
4744 M:      Frank Zago <frank@zago.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/finepix.c
4749
4750 GSPCA GL860 SUBDRIVER
4751 M:      Olivier Lorin <o.lorin@laposte.net>
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/gl860/
4756
4757 GSPCA M5602 SUBDRIVER
4758 M:      Erik Andren <erik.andren@gmail.com>
4759 L:      linux-media@vger.kernel.org
4760 T:      git git://linuxtv.org/media_tree.git
4761 S:      Maintained
4762 F:      drivers/media/usb/gspca/m5602/
4763
4764 GSPCA PAC207 SONIXB SUBDRIVER
4765 M:      Hans de Goede <hdegoede@redhat.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/pac207.c
4770
4771 GSPCA SN9C20X SUBDRIVER
4772 M:      Brian Johnson <brijohn@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/sn9c20x.c
4777
4778 GSPCA T613 SUBDRIVER
4779 M:      Leandro Costantino <lcostantino@gmail.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/t613.c
4784
4785 GSPCA USB WEBCAM DRIVER
4786 M:      Hans de Goede <hdegoede@redhat.com>
4787 L:      linux-media@vger.kernel.org
4788 T:      git git://linuxtv.org/media_tree.git
4789 S:      Maintained
4790 F:      drivers/media/usb/gspca/
4791
4792 GUID PARTITION TABLE (GPT)
4793 M:      Davidlohr Bueso <dave@stgolabs.net>
4794 L:      linux-efi@vger.kernel.org
4795 S:      Maintained
4796 F:      block/partitions/efi.*
4797
4798 STK1160 USB VIDEO CAPTURE DRIVER
4799 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
4800 L:      linux-media@vger.kernel.org
4801 T:      git git://linuxtv.org/media_tree.git
4802 S:      Maintained
4803 F:      drivers/media/usb/stk1160/
4804
4805 H8/300 ARCHITECTURE
4806 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
4807 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
4808 W:      http://uclinux-h8.sourceforge.jp
4809 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
4810 S:      Maintained
4811 F:      arch/h8300/
4812 F:      drivers/clocksource/h8300_*.c
4813 F:      drivers/clk/h8300/
4814 F:      drivers/irqchip/irq-renesas-h8*.c
4815
4816 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
4817 M:      Frank Seidel <frank@f-seidel.de>
4818 L:      platform-driver-x86@vger.kernel.org
4819 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
4820 S:      Maintained
4821 F:      drivers/platform/x86/hdaps.c
4822
4823 HDPVR USB VIDEO ENCODER DRIVER
4824 M:      Hans Verkuil <hverkuil@xs4all.nl>
4825 L:      linux-media@vger.kernel.org
4826 T:      git git://linuxtv.org/media_tree.git
4827 W:      http://linuxtv.org
4828 S:      Odd Fixes
4829 F:      drivers/media/usb/hdpvr/
4830
4831 HWPOISON MEMORY FAILURE HANDLING
4832 M:      Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
4833 L:      linux-mm@kvack.org
4834 S:      Maintained
4835 F:      mm/memory-failure.c
4836 F:      mm/hwpoison-inject.c
4837
4838 HYPERVISOR VIRTUAL CONSOLE DRIVER
4839 L:      linuxppc-dev@lists.ozlabs.org
4840 S:      Odd Fixes
4841 F:      drivers/tty/hvc/
4842
4843 HACKRF MEDIA DRIVER
4844 M:      Antti Palosaari <crope@iki.fi>
4845 L:      linux-media@vger.kernel.org
4846 W:      http://linuxtv.org/
4847 W:      http://palosaari.fi/linux/
4848 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4849 T:      git git://linuxtv.org/anttip/media_tree.git
4850 S:      Maintained
4851 F:      drivers/media/usb/hackrf/
4852
4853 HARDWARE MONITORING
4854 M:      Jean Delvare <jdelvare@suse.com>
4855 M:      Guenter Roeck <linux@roeck-us.net>
4856 L:      lm-sensors@lm-sensors.org
4857 W:      http://www.lm-sensors.org/
4858 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/
4859 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
4860 S:      Maintained
4861 F:      Documentation/hwmon/
4862 F:      drivers/hwmon/
4863 F:      include/linux/hwmon*.h
4864
4865 HARDWARE RANDOM NUMBER GENERATOR CORE
4866 M:      Matt Mackall <mpm@selenic.com>
4867 M:      Herbert Xu <herbert@gondor.apana.org.au>
4868 L:      linux-crypto@vger.kernel.org
4869 S:      Odd fixes
4870 F:      Documentation/hw_random.txt
4871 F:      drivers/char/hw_random/
4872 F:      include/linux/hw_random.h
4873
4874 HARDWARE SPINLOCK CORE
4875 M:      Ohad Ben-Cohen <ohad@wizery.com>
4876 S:      Maintained
4877 F:      Documentation/hwspinlock.txt
4878 F:      drivers/hwspinlock/hwspinlock_*
4879 F:      include/linux/hwspinlock.h
4880
4881 HARMONY SOUND DRIVER
4882 L:      linux-parisc@vger.kernel.org
4883 S:      Maintained
4884 F:      sound/parisc/harmony.*
4885
4886 HD29L2 MEDIA DRIVER
4887 M:      Antti Palosaari <crope@iki.fi>
4888 L:      linux-media@vger.kernel.org
4889 W:      http://linuxtv.org/
4890 W:      http://palosaari.fi/linux/
4891 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4892 T:      git git://linuxtv.org/anttip/media_tree.git
4893 S:      Maintained
4894 F:      drivers/media/dvb-frontends/hd29l2*
4895
4896 HEWLETT-PACKARD SMART2 RAID DRIVER
4897 L:      iss_storagedev@hp.com
4898 S:      Orphan
4899 F:      Documentation/blockdev/cpqarray.txt
4900 F:      drivers/block/cpqarray.*
4901
4902 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
4903 M:      Don Brace <don.brace@pmcs.com>
4904 L:      iss_storagedev@hp.com
4905 L:      storagedev@pmcs.com
4906 L:      linux-scsi@vger.kernel.org
4907 S:      Supported
4908 F:      Documentation/scsi/hpsa.txt
4909 F:      drivers/scsi/hpsa*.[ch]
4910 F:      include/linux/cciss*.h
4911 F:      include/uapi/linux/cciss*.h
4912
4913 HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
4914 M:      Don Brace <don.brace@pmcs.com>
4915 L:      iss_storagedev@hp.com
4916 L:      storagedev@pmcs.com
4917 L:      linux-scsi@vger.kernel.org
4918 S:      Supported
4919 F:      Documentation/blockdev/cciss.txt
4920 F:      drivers/block/cciss*
4921 F:      include/linux/cciss_ioctl.h
4922 F:      include/uapi/linux/cciss_ioctl.h
4923
4924 HFS FILESYSTEM
4925 L:      linux-fsdevel@vger.kernel.org
4926 S:      Orphan
4927 F:      Documentation/filesystems/hfs.txt
4928 F:      fs/hfs/
4929
4930 HFSPLUS FILESYSTEM
4931 L:      linux-fsdevel@vger.kernel.org
4932 S:      Orphan
4933 F:      Documentation/filesystems/hfsplus.txt
4934 F:      fs/hfsplus/
4935
4936 HGA FRAMEBUFFER DRIVER
4937 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
4938 L:      linux-nvidia@lists.surfsouth.com
4939 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
4940 S:      Maintained
4941 F:      drivers/video/fbdev/hgafb.c
4942
4943 HIBERNATION (aka Software Suspend, aka swsusp)
4944 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4945 M:      Pavel Machek <pavel@ucw.cz>
4946 L:      linux-pm@vger.kernel.org
4947 S:      Supported
4948 F:      arch/x86/power/
4949 F:      drivers/base/power/
4950 F:      kernel/power/
4951 F:      include/linux/suspend.h
4952 F:      include/linux/freezer.h
4953 F:      include/linux/pm.h
4954 F:      arch/*/include/asm/suspend*.h
4955
4956 HID CORE LAYER
4957 M:      Jiri Kosina <jikos@kernel.org>
4958 L:      linux-input@vger.kernel.org
4959 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
4960 S:      Maintained
4961 F:      drivers/hid/
4962 F:      include/linux/hid*
4963 F:      include/uapi/linux/hid*
4964
4965 HID SENSOR HUB DRIVERS
4966 M:      Jiri Kosina <jikos@kernel.org>
4967 M:      Jonathan Cameron <jic23@kernel.org>
4968 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
4969 L:      linux-input@vger.kernel.org
4970 L:      linux-iio@vger.kernel.org
4971 S:      Maintained
4972 F:      Documentation/hid/hid-sensor*
4973 F:      drivers/hid/hid-sensor-*
4974 F:      drivers/iio/*/hid-*
4975 F:      include/linux/hid-sensor-*
4976
4977 HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
4978 M:      Thomas Gleixner <tglx@linutronix.de>
4979 L:      linux-kernel@vger.kernel.org
4980 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4981 S:      Maintained
4982 F:      Documentation/timers/
4983 F:      kernel/time/hrtimer.c
4984 F:      kernel/time/clockevents.c
4985 F:      kernel/time/tick*.*
4986 F:      kernel/time/timer_*.c
4987 F:      include/linux/clockchips.h
4988 F:      include/linux/hrtimer.h
4989
4990 HIGH-SPEED SCC DRIVER FOR AX.25
4991 L:      linux-hams@vger.kernel.org
4992 S:      Orphan
4993 F:      drivers/net/hamradio/dmascc.c
4994 F:      drivers/net/hamradio/scc.c
4995
4996 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
4997 M:      HighPoint Linux Team <linux@highpoint-tech.com>
4998 W:      http://www.highpoint-tech.com
4999 S:      Supported
5000 F:      Documentation/scsi/hptiop.txt
5001 F:      drivers/scsi/hptiop.c
5002
5003 HIPPI
5004 M:      Jes Sorensen <jes@trained-monkey.org>
5005 L:      linux-hippi@sunsite.dk
5006 S:      Maintained
5007 F:      include/linux/hippidevice.h
5008 F:      include/uapi/linux/if_hippi.h
5009 F:      net/802/hippi.c
5010 F:      drivers/net/hippi/
5011
5012 HOST AP DRIVER
5013 M:      Jouni Malinen <j@w1.fi>
5014 L:      hostap@shmoo.com (subscribers-only)
5015 L:      linux-wireless@vger.kernel.org
5016 W:      http://hostap.epitest.fi/
5017 S:      Maintained
5018 F:      drivers/net/wireless/hostap/
5019
5020 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
5021 L:      platform-driver-x86@vger.kernel.org
5022 S:      Orphan
5023 F:      drivers/platform/x86/tc1100-wmi.c
5024
5025 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
5026 M:      Jaroslav Kysela <perex@perex.cz>
5027 S:      Maintained
5028 F:      drivers/net/ethernet/hp/hp100.*
5029
5030 HPET:   High Precision Event Timers driver
5031 M:      Clemens Ladisch <clemens@ladisch.de>
5032 S:      Maintained
5033 F:      Documentation/timers/hpet.txt
5034 F:      drivers/char/hpet.c
5035 F:      include/linux/hpet.h
5036 F:      include/uapi/linux/hpet.h
5037
5038 HPET:   x86
5039 S:      Orphan
5040 F:      arch/x86/kernel/hpet.c
5041 F:      arch/x86/include/asm/hpet.h
5042
5043 HPFS FILESYSTEM
5044 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
5045 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
5046 S:      Maintained
5047 F:      fs/hpfs/
5048
5049 HSI SUBSYSTEM
5050 M:      Sebastian Reichel <sre@kernel.org>
5051 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
5052 S:      Maintained
5053 F:      Documentation/ABI/testing/sysfs-bus-hsi
5054 F:      Documentation/hsi.txt
5055 F:      drivers/hsi/
5056 F:      include/linux/hsi/
5057 F:      include/uapi/linux/hsi/
5058
5059 HSO 3G MODEM DRIVER
5060 M:      Jan Dumon <j.dumon@option.com>
5061 W:      http://www.pharscape.org
5062 S:      Maintained
5063 F:      drivers/net/usb/hso.c
5064
5065 HSR NETWORK PROTOCOL
5066 M:      Arvid Brodin <arvid.brodin@alten.se>
5067 L:      netdev@vger.kernel.org
5068 S:      Maintained
5069 F:      net/hsr/
5070
5071 HTCPEN TOUCHSCREEN DRIVER
5072 M:      Pau Oliva Fora <pof@eslack.org>
5073 L:      linux-input@vger.kernel.org
5074 S:      Maintained
5075 F:      drivers/input/touchscreen/htcpen.c
5076
5077 HUGETLB FILESYSTEM
5078 M:      Nadia Yvette Chambers <nyc@holomorphy.com>
5079 S:      Maintained
5080 F:      fs/hugetlbfs/
5081
5082 Hyper-V CORE AND DRIVERS
5083 M:      "K. Y. Srinivasan" <kys@microsoft.com>
5084 M:      Haiyang Zhang <haiyangz@microsoft.com>
5085 L:      devel@linuxdriverproject.org
5086 S:      Maintained
5087 F:      arch/x86/include/asm/mshyperv.h
5088 F:      arch/x86/include/uapi/asm/hyperv.h
5089 F:      arch/x86/kernel/cpu/mshyperv.c
5090 F:      drivers/hid/hid-hyperv.c
5091 F:      drivers/hv/
5092 F:      drivers/input/serio/hyperv-keyboard.c
5093 F:      drivers/net/hyperv/
5094 F:      drivers/scsi/storvsc_drv.c
5095 F:      drivers/video/fbdev/hyperv_fb.c
5096 F:      include/linux/hyperv.h
5097 F:      tools/hv/
5098 F:      Documentation/ABI/stable/sysfs-bus-vmbus
5099
5100 I2C OVER PARALLEL PORT
5101 M:      Jean Delvare <jdelvare@suse.com>
5102 L:      linux-i2c@vger.kernel.org
5103 S:      Maintained
5104 F:      Documentation/i2c/busses/i2c-parport
5105 F:      Documentation/i2c/busses/i2c-parport-light
5106 F:      drivers/i2c/busses/i2c-parport.c
5107 F:      drivers/i2c/busses/i2c-parport-light.c
5108
5109 I2C/SMBUS CONTROLLER DRIVERS FOR PC
5110 M:      Jean Delvare <jdelvare@suse.com>
5111 L:      linux-i2c@vger.kernel.org
5112 S:      Maintained
5113 F:      Documentation/i2c/busses/i2c-ali1535
5114 F:      Documentation/i2c/busses/i2c-ali1563
5115 F:      Documentation/i2c/busses/i2c-ali15x3
5116 F:      Documentation/i2c/busses/i2c-amd756
5117 F:      Documentation/i2c/busses/i2c-amd8111
5118 F:      Documentation/i2c/busses/i2c-i801
5119 F:      Documentation/i2c/busses/i2c-nforce2
5120 F:      Documentation/i2c/busses/i2c-piix4
5121 F:      Documentation/i2c/busses/i2c-sis5595
5122 F:      Documentation/i2c/busses/i2c-sis630
5123 F:      Documentation/i2c/busses/i2c-sis96x
5124 F:      Documentation/i2c/busses/i2c-via
5125 F:      Documentation/i2c/busses/i2c-viapro
5126 F:      drivers/i2c/busses/i2c-ali1535.c
5127 F:      drivers/i2c/busses/i2c-ali1563.c
5128 F:      drivers/i2c/busses/i2c-ali15x3.c
5129 F:      drivers/i2c/busses/i2c-amd756.c
5130 F:      drivers/i2c/busses/i2c-amd756-s4882.c
5131 F:      drivers/i2c/busses/i2c-amd8111.c
5132 F:      drivers/i2c/busses/i2c-i801.c
5133 F:      drivers/i2c/busses/i2c-isch.c
5134 F:      drivers/i2c/busses/i2c-nforce2.c
5135 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
5136 F:      drivers/i2c/busses/i2c-piix4.c
5137 F:      drivers/i2c/busses/i2c-sis5595.c
5138 F:      drivers/i2c/busses/i2c-sis630.c
5139 F:      drivers/i2c/busses/i2c-sis96x.c
5140 F:      drivers/i2c/busses/i2c-via.c
5141 F:      drivers/i2c/busses/i2c-viapro.c
5142
5143 I2C/SMBUS ISMT DRIVER
5144 M:      Seth Heasley <seth.heasley@intel.com>
5145 M:      Neil Horman <nhorman@tuxdriver.com>
5146 L:      linux-i2c@vger.kernel.org
5147 F:      drivers/i2c/busses/i2c-ismt.c
5148 F:      Documentation/i2c/busses/i2c-ismt
5149
5150 I2C/SMBUS STUB DRIVER
5151 M:      Jean Delvare <jdelvare@suse.com>
5152 L:      linux-i2c@vger.kernel.org
5153 S:      Maintained
5154 F:      drivers/i2c/i2c-stub.c
5155
5156 I2C SUBSYSTEM
5157 M:      Wolfram Sang <wsa@the-dreams.de>
5158 L:      linux-i2c@vger.kernel.org
5159 W:      https://i2c.wiki.kernel.org/
5160 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
5161 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
5162 S:      Maintained
5163 F:      Documentation/devicetree/bindings/i2c/
5164 F:      Documentation/i2c/
5165 F:      drivers/i2c/
5166 F:      drivers/i2c/*/
5167 F:      include/linux/i2c.h
5168 F:      include/linux/i2c-*.h
5169 F:      include/uapi/linux/i2c.h
5170 F:      include/uapi/linux/i2c-*.h
5171
5172 I2C ACPI SUPPORT
5173 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
5174 L:      linux-i2c@vger.kernel.org
5175 L:      linux-acpi@vger.kernel.org
5176 S:      Maintained
5177
5178 I2C-TAOS-EVM DRIVER
5179 M:      Jean Delvare <jdelvare@suse.com>
5180 L:      linux-i2c@vger.kernel.org
5181 S:      Maintained
5182 F:      Documentation/i2c/busses/i2c-taos-evm
5183 F:      drivers/i2c/busses/i2c-taos-evm.c
5184
5185 I2C-TINY-USB DRIVER
5186 M:      Till Harbaum <till@harbaum.org>
5187 L:      linux-i2c@vger.kernel.org
5188 W:      http://www.harbaum.org/till/i2c_tiny_usb
5189 S:      Maintained
5190 F:      drivers/i2c/busses/i2c-tiny-usb.c
5191
5192 i386 BOOT CODE
5193 M:      "H. Peter Anvin" <hpa@zytor.com>
5194 S:      Maintained
5195 F:      arch/x86/boot/
5196
5197 i386 SETUP CODE / CPU ERRATA WORKAROUNDS
5198 M:      "H. Peter Anvin" <hpa@zytor.com>
5199 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
5200 S:      Maintained
5201
5202 IA64 (Itanium) PLATFORM
5203 M:      Tony Luck <tony.luck@intel.com>
5204 M:      Fenghua Yu <fenghua.yu@intel.com>
5205 L:      linux-ia64@vger.kernel.org
5206 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
5207 S:      Maintained
5208 F:      arch/ia64/
5209
5210 IBM Power VMX Cryptographic instructions
5211 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5212 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5213 L:      linux-crypto@vger.kernel.org
5214 S:      Supported
5215 F:      drivers/crypto/vmx/Makefile
5216 F:      drivers/crypto/vmx/Kconfig
5217 F:      drivers/crypto/vmx/vmx.c
5218 F:      drivers/crypto/vmx/aes*
5219 F:      drivers/crypto/vmx/ghash*
5220 F:      drivers/crypto/vmx/ppc-xlate.pl
5221
5222 IBM Power in-Nest Crypto Acceleration
5223 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5224 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5225 L:      linux-crypto@vger.kernel.org
5226 S:      Supported
5227 F:      drivers/crypto/nx/Makefile
5228 F:      drivers/crypto/nx/Kconfig
5229 F:      drivers/crypto/nx/nx-aes*
5230 F:      drivers/crypto/nx/nx-sha*
5231 F:      drivers/crypto/nx/nx.*
5232 F:      drivers/crypto/nx/nx_csbcpb.h
5233 F:      drivers/crypto/nx/nx_debugfs.h
5234
5235 IBM Power 842 compression accelerator
5236 M:      Dan Streetman <ddstreet@ieee.org>
5237 S:      Supported
5238 F:      drivers/crypto/nx/Makefile
5239 F:      drivers/crypto/nx/Kconfig
5240 F:      drivers/crypto/nx/nx-842*
5241 F:      include/linux/sw842.h
5242 F:      crypto/842.c
5243 F:      lib/842/
5244
5245 IBM Power Linux RAID adapter
5246 M:      Brian King <brking@us.ibm.com>
5247 S:      Supported
5248 F:      drivers/scsi/ipr.*
5249
5250 IBM Power Virtual Ethernet Device Driver
5251 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
5252 L:      netdev@vger.kernel.org
5253 S:      Supported
5254 F:      drivers/net/ethernet/ibm/ibmveth.*
5255
5256 IBM Power Virtual SCSI 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/ibmvscsi*
5261 F:      drivers/scsi/ibmvscsi/viosrp.h
5262
5263 IBM Power Virtual FC Device Drivers
5264 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5265 L:      linux-scsi@vger.kernel.org
5266 S:      Supported
5267 F:      drivers/scsi/ibmvscsi/ibmvfc*
5268
5269 IBM ServeRAID RAID DRIVER
5270 S:      Orphan
5271 F:      drivers/scsi/ips.*
5272
5273 ICH LPC AND GPIO DRIVER
5274 M:      Peter Tyser <ptyser@xes-inc.com>
5275 S:      Maintained
5276 F:      drivers/mfd/lpc_ich.c
5277 F:      drivers/gpio/gpio-ich.c
5278
5279 IDE SUBSYSTEM
5280 M:      "David S. Miller" <davem@davemloft.net>
5281 L:      linux-ide@vger.kernel.org
5282 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
5283 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
5284 S:      Maintained
5285 F:      Documentation/ide/
5286 F:      drivers/ide/
5287 F:      include/linux/ide.h
5288
5289 IDEAPAD LAPTOP EXTRAS DRIVER
5290 M:      Ike Panhc <ike.pan@canonical.com>
5291 L:      platform-driver-x86@vger.kernel.org
5292 W:      http://launchpad.net/ideapad-laptop
5293 S:      Maintained
5294 F:      drivers/platform/x86/ideapad-laptop.c
5295
5296 IDEAPAD LAPTOP SLIDEBAR DRIVER
5297 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
5298 L:      linux-input@vger.kernel.org
5299 W:      https://github.com/o2genum/ideapad-slidebar
5300 S:      Maintained
5301 F:      drivers/input/misc/ideapad_slidebar.c
5302
5303 IDE/ATAPI DRIVERS
5304 M:      Borislav Petkov <bp@alien8.de>
5305 L:      linux-ide@vger.kernel.org
5306 S:      Maintained
5307 F:      Documentation/cdrom/ide-cd
5308 F:      drivers/ide/ide-cd*
5309
5310 IDLE-I7300
5311 M:      Andy Henroid <andrew.d.henroid@intel.com>
5312 L:      linux-pm@vger.kernel.org
5313 S:      Supported
5314 F:      drivers/idle/i7300_idle.c
5315
5316 IEEE 802.15.4 SUBSYSTEM
5317 M:      Alexander Aring <alex.aring@gmail.com>
5318 L:      linux-wpan@vger.kernel.org
5319 W:      https://github.com/linux-wpan
5320 T:      git git://github.com/linux-wpan/linux-wpan-next.git
5321 S:      Maintained
5322 F:      net/ieee802154/
5323 F:      net/mac802154/
5324 F:      drivers/net/ieee802154/
5325 F:      include/linux/nl802154.h
5326 F:      include/linux/ieee802154.h
5327 F:      include/net/nl802154.h
5328 F:      include/net/mac802154.h
5329 F:      include/net/af_ieee802154.h
5330 F:      include/net/cfg802154.h
5331 F:      include/net/ieee802154_netdev.h
5332 F:      Documentation/networking/ieee802154.txt
5333
5334 IGORPLUG-USB IR RECEIVER
5335 M:      Sean Young <sean@mess.org>
5336 L:      linux-media@vger.kernel.org
5337 S:      Maintained
5338 F:      drivers/media/rc/igorplugusb.c
5339
5340 IGUANAWORKS USB IR TRANSCEIVER
5341 M:      Sean Young <sean@mess.org>
5342 L:      linux-media@vger.kernel.org
5343 S:      Maintained
5344 F:      drivers/media/rc/iguanair.c
5345
5346 IIO SUBSYSTEM AND DRIVERS
5347 M:      Jonathan Cameron <jic23@kernel.org>
5348 R:      Hartmut Knaack <knaack.h@gmx.de>
5349 R:      Lars-Peter Clausen <lars@metafoo.de>
5350 R:      Peter Meerwald <pmeerw@pmeerw.net>
5351 L:      linux-iio@vger.kernel.org
5352 S:      Maintained
5353 F:      drivers/iio/
5354 F:      drivers/staging/iio/
5355 F:      include/linux/iio/
5356 F:      tools/iio/
5357
5358 IKANOS/ADI EAGLE ADSL USB DRIVER
5359 M:      Matthieu Castet <castet.matthieu@free.fr>
5360 M:      Stanislaw Gruszka <stf_xl@wp.pl>
5361 S:      Maintained
5362 F:      drivers/usb/atm/ueagle-atm.c
5363
5364 INA209 HARDWARE MONITOR DRIVER
5365 M:      Guenter Roeck <linux@roeck-us.net>
5366 L:      lm-sensors@lm-sensors.org
5367 S:      Maintained
5368 F:      Documentation/hwmon/ina209
5369 F:      Documentation/devicetree/bindings/i2c/ina209.txt
5370 F:      drivers/hwmon/ina209.c
5371
5372 INA2XX HARDWARE MONITOR DRIVER
5373 M:      Guenter Roeck <linux@roeck-us.net>
5374 L:      lm-sensors@lm-sensors.org
5375 S:      Maintained
5376 F:      Documentation/hwmon/ina2xx
5377 F:      drivers/hwmon/ina2xx.c
5378 F:      include/linux/platform_data/ina2xx.h
5379
5380 INDUSTRY PACK SUBSYSTEM (IPACK)
5381 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
5382 M:      Jens Taprogge <jens.taprogge@taprogge.org>
5383 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5384 L:      industrypack-devel@lists.sourceforge.net
5385 W:      http://industrypack.sourceforge.net
5386 S:      Maintained
5387 F:      drivers/ipack/
5388
5389 INGENIC JZ4780 DMA Driver
5390 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
5391 S:      Maintained
5392 F:      drivers/dma/dma-jz4780.c
5393
5394 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
5395 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
5396 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
5397 L:      linux-ima-devel@lists.sourceforge.net
5398 L:      linux-ima-user@lists.sourceforge.net
5399 L:      linux-security-module@vger.kernel.org
5400 S:      Supported
5401 F:      security/integrity/ima/
5402
5403 IMGTEC IR DECODER DRIVER
5404 M:      James Hogan <james.hogan@imgtec.com>
5405 S:      Maintained
5406 F:      drivers/media/rc/img-ir/
5407
5408 IMS TWINTURBO FRAMEBUFFER DRIVER
5409 L:      linux-fbdev@vger.kernel.org
5410 S:      Orphan
5411 F:      drivers/video/fbdev/imsttfb.c
5412
5413 INFINIBAND SUBSYSTEM
5414 M:      Doug Ledford <dledford@redhat.com>
5415 M:      Sean Hefty <sean.hefty@intel.com>
5416 M:      Hal Rosenstock <hal.rosenstock@gmail.com>
5417 L:      linux-rdma@vger.kernel.org
5418 W:      http://www.openfabrics.org/
5419 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5420 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git
5421 S:      Supported
5422 F:      Documentation/infiniband/
5423 F:      drivers/infiniband/
5424 F:      drivers/staging/rdma/
5425 F:      include/uapi/linux/if_infiniband.h
5426 F:      include/uapi/rdma/
5427 F:      include/rdma/
5428
5429 INOTIFY
5430 M:      John McCutchan <john@johnmccutchan.com>
5431 M:      Robert Love <rlove@rlove.org>
5432 M:      Eric Paris <eparis@parisplace.org>
5433 S:      Maintained
5434 F:      Documentation/filesystems/inotify.txt
5435 F:      fs/notify/inotify/
5436 F:      include/linux/inotify.h
5437 F:      include/uapi/linux/inotify.h
5438
5439 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
5440 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
5441 L:      linux-input@vger.kernel.org
5442 Q:      http://patchwork.kernel.org/project/linux-input/list/
5443 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
5444 S:      Maintained
5445 F:      drivers/input/
5446 F:      include/linux/input.h
5447 F:      include/uapi/linux/input.h
5448 F:      include/linux/input/
5449
5450 INPUT MULTITOUCH (MT) PROTOCOL
5451 M:      Henrik Rydberg <rydberg@bitmath.org>
5452 L:      linux-input@vger.kernel.org
5453 S:      Odd fixes
5454 F:      Documentation/input/multi-touch-protocol.txt
5455 F:      drivers/input/input-mt.c
5456 K:      \b(ABS|SYN)_MT_
5457
5458 INTEL ASoC BDW/HSW DRIVERS
5459 M:      Jie Yang <yang.jie@linux.intel.com>
5460 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5461 S:      Supported
5462 F:      sound/soc/intel/common/sst-dsp*
5463 F:      sound/soc/intel/common/sst-firmware.c
5464 F:      sound/soc/intel/boards/broadwell.c
5465 F:      sound/soc/intel/haswell/
5466
5467 INTEL C600 SERIES SAS CONTROLLER DRIVER
5468 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
5469 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
5470 L:      linux-scsi@vger.kernel.org
5471 T:      git git://git.code.sf.net/p/intel-sas/isci
5472 S:      Supported
5473 F:      drivers/scsi/isci/
5474
5475 INTEL IDLE DRIVER
5476 M:      Len Brown <lenb@kernel.org>
5477 L:      linux-pm@vger.kernel.org
5478 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
5479 S:      Supported
5480 F:      drivers/idle/intel_idle.c
5481
5482 INTEL PSTATE DRIVER
5483 M:      Kristen Carlson Accardi <kristen@linux.intel.com>
5484 L:      linux-pm@vger.kernel.org
5485 S:      Supported
5486 F:      drivers/cpufreq/intel_pstate.c
5487
5488 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
5489 M:      Maik Broemme <mbroemme@plusserver.de>
5490 L:      linux-fbdev@vger.kernel.org
5491 S:      Maintained
5492 F:      Documentation/fb/intelfb.txt
5493 F:      drivers/video/fbdev/intelfb/
5494
5495 INTEL 810/815 FRAMEBUFFER DRIVER
5496 M:      Antonino Daplas <adaplas@gmail.com>
5497 L:      linux-fbdev@vger.kernel.org
5498 S:      Maintained
5499 F:      drivers/video/fbdev/i810/
5500
5501 INTEL MENLOW THERMAL DRIVER
5502 M:      Sujith Thomas <sujith.thomas@intel.com>
5503 L:      platform-driver-x86@vger.kernel.org
5504 W:      https://01.org/linux-acpi
5505 S:      Supported
5506 F:      drivers/platform/x86/intel_menlow.c
5507
5508 INTEL I/OAT DMA DRIVER
5509 M:      Dave Jiang <dave.jiang@intel.com>
5510 R:      Dan Williams <dan.j.williams@intel.com>
5511 L:      dmaengine@vger.kernel.org
5512 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5513 S:      Supported
5514 F:      drivers/dma/ioat*
5515
5516 INTEL IOMMU (VT-d)
5517 M:      David Woodhouse <dwmw2@infradead.org>
5518 L:      iommu@lists.linux-foundation.org
5519 T:      git git://git.infradead.org/iommu-2.6.git
5520 S:      Supported
5521 F:      drivers/iommu/intel-iommu.c
5522 F:      include/linux/intel-iommu.h
5523
5524 INTEL IOP-ADMA DMA DRIVER
5525 R:      Dan Williams <dan.j.williams@intel.com>
5526 S:      Odd fixes
5527 F:      drivers/dma/iop-adma.c
5528
5529 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
5530 M:      Krzysztof Halasa <khalasa@piap.pl>
5531 S:      Maintained
5532 F:      arch/arm/mach-ixp4xx/include/mach/qmgr.h
5533 F:      arch/arm/mach-ixp4xx/include/mach/npe.h
5534 F:      arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
5535 F:      arch/arm/mach-ixp4xx/ixp4xx_npe.c
5536 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
5537 F:      drivers/net/wan/ixp4xx_hss.c
5538
5539 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
5540 M:      Deepak Saxena <dsaxena@plexity.net>
5541 S:      Maintained
5542 F:      drivers/char/hw_random/ixp4xx-rng.c
5543
5544 INTEL ETHERNET DRIVERS
5545 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
5546 R:      Jesse Brandeburg <jesse.brandeburg@intel.com>
5547 R:      Shannon Nelson <shannon.nelson@intel.com>
5548 R:      Carolyn Wyborny <carolyn.wyborny@intel.com>
5549 R:      Don Skidmore <donald.c.skidmore@intel.com>
5550 R:      Matthew Vick <matthew.vick@intel.com>
5551 R:      John Ronciak <john.ronciak@intel.com>
5552 R:      Mitch Williams <mitch.a.williams@intel.com>
5553 L:      intel-wired-lan@lists.osuosl.org
5554 W:      http://www.intel.com/support/feedback.htm
5555 W:      http://e1000.sourceforge.net/
5556 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
5557 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
5558 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
5559 S:      Supported
5560 F:      Documentation/networking/e100.txt
5561 F:      Documentation/networking/e1000.txt
5562 F:      Documentation/networking/e1000e.txt
5563 F:      Documentation/networking/igb.txt
5564 F:      Documentation/networking/igbvf.txt
5565 F:      Documentation/networking/ixgb.txt
5566 F:      Documentation/networking/ixgbe.txt
5567 F:      Documentation/networking/ixgbevf.txt
5568 F:      Documentation/networking/i40e.txt
5569 F:      Documentation/networking/i40evf.txt
5570 F:      drivers/net/ethernet/intel/
5571 F:      drivers/net/ethernet/intel/*/
5572
5573 INTEL-MID GPIO DRIVER
5574 M:      David Cohen <david.a.cohen@linux.intel.com>
5575 L:      linux-gpio@vger.kernel.org
5576 S:      Maintained
5577 F:      drivers/gpio/gpio-intel-mid.c
5578
5579 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
5580 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
5581 L:      linux-wireless@vger.kernel.org
5582 S:      Maintained
5583 F:      Documentation/networking/README.ipw2100
5584 F:      Documentation/networking/README.ipw2200
5585 F:      drivers/net/wireless/ipw2x00/
5586
5587 INTEL(R) TRACE HUB
5588 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
5589 S:      Supported
5590 F:      Documentation/trace/intel_th.txt
5591 F:      drivers/hwtracing/intel_th/
5592
5593 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
5594 M:      Richard L Maliszewski <richard.l.maliszewski@intel.com>
5595 M:      Gang Wei <gang.wei@intel.com>
5596 M:      Shane Wang <shane.wang@intel.com>
5597 L:      tboot-devel@lists.sourceforge.net
5598 W:      http://tboot.sourceforge.net
5599 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
5600 S:      Supported
5601 F:      Documentation/intel_txt.txt
5602 F:      include/linux/tboot.h
5603 F:      arch/x86/kernel/tboot.c
5604
5605 INTEL WIRELESS WIMAX CONNECTION 2400
5606 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
5607 M:      linux-wimax@intel.com
5608 L:      wimax@linuxwimax.org (subscribers-only)
5609 S:      Supported
5610 W:      http://linuxwimax.org
5611 F:      Documentation/wimax/README.i2400m
5612 F:      drivers/net/wimax/i2400m/
5613 F:      include/uapi/linux/wimax/i2400m.h
5614
5615 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
5616 M:      Stanislaw Gruszka <sgruszka@redhat.com>
5617 L:      linux-wireless@vger.kernel.org
5618 S:      Supported
5619 F:      drivers/net/wireless/iwlegacy/
5620
5621 INTEL WIRELESS WIFI LINK (iwlwifi)
5622 M:      Johannes Berg <johannes.berg@intel.com>
5623 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
5624 M:      Intel Linux Wireless <linuxwifi@intel.com>
5625 L:      linux-wireless@vger.kernel.org
5626 W:      http://intellinuxwireless.org
5627 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
5628 S:      Supported
5629 F:      drivers/net/wireless/iwlwifi/
5630
5631 INTEL MANAGEMENT ENGINE (mei)
5632 M:      Tomas Winkler <tomas.winkler@intel.com>
5633 L:      linux-kernel@vger.kernel.org
5634 S:      Supported
5635 F:      include/uapi/linux/mei.h
5636 F:      include/linux/mei_cl_bus.h
5637 F:      drivers/misc/mei/*
5638 F:      Documentation/misc-devices/mei/*
5639
5640 INTEL MIC DRIVERS (mic)
5641 M:      Sudeep Dutt <sudeep.dutt@intel.com>
5642 M:      Ashutosh Dixit <ashutosh.dixit@intel.com>
5643 S:      Supported
5644 W:      https://github.com/sudeepdutt/mic
5645 W:      http://software.intel.com/en-us/mic-developer
5646 F:      include/linux/mic_bus.h
5647 F:      include/linux/scif.h
5648 F:      include/uapi/linux/mic_common.h
5649 F:      include/uapi/linux/mic_ioctl.h
5650 F       include/uapi/linux/scif_ioctl.h
5651 F:      drivers/misc/mic/
5652 F:      drivers/dma/mic_x100_dma.c
5653 F:      drivers/dma/mic_x100_dma.h
5654 F       Documentation/mic/
5655
5656 INTEL PMC IPC DRIVER
5657 M:      Zha Qipeng<qipeng.zha@intel.com>
5658 L:      platform-driver-x86@vger.kernel.org
5659 S:      Maintained
5660 F:      drivers/platform/x86/intel_pmc_ipc.c
5661 F:      arch/x86/include/asm/intel_pmc_ipc.h
5662
5663 IOC3 ETHERNET DRIVER
5664 M:      Ralf Baechle <ralf@linux-mips.org>
5665 L:      linux-mips@linux-mips.org
5666 S:      Maintained
5667 F:      drivers/net/ethernet/sgi/ioc3-eth.c
5668
5669 IOC3 SERIAL DRIVER
5670 M:      Pat Gefre <pfg@sgi.com>
5671 L:      linux-serial@vger.kernel.org
5672 S:      Maintained
5673 F:      drivers/tty/serial/ioc3_serial.c
5674
5675 IOMMU DRIVERS
5676 M:      Joerg Roedel <joro@8bytes.org>
5677 L:      iommu@lists.linux-foundation.org
5678 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
5679 S:      Maintained
5680 F:      drivers/iommu/
5681
5682 IP MASQUERADING
5683 M:      Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
5684 S:      Maintained
5685 F:      net/ipv4/netfilter/ipt_MASQUERADE.c
5686
5687 IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
5688 M:      Francois Romieu <romieu@fr.zoreil.com>
5689 M:      Sorbica Shieh <sorbica@icplus.com.tw>
5690 L:      netdev@vger.kernel.org
5691 S:      Maintained
5692 F:      drivers/net/ethernet/icplus/ipg.*
5693
5694 IPATH DRIVER
5695 M:      Mike Marciniszyn <infinipath@intel.com>
5696 L:      linux-rdma@vger.kernel.org
5697 S:      Maintained
5698 F:      drivers/staging/rdma/ipath/
5699
5700 IPMI SUBSYSTEM
5701 M:      Corey Minyard <minyard@acm.org>
5702 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
5703 W:      http://openipmi.sourceforge.net/
5704 S:      Supported
5705 F:      Documentation/IPMI.txt
5706 F:      drivers/char/ipmi/
5707 F:      include/linux/ipmi*
5708 F:      include/uapi/linux/ipmi*
5709
5710 QCOM AUDIO (ASoC) DRIVERS
5711 M:      Patrick Lai <plai@codeaurora.org>
5712 M:      Banajit Goswami <bgoswami@codeaurora.org>
5713 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5714 S:      Supported
5715 F:      sound/soc/qcom/
5716
5717 IPS SCSI RAID DRIVER
5718 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
5719 L:      linux-scsi@vger.kernel.org
5720 W:      http://www.adaptec.com/
5721 S:      Maintained
5722 F:      drivers/scsi/ips*
5723
5724 IPVS
5725 M:      Wensong Zhang <wensong@linux-vs.org>
5726 M:      Simon Horman <horms@verge.net.au>
5727 M:      Julian Anastasov <ja@ssi.bg>
5728 L:      netdev@vger.kernel.org
5729 L:      lvs-devel@vger.kernel.org
5730 S:      Maintained
5731 F:      Documentation/networking/ipvs-sysctl.txt
5732 F:      include/net/ip_vs.h
5733 F:      include/uapi/linux/ip_vs.h
5734 F:      net/netfilter/ipvs/
5735
5736 IPWIRELESS DRIVER
5737 M:      Jiri Kosina <jikos@kernel.org>
5738 M:      David Sterba <dsterba@suse.com>
5739 S:      Odd Fixes
5740 F:      drivers/tty/ipwireless/
5741
5742 IPX NETWORK LAYER
5743 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
5744 L:      netdev@vger.kernel.org
5745 S:      Maintained
5746 F:      include/net/ipx.h
5747 F:      include/uapi/linux/ipx.h
5748 F:      net/ipx/
5749
5750 IRDA SUBSYSTEM
5751 M:      Samuel Ortiz <samuel@sortiz.org>
5752 L:      irda-users@lists.sourceforge.net (subscribers-only)
5753 L:      netdev@vger.kernel.org
5754 W:      http://irda.sourceforge.net/
5755 S:      Maintained
5756 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
5757 F:      Documentation/networking/irda.txt
5758 F:      drivers/net/irda/
5759 F:      include/net/irda/
5760 F:      net/irda/
5761
5762 IRQ SUBSYSTEM
5763 M:      Thomas Gleixner <tglx@linutronix.de>
5764 L:      linux-kernel@vger.kernel.org
5765 S:      Maintained
5766 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5767 F:      kernel/irq/
5768
5769 IRQCHIP DRIVERS
5770 M:      Thomas Gleixner <tglx@linutronix.de>
5771 M:      Jason Cooper <jason@lakedaemon.net>
5772 M:      Marc Zyngier <marc.zyngier@arm.com>
5773 L:      linux-kernel@vger.kernel.org
5774 S:      Maintained
5775 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5776 T:      git git://git.infradead.org/users/jcooper/linux.git irqchip/core
5777 F:      Documentation/devicetree/bindings/interrupt-controller/
5778 F:      drivers/irqchip/
5779
5780 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
5781 M:      Jiang Liu <jiang.liu@linux.intel.com>
5782 M:      Marc Zyngier <marc.zyngier@arm.com>
5783 S:      Maintained
5784 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5785 F:      Documentation/IRQ-domain.txt
5786 F:      include/linux/irqdomain.h
5787 F:      kernel/irq/irqdomain.c
5788 F:      kernel/irq/msi.c
5789
5790 ISAPNP
5791 M:      Jaroslav Kysela <perex@perex.cz>
5792 S:      Maintained
5793 F:      Documentation/isapnp.txt
5794 F:      drivers/pnp/isapnp/
5795 F:      include/linux/isapnp.h
5796
5797 ISA RADIO MODULE
5798 M:      Hans Verkuil <hverkuil@xs4all.nl>
5799 L:      linux-media@vger.kernel.org
5800 T:      git git://linuxtv.org/media_tree.git
5801 W:      http://linuxtv.org
5802 S:      Maintained
5803 F:      drivers/media/radio/radio-isa*
5804
5805 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
5806 M:      Peter Jones <pjones@redhat.com>
5807 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
5808 S:      Maintained
5809 F:      drivers/firmware/iscsi_ibft*
5810
5811 ISCSI
5812 M:      Mike Christie <michaelc@cs.wisc.edu>
5813 L:      open-iscsi@googlegroups.com
5814 W:      www.open-iscsi.org
5815 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
5816 S:      Maintained
5817 F:      drivers/scsi/*iscsi*
5818 F:      include/scsi/*iscsi*
5819
5820 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
5821 M:      Or Gerlitz <ogerlitz@mellanox.com>
5822 M:      Sagi Grimberg <sagig@mellanox.com>
5823 M:      Roi Dayan <roid@mellanox.com>
5824 L:      linux-rdma@vger.kernel.org
5825 S:      Supported
5826 W:      http://www.openfabrics.org
5827 W:      www.open-iscsi.org
5828 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5829 F:      drivers/infiniband/ulp/iser/
5830
5831 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
5832 M:      Sagi Grimberg <sagig@mellanox.com>
5833 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
5834 L:      linux-rdma@vger.kernel.org
5835 L:      target-devel@vger.kernel.org
5836 S:      Supported
5837 W:      http://www.linux-iscsi.org
5838 F:      drivers/infiniband/ulp/isert
5839
5840 ISDN SUBSYSTEM
5841 M:      Karsten Keil <isdn@linux-pingi.de>
5842 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5843 L:      netdev@vger.kernel.org
5844 W:      http://www.isdn4linux.de
5845 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
5846 S:      Maintained
5847 F:      Documentation/isdn/
5848 F:      drivers/isdn/
5849 F:      include/linux/isdn.h
5850 F:      include/linux/isdn/
5851 F:      include/uapi/linux/isdn.h
5852 F:      include/uapi/linux/isdn/
5853
5854 ISDN SUBSYSTEM (Eicon active card driver)
5855 M:      Armin Schindler <mac@melware.de>
5856 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5857 W:      http://www.melware.de
5858 S:      Maintained
5859 F:      drivers/isdn/hardware/eicon/
5860
5861 IT87 HARDWARE MONITORING DRIVER
5862 M:      Jean Delvare <jdelvare@suse.com>
5863 L:      lm-sensors@lm-sensors.org
5864 S:      Maintained
5865 F:      Documentation/hwmon/it87
5866 F:      drivers/hwmon/it87.c
5867
5868 IT913X MEDIA DRIVER
5869 M:      Antti Palosaari <crope@iki.fi>
5870 L:      linux-media@vger.kernel.org
5871 W:      http://linuxtv.org/
5872 W:      http://palosaari.fi/linux/
5873 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5874 T:      git git://linuxtv.org/anttip/media_tree.git
5875 S:      Maintained
5876 F:      drivers/media/tuners/it913x*
5877
5878 IVTV VIDEO4LINUX DRIVER
5879 M:      Andy Walls <awalls@md.metrocast.net>
5880 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
5881 L:      linux-media@vger.kernel.org
5882 T:      git git://linuxtv.org/media_tree.git
5883 W:      http://www.ivtvdriver.org
5884 S:      Maintained
5885 F:      Documentation/video4linux/*.ivtv
5886 F:      drivers/media/pci/ivtv/
5887 F:      include/uapi/linux/ivtv*
5888
5889 IX2505V MEDIA DRIVER
5890 M:      Malcolm Priestley <tvboxspy@gmail.com>
5891 L:      linux-media@vger.kernel.org
5892 W:      http://linuxtv.org/
5893 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5894 S:      Maintained
5895 F:      drivers/media/dvb-frontends/ix2505v*
5896
5897 JC42.4 TEMPERATURE SENSOR DRIVER
5898 M:      Guenter Roeck <linux@roeck-us.net>
5899 L:      lm-sensors@lm-sensors.org
5900 S:      Maintained
5901 F:      drivers/hwmon/jc42.c
5902 F:      Documentation/hwmon/jc42
5903
5904 JFS FILESYSTEM
5905 M:      Dave Kleikamp <shaggy@kernel.org>
5906 L:      jfs-discussion@lists.sourceforge.net
5907 W:      http://jfs.sourceforge.net/
5908 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
5909 S:      Maintained
5910 F:      Documentation/filesystems/jfs.txt
5911 F:      fs/jfs/
5912
5913 JME NETWORK DRIVER
5914 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
5915 L:      netdev@vger.kernel.org
5916 S:      Maintained
5917 F:      drivers/net/ethernet/jme.*
5918
5919 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
5920 M:      David Woodhouse <dwmw2@infradead.org>
5921 L:      linux-mtd@lists.infradead.org
5922 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
5923 S:      Maintained
5924 F:      fs/jffs2/
5925 F:      include/uapi/linux/jffs2.h
5926
5927 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
5928 M:      "Theodore Ts'o" <tytso@mit.edu>
5929 M:      Jan Kara <jack@suse.com>
5930 L:      linux-ext4@vger.kernel.org
5931 S:      Maintained
5932 F:      fs/jbd2/
5933 F:      include/linux/jbd2.h
5934
5935 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
5936 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
5937 L:      linux-media@vger.kernel.org
5938 S:      Maintained
5939 F:      drivers/media/platform/rcar_jpu.c
5940
5941 JSM Neo PCI based serial card
5942 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
5943 L:      linux-serial@vger.kernel.org
5944 S:      Maintained
5945 F:      drivers/tty/serial/jsm/
5946
5947 K10TEMP HARDWARE MONITORING DRIVER
5948 M:      Clemens Ladisch <clemens@ladisch.de>
5949 L:      lm-sensors@lm-sensors.org
5950 S:      Maintained
5951 F:      Documentation/hwmon/k10temp
5952 F:      drivers/hwmon/k10temp.c
5953
5954 K8TEMP HARDWARE MONITORING DRIVER
5955 M:      Rudolf Marek <r.marek@assembler.cz>
5956 L:      lm-sensors@lm-sensors.org
5957 S:      Maintained
5958 F:      Documentation/hwmon/k8temp
5959 F:      drivers/hwmon/k8temp.c
5960
5961 KCONFIG
5962 M:      "Yann E. MORIN" <yann.morin.1998@free.fr>
5963 L:      linux-kbuild@vger.kernel.org
5964 T:      git git://gitorious.org/linux-kconfig/linux-kconfig
5965 S:      Maintained
5966 F:      Documentation/kbuild/kconfig-language.txt
5967 F:      scripts/kconfig/
5968
5969 KDUMP
5970 M:      Vivek Goyal <vgoyal@redhat.com>
5971 M:      Haren Myneni <hbabu@us.ibm.com>
5972 L:      kexec@lists.infradead.org
5973 W:      http://lse.sourceforge.net/kdump/
5974 S:      Maintained
5975 F:      Documentation/kdump/
5976
5977 KEENE FM RADIO TRANSMITTER DRIVER
5978 M:      Hans Verkuil <hverkuil@xs4all.nl>
5979 L:      linux-media@vger.kernel.org
5980 T:      git git://linuxtv.org/media_tree.git
5981 W:      http://linuxtv.org
5982 S:      Maintained
5983 F:      drivers/media/radio/radio-keene*
5984
5985 KERNEL AUTOMOUNTER v4 (AUTOFS4)
5986 M:      Ian Kent <raven@themaw.net>
5987 L:      autofs@vger.kernel.org
5988 S:      Maintained
5989 F:      fs/autofs4/
5990
5991 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
5992 M:      Michal Marek <mmarek@suse.com>
5993 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
5994 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
5995 L:      linux-kbuild@vger.kernel.org
5996 S:      Maintained
5997 F:      Documentation/kbuild/
5998 F:      Makefile
5999 F:      scripts/Makefile.*
6000 F:      scripts/basic/
6001 F:      scripts/mk*
6002 F:      scripts/package/
6003
6004 KERNEL JANITORS
6005 L:      kernel-janitors@vger.kernel.org
6006 W:      http://kernelnewbies.org/KernelJanitors
6007 S:      Odd Fixes
6008
6009 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
6010 M:      "J. Bruce Fields" <bfields@fieldses.org>
6011 M:      Jeff Layton <jlayton@poochiereds.net>
6012 L:      linux-nfs@vger.kernel.org
6013 W:      http://nfs.sourceforge.net/
6014 S:      Supported
6015 F:      fs/nfsd/
6016 F:      include/uapi/linux/nfsd/
6017 F:      fs/lockd/
6018 F:      fs/nfs_common/
6019 F:      net/sunrpc/
6020 F:      include/linux/lockd/
6021 F:      include/linux/sunrpc/
6022 F:      include/uapi/linux/sunrpc/
6023
6024 KERNEL SELFTEST FRAMEWORK
6025 M:      Shuah Khan <shuahkh@osg.samsung.com>
6026 L:      linux-api@vger.kernel.org
6027 T:      git git://git.kernel.org/pub/scm/shuah/linux-kselftest
6028 S:      Maintained
6029 F:      tools/testing/selftests
6030
6031 KERNEL VIRTUAL MACHINE (KVM)
6032 M:      Gleb Natapov <gleb@kernel.org>
6033 M:      Paolo Bonzini <pbonzini@redhat.com>
6034 L:      kvm@vger.kernel.org
6035 W:      http://www.linux-kvm.org
6036 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
6037 S:      Supported
6038 F:      Documentation/*/kvm*.txt
6039 F:      Documentation/virtual/kvm/
6040 F:      arch/*/kvm/
6041 F:      arch/x86/kernel/kvm.c
6042 F:      arch/x86/kernel/kvmclock.c
6043 F:      arch/*/include/asm/kvm*
6044 F:      include/linux/kvm*
6045 F:      include/uapi/linux/kvm*
6046 F:      virt/kvm/
6047
6048 KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
6049 M:      Joerg Roedel <joro@8bytes.org>
6050 L:      kvm@vger.kernel.org
6051 W:      http://www.linux-kvm.org/
6052 S:      Maintained
6053 F:      arch/x86/include/asm/svm.h
6054 F:      arch/x86/kvm/svm.c
6055
6056 KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
6057 M:      Alexander Graf <agraf@suse.com>
6058 L:      kvm-ppc@vger.kernel.org
6059 W:      http://www.linux-kvm.org/
6060 T:      git git://github.com/agraf/linux-2.6.git
6061 S:      Supported
6062 F:      arch/powerpc/include/asm/kvm*
6063 F:      arch/powerpc/kvm/
6064
6065 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
6066 M:      Christian Borntraeger <borntraeger@de.ibm.com>
6067 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
6068 L:      linux-s390@vger.kernel.org
6069 W:      http://www.ibm.com/developerworks/linux/linux390/
6070 S:      Supported
6071 F:      Documentation/s390/kvm.txt
6072 F:      arch/s390/include/asm/kvm*
6073 F:      arch/s390/kvm/
6074
6075 KERNEL VIRTUAL MACHINE (KVM) FOR ARM
6076 M:      Christoffer Dall <christoffer.dall@linaro.org>
6077 M:      Marc Zyngier <marc.zyngier@arm.com>
6078 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6079 L:      kvmarm@lists.cs.columbia.edu
6080 W:      http://systems.cs.columbia.edu/projects/kvm-arm
6081 S:      Supported
6082 F:      arch/arm/include/uapi/asm/kvm*
6083 F:      arch/arm/include/asm/kvm*
6084 F:      arch/arm/kvm/
6085 F:      virt/kvm/arm/
6086 F:      include/kvm/arm_*
6087
6088 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
6089 M:      Christoffer Dall <christoffer.dall@linaro.org>
6090 M:      Marc Zyngier <marc.zyngier@arm.com>
6091 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6092 L:      kvmarm@lists.cs.columbia.edu
6093 S:      Maintained
6094 F:      arch/arm64/include/uapi/asm/kvm*
6095 F:      arch/arm64/include/asm/kvm*
6096 F:      arch/arm64/kvm/
6097
6098 KEXEC
6099 M:      Eric Biederman <ebiederm@xmission.com>
6100 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
6101 L:      kexec@lists.infradead.org
6102 S:      Maintained
6103 F:      include/linux/kexec.h
6104 F:      include/uapi/linux/kexec.h
6105 F:      kernel/kexec.c
6106
6107 KEYS/KEYRINGS:
6108 M:      David Howells <dhowells@redhat.com>
6109 L:      keyrings@vger.kernel.org
6110 S:      Maintained
6111 F:      Documentation/security/keys.txt
6112 F:      include/linux/key.h
6113 F:      include/linux/key-type.h
6114 F:      include/keys/
6115 F:      security/keys/
6116
6117 KEYS-TRUSTED
6118 M:      David Safford <safford@us.ibm.com>
6119 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6120 L:      linux-security-module@vger.kernel.org
6121 L:      keyrings@vger.kernel.org
6122 S:      Supported
6123 F:      Documentation/security/keys-trusted-encrypted.txt
6124 F:      include/keys/trusted-type.h
6125 F:      security/keys/trusted.c
6126 F:      security/keys/trusted.h
6127
6128 KEYS-ENCRYPTED
6129 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6130 M:      David Safford <safford@us.ibm.com>
6131 L:      linux-security-module@vger.kernel.org
6132 L:      keyrings@vger.kernel.org
6133 S:      Supported
6134 F:      Documentation/security/keys-trusted-encrypted.txt
6135 F:      include/keys/encrypted-type.h
6136 F:      security/keys/encrypted-keys/
6137
6138 KGDB / KDB /debug_core
6139 M:      Jason Wessel <jason.wessel@windriver.com>
6140 W:      http://kgdb.wiki.kernel.org/
6141 L:      kgdb-bugreport@lists.sourceforge.net
6142 S:      Maintained
6143 F:      Documentation/DocBook/kgdb.tmpl
6144 F:      drivers/misc/kgdbts.c
6145 F:      drivers/tty/serial/kgdboc.c
6146 F:      include/linux/kdb.h
6147 F:      include/linux/kgdb.h
6148 F:      kernel/debug/
6149
6150 KMEMCHECK
6151 M:      Vegard Nossum <vegardno@ifi.uio.no>
6152 M:      Pekka Enberg <penberg@kernel.org>
6153 S:      Maintained
6154 F:      Documentation/kmemcheck.txt
6155 F:      arch/x86/include/asm/kmemcheck.h
6156 F:      arch/x86/mm/kmemcheck/
6157 F:      include/linux/kmemcheck.h
6158 F:      mm/kmemcheck.c
6159
6160 KMEMLEAK
6161 M:      Catalin Marinas <catalin.marinas@arm.com>
6162 S:      Maintained
6163 F:      Documentation/kmemleak.txt
6164 F:      include/linux/kmemleak.h
6165 F:      mm/kmemleak.c
6166 F:      mm/kmemleak-test.c
6167
6168 KPROBES
6169 M:      Ananth N Mavinakayanahalli <ananth@in.ibm.com>
6170 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
6171 M:      "David S. Miller" <davem@davemloft.net>
6172 M:      Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
6173 S:      Maintained
6174 F:      Documentation/kprobes.txt
6175 F:      include/linux/kprobes.h
6176 F:      kernel/kprobes.c
6177
6178 KS0108 LCD CONTROLLER DRIVER
6179 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
6180 W:      http://miguelojeda.es/auxdisplay.htm
6181 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
6182 S:      Maintained
6183 F:      Documentation/auxdisplay/ks0108
6184 F:      drivers/auxdisplay/ks0108.c
6185 F:      include/linux/ks0108.h
6186
6187 L3MDEV
6188 M:      David Ahern <dsa@cumulusnetworks.com>
6189 L:      netdev@vger.kernel.org
6190 S:      Maintained
6191 F:      net/l3mdev
6192 F:      include/net/l3mdev.h
6193
6194 LAPB module
6195 L:      linux-x25@vger.kernel.org
6196 S:      Orphan
6197 F:      Documentation/networking/lapb-module.txt
6198 F:      include/*/lapb.h
6199 F:      net/lapb/
6200
6201 LASI 53c700 driver for PARISC
6202 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
6203 L:      linux-scsi@vger.kernel.org
6204 S:      Maintained
6205 F:      Documentation/scsi/53c700.txt
6206 F:      drivers/scsi/53c700*
6207
6208 LED SUBSYSTEM
6209 M:      Richard Purdie <rpurdie@rpsys.net>
6210 M:      Jacek Anaszewski <j.anaszewski@samsung.com>
6211 L:      linux-leds@vger.kernel.org
6212 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
6213 S:      Maintained
6214 F:      drivers/leds/
6215 F:      include/linux/leds.h
6216
6217 LEGACY EEPROM DRIVER
6218 M:      Jean Delvare <jdelvare@suse.com>
6219 S:      Maintained
6220 F:      Documentation/misc-devices/eeprom
6221 F:      drivers/misc/eeprom/eeprom.c
6222
6223 LEGO USB Tower driver
6224 M:      Juergen Stuber <starblue@users.sourceforge.net>
6225 L:      legousb-devel@lists.sourceforge.net
6226 W:      http://legousb.sourceforge.net/
6227 S:      Maintained
6228 F:      drivers/usb/misc/legousbtower.c
6229
6230 LG2160 MEDIA DRIVER
6231 M:      Michael Krufky <mkrufky@linuxtv.org>
6232 L:      linux-media@vger.kernel.org
6233 W:      http://linuxtv.org/
6234 W:      http://github.com/mkrufky
6235 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6236 T:      git git://linuxtv.org/mkrufky/tuners.git
6237 S:      Maintained
6238 F:      drivers/media/dvb-frontends/lg2160.*
6239
6240 LGDT3305 MEDIA DRIVER
6241 M:      Michael Krufky <mkrufky@linuxtv.org>
6242 L:      linux-media@vger.kernel.org
6243 W:      http://linuxtv.org/
6244 W:      http://github.com/mkrufky
6245 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6246 T:      git git://linuxtv.org/mkrufky/tuners.git
6247 S:      Maintained
6248 F:      drivers/media/dvb-frontends/lgdt3305.*
6249
6250 LGUEST
6251 M:      Rusty Russell <rusty@rustcorp.com.au>
6252 L:      lguest@lists.ozlabs.org
6253 W:      http://lguest.ozlabs.org/
6254 S:      Odd Fixes
6255 F:      arch/x86/include/asm/lguest*.h
6256 F:      arch/x86/lguest/
6257 F:      drivers/lguest/
6258 F:      include/linux/lguest*.h
6259 F:      tools/lguest/
6260
6261 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
6262 M:      Tejun Heo <tj@kernel.org>
6263 L:      linux-ide@vger.kernel.org
6264 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6265 S:      Maintained
6266 F:      drivers/ata/
6267 F:      include/linux/ata.h
6268 F:      include/linux/libata.h
6269
6270 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
6271 M:      Viresh Kumar <vireshk@kernel.org>
6272 L:      linux-ide@vger.kernel.org
6273 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6274 S:      Maintained
6275 F:      include/linux/pata_arasan_cf_data.h
6276 F:      drivers/ata/pata_arasan_cf.c
6277
6278 LIBATA PATA DRIVERS
6279 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6280 M:      Tejun Heo <tj@kernel.org>
6281 L:      linux-ide@vger.kernel.org
6282 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6283 S:      Maintained
6284 F:      drivers/ata/pata_*.c
6285 F:      drivers/ata/ata_generic.c
6286
6287 LIBATA SATA AHCI PLATFORM devices support
6288 M:      Hans de Goede <hdegoede@redhat.com>
6289 M:      Tejun Heo <tj@kernel.org>
6290 L:      linux-ide@vger.kernel.org
6291 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6292 S:      Maintained
6293 F:      drivers/ata/ahci_platform.c
6294 F:      drivers/ata/libahci_platform.c
6295 F:      include/linux/ahci_platform.h
6296
6297 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
6298 M:      Mikael Pettersson <mikpelinux@gmail.com>
6299 L:      linux-ide@vger.kernel.org
6300 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6301 S:      Maintained
6302 F:      drivers/ata/sata_promise.*
6303
6304 LIBLOCKDEP
6305 M:      Sasha Levin <sasha.levin@oracle.com>
6306 S:      Maintained
6307 F:      tools/lib/lockdep/
6308
6309 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
6310 M:      Dan Williams <dan.j.williams@intel.com>
6311 L:      linux-nvdimm@lists.01.org
6312 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6313 S:      Supported
6314 F:      drivers/nvdimm/*
6315 F:      include/linux/nd.h
6316 F:      include/linux/libnvdimm.h
6317 F:      include/uapi/linux/ndctl.h
6318
6319 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
6320 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6321 L:      linux-nvdimm@lists.01.org
6322 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6323 S:      Supported
6324 F:      drivers/nvdimm/blk.c
6325 F:      drivers/nvdimm/region_devs.c
6326 F:      drivers/acpi/nfit*
6327
6328 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
6329 M:      Vishal Verma <vishal.l.verma@intel.com>
6330 L:      linux-nvdimm@lists.01.org
6331 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6332 S:      Supported
6333 F:      drivers/nvdimm/btt*
6334
6335 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
6336 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6337 L:      linux-nvdimm@lists.01.org
6338 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6339 S:      Supported
6340 F:      drivers/nvdimm/pmem.c
6341 F:      include/linux/pmem.h
6342 F:      arch/*/include/asm/pmem.h
6343
6344 LIGHTNVM PLATFORM SUPPORT
6345 M:      Matias Bjorling <mb@lightnvm.io>
6346 W:      http://github/OpenChannelSSD
6347 S:      Maintained
6348 F:      drivers/lightnvm/
6349 F:      include/linux/lightnvm.h
6350 F:      include/uapi/linux/lightnvm.h
6351
6352 LINUX FOR IBM pSERIES (RS/6000)
6353 M:      Paul Mackerras <paulus@au.ibm.com>
6354 W:      http://www.ibm.com/linux/ltc/projects/ppc
6355 S:      Supported
6356 F:      arch/powerpc/boot/rs6000.h
6357
6358 LINUX FOR POWERPC (32-BIT AND 64-BIT)
6359 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6360 M:      Paul Mackerras <paulus@samba.org>
6361 M:      Michael Ellerman <mpe@ellerman.id.au>
6362 W:      http://www.penguinppc.org/
6363 L:      linuxppc-dev@lists.ozlabs.org
6364 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
6365 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
6366 S:      Supported
6367 F:      Documentation/powerpc/
6368 F:      arch/powerpc/
6369
6370 LINUX FOR POWER MACINTOSH
6371 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6372 W:      http://www.penguinppc.org/
6373 L:      linuxppc-dev@lists.ozlabs.org
6374 S:      Maintained
6375 F:      arch/powerpc/platforms/powermac/
6376 F:      drivers/macintosh/
6377
6378 LINUX FOR POWERPC EMBEDDED MPC5XXX
6379 M:      Anatolij Gustschin <agust@denx.de>
6380 L:      linuxppc-dev@lists.ozlabs.org
6381 T:      git git://git.denx.de/linux-denx-agust.git
6382 S:      Maintained
6383 F:      arch/powerpc/platforms/512x/
6384 F:      arch/powerpc/platforms/52xx/
6385
6386 LINUX FOR POWERPC EMBEDDED PPC4XX
6387 M:      Alistair Popple <alistair@popple.id.au>
6388 M:      Matt Porter <mporter@kernel.crashing.org>
6389 W:      http://www.penguinppc.org/
6390 L:      linuxppc-dev@lists.ozlabs.org
6391 S:      Maintained
6392 F:      arch/powerpc/platforms/40x/
6393 F:      arch/powerpc/platforms/44x/
6394
6395 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
6396 L:      linuxppc-dev@lists.ozlabs.org
6397 S:      Orphan
6398 F:      arch/powerpc/*/*virtex*
6399 F:      arch/powerpc/*/*/*virtex*
6400
6401 LINUX FOR POWERPC EMBEDDED PPC8XX
6402 M:      Vitaly Bordug <vitb@kernel.crashing.org>
6403 W:      http://www.penguinppc.org/
6404 L:      linuxppc-dev@lists.ozlabs.org
6405 S:      Maintained
6406 F:      arch/powerpc/platforms/8xx/
6407
6408 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
6409 M:      Scott Wood <scottwood@freescale.com>
6410 M:      Kumar Gala <galak@kernel.crashing.org>
6411 W:      http://www.penguinppc.org/
6412 L:      linuxppc-dev@lists.ozlabs.org
6413 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
6414 S:      Maintained
6415 F:      arch/powerpc/platforms/83xx/
6416 F:      arch/powerpc/platforms/85xx/
6417
6418 LINUX FOR POWERPC PA SEMI PWRFICIENT
6419 M:      Olof Johansson <olof@lixom.net>
6420 L:      linuxppc-dev@lists.ozlabs.org
6421 S:      Maintained
6422 F:      arch/powerpc/platforms/pasemi/
6423 F:      drivers/*/*pasemi*
6424 F:      drivers/*/*/*pasemi*
6425
6426 LINUX SECURITY MODULE (LSM) FRAMEWORK
6427 M:      Chris Wright <chrisw@sous-sol.org>
6428 L:      linux-security-module@vger.kernel.org
6429 S:      Supported
6430
6431 LIS3LV02D ACCELEROMETER DRIVER
6432 M:      Eric Piel <eric.piel@tremplin-utc.net>
6433 S:      Maintained
6434 F:      Documentation/misc-devices/lis3lv02d
6435 F:      drivers/misc/lis3lv02d/
6436 F:      drivers/platform/x86/hp_accel.c
6437
6438 LIVE PATCHING
6439 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6440 M:      Seth Jennings <sjenning@redhat.com>
6441 M:      Jiri Kosina <jikos@kernel.org>
6442 M:      Vojtech Pavlik <vojtech@suse.com>
6443 S:      Maintained
6444 F:      kernel/livepatch/
6445 F:      include/linux/livepatch.h
6446 F:      arch/x86/include/asm/livepatch.h
6447 F:      arch/x86/kernel/livepatch.c
6448 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
6449 F:      samples/livepatch/
6450 L:      live-patching@vger.kernel.org
6451 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
6452
6453 LLC (802.2)
6454 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
6455 S:      Maintained
6456 F:      include/linux/llc.h
6457 F:      include/uapi/linux/llc.h
6458 F:      include/net/llc*
6459 F:      net/llc/
6460
6461 LM73 HARDWARE MONITOR DRIVER
6462 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
6463 L:      lm-sensors@lm-sensors.org
6464 S:      Maintained
6465 F:      drivers/hwmon/lm73.c
6466
6467 LM78 HARDWARE MONITOR DRIVER
6468 M:      Jean Delvare <jdelvare@suse.com>
6469 L:      lm-sensors@lm-sensors.org
6470 S:      Maintained
6471 F:      Documentation/hwmon/lm78
6472 F:      drivers/hwmon/lm78.c
6473
6474 LM83 HARDWARE MONITOR DRIVER
6475 M:      Jean Delvare <jdelvare@suse.com>
6476 L:      lm-sensors@lm-sensors.org
6477 S:      Maintained
6478 F:      Documentation/hwmon/lm83
6479 F:      drivers/hwmon/lm83.c
6480
6481 LM90 HARDWARE MONITOR DRIVER
6482 M:      Jean Delvare <jdelvare@suse.com>
6483 L:      lm-sensors@lm-sensors.org
6484 S:      Maintained
6485 F:      Documentation/hwmon/lm90
6486 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
6487 F:      drivers/hwmon/lm90.c
6488
6489 LM95234 HARDWARE MONITOR DRIVER
6490 M:      Guenter Roeck <linux@roeck-us.net>
6491 L:      lm-sensors@lm-sensors.org
6492 S:      Maintained
6493 F:      Documentation/hwmon/lm95234
6494 F:      drivers/hwmon/lm95234.c
6495
6496 LME2510 MEDIA DRIVER
6497 M:      Malcolm Priestley <tvboxspy@gmail.com>
6498 L:      linux-media@vger.kernel.org
6499 W:      http://linuxtv.org/
6500 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6501 S:      Maintained
6502 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
6503
6504 LOCKDEP AND LOCKSTAT
6505 M:      Peter Zijlstra <peterz@infradead.org>
6506 M:      Ingo Molnar <mingo@redhat.com>
6507 L:      linux-kernel@vger.kernel.org
6508 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
6509 S:      Maintained
6510 F:      Documentation/locking/lockdep*.txt
6511 F:      Documentation/locking/lockstat.txt
6512 F:      include/linux/lockdep.h
6513 F:      kernel/locking/
6514
6515 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
6516 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
6517 L:      linux-ntfs-dev@lists.sourceforge.net
6518 W:      http://www.linux-ntfs.org/content/view/19/37/
6519 S:      Maintained
6520 F:      Documentation/ldm.txt
6521 F:      block/partitions/ldm.*
6522
6523 LogFS
6524 M:      Joern Engel <joern@logfs.org>
6525 M:      Prasad Joshi <prasadjoshi.linux@gmail.com>
6526 L:      logfs@logfs.org
6527 W:      logfs.org
6528 S:      Maintained
6529 F:      fs/logfs/
6530
6531 LPC32XX MACHINE SUPPORT
6532 M:      Roland Stigge <stigge@antcom.de>
6533 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6534 S:      Maintained
6535 F:      arch/arm/mach-lpc32xx/
6536
6537 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
6538 M:      Nagalakshmi Nandigama <nagalakshmi.nandigama@avagotech.com>
6539 M:      Praveen Krishnamoorthy <praveen.krishnamoorthy@avagotech.com>
6540 M:      Sreekanth Reddy <sreekanth.reddy@avagotech.com>
6541 M:      Abhijit Mahajan <abhijit.mahajan@avagotech.com>
6542 L:      MPT-FusionLinux.pdl@avagotech.com
6543 L:      linux-scsi@vger.kernel.org
6544 W:      http://www.lsilogic.com/support
6545 S:      Supported
6546 F:      drivers/message/fusion/
6547 F:      drivers/scsi/mpt2sas/
6548 F:      drivers/scsi/mpt3sas/
6549
6550 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
6551 M:      Matthew Wilcox <matthew@wil.cx>
6552 L:      linux-scsi@vger.kernel.org
6553 S:      Maintained
6554 F:      drivers/scsi/sym53c8xx_2/
6555
6556 LTC4261 HARDWARE MONITOR DRIVER
6557 M:      Guenter Roeck <linux@roeck-us.net>
6558 L:      lm-sensors@lm-sensors.org
6559 S:      Maintained
6560 F:      Documentation/hwmon/ltc4261
6561 F:      drivers/hwmon/ltc4261.c
6562
6563 LTP (Linux Test Project)
6564 M:      Mike Frysinger <vapier@gentoo.org>
6565 M:      Cyril Hrubis <chrubis@suse.cz>
6566 M:      Wanlong Gao <wanlong.gao@gmail.com>
6567 M:      Jan Stancek <jstancek@redhat.com>
6568 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
6569 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
6570 L:      ltp@lists.linux.it (subscribers-only)
6571 W:      http://linux-test-project.github.io/
6572 T:      git git://github.com/linux-test-project/ltp.git
6573 S:      Maintained
6574
6575 M32R ARCHITECTURE
6576 W:      http://www.linux-m32r.org/
6577 S:      Orphan
6578 F:      arch/m32r/
6579
6580 M68K ARCHITECTURE
6581 M:      Geert Uytterhoeven <geert@linux-m68k.org>
6582 L:      linux-m68k@lists.linux-m68k.org
6583 W:      http://www.linux-m68k.org/
6584 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
6585 S:      Maintained
6586 F:      arch/m68k/
6587 F:      drivers/zorro/
6588
6589 M68K ON APPLE MACINTOSH
6590 M:      Joshua Thompson <funaho@jurai.org>
6591 W:      http://www.mac.linux-m68k.org/
6592 L:      linux-m68k@lists.linux-m68k.org
6593 S:      Maintained
6594 F:      arch/m68k/mac/
6595
6596 M68K ON HP9000/300
6597 M:      Philip Blundell <philb@gnu.org>
6598 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
6599 S:      Maintained
6600 F:      arch/m68k/hp300/
6601
6602 M88DS3103 MEDIA DRIVER
6603 M:      Antti Palosaari <crope@iki.fi>
6604 L:      linux-media@vger.kernel.org
6605 W:      http://linuxtv.org/
6606 W:      http://palosaari.fi/linux/
6607 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6608 T:      git git://linuxtv.org/anttip/media_tree.git
6609 S:      Maintained
6610 F:      drivers/media/dvb-frontends/m88ds3103*
6611
6612 M88RS2000 MEDIA DRIVER
6613 M:      Malcolm Priestley <tvboxspy@gmail.com>
6614 L:      linux-media@vger.kernel.org
6615 W:      http://linuxtv.org/
6616 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6617 S:      Maintained
6618 F:      drivers/media/dvb-frontends/m88rs2000*
6619
6620 MA901 MASTERKIT USB FM RADIO DRIVER
6621 M:      Alexey Klimov <klimov.linux@gmail.com>
6622 L:      linux-media@vger.kernel.org
6623 T:      git git://linuxtv.org/media_tree.git
6624 S:      Maintained
6625 F:      drivers/media/radio/radio-ma901.c
6626
6627 MAC80211
6628 M:      Johannes Berg <johannes@sipsolutions.net>
6629 L:      linux-wireless@vger.kernel.org
6630 W:      http://wireless.kernel.org/
6631 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6632 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
6633 S:      Maintained
6634 F:      Documentation/networking/mac80211-injection.txt
6635 F:      include/net/mac80211.h
6636 F:      net/mac80211/
6637
6638 MACVLAN DRIVER
6639 M:      Patrick McHardy <kaber@trash.net>
6640 L:      netdev@vger.kernel.org
6641 S:      Maintained
6642 F:      drivers/net/macvlan.c
6643 F:      include/linux/if_macvlan.h
6644
6645 MAILBOX API
6646 M:      Jassi Brar <jassisinghbrar@gmail.com>
6647 L:      linux-kernel@vger.kernel.org
6648 S:      Maintained
6649 F:      drivers/mailbox/
6650 F:      include/linux/mailbox_client.h
6651 F:      include/linux/mailbox_controller.h
6652
6653 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
6654 M:      Michael Kerrisk <mtk.manpages@gmail.com>
6655 W:      http://www.kernel.org/doc/man-pages
6656 L:      linux-man@vger.kernel.org
6657 S:      Maintained
6658
6659 MARVELL ARMADA DRM SUPPORT
6660 M:      Russell King <rmk+kernel@arm.linux.org.uk>
6661 S:      Maintained
6662 F:      drivers/gpu/drm/armada/
6663
6664 MARVELL 88E6352 DSA support
6665 M:      Guenter Roeck <linux@roeck-us.net>
6666 S:      Maintained
6667 F:      drivers/net/dsa/mv88e6352.c
6668
6669 MARVELL CRYPTO DRIVER
6670 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
6671 M:      Arnaud Ebalard <arno@natisbad.org>
6672 F:      drivers/crypto/marvell/
6673 S:      Maintained
6674 L:      linux-crypto@vger.kernel.org
6675
6676 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
6677 M:      Mirko Lindner <mlindner@marvell.com>
6678 M:      Stephen Hemminger <stephen@networkplumber.org>
6679 L:      netdev@vger.kernel.org
6680 S:      Maintained
6681 F:      drivers/net/ethernet/marvell/sk*
6682
6683 MARVELL LIBERTAS WIRELESS DRIVER
6684 L:      libertas-dev@lists.infradead.org
6685 S:      Orphan
6686 F:      drivers/net/wireless/libertas/
6687
6688 MARVELL MV643XX ETHERNET DRIVER
6689 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
6690 L:      netdev@vger.kernel.org
6691 S:      Maintained
6692 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
6693 F:      include/linux/mv643xx.h
6694
6695 MARVELL MVNETA ETHERNET DRIVER
6696 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
6697 L:      netdev@vger.kernel.org
6698 S:      Maintained
6699 F:      drivers/net/ethernet/marvell/mvneta.*
6700
6701 MARVELL MWIFIEX WIRELESS DRIVER
6702 M:      Amitkumar Karwar <akarwar@marvell.com>
6703 M:      Nishant Sarmukadam <nishants@marvell.com>
6704 L:      linux-wireless@vger.kernel.org
6705 S:      Maintained
6706 F:      drivers/net/wireless/mwifiex/
6707
6708 MARVELL MWL8K WIRELESS DRIVER
6709 M:      Lennert Buytenhek <buytenh@wantstofly.org>
6710 L:      linux-wireless@vger.kernel.org
6711 S:      Odd Fixes
6712 F:      drivers/net/wireless/mwl8k.c
6713
6714 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
6715 M:      Nicolas Pitre <nico@fluxnic.net>
6716 S:      Odd Fixes
6717 F:      drivers/mmc/host/mvsdio.*
6718
6719 MATROX FRAMEBUFFER DRIVER
6720 L:      linux-fbdev@vger.kernel.org
6721 S:      Orphan
6722 F:      drivers/video/fbdev/matrox/matroxfb_*
6723 F:      include/uapi/linux/matroxfb.h
6724
6725 MAX16065 HARDWARE MONITOR DRIVER
6726 M:      Guenter Roeck <linux@roeck-us.net>
6727 L:      lm-sensors@lm-sensors.org
6728 S:      Maintained
6729 F:      Documentation/hwmon/max16065
6730 F:      drivers/hwmon/max16065.c
6731
6732 MAX20751 HARDWARE MONITOR DRIVER
6733 M:      Guenter Roeck <linux@roeck-us.net>
6734 L:      lm-sensors@lm-sensors.org
6735 S:      Maintained
6736 F:      Documentation/hwmon/max20751
6737 F:      drivers/hwmon/max20751.c
6738
6739 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6740 M:      "Hans J. Koch" <hjk@hansjkoch.de>
6741 L:      lm-sensors@lm-sensors.org
6742 S:      Maintained
6743 F:      Documentation/hwmon/max6650
6744 F:      drivers/hwmon/max6650.c
6745
6746 MAX6697 HARDWARE MONITOR DRIVER
6747 M:      Guenter Roeck <linux@roeck-us.net>
6748 L:      lm-sensors@lm-sensors.org
6749 S:      Maintained
6750 F:      Documentation/hwmon/max6697
6751 F:      Documentation/devicetree/bindings/i2c/max6697.txt
6752 F:      drivers/hwmon/max6697.c
6753 F:      include/linux/platform_data/max6697.h
6754
6755 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
6756 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6757 L:      linux-pm@vger.kernel.org
6758 S:      Supported
6759 F:      drivers/power/max14577_charger.c
6760 F:      drivers/power/max77693_charger.c
6761
6762 MAXIM MAX77802 MULTIFUNCTION PMIC DEVICE DRIVERS
6763 M:      Javier Martinez Canillas <javier@osg.samsung.com>
6764 L:      linux-kernel@vger.kernel.org
6765 S:      Supported
6766 F:      drivers/*/*max77802.c
6767 F:      Documentation/devicetree/bindings/*/*max77802.txt
6768 F:      include/dt-bindings/*/*max77802.h
6769
6770 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
6771 M:      Chanwoo Choi <cw00.choi@samsung.com>
6772 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6773 L:      linux-kernel@vger.kernel.org
6774 S:      Supported
6775 F:      drivers/*/max14577.c
6776 F:      drivers/*/max77686.c
6777 F:      drivers/*/max77693.c
6778 F:      drivers/extcon/extcon-max14577.c
6779 F:      drivers/extcon/extcon-max77693.c
6780 F:      drivers/rtc/rtc-max77686.c
6781 F:      drivers/clk/clk-max77686.c
6782 F:      Documentation/devicetree/bindings/mfd/max14577.txt
6783 F:      Documentation/devicetree/bindings/*/max77686.txt
6784 F:      Documentation/devicetree/bindings/mfd/max77693.txt
6785 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
6786 F:      include/linux/mfd/max14577*.h
6787 F:      include/linux/mfd/max77686*.h
6788 F:      include/linux/mfd/max77693*.h
6789
6790 MAXIRADIO FM RADIO RECEIVER DRIVER
6791 M:      Hans Verkuil <hverkuil@xs4all.nl>
6792 L:      linux-media@vger.kernel.org
6793 T:      git git://linuxtv.org/media_tree.git
6794 W:      http://linuxtv.org
6795 S:      Maintained
6796 F:      drivers/media/radio/radio-maxiradio*
6797
6798 MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVER
6799 M:      Peter Rosin <peda@axentia.se>
6800 L:      linux-iio@vger.kernel.org
6801 S:      Maintained
6802 F:      drivers/iio/potentiometer/mcp4531.c
6803
6804 MEDIA DRIVERS FOR RENESAS - VSP1
6805 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6806 L:      linux-media@vger.kernel.org
6807 L:      linux-sh@vger.kernel.org
6808 T:      git git://linuxtv.org/media_tree.git
6809 S:      Supported
6810 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
6811 F:      drivers/media/platform/vsp1/
6812
6813 MEDIA DRIVERS FOR ASCOT2E
6814 M:      Sergey Kozlov <serjk@netup.ru>
6815 L:      linux-media@vger.kernel.org
6816 W:      http://linuxtv.org
6817 W:      http://netup.tv/
6818 T:      git git://linuxtv.org/media_tree.git
6819 S:      Supported
6820 F:      drivers/media/dvb-frontends/ascot2e*
6821
6822 MEDIA DRIVERS FOR CXD2841ER
6823 M:      Sergey Kozlov <serjk@netup.ru>
6824 L:      linux-media@vger.kernel.org
6825 W:      http://linuxtv.org/
6826 W:      http://netup.tv/
6827 T:      git git://linuxtv.org/media_tree.git
6828 S:      Supported
6829 F:      drivers/media/dvb-frontends/cxd2841er*
6830
6831 MEDIA DRIVERS FOR HORUS3A
6832 M:      Sergey Kozlov <serjk@netup.ru>
6833 L:      linux-media@vger.kernel.org
6834 W:      http://linuxtv.org/
6835 W:      http://netup.tv/
6836 T:      git git://linuxtv.org/media_tree.git
6837 S:      Supported
6838 F:      drivers/media/dvb-frontends/horus3a*
6839
6840 MEDIA DRIVERS FOR LNBH25
6841 M:      Sergey Kozlov <serjk@netup.ru>
6842 L:      linux-media@vger.kernel.org
6843 W:      http://linuxtv.org/
6844 W:      http://netup.tv/
6845 T:      git git://linuxtv.org/media_tree.git
6846 S:      Supported
6847 F:      drivers/media/dvb-frontends/lnbh25*
6848
6849 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
6850 M:      Sergey Kozlov <serjk@netup.ru>
6851 L:      linux-media@vger.kernel.org
6852 W:      http://linuxtv.org/
6853 W:      http://netup.tv/
6854 T:      git git://linuxtv.org/media_tree.git
6855 S:      Supported
6856 F:      drivers/media/pci/netup_unidvb/*
6857
6858 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
6859 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
6860 P:      LinuxTV.org Project
6861 L:      linux-media@vger.kernel.org
6862 W:      http://linuxtv.org
6863 Q:      http://patchwork.kernel.org/project/linux-media/list/
6864 T:      git git://linuxtv.org/media_tree.git
6865 S:      Maintained
6866 F:      Documentation/dvb/
6867 F:      Documentation/video4linux/
6868 F:      Documentation/DocBook/media/
6869 F:      drivers/media/
6870 F:      drivers/staging/media/
6871 F:      include/media/
6872 F:      include/uapi/linux/dvb/
6873 F:      include/uapi/linux/videodev2.h
6874 F:      include/uapi/linux/media.h
6875 F:      include/uapi/linux/v4l2-*
6876 F:      include/uapi/linux/meye.h
6877 F:      include/uapi/linux/ivtv*
6878 F:      include/uapi/linux/uvcvideo.h
6879
6880 MEDIATEK MT7601U WIRELESS LAN DRIVER
6881 M:      Jakub Kicinski <kubakici@wp.pl>
6882 L:      linux-wireless@vger.kernel.org
6883 S:      Maintained
6884 F:      drivers/net/wireless/mediatek/mt7601u/
6885
6886 MEGARAID SCSI/SAS DRIVERS
6887 M:      Kashyap Desai <kashyap.desai@avagotech.com>
6888 M:      Sumit Saxena <sumit.saxena@avagotech.com>
6889 M:      Uday Lingala <uday.lingala@avagotech.com>
6890 L:      megaraidlinux.pdl@avagotech.com
6891 L:      linux-scsi@vger.kernel.org
6892 W:      http://www.lsi.com
6893 S:      Maintained
6894 F:      Documentation/scsi/megaraid.txt
6895 F:      drivers/scsi/megaraid.*
6896 F:      drivers/scsi/megaraid/
6897
6898 MELLANOX ETHERNET DRIVER (mlx4_en)
6899 M:      Amir Vadai <amirv@mellanox.com>
6900 L:      netdev@vger.kernel.org
6901 S:      Supported
6902 W:      http://www.mellanox.com
6903 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6904 F:      drivers/net/ethernet/mellanox/mlx4/en_*
6905
6906 MELLANOX ETHERNET SWITCH DRIVERS
6907 M:      Jiri Pirko <jiri@mellanox.com>
6908 M:      Ido Schimmel <idosch@mellanox.com>
6909 L:      netdev@vger.kernel.org
6910 S:      Supported
6911 W:      http://www.mellanox.com
6912 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6913 F:      drivers/net/ethernet/mellanox/mlxsw/
6914
6915 MEMBARRIER SUPPORT
6916 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
6917 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
6918 L:      linux-kernel@vger.kernel.org
6919 S:      Supported
6920 F:      kernel/membarrier.c
6921 F:      include/uapi/linux/membarrier.h
6922
6923 MEMORY MANAGEMENT
6924 L:      linux-mm@kvack.org
6925 W:      http://www.linux-mm.org
6926 S:      Maintained
6927 F:      include/linux/mm.h
6928 F:      include/linux/gfp.h
6929 F:      include/linux/mmzone.h
6930 F:      include/linux/memory_hotplug.h
6931 F:      include/linux/vmalloc.h
6932 F:      mm/
6933
6934 MEMORY TECHNOLOGY DEVICES (MTD)
6935 M:      David Woodhouse <dwmw2@infradead.org>
6936 M:      Brian Norris <computersforpeace@gmail.com>
6937 L:      linux-mtd@lists.infradead.org
6938 W:      http://www.linux-mtd.infradead.org/
6939 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
6940 T:      git git://git.infradead.org/linux-mtd.git
6941 T:      git git://git.infradead.org/l2-mtd.git
6942 S:      Maintained
6943 F:      drivers/mtd/
6944 F:      include/linux/mtd/
6945 F:      include/uapi/mtd/
6946
6947 MEN A21 WATCHDOG DRIVER
6948 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6949 L:      linux-watchdog@vger.kernel.org
6950 S:      Maintained
6951 F:      drivers/watchdog/mena21_wdt.c
6952
6953 MEN CHAMELEON BUS (mcb)
6954 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6955 S:      Maintained
6956 F:      drivers/mcb/
6957 F:      include/linux/mcb.h
6958 F:      Documentation/men-chameleon-bus.txt
6959
6960 MEN F21BMC (Board Management Controller)
6961 M:      Andreas Werner <andreas.werner@men.de>
6962 S:      Supported
6963 F:      drivers/mfd/menf21bmc.c
6964 F:      drivers/watchdog/menf21bmc_wdt.c
6965 F:      drivers/leds/leds-menf21bmc.c
6966 F:      drivers/hwmon/menf21bmc_hwmon.c
6967 F:      Documentation/hwmon/menf21bmc
6968
6969 METAG ARCHITECTURE
6970 M:      James Hogan <james.hogan@imgtec.com>
6971 L:      linux-metag@vger.kernel.org
6972 S:      Supported
6973 F:      arch/metag/
6974 F:      Documentation/metag/
6975 F:      Documentation/devicetree/bindings/metag/
6976 F:      drivers/clocksource/metag_generic.c
6977 F:      drivers/irqchip/irq-metag.c
6978 F:      drivers/irqchip/irq-metag-ext.c
6979 F:      drivers/tty/metag_da.c
6980
6981 MICROBLAZE ARCHITECTURE
6982 M:      Michal Simek <monstr@monstr.eu>
6983 W:      http://www.monstr.eu/fdt/
6984 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
6985 S:      Supported
6986 F:      arch/microblaze/
6987
6988 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
6989 M:      Chen Yu <yu.c.chen@intel.com>
6990 L:      platform-driver-x86@vger.kernel.org
6991 S:      Supported
6992 F:      drivers/platform/x86/surfacepro3_button.c
6993
6994 MICROTEK X6 SCANNER
6995 M:      Oliver Neukum <oliver@neukum.org>
6996 S:      Maintained
6997 F:      drivers/usb/image/microtek.*
6998
6999 MIPS
7000 M:      Ralf Baechle <ralf@linux-mips.org>
7001 L:      linux-mips@linux-mips.org
7002 W:      http://www.linux-mips.org/
7003 T:      git git://git.linux-mips.org/pub/scm/ralf/linux.git
7004 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
7005 S:      Supported
7006 F:      Documentation/mips/
7007 F:      arch/mips/
7008
7009 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
7010 M:      Hans Verkuil <hverkuil@xs4all.nl>
7011 L:      linux-media@vger.kernel.org
7012 T:      git git://linuxtv.org/media_tree.git
7013 W:      http://linuxtv.org
7014 S:      Odd Fixes
7015 F:      drivers/media/radio/radio-miropcm20*
7016
7017 Mellanox MLX5 core VPI driver
7018 M:      Eli Cohen <eli@mellanox.com>
7019 L:      netdev@vger.kernel.org
7020 L:      linux-rdma@vger.kernel.org
7021 W:      http://www.mellanox.com
7022 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7023 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
7024 T:      git git://openfabrics.org/~eli/connect-ib.git
7025 S:      Supported
7026 F:      drivers/net/ethernet/mellanox/mlx5/core/
7027 F:      include/linux/mlx5/
7028
7029 Mellanox MLX5 IB driver
7030 M:      Eli Cohen <eli@mellanox.com>
7031 L:      linux-rdma@vger.kernel.org
7032 W:      http://www.mellanox.com
7033 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
7034 T:      git git://openfabrics.org/~eli/connect-ib.git
7035 S:      Supported
7036 F:      include/linux/mlx5/
7037 F:      drivers/infiniband/hw/mlx5/
7038
7039 MELEXIS MLX90614 DRIVER
7040 M:      Crt Mori <cmo@melexis.com>
7041 L:      linux-iio@vger.kernel.org
7042 W:      http://www.melexis.com
7043 S:      Supported
7044 F:      drivers/iio/temperature/mlx90614.c
7045
7046 MN88472 MEDIA DRIVER
7047 M:      Antti Palosaari <crope@iki.fi>
7048 L:      linux-media@vger.kernel.org
7049 W:      http://linuxtv.org/
7050 W:      http://palosaari.fi/linux/
7051 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7052 T:      git git://linuxtv.org/anttip/media_tree.git
7053 S:      Maintained
7054 F:      drivers/staging/media/mn88472/
7055 F:      drivers/media/dvb-frontends/mn88472.h
7056
7057 MN88473 MEDIA DRIVER
7058 M:      Antti Palosaari <crope@iki.fi>
7059 L:      linux-media@vger.kernel.org
7060 W:      http://linuxtv.org/
7061 W:      http://palosaari.fi/linux/
7062 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7063 T:      git git://linuxtv.org/anttip/media_tree.git
7064 S:      Maintained
7065 F:      drivers/staging/media/mn88473/
7066 F:      drivers/media/dvb-frontends/mn88473.h
7067
7068 MODULE SUPPORT
7069 M:      Rusty Russell <rusty@rustcorp.com.au>
7070 S:      Maintained
7071 F:      include/linux/module.h
7072 F:      kernel/module.c
7073
7074 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
7075 W:      http://popies.net/meye/
7076 S:      Orphan
7077 F:      Documentation/video4linux/meye.txt
7078 F:      drivers/media/pci/meye/
7079 F:      include/uapi/linux/meye.h
7080
7081 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
7082 M:      Jiri Slaby <jirislaby@gmail.com>
7083 S:      Maintained
7084 F:      Documentation/serial/moxa-smartio
7085 F:      drivers/tty/mxser.*
7086
7087 MR800 AVERMEDIA USB FM RADIO DRIVER
7088 M:      Alexey Klimov <klimov.linux@gmail.com>
7089 L:      linux-media@vger.kernel.org
7090 T:      git git://linuxtv.org/media_tree.git
7091 S:      Maintained
7092 F:      drivers/media/radio/radio-mr800.c
7093
7094 MRF24J40 IEEE 802.15.4 RADIO DRIVER
7095 M:      Alan Ott <alan@signal11.us>
7096 L:      linux-wpan@vger.kernel.org
7097 S:      Maintained
7098 F:      drivers/net/ieee802154/mrf24j40.c
7099 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
7100
7101 MSI LAPTOP SUPPORT
7102 M:      "Lee, Chun-Yi" <jlee@suse.com>
7103 L:      platform-driver-x86@vger.kernel.org
7104 S:      Maintained
7105 F:      drivers/platform/x86/msi-laptop.c
7106
7107 MSI WMI SUPPORT
7108 L:      platform-driver-x86@vger.kernel.org
7109 S:      Orphan
7110 F:      drivers/platform/x86/msi-wmi.c
7111
7112 MSI001 MEDIA DRIVER
7113 M:      Antti Palosaari <crope@iki.fi>
7114 L:      linux-media@vger.kernel.org
7115 W:      http://linuxtv.org/
7116 W:      http://palosaari.fi/linux/
7117 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7118 T:      git git://linuxtv.org/anttip/media_tree.git
7119 S:      Maintained
7120 F:      drivers/media/tuners/msi001*
7121
7122 MSI2500 MEDIA DRIVER
7123 M:      Antti Palosaari <crope@iki.fi>
7124 L:      linux-media@vger.kernel.org
7125 W:      http://linuxtv.org/
7126 W:      http://palosaari.fi/linux/
7127 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7128 T:      git git://linuxtv.org/anttip/media_tree.git
7129 S:      Maintained
7130 F:      drivers/media/usb/msi2500/
7131
7132 MSYSTEMS DISKONCHIP G3 MTD DRIVER
7133 M:      Robert Jarzmik <robert.jarzmik@free.fr>
7134 L:      linux-mtd@lists.infradead.org
7135 S:      Maintained
7136 F:      drivers/mtd/devices/docg3*
7137
7138 MT9M032 APTINA SENSOR DRIVER
7139 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7140 L:      linux-media@vger.kernel.org
7141 T:      git git://linuxtv.org/media_tree.git
7142 S:      Maintained
7143 F:      drivers/media/i2c/mt9m032.c
7144 F:      include/media/mt9m032.h
7145
7146 MT9P031 APTINA CAMERA SENSOR
7147 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7148 L:      linux-media@vger.kernel.org
7149 T:      git git://linuxtv.org/media_tree.git
7150 S:      Maintained
7151 F:      drivers/media/i2c/mt9p031.c
7152 F:      include/media/mt9p031.h
7153
7154 MT9T001 APTINA CAMERA SENSOR
7155 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7156 L:      linux-media@vger.kernel.org
7157 T:      git git://linuxtv.org/media_tree.git
7158 S:      Maintained
7159 F:      drivers/media/i2c/mt9t001.c
7160 F:      include/media/mt9t001.h
7161
7162 MT9V032 APTINA CAMERA SENSOR
7163 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7164 L:      linux-media@vger.kernel.org
7165 T:      git git://linuxtv.org/media_tree.git
7166 S:      Maintained
7167 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
7168 F:      drivers/media/i2c/mt9v032.c
7169 F:      include/media/mt9v032.h
7170
7171 MULTIFUNCTION DEVICES (MFD)
7172 M:      Lee Jones <lee.jones@linaro.org>
7173 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
7174 S:      Supported
7175 F:      drivers/mfd/
7176 F:      include/linux/mfd/
7177
7178 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
7179 M:      Ulf Hansson <ulf.hansson@linaro.org>
7180 L:      linux-mmc@vger.kernel.org
7181 T:      git git://git.linaro.org/people/ulf.hansson/mmc.git
7182 S:      Maintained
7183 F:      drivers/mmc/
7184 F:      include/linux/mmc/
7185 F:      include/uapi/linux/mmc/
7186
7187 MULTIMEDIA CARD (MMC) ETC. OVER SPI
7188 S:      Orphan
7189 F:      drivers/mmc/host/mmc_spi.c
7190 F:      include/linux/spi/mmc_spi.h
7191
7192 MULTISOUND SOUND DRIVER
7193 M:      Andrew Veliath <andrewtv@usa.net>
7194 S:      Maintained
7195 F:      Documentation/sound/oss/MultiSound
7196 F:      sound/oss/msnd*
7197
7198 MULTITECH MULTIPORT CARD (ISICOM)
7199 S:      Orphan
7200 F:      drivers/tty/isicom.c
7201 F:      include/linux/isicom.h
7202
7203 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
7204 M:      Felipe Balbi <balbi@ti.com>
7205 L:      linux-usb@vger.kernel.org
7206 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7207 S:      Maintained
7208 F:      drivers/usb/musb/
7209
7210 MXL5007T MEDIA DRIVER
7211 M:      Michael Krufky <mkrufky@linuxtv.org>
7212 L:      linux-media@vger.kernel.org
7213 W:      http://linuxtv.org/
7214 W:      http://github.com/mkrufky
7215 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7216 T:      git git://linuxtv.org/mkrufky/tuners.git
7217 S:      Maintained
7218 F:      drivers/media/tuners/mxl5007t.*
7219
7220 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
7221 M:      Hyong-Youb Kim <hykim@myri.com>
7222 L:      netdev@vger.kernel.org
7223 W:      https://www.myricom.com/support/downloads/myri10ge.html
7224 S:      Supported
7225 F:      drivers/net/ethernet/myricom/myri10ge/
7226
7227 NATSEMI ETHERNET DRIVER (DP8381x)
7228 S:      Orphan
7229 F:      drivers/net/ethernet/natsemi/natsemi.c
7230
7231 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
7232 M:      Daniel Mack <zonque@gmail.com>
7233 S:      Maintained
7234 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7235 W:      http://www.native-instruments.com
7236 F:      sound/usb/caiaq/
7237
7238 NCP FILESYSTEM
7239 M:      Petr Vandrovec <petr@vandrovec.name>
7240 S:      Odd Fixes
7241 F:      fs/ncpfs/
7242
7243 NCR 5380 SCSI DRIVERS
7244 M:      Finn Thain <fthain@telegraphics.com.au>
7245 M:      Michael Schmitz <schmitzmic@gmail.com>
7246 L:      linux-scsi@vger.kernel.org
7247 S:      Maintained
7248 F:      Documentation/scsi/g_NCR5380.txt
7249 F:      drivers/scsi/NCR5380.*
7250 F:      drivers/scsi/arm/cumana_1.c
7251 F:      drivers/scsi/arm/oak.c
7252 F:      drivers/scsi/atari_NCR5380.c
7253 F:      drivers/scsi/atari_scsi.*
7254 F:      drivers/scsi/dmx3191d.c
7255 F:      drivers/scsi/dtc.*
7256 F:      drivers/scsi/g_NCR5380.*
7257 F:      drivers/scsi/g_NCR5380_mmio.c
7258 F:      drivers/scsi/mac_scsi.*
7259 F:      drivers/scsi/pas16.*
7260 F:      drivers/scsi/sun3_scsi.*
7261 F:      drivers/scsi/sun3_scsi_vme.c
7262 F:      drivers/scsi/t128.*
7263
7264 NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
7265 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
7266 L:      linux-scsi@vger.kernel.org
7267 S:      Maintained
7268 F:      drivers/scsi/NCR_D700.*
7269
7270 NCT6775 HARDWARE MONITOR DRIVER
7271 M:      Guenter Roeck <linux@roeck-us.net>
7272 L:      lm-sensors@lm-sensors.org
7273 S:      Maintained
7274 F:      Documentation/hwmon/nct6775
7275 F:      drivers/hwmon/nct6775.c
7276
7277 NETEFFECT IWARP RNIC DRIVER (IW_NES)
7278 M:      Faisal Latif <faisal.latif@intel.com>
7279 L:      linux-rdma@vger.kernel.org
7280 W:      http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
7281 S:      Supported
7282 F:      drivers/infiniband/hw/nes/
7283
7284 NETEM NETWORK EMULATOR
7285 M:      Stephen Hemminger <stephen@networkplumber.org>
7286 L:      netem@lists.linux-foundation.org
7287 S:      Maintained
7288 F:      net/sched/sch_netem.c
7289
7290 NETERION 10GbE DRIVERS (s2io/vxge)
7291 M:      Jon Mason <jdmason@kudzu.us>
7292 L:      netdev@vger.kernel.org
7293 S:      Supported
7294 F:      Documentation/networking/s2io.txt
7295 F:      Documentation/networking/vxge.txt
7296 F:      drivers/net/ethernet/neterion/
7297
7298 NETFILTER ({IP,IP6,ARP,EB,NF}TABLES)
7299 M:      Pablo Neira Ayuso <pablo@netfilter.org>
7300 M:      Patrick McHardy <kaber@trash.net>
7301 M:      Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
7302 L:      netfilter-devel@vger.kernel.org
7303 L:      coreteam@netfilter.org
7304 W:      http://www.netfilter.org/
7305 W:      http://www.iptables.org/
7306 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
7307 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
7308 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
7309 S:      Supported
7310 F:      include/linux/netfilter*
7311 F:      include/linux/netfilter/
7312 F:      include/net/netfilter/
7313 F:      include/uapi/linux/netfilter*
7314 F:      include/uapi/linux/netfilter/
7315 F:      net/*/netfilter.c
7316 F:      net/*/netfilter/
7317 F:      net/netfilter/
7318 F:      net/bridge/br_netfilter*.c
7319
7320 NETLABEL
7321 M:      Paul Moore <paul@paul-moore.com>
7322 W:      http://netlabel.sf.net
7323 L:      netdev@vger.kernel.org
7324 S:      Maintained
7325 F:      Documentation/netlabel/
7326 F:      include/net/netlabel.h
7327 F:      net/netlabel/
7328
7329 NETROM NETWORK LAYER
7330 M:      Ralf Baechle <ralf@linux-mips.org>
7331 L:      linux-hams@vger.kernel.org
7332 W:      http://www.linux-ax25.org/
7333 S:      Maintained
7334 F:      include/net/netrom.h
7335 F:      include/uapi/linux/netrom.h
7336 F:      net/netrom/
7337
7338 NETWORK BLOCK DEVICE (NBD)
7339 M:      Markus Pargmann <mpa@pengutronix.de>
7340 S:      Maintained
7341 L:      nbd-general@lists.sourceforge.net
7342 T:      git git://git.pengutronix.de/git/mpa/linux-nbd.git
7343 F:      Documentation/blockdev/nbd.txt
7344 F:      drivers/block/nbd.c
7345 F:      include/uapi/linux/nbd.h
7346
7347 NETWORK DROP MONITOR
7348 M:      Neil Horman <nhorman@tuxdriver.com>
7349 L:      netdev@vger.kernel.org
7350 S:      Maintained
7351 W:      https://fedorahosted.org/dropwatch/
7352 F:      net/core/drop_monitor.c
7353
7354 NETWORKING [GENERAL]
7355 M:      "David S. Miller" <davem@davemloft.net>
7356 L:      netdev@vger.kernel.org
7357 W:      http://www.linuxfoundation.org/en/Net
7358 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7359 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7360 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7361 S:      Maintained
7362 F:      net/
7363 F:      include/net/
7364 F:      include/linux/in.h
7365 F:      include/linux/net.h
7366 F:      include/linux/netdevice.h
7367 F:      include/uapi/linux/in.h
7368 F:      include/uapi/linux/net.h
7369 F:      include/uapi/linux/netdevice.h
7370 F:      include/uapi/linux/net_namespace.h
7371 F:      tools/net/
7372 F:      tools/testing/selftests/net/
7373 F:      lib/random32.c
7374 F:      lib/test_bpf.c
7375
7376 NETWORKING [IPv4/IPv6]
7377 M:      "David S. Miller" <davem@davemloft.net>
7378 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
7379 M:      James Morris <jmorris@namei.org>
7380 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
7381 M:      Patrick McHardy <kaber@trash.net>
7382 L:      netdev@vger.kernel.org
7383 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7384 S:      Maintained
7385 F:      net/ipv4/
7386 F:      net/ipv6/
7387 F:      include/net/ip*
7388 F:      arch/x86/net/*
7389
7390 NETWORKING [IPSEC]
7391 M:      Steffen Klassert <steffen.klassert@secunet.com>
7392 M:      Herbert Xu <herbert@gondor.apana.org.au>
7393 M:      "David S. Miller" <davem@davemloft.net>
7394 L:      netdev@vger.kernel.org
7395 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
7396 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
7397 S:      Maintained
7398 F:      net/core/flow.c
7399 F:      net/xfrm/
7400 F:      net/key/
7401 F:      net/ipv4/xfrm*
7402 F:      net/ipv4/esp4.c
7403 F:      net/ipv4/ah4.c
7404 F:      net/ipv4/ipcomp.c
7405 F:      net/ipv4/ip_vti.c
7406 F:      net/ipv6/xfrm*
7407 F:      net/ipv6/esp6.c
7408 F:      net/ipv6/ah6.c
7409 F:      net/ipv6/ipcomp6.c
7410 F:      net/ipv6/ip6_vti.c
7411 F:      include/uapi/linux/xfrm.h
7412 F:      include/net/xfrm.h
7413
7414 NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
7415 M:      Paul Moore <paul@paul-moore.com>
7416 L:      netdev@vger.kernel.org
7417 S:      Maintained
7418
7419 NETWORKING [WIRELESS]
7420 L:      linux-wireless@vger.kernel.org
7421 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7422
7423 NETWORKING DRIVERS
7424 L:      netdev@vger.kernel.org
7425 W:      http://www.linuxfoundation.org/en/Net
7426 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7427 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7428 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7429 S:      Odd Fixes
7430 F:      drivers/net/
7431 F:      include/linux/if_*
7432 F:      include/linux/netdevice.h
7433 F:      include/linux/etherdevice.h
7434 F:      include/linux/fcdevice.h
7435 F:      include/linux/fddidevice.h
7436 F:      include/linux/hippidevice.h
7437 F:      include/linux/inetdevice.h
7438 F:      include/uapi/linux/if_*
7439 F:      include/uapi/linux/netdevice.h
7440
7441 NETWORKING DRIVERS (WIRELESS)
7442 M:      Kalle Valo <kvalo@codeaurora.org>
7443 L:      linux-wireless@vger.kernel.org
7444 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7445 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git/
7446 S:      Maintained
7447 F:      drivers/net/wireless/
7448
7449 NETXEN (1/10) GbE SUPPORT
7450 M:      Manish Chopra <manish.chopra@qlogic.com>
7451 M:      Sony Chacko <sony.chacko@qlogic.com>
7452 M:      Rajesh Borundia <rajesh.borundia@qlogic.com>
7453 L:      netdev@vger.kernel.org
7454 W:      http://www.qlogic.com
7455 S:      Supported
7456 F:      drivers/net/ethernet/qlogic/netxen/
7457
7458 NFC SUBSYSTEM
7459 M:      Lauro Ramos Venancio <lauro.venancio@openbossa.org>
7460 M:      Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
7461 M:      Samuel Ortiz <sameo@linux.intel.com>
7462 L:      linux-wireless@vger.kernel.org
7463 L:      linux-nfc@lists.01.org (subscribers-only)
7464 S:      Supported
7465 F:      net/nfc/
7466 F:      include/net/nfc/
7467 F:      include/uapi/linux/nfc.h
7468 F:      drivers/nfc/
7469 F:      include/linux/platform_data/pn544.h
7470 F:      Documentation/devicetree/bindings/net/nfc/
7471
7472 NFS, SUNRPC, AND LOCKD CLIENTS
7473 M:      Trond Myklebust <trond.myklebust@primarydata.com>
7474 M:      Anna Schumaker <anna.schumaker@netapp.com>
7475 L:      linux-nfs@vger.kernel.org
7476 W:      http://client.linux-nfs.org
7477 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
7478 S:      Maintained
7479 F:      fs/lockd/
7480 F:      fs/nfs/
7481 F:      fs/nfs_common/
7482 F:      net/sunrpc/
7483 F:      include/linux/lockd/
7484 F:      include/linux/nfs*
7485 F:      include/linux/sunrpc/
7486 F:      include/uapi/linux/nfs*
7487 F:      include/uapi/linux/sunrpc/
7488
7489 NILFS2 FILESYSTEM
7490 M:      Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
7491 L:      linux-nilfs@vger.kernel.org
7492 W:      http://nilfs.sourceforge.net/
7493 T:      git git://github.com/konis/nilfs2.git
7494 S:      Supported
7495 F:      Documentation/filesystems/nilfs2.txt
7496 F:      fs/nilfs2/
7497 F:      include/linux/nilfs2_fs.h
7498
7499 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
7500 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7501 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7502 S:      Maintained
7503 F:      Documentation/scsi/NinjaSCSI.txt
7504 F:      drivers/scsi/pcmcia/nsp_*
7505
7506 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
7507 M:      GOTO Masanori <gotom@debian.or.jp>
7508 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7509 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7510 S:      Maintained
7511 F:      Documentation/scsi/NinjaSCSI.txt
7512 F:      drivers/scsi/nsp32*
7513
7514 NIOS2 ARCHITECTURE
7515 M:      Ley Foon Tan <lftan@altera.com>
7516 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
7517 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
7518 S:      Maintained
7519 F:      arch/nios2/
7520
7521 NOKIA N900 POWER SUPPLY DRIVERS
7522 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
7523 S:      Maintained
7524 F:      include/linux/power/bq2415x_charger.h
7525 F:      include/linux/power/bq27xxx_battery.h
7526 F:      include/linux/power/isp1704_charger.h
7527 F:      drivers/power/bq2415x_charger.c
7528 F:      drivers/power/bq27xxx_battery.c
7529 F:      drivers/power/isp1704_charger.c
7530 F:      drivers/power/rx51_battery.c
7531
7532 NTB DRIVER CORE
7533 M:      Jon Mason <jdmason@kudzu.us>
7534 M:      Dave Jiang <dave.jiang@intel.com>
7535 M:      Allen Hubbe <Allen.Hubbe@emc.com>
7536 L:      linux-ntb@googlegroups.com
7537 S:      Supported
7538 W:      https://github.com/jonmason/ntb/wiki
7539 T:      git git://github.com/jonmason/ntb.git
7540 F:      drivers/ntb/
7541 F:      drivers/net/ntb_netdev.c
7542 F:      include/linux/ntb.h
7543 F:      include/linux/ntb_transport.h
7544
7545 NTB INTEL DRIVER
7546 M:      Jon Mason <jdmason@kudzu.us>
7547 M:      Dave Jiang <dave.jiang@intel.com>
7548 L:      linux-ntb@googlegroups.com
7549 S:      Supported
7550 W:      https://github.com/jonmason/ntb/wiki
7551 T:      git git://github.com/jonmason/ntb.git
7552 F:      drivers/ntb/hw/intel/
7553
7554 NTFS FILESYSTEM
7555 M:      Anton Altaparmakov <anton@tuxera.com>
7556 L:      linux-ntfs-dev@lists.sourceforge.net
7557 W:      http://www.tuxera.com/
7558 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
7559 S:      Supported
7560 F:      Documentation/filesystems/ntfs.txt
7561 F:      fs/ntfs/
7562
7563 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
7564 M:      Antonino Daplas <adaplas@gmail.com>
7565 L:      linux-fbdev@vger.kernel.org
7566 S:      Maintained
7567 F:      drivers/video/fbdev/riva/
7568 F:      drivers/video/fbdev/nvidia/
7569
7570 NVM EXPRESS DRIVER
7571 M:      Keith Busch <keith.busch@intel.com>
7572 M:      Jens Axboe <axboe@fb.com>
7573 L:      linux-nvme@lists.infradead.org
7574 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
7575 W:      https://kernel.googlesource.com/pub/scm/linux/kernel/git/axboe/linux-block/
7576 S:      Supported
7577 F:      drivers/nvme/host/
7578 F:      include/linux/nvme.h
7579
7580 NVMEM FRAMEWORK
7581 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
7582 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
7583 S:      Maintained
7584 F:      drivers/nvmem/
7585 F:      Documentation/devicetree/bindings/nvmem/
7586 F:      include/linux/nvmem-consumer.h
7587 F:      include/linux/nvmem-provider.h
7588
7589 NXP-NCI NFC DRIVER
7590 M:      ClĂ©ment Perrochaud <clement.perrochaud@effinnov.com>
7591 R:      Charles Gorand <charles.gorand@effinnov.com>
7592 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
7593 S:      Supported
7594 F:      drivers/nfc/nxp-nci
7595
7596 NXP TDA998X DRM DRIVER
7597 M:      Russell King <rmk+kernel@arm.linux.org.uk>
7598 S:      Supported
7599 F:      drivers/gpu/drm/i2c/tda998x_drv.c
7600 F:      include/drm/i2c/tda998x.h
7601
7602 NXP TFA9879 DRIVER
7603 M:      Peter Rosin <peda@axentia.se>
7604 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7605 S:      Maintained
7606 F:      sound/soc/codecs/tfa9879*
7607
7608 OMAP SUPPORT
7609 M:      Tony Lindgren <tony@atomide.com>
7610 L:      linux-omap@vger.kernel.org
7611 W:      http://www.muru.com/linux/omap/
7612 W:      http://linux.omap.com/
7613 Q:      http://patchwork.kernel.org/project/linux-omap/list/
7614 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
7615 S:      Maintained
7616 F:      arch/arm/*omap*/
7617 F:      arch/arm/configs/omap1_defconfig
7618 F:      arch/arm/configs/omap2plus_defconfig
7619 F:      drivers/i2c/busses/i2c-omap.c
7620 F:      drivers/irqchip/irq-omap-intc.c
7621 F:      drivers/mfd/*omap*.c
7622 F:      drivers/mfd/menelaus.c
7623 F:      drivers/mfd/palmas.c
7624 F:      drivers/mfd/tps65217.c
7625 F:      drivers/mfd/tps65218.c
7626 F:      drivers/mfd/tps65910.c
7627 F:      drivers/mfd/twl-core.[ch]
7628 F:      drivers/mfd/twl4030*.c
7629 F:      drivers/mfd/twl6030*.c
7630 F:      drivers/mfd/twl6040*.c
7631 F:      drivers/regulator/palmas-regulator*.c
7632 F:      drivers/regulator/pbias-regulator.c
7633 F:      drivers/regulator/tps65217-regulator.c
7634 F:      drivers/regulator/tps65218-regulator.c
7635 F:      drivers/regulator/tps65910-regulator.c
7636 F:      drivers/regulator/twl-regulator.c
7637 F:      include/linux/i2c-omap.h
7638
7639 OMAP DEVICE TREE SUPPORT
7640 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7641 M:      Tony Lindgren <tony@atomide.com>
7642 L:      linux-omap@vger.kernel.org
7643 L:      devicetree@vger.kernel.org
7644 S:      Maintained
7645 F:      arch/arm/boot/dts/*omap*
7646 F:      arch/arm/boot/dts/*am3*
7647 F:      arch/arm/boot/dts/*am4*
7648 F:      arch/arm/boot/dts/*am5*
7649 F:      arch/arm/boot/dts/*dra7*
7650
7651 OMAP CLOCK FRAMEWORK SUPPORT
7652 M:      Paul Walmsley <paul@pwsan.com>
7653 L:      linux-omap@vger.kernel.org
7654 S:      Maintained
7655 F:      arch/arm/*omap*/*clock*
7656
7657 OMAP POWER MANAGEMENT SUPPORT
7658 M:      Kevin Hilman <khilman@deeprootsystems.com>
7659 L:      linux-omap@vger.kernel.org
7660 S:      Maintained
7661 F:      arch/arm/*omap*/*pm*
7662 F:      drivers/cpufreq/omap-cpufreq.c
7663
7664 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
7665 M:      Rajendra Nayak <rnayak@ti.com>
7666 M:      Paul Walmsley <paul@pwsan.com>
7667 L:      linux-omap@vger.kernel.org
7668 S:      Maintained
7669 F:      arch/arm/mach-omap2/prm*
7670
7671 OMAP AUDIO SUPPORT
7672 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
7673 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
7674 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7675 L:      linux-omap@vger.kernel.org
7676 S:      Maintained
7677 F:      sound/soc/omap/
7678
7679 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
7680 M:      Roger Quadros <rogerq@ti.com>
7681 M:      Tony Lindgren <tony@atomide.com>
7682 L:      linux-omap@vger.kernel.org
7683 S:      Maintained
7684 F:      drivers/memory/omap-gpmc.c
7685 F:      arch/arm/mach-omap2/*gpmc*
7686
7687 OMAP FRAMEBUFFER SUPPORT
7688 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
7689 L:      linux-fbdev@vger.kernel.org
7690 L:      linux-omap@vger.kernel.org
7691 S:      Maintained
7692 F:      drivers/video/fbdev/omap/
7693
7694 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
7695 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
7696 L:      linux-omap@vger.kernel.org
7697 L:      linux-fbdev@vger.kernel.org
7698 S:      Maintained
7699 F:      drivers/video/fbdev/omap2/
7700 F:      Documentation/arm/OMAP/DSS
7701
7702 OMAP HARDWARE SPINLOCK SUPPORT
7703 M:      Ohad Ben-Cohen <ohad@wizery.com>
7704 L:      linux-omap@vger.kernel.org
7705 S:      Maintained
7706 F:      drivers/hwspinlock/omap_hwspinlock.c
7707
7708 OMAP MMC SUPPORT
7709 M:      Jarkko Lavinen <jarkko.lavinen@nokia.com>
7710 L:      linux-omap@vger.kernel.org
7711 S:      Maintained
7712 F:      drivers/mmc/host/omap.c
7713
7714 OMAP HS MMC SUPPORT
7715 L:      linux-mmc@vger.kernel.org
7716 L:      linux-omap@vger.kernel.org
7717 S:      Orphan
7718 F:      drivers/mmc/host/omap_hsmmc.c
7719
7720 OMAP RANDOM NUMBER GENERATOR SUPPORT
7721 M:      Deepak Saxena <dsaxena@plexity.net>
7722 S:      Maintained
7723 F:      drivers/char/hw_random/omap-rng.c
7724
7725 OMAP HWMOD SUPPORT
7726 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7727 M:      Paul Walmsley <paul@pwsan.com>
7728 L:      linux-omap@vger.kernel.org
7729 S:      Maintained
7730 F:      arch/arm/mach-omap2/omap_hwmod.*
7731
7732 OMAP HWMOD DATA
7733 M:      Paul Walmsley <paul@pwsan.com>
7734 L:      linux-omap@vger.kernel.org
7735 S:      Maintained
7736 F:      arch/arm/mach-omap2/omap_hwmod*data*
7737
7738 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
7739 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7740 L:      linux-omap@vger.kernel.org
7741 S:      Maintained
7742 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
7743
7744 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
7745 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7746 L:      linux-media@vger.kernel.org
7747 S:      Maintained
7748 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
7749 F:      drivers/media/platform/omap3isp/
7750 F:      drivers/staging/media/omap4iss/
7751
7752 OMAP USB SUPPORT
7753 M:      Felipe Balbi <balbi@ti.com>
7754 L:      linux-usb@vger.kernel.org
7755 L:      linux-omap@vger.kernel.org
7756 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7757 S:      Maintained
7758 F:      drivers/usb/*/*omap*
7759 F:      arch/arm/*omap*/usb*
7760
7761 OMAP GPIO DRIVER
7762 M:      Javier Martinez Canillas <javier@dowhile0.org>
7763 M:      Santosh Shilimkar <ssantosh@kernel.org>
7764 M:      Kevin Hilman <khilman@deeprootsystems.com>
7765 L:      linux-omap@vger.kernel.org
7766 S:      Maintained
7767 F:      drivers/gpio/gpio-omap.c
7768
7769 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
7770 M:      Mark Jackson <mpfj@newflow.co.uk>
7771 L:      linux-omap@vger.kernel.org
7772 S:      Maintained
7773 F:      arch/arm/boot/dts/am335x-nano.dts
7774
7775 OMFS FILESYSTEM
7776 M:      Bob Copeland <me@bobcopeland.com>
7777 L:      linux-karma-devel@lists.sourceforge.net
7778 S:      Maintained
7779 F:      Documentation/filesystems/omfs.txt
7780 F:      fs/omfs/
7781
7782 OMNIKEY CARDMAN 4000 DRIVER
7783 M:      Harald Welte <laforge@gnumonks.org>
7784 S:      Maintained
7785 F:      drivers/char/pcmcia/cm4000_cs.c
7786 F:      include/linux/cm4000_cs.h
7787 F:      include/uapi/linux/cm4000_cs.h
7788
7789 OMNIKEY CARDMAN 4040 DRIVER
7790 M:      Harald Welte <laforge@gnumonks.org>
7791 S:      Maintained
7792 F:      drivers/char/pcmcia/cm4040_cs.*
7793
7794 OMNIVISION OV7670 SENSOR DRIVER
7795 M:      Jonathan Corbet <corbet@lwn.net>
7796 L:      linux-media@vger.kernel.org
7797 T:      git git://linuxtv.org/media_tree.git
7798 S:      Maintained
7799 F:      drivers/media/i2c/ov7670.c
7800
7801 ONENAND FLASH DRIVER
7802 M:      Kyungmin Park <kyungmin.park@samsung.com>
7803 L:      linux-mtd@lists.infradead.org
7804 S:      Maintained
7805 F:      drivers/mtd/onenand/
7806 F:      include/linux/mtd/onenand*.h
7807
7808 ONSTREAM SCSI TAPE DRIVER
7809 M:      Willem Riede <osst@riede.org>
7810 L:      osst-users@lists.sourceforge.net
7811 L:      linux-scsi@vger.kernel.org
7812 S:      Maintained
7813 F:      Documentation/scsi/osst.txt
7814 F:      drivers/scsi/osst.*
7815 F:      drivers/scsi/osst_*.h
7816 F:      drivers/scsi/st.h
7817
7818 OPENCORES I2C BUS DRIVER
7819 M:      Peter Korsgaard <jacmet@sunsite.dk>
7820 L:      linux-i2c@vger.kernel.org
7821 S:      Maintained
7822 F:      Documentation/i2c/busses/i2c-ocores
7823 F:      drivers/i2c/busses/i2c-ocores.c
7824
7825 OPEN FIRMWARE AND FLATTENED DEVICE TREE
7826 M:      Rob Herring <robh+dt@kernel.org>
7827 M:      Frank Rowand <frowand.list@gmail.com>
7828 M:      Grant Likely <grant.likely@linaro.org>
7829 L:      devicetree@vger.kernel.org
7830 W:      http://www.devicetree.org/
7831 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/glikely/linux.git
7832 S:      Maintained
7833 F:      drivers/of/
7834 F:      include/linux/of*.h
7835 F:      scripts/dtc/
7836
7837 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
7838 M:      Rob Herring <robh+dt@kernel.org>
7839 M:      Pawel Moll <pawel.moll@arm.com>
7840 M:      Mark Rutland <mark.rutland@arm.com>
7841 M:      Ian Campbell <ijc+devicetree@hellion.org.uk>
7842 M:      Kumar Gala <galak@codeaurora.org>
7843 L:      devicetree@vger.kernel.org
7844 S:      Maintained
7845 F:      Documentation/devicetree/
7846 F:      arch/*/boot/dts/
7847 F:      include/dt-bindings/
7848
7849 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
7850 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
7851 L:      devicetree@vger.kernel.org
7852 S:      Maintained
7853 F:      Documentation/devicetree/dynamic-resolution-notes.txt
7854 F:      Documentation/devicetree/overlay-notes.txt
7855 F:      drivers/of/overlay.c
7856 F:      drivers/of/resolver.c
7857
7858 OPENRISC ARCHITECTURE
7859 M:      Jonas Bonn <jonas@southpole.se>
7860 W:      http://openrisc.net
7861 L:      linux@lists.openrisc.net (moderated for non-subscribers)
7862 S:      Maintained
7863 T:      git git://openrisc.net/~jonas/linux
7864 F:      arch/openrisc/
7865
7866 OPENVSWITCH
7867 M:      Pravin Shelar <pshelar@nicira.com>
7868 L:      netdev@vger.kernel.org
7869 L:      dev@openvswitch.org
7870 W:      http://openvswitch.org
7871 S:      Maintained
7872 F:      net/openvswitch/
7873 F:      include/uapi/linux/openvswitch.h
7874
7875 OPL4 DRIVER
7876 M:      Clemens Ladisch <clemens@ladisch.de>
7877 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7878 T:      git git://git.alsa-project.org/alsa-kernel.git
7879 S:      Maintained
7880 F:      sound/drivers/opl4/
7881
7882 OPROFILE
7883 M:      Robert Richter <rric@kernel.org>
7884 L:      oprofile-list@lists.sf.net
7885 S:      Maintained
7886 F:      arch/*/include/asm/oprofile*.h
7887 F:      arch/*/oprofile/
7888 F:      drivers/oprofile/
7889 F:      include/linux/oprofile.h
7890
7891 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
7892 M:      Mark Fasheh <mfasheh@suse.com>
7893 M:      Joel Becker <jlbec@evilplan.org>
7894 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
7895 W:      http://ocfs2.wiki.kernel.org
7896 S:      Supported
7897 F:      Documentation/filesystems/ocfs2.txt
7898 F:      Documentation/filesystems/dlmfs.txt
7899 F:      fs/ocfs2/
7900
7901 ORINOCO DRIVER
7902 L:      linux-wireless@vger.kernel.org
7903 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
7904 W:      http://www.nongnu.org/orinoco/
7905 S:      Orphan
7906 F:      drivers/net/wireless/orinoco/
7907
7908 OSD LIBRARY and FILESYSTEM
7909 M:      Boaz Harrosh <ooo@electrozaur.com>
7910 M:      Benny Halevy <bhalevy@primarydata.com>
7911 L:      osd-dev@open-osd.org
7912 W:      http://open-osd.org
7913 T:      git git://git.open-osd.org/open-osd.git
7914 S:      Maintained
7915 F:      drivers/scsi/osd/
7916 F:      include/scsi/osd_*
7917 F:      fs/exofs/
7918
7919 OVERLAY FILESYSTEM
7920 M:      Miklos Szeredi <miklos@szeredi.hu>
7921 L:      linux-unionfs@vger.kernel.org
7922 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
7923 S:      Supported
7924 F:      fs/overlayfs/
7925 F:      Documentation/filesystems/overlayfs.txt
7926
7927 P54 WIRELESS DRIVER
7928 M:      Christian Lamparter <chunkeey@googlemail.com>
7929 L:      linux-wireless@vger.kernel.org
7930 W:      http://wireless.kernel.org/en/users/Drivers/p54
7931 S:      Maintained
7932 F:      drivers/net/wireless/p54/
7933
7934 PA SEMI ETHERNET DRIVER
7935 M:      Olof Johansson <olof@lixom.net>
7936 L:      netdev@vger.kernel.org
7937 S:      Maintained
7938 F:      drivers/net/ethernet/pasemi/*
7939
7940 PA SEMI SMBUS DRIVER
7941 M:      Olof Johansson <olof@lixom.net>
7942 L:      linux-i2c@vger.kernel.org
7943 S:      Maintained
7944 F:      drivers/i2c/busses/i2c-pasemi.c
7945
7946 PADATA PARALLEL EXECUTION MECHANISM
7947 M:      Steffen Klassert <steffen.klassert@secunet.com>
7948 L:      linux-crypto@vger.kernel.org
7949 S:      Maintained
7950 F:      kernel/padata.c
7951 F:      include/linux/padata.h
7952 F:      Documentation/padata.txt
7953
7954 PANASONIC LAPTOP ACPI EXTRAS DRIVER
7955 M:      Harald Welte <laforge@gnumonks.org>
7956 L:      platform-driver-x86@vger.kernel.org
7957 S:      Maintained
7958 F:      drivers/platform/x86/panasonic-laptop.c
7959
7960 PANASONIC MN10300/AM33/AM34 PORT
7961 M:      David Howells <dhowells@redhat.com>
7962 M:      Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
7963 L:      linux-am33-list@redhat.com (moderated for non-subscribers)
7964 W:      ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
7965 S:      Maintained
7966 F:      Documentation/mn10300/
7967 F:      arch/mn10300/
7968
7969 PARALLEL PORT SUBSYSTEM
7970 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
7971 M:      Sudip Mukherjee <sudip@vectorindia.org>
7972 L:      linux-parport@lists.infradead.org (subscribers-only)
7973 S:      Maintained
7974 F:      drivers/parport/
7975 F:      include/linux/parport*.h
7976 F:      drivers/char/ppdev.c
7977 F:      include/uapi/linux/ppdev.h
7978 F:      Documentation/parport*.txt
7979
7980 PARAVIRT_OPS INTERFACE
7981 M:      Jeremy Fitzhardinge <jeremy@goop.org>
7982 M:      Chris Wright <chrisw@sous-sol.org>
7983 M:      Alok Kataria <akataria@vmware.com>
7984 M:      Rusty Russell <rusty@rustcorp.com.au>
7985 L:      virtualization@lists.linux-foundation.org
7986 S:      Supported
7987 F:      Documentation/virtual/paravirt_ops.txt
7988 F:      arch/*/kernel/paravirt*
7989 F:      arch/*/include/asm/paravirt.h
7990
7991 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
7992 M:      Tim Waugh <tim@cyberelk.net>
7993 L:      linux-parport@lists.infradead.org (subscribers-only)
7994 S:      Maintained
7995 F:      Documentation/blockdev/paride.txt
7996 F:      drivers/block/paride/
7997
7998 PARISC ARCHITECTURE
7999 M:      "James E.J. Bottomley" <jejb@parisc-linux.org>
8000 M:      Helge Deller <deller@gmx.de>
8001 L:      linux-parisc@vger.kernel.org
8002 W:      http://www.parisc-linux.org/
8003 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
8004 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
8005 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
8006 S:      Maintained
8007 F:      arch/parisc/
8008 F:      Documentation/parisc/
8009 F:      drivers/parisc/
8010 F:      drivers/char/agp/parisc-agp.c
8011 F:      drivers/input/serio/gscps2.c
8012 F:      drivers/parport/parport_gsc.*
8013 F:      drivers/tty/serial/8250/8250_gsc.c
8014 F:      drivers/video/fbdev/sti*
8015 F:      drivers/video/console/sti*
8016 F:      drivers/video/logo/logo_parisc*
8017
8018 PC87360 HARDWARE MONITORING DRIVER
8019 M:      Jim Cromie <jim.cromie@gmail.com>
8020 L:      lm-sensors@lm-sensors.org
8021 S:      Maintained
8022 F:      Documentation/hwmon/pc87360
8023 F:      drivers/hwmon/pc87360.c
8024
8025 PC8736x GPIO DRIVER
8026 M:      Jim Cromie <jim.cromie@gmail.com>
8027 S:      Maintained
8028 F:      drivers/char/pc8736x_gpio.c
8029
8030 PC87427 HARDWARE MONITORING DRIVER
8031 M:      Jean Delvare <jdelvare@suse.com>
8032 L:      lm-sensors@lm-sensors.org
8033 S:      Maintained
8034 F:      Documentation/hwmon/pc87427
8035 F:      drivers/hwmon/pc87427.c
8036
8037 PCA9532 LED DRIVER
8038 M:      Riku Voipio <riku.voipio@iki.fi>
8039 S:      Maintained
8040 F:      drivers/leds/leds-pca9532.c
8041 F:      include/linux/leds-pca9532.h
8042
8043 PCA9541 I2C BUS MASTER SELECTOR DRIVER
8044 M:      Guenter Roeck <linux@roeck-us.net>
8045 L:      linux-i2c@vger.kernel.org
8046 S:      Maintained
8047 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
8048
8049 PCDP - PRIMARY CONSOLE AND DEBUG PORT
8050 M:      Khalid Aziz <khalid@gonehiking.org>
8051 S:      Maintained
8052 F:      drivers/firmware/pcdp.*
8053
8054 PCI ERROR RECOVERY
8055 M:      Linas Vepstas <linasvepstas@gmail.com>
8056 L:      linux-pci@vger.kernel.org
8057 S:      Supported
8058 F:      Documentation/PCI/pci-error-recovery.txt
8059
8060 PCI SUBSYSTEM
8061 M:      Bjorn Helgaas <bhelgaas@google.com>
8062 L:      linux-pci@vger.kernel.org
8063 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
8064 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
8065 S:      Supported
8066 F:      Documentation/PCI/
8067 F:      drivers/pci/
8068 F:      include/linux/pci*
8069 F:      arch/x86/pci/
8070 F:      arch/x86/kernel/quirks.c
8071
8072 PCI DRIVER FOR ALTERA PCIE IP
8073 M:      Ley Foon Tan <lftan@altera.com>
8074 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
8075 L:      linux-pci@vger.kernel.org
8076 S:      Supported
8077 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
8078 F:      drivers/pci/host/pcie-altera.c
8079
8080 PCI DRIVER FOR ARM VERSATILE PLATFORM
8081 M:      Rob Herring <robh@kernel.org>
8082 L:      linux-pci@vger.kernel.org
8083 L:      linux-arm-kernel@lists.infradead.org
8084 S:      Maintained
8085 F:      Documentation/devicetree/bindings/pci/versatile.txt
8086 F:      drivers/pci/host/pci-versatile.c
8087
8088 PCI DRIVER FOR APPLIEDMICRO XGENE
8089 M:      Tanmay Inamdar <tinamdar@apm.com>
8090 L:      linux-pci@vger.kernel.org
8091 L:      linux-arm-kernel@lists.infradead.org
8092 S:      Maintained
8093 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
8094 F:      drivers/pci/host/pci-xgene.c
8095
8096 PCI DRIVER FOR FREESCALE LAYERSCAPE
8097 M:      Minghuan Lian <minghuan.Lian@freescale.com>
8098 M:      Mingkai Hu <mingkai.hu@freescale.com>
8099 M:      Roy Zang <tie-fei.zang@freescale.com>
8100 L:      linuxppc-dev@lists.ozlabs.org
8101 L:      linux-pci@vger.kernel.org
8102 L:      linux-arm-kernel@lists.infradead.org
8103 S:      Maintained
8104 F:      drivers/pci/host/*layerscape*
8105
8106 PCI DRIVER FOR IMX6
8107 M:      Richard Zhu <Richard.Zhu@freescale.com>
8108 M:      Lucas Stach <l.stach@pengutronix.de>
8109 L:      linux-pci@vger.kernel.org
8110 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8111 S:      Maintained
8112 F:      drivers/pci/host/*imx6*
8113
8114 PCI DRIVER FOR TI KEYSTONE
8115 M:      Murali Karicheri <m-karicheri2@ti.com>
8116 L:      linux-pci@vger.kernel.org
8117 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8118 S:      Maintained
8119 F:      drivers/pci/host/*keystone*
8120
8121 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
8122 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8123 M:      Jason Cooper <jason@lakedaemon.net>
8124 L:      linux-pci@vger.kernel.org
8125 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8126 S:      Maintained
8127 F:      drivers/pci/host/*mvebu*
8128
8129 PCI DRIVER FOR NVIDIA TEGRA
8130 M:      Thierry Reding <thierry.reding@gmail.com>
8131 L:      linux-tegra@vger.kernel.org
8132 L:      linux-pci@vger.kernel.org
8133 S:      Supported
8134 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
8135 F:      drivers/pci/host/pci-tegra.c
8136
8137 PCI DRIVER FOR TI DRA7XX
8138 M:      Kishon Vijay Abraham I <kishon@ti.com>
8139 L:      linux-omap@vger.kernel.org
8140 L:      linux-pci@vger.kernel.org
8141 S:      Supported
8142 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
8143 F:      drivers/pci/host/pci-dra7xx.c
8144
8145 PCI DRIVER FOR RENESAS R-CAR
8146 M:      Simon Horman <horms@verge.net.au>
8147 L:      linux-pci@vger.kernel.org
8148 L:      linux-sh@vger.kernel.org
8149 S:      Maintained
8150 F:      drivers/pci/host/*rcar*
8151
8152 PCI DRIVER FOR SAMSUNG EXYNOS
8153 M:      Jingoo Han <jingoohan1@gmail.com>
8154 L:      linux-pci@vger.kernel.org
8155 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8156 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8157 S:      Maintained
8158 F:      drivers/pci/host/pci-exynos.c
8159
8160 PCI DRIVER FOR SYNOPSIS DESIGNWARE
8161 M:      Jingoo Han <jingoohan1@gmail.com>
8162 M:      Pratyush Anand <pratyush.anand@gmail.com>
8163 L:      linux-pci@vger.kernel.org
8164 S:      Maintained
8165 F:      drivers/pci/host/*designware*
8166
8167 PCI DRIVER FOR GENERIC OF HOSTS
8168 M:      Will Deacon <will.deacon@arm.com>
8169 L:      linux-pci@vger.kernel.org
8170 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8171 S:      Maintained
8172 F:      Documentation/devicetree/bindings/pci/host-generic-pci.txt
8173 F:      drivers/pci/host/pci-host-generic.c
8174
8175 PCIE DRIVER FOR ST SPEAR13XX
8176 M:      Pratyush Anand <pratyush.anand@gmail.com>
8177 L:      linux-pci@vger.kernel.org
8178 S:      Maintained
8179 F:      drivers/pci/host/*spear*
8180
8181 PCI MSI DRIVER FOR ALTERA MSI IP
8182 M:      Ley Foon Tan <lftan@altera.com>
8183 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
8184 L:      linux-pci@vger.kernel.org
8185 S:      Supported
8186 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
8187 F:      drivers/pci/host/pcie-altera-msi.c
8188
8189 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
8190 M:      Duc Dang <dhdang@apm.com>
8191 L:      linux-pci@vger.kernel.org
8192 L:      linux-arm-kernel@lists.infradead.org
8193 S:      Maintained
8194 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
8195 F:      drivers/pci/host/pci-xgene-msi.c
8196
8197 PCIE DRIVER FOR HISILICON
8198 M:      Zhou Wang <wangzhou1@hisilicon.com>
8199 L:      linux-pci@vger.kernel.org
8200 S:      Maintained
8201 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
8202 F:      drivers/pci/host/pcie-hisi.c
8203
8204 PCMCIA SUBSYSTEM
8205 P:      Linux PCMCIA Team
8206 L:      linux-pcmcia@lists.infradead.org
8207 W:      http://lists.infradead.org/mailman/listinfo/linux-pcmcia
8208 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
8209 S:      Maintained
8210 F:      Documentation/pcmcia/
8211 F:      drivers/pcmcia/
8212 F:      include/pcmcia/
8213
8214 PCNET32 NETWORK DRIVER
8215 M:      Don Fry <pcnet32@frontier.com>
8216 L:      netdev@vger.kernel.org
8217 S:      Maintained
8218 F:      drivers/net/ethernet/amd/pcnet32.c
8219
8220 PCRYPT PARALLEL CRYPTO ENGINE
8221 M:      Steffen Klassert <steffen.klassert@secunet.com>
8222 L:      linux-crypto@vger.kernel.org
8223 S:      Maintained
8224 F:      crypto/pcrypt.c
8225 F:      include/crypto/pcrypt.h
8226
8227 PER-CPU MEMORY ALLOCATOR
8228 M:      Tejun Heo <tj@kernel.org>
8229 M:      Christoph Lameter <cl@linux-foundation.org>
8230 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
8231 S:      Maintained
8232 F:      include/linux/percpu*.h
8233 F:      mm/percpu*.c
8234 F:      arch/*/include/asm/percpu.h
8235
8236 PER-TASK DELAY ACCOUNTING
8237 M:      Balbir Singh <bsingharora@gmail.com>
8238 S:      Maintained
8239 F:      include/linux/delayacct.h
8240 F:      kernel/delayacct.c
8241
8242 PERFORMANCE EVENTS SUBSYSTEM
8243 M:      Peter Zijlstra <a.p.zijlstra@chello.nl>
8244 M:      Ingo Molnar <mingo@redhat.com>
8245 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
8246 L:      linux-kernel@vger.kernel.org
8247 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
8248 S:      Supported
8249 F:      kernel/events/*
8250 F:      include/linux/perf_event.h
8251 F:      include/uapi/linux/perf_event.h
8252 F:      arch/*/kernel/perf_event*.c
8253 F:      arch/*/kernel/*/perf_event*.c
8254 F:      arch/*/kernel/*/*/perf_event*.c
8255 F:      arch/*/include/asm/perf_event.h
8256 F:      arch/*/kernel/perf_callchain.c
8257 F:      tools/perf/
8258
8259 PERSONALITY HANDLING
8260 M:      Christoph Hellwig <hch@infradead.org>
8261 L:      linux-abi-devel@lists.sourceforge.net
8262 S:      Maintained
8263 F:      include/linux/personality.h
8264 F:      include/uapi/linux/personality.h
8265
8266 PHONET PROTOCOL
8267 M:      Remi Denis-Courmont <courmisch@gmail.com>
8268 S:      Supported
8269 F:      Documentation/networking/phonet.txt
8270 F:      include/linux/phonet.h
8271 F:      include/net/phonet/
8272 F:      include/uapi/linux/phonet.h
8273 F:      net/phonet/
8274
8275 PHRAM MTD DRIVER
8276 M:      Joern Engel <joern@lazybastard.org>
8277 L:      linux-mtd@lists.infradead.org
8278 S:      Maintained
8279 F:      drivers/mtd/devices/phram.c
8280
8281 PICOLCD HID DRIVER
8282 M:      Bruno PrĂ©mont <bonbons@linux-vserver.org>
8283 L:      linux-input@vger.kernel.org
8284 S:      Maintained
8285 F:      drivers/hid/hid-picolcd*
8286
8287 PICOXCELL SUPPORT
8288 M:      Jamie Iles <jamie@jamieiles.com>
8289 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8290 T:      git git://github.com/jamieiles/linux-2.6-ji.git
8291 S:      Supported
8292 F:      arch/arm/boot/dts/picoxcell*
8293 F:      arch/arm/mach-picoxcell/
8294 F:      drivers/crypto/picoxcell*
8295
8296 PIN CONTROL SUBSYSTEM
8297 M:      Linus Walleij <linus.walleij@linaro.org>
8298 L:      linux-gpio@vger.kernel.org
8299 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
8300 S:      Maintained
8301 F:      drivers/pinctrl/
8302 F:      include/linux/pinctrl/
8303
8304 PIN CONTROLLER - ATMEL AT91
8305 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
8306 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8307 S:      Maintained
8308 F:      drivers/pinctrl/pinctrl-at91.*
8309
8310 PIN CONTROLLER - INTEL
8311 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8312 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
8313 S:      Maintained
8314 F:      drivers/pinctrl/intel/
8315
8316 PIN CONTROLLER - RENESAS
8317 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8318 L:      linux-sh@vger.kernel.org
8319 S:      Maintained
8320 F:      drivers/pinctrl/sh-pfc/
8321
8322 PIN CONTROLLER - SAMSUNG
8323 M:      Tomasz Figa <tomasz.figa@gmail.com>
8324 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8325 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8326 S:      Maintained
8327 F:      drivers/pinctrl/samsung/
8328
8329 PIN CONTROLLER - ST SPEAR
8330 M:      Viresh Kumar <vireshk@kernel.org>
8331 L:      spear-devel@list.st.com
8332 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8333 W:      http://www.st.com/spear
8334 S:      Maintained
8335 F:      drivers/pinctrl/spear/
8336
8337 PKTCDVD DRIVER
8338 M:      Jiri Kosina <jikos@kernel.org>
8339 S:      Maintained
8340 F:      drivers/block/pktcdvd.c
8341 F:      include/linux/pktcdvd.h
8342 F:      include/uapi/linux/pktcdvd.h
8343
8344 PKUNITY SOC DRIVERS
8345 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
8346 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
8347 S:      Maintained
8348 T:      git git://github.com/gxt/linux.git
8349 F:      drivers/input/serio/i8042-unicore32io.h
8350 F:      drivers/i2c/busses/i2c-puv3.c
8351 F:      drivers/video/fbdev/fb-puv3.c
8352 F:      drivers/rtc/rtc-puv3.c
8353
8354 PMBUS HARDWARE MONITORING DRIVERS
8355 M:      Guenter Roeck <linux@roeck-us.net>
8356 L:      lm-sensors@lm-sensors.org
8357 W:      http://www.lm-sensors.org/
8358 W:      http://www.roeck-us.net/linux/drivers/
8359 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8360 S:      Maintained
8361 F:      Documentation/hwmon/pmbus
8362 F:      drivers/hwmon/pmbus/
8363 F:      include/linux/i2c/pmbus.h
8364
8365 PMC SIERRA MaxRAID DRIVER
8366 L:      linux-scsi@vger.kernel.org
8367 W:      http://www.pmc-sierra.com/
8368 S:      Orphan
8369 F:      drivers/scsi/pmcraid.*
8370
8371 PMC SIERRA PM8001 DRIVER
8372 M:      Jack Wang <jinpu.wang@profitbricks.com>
8373 M:      lindar_liu@usish.com
8374 L:      pmchba@pmcs.com
8375 L:      linux-scsi@vger.kernel.org
8376 S:      Supported
8377 F:      drivers/scsi/pm8001/
8378
8379 POSIX CLOCKS and TIMERS
8380 M:      Thomas Gleixner <tglx@linutronix.de>
8381 L:      linux-kernel@vger.kernel.org
8382 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8383 S:      Maintained
8384 F:      fs/timerfd.c
8385 F:      include/linux/timer*
8386 F:      kernel/time/*timer*
8387
8388 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
8389 M:      Sebastian Reichel <sre@kernel.org>
8390 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
8391 M:      David Woodhouse <dwmw2@infradead.org>
8392 L:      linux-pm@vger.kernel.org
8393 T:      git git://git.infradead.org/battery-2.6.git
8394 S:      Maintained
8395 F:      include/linux/power_supply.h
8396 F:      drivers/power/
8397 X:      drivers/power/avs/
8398
8399 POWER STATE COORDINATION INTERFACE (PSCI)
8400 M:      Mark Rutland <mark.rutland@arm.com>
8401 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
8402 L:      linux-arm-kernel@lists.infradead.org
8403 S:      Maintained
8404 F:      drivers/firmware/psci.c
8405 F:      include/linux/psci.h
8406 F:      include/uapi/linux/psci.h
8407
8408 PNP SUPPORT
8409 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
8410 S:      Maintained
8411 F:      drivers/pnp/
8412
8413 PPP PROTOCOL DRIVERS AND COMPRESSORS
8414 M:      Paul Mackerras <paulus@samba.org>
8415 L:      linux-ppp@vger.kernel.org
8416 S:      Maintained
8417 F:      drivers/net/ppp/ppp_*
8418
8419 PPP OVER ATM (RFC 2364)
8420 M:      Mitchell Blank Jr <mitch@sfgoth.com>
8421 S:      Maintained
8422 F:      net/atm/pppoatm.c
8423 F:      include/uapi/linux/atmppp.h
8424
8425 PPP OVER ETHERNET
8426 M:      Michal Ostrowski <mostrows@earthlink.net>
8427 S:      Maintained
8428 F:      drivers/net/ppp/pppoe.c
8429 F:      drivers/net/ppp/pppox.c
8430
8431 PPP OVER L2TP
8432 M:      James Chapman <jchapman@katalix.com>
8433 S:      Maintained
8434 F:      net/l2tp/l2tp_ppp.c
8435 F:      include/linux/if_pppol2tp.h
8436 F:      include/uapi/linux/if_pppol2tp.h
8437
8438 PPS SUPPORT
8439 M:      Rodolfo Giometti <giometti@enneenne.com>
8440 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
8441 L:      linuxpps@ml.enneenne.com (subscribers-only)
8442 S:      Maintained
8443 F:      Documentation/pps/
8444 F:      drivers/pps/
8445 F:      include/linux/pps*.h
8446
8447 PPTP DRIVER
8448 M:      Dmitry Kozlov <xeb@mail.ru>
8449 L:      netdev@vger.kernel.org
8450 S:      Maintained
8451 F:      drivers/net/ppp/pptp.c
8452 W:      http://sourceforge.net/projects/accel-pptp
8453
8454 PREEMPTIBLE KERNEL
8455 M:      Robert Love <rml@tech9.net>
8456 L:      kpreempt-tech@lists.sourceforge.net
8457 W:      ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
8458 S:      Supported
8459 F:      Documentation/preempt-locking.txt
8460 F:      include/linux/preempt.h
8461
8462 PRISM54 WIRELESS DRIVER
8463 M:      "Luis R. Rodriguez" <mcgrof@gmail.com>
8464 L:      linux-wireless@vger.kernel.org
8465 W:      http://wireless.kernel.org/en/users/Drivers/p54
8466 S:      Obsolete
8467 F:      drivers/net/wireless/prism54/
8468
8469 PS3 NETWORK SUPPORT
8470 M:      Geoff Levand <geoff@infradead.org>
8471 L:      netdev@vger.kernel.org
8472 L:      linuxppc-dev@lists.ozlabs.org
8473 S:      Maintained
8474 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
8475
8476 PS3 PLATFORM SUPPORT
8477 M:      Geoff Levand <geoff@infradead.org>
8478 L:      linuxppc-dev@lists.ozlabs.org
8479 S:      Maintained
8480 F:      arch/powerpc/boot/ps3*
8481 F:      arch/powerpc/include/asm/lv1call.h
8482 F:      arch/powerpc/include/asm/ps3*.h
8483 F:      arch/powerpc/platforms/ps3/
8484 F:      drivers/*/ps3*
8485 F:      drivers/ps3/
8486 F:      drivers/rtc/rtc-ps3.c
8487 F:      drivers/usb/host/*ps3.c
8488 F:      sound/ppc/snd_ps3*
8489
8490 PS3VRAM DRIVER
8491 M:      Jim Paris <jim@jtan.com>
8492 M:      Geoff Levand <geoff@infradead.org>
8493 L:      linuxppc-dev@lists.ozlabs.org
8494 S:      Maintained
8495 F:      drivers/block/ps3vram.c
8496
8497 PSTORE FILESYSTEM
8498 M:      Anton Vorontsov <anton@enomsg.org>
8499 M:      Colin Cross <ccross@android.com>
8500 M:      Kees Cook <keescook@chromium.org>
8501 M:      Tony Luck <tony.luck@intel.com>
8502 S:      Maintained
8503 T:      git git://git.infradead.org/users/cbou/linux-pstore.git
8504 F:      fs/pstore/
8505 F:      include/linux/pstore*
8506 F:      drivers/firmware/efi/efi-pstore.c
8507 F:      drivers/acpi/apei/erst.c
8508
8509 PTP HARDWARE CLOCK SUPPORT
8510 M:      Richard Cochran <richardcochran@gmail.com>
8511 L:      netdev@vger.kernel.org
8512 S:      Maintained
8513 W:      http://linuxptp.sourceforge.net/
8514 F:      Documentation/ABI/testing/sysfs-ptp
8515 F:      Documentation/ptp/*
8516 F:      drivers/net/ethernet/freescale/gianfar_ptp.c
8517 F:      drivers/net/phy/dp83640*
8518 F:      drivers/ptp/*
8519 F:      include/linux/ptp_cl*
8520
8521 PTRACE SUPPORT
8522 M:      Roland McGrath <roland@hack.frob.com>
8523 M:      Oleg Nesterov <oleg@redhat.com>
8524 S:      Maintained
8525 F:      include/asm-generic/syscall.h
8526 F:      include/linux/ptrace.h
8527 F:      include/linux/regset.h
8528 F:      include/linux/tracehook.h
8529 F:      include/uapi/linux/ptrace.h
8530 F:      kernel/ptrace.c
8531
8532 PVRUSB2 VIDEO4LINUX DRIVER
8533 M:      Mike Isely <isely@pobox.com>
8534 L:      pvrusb2@isely.net       (subscribers-only)
8535 L:      linux-media@vger.kernel.org
8536 W:      http://www.isely.net/pvrusb2/
8537 T:      git git://linuxtv.org/media_tree.git
8538 S:      Maintained
8539 F:      Documentation/video4linux/README.pvrusb2
8540 F:      drivers/media/usb/pvrusb2/
8541
8542 PWC WEBCAM DRIVER
8543 M:      Hans de Goede <hdegoede@redhat.com>
8544 L:      linux-media@vger.kernel.org
8545 T:      git git://linuxtv.org/media_tree.git
8546 S:      Maintained
8547 F:      drivers/media/usb/pwc/*
8548
8549 PWM FAN DRIVER
8550 M:      Kamil Debski <k.debski@samsung.com>
8551 L:      lm-sensors@lm-sensors.org
8552 S:      Supported
8553 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
8554 F:      Documentation/hwmon/pwm-fan
8555 F:      drivers/hwmon/pwm-fan.c
8556
8557 PWM SUBSYSTEM
8558 M:      Thierry Reding <thierry.reding@gmail.com>
8559 L:      linux-pwm@vger.kernel.org
8560 S:      Maintained
8561 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
8562 F:      Documentation/pwm.txt
8563 F:      Documentation/devicetree/bindings/pwm/
8564 F:      include/linux/pwm.h
8565 F:      drivers/pwm/
8566 F:      drivers/video/backlight/pwm_bl.c
8567 F:      include/linux/pwm_backlight.h
8568
8569 PXA2xx/PXA3xx SUPPORT
8570 M:      Daniel Mack <daniel@zonque.org>
8571 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
8572 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8573 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8574 T:      git git://github.com/hzhuang1/linux.git
8575 T:      git git://github.com/rjarzmik/linux.git
8576 S:      Maintained
8577 F:      arch/arm/mach-pxa/
8578 F:      drivers/dma/pxa*
8579 F:      drivers/pcmcia/pxa2xx*
8580 F:      drivers/spi/spi-pxa2xx*
8581 F:      drivers/usb/gadget/udc/pxa2*
8582 F:      include/sound/pxa2xx-lib.h
8583 F:      sound/arm/pxa*
8584 F:      sound/soc/pxa/
8585
8586 PXA3xx NAND FLASH DRIVER
8587 M:      Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
8588 L:      linux-mtd@lists.infradead.org
8589 S:      Maintained
8590 F:      drivers/mtd/nand/pxa3xx_nand.c
8591
8592 MMP SUPPORT
8593 M:      Eric Miao <eric.y.miao@gmail.com>
8594 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
8595 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8596 T:      git git://github.com/hzhuang1/linux.git
8597 T:      git git://git.linaro.org/people/ycmiao/pxa-linux.git
8598 S:      Maintained
8599 F:      arch/arm/mach-mmp/
8600
8601 PXA MMCI DRIVER
8602 S:      Orphan
8603
8604 PXA RTC DRIVER
8605 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8606 L:      rtc-linux@googlegroups.com
8607 S:      Maintained
8608
8609 QAT DRIVER
8610 M:      Tadeusz Struk <tadeusz.struk@intel.com>
8611 L:      qat-linux@intel.com
8612 S:      Supported
8613 F:      drivers/crypto/qat/
8614
8615 QIB DRIVER
8616 M:      Mike Marciniszyn <infinipath@intel.com>
8617 L:      linux-rdma@vger.kernel.org
8618 S:      Supported
8619 F:      drivers/infiniband/hw/qib/
8620
8621 QLOGIC QLA1280 SCSI DRIVER
8622 M:      Michael Reed <mdr@sgi.com>
8623 L:      linux-scsi@vger.kernel.org
8624 S:      Maintained
8625 F:      drivers/scsi/qla1280.[ch]
8626
8627 QLOGIC QLA2XXX FC-SCSI DRIVER
8628 M:      qla2xxx-upstream@qlogic.com
8629 L:      linux-scsi@vger.kernel.org
8630 S:      Supported
8631 F:      Documentation/scsi/LICENSE.qla2xxx
8632 F:      drivers/scsi/qla2xxx/
8633
8634 QLOGIC QLA4XXX iSCSI DRIVER
8635 M:      QLogic-Storage-Upstream@qlogic.com
8636 L:      linux-scsi@vger.kernel.org
8637 S:      Supported
8638 F:      Documentation/scsi/LICENSE.qla4xxx
8639 F:      drivers/scsi/qla4xxx/
8640
8641 QLOGIC QLA3XXX NETWORK DRIVER
8642 M:      Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
8643 M:      Ron Mercer <ron.mercer@qlogic.com>
8644 M:      linux-driver@qlogic.com
8645 L:      netdev@vger.kernel.org
8646 S:      Supported
8647 F:      Documentation/networking/LICENSE.qla3xxx
8648 F:      drivers/net/ethernet/qlogic/qla3xxx.*
8649
8650 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
8651 M:      Dept-GELinuxNICDev@qlogic.com
8652 L:      netdev@vger.kernel.org
8653 S:      Supported
8654 F:      drivers/net/ethernet/qlogic/qlcnic/
8655
8656 QLOGIC QLGE 10Gb ETHERNET DRIVER
8657 M:      Harish Patil <harish.patil@qlogic.com>
8658 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
8659 M:      Dept-GELinuxNICDev@qlogic.com
8660 M:      linux-driver@qlogic.com
8661 L:      netdev@vger.kernel.org
8662 S:      Supported
8663 F:      drivers/net/ethernet/qlogic/qlge/
8664
8665 QLOGIC QL4xxx ETHERNET DRIVER
8666 M:      Yuval Mintz <Yuval.Mintz@qlogic.com>
8667 M:      Ariel Elior <Ariel.Elior@qlogic.com>
8668 M:      everest-linux-l2@qlogic.com
8669 L:      netdev@vger.kernel.org
8670 S:      Supported
8671 F:      drivers/net/ethernet/qlogic/qed/
8672 F:      include/linux/qed/
8673 F:      drivers/net/ethernet/qlogic/qede/
8674
8675 QNX4 FILESYSTEM
8676 M:      Anders Larsen <al@alarsen.net>
8677 W:      http://www.alarsen.net/linux/qnx4fs/
8678 S:      Maintained
8679 F:      fs/qnx4/
8680 F:      include/uapi/linux/qnx4_fs.h
8681 F:      include/uapi/linux/qnxtypes.h
8682
8683 QT1010 MEDIA DRIVER
8684 M:      Antti Palosaari <crope@iki.fi>
8685 L:      linux-media@vger.kernel.org
8686 W:      http://linuxtv.org/
8687 W:      http://palosaari.fi/linux/
8688 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8689 T:      git git://linuxtv.org/anttip/media_tree.git
8690 S:      Maintained
8691 F:      drivers/media/tuners/qt1010*
8692
8693 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
8694 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
8695 L:      linux-wireless@vger.kernel.org
8696 L:      ath9k-devel@lists.ath9k.org
8697 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
8698 S:      Supported
8699 F:      drivers/net/wireless/ath/ath9k/
8700
8701 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
8702 M:      Kalle Valo <kvalo@qca.qualcomm.com>
8703 L:      ath10k@lists.infradead.org
8704 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
8705 T:      git git://github.com/kvalo/ath.git
8706 S:      Supported
8707 F:      drivers/net/wireless/ath/ath10k/
8708
8709 QUALCOMM HEXAGON ARCHITECTURE
8710 M:      Richard Kuo <rkuo@codeaurora.org>
8711 L:      linux-hexagon@vger.kernel.org
8712 S:      Supported
8713 F:      arch/hexagon/
8714
8715 QUALCOMM WCN36XX WIRELESS DRIVER
8716 M:      Eugene Krasnikov <k.eugene.e@gmail.com>
8717 L:      wcn36xx@lists.infradead.org
8718 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
8719 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
8720 S:      Supported
8721 F:      drivers/net/wireless/ath/wcn36xx/
8722
8723 RADOS BLOCK DEVICE (RBD)
8724 M:      Ilya Dryomov <idryomov@gmail.com>
8725 M:      Sage Weil <sage@redhat.com>
8726 M:      Alex Elder <elder@kernel.org>
8727 L:      ceph-devel@vger.kernel.org
8728 W:      http://ceph.com/
8729 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
8730 T:      git git://github.com/ceph/ceph-client.git
8731 S:      Supported
8732 F:      Documentation/ABI/testing/sysfs-bus-rbd
8733 F:      drivers/block/rbd.c
8734 F:      drivers/block/rbd_types.h
8735
8736 RADEON FRAMEBUFFER DISPLAY DRIVER
8737 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
8738 L:      linux-fbdev@vger.kernel.org
8739 S:      Maintained
8740 F:      drivers/video/fbdev/aty/radeon*
8741 F:      include/uapi/linux/radeonfb.h
8742
8743 RADIOSHARK RADIO DRIVER
8744 M:      Hans de Goede <hdegoede@redhat.com>
8745 L:      linux-media@vger.kernel.org
8746 T:      git git://linuxtv.org/media_tree.git
8747 S:      Maintained
8748 F:      drivers/media/radio/radio-shark.c
8749
8750 RADIOSHARK2 RADIO DRIVER
8751 M:      Hans de Goede <hdegoede@redhat.com>
8752 L:      linux-media@vger.kernel.org
8753 T:      git git://linuxtv.org/media_tree.git
8754 S:      Maintained
8755 F:      drivers/media/radio/radio-shark2.c
8756 F:      drivers/media/radio/radio-tea5777.c
8757
8758 RAGE128 FRAMEBUFFER DISPLAY DRIVER
8759 M:      Paul Mackerras <paulus@samba.org>
8760 L:      linux-fbdev@vger.kernel.org
8761 S:      Maintained
8762 F:      drivers/video/fbdev/aty/aty128fb.c
8763
8764 RALINK RT2X00 WIRELESS LAN DRIVER
8765 P:      rt2x00 project
8766 M:      Stanislaw Gruszka <sgruszka@redhat.com>
8767 M:      Helmut Schaa <helmut.schaa@googlemail.com>
8768 L:      linux-wireless@vger.kernel.org
8769 S:      Maintained
8770 F:      drivers/net/wireless/rt2x00/
8771
8772 RAMDISK RAM BLOCK DEVICE DRIVER
8773 M:      Jens Axboe <axboe@kernel.dk>
8774 S:      Maintained
8775 F:      Documentation/blockdev/ramdisk.txt
8776 F:      drivers/block/brd.c
8777
8778 RANDOM NUMBER DRIVER
8779 M:      "Theodore Ts'o" <tytso@mit.edu>
8780 S:      Maintained
8781 F:      drivers/char/random.c
8782
8783 RAPIDIO SUBSYSTEM
8784 M:      Matt Porter <mporter@kernel.crashing.org>
8785 M:      Alexandre Bounine <alexandre.bounine@idt.com>
8786 S:      Maintained
8787 F:      drivers/rapidio/
8788
8789 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
8790 L:      linux-wireless@vger.kernel.org
8791 S:      Orphan
8792 F:      drivers/net/wireless/ray*
8793
8794 RCUTORTURE MODULE
8795 M:      Josh Triplett <josh@joshtriplett.org>
8796 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8797 L:      linux-kernel@vger.kernel.org
8798 S:      Supported
8799 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8800 F:      Documentation/RCU/torture.txt
8801 F:      kernel/rcu/rcutorture.c
8802
8803 RCUTORTURE TEST FRAMEWORK
8804 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8805 M:      Josh Triplett <josh@joshtriplett.org>
8806 R:      Steven Rostedt <rostedt@goodmis.org>
8807 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8808 R:      Lai Jiangshan <jiangshanlai@gmail.com>
8809 L:      linux-kernel@vger.kernel.org
8810 S:      Supported
8811 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8812 F:      tools/testing/selftests/rcutorture
8813
8814 RDC R-321X SoC
8815 M:      Florian Fainelli <florian@openwrt.org>
8816 S:      Maintained
8817
8818 RDC R6040 FAST ETHERNET DRIVER
8819 M:      Florian Fainelli <florian@openwrt.org>
8820 L:      netdev@vger.kernel.org
8821 S:      Maintained
8822 F:      drivers/net/ethernet/rdc/r6040.c
8823
8824 RDS - RELIABLE DATAGRAM SOCKETS
8825 M:      Chien Yen <chien.yen@oracle.com>
8826 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
8827 S:      Supported
8828 F:      net/rds/
8829
8830 READ-COPY UPDATE (RCU)
8831 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8832 M:      Josh Triplett <josh@joshtriplett.org>
8833 R:      Steven Rostedt <rostedt@goodmis.org>
8834 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8835 R:      Lai Jiangshan <jiangshanlai@gmail.com>
8836 L:      linux-kernel@vger.kernel.org
8837 W:      http://www.rdrop.com/users/paulmck/RCU/
8838 S:      Supported
8839 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8840 F:      Documentation/RCU/
8841 X:      Documentation/RCU/torture.txt
8842 F:      include/linux/rcu*
8843 X:      include/linux/srcu.h
8844 F:      kernel/rcu/
8845 X:      kernel/torture.c
8846
8847 REAL TIME CLOCK (RTC) SUBSYSTEM
8848 M:      Alessandro Zummo <a.zummo@towertech.it>
8849 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
8850 L:      rtc-linux@googlegroups.com
8851 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
8852 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
8853 S:      Maintained
8854 F:      Documentation/rtc.txt
8855 F:      drivers/rtc/
8856 F:      include/linux/rtc.h
8857 F:      include/uapi/linux/rtc.h
8858
8859 REALTEK AUDIO CODECS
8860 M:      Bard Liao <bardliao@realtek.com>
8861 M:      Oder Chiou <oder_chiou@realtek.com>
8862 S:      Maintained
8863 F:      sound/soc/codecs/rt*
8864 F:      include/sound/rt*.h
8865
8866 REISERFS FILE SYSTEM
8867 L:      reiserfs-devel@vger.kernel.org
8868 S:      Supported
8869 F:      fs/reiserfs/
8870
8871 REGISTER MAP ABSTRACTION
8872 M:      Mark Brown <broonie@kernel.org>
8873 L:      linux-kernel@vger.kernel.org
8874 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
8875 S:      Supported
8876 F:      drivers/base/regmap/
8877 F:      include/linux/regmap.h
8878
8879 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
8880 M:      Ohad Ben-Cohen <ohad@wizery.com>
8881 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
8882 S:      Maintained
8883 F:      drivers/remoteproc/
8884 F:      Documentation/remoteproc.txt
8885 F:      include/linux/remoteproc.h
8886
8887 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
8888 M:      Ohad Ben-Cohen <ohad@wizery.com>
8889 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
8890 S:      Maintained
8891 F:      drivers/rpmsg/
8892 F:      Documentation/rpmsg.txt
8893 F:      include/linux/rpmsg.h
8894
8895 RESET CONTROLLER FRAMEWORK
8896 M:      Philipp Zabel <p.zabel@pengutronix.de>
8897 S:      Maintained
8898 F:      drivers/reset/
8899 F:      Documentation/devicetree/bindings/reset/
8900 F:      include/dt-bindings/reset/
8901 F:      include/linux/reset.h
8902 F:      include/linux/reset-controller.h
8903
8904 RFKILL
8905 M:      Johannes Berg <johannes@sipsolutions.net>
8906 L:      linux-wireless@vger.kernel.org
8907 W:      http://wireless.kernel.org/
8908 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
8909 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
8910 S:      Maintained
8911 F:      Documentation/rfkill.txt
8912 F:      net/rfkill/
8913
8914 RHASHTABLE
8915 M:      Thomas Graf <tgraf@suug.ch>
8916 L:      netdev@vger.kernel.org
8917 S:      Maintained
8918 F:      lib/rhashtable.c
8919 F:      include/linux/rhashtable.h
8920
8921 RICOH SMARTMEDIA/XD DRIVER
8922 M:      Maxim Levitsky <maximlevitsky@gmail.com>
8923 S:      Maintained
8924 F:      drivers/mtd/nand/r852.c
8925 F:      drivers/mtd/nand/r852.h
8926
8927 RICOH R5C592 MEMORYSTICK DRIVER
8928 M:      Maxim Levitsky <maximlevitsky@gmail.com>
8929 S:      Maintained
8930 F:      drivers/memstick/host/r592.*
8931
8932 ROCCAT DRIVERS
8933 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
8934 W:      http://sourceforge.net/projects/roccat/
8935 S:      Maintained
8936 F:      drivers/hid/hid-roccat*
8937 F:      include/linux/hid-roccat*
8938 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
8939
8940 ROCKER DRIVER
8941 M:      Jiri Pirko <jiri@resnulli.us>
8942 M:      Scott Feldman <sfeldma@gmail.com>
8943 L:      netdev@vger.kernel.org
8944 S:      Supported
8945 F:      drivers/net/ethernet/rocker/
8946
8947 ROCKETPORT DRIVER
8948 P:      Comtrol Corp.
8949 W:      http://www.comtrol.com
8950 S:      Maintained
8951 F:      Documentation/serial/rocket.txt
8952 F:      drivers/tty/rocket*
8953
8954 ROCKETPORT EXPRESS/INFINITY DRIVER
8955 M:      Kevin Cernekee <cernekee@gmail.com>
8956 L:      linux-serial@vger.kernel.org
8957 S:      Odd Fixes
8958 F:      drivers/tty/serial/rp2.*
8959
8960 ROSE NETWORK LAYER
8961 M:      Ralf Baechle <ralf@linux-mips.org>
8962 L:      linux-hams@vger.kernel.org
8963 W:      http://www.linux-ax25.org/
8964 S:      Maintained
8965 F:      include/net/rose.h
8966 F:      include/uapi/linux/rose.h
8967 F:      net/rose/
8968
8969 RTL2830 MEDIA DRIVER
8970 M:      Antti Palosaari <crope@iki.fi>
8971 L:      linux-media@vger.kernel.org
8972 W:      http://linuxtv.org/
8973 W:      http://palosaari.fi/linux/
8974 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8975 T:      git git://linuxtv.org/anttip/media_tree.git
8976 S:      Maintained
8977 F:      drivers/media/dvb-frontends/rtl2830*
8978
8979 RTL2832 MEDIA DRIVER
8980 M:      Antti Palosaari <crope@iki.fi>
8981 L:      linux-media@vger.kernel.org
8982 W:      http://linuxtv.org/
8983 W:      http://palosaari.fi/linux/
8984 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8985 T:      git git://linuxtv.org/anttip/media_tree.git
8986 S:      Maintained
8987 F:      drivers/media/dvb-frontends/rtl2832*
8988
8989 RTL2832_SDR MEDIA DRIVER
8990 M:      Antti Palosaari <crope@iki.fi>
8991 L:      linux-media@vger.kernel.org
8992 W:      http://linuxtv.org/
8993 W:      http://palosaari.fi/linux/
8994 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8995 T:      git git://linuxtv.org/anttip/media_tree.git
8996 S:      Maintained
8997 F:      drivers/media/dvb-frontends/rtl2832_sdr*
8998
8999 RTL8180 WIRELESS DRIVER
9000 L:      linux-wireless@vger.kernel.org
9001 W:      http://wireless.kernel.org/
9002 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9003 S:      Orphan
9004 F:      drivers/net/wireless/rtl818x/rtl8180/
9005
9006 RTL8187 WIRELESS DRIVER
9007 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
9008 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
9009 M:      Larry Finger <Larry.Finger@lwfinger.net>
9010 L:      linux-wireless@vger.kernel.org
9011 W:      http://wireless.kernel.org/
9012 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9013 S:      Maintained
9014 F:      drivers/net/wireless/rtl818x/rtl8187/
9015
9016 RTL8192CE WIRELESS DRIVER
9017 M:      Larry Finger <Larry.Finger@lwfinger.net>
9018 M:      Chaoming Li <chaoming_li@realsil.com.cn>
9019 L:      linux-wireless@vger.kernel.org
9020 W:      http://wireless.kernel.org/
9021 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9022 S:      Maintained
9023 F:      drivers/net/wireless/rtlwifi/
9024 F:      drivers/net/wireless/rtlwifi/rtl8192ce/
9025
9026 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
9027 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
9028 L:      linux-wireless@vger.kernel.org
9029 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8723au-mac80211
9030 S:      Maintained
9031 F:      drivers/net/wireless/realtek/rtl8xxxu/
9032
9033 S3 SAVAGE FRAMEBUFFER DRIVER
9034 M:      Antonino Daplas <adaplas@gmail.com>
9035 L:      linux-fbdev@vger.kernel.org
9036 S:      Maintained
9037 F:      drivers/video/fbdev/savage/
9038
9039 S390
9040 M:      Martin Schwidefsky <schwidefsky@de.ibm.com>
9041 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
9042 L:      linux-s390@vger.kernel.org
9043 W:      http://www.ibm.com/developerworks/linux/linux390/
9044 S:      Supported
9045 F:      arch/s390/
9046 F:      drivers/s390/
9047 F:      Documentation/s390/
9048 F:      Documentation/DocBook/s390*
9049
9050 S390 COMMON I/O LAYER
9051 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
9052 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
9053 L:      linux-s390@vger.kernel.org
9054 W:      http://www.ibm.com/developerworks/linux/linux390/
9055 S:      Supported
9056 F:      drivers/s390/cio/
9057
9058 S390 DASD DRIVER
9059 M:      Stefan Weinhuber <wein@de.ibm.com>
9060 M:      Stefan Haberland <stefan.haberland@de.ibm.com>
9061 L:      linux-s390@vger.kernel.org
9062 W:      http://www.ibm.com/developerworks/linux/linux390/
9063 S:      Supported
9064 F:      drivers/s390/block/dasd*
9065 F:      block/partitions/ibm.c
9066
9067 S390 NETWORK DRIVERS
9068 M:      Ursula Braun <ursula.braun@de.ibm.com>
9069 L:      linux-s390@vger.kernel.org
9070 W:      http://www.ibm.com/developerworks/linux/linux390/
9071 S:      Supported
9072 F:      drivers/s390/net/
9073
9074 S390 PCI SUBSYSTEM
9075 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
9076 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
9077 L:      linux-s390@vger.kernel.org
9078 W:      http://www.ibm.com/developerworks/linux/linux390/
9079 S:      Supported
9080 F:      arch/s390/pci/
9081 F:      drivers/pci/hotplug/s390_pci_hpc.c
9082
9083 S390 ZCRYPT DRIVER
9084 M:      Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
9085 L:      linux-s390@vger.kernel.org
9086 W:      http://www.ibm.com/developerworks/linux/linux390/
9087 S:      Supported
9088 F:      drivers/s390/crypto/
9089
9090 S390 ZFCP DRIVER
9091 M:      Steffen Maier <maier@linux.vnet.ibm.com>
9092 L:      linux-s390@vger.kernel.org
9093 W:      http://www.ibm.com/developerworks/linux/linux390/
9094 S:      Supported
9095 F:      drivers/s390/scsi/zfcp_*
9096
9097 S390 IUCV NETWORK LAYER
9098 M:      Ursula Braun <ursula.braun@de.ibm.com>
9099 L:      linux-s390@vger.kernel.org
9100 W:      http://www.ibm.com/developerworks/linux/linux390/
9101 S:      Supported
9102 F:      drivers/s390/net/*iucv*
9103 F:      include/net/iucv/
9104 F:      net/iucv/
9105
9106 S390 IOMMU (PCI)
9107 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
9108 L:      linux-s390@vger.kernel.org
9109 W:      http://www.ibm.com/developerworks/linux/linux390/
9110 S:      Supported
9111 F:      drivers/iommu/s390-iommu.c
9112
9113 S3C24XX SD/MMC Driver
9114 M:      Ben Dooks <ben-linux@fluff.org>
9115 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9116 S:      Supported
9117 F:      drivers/mmc/host/s3cmci.*
9118
9119 SAA6588 RDS RECEIVER DRIVER
9120 M:      Hans Verkuil <hverkuil@xs4all.nl>
9121 L:      linux-media@vger.kernel.org
9122 T:      git git://linuxtv.org/media_tree.git
9123 W:      http://linuxtv.org
9124 S:      Odd Fixes
9125 F:      drivers/media/i2c/saa6588*
9126
9127 SAA7134 VIDEO4LINUX DRIVER
9128 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9129 L:      linux-media@vger.kernel.org
9130 W:      http://linuxtv.org
9131 T:      git git://linuxtv.org/media_tree.git
9132 S:      Odd fixes
9133 F:      Documentation/video4linux/*.saa7134
9134 F:      drivers/media/pci/saa7134/
9135
9136 SAA7146 VIDEO4LINUX-2 DRIVER
9137 M:      Hans Verkuil <hverkuil@xs4all.nl>
9138 L:      linux-media@vger.kernel.org
9139 T:      git git://linuxtv.org/media_tree.git
9140 S:      Maintained
9141 F:      drivers/media/common/saa7146/
9142 F:      drivers/media/pci/saa7146/
9143 F:      include/media/saa7146*
9144
9145 SAMSUNG LAPTOP DRIVER
9146 M:      Corentin Chary <corentin.chary@gmail.com>
9147 L:      platform-driver-x86@vger.kernel.org
9148 S:      Maintained
9149 F:      drivers/platform/x86/samsung-laptop.c
9150
9151 SAMSUNG AUDIO (ASoC) DRIVERS
9152 M:      Sangbeom Kim <sbkim73@samsung.com>
9153 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9154 S:      Supported
9155 F:      sound/soc/samsung/
9156
9157 SAMSUNG FRAMEBUFFER DRIVER
9158 M:      Jingoo Han <jingoohan1@gmail.com>
9159 L:      linux-fbdev@vger.kernel.org
9160 S:      Maintained
9161 F:      drivers/video/fbdev/s3c-fb.c
9162
9163 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
9164 M:      Sangbeom Kim <sbkim73@samsung.com>
9165 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
9166 L:      linux-kernel@vger.kernel.org
9167 L:      linux-samsung-soc@vger.kernel.org
9168 S:      Supported
9169 F:      drivers/mfd/sec*.c
9170 F:      drivers/regulator/s2m*.c
9171 F:      drivers/regulator/s5m*.c
9172 F:      drivers/clk/clk-s2mps11.c
9173 F:      drivers/rtc/rtc-s5m.c
9174 F:      include/linux/mfd/samsung/
9175 F:      Documentation/devicetree/bindings/regulator/s5m8767-regulator.txt
9176 F:      Documentation/devicetree/bindings/mfd/s2mp*.txt
9177
9178 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
9179 M:      Kyungmin Park <kyungmin.park@samsung.com>
9180 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
9181 L:      linux-media@vger.kernel.org
9182 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
9183 S:      Supported
9184 F:      drivers/media/platform/exynos4-is/
9185
9186 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
9187 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
9188 L:      linux-media@vger.kernel.org
9189 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9190 S:      Maintained
9191 F:      drivers/media/platform/s3c-camif/
9192 F:      include/media/s3c_camif.h
9193
9194 SAMSUNG S5C73M3 CAMERA DRIVER
9195 M:      Kyungmin Park <kyungmin.park@samsung.com>
9196 M:      Andrzej Hajda <a.hajda@samsung.com>
9197 L:      linux-media@vger.kernel.org
9198 S:      Supported
9199 F:      drivers/media/i2c/s5c73m3/*
9200
9201 SAMSUNG S5K5BAF CAMERA DRIVER
9202 M:      Kyungmin Park <kyungmin.park@samsung.com>
9203 M:      Andrzej Hajda <a.hajda@samsung.com>
9204 L:      linux-media@vger.kernel.org
9205 S:      Supported
9206 F:      drivers/media/i2c/s5k5baf.c
9207
9208 SAMSUNG S3FWRN5 NFC DRIVER
9209 M:      Robert Baldyga <r.baldyga@samsung.com>
9210 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
9211 S:      Supported
9212 F:      drivers/nfc/s3fwrn5
9213
9214 SAMSUNG SOC CLOCK DRIVERS
9215 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
9216 M:      Tomasz Figa <tomasz.figa@gmail.com>
9217 S:      Supported
9218 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9219 F:      drivers/clk/samsung/
9220
9221 SAMSUNG SXGBE DRIVERS
9222 M:      Byungho An <bh74.an@samsung.com>
9223 M:      Girish K S <ks.giri@samsung.com>
9224 M:      Vipul Pandya <vipul.pandya@samsung.com>
9225 S:      Supported
9226 L:      netdev@vger.kernel.org
9227 F:      drivers/net/ethernet/samsung/sxgbe/
9228
9229 SAMSUNG THERMAL DRIVER
9230 M:      Lukasz Majewski <l.majewski@samsung.com>
9231 L:      linux-pm@vger.kernel.org
9232 L:      linux-samsung-soc@vger.kernel.org
9233 S:      Supported
9234 T:      https://github.com/lmajewski/linux-samsung-thermal.git
9235 F:      drivers/thermal/samsung/
9236
9237 SAMSUNG USB2 PHY DRIVER
9238 M:      Kamil Debski <k.debski@samsung.com>
9239 L:      linux-kernel@vger.kernel.org
9240 S:      Supported
9241 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
9242 F:      Documentation/phy/samsung-usb2.txt
9243 F:      drivers/phy/phy-exynos4210-usb2.c
9244 F:      drivers/phy/phy-exynos4x12-usb2.c
9245 F:      drivers/phy/phy-exynos5250-usb2.c
9246 F:      drivers/phy/phy-s5pv210-usb2.c
9247 F:      drivers/phy/phy-samsung-usb2.c
9248 F:      drivers/phy/phy-samsung-usb2.h
9249
9250 SERIAL DRIVERS
9251 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9252 L:      linux-serial@vger.kernel.org
9253 S:      Maintained
9254 F:      drivers/tty/serial/
9255
9256 SYNOPSYS DESIGNWARE DMAC DRIVER
9257 M:      Viresh Kumar <vireshk@kernel.org>
9258 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9259 S:      Maintained
9260 F:      include/linux/dma/dw.h
9261 F:      include/linux/platform_data/dma-dw.h
9262 F:      drivers/dma/dw/
9263
9264 SYNOPSYS DESIGNWARE ETHERNET QOS 4.10a driver
9265 M: Lars Persson <lars.persson@axis.com>
9266 L: netdev@vger.kernel.org
9267 S: Supported
9268 F: Documentation/devicetree/bindings/net/snps,dwc-qos-ethernet.txt
9269 F: drivers/net/ethernet/synopsys/dwc_eth_qos.c
9270
9271 SYNOPSYS DESIGNWARE I2C DRIVER
9272 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9273 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
9274 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9275 L:      linux-i2c@vger.kernel.org
9276 S:      Maintained
9277 F:      drivers/i2c/busses/i2c-designware-*
9278 F:      include/linux/platform_data/i2c-designware.h
9279
9280 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
9281 M:      Seungwon Jeon <tgih.jun@samsung.com>
9282 M:      Jaehoon Chung <jh80.chung@samsung.com>
9283 L:      linux-mmc@vger.kernel.org
9284 S:      Maintained
9285 F:      include/linux/mmc/dw_mmc.h
9286 F:      drivers/mmc/host/dw_mmc*
9287
9288 SYSTEM TRACE MODULE CLASS
9289 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
9290 S:      Maintained
9291 F:      Documentation/trace/stm.txt
9292 F:      drivers/hwtracing/stm/
9293 F:      include/linux/stm.h
9294 F:      include/uapi/linux/stm.h
9295
9296 THUNDERBOLT DRIVER
9297 M:      Andreas Noever <andreas.noever@gmail.com>
9298 S:      Maintained
9299 F:      drivers/thunderbolt/
9300
9301 TIMEKEEPING, CLOCKSOURCE CORE, NTP
9302 M:      John Stultz <john.stultz@linaro.org>
9303 M:      Thomas Gleixner <tglx@linutronix.de>
9304 L:      linux-kernel@vger.kernel.org
9305 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
9306 S:      Supported
9307 F:      include/linux/clocksource.h
9308 F:      include/linux/time.h
9309 F:      include/linux/timex.h
9310 F:      include/uapi/linux/time.h
9311 F:      include/uapi/linux/timex.h
9312 F:      kernel/time/clocksource.c
9313 F:      kernel/time/time*.c
9314 F:      kernel/time/ntp.c
9315 F:      tools/testing/selftests/timers/
9316
9317 SC1200 WDT DRIVER
9318 M:      Zwane Mwaikambo <zwanem@gmail.com>
9319 S:      Maintained
9320 F:      drivers/watchdog/sc1200wdt.c
9321
9322 SCHEDULER
9323 M:      Ingo Molnar <mingo@redhat.com>
9324 M:      Peter Zijlstra <peterz@infradead.org>
9325 L:      linux-kernel@vger.kernel.org
9326 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
9327 S:      Maintained
9328 F:      kernel/sched/
9329 F:      include/linux/sched.h
9330 F:      include/uapi/linux/sched.h
9331 F:      include/linux/wait.h
9332
9333 SCORE ARCHITECTURE
9334 M:      Chen Liqin <liqin.linux@gmail.com>
9335 M:      Lennox Wu <lennox.wu@gmail.com>
9336 W:      http://www.sunplus.com
9337 S:      Supported
9338 F:      arch/score/
9339
9340 SYSTEM CONTROL & POWER INTERFACE (SCPI) Message Protocol drivers
9341 M:      Sudeep Holla <sudeep.holla@arm.com>
9342 L:      linux-arm-kernel@lists.infradead.org
9343 S:      Maintained
9344 F:      Documentation/devicetree/bindings/arm/arm,scpi.txt
9345 F:      drivers/clk/clk-scpi.c
9346 F:      drivers/cpufreq/scpi-cpufreq.c
9347 F:      drivers/firmware/arm_scpi.c
9348 F:      include/linux/scpi_protocol.h
9349
9350 SCSI CDROM DRIVER
9351 M:      Jens Axboe <axboe@kernel.dk>
9352 L:      linux-scsi@vger.kernel.org
9353 W:      http://www.kernel.dk
9354 S:      Maintained
9355 F:      drivers/scsi/sr*
9356
9357 SCSI RDMA PROTOCOL (SRP) INITIATOR
9358 M:      Bart Van Assche <bart.vanassche@sandisk.com>
9359 L:      linux-rdma@vger.kernel.org
9360 S:      Supported
9361 W:      http://www.openfabrics.org
9362 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9363 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
9364 F:      drivers/infiniband/ulp/srp/
9365 F:      include/scsi/srp.h
9366
9367 SCSI SG DRIVER
9368 M:      Doug Gilbert <dgilbert@interlog.com>
9369 L:      linux-scsi@vger.kernel.org
9370 W:      http://sg.danny.cz/sg
9371 S:      Maintained
9372 F:      Documentation/scsi/scsi-generic.txt
9373 F:      drivers/scsi/sg.c
9374 F:      include/scsi/sg.h
9375
9376 SCSI SUBSYSTEM
9377 M:      "James E.J. Bottomley" <JBottomley@odin.com>
9378 L:      linux-scsi@vger.kernel.org
9379 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
9380 S:      Maintained
9381 F:      drivers/scsi/
9382 F:      include/scsi/
9383
9384 SCSI TAPE DRIVER
9385 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
9386 L:      linux-scsi@vger.kernel.org
9387 S:      Maintained
9388 F:      Documentation/scsi/st.txt
9389 F:      drivers/scsi/st.*
9390 F:      drivers/scsi/st_*.h
9391
9392 SCTP PROTOCOL
9393 M:      Vlad Yasevich <vyasevich@gmail.com>
9394 M:      Neil Horman <nhorman@tuxdriver.com>
9395 L:      linux-sctp@vger.kernel.org
9396 W:      http://lksctp.sourceforge.net
9397 S:      Maintained
9398 F:      Documentation/networking/sctp.txt
9399 F:      include/linux/sctp.h
9400 F:      include/uapi/linux/sctp.h
9401 F:      include/net/sctp/
9402 F:      net/sctp/
9403
9404 SCx200 CPU SUPPORT
9405 M:      Jim Cromie <jim.cromie@gmail.com>
9406 S:      Odd Fixes
9407 F:      Documentation/i2c/busses/scx200_acb
9408 F:      arch/x86/platform/scx200/
9409 F:      drivers/watchdog/scx200_wdt.c
9410 F:      drivers/i2c/busses/scx200*
9411 F:      drivers/mtd/maps/scx200_docflash.c
9412 F:      include/linux/scx200.h
9413
9414 SCx200 GPIO DRIVER
9415 M:      Jim Cromie <jim.cromie@gmail.com>
9416 S:      Maintained
9417 F:      drivers/char/scx200_gpio.c
9418 F:      include/linux/scx200_gpio.h
9419
9420 SCx200 HRT CLOCKSOURCE DRIVER
9421 M:      Jim Cromie <jim.cromie@gmail.com>
9422 S:      Maintained
9423 F:      drivers/clocksource/scx200_hrt.c
9424
9425 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
9426 M:      Sascha Sommer <saschasommer@freenet.de>
9427 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
9428 S:      Maintained
9429 F:      drivers/mmc/host/sdricoh_cs.c
9430
9431 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
9432 L:      linux-mmc@vger.kernel.org
9433 S:      Orphan
9434 F:      drivers/mmc/host/sdhci.*
9435 F:      drivers/mmc/host/sdhci-pltfm.[ch]
9436
9437 SECURE COMPUTING
9438 M:      Kees Cook <keescook@chromium.org>
9439 R:      Andy Lutomirski <luto@amacapital.net>
9440 R:      Will Drewry <wad@chromium.org>
9441 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
9442 S:      Supported
9443 F:      kernel/seccomp.c
9444 F:      include/uapi/linux/seccomp.h
9445 F:      include/linux/seccomp.h
9446 F:      tools/testing/selftests/seccomp/*
9447 K:      \bsecure_computing
9448 K:      \bTIF_SECCOMP\b
9449
9450 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
9451 M:      Ben Dooks <ben-linux@fluff.org>
9452 M:      Jaehoon Chung <jh80.chung@samsung.com>
9453 L:      linux-mmc@vger.kernel.org
9454 S:      Maintained
9455 F:      drivers/mmc/host/sdhci-s3c*
9456
9457 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
9458 M:      Viresh Kumar <vireshk@kernel.org>
9459 L:      spear-devel@list.st.com
9460 L:      linux-mmc@vger.kernel.org
9461 S:      Maintained
9462 F:      drivers/mmc/host/sdhci-spear.c
9463
9464 SECURITY SUBSYSTEM
9465 M:      James Morris <james.l.morris@oracle.com>
9466 M:      "Serge E. Hallyn" <serge@hallyn.com>
9467 L:      linux-security-module@vger.kernel.org (suggested Cc:)
9468 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
9469 W:      http://kernsec.org/
9470 S:      Supported
9471 F:      security/
9472
9473 SECURITY CONTACT
9474 M:      Security Officers <security@kernel.org>
9475 S:      Supported
9476
9477 SELINUX SECURITY MODULE
9478 M:      Paul Moore <paul@paul-moore.com>
9479 M:      Stephen Smalley <sds@tycho.nsa.gov>
9480 M:      Eric Paris <eparis@parisplace.org>
9481 L:      selinux@tycho.nsa.gov (moderated for non-subscribers)
9482 W:      http://selinuxproject.org
9483 T:      git git://git.infradead.org/users/pcmoore/selinux
9484 S:      Supported
9485 F:      include/linux/selinux*
9486 F:      security/selinux/
9487 F:      scripts/selinux/
9488
9489 APPARMOR SECURITY MODULE
9490 M:      John Johansen <john.johansen@canonical.com>
9491 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
9492 W:      apparmor.wiki.kernel.org
9493 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
9494 S:      Supported
9495 F:      security/apparmor/
9496
9497 YAMA SECURITY MODULE
9498 M:      Kees Cook <keescook@chromium.org>
9499 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
9500 S:      Supported
9501 F:      security/yama/
9502
9503 SENSABLE PHANTOM
9504 M:      Jiri Slaby <jirislaby@gmail.com>
9505 S:      Maintained
9506 F:      drivers/misc/phantom.c
9507 F:      include/uapi/linux/phantom.h
9508
9509 SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
9510 M:      Jayamohan Kallickal <jayamohan.kallickal@avagotech.com>
9511 M:      Ketan Mukadam <ketan.mukadam@avagotech.com>
9512 M:      John Soni Jose <sony.john@avagotech.com>
9513 L:      linux-scsi@vger.kernel.org
9514 W:      http://www.avagotech.com
9515 S:      Supported
9516 F:      drivers/scsi/be2iscsi/
9517
9518 Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER
9519 M:      Sathya Perla <sathya.perla@avagotech.com>
9520 M:      Ajit Khaparde <ajit.khaparde@avagotech.com>
9521 M:      Padmanabh Ratnakar <padmanabh.ratnakar@avagotech.com>
9522 M:      Sriharsha Basavapatna <sriharsha.basavapatna@avagotech.com>
9523 L:      netdev@vger.kernel.org
9524 W:      http://www.emulex.com
9525 S:      Supported
9526 F:      drivers/net/ethernet/emulex/benet/
9527
9528 EMULEX ONECONNECT ROCE DRIVER
9529 M:      Selvin Xavier <selvin.xavier@avagotech.com>
9530 M:      Devesh Sharma <devesh.sharma@avagotech.com>
9531 M:      Mitesh Ahuja <mitesh.ahuja@avagotech.com>
9532 L:      linux-rdma@vger.kernel.org
9533 W:      http://www.emulex.com
9534 S:      Supported
9535 F:      drivers/infiniband/hw/ocrdma/
9536
9537 SFC NETWORK DRIVER
9538 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
9539 M:      Shradha Shah <sshah@solarflare.com>
9540 L:      netdev@vger.kernel.org
9541 S:      Supported
9542 F:      drivers/net/ethernet/sfc/
9543
9544 SGI GRU DRIVER
9545 M:      Dimitri Sivanich <sivanich@sgi.com>
9546 S:      Maintained
9547 F:      drivers/misc/sgi-gru/
9548
9549 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
9550 M:      Pat Gefre <pfg@sgi.com>
9551 L:      linux-ia64@vger.kernel.org
9552 S:      Supported
9553 F:      Documentation/ia64/serial.txt
9554 F:      drivers/tty/serial/ioc?_serial.c
9555 F:      include/linux/ioc?.h
9556
9557 SGI XP/XPC/XPNET DRIVER
9558 M:      Cliff Whickman <cpw@sgi.com>
9559 M:      Robin Holt <robinmholt@gmail.com>
9560 S:      Maintained
9561 F:      drivers/misc/sgi-xp/
9562
9563 SI2157 MEDIA DRIVER
9564 M:      Antti Palosaari <crope@iki.fi>
9565 L:      linux-media@vger.kernel.org
9566 W:      http://linuxtv.org/
9567 W:      http://palosaari.fi/linux/
9568 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9569 T:      git git://linuxtv.org/anttip/media_tree.git
9570 S:      Maintained
9571 F:      drivers/media/tuners/si2157*
9572
9573 SI2168 MEDIA DRIVER
9574 M:      Antti Palosaari <crope@iki.fi>
9575 L:      linux-media@vger.kernel.org
9576 W:      http://linuxtv.org/
9577 W:      http://palosaari.fi/linux/
9578 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9579 T:      git git://linuxtv.org/anttip/media_tree.git
9580 S:      Maintained
9581 F:      drivers/media/dvb-frontends/si2168*
9582
9583 SI470X FM RADIO RECEIVER I2C DRIVER
9584 M:      Hans Verkuil <hverkuil@xs4all.nl>
9585 L:      linux-media@vger.kernel.org
9586 T:      git git://linuxtv.org/media_tree.git
9587 W:      http://linuxtv.org
9588 S:      Odd Fixes
9589 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
9590
9591 SI470X FM RADIO RECEIVER USB DRIVER
9592 M:      Hans Verkuil <hverkuil@xs4all.nl>
9593 L:      linux-media@vger.kernel.org
9594 T:      git git://linuxtv.org/media_tree.git
9595 W:      http://linuxtv.org
9596 S:      Maintained
9597 F:      drivers/media/radio/si470x/radio-si470x-common.c
9598 F:      drivers/media/radio/si470x/radio-si470x.h
9599 F:      drivers/media/radio/si470x/radio-si470x-usb.c
9600
9601 SI4713 FM RADIO TRANSMITTER I2C DRIVER
9602 M:      Eduardo Valentin <edubezval@gmail.com>
9603 L:      linux-media@vger.kernel.org
9604 T:      git git://linuxtv.org/media_tree.git
9605 W:      http://linuxtv.org
9606 S:      Odd Fixes
9607 F:      drivers/media/radio/si4713/si4713.?
9608
9609 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
9610 M:      Eduardo Valentin <edubezval@gmail.com>
9611 L:      linux-media@vger.kernel.org
9612 T:      git git://linuxtv.org/media_tree.git
9613 W:      http://linuxtv.org
9614 S:      Odd Fixes
9615 F:      drivers/media/radio/si4713/radio-platform-si4713.c
9616
9617 SI4713 FM RADIO TRANSMITTER USB DRIVER
9618 M:      Hans Verkuil <hverkuil@xs4all.nl>
9619 L:      linux-media@vger.kernel.org
9620 T:      git git://linuxtv.org/media_tree.git
9621 W:      http://linuxtv.org
9622 S:      Maintained
9623 F:      drivers/media/radio/si4713/radio-usb-si4713.c
9624
9625 SIANO DVB DRIVER
9626 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9627 L:      linux-media@vger.kernel.org
9628 W:      http://linuxtv.org
9629 T:      git git://linuxtv.org/media_tree.git
9630 S:      Odd fixes
9631 F:      drivers/media/common/siano/
9632 F:      drivers/media/usb/siano/
9633 F:      drivers/media/usb/siano/
9634 F:      drivers/media/mmc/siano/
9635
9636 SIMPLEFB FB DRIVER
9637 M:      Hans de Goede <hdegoede@redhat.com>
9638 L:      linux-fbdev@vger.kernel.org
9639 S:      Maintained
9640 F:      Documentation/devicetree/bindings/video/simple-framebuffer.txt
9641 F:      drivers/video/fbdev/simplefb.c
9642 F:      include/linux/platform_data/simplefb.h
9643
9644 SH_VEU V4L2 MEM2MEM DRIVER
9645 L:      linux-media@vger.kernel.org
9646 S:      Orphan
9647 F:      drivers/media/platform/sh_veu.c
9648
9649 SH_VOU V4L2 OUTPUT DRIVER
9650 L:      linux-media@vger.kernel.org
9651 S:      Orphan
9652 F:      drivers/media/platform/sh_vou.c
9653 F:      include/media/sh_vou.h
9654
9655 SIMPLE FIRMWARE INTERFACE (SFI)
9656 M:      Len Brown <lenb@kernel.org>
9657 L:      sfi-devel@simplefirmware.org
9658 W:      http://simplefirmware.org/
9659 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
9660 S:      Supported
9661 F:      arch/x86/platform/sfi/
9662 F:      drivers/sfi/
9663 F:      include/linux/sfi*.h
9664
9665 SIMTEC EB110ATX (Chalice CATS)
9666 P:      Ben Dooks
9667 P:      Vincent Sanders <vince@simtec.co.uk>
9668 M:      Simtec Linux Team <linux@simtec.co.uk>
9669 W:      http://www.simtec.co.uk/products/EB110ATX/
9670 S:      Supported
9671
9672 SIMTEC EB2410ITX (BAST)
9673 P:      Ben Dooks
9674 P:      Vincent Sanders <vince@simtec.co.uk>
9675 M:      Simtec Linux Team <linux@simtec.co.uk>
9676 W:      http://www.simtec.co.uk/products/EB2410ITX/
9677 S:      Supported
9678 F:      arch/arm/mach-s3c24xx/mach-bast.c
9679 F:      arch/arm/mach-s3c24xx/bast-ide.c
9680 F:      arch/arm/mach-s3c24xx/bast-irq.c
9681
9682 TI DAVINCI MACHINE SUPPORT
9683 M:      Sekhar Nori <nsekhar@ti.com>
9684 M:      Kevin Hilman <khilman@deeprootsystems.com>
9685 T:      git git://gitorious.org/linux-davinci/linux-davinci.git
9686 Q:      http://patchwork.kernel.org/project/linux-davinci/list/
9687 S:      Supported
9688 F:      arch/arm/mach-davinci/
9689 F:      drivers/i2c/busses/i2c-davinci.c
9690
9691 TI DAVINCI SERIES MEDIA DRIVER
9692 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9693 L:      linux-media@vger.kernel.org
9694 W:      http://linuxtv.org/
9695 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9696 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9697 S:      Maintained
9698 F:      drivers/media/platform/davinci/
9699 F:      include/media/davinci/
9700
9701 TI AM437X VPFE DRIVER
9702 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9703 L:      linux-media@vger.kernel.org
9704 W:      http://linuxtv.org/
9705 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9706 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9707 S:      Maintained
9708 F:      drivers/media/platform/am437x/
9709
9710 OV2659 OMNIVISION SENSOR DRIVER
9711 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9712 L:      linux-media@vger.kernel.org
9713 W:      http://linuxtv.org/
9714 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9715 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9716 S:      Maintained
9717 F:      drivers/media/i2c/ov2659.c
9718 F:      include/media/ov2659.h
9719
9720 SILICON MOTION SM712 FRAME BUFFER DRIVER
9721 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
9722 M:      Teddy Wang <teddy.wang@siliconmotion.com>
9723 M:      Sudip Mukherjee <sudip@vectorindia.org>
9724 L:      linux-fbdev@vger.kernel.org
9725 S:      Maintained
9726 F:      drivers/video/fbdev/sm712*
9727 F:      Documentation/fb/sm712fb.txt
9728
9729 SIS 190 ETHERNET DRIVER
9730 M:      Francois Romieu <romieu@fr.zoreil.com>
9731 L:      netdev@vger.kernel.org
9732 S:      Maintained
9733 F:      drivers/net/ethernet/sis/sis190.c
9734
9735 SIS 900/7016 FAST ETHERNET DRIVER
9736 M:      Daniele Venzano <venza@brownhat.org>
9737 W:      http://www.brownhat.org/sis900.html
9738 L:      netdev@vger.kernel.org
9739 S:      Maintained
9740 F:      drivers/net/ethernet/sis/sis900.*
9741
9742 SIS FRAMEBUFFER DRIVER
9743 M:      Thomas Winischhofer <thomas@winischhofer.net>
9744 W:      http://www.winischhofer.net/linuxsisvga.shtml
9745 S:      Maintained
9746 F:      Documentation/fb/sisfb.txt
9747 F:      drivers/video/fbdev/sis/
9748 F:      include/video/sisfb.h
9749
9750 SIS USB2VGA DRIVER
9751 M:      Thomas Winischhofer <thomas@winischhofer.net>
9752 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
9753 S:      Maintained
9754 F:      drivers/usb/misc/sisusbvga/
9755
9756 SLAB ALLOCATOR
9757 M:      Christoph Lameter <cl@linux.com>
9758 M:      Pekka Enberg <penberg@kernel.org>
9759 M:      David Rientjes <rientjes@google.com>
9760 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
9761 M:      Andrew Morton <akpm@linux-foundation.org>
9762 L:      linux-mm@kvack.org
9763 S:      Maintained
9764 F:      include/linux/sl?b*.h
9765 F:      mm/sl?b*
9766
9767 SLEEPABLE READ-COPY UPDATE (SRCU)
9768 M:      Lai Jiangshan <jiangshanlai@gmail.com>
9769 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9770 M:      Josh Triplett <josh@joshtriplett.org>
9771 R:      Steven Rostedt <rostedt@goodmis.org>
9772 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9773 L:      linux-kernel@vger.kernel.org
9774 W:      http://www.rdrop.com/users/paulmck/RCU/
9775 S:      Supported
9776 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9777 F:      include/linux/srcu.h
9778 F:      kernel/rcu/srcu.c
9779
9780 SMACK SECURITY MODULE
9781 M:      Casey Schaufler <casey@schaufler-ca.com>
9782 L:      linux-security-module@vger.kernel.org
9783 W:      http://schaufler-ca.com
9784 T:      git git://git.gitorious.org/smack-next/kernel.git
9785 S:      Maintained
9786 F:      Documentation/security/Smack.txt
9787 F:      security/smack/
9788
9789 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
9790 M:      Kevin Hilman <khilman@kernel.org>
9791 M:      Nishanth Menon <nm@ti.com>
9792 S:      Maintained
9793 F:      drivers/power/avs/
9794 F:      include/linux/power/smartreflex.h
9795 L:      linux-pm@vger.kernel.org
9796
9797 SMC91x ETHERNET DRIVER
9798 M:      Nicolas Pitre <nico@fluxnic.net>
9799 S:      Odd Fixes
9800 F:      drivers/net/ethernet/smsc/smc91x.*
9801
9802 SMIA AND SMIA++ IMAGE SENSOR DRIVER
9803 M:      Sakari Ailus <sakari.ailus@iki.fi>
9804 L:      linux-media@vger.kernel.org
9805 S:      Maintained
9806 F:      drivers/media/i2c/smiapp/
9807 F:      include/media/smiapp.h
9808 F:      drivers/media/i2c/smiapp-pll.c
9809 F:      drivers/media/i2c/smiapp-pll.h
9810 F:      include/uapi/linux/smiapp.h
9811 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
9812
9813 SMM665 HARDWARE MONITOR DRIVER
9814 M:      Guenter Roeck <linux@roeck-us.net>
9815 L:      lm-sensors@lm-sensors.org
9816 S:      Maintained
9817 F:      Documentation/hwmon/smm665
9818 F:      drivers/hwmon/smm665.c
9819
9820 SMSC EMC2103 HARDWARE MONITOR DRIVER
9821 M:      Steve Glendinning <steve.glendinning@shawell.net>
9822 L:      lm-sensors@lm-sensors.org
9823 S:      Maintained
9824 F:      Documentation/hwmon/emc2103
9825 F:      drivers/hwmon/emc2103.c
9826
9827 SMSC SCH5627 HARDWARE MONITOR DRIVER
9828 M:      Hans de Goede <hdegoede@redhat.com>
9829 L:      lm-sensors@lm-sensors.org
9830 S:      Supported
9831 F:      Documentation/hwmon/sch5627
9832 F:      drivers/hwmon/sch5627.c
9833
9834 SMSC47B397 HARDWARE MONITOR DRIVER
9835 M:      Jean Delvare <jdelvare@suse.com>
9836 L:      lm-sensors@lm-sensors.org
9837 S:      Maintained
9838 F:      Documentation/hwmon/smsc47b397
9839 F:      drivers/hwmon/smsc47b397.c
9840
9841 SMSC911x ETHERNET DRIVER
9842 M:      Steve Glendinning <steve.glendinning@shawell.net>
9843 L:      netdev@vger.kernel.org
9844 S:      Maintained
9845 F:      include/linux/smsc911x.h
9846 F:      drivers/net/ethernet/smsc/smsc911x.*
9847
9848 SMSC9420 PCI ETHERNET DRIVER
9849 M:      Steve Glendinning <steve.glendinning@shawell.net>
9850 L:      netdev@vger.kernel.org
9851 S:      Maintained
9852 F:      drivers/net/ethernet/smsc/smsc9420.*
9853
9854 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
9855 M:      Steve Glendinning <steve.glendinning@shawell.net>
9856 L:      linux-fbdev@vger.kernel.org
9857 S:      Maintained
9858 F:      drivers/video/fbdev/smscufx.c
9859
9860 SOC-CAMERA V4L2 SUBSYSTEM
9861 M:      Guennadi Liakhovetski <g.liakhovetski@gmx.de>
9862 L:      linux-media@vger.kernel.org
9863 T:      git git://linuxtv.org/media_tree.git
9864 S:      Maintained
9865 F:      include/media/soc*
9866 F:      drivers/media/i2c/soc_camera/
9867 F:      drivers/media/platform/soc_camera/
9868
9869 SOEKRIS NET48XX LED SUPPORT
9870 M:      Chris Boot <bootc@bootc.net>
9871 S:      Maintained
9872 F:      drivers/leds/leds-net48xx.c
9873
9874 SOFTLOGIC 6x10 MPEG CODEC
9875 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
9876 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
9877 M:      Andrey Utkin <andrey.krieger.utkin@gmail.com>
9878 M:      Ismael Luceno <ismael@iodev.co.uk>
9879 L:      linux-media@vger.kernel.org
9880 S:      Supported
9881 F:      drivers/media/pci/solo6x10/
9882
9883 SOFTWARE RAID (Multiple Disks) SUPPORT
9884 M:      Neil Brown <neilb@suse.com>
9885 L:      linux-raid@vger.kernel.org
9886 S:      Supported
9887 F:      drivers/md/
9888 F:      include/linux/raid/
9889 F:      include/uapi/linux/raid/
9890
9891 SONIC NETWORK DRIVER
9892 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
9893 L:      netdev@vger.kernel.org
9894 S:      Maintained
9895 F:      drivers/net/ethernet/natsemi/sonic.*
9896
9897 SONICS SILICON BACKPLANE DRIVER (SSB)
9898 M:      Michael Buesch <m@bues.ch>
9899 L:      netdev@vger.kernel.org
9900 S:      Maintained
9901 F:      drivers/ssb/
9902 F:      include/linux/ssb/
9903
9904 SONY VAIO CONTROL DEVICE DRIVER
9905 M:      Mattia Dongili <malattia@linux.it>
9906 L:      platform-driver-x86@vger.kernel.org
9907 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
9908 S:      Maintained
9909 F:      Documentation/laptops/sony-laptop.txt
9910 F:      drivers/char/sonypi.c
9911 F:      drivers/platform/x86/sony-laptop.c
9912 F:      include/linux/sony-laptop.h
9913
9914 SONY MEMORYSTICK CARD SUPPORT
9915 M:      Alex Dubov <oakad@yahoo.com>
9916 W:      http://tifmxx.berlios.de/
9917 S:      Maintained
9918 F:      drivers/memstick/host/tifm_ms.c
9919
9920 SONY MEMORYSTICK STANDARD SUPPORT
9921 M:      Maxim Levitsky <maximlevitsky@gmail.com>
9922 S:      Maintained
9923 F:      drivers/memstick/core/ms_block.*
9924
9925 SOUND
9926 M:      Jaroslav Kysela <perex@perex.cz>
9927 M:      Takashi Iwai <tiwai@suse.com>
9928 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9929 W:      http://www.alsa-project.org/
9930 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
9931 T:      git git://git.alsa-project.org/alsa-kernel.git
9932 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
9933 S:      Maintained
9934 F:      Documentation/sound/
9935 F:      include/sound/
9936 F:      include/uapi/sound/
9937 F:      sound/
9938
9939 SOUND - COMPRESSED AUDIO
9940 M:      Vinod Koul <vinod.koul@intel.com>
9941 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9942 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
9943 S:      Supported
9944 F:      Documentation/sound/alsa/compress_offload.txt
9945 F:      include/sound/compress_driver.h
9946 F:      include/uapi/sound/compress_*
9947 F:      sound/core/compress_offload.c
9948 F:      sound/soc/soc-compress.c
9949
9950 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
9951 M:      Liam Girdwood <lgirdwood@gmail.com>
9952 M:      Mark Brown <broonie@kernel.org>
9953 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
9954 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9955 W:      http://alsa-project.org/main/index.php/ASoC
9956 S:      Supported
9957 F:      Documentation/sound/alsa/soc/
9958 F:      sound/soc/
9959 F:      include/sound/soc*
9960
9961 SOUND - DMAENGINE HELPERS
9962 M:      Lars-Peter Clausen <lars@metafoo.de>
9963 S:      Supported
9964 F:      include/sound/dmaengine_pcm.h
9965 F:      sound/core/pcm_dmaengine.c
9966 F:      sound/soc/soc-generic-dmaengine-pcm.c
9967
9968 SP2 MEDIA DRIVER
9969 M:      Olli Salonen <olli.salonen@iki.fi>
9970 L:      linux-media@vger.kernel.org
9971 W:      http://linuxtv.org/
9972 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9973 S:      Maintained
9974 F:      drivers/media/dvb-frontends/sp2*
9975
9976 SPARC + UltraSPARC (sparc/sparc64)
9977 M:      "David S. Miller" <davem@davemloft.net>
9978 L:      sparclinux@vger.kernel.org
9979 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
9980 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
9981 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
9982 S:      Maintained
9983 F:      arch/sparc/
9984 F:      drivers/sbus/
9985
9986 SPARC SERIAL DRIVERS
9987 M:      "David S. Miller" <davem@davemloft.net>
9988 L:      sparclinux@vger.kernel.org
9989 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
9990 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
9991 S:      Maintained
9992 F:      include/linux/sunserialcore.h
9993 F:      drivers/tty/serial/suncore.c
9994 F:      drivers/tty/serial/sunhv.c
9995 F:      drivers/tty/serial/sunsab.c
9996 F:      drivers/tty/serial/sunsab.h
9997 F:      drivers/tty/serial/sunsu.c
9998 F:      drivers/tty/serial/sunzilog.c
9999 F:      drivers/tty/serial/sunzilog.h
10000
10001 SPARSE CHECKER
10002 M:      "Christopher Li" <sparse@chrisli.org>
10003 L:      linux-sparse@vger.kernel.org
10004 W:      https://sparse.wiki.kernel.org/
10005 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
10006 T:      git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
10007 S:      Maintained
10008 F:      include/linux/compiler.h
10009
10010 SPEAR PLATFORM SUPPORT
10011 M:      Viresh Kumar <vireshk@kernel.org>
10012 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
10013 L:      spear-devel@list.st.com
10014 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10015 W:      http://www.st.com/spear
10016 S:      Maintained
10017 F:      arch/arm/mach-spear/
10018
10019 SPEAR CLOCK FRAMEWORK SUPPORT
10020 M:      Viresh Kumar <vireshk@kernel.org>
10021 L:      spear-devel@list.st.com
10022 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10023 W:      http://www.st.com/spear
10024 S:      Maintained
10025 F:      drivers/clk/spear/
10026
10027 SPI SUBSYSTEM
10028 M:      Mark Brown <broonie@kernel.org>
10029 L:      linux-spi@vger.kernel.org
10030 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
10031 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
10032 S:      Maintained
10033 F:      Documentation/spi/
10034 F:      drivers/spi/
10035 F:      include/linux/spi/
10036 F:      include/uapi/linux/spi/
10037
10038 SPIDERNET NETWORK DRIVER for CELL
10039 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
10040 L:      netdev@vger.kernel.org
10041 S:      Supported
10042 F:      Documentation/networking/spider_net.txt
10043 F:      drivers/net/ethernet/toshiba/spider_net*
10044
10045 SPU FILE SYSTEM
10046 M:      Jeremy Kerr <jk@ozlabs.org>
10047 L:      linuxppc-dev@lists.ozlabs.org
10048 W:      http://www.ibm.com/developerworks/power/cell/
10049 S:      Supported
10050 F:      Documentation/filesystems/spufs.txt
10051 F:      arch/powerpc/platforms/cell/spufs/
10052
10053 SQUASHFS FILE SYSTEM
10054 M:      Phillip Lougher <phillip@squashfs.org.uk>
10055 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
10056 W:      http://squashfs.org.uk
10057 S:      Maintained
10058 F:      Documentation/filesystems/squashfs.txt
10059 F:      fs/squashfs/
10060
10061 SRM (Alpha) environment access
10062 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
10063 S:      Maintained
10064 F:      arch/alpha/kernel/srm_env.c
10065
10066 STABLE BRANCH
10067 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10068 L:      stable@vger.kernel.org
10069 S:      Supported
10070 F:      Documentation/stable_kernel_rules.txt
10071
10072 STAGING SUBSYSTEM
10073 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10074 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
10075 L:      devel@driverdev.osuosl.org
10076 S:      Supported
10077 F:      drivers/staging/
10078
10079 STAGING - COMEDI
10080 M:      Ian Abbott <abbotti@mev.co.uk>
10081 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
10082 S:      Odd Fixes
10083 F:      drivers/staging/comedi/
10084
10085 STAGING - FLARION FT1000 DRIVERS
10086 M:      Marek Belisko <marek.belisko@gmail.com>
10087 S:      Odd Fixes
10088 F:      drivers/staging/ft1000/
10089
10090 STAGING - INDUSTRIAL IO
10091 M:      Jonathan Cameron <jic23@kernel.org>
10092 L:      linux-iio@vger.kernel.org
10093 S:      Odd Fixes
10094 F:      drivers/staging/iio/
10095
10096 STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
10097 M:      Jarod Wilson <jarod@wilsonet.com>
10098 W:      http://www.lirc.org/
10099 S:      Odd Fixes
10100 F:      drivers/staging/media/lirc/
10101
10102 STAGING - LUSTRE PARALLEL FILESYSTEM
10103 M:      Oleg Drokin <oleg.drokin@intel.com>
10104 M:      Andreas Dilger <andreas.dilger@intel.com>
10105 L:      lustre-devel@lists.lustre.org (moderated for non-subscribers)
10106 W:      http://wiki.lustre.org/
10107 S:      Maintained
10108 F:      drivers/staging/lustre
10109
10110 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
10111 M:      Marc Dietrich <marvin24@gmx.de>
10112 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
10113 L:      linux-tegra@vger.kernel.org
10114 S:      Maintained
10115 F:      drivers/staging/nvec/
10116
10117 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
10118 M:      Jens Frederich <jfrederich@gmail.com>
10119 M:      Daniel Drake <dsd@laptop.org>
10120 M:      Jon Nettleton <jon.nettleton@gmail.com>
10121 W:      http://wiki.laptop.org/go/DCON
10122 S:      Maintained
10123 F:      drivers/staging/olpc_dcon/
10124
10125 STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
10126 M:      Willy Tarreau <willy@meta-x.org>
10127 S:      Odd Fixes
10128 F:      drivers/staging/panel/
10129
10130 STAGING - REALTEK RTL8712U DRIVERS
10131 M:      Larry Finger <Larry.Finger@lwfinger.net>
10132 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
10133 S:      Odd Fixes
10134 F:      drivers/staging/rtl8712/
10135
10136 STAGING - REALTEK RTL8723U WIRELESS DRIVER
10137 M:      Larry Finger <Larry.Finger@lwfinger.net>
10138 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
10139 L:      linux-wireless@vger.kernel.org
10140 S:      Maintained
10141 F:      drivers/staging/rtl8723au/
10142
10143 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
10144 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
10145 M:      Teddy Wang <teddy.wang@siliconmotion.com>
10146 M:      Sudip Mukherjee <sudip@vectorindia.org>
10147 L:      linux-fbdev@vger.kernel.org
10148 S:      Maintained
10149 F:      drivers/staging/sm750fb/
10150
10151 STAGING - SLICOSS
10152 M:      Lior Dotan <liodot@gmail.com>
10153 M:      Christopher Harrer <charrer@alacritech.com>
10154 S:      Odd Fixes
10155 F:      drivers/staging/slicoss/
10156
10157 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
10158 M:      William Hubbs <w.d.hubbs@gmail.com>
10159 M:      Chris Brannon <chris@the-brannons.com>
10160 M:      Kirk Reiser <kirk@reisers.ca>
10161 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
10162 L:      speakup@linux-speakup.org
10163 W:      http://www.linux-speakup.org/
10164 S:      Odd Fixes
10165 F:      drivers/staging/speakup/
10166
10167 STAGING - VIA VT665X DRIVERS
10168 M:      Forest Bond <forest@alittletooquiet.net>
10169 S:      Odd Fixes
10170 F:      drivers/staging/vt665?/
10171
10172 STAGING - WILC1000 WIFI DRIVER
10173 M:      Johnny Kim <johnny.kim@atmel.com>
10174 M:      Austin Shin <austin.shin@atmel.com>
10175 M:      Chris Park <chris.park@atmel.com>
10176 M:      Tony Cho <tony.cho@atmel.com>
10177 M:      Glen Lee <glen.lee@atmel.com>
10178 M:      Leo Kim <leo.kim@atmel.com>
10179 L:      linux-wireless@vger.kernel.org
10180 S:      Supported
10181 F:      drivers/staging/wilc1000/
10182
10183 STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
10184 M:      Arnaud Patard <arnaud.patard@rtp-net.org>
10185 S:      Odd Fixes
10186 F:      drivers/staging/xgifb/
10187
10188 HFI1 DRIVER
10189 M:      Mike Marciniszyn <infinipath@intel.com>
10190 L:      linux-rdma@vger.kernel.org
10191 S:      Supported
10192 F:      drivers/staging/rdma/hfi1
10193
10194 STARFIRE/DURALAN NETWORK DRIVER
10195 M:      Ion Badulescu <ionut@badula.org>
10196 S:      Odd Fixes
10197 F:      drivers/net/ethernet/adaptec/starfire*
10198
10199 SUN3/3X
10200 M:      Sam Creasey <sammy@sammy.net>
10201 W:      http://sammy.net/sun3/
10202 S:      Maintained
10203 F:      arch/m68k/kernel/*sun3*
10204 F:      arch/m68k/sun3*/
10205 F:      arch/m68k/include/asm/sun3*
10206 F:      drivers/net/ethernet/i825xx/sun3*
10207
10208 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
10209 M:      Hans de Goede <hdegoede@redhat.com>
10210 L:      linux-input@vger.kernel.org
10211 S:      Maintained
10212 F:      Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
10213 F:      drivers/input/keyboard/sun4i-lradc-keys.c
10214
10215 SUNDANCE NETWORK DRIVER
10216 M:      Denis Kirjanov <kda@linux-powerpc.org>
10217 L:      netdev@vger.kernel.org
10218 S:      Maintained
10219 F:      drivers/net/ethernet/dlink/sundance.c
10220
10221 SUPERH
10222 L:      linux-sh@vger.kernel.org
10223 Q:      http://patchwork.kernel.org/project/linux-sh/list/
10224 S:      Orphan
10225 F:      Documentation/sh/
10226 F:      arch/sh/
10227 F:      drivers/sh/
10228
10229 SUSPEND TO RAM
10230 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
10231 M:      Len Brown <len.brown@intel.com>
10232 M:      Pavel Machek <pavel@ucw.cz>
10233 L:      linux-pm@vger.kernel.org
10234 S:      Supported
10235 F:      Documentation/power/
10236 F:      arch/x86/kernel/acpi/
10237 F:      drivers/base/power/
10238 F:      kernel/power/
10239 F:      include/linux/suspend.h
10240 F:      include/linux/freezer.h
10241 F:      include/linux/pm.h
10242
10243 SVGA HANDLING
10244 M:      Martin Mares <mj@ucw.cz>
10245 L:      linux-video@atrey.karlin.mff.cuni.cz
10246 S:      Maintained
10247 F:      Documentation/svga.txt
10248 F:      arch/x86/boot/video*
10249
10250 SWIOTLB SUBSYSTEM
10251 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10252 L:      linux-kernel@vger.kernel.org
10253 S:      Supported
10254 F:      lib/swiotlb.c
10255 F:      arch/*/kernel/pci-swiotlb.c
10256 F:      include/linux/swiotlb.h
10257
10258 SWITCHDEV
10259 M:      Jiri Pirko <jiri@resnulli.us>
10260 L:      netdev@vger.kernel.org
10261 S:      Supported
10262 F:      net/switchdev/
10263 F:      include/net/switchdev.h
10264
10265 SYNOPSYS ARC ARCHITECTURE
10266 M:      Vineet Gupta <vgupta@synopsys.com>
10267 L:      linux-snps-arc@lists.infraded.org
10268 S:      Supported
10269 F:      arch/arc/
10270 F:      Documentation/devicetree/bindings/arc/*
10271 F:      drivers/tty/serial/arc_uart.c
10272 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
10273
10274 SYNOPSYS ARC SDP platform support
10275 M:      Alexey Brodkin <abrodkin@synopsys.com>
10276 S:      Supported
10277 F:      arch/arc/plat-axs10x
10278 F:      arch/arc/boot/dts/ax*
10279 F:      Documentation/devicetree/bindings/arc/axs10*
10280
10281 SYSTEM CONFIGURATION (SYSCON)
10282 M:      Lee Jones <lee.jones@linaro.org>
10283 M:      Arnd Bergmann <arnd@arndb.de>
10284 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
10285 S:      Supported
10286 F:      drivers/mfd/syscon.c
10287
10288 SYSV FILESYSTEM
10289 M:      Christoph Hellwig <hch@infradead.org>
10290 S:      Maintained
10291 F:      Documentation/filesystems/sysv-fs.txt
10292 F:      fs/sysv/
10293 F:      include/linux/sysv_fs.h
10294
10295 TARGET SUBSYSTEM
10296 M:      "Nicholas A. Bellinger" <nab@linux-iscsi.org>
10297 L:      linux-scsi@vger.kernel.org
10298 L:      target-devel@vger.kernel.org
10299 W:      http://www.linux-iscsi.org
10300 W:      http://groups.google.com/group/linux-iscsi-target-dev
10301 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10302 S:      Supported
10303 F:      drivers/target/
10304 F:      include/target/
10305 F:      Documentation/target/
10306
10307 TASKSTATS STATISTICS INTERFACE
10308 M:      Balbir Singh <bsingharora@gmail.com>
10309 S:      Maintained
10310 F:      Documentation/accounting/taskstats*
10311 F:      include/linux/taskstats*
10312 F:      kernel/taskstats.c
10313
10314 TC CLASSIFIER
10315 M:      Jamal Hadi Salim <jhs@mojatatu.com>
10316 L:      netdev@vger.kernel.org
10317 S:      Maintained
10318 F:      include/net/pkt_cls.h
10319 F:      include/uapi/linux/pkt_cls.h
10320 F:      net/sched/
10321
10322 TCP LOW PRIORITY MODULE
10323 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
10324 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
10325 W:      http://tcp-lp-mod.sourceforge.net/
10326 S:      Maintained
10327 F:      net/ipv4/tcp_lp.c
10328
10329 TDA10071 MEDIA DRIVER
10330 M:      Antti Palosaari <crope@iki.fi>
10331 L:      linux-media@vger.kernel.org
10332 W:      http://linuxtv.org/
10333 W:      http://palosaari.fi/linux/
10334 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10335 T:      git git://linuxtv.org/anttip/media_tree.git
10336 S:      Maintained
10337 F:      drivers/media/dvb-frontends/tda10071*
10338
10339 TDA18212 MEDIA DRIVER
10340 M:      Antti Palosaari <crope@iki.fi>
10341 L:      linux-media@vger.kernel.org
10342 W:      http://linuxtv.org/
10343 W:      http://palosaari.fi/linux/
10344 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10345 T:      git git://linuxtv.org/anttip/media_tree.git
10346 S:      Maintained
10347 F:      drivers/media/tuners/tda18212*
10348
10349 TDA18218 MEDIA DRIVER
10350 M:      Antti Palosaari <crope@iki.fi>
10351 L:      linux-media@vger.kernel.org
10352 W:      http://linuxtv.org/
10353 W:      http://palosaari.fi/linux/
10354 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10355 T:      git git://linuxtv.org/anttip/media_tree.git
10356 S:      Maintained
10357 F:      drivers/media/tuners/tda18218*
10358
10359 TDA18271 MEDIA DRIVER
10360 M:      Michael Krufky <mkrufky@linuxtv.org>
10361 L:      linux-media@vger.kernel.org
10362 W:      http://linuxtv.org/
10363 W:      http://github.com/mkrufky
10364 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10365 T:      git git://linuxtv.org/mkrufky/tuners.git
10366 S:      Maintained
10367 F:      drivers/media/tuners/tda18271*
10368
10369 TDA827x MEDIA DRIVER
10370 M:      Michael Krufky <mkrufky@linuxtv.org>
10371 L:      linux-media@vger.kernel.org
10372 W:      http://linuxtv.org/
10373 W:      http://github.com/mkrufky
10374 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10375 T:      git git://linuxtv.org/mkrufky/tuners.git
10376 S:      Maintained
10377 F:      drivers/media/tuners/tda8290.*
10378
10379 TDA8290 MEDIA DRIVER
10380 M:      Michael Krufky <mkrufky@linuxtv.org>
10381 L:      linux-media@vger.kernel.org
10382 W:      http://linuxtv.org/
10383 W:      http://github.com/mkrufky
10384 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10385 T:      git git://linuxtv.org/mkrufky/tuners.git
10386 S:      Maintained
10387 F:      drivers/media/tuners/tda8290.*
10388
10389 TDA9840 MEDIA DRIVER
10390 M:      Hans Verkuil <hverkuil@xs4all.nl>
10391 L:      linux-media@vger.kernel.org
10392 T:      git git://linuxtv.org/media_tree.git
10393 W:      http://linuxtv.org
10394 S:      Maintained
10395 F:      drivers/media/i2c/tda9840*
10396
10397 TEA5761 TUNER DRIVER
10398 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10399 L:      linux-media@vger.kernel.org
10400 W:      http://linuxtv.org
10401 T:      git git://linuxtv.org/media_tree.git
10402 S:      Odd fixes
10403 F:      drivers/media/tuners/tea5761.*
10404
10405 TEA5767 TUNER DRIVER
10406 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10407 L:      linux-media@vger.kernel.org
10408 W:      http://linuxtv.org
10409 T:      git git://linuxtv.org/media_tree.git
10410 S:      Maintained
10411 F:      drivers/media/tuners/tea5767.*
10412
10413 TEA6415C MEDIA DRIVER
10414 M:      Hans Verkuil <hverkuil@xs4all.nl>
10415 L:      linux-media@vger.kernel.org
10416 T:      git git://linuxtv.org/media_tree.git
10417 W:      http://linuxtv.org
10418 S:      Maintained
10419 F:      drivers/media/i2c/tea6415c*
10420
10421 TEA6420 MEDIA DRIVER
10422 M:      Hans Verkuil <hverkuil@xs4all.nl>
10423 L:      linux-media@vger.kernel.org
10424 T:      git git://linuxtv.org/media_tree.git
10425 W:      http://linuxtv.org
10426 S:      Maintained
10427 F:      drivers/media/i2c/tea6420*
10428
10429 TEAM DRIVER
10430 M:      Jiri Pirko <jiri@resnulli.us>
10431 L:      netdev@vger.kernel.org
10432 S:      Supported
10433 F:      drivers/net/team/
10434 F:      include/linux/if_team.h
10435 F:      include/uapi/linux/if_team.h
10436
10437 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
10438 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
10439 S:      Maintained
10440 F:      arch/x86/platform/ts5500/
10441
10442 TECHNOTREND USB IR RECEIVER
10443 M:      Sean Young <sean@mess.org>
10444 L:      linux-media@vger.kernel.org
10445 S:      Maintained
10446 F:      drivers/media/rc/ttusbir.c
10447
10448 TEGRA ARCHITECTURE SUPPORT
10449 M:      Stephen Warren <swarren@wwwdotorg.org>
10450 M:      Thierry Reding <thierry.reding@gmail.com>
10451 M:      Alexandre Courbot <gnurou@gmail.com>
10452 L:      linux-tegra@vger.kernel.org
10453 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
10454 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
10455 S:      Supported
10456 N:      [^a-z]tegra
10457
10458 TEGRA CLOCK DRIVER
10459 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
10460 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
10461 S:      Supported
10462 F:      drivers/clk/tegra/
10463
10464 TEGRA DMA DRIVER
10465 M:      Laxman Dewangan <ldewangan@nvidia.com>
10466 S:      Supported
10467 F:      drivers/dma/tegra20-apb-dma.c
10468
10469 TEGRA I2C DRIVER
10470 M:      Laxman Dewangan <ldewangan@nvidia.com>
10471 S:      Supported
10472 F:      drivers/i2c/busses/i2c-tegra.c
10473
10474 TEGRA IOMMU DRIVERS
10475 M:      Hiroshi Doyu <hdoyu@nvidia.com>
10476 S:      Supported
10477 F:      drivers/iommu/tegra*
10478
10479 TEGRA KBC DRIVER
10480 M:      Rakesh Iyer <riyer@nvidia.com>
10481 M:      Laxman Dewangan <ldewangan@nvidia.com>
10482 S:      Supported
10483 F:      drivers/input/keyboard/tegra-kbc.c
10484
10485 TEGRA PWM DRIVER
10486 M:      Thierry Reding <thierry.reding@gmail.com>
10487 S:      Supported
10488 F:      drivers/pwm/pwm-tegra.c
10489
10490 TEGRA SERIAL DRIVER
10491 M:      Laxman Dewangan <ldewangan@nvidia.com>
10492 S:      Supported
10493 F:      drivers/tty/serial/serial-tegra.c
10494
10495 TEGRA SPI DRIVER
10496 M:      Laxman Dewangan <ldewangan@nvidia.com>
10497 S:      Supported
10498 F:      drivers/spi/spi-tegra*
10499
10500 TEHUTI ETHERNET DRIVER
10501 M:      Andy Gospodarek <andy@greyhouse.net>
10502 L:      netdev@vger.kernel.org
10503 S:      Supported
10504 F:      drivers/net/ethernet/tehuti/*
10505
10506 Telecom Clock Driver for MCPL0010
10507 M:      Mark Gross <mark.gross@intel.com>
10508 S:      Supported
10509 F:      drivers/char/tlclk.c
10510
10511 TENSILICA XTENSA PORT (xtensa)
10512 M:      Chris Zankel <chris@zankel.net>
10513 M:      Max Filippov <jcmvbkbc@gmail.com>
10514 L:      linux-xtensa@linux-xtensa.org
10515 S:      Maintained
10516 F:      arch/xtensa/
10517 F:      drivers/irqchip/irq-xtensa-*
10518
10519 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
10520 M:      Hans Verkuil <hverkuil@xs4all.nl>
10521 L:      linux-media@vger.kernel.org
10522 T:      git git://linuxtv.org/media_tree.git
10523 W:      http://linuxtv.org
10524 S:      Maintained
10525 F:      drivers/media/radio/radio-raremono.c
10526
10527 THERMAL
10528 M:      Zhang Rui <rui.zhang@intel.com>
10529 M:      Eduardo Valentin <edubezval@gmail.com>
10530 L:      linux-pm@vger.kernel.org
10531 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
10532 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
10533 Q:      https://patchwork.kernel.org/project/linux-pm/list/
10534 S:      Supported
10535 F:      drivers/thermal/
10536 F:      include/linux/thermal.h
10537 F:      include/uapi/linux/thermal.h
10538 F:      include/linux/cpu_cooling.h
10539 F:      Documentation/devicetree/bindings/thermal/
10540
10541 THERMAL/CPU_COOLING
10542 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
10543 M:      Viresh Kumar <viresh.kumar@linaro.org>
10544 M:      Javi Merino <javi.merino@arm.com>
10545 L:      linux-pm@vger.kernel.org
10546 S:      Supported
10547 F:      Documentation/thermal/cpu-cooling-api.txt
10548 F:      drivers/thermal/cpu_cooling.c
10549 F:      include/linux/cpu_cooling.h
10550
10551 THINGM BLINK(1) USB RGB LED DRIVER
10552 M:      Vivien Didelot <vivien.didelot@savoirfairelinux.com>
10553 S:      Maintained
10554 F:      drivers/hid/hid-thingm.c
10555
10556 THINKPAD ACPI EXTRAS DRIVER
10557 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
10558 L:      ibm-acpi-devel@lists.sourceforge.net
10559 L:      platform-driver-x86@vger.kernel.org
10560 W:      http://ibm-acpi.sourceforge.net
10561 W:      http://thinkwiki.org/wiki/Ibm-acpi
10562 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
10563 S:      Maintained
10564 F:      drivers/platform/x86/thinkpad_acpi.c
10565
10566 TI BANDGAP AND THERMAL DRIVER
10567 M:      Eduardo Valentin <edubezval@gmail.com>
10568 L:      linux-pm@vger.kernel.org
10569 L:      linux-omap@vger.kernel.org
10570 S:      Maintained
10571 F:      drivers/thermal/ti-soc-thermal/
10572
10573 TI CDCE706 CLOCK DRIVER
10574 M:      Max Filippov <jcmvbkbc@gmail.com>
10575 S:      Maintained
10576 F:      drivers/clk/clk-cdce706.c
10577
10578 TI CLOCK DRIVER
10579 M:      Tero Kristo <t-kristo@ti.com>
10580 L:      linux-omap@vger.kernel.org
10581 S:      Maintained
10582 F:      drivers/clk/ti/
10583 F:      include/linux/clk/ti.h
10584
10585 TI FLASH MEDIA INTERFACE DRIVER
10586 M:      Alex Dubov <oakad@yahoo.com>
10587 S:      Maintained
10588 F:      drivers/misc/tifm*
10589 F:      drivers/mmc/host/tifm_sd.c
10590 F:      include/linux/tifm.h
10591
10592 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
10593 M:      Santosh Shilimkar <ssantosh@kernel.org>
10594 L:      linux-kernel@vger.kernel.org
10595 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10596 S:      Maintained
10597 F:      drivers/soc/ti/*
10598 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
10599
10600
10601 TI LM49xxx FAMILY ASoC CODEC DRIVERS
10602 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
10603 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
10604 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10605 S:      Maintained
10606 F:      sound/soc/codecs/lm49453*
10607 F:      sound/soc/codecs/isabelle*
10608
10609 TI LP855x BACKLIGHT DRIVER
10610 M:      Milo Kim <milo.kim@ti.com>
10611 S:      Maintained
10612 F:      Documentation/backlight/lp855x-driver.txt
10613 F:      drivers/video/backlight/lp855x_bl.c
10614 F:      include/linux/platform_data/lp855x.h
10615
10616 TI LP8727 CHARGER DRIVER
10617 M:      Milo Kim <milo.kim@ti.com>
10618 S:      Maintained
10619 F:      drivers/power/lp8727_charger.c
10620 F:      include/linux/platform_data/lp8727.h
10621
10622 TI LP8788 MFD DRIVER
10623 M:      Milo Kim <milo.kim@ti.com>
10624 S:      Maintained
10625 F:      drivers/iio/adc/lp8788_adc.c
10626 F:      drivers/leds/leds-lp8788.c
10627 F:      drivers/mfd/lp8788*.c
10628 F:      drivers/power/lp8788-charger.c
10629 F:      drivers/regulator/lp8788-*.c
10630 F:      include/linux/mfd/lp8788*.h
10631
10632 TI NETCP ETHERNET DRIVER
10633 M:      Wingman Kwok <w-kwok2@ti.com>
10634 M:      Murali Karicheri <m-karicheri2@ti.com>
10635 L:      netdev@vger.kernel.org
10636 S:      Maintained
10637 F:      drivers/net/ethernet/ti/netcp*
10638
10639 TI TAS571X FAMILY ASoC CODEC DRIVER
10640 M:      Kevin Cernekee <cernekee@chromium.org>
10641 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10642 S:      Odd Fixes
10643 F:      sound/soc/codecs/tas571x*
10644
10645 TI TWL4030 SERIES SOC CODEC DRIVER
10646 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
10647 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10648 S:      Maintained
10649 F:      sound/soc/codecs/twl4030*
10650
10651 TI WILINK WIRELESS DRIVERS
10652 L:      linux-wireless@vger.kernel.org
10653 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
10654 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
10655 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
10656 S:      Orphan
10657 F:      drivers/net/wireless/ti/
10658 F:      include/linux/wl12xx.h
10659
10660 TIPC NETWORK LAYER
10661 M:      Jon Maloy <jon.maloy@ericsson.com>
10662 M:      Ying Xue <ying.xue@windriver.com>
10663 L:      netdev@vger.kernel.org (core kernel code)
10664 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
10665 W:      http://tipc.sourceforge.net/
10666 S:      Maintained
10667 F:      include/uapi/linux/tipc*.h
10668 F:      net/tipc/
10669
10670 TILE ARCHITECTURE
10671 M:      Chris Metcalf <cmetcalf@ezchip.com>
10672 W:      http://www.ezchip.com/scm/
10673 S:      Supported
10674 F:      arch/tile/
10675 F:      drivers/char/tile-srom.c
10676 F:      drivers/edac/tile_edac.c
10677 F:      drivers/net/ethernet/tile/
10678 F:      drivers/rtc/rtc-tile.c
10679 F:      drivers/tty/hvc/hvc_tile.c
10680 F:      drivers/tty/serial/tilegx.c
10681 F:      drivers/usb/host/*-tilegx.c
10682 F:      include/linux/usb/tilegx.h
10683
10684 TLAN NETWORK DRIVER
10685 M:      Samuel Chessman <chessman@tux.org>
10686 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
10687 W:      http://sourceforge.net/projects/tlan/
10688 S:      Maintained
10689 F:      Documentation/networking/tlan.txt
10690 F:      drivers/net/ethernet/ti/tlan.*
10691
10692 TOMOYO SECURITY MODULE
10693 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
10694 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
10695 L:      tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
10696 L:      tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
10697 L:      tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
10698 L:      tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
10699 W:      http://tomoyo.sourceforge.jp/
10700 T:      quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
10701 S:      Maintained
10702 F:      security/tomoyo/
10703
10704 TOPSTAR LAPTOP EXTRAS DRIVER
10705 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
10706 L:      platform-driver-x86@vger.kernel.org
10707 S:      Maintained
10708 F:      drivers/platform/x86/topstar-laptop.c
10709
10710 TOSHIBA ACPI EXTRAS DRIVER
10711 M:      Azael Avalos <coproscefalo@gmail.com>
10712 L:      platform-driver-x86@vger.kernel.org
10713 S:      Maintained
10714 F:      drivers/platform/x86/toshiba_acpi.c
10715
10716 TOSHIBA BLUETOOTH DRIVER
10717 M:      Azael Avalos <coproscefalo@gmail.com>
10718 L:      platform-driver-x86@vger.kernel.org
10719 S:      Maintained
10720 F:      drivers/platform/x86/toshiba_bluetooth.c
10721
10722 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
10723 M:      Azael Avalos <coproscefalo@gmail.com>
10724 L:      platform-driver-x86@vger.kernel.org
10725 S:      Maintained
10726 F:      drivers/platform/x86/toshiba_haps.c
10727
10728 TOSHIBA WMI HOTKEYS DRIVER
10729 M:      Azael Avalos <coproscefalo@gmail.com>
10730 L:      platform-driver-x86@vger.kernel.org
10731 S:      Maintained
10732 F:      drivers/platform/x86/toshiba-wmi.c
10733
10734 TOSHIBA SMM DRIVER
10735 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
10736 W:      http://www.buzzard.org.uk/toshiba/
10737 S:      Maintained
10738 F:      drivers/char/toshiba.c
10739 F:      include/linux/toshiba.h
10740 F:      include/uapi/linux/toshiba.h
10741
10742 TOSHIBA TC358743 DRIVER
10743 M:      Mats Randgaard <matrandg@cisco.com>
10744 L:      linux-media@vger.kernel.org
10745 S:      Maintained
10746 F:      drivers/media/i2c/tc358743*
10747 F:      include/media/tc358743.h
10748
10749 TMIO MMC DRIVER
10750 M:      Ian Molton <ian@mnementh.co.uk>
10751 L:      linux-mmc@vger.kernel.org
10752 S:      Maintained
10753 F:      drivers/mmc/host/tmio_mmc*
10754 F:      drivers/mmc/host/sh_mobile_sdhi.c
10755 F:      include/linux/mmc/tmio.h
10756 F:      include/linux/mmc/sh_mobile_sdhi.h
10757
10758 TMP401 HARDWARE MONITOR DRIVER
10759 M:      Guenter Roeck <linux@roeck-us.net>
10760 L:      lm-sensors@lm-sensors.org
10761 S:      Maintained
10762 F:      Documentation/hwmon/tmp401
10763 F:      drivers/hwmon/tmp401.c
10764
10765 TMPFS (SHMEM FILESYSTEM)
10766 M:      Hugh Dickins <hughd@google.com>
10767 L:      linux-mm@kvack.org
10768 S:      Maintained
10769 F:      include/linux/shmem_fs.h
10770 F:      mm/shmem.c
10771
10772 TM6000 VIDEO4LINUX DRIVER
10773 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10774 L:      linux-media@vger.kernel.org
10775 W:      http://linuxtv.org
10776 T:      git git://linuxtv.org/media_tree.git
10777 S:      Odd fixes
10778 F:      drivers/media/usb/tm6000/
10779
10780 TW68 VIDEO4LINUX DRIVER
10781 M:      Hans Verkuil <hverkuil@xs4all.nl>
10782 L:      linux-media@vger.kernel.org
10783 T:      git git://linuxtv.org/media_tree.git
10784 W:      http://linuxtv.org
10785 S:      Odd Fixes
10786 F:      drivers/media/pci/tw68/
10787
10788 TPM DEVICE DRIVER
10789 M:      Peter Huewe <peterhuewe@gmx.de>
10790 M:      Marcel Selhorst <tpmdd@selhorst.net>
10791 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
10792 R:      Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
10793 W:      http://tpmdd.sourceforge.net
10794 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
10795 Q:      git git://github.com/PeterHuewe/linux-tpmdd.git
10796 T:      https://github.com/PeterHuewe/linux-tpmdd
10797 S:      Maintained
10798 F:      drivers/char/tpm/
10799
10800 TPM IBM_VTPM DEVICE DRIVER
10801 M:      Ashley Lai <ashleydlai@gmail.com>
10802 W:      http://tpmdd.sourceforge.net
10803 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
10804 S:      Maintained
10805 F:      drivers/char/tpm/tpm_ibmvtpm*
10806
10807 TRACING
10808 M:      Steven Rostedt <rostedt@goodmis.org>
10809 M:      Ingo Molnar <mingo@redhat.com>
10810 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
10811 S:      Maintained
10812 F:      Documentation/trace/ftrace.txt
10813 F:      arch/*/*/*/ftrace.h
10814 F:      arch/*/kernel/ftrace.c
10815 F:      include/*/ftrace.h
10816 F:      include/linux/trace*.h
10817 F:      include/trace/
10818 F:      kernel/trace/
10819 F:      tools/testing/selftests/ftrace/
10820
10821 TRIVIAL PATCHES
10822 M:      Jiri Kosina <trivial@kernel.org>
10823 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
10824 S:      Maintained
10825 K:      ^Subject:.*(?i)trivial
10826
10827 TTY LAYER
10828 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10829 M:      Jiri Slaby <jslaby@suse.com>
10830 S:      Supported
10831 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
10832 F:      Documentation/serial/
10833 F:      drivers/tty/
10834 F:      drivers/tty/serial/serial_core.c
10835 F:      include/linux/serial_core.h
10836 F:      include/linux/serial.h
10837 F:      include/linux/tty.h
10838 F:      include/uapi/linux/serial_core.h
10839 F:      include/uapi/linux/serial.h
10840 F:      include/uapi/linux/tty.h
10841
10842 TUA9001 MEDIA DRIVER
10843 M:      Antti Palosaari <crope@iki.fi>
10844 L:      linux-media@vger.kernel.org
10845 W:      http://linuxtv.org/
10846 W:      http://palosaari.fi/linux/
10847 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10848 T:      git git://linuxtv.org/anttip/media_tree.git
10849 S:      Maintained
10850 F:      drivers/media/tuners/tua9001*
10851
10852 TULIP NETWORK DRIVERS
10853 M:      Grant Grundler <grundler@parisc-linux.org>
10854 L:      netdev@vger.kernel.org
10855 S:      Maintained
10856 F:      drivers/net/ethernet/dec/tulip/
10857
10858 TUN/TAP driver
10859 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
10860 W:      http://vtun.sourceforge.net/tun
10861 S:      Maintained
10862 F:      Documentation/networking/tuntap.txt
10863 F:      arch/um/os-Linux/drivers/
10864
10865 TURBOCHANNEL SUBSYSTEM
10866 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
10867 M:      Ralf Baechle <ralf@linux-mips.org>
10868 L:      linux-mips@linux-mips.org
10869 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
10870 S:      Maintained
10871 F:      drivers/tc/
10872 F:      include/linux/tc.h
10873
10874 U14-34F SCSI DRIVER
10875 M:      Dario Ballabio <ballabio_dario@emc.com>
10876 L:      linux-scsi@vger.kernel.org
10877 S:      Maintained
10878 F:      drivers/scsi/u14-34f.c
10879
10880 UBI FILE SYSTEM (UBIFS)
10881 M:      Artem Bityutskiy <dedekind1@gmail.com>
10882 M:      Adrian Hunter <adrian.hunter@intel.com>
10883 L:      linux-mtd@lists.infradead.org
10884 T:      git git://git.infradead.org/ubifs-2.6.git
10885 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
10886 S:      Maintained
10887 F:      Documentation/filesystems/ubifs.txt
10888 F:      fs/ubifs/
10889
10890 UCLINUX (M68KNOMMU AND COLDFIRE)
10891 M:      Greg Ungerer <gerg@uclinux.org>
10892 W:      http://www.uclinux.org/
10893 L:      linux-m68k@lists.linux-m68k.org
10894 L:      uclinux-dev@uclinux.org  (subscribers-only)
10895 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
10896 S:      Maintained
10897 F:      arch/m68k/coldfire/
10898 F:      arch/m68k/68*/
10899 F:      arch/m68k/*/*_no.*
10900 F:      arch/m68k/include/asm/*_no.*
10901
10902 UDF FILESYSTEM
10903 M:      Jan Kara <jack@suse.com>
10904 S:      Maintained
10905 F:      Documentation/filesystems/udf.txt
10906 F:      fs/udf/
10907
10908 UFS FILESYSTEM
10909 M:      Evgeniy Dushistov <dushistov@mail.ru>
10910 S:      Maintained
10911 F:      Documentation/filesystems/ufs.txt
10912 F:      fs/ufs/
10913
10914 UHID USERSPACE HID IO DRIVER:
10915 M:      David Herrmann <dh.herrmann@googlemail.com>
10916 L:      linux-input@vger.kernel.org
10917 S:      Maintained
10918 F:      drivers/hid/uhid.c
10919 F:      include/uapi/linux/uhid.h
10920
10921 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
10922 L:      linux-usb@vger.kernel.org
10923 S:      Orphan
10924 F:      drivers/uwb/
10925 F:      include/linux/uwb.h
10926 F:      include/linux/uwb/
10927
10928 UNICORE32 ARCHITECTURE:
10929 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
10930 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
10931 S:      Maintained
10932 T:      git git://github.com/gxt/linux.git
10933 F:      arch/unicore32/
10934
10935 UNIFDEF
10936 M:      Tony Finch <dot@dotat.at>
10937 W:      http://dotat.at/prog/unifdef
10938 S:      Maintained
10939 F:      scripts/unifdef.c
10940
10941 UNIFORM CDROM DRIVER
10942 M:      Jens Axboe <axboe@kernel.dk>
10943 W:      http://www.kernel.dk
10944 S:      Maintained
10945 F:      Documentation/cdrom/
10946 F:      drivers/cdrom/cdrom.c
10947 F:      include/linux/cdrom.h
10948 F:      include/uapi/linux/cdrom.h
10949
10950 UNISYS S-PAR DRIVERS
10951 M:      Benjamin Romer <benjamin.romer@unisys.com>
10952 M:      David Kershner <david.kershner@unisys.com>
10953 L:      sparmaintainer@unisys.com (Unisys internal)
10954 S:      Supported
10955 F:      drivers/staging/unisys/
10956
10957 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
10958 M:      Vinayak Holikatti <vinholikatti@gmail.com>
10959 L:      linux-scsi@vger.kernel.org
10960 S:      Supported
10961 F:      Documentation/scsi/ufs.txt
10962 F:      drivers/scsi/ufs/
10963
10964 UNSORTED BLOCK IMAGES (UBI)
10965 M:      Artem Bityutskiy <dedekind1@gmail.com>
10966 M:      Richard Weinberger <richard@nod.at>
10967 W:      http://www.linux-mtd.infradead.org/
10968 L:      linux-mtd@lists.infradead.org
10969 T:      git git://git.infradead.org/ubifs-2.6.git
10970 S:      Supported
10971 F:      drivers/mtd/ubi/
10972 F:      include/linux/mtd/ubi.h
10973 F:      include/uapi/mtd/ubi-user.h
10974
10975 USB ACM DRIVER
10976 M:      Oliver Neukum <oliver@neukum.org>
10977 L:      linux-usb@vger.kernel.org
10978 S:      Maintained
10979 F:      Documentation/usb/acm.txt
10980 F:      drivers/usb/class/cdc-acm.*
10981
10982 USB AR5523 WIRELESS DRIVER
10983 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
10984 L:      linux-wireless@vger.kernel.org
10985 S:      Maintained
10986 F:      drivers/net/wireless/ath/ar5523/
10987
10988 USB ATTACHED SCSI
10989 M:      Hans de Goede <hdegoede@redhat.com>
10990 M:      Gerd Hoffmann <kraxel@redhat.com>
10991 L:      linux-usb@vger.kernel.org
10992 L:      linux-scsi@vger.kernel.org
10993 S:      Maintained
10994 F:      drivers/usb/storage/uas.c
10995
10996 USB CDC ETHERNET DRIVER
10997 M:      Oliver Neukum <oliver@neukum.org>
10998 L:      linux-usb@vger.kernel.org
10999 S:      Maintained
11000 F:      drivers/net/usb/cdc_*.c
11001 F:      include/uapi/linux/usb/cdc.h
11002
11003 USB CHAOSKEY DRIVER
11004 M:      Keith Packard <keithp@keithp.com>
11005 L:      linux-usb@vger.kernel.org
11006 S:      Maintained
11007 F:      drivers/usb/misc/chaoskey.c
11008
11009 USB CYPRESS C67X00 DRIVER
11010 M:      Peter Korsgaard <jacmet@sunsite.dk>
11011 L:      linux-usb@vger.kernel.org
11012 S:      Maintained
11013 F:      drivers/usb/c67x00/
11014
11015 USB DAVICOM DM9601 DRIVER
11016 M:      Peter Korsgaard <jacmet@sunsite.dk>
11017 L:      netdev@vger.kernel.org
11018 W:      http://www.linux-usb.org/usbnet
11019 S:      Maintained
11020 F:      drivers/net/usb/dm9601.c
11021
11022 USB DIAMOND RIO500 DRIVER
11023 M:      Cesar Miquel <miquel@df.uba.ar>
11024 L:      rio500-users@lists.sourceforge.net
11025 W:      http://rio500.sourceforge.net
11026 S:      Maintained
11027 F:      drivers/usb/misc/rio500*
11028
11029 USB EHCI DRIVER
11030 M:      Alan Stern <stern@rowland.harvard.edu>
11031 L:      linux-usb@vger.kernel.org
11032 S:      Maintained
11033 F:      Documentation/usb/ehci.txt
11034 F:      drivers/usb/host/ehci*
11035
11036 USB GADGET/PERIPHERAL SUBSYSTEM
11037 M:      Felipe Balbi <balbi@ti.com>
11038 L:      linux-usb@vger.kernel.org
11039 W:      http://www.linux-usb.org/gadget
11040 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
11041 S:      Maintained
11042 F:      drivers/usb/gadget/
11043 F:      include/linux/usb/gadget*
11044
11045 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
11046 M:      Jiri Kosina <jikos@kernel.org>
11047 L:      linux-usb@vger.kernel.org
11048 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
11049 S:      Maintained
11050 F:      Documentation/hid/hiddev.txt
11051 F:      drivers/hid/usbhid/
11052
11053 USB ISP116X DRIVER
11054 M:      Olav Kongas <ok@artecdesign.ee>
11055 L:      linux-usb@vger.kernel.org
11056 S:      Maintained
11057 F:      drivers/usb/host/isp116x*
11058 F:      include/linux/usb/isp116x.h
11059
11060 USB MASS STORAGE DRIVER
11061 M:      Matthew Dharm <mdharm-usb@one-eyed-alien.net>
11062 L:      linux-usb@vger.kernel.org
11063 L:      usb-storage@lists.one-eyed-alien.net
11064 S:      Maintained
11065 W:      http://www.one-eyed-alien.net/~mdharm/linux-usb/
11066 F:      drivers/usb/storage/
11067
11068 USB MIDI DRIVER
11069 M:      Clemens Ladisch <clemens@ladisch.de>
11070 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11071 T:      git git://git.alsa-project.org/alsa-kernel.git
11072 S:      Maintained
11073 F:      sound/usb/midi.*
11074
11075 USB NETWORKING DRIVERS
11076 L:      linux-usb@vger.kernel.org
11077 S:      Odd Fixes
11078 F:      drivers/net/usb/
11079
11080 USB OHCI DRIVER
11081 M:      Alan Stern <stern@rowland.harvard.edu>
11082 L:      linux-usb@vger.kernel.org
11083 S:      Maintained
11084 F:      Documentation/usb/ohci.txt
11085 F:      drivers/usb/host/ohci*
11086
11087 USB OTG FSM (Finite State Machine)
11088 M:      Peter Chen <Peter.Chen@freescale.com>
11089 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
11090 L:      linux-usb@vger.kernel.org
11091 S:      Maintained
11092 F:      drivers/usb/common/usb-otg-fsm.c
11093
11094 USB OVER IP DRIVER
11095 M:      Valentina Manea <valentina.manea.m@gmail.com>
11096 M:      Shuah Khan <shuah.kh@samsung.com>
11097 L:      linux-usb@vger.kernel.org
11098 S:      Maintained
11099 F:      drivers/usb/usbip/
11100 F:      tools/usb/usbip/
11101
11102 USB PEGASUS DRIVER
11103 M:      Petko Manolov <petkan@nucleusys.com>
11104 L:      linux-usb@vger.kernel.org
11105 L:      netdev@vger.kernel.org
11106 T:      git git://github.com/petkan/pegasus.git
11107 W:      https://github.com/petkan/pegasus
11108 S:      Maintained
11109 F:      drivers/net/usb/pegasus.*
11110
11111 USB PHY LAYER
11112 M:      Felipe Balbi <balbi@ti.com>
11113 L:      linux-usb@vger.kernel.org
11114 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
11115 S:      Maintained
11116 F:      drivers/usb/phy/
11117
11118 USB PRINTER DRIVER (usblp)
11119 M:      Pete Zaitcev <zaitcev@redhat.com>
11120 L:      linux-usb@vger.kernel.org
11121 S:      Supported
11122 F:      drivers/usb/class/usblp.c
11123
11124 USB RTL8150 DRIVER
11125 M:      Petko Manolov <petkan@nucleusys.com>
11126 L:      linux-usb@vger.kernel.org
11127 L:      netdev@vger.kernel.org
11128 T:      git git://github.com/petkan/rtl8150.git
11129 W:      https://github.com/petkan/rtl8150
11130 S:      Maintained
11131 F:      drivers/net/usb/rtl8150.c
11132
11133 USB SERIAL SUBSYSTEM
11134 M:      Johan Hovold <johan@kernel.org>
11135 L:      linux-usb@vger.kernel.org
11136 S:      Maintained
11137 F:      Documentation/usb/usb-serial.txt
11138 F:      drivers/usb/serial/
11139 F:      include/linux/usb/serial.h
11140
11141 USB SMSC75XX ETHERNET DRIVER
11142 M:      Steve Glendinning <steve.glendinning@shawell.net>
11143 L:      netdev@vger.kernel.org
11144 S:      Maintained
11145 F:      drivers/net/usb/smsc75xx.*
11146
11147 USB SMSC95XX ETHERNET DRIVER
11148 M:      Steve Glendinning <steve.glendinning@shawell.net>
11149 L:      netdev@vger.kernel.org
11150 S:      Maintained
11151 F:      drivers/net/usb/smsc95xx.*
11152
11153 USB SUBSYSTEM
11154 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11155 L:      linux-usb@vger.kernel.org
11156 W:      http://www.linux-usb.org
11157 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
11158 S:      Supported
11159 F:      Documentation/usb/
11160 F:      drivers/usb/
11161 F:      include/linux/usb.h
11162 F:      include/linux/usb/
11163
11164 USB UHCI DRIVER
11165 M:      Alan Stern <stern@rowland.harvard.edu>
11166 L:      linux-usb@vger.kernel.org
11167 S:      Maintained
11168 F:      drivers/usb/host/uhci*
11169
11170 USB "USBNET" DRIVER FRAMEWORK
11171 M:      Oliver Neukum <oneukum@suse.com>
11172 L:      netdev@vger.kernel.org
11173 W:      http://www.linux-usb.org/usbnet
11174 S:      Maintained
11175 F:      drivers/net/usb/usbnet.c
11176 F:      include/linux/usb/usbnet.h
11177
11178 USB VIDEO CLASS
11179 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11180 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
11181 L:      linux-media@vger.kernel.org
11182 T:      git git://linuxtv.org/media_tree.git
11183 W:      http://www.ideasonboard.org/uvc/
11184 S:      Maintained
11185 F:      drivers/media/usb/uvc/
11186 F:      include/uapi/linux/uvcvideo.h
11187
11188 USB VISION DRIVER
11189 M:      Hans Verkuil <hverkuil@xs4all.nl>
11190 L:      linux-media@vger.kernel.org
11191 T:      git git://linuxtv.org/media_tree.git
11192 W:      http://linuxtv.org
11193 S:      Odd Fixes
11194 F:      drivers/media/usb/usbvision/
11195
11196 USB WEBCAM GADGET
11197 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11198 L:      linux-usb@vger.kernel.org
11199 S:      Maintained
11200 F:      drivers/usb/gadget/function/*uvc*
11201 F:      drivers/usb/gadget/legacy/webcam.c
11202
11203 USB WIRELESS RNDIS DRIVER (rndis_wlan)
11204 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
11205 L:      linux-wireless@vger.kernel.org
11206 S:      Maintained
11207 F:      drivers/net/wireless/rndis_wlan.c
11208
11209 USB XHCI DRIVER
11210 M:      Mathias Nyman <mathias.nyman@intel.com>
11211 L:      linux-usb@vger.kernel.org
11212 S:      Supported
11213 F:      drivers/usb/host/xhci*
11214 F:      drivers/usb/host/pci-quirks*
11215
11216 USB ZD1201 DRIVER
11217 L:      linux-wireless@vger.kernel.org
11218 W:      http://linux-lc100020.sourceforge.net
11219 S:      Orphan
11220 F:      drivers/net/wireless/zd1201.*
11221
11222 USB ZR364XX DRIVER
11223 M:      Antoine Jacquet <royale@zerezo.com>
11224 L:      linux-usb@vger.kernel.org
11225 L:      linux-media@vger.kernel.org
11226 T:      git git://linuxtv.org/media_tree.git
11227 W:      http://royale.zerezo.com/zr364xx/
11228 S:      Maintained
11229 F:      Documentation/video4linux/zr364xx.txt
11230 F:      drivers/media/usb/zr364xx/
11231
11232 ULPI BUS
11233 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
11234 L:      linux-usb@vger.kernel.org
11235 S:      Maintained
11236 F:      drivers/usb/common/ulpi.c
11237 F:      include/linux/ulpi/
11238
11239 USER-MODE LINUX (UML)
11240 M:      Jeff Dike <jdike@addtoit.com>
11241 M:      Richard Weinberger <richard@nod.at>
11242 L:      user-mode-linux-devel@lists.sourceforge.net
11243 L:      user-mode-linux-user@lists.sourceforge.net
11244 W:      http://user-mode-linux.sourceforge.net
11245 S:      Maintained
11246 F:      Documentation/virtual/uml/
11247 F:      arch/um/
11248 F:      arch/x86/um/
11249 F:      fs/hostfs/
11250 F:      fs/hppfs/
11251
11252 USERSPACE I/O (UIO)
11253 M:      "Hans J. Koch" <hjk@hansjkoch.de>
11254 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11255 S:      Maintained
11256 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
11257 F:      Documentation/DocBook/uio-howto.tmpl
11258 F:      drivers/uio/
11259 F:      include/linux/uio*.h
11260
11261 UTIL-LINUX PACKAGE
11262 M:      Karel Zak <kzak@redhat.com>
11263 L:      util-linux@vger.kernel.org
11264 W:      http://en.wikipedia.org/wiki/Util-linux
11265 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
11266 S:      Maintained
11267
11268 UVESAFB DRIVER
11269 M:      Michal Januszewski <spock@gentoo.org>
11270 L:      linux-fbdev@vger.kernel.org
11271 W:      http://dev.gentoo.org/~spock/projects/uvesafb/
11272 S:      Maintained
11273 F:      Documentation/fb/uvesafb.txt
11274 F:      drivers/video/fbdev/uvesafb.*
11275
11276 VF610 NAND DRIVER
11277 M:      Stefan Agner <stefan@agner.ch>
11278 L:      linux-mtd@lists.infradead.org
11279 S:      Supported
11280 F:      drivers/mtd/nand/vf610_nfc.c
11281
11282 VFAT/FAT/MSDOS FILESYSTEM
11283 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
11284 S:      Maintained
11285 F:      Documentation/filesystems/vfat.txt
11286 F:      fs/fat/
11287
11288 VFIO DRIVER
11289 M:      Alex Williamson <alex.williamson@redhat.com>
11290 L:      kvm@vger.kernel.org
11291 S:      Maintained
11292 F:      Documentation/vfio.txt
11293 F:      drivers/vfio/
11294 F:      include/linux/vfio.h
11295 F:      include/uapi/linux/vfio.h
11296
11297 VFIO PLATFORM DRIVER
11298 M:      Baptiste Reynal <b.reynal@virtualopensystems.com>
11299 L:      kvm@vger.kernel.org
11300 S:      Maintained
11301 F:      drivers/vfio/platform/
11302
11303 VIDEOBUF2 FRAMEWORK
11304 M:      Pawel Osciak <pawel@osciak.com>
11305 M:      Marek Szyprowski <m.szyprowski@samsung.com>
11306 M:      Kyungmin Park <kyungmin.park@samsung.com>
11307 L:      linux-media@vger.kernel.org
11308 S:      Maintained
11309 F:      drivers/media/v4l2-core/videobuf2-*
11310 F:      include/media/videobuf2-*
11311
11312 VIRTUAL SERIO DEVICE DRIVER
11313 M:      Stephen Chandler Paul <thatslyude@gmail.com>
11314 S:      Maintained
11315 F:      drivers/input/serio/userio.c
11316 F:      include/uapi/linux/userio.h
11317
11318 VIRTIO CONSOLE DRIVER
11319 M:      Amit Shah <amit.shah@redhat.com>
11320 L:      virtualization@lists.linux-foundation.org
11321 S:      Maintained
11322 F:      drivers/char/virtio_console.c
11323 F:      include/linux/virtio_console.h
11324 F:      include/uapi/linux/virtio_console.h
11325
11326 VIRTIO CORE, NET AND BLOCK DRIVERS
11327 M:      "Michael S. Tsirkin" <mst@redhat.com>
11328 L:      virtualization@lists.linux-foundation.org
11329 S:      Maintained
11330 F:      drivers/virtio/
11331 F:      tools/virtio/
11332 F:      drivers/net/virtio_net.c
11333 F:      drivers/block/virtio_blk.c
11334 F:      include/linux/virtio_*.h
11335 F:      include/uapi/linux/virtio_*.h
11336
11337 VIRTIO DRIVERS FOR S390
11338 M:      Christian Borntraeger <borntraeger@de.ibm.com>
11339 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
11340 L:      linux-s390@vger.kernel.org
11341 L:      virtualization@lists.linux-foundation.org
11342 L:      kvm@vger.kernel.org
11343 S:      Supported
11344 F:      drivers/s390/virtio/
11345
11346 VIRTIO GPU DRIVER
11347 M:      David Airlie <airlied@linux.ie>
11348 M:      Gerd Hoffmann <kraxel@redhat.com>
11349 L:      dri-devel@lists.freedesktop.org
11350 L:      virtualization@lists.linux-foundation.org
11351 S:      Maintained
11352 F:      drivers/gpu/drm/virtio/
11353 F:      include/uapi/linux/virtio_gpu.h
11354
11355 VIRTIO HOST (VHOST)
11356 M:      "Michael S. Tsirkin" <mst@redhat.com>
11357 L:      kvm@vger.kernel.org
11358 L:      virtualization@lists.linux-foundation.org
11359 L:      netdev@vger.kernel.org
11360 S:      Maintained
11361 F:      drivers/vhost/
11362 F:      include/uapi/linux/vhost.h
11363
11364 VIRTIO INPUT DRIVER
11365 M:      Gerd Hoffmann <kraxel@redhat.com>
11366 S:      Maintained
11367 F:      drivers/virtio/virtio_input.c
11368 F:      include/uapi/linux/virtio_input.h
11369
11370 VIA RHINE NETWORK DRIVER
11371 S:      Orphan
11372 F:      drivers/net/ethernet/via/via-rhine.c
11373
11374 VIA SD/MMC CARD CONTROLLER DRIVER
11375 M:      Bruce Chang <brucechang@via.com.tw>
11376 M:      Harald Welte <HaraldWelte@viatech.com>
11377 S:      Maintained
11378 F:      drivers/mmc/host/via-sdmmc.c
11379
11380 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
11381 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
11382 L:      linux-fbdev@vger.kernel.org
11383 S:      Maintained
11384 F:      include/linux/via-core.h
11385 F:      include/linux/via-gpio.h
11386 F:      include/linux/via_i2c.h
11387 F:      drivers/video/fbdev/via/
11388
11389 VIA VELOCITY NETWORK DRIVER
11390 M:      Francois Romieu <romieu@fr.zoreil.com>
11391 L:      netdev@vger.kernel.org
11392 S:      Maintained
11393 F:      drivers/net/ethernet/via/via-velocity.*
11394
11395 VIRT LIB
11396 M:      Alex Williamson <alex.williamson@redhat.com>
11397 M:      Paolo Bonzini <pbonzini@redhat.com>
11398 L:      kvm@vger.kernel.org
11399 S:      Supported
11400 F:      virt/lib/
11401
11402 VIVID VIRTUAL VIDEO DRIVER
11403 M:      Hans Verkuil <hverkuil@xs4all.nl>
11404 L:      linux-media@vger.kernel.org
11405 T:      git git://linuxtv.org/media_tree.git
11406 W:      http://linuxtv.org
11407 S:      Maintained
11408 F:      drivers/media/platform/vivid/*
11409
11410 VLAN (802.1Q)
11411 M:      Patrick McHardy <kaber@trash.net>
11412 L:      netdev@vger.kernel.org
11413 S:      Maintained
11414 F:      drivers/net/macvlan.c
11415 F:      include/linux/if_*vlan.h
11416 F:      net/8021q/
11417
11418 VLYNQ BUS
11419 M:      Florian Fainelli <florian@openwrt.org>
11420 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
11421 S:      Maintained
11422 F:      drivers/vlynq/vlynq.c
11423 F:      include/linux/vlynq.h
11424
11425 VME SUBSYSTEM
11426 M:      Martyn Welch <martyn@welchs.me.uk>
11427 M:      Manohar Vanga <manohar.vanga@gmail.com>
11428 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11429 L:      devel@driverdev.osuosl.org
11430 S:      Maintained
11431 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
11432 F:      Documentation/vme_api.txt
11433 F:      drivers/staging/vme/
11434 F:      drivers/vme/
11435 F:      include/linux/vme*
11436
11437 VMWARE HYPERVISOR INTERFACE
11438 M:      Alok Kataria <akataria@vmware.com>
11439 L:      virtualization@lists.linux-foundation.org
11440 S:      Supported
11441 F:      arch/x86/kernel/cpu/vmware.c
11442
11443 VMWARE BALLOON DRIVER
11444 M:      Xavier Deguillard <xdeguillard@vmware.com>
11445 M:      Philip Moltmann <moltmann@vmware.com>
11446 M:      "VMware, Inc." <pv-drivers@vmware.com>
11447 L:      linux-kernel@vger.kernel.org
11448 S:      Maintained
11449 F:      drivers/misc/vmw_balloon.c
11450
11451 VMWARE VMMOUSE SUBDRIVER
11452 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
11453 M:      "VMware, Inc." <pv-drivers@vmware.com>
11454 L:      linux-input@vger.kernel.org
11455 S:      Maintained
11456 F:      drivers/input/mouse/vmmouse.c
11457 F:      drivers/input/mouse/vmmouse.h
11458
11459 VMWARE VMXNET3 ETHERNET DRIVER
11460 M:      Shrikrishna Khare <skhare@vmware.com>
11461 M:      "VMware, Inc." <pv-drivers@vmware.com>
11462 L:      netdev@vger.kernel.org
11463 S:      Maintained
11464 F:      drivers/net/vmxnet3/
11465
11466 VMware PVSCSI driver
11467 M:      Arvind Kumar <arvindkumar@vmware.com>
11468 M:      VMware PV-Drivers <pv-drivers@vmware.com>
11469 L:      linux-scsi@vger.kernel.org
11470 S:      Maintained
11471 F:      drivers/scsi/vmw_pvscsi.c
11472 F:      drivers/scsi/vmw_pvscsi.h
11473
11474 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
11475 M:      Liam Girdwood <lgirdwood@gmail.com>
11476 M:      Mark Brown <broonie@kernel.org>
11477 L:      linux-kernel@vger.kernel.org
11478 W:      http://www.slimlogic.co.uk/?p=48
11479 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
11480 S:      Supported
11481 F:      drivers/regulator/
11482 F:      include/linux/regulator/
11483
11484 VRF
11485 M:      David Ahern <dsa@cumulusnetworks.com>
11486 M:      Shrijeet Mukherjee <shm@cumulusnetworks.com>
11487 L:      netdev@vger.kernel.org
11488 S:      Maintained
11489 F:      drivers/net/vrf.c
11490 F:      Documentation/networking/vrf.txt
11491
11492 VT1211 HARDWARE MONITOR DRIVER
11493 M:      Juerg Haefliger <juergh@gmail.com>
11494 L:      lm-sensors@lm-sensors.org
11495 S:      Maintained
11496 F:      Documentation/hwmon/vt1211
11497 F:      drivers/hwmon/vt1211.c
11498
11499 VT8231 HARDWARE MONITOR DRIVER
11500 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
11501 L:      lm-sensors@lm-sensors.org
11502 S:      Maintained
11503 F:      drivers/hwmon/vt8231.c
11504
11505 VUB300 USB to SDIO/SD/MMC bridge chip
11506 M:      Tony Olech <tony.olech@elandigitalsystems.com>
11507 L:      linux-mmc@vger.kernel.org
11508 L:      linux-usb@vger.kernel.org
11509 S:      Supported
11510 F:      drivers/mmc/host/vub300.c
11511
11512 W1 DALLAS'S 1-WIRE BUS
11513 M:      Evgeniy Polyakov <zbr@ioremap.net>
11514 S:      Maintained
11515 F:      Documentation/w1/
11516 F:      drivers/w1/
11517
11518 W83791D HARDWARE MONITORING DRIVER
11519 M:      Marc Hulsman <m.hulsman@tudelft.nl>
11520 L:      lm-sensors@lm-sensors.org
11521 S:      Maintained
11522 F:      Documentation/hwmon/w83791d
11523 F:      drivers/hwmon/w83791d.c
11524
11525 W83793 HARDWARE MONITORING DRIVER
11526 M:      Rudolf Marek <r.marek@assembler.cz>
11527 L:      lm-sensors@lm-sensors.org
11528 S:      Maintained
11529 F:      Documentation/hwmon/w83793
11530 F:      drivers/hwmon/w83793.c
11531
11532 W83795 HARDWARE MONITORING DRIVER
11533 M:      Jean Delvare <jdelvare@suse.com>
11534 L:      lm-sensors@lm-sensors.org
11535 S:      Maintained
11536 F:      drivers/hwmon/w83795.c
11537
11538 W83L51xD SD/MMC CARD INTERFACE DRIVER
11539 M:      Pierre Ossman <pierre@ossman.eu>
11540 S:      Maintained
11541 F:      drivers/mmc/host/wbsd.*
11542
11543 WACOM PROTOCOL 4 SERIAL TABLETS
11544 M:      Julian Squires <julian@cipht.net>
11545 M:      Hans de Goede <hdegoede@redhat.com>
11546 L:      linux-input@vger.kernel.org
11547 S:      Maintained
11548 F:      drivers/input/tablet/wacom_serial4.c
11549
11550 WATCHDOG DEVICE DRIVERS
11551 M:      Wim Van Sebroeck <wim@iguana.be>
11552 L:      linux-watchdog@vger.kernel.org
11553 W:      http://www.linux-watchdog.org/
11554 T:      git git://www.linux-watchdog.org/linux-watchdog.git
11555 S:      Maintained
11556 F:      Documentation/watchdog/
11557 F:      drivers/watchdog/
11558 F:      include/linux/watchdog.h
11559 F:      include/uapi/linux/watchdog.h
11560
11561 WD7000 SCSI DRIVER
11562 M:      Miroslav Zagorac <zaga@fly.cc.fer.hr>
11563 L:      linux-scsi@vger.kernel.org
11564 S:      Maintained
11565 F:      drivers/scsi/wd7000.c
11566
11567 WIIMOTE HID DRIVER
11568 M:      David Herrmann <dh.herrmann@googlemail.com>
11569 L:      linux-input@vger.kernel.org
11570 S:      Maintained
11571 F:      drivers/hid/hid-wiimote*
11572
11573 WINBOND CIR DRIVER
11574 M:      David Härdeman <david@hardeman.nu>
11575 S:      Maintained
11576 F:      drivers/media/rc/winbond-cir.c
11577
11578 WIMAX STACK
11579 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
11580 M:      linux-wimax@intel.com
11581 L:      wimax@linuxwimax.org (subscribers-only)
11582 S:      Supported
11583 W:      http://linuxwimax.org
11584 F:      Documentation/wimax/README.wimax
11585 F:      include/linux/wimax/debug.h
11586 F:      include/net/wimax.h
11587 F:      include/uapi/linux/wimax.h
11588 F:      net/wimax/
11589
11590 WISTRON LAPTOP BUTTON DRIVER
11591 M:      Miloslav Trmac <mitr@volny.cz>
11592 S:      Maintained
11593 F:      drivers/input/misc/wistron_btns.c
11594
11595 WL3501 WIRELESS PCMCIA CARD DRIVER
11596 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
11597 L:      linux-wireless@vger.kernel.org
11598 W:      http://oops.ghostprotocols.net:81/blog
11599 S:      Maintained
11600 F:      drivers/net/wireless/wl3501*
11601
11602 WOLFSON MICROELECTRONICS DRIVERS
11603 L:      patches@opensource.wolfsonmicro.com
11604 T:      git https://github.com/CirrusLogic/linux-drivers.git
11605 W:      https://github.com/CirrusLogic/linux-drivers/wiki
11606 S:      Supported
11607 F:      Documentation/hwmon/wm83??
11608 F:      Documentation/devicetree/bindings/extcon/extcon-arizona.txt
11609 F:      Documentation/devicetree/bindings/regulator/arizona-regulator.txt
11610 F:      Documentation/devicetree/bindings/mfd/arizona.txt
11611 F:      arch/arm/mach-s3c64xx/mach-crag6410*
11612 F:      drivers/clk/clk-wm83*.c
11613 F:      drivers/extcon/extcon-arizona.c
11614 F:      drivers/leds/leds-wm83*.c
11615 F:      drivers/gpio/gpio-*wm*.c
11616 F:      drivers/gpio/gpio-arizona.c
11617 F:      drivers/hwmon/wm83??-hwmon.c
11618 F:      drivers/input/misc/wm831x-on.c
11619 F:      drivers/input/touchscreen/wm831x-ts.c
11620 F:      drivers/input/touchscreen/wm97*.c
11621 F:      drivers/mfd/arizona*
11622 F:      drivers/mfd/wm*.c
11623 F:      drivers/power/wm83*.c
11624 F:      drivers/rtc/rtc-wm83*.c
11625 F:      drivers/regulator/wm8*.c
11626 F:      drivers/video/backlight/wm83*_bl.c
11627 F:      drivers/watchdog/wm83*_wdt.c
11628 F:      include/linux/mfd/arizona/
11629 F:      include/linux/mfd/wm831x/
11630 F:      include/linux/mfd/wm8350/
11631 F:      include/linux/mfd/wm8400*
11632 F:      include/linux/wm97xx.h
11633 F:      include/sound/wm????.h
11634 F:      sound/soc/codecs/arizona.?
11635 F:      sound/soc/codecs/wm*
11636
11637 WORKQUEUE
11638 M:      Tejun Heo <tj@kernel.org>
11639 R:      Lai Jiangshan <jiangshanlai@gmail.com>
11640 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
11641 S:      Maintained
11642 F:      include/linux/workqueue.h
11643 F:      kernel/workqueue.c
11644 F:      Documentation/workqueue.txt
11645
11646 X.25 NETWORK LAYER
11647 M:      Andrew Hendry <andrew.hendry@gmail.com>
11648 L:      linux-x25@vger.kernel.org
11649 S:      Odd Fixes
11650 F:      Documentation/networking/x25*
11651 F:      include/net/x25*
11652 F:      net/x25/
11653
11654 X86 ARCHITECTURE (32-BIT AND 64-BIT)
11655 M:      Thomas Gleixner <tglx@linutronix.de>
11656 M:      Ingo Molnar <mingo@redhat.com>
11657 M:      "H. Peter Anvin" <hpa@zytor.com>
11658 M:      x86@kernel.org
11659 L:      linux-kernel@vger.kernel.org
11660 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
11661 S:      Maintained
11662 F:      Documentation/x86/
11663 F:      arch/x86/
11664
11665 X86 PLATFORM DRIVERS
11666 M:      Darren Hart <dvhart@infradead.org>
11667 L:      platform-driver-x86@vger.kernel.org
11668 T:      git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git
11669 S:      Maintained
11670 F:      drivers/platform/x86/
11671 F:      drivers/platform/olpc/
11672
11673 X86 MCE INFRASTRUCTURE
11674 M:      Tony Luck <tony.luck@intel.com>
11675 M:      Borislav Petkov <bp@alien8.de>
11676 L:      linux-edac@vger.kernel.org
11677 S:      Maintained
11678 F:      arch/x86/kernel/cpu/mcheck/*
11679
11680 X86 MICROCODE UPDATE SUPPORT
11681 M:      Borislav Petkov <bp@alien8.de>
11682 S:      Maintained
11683 F:      arch/x86/kernel/cpu/microcode/*
11684
11685 X86 VDSO
11686 M:      Andy Lutomirski <luto@amacapital.net>
11687 L:      linux-kernel@vger.kernel.org
11688 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
11689 S:      Maintained
11690 F:      arch/x86/entry/vdso/
11691
11692 XC2028/3028 TUNER DRIVER
11693 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
11694 L:      linux-media@vger.kernel.org
11695 W:      http://linuxtv.org
11696 T:      git git://linuxtv.org/media_tree.git
11697 S:      Maintained
11698 F:      drivers/media/tuners/tuner-xc2028.*
11699
11700 XEN HYPERVISOR INTERFACE
11701 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11702 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
11703 M:      David Vrabel <david.vrabel@citrix.com>
11704 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11705 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
11706 S:      Supported
11707 F:      arch/x86/xen/
11708 F:      drivers/*/xen-*front.c
11709 F:      drivers/xen/
11710 F:      arch/x86/include/asm/xen/
11711 F:      include/xen/
11712 F:      include/uapi/xen/
11713
11714 XEN HYPERVISOR ARM
11715 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
11716 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11717 S:      Supported
11718 F:      arch/arm/xen/
11719 F:      arch/arm/include/asm/xen/
11720
11721 XEN HYPERVISOR ARM64
11722 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
11723 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11724 S:      Supported
11725 F:      arch/arm64/xen/
11726 F:      arch/arm64/include/asm/xen/
11727
11728 XEN NETWORK BACKEND DRIVER
11729 M:      Ian Campbell <ian.campbell@citrix.com>
11730 M:      Wei Liu <wei.liu2@citrix.com>
11731 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11732 L:      netdev@vger.kernel.org
11733 S:      Supported
11734 F:      drivers/net/xen-netback/*
11735
11736 XEN PCI SUBSYSTEM
11737 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11738 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11739 S:      Supported
11740 F:      arch/x86/pci/*xen*
11741 F:      drivers/pci/*xen*
11742
11743 XEN BLOCK SUBSYSTEM
11744 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11745 M:      Roger Pau MonnĂ© <roger.pau@citrix.com>
11746 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11747 S:      Supported
11748 F:      drivers/block/xen-blkback/*
11749 F:      drivers/block/xen*
11750
11751 XEN PVSCSI DRIVERS
11752 M:      Juergen Gross <jgross@suse.com>
11753 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11754 L:      linux-scsi@vger.kernel.org
11755 S:      Supported
11756 F:      drivers/scsi/xen-scsifront.c
11757 F:      drivers/xen/xen-scsiback.c
11758 F:      include/xen/interface/io/vscsiif.h
11759
11760 XEN SWIOTLB SUBSYSTEM
11761 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11762 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11763 S:      Supported
11764 F:      arch/x86/xen/*swiotlb*
11765 F:      drivers/xen/*swiotlb*
11766
11767 XFS FILESYSTEM
11768 P:      Silicon Graphics Inc
11769 M:      Dave Chinner <david@fromorbit.com>
11770 M:      xfs@oss.sgi.com
11771 L:      xfs@oss.sgi.com
11772 W:      http://oss.sgi.com/projects/xfs
11773 T:      git git://oss.sgi.com/xfs/xfs.git
11774 S:      Supported
11775 F:      Documentation/filesystems/xfs.txt
11776 F:      fs/xfs/
11777
11778 XILINX AXI ETHERNET DRIVER
11779 M:      Anirudha Sarangi <anirudh@xilinx.com>
11780 M:      John Linn <John.Linn@xilinx.com>
11781 S:      Maintained
11782 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
11783
11784 XILINX UARTLITE SERIAL DRIVER
11785 M:      Peter Korsgaard <jacmet@sunsite.dk>
11786 L:      linux-serial@vger.kernel.org
11787 S:      Maintained
11788 F:      drivers/tty/serial/uartlite.c
11789
11790 XILINX VIDEO IP CORES
11791 M:      Hyun Kwon <hyun.kwon@xilinx.com>
11792 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11793 L:      linux-media@vger.kernel.org
11794 T:      git git://linuxtv.org/media_tree.git
11795 S:      Supported
11796 F:      Documentation/devicetree/bindings/media/xilinx/
11797 F:      drivers/media/platform/xilinx/
11798 F:      include/uapi/linux/xilinx-v4l2-controls.h
11799
11800 XILLYBUS DRIVER
11801 M:      Eli Billauer <eli.billauer@gmail.com>
11802 L:      linux-kernel@vger.kernel.org
11803 S:      Supported
11804 F:      drivers/char/xillybus/
11805
11806 XTENSA XTFPGA PLATFORM SUPPORT
11807 M:      Max Filippov <jcmvbkbc@gmail.com>
11808 L:      linux-xtensa@linux-xtensa.org
11809 S:      Maintained
11810 F:      drivers/spi/spi-xtensa-xtfpga.c
11811 F:      sound/soc/xtensa/xtfpga-i2s.c
11812
11813 YAM DRIVER FOR AX.25
11814 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
11815 L:      linux-hams@vger.kernel.org
11816 S:      Maintained
11817 F:      drivers/net/hamradio/yam*
11818 F:      include/linux/yam.h
11819
11820 YEALINK PHONE DRIVER
11821 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
11822 L:      usbb2k-api-dev@nongnu.org
11823 S:      Maintained
11824 F:      Documentation/input/yealink.txt
11825 F:      drivers/input/misc/yealink.*
11826
11827 Z8530 DRIVER FOR AX.25
11828 M:      Joerg Reuter <jreuter@yaina.de>
11829 W:      http://yaina.de/jreuter/
11830 W:      http://www.qsl.net/dl1bke/
11831 L:      linux-hams@vger.kernel.org
11832 S:      Maintained
11833 F:      Documentation/networking/z8530drv.txt
11834 F:      drivers/net/hamradio/*scc.c
11835 F:      drivers/net/hamradio/z8530.h
11836
11837 ZBUD COMPRESSED PAGE ALLOCATOR
11838 M:      Seth Jennings <sjennings@variantweb.net>
11839 L:      linux-mm@kvack.org
11840 S:      Maintained
11841 F:      mm/zbud.c
11842 F:      include/linux/zbud.h
11843
11844 ZD1211RW WIRELESS DRIVER
11845 M:      Daniel Drake <dsd@gentoo.org>
11846 M:      Ulrich Kunitz <kune@deine-taler.de>
11847 W:      http://zd1211.ath.cx/wiki/DriverRewrite
11848 L:      linux-wireless@vger.kernel.org
11849 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
11850 S:      Maintained
11851 F:      drivers/net/wireless/zd1211rw/
11852
11853 ZPOOL COMPRESSED PAGE STORAGE API
11854 M:      Dan Streetman <ddstreet@ieee.org>
11855 L:      linux-mm@kvack.org
11856 S:      Maintained
11857 F:      mm/zpool.c
11858 F:      include/linux/zpool.h
11859
11860 ZR36067 VIDEO FOR LINUX DRIVER
11861 L:      mjpeg-users@lists.sourceforge.net
11862 L:      linux-media@vger.kernel.org
11863 W:      http://mjpeg.sourceforge.net/driver-zoran/
11864 T:      hg http://linuxtv.org/hg/v4l-dvb
11865 S:      Odd Fixes
11866 F:      drivers/media/pci/zoran/
11867
11868 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
11869 M:      Minchan Kim <minchan@kernel.org>
11870 M:      Nitin Gupta <ngupta@vflare.org>
11871 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
11872 L:      linux-kernel@vger.kernel.org
11873 S:      Maintained
11874 F:      drivers/block/zram/
11875 F:      Documentation/blockdev/zram.txt
11876
11877 ZS DECSTATION Z85C30 SERIAL DRIVER
11878 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
11879 S:      Maintained
11880 F:      drivers/tty/serial/zs.*
11881
11882 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
11883 M:      Minchan Kim <minchan@kernel.org>
11884 M:      Nitin Gupta <ngupta@vflare.org>
11885 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
11886 L:      linux-mm@kvack.org
11887 S:      Maintained
11888 F:      mm/zsmalloc.c
11889 F:      include/linux/zsmalloc.h
11890 F:      Documentation/vm/zsmalloc.txt
11891
11892 ZSWAP COMPRESSED SWAP CACHING
11893 M:      Seth Jennings <sjennings@variantweb.net>
11894 L:      linux-mm@kvack.org
11895 S:      Maintained
11896 F:      mm/zswap.c
11897
11898 THE REST
11899 M:      Linus Torvalds <torvalds@linux-foundation.org>
11900 L:      linux-kernel@vger.kernel.org
11901 Q:      http://patchwork.kernel.org/project/LKML/list/
11902 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
11903 S:      Buried alive in reporters
11904 F:      *
11905 F:      */