]> git.karo-electronics.de Git - karo-tx-linux.git/blob - MAINTAINERS
Merge remote-tracking branch 'staging/staging-next'
[karo-tx-linux.git] / MAINTAINERS
1
2
3         List of maintainers and how to submit kernel changes
4
5 Please try to follow the guidelines below.  This will make things
6 easier on the maintainers.  Not all of these guidelines matter for every
7 trivial patch so apply some common sense.
8
9 1.      Always _test_ your changes, however small, on at least 4 or
10         5 people, preferably many more.
11
12 2.      Try to release a few ALPHA test versions to the net. Announce
13         them onto the kernel channel and await results. This is especially
14         important for device drivers, because often that's the only way
15         you will find things like the fact version 3 firmware needs
16         a magic fix you didn't know about, or some clown changed the
17         chips on a board and not its name.  (Don't laugh!  Look at the
18         SMC etherpower for that.)
19
20 3.      Make sure your changes compile correctly in multiple
21         configurations. In particular check that changes work both as a
22         module and built into the kernel.
23
24 4.      When you are happy with a change make it generally available for
25         testing and await feedback.
26
27 5.      Make a patch available to the relevant maintainer in the list. Use
28         'diff -u' to make the patch easy to merge. Be prepared to get your
29         changes sent back with seemingly silly requests about formatting
30         and variable names.  These aren't as silly as they seem. One
31         job the maintainers (and especially Linus) do is to keep things
32         looking the same. Sometimes this means that the clever hack in
33         your driver to get around a problem actually needs to become a
34         generalized kernel feature ready for next time.
35
36         PLEASE check your patch with the automated style checker
37         (scripts/checkpatch.pl) to catch trivial style violations.
38         See Documentation/CodingStyle for guidance here.
39
40         PLEASE CC: the maintainers and mailing lists that are generated
41         by scripts/get_maintainer.pl.  The results returned by the
42         script will be best if you have git installed and are making
43         your changes in a branch derived from Linus' latest git tree.
44         See Documentation/SubmittingPatches for details.
45
46         PLEASE try to include any credit lines you want added with the
47         patch. It avoids people being missed off by mistake and makes
48         it easier to know who wants adding and who doesn't.
49
50         PLEASE document known bugs. If it doesn't work for everything
51         or does something very odd once a month document it.
52
53         PLEASE remember that submissions must be made under the terms
54         of the Linux Foundation certificate of contribution and should
55         include a Signed-off-by: line.  The current version of this
56         "Developer's Certificate of Origin" (DCO) is listed in the file
57         Documentation/SubmittingPatches.
58
59 6.      Make sure you have the right to send any changes you make. If you
60         do changes at work you may find your employer owns the patch
61         not you.
62
63 7.      When sending security related changes or reports to a maintainer
64         please Cc: security@kernel.org, especially if the maintainer
65         does not respond.
66
67 8.      Happy hacking.
68
69 Descriptions of section entries:
70
71         P: Person (obsolete)
72         M: Mail patches to: FullName <address@domain>
73         R: Designated reviewer: FullName <address@domain>
74            These reviewers should be CCed on patches.
75         L: Mailing list that is relevant to this area
76         W: Web-page with status/info
77         Q: Patchwork web based patch tracking system site
78         T: SCM tree type and location.
79            Type is one of: git, hg, quilt, stgit, topgit
80         S: Status, one of the following:
81            Supported:   Someone is actually paid to look after this.
82            Maintained:  Someone actually looks after it.
83            Odd Fixes:   It has a maintainer but they don't have time to do
84                         much other than throw the odd patch in. See below..
85            Orphan:      No current maintainer [but maybe you could take the
86                         role as you write your new code].
87            Obsolete:    Old code. Something tagged obsolete generally means
88                         it has been replaced by a better system and you
89                         should be using that.
90         F: Files and directories with wildcard patterns.
91            A trailing slash includes all files and subdirectory files.
92            F:   drivers/net/    all files in and below drivers/net
93            F:   drivers/net/*   all files in drivers/net, but not below
94            F:   */net/*         all files in "any top level directory"/net
95            One pattern per line.  Multiple F: lines acceptable.
96         N: Files and directories with regex patterns.
97            N:   [^a-z]tegra     all files whose path contains the word tegra
98            One pattern per line.  Multiple N: lines acceptable.
99            scripts/get_maintainer.pl has different behavior for files that
100            match F: pattern and matches of N: patterns.  By default,
101            get_maintainer will not look at git log history when an F: pattern
102            match occurs.  When an N: match occurs, git log history is used
103            to also notify the people that have git commit signatures.
104         X: Files and directories that are NOT maintained, same rules as F:
105            Files exclusions are tested before file matches.
106            Can be useful for excluding a specific subdirectory, for instance:
107            F:   net/
108            X:   net/ipv6/
109            matches all files in and below net excluding net/ipv6/
110         K: Keyword perl extended regex pattern to match content in a
111            patch or file.  For instance:
112            K: of_get_profile
113               matches patches or files that contain "of_get_profile"
114            K: \b(printk|pr_(info|err))\b
115               matches patches or files that contain one or more of the words
116               printk, pr_info or pr_err
117            One regex pattern per line.  Multiple K: lines acceptable.
118
119 Note: For the hard of thinking, this list is meant to remain in alphabetical
120 order. If you could add yourselves to it in alphabetical order that would be
121 so much easier [Ed]
122
123 Maintainers List (try to look for most precise areas first)
124
125                 -----------------------------------
126
127 3C59X NETWORK DRIVER
128 M:      Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
129 L:      netdev@vger.kernel.org
130 S:      Maintained
131 F:      Documentation/networking/vortex.txt
132 F:      drivers/net/ethernet/3com/3c59x.c
133
134 3CR990 NETWORK DRIVER
135 M:      David Dillow <dave@thedillows.org>
136 L:      netdev@vger.kernel.org
137 S:      Maintained
138 F:      drivers/net/ethernet/3com/typhoon*
139
140 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
141 M:      Adam Radford <linuxraid@lsi.com>
142 L:      linux-scsi@vger.kernel.org
143 W:      http://www.lsi.com
144 S:      Supported
145 F:      drivers/scsi/3w-*
146
147 53C700 AND 53C700-66 SCSI DRIVER
148 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
149 L:      linux-scsi@vger.kernel.org
150 S:      Maintained
151 F:      drivers/scsi/53c700*
152
153 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
154 M:      Alexander Aring <alex.aring@gmail.com>
155 M:      Jukka Rissanen <jukka.rissanen@linux.intel.com>
156 L:      linux-bluetooth@vger.kernel.org
157 L:      linux-wpan@vger.kernel.org
158 S:      Maintained
159 F:      net/6lowpan/
160 F:      include/net/6lowpan.h
161 F:      Documentation/networking/6lowpan.txt
162
163 6PACK NETWORK DRIVER FOR AX.25
164 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
165 L:      linux-hams@vger.kernel.org
166 S:      Maintained
167 F:      drivers/net/hamradio/6pack.c
168
169 8169 10/100/1000 GIGABIT ETHERNET DRIVER
170 M:      Realtek linux nic maintainers <nic_swsd@realtek.com>
171 L:      netdev@vger.kernel.org
172 S:      Maintained
173 F:      drivers/net/ethernet/realtek/r8169.c
174
175 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
176 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
177 L:      linux-serial@vger.kernel.org
178 W:      http://serial.sourceforge.net
179 S:      Maintained
180 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
181 F:      drivers/tty/serial/8250*
182 F:      include/linux/serial_8250.h
183
184 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
185 L:      netdev@vger.kernel.org
186 S:      Orphan / Obsolete
187 F:      drivers/net/ethernet/8390/
188
189 9P FILE SYSTEM
190 M:      Eric Van Hensbergen <ericvh@gmail.com>
191 M:      Ron Minnich <rminnich@sandia.gov>
192 M:      Latchesar Ionkov <lucho@ionkov.net>
193 L:      v9fs-developer@lists.sourceforge.net
194 W:      http://swik.net/v9fs
195 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
196 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
197 S:      Maintained
198 F:      Documentation/filesystems/9p.txt
199 F:      fs/9p/
200 F:      net/9p/
201 F:      include/net/9p/
202 F:      include/uapi/linux/virtio_9p.h
203 F:      include/trace/events/9p.h
204
205
206 A8293 MEDIA DRIVER
207 M:      Antti Palosaari <crope@iki.fi>
208 L:      linux-media@vger.kernel.org
209 W:      http://linuxtv.org/
210 W:      http://palosaari.fi/linux/
211 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
212 T:      git git://linuxtv.org/anttip/media_tree.git
213 S:      Maintained
214 F:      drivers/media/dvb-frontends/a8293*
215
216 AACRAID SCSI RAID DRIVER
217 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
218 L:      linux-scsi@vger.kernel.org
219 W:      http://www.adaptec.com/
220 S:      Supported
221 F:      Documentation/scsi/aacraid.txt
222 F:      drivers/scsi/aacraid/
223
224 ABI/API
225 L:      linux-api@vger.kernel.org
226 F:      Documentation/ABI/
227 F:      include/linux/syscalls.h
228 F:      include/uapi/
229 F:      kernel/sys_ni.c
230
231 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
232 M:      Hans de Goede <hdegoede@redhat.com>
233 L:      lm-sensors@lm-sensors.org
234 S:      Maintained
235 F:      drivers/hwmon/abituguru.c
236
237 ABIT UGURU 3 HARDWARE MONITOR DRIVER
238 M:      Alistair John Strachan <alistair@devzero.co.uk>
239 L:      lm-sensors@lm-sensors.org
240 S:      Maintained
241 F:      drivers/hwmon/abituguru3.c
242
243 ACENIC DRIVER
244 M:      Jes Sorensen <jes@trained-monkey.org>
245 L:      linux-acenic@sunsite.dk
246 S:      Maintained
247 F:      drivers/net/ethernet/alteon/acenic*
248
249 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
250 M:      Peter Feuerer <peter@piie.net>
251 L:      platform-driver-x86@vger.kernel.org
252 W:      http://piie.net/?section=acerhdf
253 S:      Maintained
254 F:      drivers/platform/x86/acerhdf.c
255
256 ACER WMI LAPTOP EXTRAS
257 M:      "Lee, Chun-Yi" <jlee@suse.com>
258 L:      platform-driver-x86@vger.kernel.org
259 S:      Maintained
260 F:      drivers/platform/x86/acer-wmi.c
261
262 ACPI
263 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
264 M:      Len Brown <lenb@kernel.org>
265 L:      linux-acpi@vger.kernel.org
266 W:      https://01.org/linux-acpi
267 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
268 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
269 S:      Supported
270 F:      drivers/acpi/
271 F:      drivers/pnp/pnpacpi/
272 F:      include/linux/acpi.h
273 F:      include/acpi/
274 F:      Documentation/acpi/
275 F:      Documentation/ABI/testing/sysfs-bus-acpi
276 F:      drivers/pci/*acpi*
277 F:      drivers/pci/*/*acpi*
278 F:      drivers/pci/*/*/*acpi*
279 F:      tools/power/acpi/
280
281 ACPI COMPONENT ARCHITECTURE (ACPICA)
282 M:      Robert Moore <robert.moore@intel.com>
283 M:      Lv Zheng <lv.zheng@intel.com>
284 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
285 L:      linux-acpi@vger.kernel.org
286 L:      devel@acpica.org
287 W:      https://acpica.org/
288 W:      https://github.com/acpica/acpica/
289 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
290 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
291 S:      Supported
292 F:      drivers/acpi/acpica/
293 F:      include/acpi/
294 F:      tools/power/acpi/
295
296 ACPI FAN DRIVER
297 M:      Zhang Rui <rui.zhang@intel.com>
298 L:      linux-acpi@vger.kernel.org
299 W:      https://01.org/linux-acpi
300 S:      Supported
301 F:      drivers/acpi/fan.c
302
303 ACPI THERMAL DRIVER
304 M:      Zhang Rui <rui.zhang@intel.com>
305 L:      linux-acpi@vger.kernel.org
306 W:      https://01.org/linux-acpi
307 S:      Supported
308 F:      drivers/acpi/*thermal*
309
310 ACPI VIDEO DRIVER
311 M:      Zhang Rui <rui.zhang@intel.com>
312 L:      linux-acpi@vger.kernel.org
313 W:      https://01.org/linux-acpi
314 S:      Supported
315 F:      drivers/acpi/video.c
316
317 ACPI WMI DRIVER
318 L:      platform-driver-x86@vger.kernel.org
319 S:      Orphan
320 F:      drivers/platform/x86/wmi.c
321
322 AD1889 ALSA SOUND DRIVER
323 M:      Thibaut Varene <T-Bone@parisc-linux.org>
324 W:      http://wiki.parisc-linux.org/AD1889
325 L:      linux-parisc@vger.kernel.org
326 S:      Maintained
327 F:      sound/pci/ad1889.*
328
329 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
330 M:      Michael Hennerich <michael.hennerich@analog.com>
331 W:      http://wiki.analog.com/AD5254
332 W:      http://ez.analog.com/community/linux-device-drivers
333 S:      Supported
334 F:      drivers/misc/ad525x_dpot.c
335
336 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
337 M:      Michael Hennerich <michael.hennerich@analog.com>
338 W:      http://wiki.analog.com/AD5398
339 W:      http://ez.analog.com/community/linux-device-drivers
340 S:      Supported
341 F:      drivers/regulator/ad5398.c
342
343 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
344 M:      Michael Hennerich <michael.hennerich@analog.com>
345 W:      http://wiki.analog.com/AD7142
346 W:      http://ez.analog.com/community/linux-device-drivers
347 S:      Supported
348 F:      drivers/input/misc/ad714x.c
349
350 AD7877 TOUCHSCREEN DRIVER
351 M:      Michael Hennerich <michael.hennerich@analog.com>
352 W:      http://wiki.analog.com/AD7877
353 W:      http://ez.analog.com/community/linux-device-drivers
354 S:      Supported
355 F:      drivers/input/touchscreen/ad7877.c
356
357 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
358 M:      Michael Hennerich <michael.hennerich@analog.com>
359 W:      http://wiki.analog.com/AD7879
360 W:      http://ez.analog.com/community/linux-device-drivers
361 S:      Supported
362 F:      drivers/input/touchscreen/ad7879.c
363
364 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
365 M:      Jiri Kosina <jikos@kernel.org>
366 S:      Maintained
367
368 ADM1025 HARDWARE MONITOR DRIVER
369 M:      Jean Delvare <jdelvare@suse.com>
370 L:      lm-sensors@lm-sensors.org
371 S:      Maintained
372 F:      Documentation/hwmon/adm1025
373 F:      drivers/hwmon/adm1025.c
374
375 ADM1029 HARDWARE MONITOR DRIVER
376 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
377 L:      lm-sensors@lm-sensors.org
378 S:      Maintained
379 F:      drivers/hwmon/adm1029.c
380
381 ADM8211 WIRELESS DRIVER
382 L:      linux-wireless@vger.kernel.org
383 W:      http://wireless.kernel.org/
384 S:      Orphan
385 F:      drivers/net/wireless/adm8211.*
386
387 ADP1653 FLASH CONTROLLER DRIVER
388 M:      Sakari Ailus <sakari.ailus@iki.fi>
389 L:      linux-media@vger.kernel.org
390 S:      Maintained
391 F:      drivers/media/i2c/adp1653.c
392 F:      include/media/adp1653.h
393
394 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
395 M:      Michael Hennerich <michael.hennerich@analog.com>
396 W:      http://wiki.analog.com/ADP5520
397 W:      http://ez.analog.com/community/linux-device-drivers
398 S:      Supported
399 F:      drivers/mfd/adp5520.c
400 F:      drivers/video/backlight/adp5520_bl.c
401 F:      drivers/leds/leds-adp5520.c
402 F:      drivers/gpio/gpio-adp5520.c
403 F:      drivers/input/keyboard/adp5520-keys.c
404
405 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
406 M:      Michael Hennerich <michael.hennerich@analog.com>
407 W:      http://wiki.analog.com/ADP5588
408 W:      http://ez.analog.com/community/linux-device-drivers
409 S:      Supported
410 F:      drivers/input/keyboard/adp5588-keys.c
411 F:      drivers/gpio/gpio-adp5588.c
412
413 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
414 M:      Michael Hennerich <michael.hennerich@analog.com>
415 W:      http://wiki.analog.com/ADP8860
416 W:      http://ez.analog.com/community/linux-device-drivers
417 S:      Supported
418 F:      drivers/video/backlight/adp8860_bl.c
419
420 ADS1015 HARDWARE MONITOR DRIVER
421 M:      Dirk Eibach <eibach@gdsys.de>
422 L:      lm-sensors@lm-sensors.org
423 S:      Maintained
424 F:      Documentation/hwmon/ads1015
425 F:      drivers/hwmon/ads1015.c
426 F:      include/linux/i2c/ads1015.h
427
428 ADT746X FAN DRIVER
429 M:      Colin Leroy <colin@colino.net>
430 S:      Maintained
431 F:      drivers/macintosh/therm_adt746x.c
432
433 ADT7475 HARDWARE MONITOR DRIVER
434 M:      Jean Delvare <jdelvare@suse.com>
435 L:      lm-sensors@lm-sensors.org
436 S:      Maintained
437 F:      Documentation/hwmon/adt7475
438 F:      drivers/hwmon/adt7475.c
439
440 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
441 M:      Michael Hennerich <michael.hennerich@analog.com>
442 W:      http://wiki.analog.com/ADXL345
443 W:      http://ez.analog.com/community/linux-device-drivers
444 S:      Supported
445 F:      drivers/input/misc/adxl34x.c
446
447 ADVANSYS SCSI DRIVER
448 M:      Matthew Wilcox <matthew@wil.cx>
449 M:      Hannes Reinecke <hare@suse.com>
450 L:      linux-scsi@vger.kernel.org
451 S:      Maintained
452 F:      Documentation/scsi/advansys.txt
453 F:      drivers/scsi/advansys.c
454
455 AEDSP16 DRIVER
456 M:      Riccardo Facchetti <fizban@tin.it>
457 S:      Maintained
458 F:      sound/oss/aedsp16.c
459
460 AF9013 MEDIA DRIVER
461 M:      Antti Palosaari <crope@iki.fi>
462 L:      linux-media@vger.kernel.org
463 W:      http://linuxtv.org/
464 W:      http://palosaari.fi/linux/
465 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
466 T:      git git://linuxtv.org/anttip/media_tree.git
467 S:      Maintained
468 F:      drivers/media/dvb-frontends/af9013*
469
470 AF9033 MEDIA DRIVER
471 M:      Antti Palosaari <crope@iki.fi>
472 L:      linux-media@vger.kernel.org
473 W:      http://linuxtv.org/
474 W:      http://palosaari.fi/linux/
475 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
476 T:      git git://linuxtv.org/anttip/media_tree.git
477 S:      Maintained
478 F:      drivers/media/dvb-frontends/af9033*
479
480 AFFS FILE SYSTEM
481 L:      linux-fsdevel@vger.kernel.org
482 S:      Orphan
483 F:      Documentation/filesystems/affs.txt
484 F:      fs/affs/
485
486 AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
487 M:      David Howells <dhowells@redhat.com>
488 L:      linux-afs@lists.infradead.org
489 S:      Supported
490 F:      fs/afs/
491 F:      include/net/af_rxrpc.h
492 F:      net/rxrpc/af_rxrpc.c
493
494 AGPGART DRIVER
495 M:      David Airlie <airlied@linux.ie>
496 T:      git git://people.freedesktop.org/~airlied/linux (part of drm maint)
497 S:      Maintained
498 F:      drivers/char/agp/
499 F:      include/linux/agp*
500 F:      include/uapi/linux/agp*
501
502 AHA152X SCSI DRIVER
503 M:      "Juergen E. Fischer" <fischer@norbit.de>
504 L:      linux-scsi@vger.kernel.org
505 S:      Maintained
506 F:      drivers/scsi/aha152x*
507 F:      drivers/scsi/pcmcia/aha152x*
508
509 AIC7XXX / AIC79XX SCSI DRIVER
510 M:      Hannes Reinecke <hare@suse.com>
511 L:      linux-scsi@vger.kernel.org
512 S:      Maintained
513 F:      drivers/scsi/aic7xxx/
514
515 AIMSLAB FM RADIO RECEIVER DRIVER
516 M:      Hans Verkuil <hverkuil@xs4all.nl>
517 L:      linux-media@vger.kernel.org
518 T:      git git://linuxtv.org/media_tree.git
519 W:      http://linuxtv.org
520 S:      Maintained
521 F:      drivers/media/radio/radio-aimslab*
522
523 AIO
524 M:      Benjamin LaHaise <bcrl@kvack.org>
525 L:      linux-aio@kvack.org
526 S:      Supported
527 F:      fs/aio.c
528 F:      include/linux/*aio*.h
529
530 AIRSPY MEDIA DRIVER
531 M:      Antti Palosaari <crope@iki.fi>
532 L:      linux-media@vger.kernel.org
533 W:      http://linuxtv.org/
534 W:      http://palosaari.fi/linux/
535 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
536 T:      git git://linuxtv.org/anttip/media_tree.git
537 S:      Maintained
538 F:      drivers/media/usb/airspy/
539
540 ALCATEL SPEEDTOUCH USB DRIVER
541 M:      Duncan Sands <duncan.sands@free.fr>
542 L:      linux-usb@vger.kernel.org
543 W:      http://www.linux-usb.org/SpeedTouch/
544 S:      Maintained
545 F:      drivers/usb/atm/speedtch.c
546 F:      drivers/usb/atm/usbatm.c
547
548 ALCHEMY AU1XX0 MMC DRIVER
549 M:      Manuel Lauss <manuel.lauss@gmail.com>
550 S:      Maintained
551 F:      drivers/mmc/host/au1xmmc.c
552
553 ALI1563 I2C DRIVER
554 M:      Rudolf Marek <r.marek@assembler.cz>
555 L:      linux-i2c@vger.kernel.org
556 S:      Maintained
557 F:      Documentation/i2c/busses/i2c-ali1563
558 F:      drivers/i2c/busses/i2c-ali1563.c
559
560 ALLWINNER SECURITY SYSTEM
561 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
562 L:      linux-crypto@vger.kernel.org
563 S:      Maintained
564 F:      drivers/crypto/sunxi-ss/
565
566 ALPHA PORT
567 M:      Richard Henderson <rth@twiddle.net>
568 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
569 M:      Matt Turner <mattst88@gmail.com>
570 S:      Odd Fixes
571 L:      linux-alpha@vger.kernel.org
572 F:      arch/alpha/
573
574 ALTERA MAILBOX DRIVER
575 M:      Ley Foon Tan <lftan@altera.com>
576 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
577 S:      Maintained
578 F:      drivers/mailbox/mailbox-altera.c
579
580 ALTERA PIO DRIVER
581 M:      Tien Hock Loh <thloh@altera.com>
582 L:      linux-gpio@vger.kernel.org
583 S:      Maintained
584 F:      drivers/gpio/gpio-altera.c
585
586 ALTERA TRIPLE SPEED ETHERNET DRIVER
587 M:      Vince Bridgers <vbridger@opensource.altera.com>
588 L:      netdev@vger.kernel.org
589 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
590 S:      Maintained
591 F:      drivers/net/ethernet/altera/
592
593 ALTERA UART/JTAG UART SERIAL DRIVERS
594 M:      Tobias Klauser <tklauser@distanz.ch>
595 L:      linux-serial@vger.kernel.org
596 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
597 S:      Maintained
598 F:      drivers/tty/serial/altera_uart.c
599 F:      drivers/tty/serial/altera_jtaguart.c
600 F:      include/linux/altera_uart.h
601 F:      include/linux/altera_jtaguart.h
602
603 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
604 M:      Tom Lendacky <thomas.lendacky@amd.com>
605 L:      linux-crypto@vger.kernel.org
606 S:      Supported
607 F:      drivers/crypto/ccp/
608 F:      include/linux/ccp.h
609
610 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
611 M:      Andreas Herrmann <herrmann.der.user@googlemail.com>
612 L:      lm-sensors@lm-sensors.org
613 S:      Maintained
614 F:      Documentation/hwmon/fam15h_power
615 F:      drivers/hwmon/fam15h_power.c
616
617 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
618 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
619 S:      Orphan
620 F:      drivers/usb/gadget/udc/amd5536udc.*
621
622 AMD GEODE PROCESSOR/CHIPSET SUPPORT
623 P:      Andres Salomon <dilinger@queued.net>
624 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
625 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
626 S:      Supported
627 F:      drivers/char/hw_random/geode-rng.c
628 F:      drivers/crypto/geode*
629 F:      drivers/video/fbdev/geode/
630 F:      arch/x86/include/asm/geode.h
631
632 AMD IOMMU (AMD-VI)
633 M:      Joerg Roedel <joro@8bytes.org>
634 L:      iommu@lists.linux-foundation.org
635 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
636 S:      Maintained
637 F:      drivers/iommu/amd_iommu*.[ch]
638 F:      include/linux/amd-iommu.h
639
640 AMD KFD
641 M:      Oded Gabbay <oded.gabbay@gmail.com>
642 L:      dri-devel@lists.freedesktop.org
643 T:      git git://people.freedesktop.org/~gabbayo/linux.git
644 S:      Supported
645 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c
646 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
647 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
648 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
649 F:      drivers/gpu/drm/amd/amdkfd/
650 F:      drivers/gpu/drm/amd/include/cik_structs.h
651 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
652 F:      drivers/gpu/drm/amd/include/vi_structs.h
653 F:      drivers/gpu/drm/radeon/radeon_kfd.c
654 F:      drivers/gpu/drm/radeon/radeon_kfd.h
655 F:      include/uapi/linux/kfd_ioctl.h
656
657 AMD XGBE DRIVER
658 M:      Tom Lendacky <thomas.lendacky@amd.com>
659 L:      netdev@vger.kernel.org
660 S:      Supported
661 F:      drivers/net/ethernet/amd/xgbe/
662
663 AMS (Apple Motion Sensor) DRIVER
664 M:      Michael Hanselmann <linux-kernel@hansmi.ch>
665 S:      Supported
666 F:      drivers/macintosh/ams/
667
668 AMSO1100 RNIC DRIVER
669 M:      Tom Tucker <tom@opengridcomputing.com>
670 M:      Steve Wise <swise@opengridcomputing.com>
671 L:      linux-rdma@vger.kernel.org
672 S:      Maintained
673 F:      drivers/infiniband/hw/amso1100/
674
675 ANALOG DEVICES INC AD9389B DRIVER
676 M:      Hans Verkuil <hans.verkuil@cisco.com>
677 L:      linux-media@vger.kernel.org
678 S:      Maintained
679 F:      drivers/media/i2c/ad9389b*
680
681 ANALOG DEVICES INC ADV7180 DRIVER
682 M:      Lars-Peter Clausen <lars@metafoo.de>
683 L:      linux-media@vger.kernel.org
684 W:      http://ez.analog.com/community/linux-device-drivers
685 S:      Supported
686 F:      drivers/media/i2c/adv7180.c
687
688 ANALOG DEVICES INC ADV7511 DRIVER
689 M:      Hans Verkuil <hans.verkuil@cisco.com>
690 L:      linux-media@vger.kernel.org
691 S:      Maintained
692 F:      drivers/media/i2c/adv7511*
693
694 ANALOG DEVICES INC ADV7604 DRIVER
695 M:      Hans Verkuil <hans.verkuil@cisco.com>
696 L:      linux-media@vger.kernel.org
697 S:      Maintained
698 F:      drivers/media/i2c/adv7604*
699
700 ANALOG DEVICES INC ADV7842 DRIVER
701 M:      Hans Verkuil <hans.verkuil@cisco.com>
702 L:      linux-media@vger.kernel.org
703 S:      Maintained
704 F:      drivers/media/i2c/adv7842*
705
706 ANALOG DEVICES INC ASOC CODEC DRIVERS
707 M:      Lars-Peter Clausen <lars@metafoo.de>
708 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
709 W:      http://wiki.analog.com/
710 W:      http://ez.analog.com/community/linux-device-drivers
711 S:      Supported
712 F:      sound/soc/codecs/adau*
713 F:      sound/soc/codecs/adav*
714 F:      sound/soc/codecs/ad1*
715 F:      sound/soc/codecs/ad7*
716 F:      sound/soc/codecs/ssm*
717 F:      sound/soc/codecs/sigmadsp.*
718
719 ANALOG DEVICES INC ASOC DRIVERS
720 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
721 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
722 W:      http://blackfin.uclinux.org/
723 S:      Supported
724 F:      sound/soc/blackfin/*
725
726 ANALOG DEVICES INC IIO DRIVERS
727 M:      Lars-Peter Clausen <lars@metafoo.de>
728 M:      Michael Hennerich <Michael.Hennerich@analog.com>
729 W:      http://wiki.analog.com/
730 W:      http://ez.analog.com/community/linux-device-drivers
731 S:      Supported
732 F:      drivers/iio/*/ad*
733 X:      drivers/iio/*/adjd*
734 F:      drivers/staging/iio/*/ad*
735 F:      staging/iio/trigger/iio-trig-bfin-timer.c
736
737 ANALOG DEVICES INC DMA DRIVERS
738 M:      Lars-Peter Clausen <lars@metafoo.de>
739 W:      http://ez.analog.com/community/linux-device-drivers
740 S:      Supported
741 F:      drivers/dma/dma-axi-dmac.c
742
743 ANDROID DRIVERS
744 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
745 M:      Arve HjønnevĂ¥g <arve@android.com>
746 M:      Riley Andrews <riandrews@android.com>
747 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
748 L:      devel@driverdev.osuosl.org
749 S:      Supported
750 F:      drivers/android/
751 F:      drivers/staging/android/
752
753 AOA (Apple Onboard Audio) ALSA DRIVER
754 M:      Johannes Berg <johannes@sipsolutions.net>
755 L:      linuxppc-dev@lists.ozlabs.org
756 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
757 S:      Maintained
758 F:      sound/aoa/
759
760 APM DRIVER
761 M:      Jiri Kosina <jikos@kernel.org>
762 S:      Odd fixes
763 F:      arch/x86/kernel/apm_32.c
764 F:      include/linux/apm_bios.h
765 F:      include/uapi/linux/apm_bios.h
766 F:      drivers/char/apm-emulation.c
767
768 APPLE BCM5974 MULTITOUCH DRIVER
769 M:      Henrik Rydberg <rydberg@bitmath.org>
770 L:      linux-input@vger.kernel.org
771 S:      Odd fixes
772 F:      drivers/input/mouse/bcm5974.c
773
774 APPLE SMC DRIVER
775 M:      Henrik Rydberg <rydberg@bitmath.org>
776 L:      lm-sensors@lm-sensors.org
777 S:      Odd fixes
778 F:      drivers/hwmon/applesmc.c
779
780 APPLETALK NETWORK LAYER
781 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
782 S:      Maintained
783 F:      drivers/net/appletalk/
784 F:      net/appletalk/
785
786 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
787 M:      Duc Dang <dhdang@apm.com>
788 S:      Supported
789 F:      arch/arm64/boot/dts/apm/
790
791 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
792 M:      Iyappan Subramanian <isubramanian@apm.com>
793 M:      Keyur Chudgar <kchudgar@apm.com>
794 S:      Supported
795 F:      drivers/net/ethernet/apm/xgene/
796 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
797
798 APTINA CAMERA SENSOR PLL
799 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
800 L:      linux-media@vger.kernel.org
801 S:      Maintained
802 F:      drivers/media/i2c/aptina-pll.*
803
804 ARC FRAMEBUFFER DRIVER
805 M:      Jaya Kumar <jayalk@intworks.biz>
806 S:      Maintained
807 F:      drivers/video/fbdev/arcfb.c
808 F:      drivers/video/fbdev/core/fb_defio.c
809
810 ARCNET NETWORK LAYER
811 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
812 L:      netdev@vger.kernel.org
813 S:      Maintained
814 F:      drivers/net/arcnet/
815 F:      include/uapi/linux/if_arcnet.h
816
817 ARM MFM AND FLOPPY DRIVERS
818 M:      Ian Molton <spyro@f2s.com>
819 S:      Maintained
820 F:      arch/arm/lib/floppydma.S
821 F:      arch/arm/include/asm/floppy.h
822
823 ARM PMU PROFILING AND DEBUGGING
824 M:      Will Deacon <will.deacon@arm.com>
825 R:      Mark Rutland <mark.rutland@arm.com>
826 S:      Maintained
827 F:      arch/arm*/kernel/perf_*
828 F:      arch/arm/oprofile/common.c
829 F:      arch/arm*/kernel/hw_breakpoint.c
830 F:      arch/arm*/include/asm/hw_breakpoint.h
831 F:      arch/arm*/include/asm/perf_event.h
832 F:      drivers/perf/arm_pmu.c
833 F:      include/linux/perf/arm_pmu.h
834
835 ARM PORT
836 M:      Russell King <linux@arm.linux.org.uk>
837 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
838 W:      http://www.arm.linux.org.uk/
839 S:      Maintained
840 F:      arch/arm/
841
842 ARM SUB-ARCHITECTURES
843 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
844 S:      Maintained
845 F:      arch/arm/mach-*/
846 F:      arch/arm/plat-*/
847 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
848
849 ARM PRIMECELL AACI PL041 DRIVER
850 M:      Russell King <linux@arm.linux.org.uk>
851 S:      Maintained
852 F:      sound/arm/aaci.*
853
854 ARM PRIMECELL CLCD PL110 DRIVER
855 M:      Russell King <linux@arm.linux.org.uk>
856 S:      Maintained
857 F:      drivers/video/fbdev/amba-clcd.*
858
859 ARM PRIMECELL KMI PL050 DRIVER
860 M:      Russell King <linux@arm.linux.org.uk>
861 S:      Maintained
862 F:      drivers/input/serio/ambakmi.*
863 F:      include/linux/amba/kmi.h
864
865 ARM PRIMECELL MMCI PL180/1 DRIVER
866 M:      Russell King <linux@arm.linux.org.uk>
867 S:      Maintained
868 F:      drivers/mmc/host/mmci.*
869 F:      include/linux/amba/mmci.h
870
871 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
872 M:      Russell King <linux@arm.linux.org.uk>
873 S:      Maintained
874 F:      drivers/tty/serial/amba-pl01*.c
875 F:      include/linux/amba/serial.h
876
877 ARM PRIMECELL BUS SUPPORT
878 M:      Russell King <linux@arm.linux.org.uk>
879 S:      Maintained
880 F:      drivers/amba/
881 F:      include/linux/amba/bus.h
882
883 ARM/ADS SPHERE MACHINE SUPPORT
884 M:      Lennert Buytenhek <kernel@wantstofly.org>
885 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
886 S:      Maintained
887
888 ARM/AFEB9260 MACHINE SUPPORT
889 M:      Sergey Lapin <slapin@ossfans.org>
890 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
891 S:      Maintained
892
893 ARM/AJECO 1ARM MACHINE SUPPORT
894 M:      Lennert Buytenhek <kernel@wantstofly.org>
895 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
896 S:      Maintained
897
898 ARM/Allwinner sunXi SoC support
899 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
900 M:      Chen-Yu Tsai <wens@csie.org>
901 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
902 S:      Maintained
903 N:      sun[x456789]i
904
905 ARM/Allwinner SoC Clock Support
906 M:      Emilio LĂ³pez <emilio@elopez.com.ar>
907 S:      Maintained
908 F:      drivers/clk/sunxi/
909
910 ARM/Amlogic MesonX SoC support
911 M:      Carlo Caione <carlo@caione.org>
912 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
913 S:      Maintained
914 F:      drivers/media/rc/meson-ir.c
915 N:      meson[x68]
916
917 ARM/Annapurna Labs ALPINE ARCHITECTURE
918 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
919 S:      Maintained
920 F:      arch/arm/mach-alpine/
921
922 ARM/ATMEL AT91RM9200, AT91SAM9 AND SAMA5 SOC SUPPORT
923 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
924 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
925 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
926 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
927 W:      http://www.linux4sam.org
928 S:      Supported
929 F:      arch/arm/mach-at91/
930 F:      include/soc/at91/
931 F:      arch/arm/boot/dts/at91*.dts
932 F:      arch/arm/boot/dts/at91*.dtsi
933 F:      arch/arm/boot/dts/sama*.dts
934 F:      arch/arm/boot/dts/sama*.dtsi
935 F:      arch/arm/include/debug/at91.S
936
937 ARM/ATMEL AT91 Clock Support
938 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
939 S:      Maintained
940 F:      drivers/clk/at91
941
942 ARM/CALXEDA HIGHBANK ARCHITECTURE
943 M:      Rob Herring <robh@kernel.org>
944 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
945 S:      Maintained
946 F:      arch/arm/mach-highbank/
947
948 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
949 M:      Krzysztof Halasa <khalasa@piap.pl>
950 S:      Maintained
951 F:      arch/arm/mach-cns3xxx/
952
953 ARM/CAVIUM THUNDER NETWORK DRIVER
954 M:      Sunil Goutham <sgoutham@cavium.com>
955 M:      Robert Richter <rric@kernel.org>
956 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
957 S:      Supported
958 F:      drivers/net/ethernet/cavium/thunder/
959
960 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
961 M:      Alexander Shiyan <shc_work@mail.ru>
962 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
963 S:      Odd Fixes
964 N:      clps711x
965
966 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
967 M:      Hartley Sweeten <hsweeten@visionengravers.com>
968 M:      Ryan Mallon <rmallon@gmail.com>
969 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
970 S:      Maintained
971 F:      arch/arm/mach-ep93xx/
972 F:      arch/arm/mach-ep93xx/include/mach/
973
974 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
975 M:      Lennert Buytenhek <kernel@wantstofly.org>
976 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
977 S:      Maintained
978
979 ARM/CLKDEV SUPPORT
980 M:      Russell King <linux@arm.linux.org.uk>
981 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
982 S:      Maintained
983 F:      arch/arm/include/asm/clkdev.h
984 F:      drivers/clk/clkdev.c
985
986 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
987 M:      Mike Rapoport <mike@compulab.co.il>
988 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
989 S:      Maintained
990
991 ARM/CONTEC MICRO9 MACHINE SUPPORT
992 M:      Hubert Feurstein <hubert.feurstein@contec.at>
993 S:      Maintained
994 F:      arch/arm/mach-ep93xx/micro9.c
995
996 ARM/CORESIGHT FRAMEWORK AND DRIVERS
997 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
998 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
999 S:      Maintained
1000 F:      drivers/hwtracing/coresight/*
1001 F:      Documentation/trace/coresight.txt
1002 F:      Documentation/devicetree/bindings/arm/coresight.txt
1003 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1004
1005 ARM/CORGI MACHINE SUPPORT
1006 M:      Richard Purdie <rpurdie@rpsys.net>
1007 S:      Maintained
1008
1009 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1010 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1011 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1012 T:      git git://github.com/ulli-kroll/linux.git
1013 S:      Maintained
1014 F:      arch/arm/mach-gemini/
1015 F:      drivers/rtc/rtc-gemini.c
1016
1017 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1018 M:      Barry Song <baohua@kernel.org>
1019 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1020 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1021 S:      Maintained
1022 F:      arch/arm/mach-prima2/
1023 F:      drivers/clk/sirf/
1024 F:      drivers/clocksource/timer-prima2.c
1025 F:      drivers/clocksource/timer-atlas7.c
1026 N:      [^a-z]sirf
1027
1028 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1029 M:      Baruch Siach <baruch@tkos.co.il>
1030 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1031 S:      Maintained
1032 F:      arch/arm/boot/dts/cx92755*
1033 N:      digicolor
1034
1035 ARM/EBSA110 MACHINE SUPPORT
1036 M:      Russell King <linux@arm.linux.org.uk>
1037 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1038 W:      http://www.arm.linux.org.uk/
1039 S:      Maintained
1040 F:      arch/arm/mach-ebsa110/
1041 F:      drivers/net/ethernet/amd/am79c961a.*
1042
1043 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1044 M:      Uwe Kleine-König <kernel@pengutronix.de>
1045 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1046 S:      Maintained
1047 N:      efm32
1048
1049 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1050 M:      Daniel Ribeiro <drwyrm@gmail.com>
1051 M:      Stefan Schmidt <stefan@openezx.org>
1052 M:      Harald Welte <laforge@openezx.org>
1053 L:      openezx-devel@lists.openezx.org (moderated for non-subscribers)
1054 W:      http://www.openezx.org/
1055 S:      Maintained
1056 T:      topgit git://git.openezx.org/openezx.git
1057 F:      arch/arm/mach-pxa/ezx.c
1058
1059 ARM/FARADAY FA526 PORT
1060 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1061 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1062 S:      Maintained
1063 T:      git git://git.berlios.de/gemini-board
1064 F:      arch/arm/mm/*-fa*
1065
1066 ARM/FOOTBRIDGE ARCHITECTURE
1067 M:      Russell King <linux@arm.linux.org.uk>
1068 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1069 W:      http://www.arm.linux.org.uk/
1070 S:      Maintained
1071 F:      arch/arm/include/asm/hardware/dec21285.h
1072 F:      arch/arm/mach-footbridge/
1073
1074 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1075 M:      Shawn Guo <shawnguo@kernel.org>
1076 M:      Sascha Hauer <kernel@pengutronix.de>
1077 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1078 S:      Maintained
1079 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1080 F:      arch/arm/mach-imx/
1081 F:      arch/arm/mach-mxs/
1082 F:      arch/arm/boot/dts/imx*
1083 F:      arch/arm/configs/imx*_defconfig
1084 F:      drivers/clk/imx/
1085 F:      include/soc/imx/
1086
1087 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1088 M:      Shawn Guo <shawnguo@kernel.org>
1089 M:      Sascha Hauer <kernel@pengutronix.de>
1090 R:      Stefan Agner <stefan@agner.ch>
1091 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1092 S:      Maintained
1093 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1094 F:      arch/arm/mach-imx/*vf610*
1095 F:      arch/arm/boot/dts/vf*
1096
1097 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1098 M:      Lennert Buytenhek <kernel@wantstofly.org>
1099 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1100 S:      Maintained
1101
1102 ARM/GUMSTIX MACHINE SUPPORT
1103 M:      Steve Sakoman <sakoman@gmail.com>
1104 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1105 S:      Maintained
1106
1107 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1108 M:      Philipp Zabel <philipp.zabel@gmail.com>
1109 M:      Paul Parsons <lost.distance@yahoo.com>
1110 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1111 S:      Maintained
1112 F:      arch/arm/mach-pxa/hx4700.c
1113 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1114 F:      sound/soc/pxa/hx4700.c
1115
1116 ARM/HISILICON SOC SUPPORT
1117 M:      Wei Xu <xuwei5@hisilicon.com>
1118 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1119 W:      http://www.hisilicon.com
1120 S:      Supported
1121 T:      git git://github.com/hisilicon/linux-hisi.git
1122 F:      arch/arm/mach-hisi/
1123
1124 ARM/HP JORNADA 7XX MACHINE SUPPORT
1125 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1126 W:      www.jlime.com
1127 S:      Maintained
1128 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1129 F:      arch/arm/mach-sa1100/jornada720.c
1130 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1131
1132 ARM/IGEP MACHINE SUPPORT
1133 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1134 M:      Javier Martinez Canillas <javier@dowhile0.org>
1135 L:      linux-omap@vger.kernel.org
1136 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1137 S:      Maintained
1138 F:      arch/arm/boot/dts/omap3-igep*
1139
1140 ARM/INCOME PXA270 SUPPORT
1141 M:      Marek Vasut <marek.vasut@gmail.com>
1142 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1143 S:      Maintained
1144 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1145
1146 ARM/INTEL IOP32X ARM ARCHITECTURE
1147 M:      Lennert Buytenhek <kernel@wantstofly.org>
1148 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1149 S:      Maintained
1150
1151 ARM/INTEL IOP33X ARM ARCHITECTURE
1152 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1153 S:      Orphan
1154
1155 ARM/INTEL IOP13XX ARM ARCHITECTURE
1156 M:      Lennert Buytenhek <kernel@wantstofly.org>
1157 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1158 S:      Maintained
1159
1160 ARM/INTEL IQ81342EX MACHINE SUPPORT
1161 M:      Lennert Buytenhek <kernel@wantstofly.org>
1162 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1163 S:      Maintained
1164
1165 ARM/INTEL IXDP2850 MACHINE SUPPORT
1166 M:      Lennert Buytenhek <kernel@wantstofly.org>
1167 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1168 S:      Maintained
1169
1170 ARM/INTEL IXP4XX ARM ARCHITECTURE
1171 M:      Imre Kaloz <kaloz@openwrt.org>
1172 M:      Krzysztof Halasa <khalasa@piap.pl>
1173 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1174 S:      Maintained
1175 F:      arch/arm/mach-ixp4xx/
1176
1177 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1178 M:      Jonathan Cameron <jic23@cam.ac.uk>
1179 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1180 S:      Maintained
1181 F:      arch/arm/mach-pxa/stargate2.c
1182 F:      drivers/pcmcia/pxa2xx_stargate2.c
1183
1184 ARM/INTEL XSC3 (MANZANO) ARM CORE
1185 M:      Lennert Buytenhek <kernel@wantstofly.org>
1186 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1187 S:      Maintained
1188
1189 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1190 M:      Lennert Buytenhek <kernel@wantstofly.org>
1191 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1192 S:      Maintained
1193
1194 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
1195 M:      Santosh Shilimkar <ssantosh@kernel.org>
1196 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1197 S:      Maintained
1198 F:      arch/arm/mach-keystone/
1199 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
1200
1201 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
1202 M:      Santosh Shilimkar <ssantosh@kernel.org>
1203 L:      linux-kernel@vger.kernel.org
1204 S:      Maintained
1205 F:      drivers/clk/keystone/
1206
1207 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
1208 M:      Santosh Shilimkar <ssantosh@kernel.org>
1209 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1210 L:      linux-kernel@vger.kernel.org
1211 S:      Maintained
1212 F:      drivers/clocksource/timer-keystone.c
1213
1214 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
1215 M:      Santosh Shilimkar <ssantosh@kernel.org>
1216 L:      linux-kernel@vger.kernel.org
1217 S:      Maintained
1218 F:      drivers/power/reset/keystone-reset.c
1219
1220 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
1221 M:      Santosh Shilimkar <ssantosh@kernel.org>
1222 L:      linux-kernel@vger.kernel.org
1223 S:      Maintained
1224 F:      drivers/memory/*emif*
1225
1226 ARM/LOGICPD PXA270 MACHINE SUPPORT
1227 M:      Lennert Buytenhek <kernel@wantstofly.org>
1228 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1229 S:      Maintained
1230
1231 ARM/LPC18XX ARCHITECTURE
1232 M:      Joachim Eastwood <manabian@gmail.com>
1233 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1234 S:      Maintained
1235 F:      arch/arm/boot/dts/lpc43*
1236 F:      drivers/clk/nxp/clk-lpc18xx*
1237 F:      drivers/clocksource/time-lpc32xx.c
1238 F:      drivers/i2c/busses/i2c-lpc2k.c
1239 F:      drivers/memory/pl172.c
1240 F:      drivers/mtd/spi-nor/nxp-spifi.c
1241 F:      drivers/rtc/rtc-lpc24xx.c
1242 N:      lpc18xx
1243
1244 ARM/MAGICIAN MACHINE SUPPORT
1245 M:      Philipp Zabel <philipp.zabel@gmail.com>
1246 S:      Maintained
1247
1248 ARM/Marvell Kirkwood and Armada 370, 375, 38x, XP SOC support
1249 M:      Jason Cooper <jason@lakedaemon.net>
1250 M:      Andrew Lunn <andrew@lunn.ch>
1251 M:      Gregory Clement <gregory.clement@free-electrons.com>
1252 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1253 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1254 S:      Maintained
1255 F:      arch/arm/mach-mvebu/
1256 F:      drivers/rtc/rtc-armada38x.c
1257 F:      arch/arm/boot/dts/armada*
1258 F:      arch/arm/boot/dts/kirkwood*
1259
1260
1261 ARM/Marvell Berlin SoC support
1262 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1263 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1264 S:      Maintained
1265 F:      arch/arm/mach-berlin/
1266 F:      arch/arm/boot/dts/berlin*
1267
1268
1269 ARM/Marvell Dove/MV78xx0/Orion SOC support
1270 M:      Jason Cooper <jason@lakedaemon.net>
1271 M:      Andrew Lunn <andrew@lunn.ch>
1272 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1273 M:      Gregory Clement <gregory.clement@free-electrons.com>
1274 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1275 S:      Maintained
1276 F:      arch/arm/mach-dove/
1277 F:      arch/arm/mach-mv78xx0/
1278 F:      arch/arm/mach-orion5x/
1279 F:      arch/arm/plat-orion/
1280 F:      arch/arm/boot/dts/dove*
1281 F:      arch/arm/boot/dts/orion5x*
1282
1283
1284 ARM/Orion SoC/Technologic Systems TS-78xx platform support
1285 M:      Alexander Clouter <alex@digriz.org.uk>
1286 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1287 W:      http://www.digriz.org.uk/ts78xx/kernel
1288 S:      Maintained
1289 F:      arch/arm/mach-orion5x/ts78xx-*
1290
1291 ARM/Mediatek RTC DRIVER
1292 M:      Eddie Huang <eddie.huang@mediatek.com>
1293 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1294 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1295 S:      Maintained
1296 F:      drivers/rtc/rtc-mt6397.c
1297
1298 ARM/Mediatek SoC support
1299 M:      Matthias Brugger <matthias.bgg@gmail.com>
1300 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1301 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1302 S:      Maintained
1303 F:      arch/arm/boot/dts/mt6*
1304 F:      arch/arm/boot/dts/mt8*
1305 F:      arch/arm/mach-mediatek/
1306 N:      mtk
1307 K:      mediatek
1308
1309 ARM/Mediatek USB3 PHY DRIVER
1310 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
1311 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1312 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1313 S:      Maintained
1314 F:      drivers/phy/phy-mt65xx-usb3.c
1315
1316 ARM/MICREL KS8695 ARCHITECTURE
1317 M:      Greg Ungerer <gerg@uclinux.org>
1318 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1319 F:      arch/arm/mach-ks8695/
1320 S:      Odd Fixes
1321
1322 ARM/MIOA701 MACHINE SUPPORT
1323 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1324 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1325 F:      arch/arm/mach-pxa/mioa701.c
1326 S:      Maintained
1327
1328 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1329 M:      Michael Petchkovsky <mkpetch@internode.on.net>
1330 S:      Maintained
1331
1332 ARM/NOMADIK ARCHITECTURE
1333 M:      Alessandro Rubini <rubini@unipv.it>
1334 M:      Linus Walleij <linus.walleij@linaro.org>
1335 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1336 S:      Maintained
1337 F:      arch/arm/mach-nomadik/
1338 F:      drivers/pinctrl/nomadik/
1339 F:      drivers/i2c/busses/i2c-nomadik.c
1340 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
1341
1342 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
1343 M:      Nelson Castillo <arhuaco@freaks-unidos.net>
1344 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
1345 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
1346 S:      Supported
1347
1348 ARM/TOSA MACHINE SUPPORT
1349 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1350 M:      Dirk Opfer <dirk@opfer-online.de>
1351 S:      Maintained
1352
1353 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
1354 M:      Marek Vasut <marek.vasut@gmail.com>
1355 L:      linux-arm-kernel@lists.infradead.org
1356 W:      http://hackndev.com
1357 S:      Maintained
1358 F:      arch/arm/mach-pxa/include/mach/palmtx.h
1359 F:      arch/arm/mach-pxa/palmtx.c
1360 F:      arch/arm/mach-pxa/include/mach/palmt5.h
1361 F:      arch/arm/mach-pxa/palmt5.c
1362 F:      arch/arm/mach-pxa/include/mach/palmld.h
1363 F:      arch/arm/mach-pxa/palmld.c
1364 F:      arch/arm/mach-pxa/include/mach/palmte2.h
1365 F:      arch/arm/mach-pxa/palmte2.c
1366 F:      arch/arm/mach-pxa/include/mach/palmtc.h
1367 F:      arch/arm/mach-pxa/palmtc.c
1368
1369 ARM/PALM TREO SUPPORT
1370 M:      Tomas Cech <sleep_walker@suse.com>
1371 L:      linux-arm-kernel@lists.infradead.org
1372 W:      http://hackndev.com
1373 S:      Maintained
1374 F:      arch/arm/mach-pxa/include/mach/palmtreo.h
1375 F:      arch/arm/mach-pxa/palmtreo.c
1376
1377 ARM/PALMZ72 SUPPORT
1378 M:      Sergey Lapin <slapin@ossfans.org>
1379 L:      linux-arm-kernel@lists.infradead.org
1380 W:      http://hackndev.com
1381 S:      Maintained
1382 F:      arch/arm/mach-pxa/include/mach/palmz72.h
1383 F:      arch/arm/mach-pxa/palmz72.c
1384
1385 ARM/PLEB SUPPORT
1386 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
1387 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1388 S:      Maintained
1389
1390 ARM/PT DIGITAL BOARD PORT
1391 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
1392 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1393 W:      http://www.arm.linux.org.uk/
1394 S:      Maintained
1395
1396 ARM/QUALCOMM SUPPORT
1397 M:      Kumar Gala <galak@codeaurora.org>
1398 M:      Andy Gross <agross@codeaurora.org>
1399 M:      David Brown <davidb@codeaurora.org>
1400 L:      linux-arm-msm@vger.kernel.org
1401 L:      linux-soc@vger.kernel.org
1402 S:      Maintained
1403 F:      arch/arm/mach-qcom/
1404 F:      drivers/soc/qcom/
1405 F:      drivers/tty/serial/msm_serial.h
1406 F:      drivers/tty/serial/msm_serial.c
1407 F:      drivers/*/pm8???-*
1408 F:      drivers/mfd/ssbi.c
1409 F:      drivers/firmware/qcom_scm.c
1410 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git
1411
1412 ARM/RADISYS ENP2611 MACHINE SUPPORT
1413 M:      Lennert Buytenhek <kernel@wantstofly.org>
1414 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1415 S:      Maintained
1416
1417 ARM/RISCPC ARCHITECTURE
1418 M:      Russell King <linux@arm.linux.org.uk>
1419 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1420 W:      http://www.arm.linux.org.uk/
1421 S:      Maintained
1422 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
1423 F:      arch/arm/include/asm/hardware/ioc.h
1424 F:      arch/arm/include/asm/hardware/iomd.h
1425 F:      arch/arm/include/asm/hardware/memc.h
1426 F:      arch/arm/mach-rpc/
1427 F:      drivers/net/ethernet/8390/etherh.c
1428 F:      drivers/net/ethernet/i825xx/ether1*
1429 F:      drivers/net/ethernet/seeq/ether3*
1430 F:      drivers/scsi/arm/
1431
1432 ARM/Rockchip SoC support
1433 M:      Heiko Stuebner <heiko@sntech.de>
1434 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1435 L:      linux-rockchip@lists.infradead.org
1436 S:      Maintained
1437 F:      arch/arm/boot/dts/rk3*
1438 F:      arch/arm/mach-rockchip/
1439 F:      drivers/clk/rockchip/
1440 F:      drivers/i2c/busses/i2c-rk3x.c
1441 F:      drivers/*/*rockchip*
1442 F:      drivers/*/*/*rockchip*
1443 F:      sound/soc/rockchip/
1444 N:      rockchip
1445
1446 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
1447 M:      Kukjin Kim <kgene@kernel.org>
1448 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
1449 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1450 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1451 S:      Maintained
1452 F:      arch/arm/boot/dts/s3c*
1453 F:      arch/arm/boot/dts/exynos*
1454 F:      arch/arm64/boot/dts/exynos/
1455 F:      arch/arm/plat-samsung/
1456 F:      arch/arm/mach-s3c24*/
1457 F:      arch/arm/mach-s3c64xx/
1458 F:      arch/arm/mach-s5p*/
1459 F:      arch/arm/mach-exynos*/
1460 F:      drivers/*/*s3c2410*
1461 F:      drivers/*/*/*s3c2410*
1462 F:      drivers/spi/spi-s3c*
1463 F:      drivers/soc/samsung/*
1464 F:      sound/soc/samsung/*
1465 F:      Documentation/arm/Samsung/
1466 F:      Documentation/devicetree/bindings/arm/samsung/
1467 F:      Documentation/devicetree/bindings/sram/samsung-sram.txt
1468 F:      Documentation/devicetree/bindings/power/pd-samsung.txt
1469 N:      exynos
1470
1471 ARM/SAMSUNG MOBILE MACHINE SUPPORT
1472 M:      Kyungmin Park <kyungmin.park@samsung.com>
1473 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1474 S:      Maintained
1475 F:      arch/arm/mach-s5pv210/
1476
1477 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1478 M:      Kyungmin Park <kyungmin.park@samsung.com>
1479 M:      Kamil Debski <k.debski@samsung.com>
1480 L:      linux-arm-kernel@lists.infradead.org
1481 L:      linux-media@vger.kernel.org
1482 S:      Maintained
1483 F:      drivers/media/platform/s5p-g2d/
1484
1485 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1486 M:      Kyungmin Park <kyungmin.park@samsung.com>
1487 M:      Kamil Debski <k.debski@samsung.com>
1488 M:      Jeongtae Park <jtp.park@samsung.com>
1489 L:      linux-arm-kernel@lists.infradead.org
1490 L:      linux-media@vger.kernel.org
1491 S:      Maintained
1492 F:      arch/arm/plat-samsung/s5p-dev-mfc.c
1493 F:      drivers/media/platform/s5p-mfc/
1494
1495 ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1496 M:      Kyungmin Park <kyungmin.park@samsung.com>
1497 M:      Tomasz Stanislawski <t.stanislaws@samsung.com>
1498 L:      linux-arm-kernel@lists.infradead.org
1499 L:      linux-media@vger.kernel.org
1500 S:      Maintained
1501 F:      drivers/media/platform/s5p-tv/
1502
1503 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
1504 M:      Andrzej Pietrasiewicz <andrzej.p@samsung.com>
1505 M:      Jacek Anaszewski <j.anaszewski@samsung.com>
1506 L:      linux-arm-kernel@lists.infradead.org
1507 L:      linux-media@vger.kernel.org
1508 S:      Maintained
1509 F:      drivers/media/platform/s5p-jpeg/
1510
1511 ARM/SHMOBILE ARM ARCHITECTURE
1512 M:      Simon Horman <horms@verge.net.au>
1513 M:      Magnus Damm <magnus.damm@gmail.com>
1514 L:      linux-sh@vger.kernel.org
1515 W:      http://oss.renesas.com
1516 Q:      http://patchwork.kernel.org/project/linux-sh/list/
1517 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1518 S:      Supported
1519 F:      arch/arm/boot/dts/emev2*
1520 F:      arch/arm/boot/dts/r7s*
1521 F:      arch/arm/boot/dts/r8a*
1522 F:      arch/arm/boot/dts/sh*
1523 F:      arch/arm/configs/shmobile_defconfig
1524 F:      arch/arm/include/debug/renesas-scif.S
1525 F:      arch/arm/mach-shmobile/
1526 F:      drivers/sh/
1527
1528 ARM/SOCFPGA ARCHITECTURE
1529 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1530 S:      Maintained
1531 F:      arch/arm/mach-socfpga/
1532 F:      arch/arm/boot/dts/socfpga*
1533 F:      arch/arm/configs/socfpga_defconfig
1534 W:      http://www.rocketboards.org
1535 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
1536
1537 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1538 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1539 S:      Maintained
1540 F:      drivers/clk/socfpga/
1541
1542 ARM/SOCFPGA EDAC SUPPORT
1543 M:      Thor Thayer <tthayer@opensource.altera.com>
1544 S:      Maintained
1545 F:      drivers/edac/altera_edac.
1546
1547 ARM/STI ARCHITECTURE
1548 M:      Srinivas Kandagatla <srinivas.kandagatla@gmail.com>
1549 M:      Maxime Coquelin <maxime.coquelin@st.com>
1550 M:      Patrice Chotard <patrice.chotard@st.com>
1551 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1552 L:      kernel@stlinux.com
1553 W:      http://www.stlinux.com
1554 S:      Maintained
1555 F:      arch/arm/mach-sti/
1556 F:      arch/arm/boot/dts/sti*
1557 F:      drivers/char/hw_random/st-rng.c
1558 F:      drivers/clocksource/arm_global_timer.c
1559 F:      drivers/clocksource/clksrc_st_lpc.c
1560 F:      drivers/i2c/busses/i2c-st.c
1561 F:      drivers/media/rc/st_rc.c
1562 F:      drivers/media/platform/sti/c8sectpfe/
1563 F:      drivers/mmc/host/sdhci-st.c
1564 F:      drivers/phy/phy-miphy28lp.c
1565 F:      drivers/phy/phy-miphy365x.c
1566 F:      drivers/phy/phy-stih407-usb.c
1567 F:      drivers/phy/phy-stih41x-usb.c
1568 F:      drivers/pinctrl/pinctrl-st.c
1569 F:      drivers/reset/sti/
1570 F:      drivers/rtc/rtc-st-lpc.c
1571 F:      drivers/tty/serial/st-asc.c
1572 F:      drivers/usb/dwc3/dwc3-st.c
1573 F:      drivers/usb/host/ehci-st.c
1574 F:      drivers/usb/host/ohci-st.c
1575 F:      drivers/watchdog/st_lpc_wdt.c
1576 F:      drivers/ata/ahci_st.c
1577
1578 ARM/STM32 ARCHITECTURE
1579 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
1580 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1581 S:      Maintained
1582 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git
1583 N:      stm32
1584 F:      drivers/clocksource/armv7m_systick.c
1585
1586 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
1587 M:      Lennert Buytenhek <kernel@wantstofly.org>
1588 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1589 S:      Maintained
1590
1591 ARM/TETON BGA MACHINE SUPPORT
1592 M:      "Mark F. Brown" <mark.brown314@gmail.com>
1593 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1594 S:      Maintained
1595
1596 ARM/THECUS N2100 MACHINE SUPPORT
1597 M:      Lennert Buytenhek <kernel@wantstofly.org>
1598 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1599 S:      Maintained
1600
1601 ARM/NUVOTON W90X900 ARM ARCHITECTURE
1602 M:      Wan ZongShun <mcuos.com@gmail.com>
1603 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1604 W:      http://www.mcuos.com
1605 S:      Maintained
1606 F:      arch/arm/mach-w90x900/
1607 F:      drivers/input/keyboard/w90p910_keypad.c
1608 F:      drivers/input/touchscreen/w90p910_ts.c
1609 F:      drivers/watchdog/nuc900_wdt.c
1610 F:      drivers/net/ethernet/nuvoton/w90p910_ether.c
1611 F:      drivers/mtd/nand/nuc900_nand.c
1612 F:      drivers/rtc/rtc-nuc900.c
1613 F:      drivers/spi/spi-nuc900.c
1614 F:      drivers/usb/host/ehci-w90x900.c
1615 F:      drivers/video/fbdev/nuc900fb.c
1616
1617 ARM/U300 MACHINE SUPPORT
1618 M:      Linus Walleij <linus.walleij@linaro.org>
1619 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1620 S:      Supported
1621 F:      arch/arm/mach-u300/
1622 F:      drivers/clocksource/timer-u300.c
1623 F:      drivers/i2c/busses/i2c-stu300.c
1624 F:      drivers/rtc/rtc-coh901331.c
1625 F:      drivers/watchdog/coh901327_wdt.c
1626 F:      drivers/dma/coh901318*
1627 F:      drivers/mfd/ab3100*
1628 F:      drivers/rtc/rtc-ab3100.c
1629 F:      drivers/rtc/rtc-coh901331.c
1630 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1631
1632 ARM/UNIPHIER ARCHITECTURE
1633 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
1634 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1635 S:      Maintained
1636 F:      arch/arm/boot/dts/uniphier*
1637 F:      arch/arm/include/asm/hardware/cache-uniphier.h
1638 F:      arch/arm/mach-uniphier/
1639 F:      arch/arm/mm/cache-uniphier.c
1640 F:      drivers/i2c/busses/i2c-uniphier*
1641 F:      drivers/pinctrl/uniphier/
1642 F:      drivers/tty/serial/8250/8250_uniphier.c
1643 N:      uniphier
1644
1645 ARM/Ux500 ARM ARCHITECTURE
1646 M:      Linus Walleij <linus.walleij@linaro.org>
1647 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1648 S:      Maintained
1649 F:      arch/arm/mach-ux500/
1650 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
1651 F:      drivers/dma/ste_dma40*
1652 F:      drivers/hwspinlock/u8500_hsem.c
1653 F:      drivers/mfd/abx500*
1654 F:      drivers/mfd/ab8500*
1655 F:      drivers/mfd/dbx500*
1656 F:      drivers/mfd/db8500*
1657 F:      drivers/pinctrl/nomadik/pinctrl-ab*
1658 F:      drivers/pinctrl/nomadik/pinctrl-nomadik*
1659 F:      drivers/rtc/rtc-ab8500.c
1660 F:      drivers/rtc/rtc-pl031.c
1661 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1662
1663 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
1664 M:      Ulf Hansson <ulf.hansson@linaro.org>
1665 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1666 T:      git git://git.linaro.org/people/ulfh/clk.git
1667 S:      Maintained
1668 F:      drivers/clk/ux500/
1669 F:      include/linux/platform_data/clk-ux500.h
1670
1671 ARM/VERSATILE EXPRESS PLATFORM
1672 M:      Liviu Dudau <liviu.dudau@arm.com>
1673 M:      Sudeep Holla <sudeep.holla@arm.com>
1674 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
1675 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1676 S:      Maintained
1677 F:      arch/arm/boot/dts/vexpress*
1678 F:      arch/arm64/boot/dts/arm/vexpress*
1679 F:      arch/arm/mach-vexpress/
1680 F:      */*/vexpress*
1681 F:      */*/*/vexpress*
1682 F:      drivers/clk/versatile/clk-vexpress-osc.c
1683 F:      drivers/clocksource/versatile.c
1684
1685 ARM/VFP SUPPORT
1686 M:      Russell King <linux@arm.linux.org.uk>
1687 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1688 W:      http://www.arm.linux.org.uk/
1689 S:      Maintained
1690 F:      arch/arm/vfp/
1691
1692 ARM/VOIPAC PXA270 SUPPORT
1693 M:      Marek Vasut <marek.vasut@gmail.com>
1694 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1695 S:      Maintained
1696 F:      arch/arm/mach-pxa/vpac270.c
1697 F:      arch/arm/mach-pxa/include/mach/vpac270.h
1698
1699 ARM/VT8500 ARM ARCHITECTURE
1700 M:      Tony Prisk <linux@prisktech.co.nz>
1701 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1702 S:      Maintained
1703 F:      arch/arm/mach-vt8500/
1704 F:      drivers/clocksource/vt8500_timer.c
1705 F:      drivers/i2c/busses/i2c-wmt.c
1706 F:      drivers/mmc/host/wmt-sdmmc.c
1707 F:      drivers/pwm/pwm-vt8500.c
1708 F:      drivers/rtc/rtc-vt8500.c
1709 F:      drivers/tty/serial/vt8500_serial.c
1710 F:      drivers/usb/host/ehci-platform.c
1711 F:      drivers/usb/host/uhci-platform.c
1712 F:      drivers/video/fbdev/vt8500lcdfb.*
1713 F:      drivers/video/fbdev/wm8505fb*
1714 F:      drivers/video/fbdev/wmt_ge_rops.*
1715
1716 ARM/ZIPIT Z2 SUPPORT
1717 M:      Marek Vasut <marek.vasut@gmail.com>
1718 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1719 S:      Maintained
1720 F:      arch/arm/mach-pxa/z2.c
1721 F:      arch/arm/mach-pxa/include/mach/z2.h
1722
1723 ARM/ZTE ARCHITECTURE
1724 M:      Jun Nie <jun.nie@linaro.org>
1725 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1726 S:      Maintained
1727 F:      arch/arm/mach-zx/
1728 F:      drivers/clk/zte/
1729 F:      Documentation/devicetree/bindings/arm/zte.txt
1730 F:      Documentation/devicetree/bindings/clock/zx296702-clk.txt
1731
1732 ARM/ZYNQ ARCHITECTURE
1733 M:      Michal Simek <michal.simek@xilinx.com>
1734 R:      Sören Brinkmann <soren.brinkmann@xilinx.com>
1735 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1736 W:      http://wiki.xilinx.com
1737 T:      git https://github.com/Xilinx/linux-xlnx.git
1738 S:      Supported
1739 F:      arch/arm/mach-zynq/
1740 F:      drivers/cpuidle/cpuidle-zynq.c
1741 F:      drivers/block/xsysace.c
1742 N:      zynq
1743 N:      xilinx
1744 F:      drivers/clocksource/cadence_ttc_timer.c
1745 F:      drivers/i2c/busses/i2c-cadence.c
1746 F:      drivers/mmc/host/sdhci-of-arasan.c
1747 F:      drivers/edac/synopsys_edac.c
1748
1749 ARM SMMU DRIVERS
1750 M:      Will Deacon <will.deacon@arm.com>
1751 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1752 S:      Maintained
1753 F:      drivers/iommu/arm-smmu.c
1754 F:      drivers/iommu/arm-smmu-v3.c
1755 F:      drivers/iommu/io-pgtable-arm.c
1756
1757 ARM64 PORT (AARCH64 ARCHITECTURE)
1758 M:      Catalin Marinas <catalin.marinas@arm.com>
1759 M:      Will Deacon <will.deacon@arm.com>
1760 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1761 S:      Maintained
1762 F:      arch/arm64/
1763 F:      Documentation/arm64/
1764
1765 AS3645A LED FLASH CONTROLLER DRIVER
1766 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1767 L:      linux-media@vger.kernel.org
1768 T:      git git://linuxtv.org/media_tree.git
1769 S:      Maintained
1770 F:      drivers/media/i2c/as3645a.c
1771 F:      include/media/as3645a.h
1772
1773 ASC7621 HARDWARE MONITOR DRIVER
1774 M:      George Joseph <george.joseph@fairview5.com>
1775 L:      lm-sensors@lm-sensors.org
1776 S:      Maintained
1777 F:      Documentation/hwmon/asc7621
1778 F:      drivers/hwmon/asc7621.c
1779
1780 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
1781 M:      Corentin Chary <corentin.chary@gmail.com>
1782 L:      acpi4asus-user@lists.sourceforge.net
1783 L:      platform-driver-x86@vger.kernel.org
1784 W:      http://acpi4asus.sf.net
1785 S:      Maintained
1786 F:      drivers/platform/x86/asus*.c
1787 F:      drivers/platform/x86/eeepc*.c
1788
1789 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
1790 R:      Dan Williams <dan.j.williams@intel.com>
1791 W:      http://sourceforge.net/projects/xscaleiop
1792 S:      Odd fixes
1793 F:      Documentation/crypto/async-tx-api.txt
1794 F:      crypto/async_tx/
1795 F:      drivers/dma/
1796 F:      include/linux/dmaengine.h
1797 F:      include/linux/async_tx.h
1798
1799 AT24 EEPROM DRIVER
1800 M:      Wolfram Sang <wsa@the-dreams.de>
1801 L:      linux-i2c@vger.kernel.org
1802 S:      Maintained
1803 F:      drivers/misc/eeprom/at24.c
1804 F:      include/linux/platform_data/at24.h
1805
1806 ATA OVER ETHERNET (AOE) DRIVER
1807 M:      "Ed L. Cashin" <ed.cashin@acm.org>
1808 W:      http://www.openaoe.org/
1809 S:      Supported
1810 F:      Documentation/aoe/
1811 F:      drivers/block/aoe/
1812
1813 ATHEROS ATH GENERIC UTILITIES
1814 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1815 L:      linux-wireless@vger.kernel.org
1816 S:      Supported
1817 F:      drivers/net/wireless/ath/*
1818
1819 ATHEROS ATH5K WIRELESS DRIVER
1820 M:      Jiri Slaby <jirislaby@gmail.com>
1821 M:      Nick Kossifidis <mickflemm@gmail.com>
1822 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1823 L:      linux-wireless@vger.kernel.org
1824 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
1825 S:      Maintained
1826 F:      drivers/net/wireless/ath/ath5k/
1827
1828 ATHEROS ATH6KL WIRELESS DRIVER
1829 M:      Kalle Valo <kvalo@qca.qualcomm.com>
1830 L:      linux-wireless@vger.kernel.org
1831 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
1832 T:      git git://github.com/kvalo/ath.git
1833 S:      Supported
1834 F:      drivers/net/wireless/ath/ath6kl/
1835
1836 WILOCITY WIL6210 WIRELESS DRIVER
1837 M:      Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com>
1838 L:      linux-wireless@vger.kernel.org
1839 L:      wil6210@qca.qualcomm.com
1840 S:      Supported
1841 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
1842 F:      drivers/net/wireless/ath/wil6210/
1843 F:      include/uapi/linux/wil6210_uapi.h
1844
1845 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1846 M:      Christian Lamparter <chunkeey@googlemail.com>
1847 L:      linux-wireless@vger.kernel.org
1848 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
1849 S:      Maintained
1850 F:      drivers/net/wireless/ath/carl9170/
1851
1852 ATK0110 HWMON DRIVER
1853 M:      Luca Tettamanti <kronos.it@gmail.com>
1854 L:      lm-sensors@lm-sensors.org
1855 S:      Maintained
1856 F:      drivers/hwmon/asus_atk0110.c
1857
1858 ATI_REMOTE2 DRIVER
1859 M:      Ville Syrjala <syrjala@sci.fi>
1860 S:      Maintained
1861 F:      drivers/input/misc/ati_remote2.c
1862
1863 ATLX ETHERNET DRIVERS
1864 M:      Jay Cliburn <jcliburn@gmail.com>
1865 M:      Chris Snook <chris.snook@gmail.com>
1866 L:      netdev@vger.kernel.org
1867 W:      http://sourceforge.net/projects/atl1
1868 W:      http://atl1.sourceforge.net
1869 S:      Maintained
1870 F:      drivers/net/ethernet/atheros/
1871
1872 ATM
1873 M:      Chas Williams <3chas3@gmail.com>
1874 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
1875 L:      netdev@vger.kernel.org
1876 W:      http://linux-atm.sourceforge.net
1877 S:      Maintained
1878 F:      drivers/atm/
1879 F:      include/linux/atm*
1880 F:      include/uapi/linux/atm*
1881
1882 ATMEL AT91 / AT32 MCI DRIVER
1883 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1884 S:      Maintained
1885 F:      drivers/mmc/host/atmel-mci.c
1886 F:      drivers/mmc/host/atmel-mci-regs.h
1887
1888 ATMEL AT91 / AT32 SERIAL DRIVER
1889 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1890 S:      Supported
1891 F:      drivers/tty/serial/atmel_serial.c
1892
1893 ATMEL Audio ALSA driver
1894 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1895 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1896 S:      Supported
1897 F:      sound/soc/atmel
1898
1899 ATMEL DMA DRIVER
1900 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1901 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1902 S:      Supported
1903 F:      drivers/dma/at_hdmac.c
1904 F:      drivers/dma/at_hdmac_regs.h
1905 F:      include/linux/platform_data/dma-atmel.h
1906
1907 ATMEL XDMA DRIVER
1908 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1909 L:      linux-arm-kernel@lists.infradead.org
1910 L:      dmaengine@vger.kernel.org
1911 S:      Supported
1912 F:      drivers/dma/at_xdmac.c
1913
1914 ATMEL I2C DRIVER
1915 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1916 L:      linux-i2c@vger.kernel.org
1917 S:      Supported
1918 F:      drivers/i2c/busses/i2c-at91.c
1919
1920 ATMEL ISI DRIVER
1921 M:      Josh Wu <josh.wu@atmel.com>
1922 L:      linux-media@vger.kernel.org
1923 S:      Supported
1924 F:      drivers/media/platform/soc_camera/atmel-isi.c
1925 F:      include/media/atmel-isi.h
1926
1927 ATMEL LCDFB DRIVER
1928 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1929 L:      linux-fbdev@vger.kernel.org
1930 S:      Maintained
1931 F:      drivers/video/fbdev/atmel_lcdfb.c
1932 F:      include/video/atmel_lcdc.h
1933
1934 ATMEL MACB ETHERNET DRIVER
1935 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1936 S:      Supported
1937 F:      drivers/net/ethernet/cadence/
1938
1939 ATMEL NAND DRIVER
1940 M:      Josh Wu <josh.wu@atmel.com>
1941 L:      linux-mtd@lists.infradead.org
1942 S:      Supported
1943 F:      drivers/mtd/nand/atmel_nand*
1944
1945 ATMEL SDMMC DRIVER
1946 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1947 L:      linux-mmc@vger.kernel.org
1948 S:      Supported
1949 F:      drivers/mmc/host/sdhci-of-at91.c
1950
1951 ATMEL SPI DRIVER
1952 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1953 S:      Supported
1954 F:      drivers/spi/spi-atmel.*
1955
1956 ATMEL SSC DRIVER
1957 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1958 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1959 S:      Supported
1960 F:      drivers/misc/atmel-ssc.c
1961 F:      include/linux/atmel-ssc.h
1962
1963 ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1964 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1965 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1966 S:      Supported
1967 F:      drivers/misc/atmel_tclib.c
1968 F:      drivers/clocksource/tcb_clksrc.c
1969
1970 ATMEL USBA UDC DRIVER
1971 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1972 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1973 S:      Supported
1974 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
1975
1976 ATMEL WIRELESS DRIVER
1977 M:      Simon Kelley <simon@thekelleys.org.uk>
1978 L:      linux-wireless@vger.kernel.org
1979 W:      http://www.thekelleys.org.uk/atmel
1980 W:      http://atmelwlandriver.sourceforge.net/
1981 S:      Maintained
1982 F:      drivers/net/wireless/atmel*
1983
1984 ATMEL MAXTOUCH DRIVER
1985 M:      Nick Dyer <nick.dyer@itdev.co.uk>
1986 T:      git git://github.com/atmel-maxtouch/linux.git
1987 S:      Supported
1988 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
1989 F:      drivers/input/touchscreen/atmel_mxt_ts.c
1990 F:      include/linux/platform_data/atmel_mxt_ts.h
1991
1992 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
1993 M:      Bradley Grove <linuxdrivers@attotech.com>
1994 L:      linux-scsi@vger.kernel.org
1995 W:      http://www.attotech.com
1996 S:      Supported
1997 F:      drivers/scsi/esas2r
1998
1999 ATUSB IEEE 802.15.4 RADIO DRIVER
2000 M:      Stefan Schmidt <stefan@osg.samsung.com>
2001 L:      linux-wpan@vger.kernel.org
2002 S:      Maintained
2003 F:      drivers/net/ieee802154/atusb.c
2004 F:      drivers/net/ieee802154/atusb.h
2005 F:      drivers/net/ieee802154/at86rf230.h
2006
2007 AUDIT SUBSYSTEM
2008 M:      Paul Moore <paul@paul-moore.com>
2009 M:      Eric Paris <eparis@redhat.com>
2010 L:      linux-audit@redhat.com (moderated for non-subscribers)
2011 W:      http://people.redhat.com/sgrubb/audit/
2012 T:      git git://git.infradead.org/users/pcmoore/audit
2013 S:      Maintained
2014 F:      include/linux/audit.h
2015 F:      include/uapi/linux/audit.h
2016 F:      kernel/audit*
2017
2018 AUXILIARY DISPLAY DRIVERS
2019 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2020 W:      http://miguelojeda.es/auxdisplay.htm
2021 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2022 S:      Maintained
2023 F:      drivers/auxdisplay/
2024 F:      include/linux/cfag12864b.h
2025
2026 AVR32 ARCHITECTURE
2027 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
2028 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
2029 W:      http://www.atmel.com/products/AVR32/
2030 W:      http://mirror.egtvedt.no/avr32linux.org/
2031 W:      http://avrfreaks.net/
2032 S:      Maintained
2033 F:      arch/avr32/
2034
2035 AVR32/AT32AP MACHINE SUPPORT
2036 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
2037 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
2038 S:      Maintained
2039 F:      arch/avr32/mach-at32ap/
2040
2041 AX.25 NETWORK LAYER
2042 M:      Ralf Baechle <ralf@linux-mips.org>
2043 L:      linux-hams@vger.kernel.org
2044 W:      http://www.linux-ax25.org/
2045 S:      Maintained
2046 F:      include/uapi/linux/ax25.h
2047 F:      include/net/ax25.h
2048 F:      net/ax25/
2049
2050 AZ6007 DVB DRIVER
2051 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2052 L:      linux-media@vger.kernel.org
2053 W:      http://linuxtv.org
2054 T:      git git://linuxtv.org/media_tree.git
2055 S:      Maintained
2056 F:      drivers/media/usb/dvb-usb-v2/az6007.c
2057
2058 AZTECH FM RADIO RECEIVER DRIVER
2059 M:      Hans Verkuil <hverkuil@xs4all.nl>
2060 L:      linux-media@vger.kernel.org
2061 T:      git git://linuxtv.org/media_tree.git
2062 W:      http://linuxtv.org
2063 S:      Maintained
2064 F:      drivers/media/radio/radio-aztech*
2065
2066 B43 WIRELESS DRIVER
2067 L:      linux-wireless@vger.kernel.org
2068 L:      b43-dev@lists.infradead.org
2069 W:      http://wireless.kernel.org/en/users/Drivers/b43
2070 S:      Odd Fixes
2071 F:      drivers/net/wireless/b43/
2072
2073 B43LEGACY WIRELESS DRIVER
2074 M:      Larry Finger <Larry.Finger@lwfinger.net>
2075 L:      linux-wireless@vger.kernel.org
2076 L:      b43-dev@lists.infradead.org
2077 W:      http://wireless.kernel.org/en/users/Drivers/b43
2078 S:      Maintained
2079 F:      drivers/net/wireless/b43legacy/
2080
2081 BACKLIGHT CLASS/SUBSYSTEM
2082 M:      Jingoo Han <jingoohan1@gmail.com>
2083 M:      Lee Jones <lee.jones@linaro.org>
2084 S:      Maintained
2085 F:      drivers/video/backlight/
2086 F:      include/linux/backlight.h
2087
2088 BATMAN ADVANCED
2089 M:      Marek Lindner <mareklindner@neomailbox.ch>
2090 M:      Simon Wunderlich <sw@simonwunderlich.de>
2091 M:      Antonio Quartulli <antonio@meshcoding.com>
2092 L:      b.a.t.m.a.n@lists.open-mesh.org
2093 W:      http://www.open-mesh.org/
2094 S:      Maintained
2095 F:      net/batman-adv/
2096
2097 BAYCOM/HDLCDRV DRIVERS FOR AX.25
2098 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
2099 L:      linux-hams@vger.kernel.org
2100 W:      http://www.baycom.org/~tom/ham/ham.html
2101 S:      Maintained
2102 F:      drivers/net/hamradio/baycom*
2103
2104 BCACHE (BLOCK LAYER CACHE)
2105 M:      Kent Overstreet <kent.overstreet@gmail.com>
2106 L:      linux-bcache@vger.kernel.org
2107 W:      http://bcache.evilpiepirate.org
2108 S:      Maintained
2109 F:      drivers/md/bcache/
2110
2111 BDISP ST MEDIA DRIVER
2112 M:      Fabien Dessenne <fabien.dessenne@st.com>
2113 L:      linux-media@vger.kernel.org
2114 T:      git git://linuxtv.org/media_tree.git
2115 W:      http://linuxtv.org
2116 S:      Supported
2117 F:      drivers/media/platform/sti/bdisp
2118
2119 BEFS FILE SYSTEM
2120 S:      Orphan
2121 F:      Documentation/filesystems/befs.txt
2122 F:      fs/befs/
2123
2124 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
2125 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
2126 L:      netdev@vger.kernel.org
2127 S:      Maintained
2128 F:      drivers/net/ethernet/ec_bhf.c
2129
2130 BFS FILE SYSTEM
2131 M:      "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
2132 S:      Maintained
2133 F:      Documentation/filesystems/bfs.txt
2134 F:      fs/bfs/
2135 F:      include/uapi/linux/bfs_fs.h
2136
2137 BLACKFIN ARCHITECTURE
2138 M:      Steven Miao <realmz6@gmail.com>
2139 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2140 T:      git git://git.code.sf.net/p/adi-linux/code
2141 W:      http://blackfin.uclinux.org
2142 S:      Supported
2143 F:      arch/blackfin/
2144
2145 BLACKFIN EMAC DRIVER
2146 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2147 W:      http://blackfin.uclinux.org
2148 S:      Supported
2149 F:      drivers/net/ethernet/adi/
2150
2151 BLACKFIN RTC DRIVER
2152 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2153 W:      http://blackfin.uclinux.org
2154 S:      Supported
2155 F:      drivers/rtc/rtc-bfin.c
2156
2157 BLACKFIN SDH DRIVER
2158 M:      Sonic Zhang <sonic.zhang@analog.com>
2159 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2160 W:      http://blackfin.uclinux.org
2161 S:      Supported
2162 F:      drivers/mmc/host/bfin_sdh.c
2163
2164 BLACKFIN SERIAL DRIVER
2165 M:      Sonic Zhang <sonic.zhang@analog.com>
2166 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2167 W:      http://blackfin.uclinux.org
2168 S:      Supported
2169 F:      drivers/tty/serial/bfin_uart.c
2170
2171 BLACKFIN WATCHDOG DRIVER
2172 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2173 W:      http://blackfin.uclinux.org
2174 S:      Supported
2175 F:      drivers/watchdog/bfin_wdt.c
2176
2177 BLACKFIN I2C TWI DRIVER
2178 M:      Sonic Zhang <sonic.zhang@analog.com>
2179 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2180 W:      http://blackfin.uclinux.org/
2181 S:      Supported
2182 F:      drivers/i2c/busses/i2c-bfin-twi.c
2183
2184 BLACKFIN MEDIA DRIVER
2185 M:      Scott Jiang <scott.jiang.linux@gmail.com>
2186 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2187 W:      http://blackfin.uclinux.org/
2188 S:      Supported
2189 F:      drivers/media/platform/blackfin/
2190 F:      drivers/media/i2c/adv7183*
2191 F:      drivers/media/i2c/vs6624*
2192
2193 BLINKM RGB LED DRIVER
2194 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
2195 S:      Maintained
2196 F:      drivers/leds/leds-blinkm.c
2197
2198 BLOCK LAYER
2199 M:      Jens Axboe <axboe@kernel.dk>
2200 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
2201 S:      Maintained
2202 F:      block/
2203 F:      kernel/trace/blktrace.c
2204
2205 BLOCK2MTD DRIVER
2206 M:      Joern Engel <joern@lazybastard.org>
2207 L:      linux-mtd@lists.infradead.org
2208 S:      Maintained
2209 F:      drivers/mtd/devices/block2mtd.c
2210
2211 BLUETOOTH DRIVERS
2212 M:      Marcel Holtmann <marcel@holtmann.org>
2213 M:      Gustavo Padovan <gustavo@padovan.org>
2214 M:      Johan Hedberg <johan.hedberg@gmail.com>
2215 L:      linux-bluetooth@vger.kernel.org
2216 W:      http://www.bluez.org/
2217 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2218 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2219 S:      Maintained
2220 F:      drivers/bluetooth/
2221
2222 BLUETOOTH SUBSYSTEM
2223 M:      Marcel Holtmann <marcel@holtmann.org>
2224 M:      Gustavo Padovan <gustavo@padovan.org>
2225 M:      Johan Hedberg <johan.hedberg@gmail.com>
2226 L:      linux-bluetooth@vger.kernel.org
2227 W:      http://www.bluez.org/
2228 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2229 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2230 S:      Maintained
2231 F:      net/bluetooth/
2232 F:      include/net/bluetooth/
2233
2234 BONDING DRIVER
2235 M:      Jay Vosburgh <j.vosburgh@gmail.com>
2236 M:      Veaceslav Falico <vfalico@gmail.com>
2237 M:      Andy Gospodarek <gospo@cumulusnetworks.com>
2238 L:      netdev@vger.kernel.org
2239 W:      http://sourceforge.net/projects/bonding/
2240 S:      Supported
2241 F:      drivers/net/bonding/
2242 F:      include/uapi/linux/if_bonding.h
2243
2244 BPF (Safe dynamic programs and tools)
2245 M:      Alexei Starovoitov <ast@kernel.org>
2246 L:      netdev@vger.kernel.org
2247 L:      linux-kernel@vger.kernel.org
2248 S:      Supported
2249 F:      kernel/bpf/
2250
2251 BROADCOM B44 10/100 ETHERNET DRIVER
2252 M:      Gary Zambrano <zambrano@broadcom.com>
2253 L:      netdev@vger.kernel.org
2254 S:      Supported
2255 F:      drivers/net/ethernet/broadcom/b44.*
2256
2257 BROADCOM GENET ETHERNET DRIVER
2258 M:      Florian Fainelli <f.fainelli@gmail.com>
2259 L:      netdev@vger.kernel.org
2260 S:      Supported
2261 F:      drivers/net/ethernet/broadcom/genet/
2262
2263 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
2264 M:      Sony Chacko <sony.chacko@qlogic.com>
2265 M:      Dept-HSGLinuxNICDev@qlogic.com
2266 L:      netdev@vger.kernel.org
2267 S:      Supported
2268 F:      drivers/net/ethernet/broadcom/bnx2.*
2269 F:      drivers/net/ethernet/broadcom/bnx2_*
2270
2271 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
2272 M:      Ariel Elior <ariel.elior@qlogic.com>
2273 L:      netdev@vger.kernel.org
2274 S:      Supported
2275 F:      drivers/net/ethernet/broadcom/bnx2x/
2276
2277 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
2278 M:      Florian Fainelli <f.fainelli@gmail.com>
2279 M:      Ray Jui <rjui@broadcom.com>
2280 M:      Scott Branden <sbranden@broadcom.com>
2281 L:      bcm-kernel-feedback-list@broadcom.com
2282 T:      git git://github.com/broadcom/mach-bcm
2283 S:      Maintained
2284 F:      arch/arm/mach-bcm/
2285 F:      arch/arm/boot/dts/bcm113*
2286 F:      arch/arm/boot/dts/bcm216*
2287 F:      arch/arm/boot/dts/bcm281*
2288 F:      arch/arm/configs/bcm_defconfig
2289 F:      drivers/mmc/host/sdhci-bcm-kona.c
2290 F:      drivers/clocksource/bcm_kona_timer.c
2291
2292 BROADCOM BCM2835 ARM ARCHITECTURE
2293 M:      Stephen Warren <swarren@wwwdotorg.org>
2294 M:      Lee Jones <lee@kernel.org>
2295 M:      Eric Anholt <eric@anholt.net>
2296 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
2297 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2298 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rpi/linux-rpi.git
2299 S:      Maintained
2300 N:      bcm2835
2301
2302 BROADCOM BCM33XX MIPS ARCHITECTURE
2303 M:      Kevin Cernekee <cernekee@gmail.com>
2304 L:      linux-mips@linux-mips.org
2305 S:      Maintained
2306 F:      arch/mips/bcm3384/*
2307 F:      arch/mips/include/asm/mach-bcm3384/*
2308 F:      arch/mips/kernel/*bmips*
2309
2310 BROADCOM BCM47XX MIPS ARCHITECTURE
2311 M:      Hauke Mehrtens <hauke@hauke-m.de>
2312 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2313 L:      linux-mips@linux-mips.org
2314 S:      Maintained
2315 F:      arch/mips/bcm47xx/*
2316 F:      arch/mips/include/asm/mach-bcm47xx/*
2317
2318 BROADCOM BCM5301X ARM ARCHITECTURE
2319 M:      Hauke Mehrtens <hauke@hauke-m.de>
2320 L:      linux-arm-kernel@lists.infradead.org
2321 S:      Maintained
2322 F:      arch/arm/mach-bcm/bcm_5301x.c
2323 F:      arch/arm/boot/dts/bcm5301x.dtsi
2324 F:      arch/arm/boot/dts/bcm470*
2325
2326 BROADCOM BCM63XX ARM ARCHITECTURE
2327 M:      Florian Fainelli <f.fainelli@gmail.com>
2328 L:      linux-arm-kernel@lists.infradead.org
2329 T:      git git://github.com/broadcom/arm-bcm63xx.git
2330 S:      Maintained
2331 F:      arch/arm/mach-bcm/bcm63xx.c
2332 F:      arch/arm/include/debug/bcm63xx.S
2333
2334 BROADCOM BCM63XX/BCM33XX UDC DRIVER
2335 M:      Kevin Cernekee <cernekee@gmail.com>
2336 L:      linux-usb@vger.kernel.org
2337 S:      Maintained
2338 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
2339
2340 BROADCOM BCM7XXX ARM ARCHITECTURE
2341 M:      Brian Norris <computersforpeace@gmail.com>
2342 M:      Gregory Fong <gregory.0xf0@gmail.com>
2343 M:      Florian Fainelli <f.fainelli@gmail.com>
2344 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2345 T:      git git://github.com/broadcom/stblinux.git
2346 S:      Maintained
2347 F:      arch/arm/mach-bcm/*brcmstb*
2348 F:      arch/arm/boot/dts/bcm7*.dts*
2349 F:      drivers/bus/brcmstb_gisb.c
2350 N:      brcmstb
2351
2352 BROADCOM BMIPS MIPS ARCHITECTURE
2353 M:      Kevin Cernekee <cernekee@gmail.com>
2354 M:      Florian Fainelli <f.fainelli@gmail.com>
2355 L:      linux-mips@linux-mips.org
2356 T:      git git://github.com/broadcom/stblinux.git
2357 S:      Maintained
2358 F:      arch/mips/bmips/*
2359 F:      arch/mips/include/asm/mach-bmips/*
2360 F:      arch/mips/kernel/*bmips*
2361 F:      arch/mips/boot/dts/brcm/bcm*.dts*
2362 F:      drivers/irqchip/irq-bcm7*
2363 F:      drivers/irqchip/irq-brcmstb*
2364
2365 BROADCOM TG3 GIGABIT ETHERNET DRIVER
2366 M:      Prashant Sreedharan <prashant@broadcom.com>
2367 M:      Michael Chan <mchan@broadcom.com>
2368 L:      netdev@vger.kernel.org
2369 S:      Supported
2370 F:      drivers/net/ethernet/broadcom/tg3.*
2371
2372 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2373 M:      Brett Rudley <brudley@broadcom.com>
2374 M:      Arend van Spriel <arend@broadcom.com>
2375 M:      Franky (Zhenhui) Lin <frankyl@broadcom.com>
2376 M:      Hante Meuleman <meuleman@broadcom.com>
2377 L:      linux-wireless@vger.kernel.org
2378 L:      brcm80211-dev-list@broadcom.com
2379 S:      Supported
2380 F:      drivers/net/wireless/brcm80211/
2381
2382 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
2383 M:      QLogic-Storage-Upstream@qlogic.com
2384 L:      linux-scsi@vger.kernel.org
2385 S:      Supported
2386 F:      drivers/scsi/bnx2fc/
2387
2388 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
2389 M:      QLogic-Storage-Upstream@qlogic.com
2390 L:      linux-scsi@vger.kernel.org
2391 S:      Supported
2392 F:      drivers/scsi/bnx2i/
2393
2394 BROADCOM IPROC ARM ARCHITECTURE
2395 M:      Ray Jui <rjui@broadcom.com>
2396 M:      Scott Branden <sbranden@broadcom.com>
2397 M:      Jon Mason <jonmason@broadcom.com>
2398 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2399 L:      bcm-kernel-feedback-list@broadcom.com
2400 T:      git git://github.com/broadcom/cygnus-linux.git
2401 S:      Maintained
2402 N:      iproc
2403 N:      cygnus
2404 N:      nsp
2405 N:      bcm9113*
2406 N:      bcm9583*
2407 N:      bcm9585*
2408 N:      bcm9586*
2409 N:      bcm988312
2410 N:      bcm113*
2411 N:      bcm583*
2412 N:      bcm585*
2413 N:      bcm586*
2414 N:      bcm88312
2415
2416 BROADCOM BRCMSTB GPIO DRIVER
2417 M:      Gregory Fong <gregory.0xf0@gmail.com>
2418 L:      bcm-kernel-feedback-list@broadcom.com>
2419 S:      Supported
2420 F:      drivers/gpio/gpio-brcmstb.c
2421 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
2422
2423 BROADCOM KONA GPIO DRIVER
2424 M:      Ray Jui <rjui@broadcom.com>
2425 L:      bcm-kernel-feedback-list@broadcom.com
2426 S:      Supported
2427 F:      drivers/gpio/gpio-bcm-kona.c
2428 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
2429
2430 BROADCOM NVRAM DRIVER
2431 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2432 L:      linux-mips@linux-mips.org
2433 S:      Maintained
2434 F:      drivers/firmware/broadcom/*
2435
2436 BROADCOM STB NAND FLASH DRIVER
2437 M:      Brian Norris <computersforpeace@gmail.com>
2438 L:      linux-mtd@lists.infradead.org
2439 S:      Maintained
2440 F:      drivers/mtd/nand/brcmnand/
2441
2442 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2443 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2444 L:      linux-wireless@vger.kernel.org
2445 S:      Maintained
2446 F:      drivers/bcma/
2447 F:      include/linux/bcma/
2448
2449 BROADCOM SYSTEMPORT ETHERNET DRIVER
2450 M:      Florian Fainelli <f.fainelli@gmail.com>
2451 L:      netdev@vger.kernel.org
2452 S:      Supported
2453 F:      drivers/net/ethernet/broadcom/bcmsysport.*
2454
2455 BROCADE BFA FC SCSI DRIVER
2456 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
2457 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
2458 L:      linux-scsi@vger.kernel.org
2459 S:      Supported
2460 F:      drivers/scsi/bfa/
2461
2462 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
2463 M:      Rasesh Mody <rasesh.mody@qlogic.com>
2464 L:      netdev@vger.kernel.org
2465 S:      Supported
2466 F:      drivers/net/ethernet/brocade/bna/
2467
2468 BSG (block layer generic sg v4 driver)
2469 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
2470 L:      linux-scsi@vger.kernel.org
2471 S:      Supported
2472 F:      block/bsg.c
2473 F:      include/linux/bsg.h
2474 F:      include/uapi/linux/bsg.h
2475
2476 BT87X AUDIO DRIVER
2477 M:      Clemens Ladisch <clemens@ladisch.de>
2478 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2479 T:      git git://git.alsa-project.org/alsa-kernel.git
2480 S:      Maintained
2481 F:      Documentation/sound/alsa/Bt87x.txt
2482 F:      sound/pci/bt87x.c
2483
2484 BT8XXGPIO DRIVER
2485 M:      Michael Buesch <m@bues.ch>
2486 W:      http://bu3sch.de/btgpio.php
2487 S:      Maintained
2488 F:      drivers/gpio/gpio-bt8xx.c
2489
2490 BTRFS FILE SYSTEM
2491 M:      Chris Mason <clm@fb.com>
2492 M:      Josef Bacik <jbacik@fb.com>
2493 M:      David Sterba <dsterba@suse.com>
2494 L:      linux-btrfs@vger.kernel.org
2495 W:      http://btrfs.wiki.kernel.org/
2496 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
2497 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
2498 S:      Maintained
2499 F:      Documentation/filesystems/btrfs.txt
2500 F:      fs/btrfs/
2501
2502 BTTV VIDEO4LINUX DRIVER
2503 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2504 L:      linux-media@vger.kernel.org
2505 W:      http://linuxtv.org
2506 T:      git git://linuxtv.org/media_tree.git
2507 S:      Odd fixes
2508 F:      Documentation/video4linux/bttv/
2509 F:      drivers/media/pci/bt8xx/bttv*
2510
2511 BUSLOGIC SCSI DRIVER
2512 M:      Khalid Aziz <khalid@gonehiking.org>
2513 L:      linux-scsi@vger.kernel.org
2514 S:      Maintained
2515 F:      drivers/scsi/BusLogic.*
2516 F:      drivers/scsi/FlashPoint.*
2517
2518 C-MEDIA CMI8788 DRIVER
2519 M:      Clemens Ladisch <clemens@ladisch.de>
2520 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2521 T:      git git://git.alsa-project.org/alsa-kernel.git
2522 S:      Maintained
2523 F:      sound/pci/oxygen/
2524
2525 C6X ARCHITECTURE
2526 M:      Mark Salter <msalter@redhat.com>
2527 M:      Aurelien Jacquiot <a-jacquiot@ti.com>
2528 L:      linux-c6x-dev@linux-c6x.org
2529 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
2530 S:      Maintained
2531 F:      arch/c6x/
2532
2533 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
2534 M:      David Howells <dhowells@redhat.com>
2535 L:      linux-cachefs@redhat.com
2536 S:      Supported
2537 F:      Documentation/filesystems/caching/cachefiles.txt
2538 F:      fs/cachefiles/
2539
2540 CADET FM/AM RADIO RECEIVER DRIVER
2541 M:      Hans Verkuil <hverkuil@xs4all.nl>
2542 L:      linux-media@vger.kernel.org
2543 T:      git git://linuxtv.org/media_tree.git
2544 W:      http://linuxtv.org
2545 S:      Maintained
2546 F:      drivers/media/radio/radio-cadet*
2547
2548 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
2549 M:      Jonathan Corbet <corbet@lwn.net>
2550 L:      linux-media@vger.kernel.org
2551 T:      git git://linuxtv.org/media_tree.git
2552 S:      Maintained
2553 F:      Documentation/video4linux/cafe_ccic
2554 F:      drivers/media/platform/marvell-ccic/
2555
2556 CAIF NETWORK LAYER
2557 M:      Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
2558 L:      netdev@vger.kernel.org
2559 S:      Supported
2560 F:      Documentation/networking/caif/
2561 F:      drivers/net/caif/
2562 F:      include/uapi/linux/caif/
2563 F:      include/net/caif/
2564 F:      net/caif/
2565
2566 CALGARY x86-64 IOMMU
2567 M:      Muli Ben-Yehuda <muli@il.ibm.com>
2568 M:      "Jon D. Mason" <jdmason@kudzu.us>
2569 L:      discuss@x86-64.org
2570 S:      Maintained
2571 F:      arch/x86/kernel/pci-calgary_64.c
2572 F:      arch/x86/kernel/tce_64.c
2573 F:      arch/x86/include/asm/calgary.h
2574 F:      arch/x86/include/asm/tce.h
2575
2576 CAN NETWORK LAYER
2577 M:      Oliver Hartkopp <socketcan@hartkopp.net>
2578 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2579 L:      linux-can@vger.kernel.org
2580 W:      https://github.com/linux-can
2581 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2582 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2583 S:      Maintained
2584 F:      Documentation/networking/can.txt
2585 F:      net/can/
2586 F:      include/linux/can/core.h
2587 F:      include/uapi/linux/can.h
2588 F:      include/uapi/linux/can/bcm.h
2589 F:      include/uapi/linux/can/raw.h
2590 F:      include/uapi/linux/can/gw.h
2591
2592 CAN NETWORK DRIVERS
2593 M:      Wolfgang Grandegger <wg@grandegger.com>
2594 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2595 L:      linux-can@vger.kernel.org
2596 W:      https://github.com/linux-can
2597 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2598 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2599 S:      Maintained
2600 F:      drivers/net/can/
2601 F:      include/linux/can/dev.h
2602 F:      include/linux/can/platform/
2603 F:      include/uapi/linux/can/error.h
2604 F:      include/uapi/linux/can/netlink.h
2605
2606 CAPABILITIES
2607 M:      Serge Hallyn <serge.hallyn@canonical.com>
2608 L:      linux-security-module@vger.kernel.org
2609 S:      Supported
2610 F:      include/linux/capability.h
2611 F:      include/uapi/linux/capability.h
2612 F:      security/commoncap.c
2613 F:      kernel/capability.c
2614
2615 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
2616 M:      Kevin Tsai <ktsai@capellamicro.com>
2617 S:      Maintained
2618 F:      drivers/iio/light/cm*
2619 F:      Documentation/devicetree/bindings/i2c/trivial-devices.txt
2620
2621 CAVIUM LIQUIDIO NETWORK DRIVER
2622 M:     Derek Chickles <derek.chickles@caviumnetworks.com>
2623 M:     Satanand Burla <satananda.burla@caviumnetworks.com>
2624 M:     Felix Manlunas <felix.manlunas@caviumnetworks.com>
2625 M:     Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com>
2626 L:     netdev@vger.kernel.org
2627 W:     http://www.cavium.com
2628 S:     Supported
2629 F:     drivers/net/ethernet/cavium/liquidio/
2630
2631 CC2520 IEEE-802.15.4 RADIO DRIVER
2632 M:      Varka Bhadram <varkabhadram@gmail.com>
2633 L:      linux-wpan@vger.kernel.org
2634 S:      Maintained
2635 F:      drivers/net/ieee802154/cc2520.c
2636 F:      include/linux/spi/cc2520.h
2637 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
2638
2639 CELL BROADBAND ENGINE ARCHITECTURE
2640 M:      Arnd Bergmann <arnd@arndb.de>
2641 L:      linuxppc-dev@lists.ozlabs.org
2642 W:      http://www.ibm.com/developerworks/power/cell/
2643 S:      Supported
2644 F:      arch/powerpc/include/asm/cell*.h
2645 F:      arch/powerpc/include/asm/spu*.h
2646 F:      arch/powerpc/include/uapi/asm/spu*.h
2647 F:      arch/powerpc/oprofile/*cell*
2648 F:      arch/powerpc/platforms/cell/
2649
2650 CEPH COMMON CODE (LIBCEPH)
2651 M:      Ilya Dryomov <idryomov@gmail.com>
2652 M:      "Yan, Zheng" <zyan@redhat.com>
2653 M:      Sage Weil <sage@redhat.com>
2654 L:      ceph-devel@vger.kernel.org
2655 W:      http://ceph.com/
2656 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2657 T:      git git://github.com/ceph/ceph-client.git
2658 S:      Supported
2659 F:      net/ceph/
2660 F:      include/linux/ceph/
2661 F:      include/linux/crush/
2662
2663 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
2664 M:      "Yan, Zheng" <zyan@redhat.com>
2665 M:      Sage Weil <sage@redhat.com>
2666 M:      Ilya Dryomov <idryomov@gmail.com>
2667 L:      ceph-devel@vger.kernel.org
2668 W:      http://ceph.com/
2669 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2670 T:      git git://github.com/ceph/ceph-client.git
2671 S:      Supported
2672 F:      Documentation/filesystems/ceph.txt
2673 F:      fs/ceph/
2674
2675 CERTIFICATE HANDLING:
2676 M:      David Howells <dhowells@redhat.com>
2677 M:      David Woodhouse <dwmw2@infradead.org>
2678 L:      keyrings@linux-nfs.org
2679 S:      Maintained
2680 F:      Documentation/module-signing.txt
2681 F:      certs/
2682 F:      scripts/extract-cert.c
2683
2684 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
2685 L:      linux-usb@vger.kernel.org
2686 S:      Orphan
2687 F:      Documentation/usb/WUSB-Design-overview.txt
2688 F:      Documentation/usb/wusb-cbaf
2689 F:      drivers/usb/host/hwa-hc.c
2690 F:      drivers/usb/host/whci/
2691 F:      drivers/usb/wusbcore/
2692 F:      include/linux/usb/wusb*
2693
2694 CFAG12864B LCD DRIVER
2695 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2696 W:      http://miguelojeda.es/auxdisplay.htm
2697 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2698 S:      Maintained
2699 F:      drivers/auxdisplay/cfag12864b.c
2700 F:      include/linux/cfag12864b.h
2701
2702 CFAG12864BFB LCD FRAMEBUFFER DRIVER
2703 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2704 W:      http://miguelojeda.es/auxdisplay.htm
2705 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2706 S:      Maintained
2707 F:      drivers/auxdisplay/cfag12864bfb.c
2708 F:      include/linux/cfag12864b.h
2709
2710 CFG80211 and NL80211
2711 M:      Johannes Berg <johannes@sipsolutions.net>
2712 L:      linux-wireless@vger.kernel.org
2713 W:      http://wireless.kernel.org/
2714 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2715 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
2716 S:      Maintained
2717 F:      include/uapi/linux/nl80211.h
2718 F:      include/net/cfg80211.h
2719 F:      net/wireless/*
2720 X:      net/wireless/wext*
2721
2722 CHAR and MISC DRIVERS
2723 M:      Arnd Bergmann <arnd@arndb.de>
2724 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2725 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
2726 S:      Supported
2727 F:      drivers/char/*
2728 F:      drivers/misc/*
2729 F:      include/linux/miscdevice.h
2730
2731 CHECKPATCH
2732 M:      Andy Whitcroft <apw@canonical.com>
2733 M:      Joe Perches <joe@perches.com>
2734 S:      Maintained
2735 F:      scripts/checkpatch.pl
2736
2737 CHINESE DOCUMENTATION
2738 M:      Harry Wei <harryxiyou@gmail.com>
2739 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
2740 L:      linux-kernel@zh-kernel.org (moderated for non-subscribers)
2741 S:      Maintained
2742 F:      Documentation/zh_CN/
2743
2744 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
2745 M:      Peter Chen <Peter.Chen@freescale.com>
2746 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
2747 L:      linux-usb@vger.kernel.org
2748 S:      Maintained
2749 F:      drivers/usb/chipidea/
2750
2751 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
2752 M:      Hans de Goede <hdegoede@redhat.com>
2753 L:      linux-input@vger.kernel.org
2754 S:      Maintained
2755 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
2756 F:      drivers/input/touchscreen/chipone_icn8318.c
2757
2758 CHROME HARDWARE PLATFORM SUPPORT
2759 M:      Olof Johansson <olof@lixom.net>
2760 S:      Maintained
2761 F:      drivers/platform/chrome/
2762
2763 CISCO VIC ETHERNET NIC DRIVER
2764 M:      Christian Benvenuti <benve@cisco.com>
2765 M:      Sujith Sankar <ssujith@cisco.com>
2766 M:      Govindarajulu Varadarajan <_govind@gmx.com>
2767 M:      Neel Patel <neepatel@cisco.com>
2768 S:      Supported
2769 F:      drivers/net/ethernet/cisco/enic/
2770
2771 CISCO VIC LOW LATENCY NIC DRIVER
2772 M:      Christian Benvenuti <benve@cisco.com>
2773 M:      Dave Goodell <dgoodell@cisco.com>
2774 S:      Supported
2775 F:      drivers/infiniband/hw/usnic/
2776
2777 CIRRUS LOGIC EP93XX ETHERNET DRIVER
2778 M:      Hartley Sweeten <hsweeten@visionengravers.com>
2779 L:      netdev@vger.kernel.org
2780 S:      Maintained
2781 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
2782
2783 CIRRUS LOGIC AUDIO CODEC DRIVERS
2784 M:      Brian Austin <brian.austin@cirrus.com>
2785 M:      Paul Handrigan <Paul.Handrigan@cirrus.com>
2786 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2787 S:      Maintained
2788 F:      sound/soc/codecs/cs*
2789
2790 CLEANCACHE API
2791 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2792 L:      linux-kernel@vger.kernel.org
2793 S:      Maintained
2794 F:      mm/cleancache.c
2795 F:      include/linux/cleancache.h
2796
2797 CLK API
2798 M:      Russell King <linux@arm.linux.org.uk>
2799 L:      linux-clk@vger.kernel.org
2800 S:      Maintained
2801 F:      include/linux/clk.h
2802
2803 CLOCKSOURCE, CLOCKEVENT DRIVERS
2804 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2805 M:      Thomas Gleixner <tglx@linutronix.de>
2806 L:      linux-kernel@vger.kernel.org
2807 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
2808 S:      Supported
2809 F:      drivers/clocksource
2810
2811 CISCO FCOE HBA DRIVER
2812 M:      Hiral Patel <hiralpat@cisco.com>
2813 M:      Suma Ramars <sramars@cisco.com>
2814 M:      Brian Uchino <buchino@cisco.com>
2815 L:      linux-scsi@vger.kernel.org
2816 S:      Supported
2817 F:      drivers/scsi/fnic/
2818
2819 CISCO SCSI HBA DRIVER
2820 M:      Narsimhulu Musini <nmusini@cisco.com>
2821 M:      Sesidhar Baddela <sebaddel@cisco.com>
2822 L:      linux-scsi@vger.kernel.org
2823 S:      Supported
2824 F:      drivers/scsi/snic/
2825
2826 CMPC ACPI DRIVER
2827 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2828 M:      Daniel Oliveira Nascimento <don@syst.com.br>
2829 L:      platform-driver-x86@vger.kernel.org
2830 S:      Supported
2831 F:      drivers/platform/x86/classmate-laptop.c
2832
2833 COBALT MEDIA DRIVER
2834 M:      Hans Verkuil <hans.verkuil@cisco.com>
2835 L:      linux-media@vger.kernel.org
2836 T:      git git://linuxtv.org/media_tree.git
2837 W:      http://linuxtv.org
2838 S:      Supported
2839 F:      drivers/media/pci/cobalt/
2840
2841 COCCINELLE/Semantic Patches (SmPL)
2842 M:      Julia Lawall <Julia.Lawall@lip6.fr>
2843 M:      Gilles Muller <Gilles.Muller@lip6.fr>
2844 M:      Nicolas Palix <nicolas.palix@imag.fr>
2845 M:      Michal Marek <mmarek@suse.com>
2846 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
2847 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
2848 W:      http://coccinelle.lip6.fr/
2849 S:      Supported
2850 F:      Documentation/coccinelle.txt
2851 F:      scripts/coccinelle/
2852 F:      scripts/coccicheck
2853
2854 CODA FILE SYSTEM
2855 M:      Jan Harkes <jaharkes@cs.cmu.edu>
2856 M:      coda@cs.cmu.edu
2857 L:      codalist@coda.cs.cmu.edu
2858 W:      http://www.coda.cs.cmu.edu/
2859 S:      Maintained
2860 F:      Documentation/filesystems/coda.txt
2861 F:      fs/coda/
2862 F:      include/linux/coda*.h
2863 F:      include/uapi/linux/coda*.h
2864
2865 CODA V4L2 MEM2MEM DRIVER
2866 M:      Philipp Zabel <p.zabel@pengutronix.de>
2867 L:      linux-media@vger.kernel.org
2868 S:      Maintained
2869 F:      Documentation/devicetree/bindings/media/coda.txt
2870 F:      drivers/media/platform/coda/
2871
2872 COMMON CLK FRAMEWORK
2873 M:      Michael Turquette <mturquette@baylibre.com>
2874 M:      Stephen Boyd <sboyd@codeaurora.org>
2875 L:      linux-clk@vger.kernel.org
2876 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
2877 S:      Maintained
2878 F:      drivers/clk/
2879 X:      drivers/clk/clkdev.c
2880 F:      include/linux/clk-pr*
2881 F:      include/linux/clk/
2882
2883 COMMON INTERNET FILE SYSTEM (CIFS)
2884 M:      Steve French <sfrench@samba.org>
2885 L:      linux-cifs@vger.kernel.org
2886 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
2887 W:      http://linux-cifs.samba.org/
2888 T:      git git://git.samba.org/sfrench/cifs-2.6.git
2889 S:      Supported
2890 F:      Documentation/filesystems/cifs/
2891 F:      fs/cifs/
2892
2893 COMPACTPCI HOTPLUG CORE
2894 M:      Scott Murray <scott@spiteful.org>
2895 L:      linux-pci@vger.kernel.org
2896 S:      Maintained
2897 F:      drivers/pci/hotplug/cpci_hotplug*
2898
2899 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
2900 M:      Scott Murray <scott@spiteful.org>
2901 L:      linux-pci@vger.kernel.org
2902 S:      Maintained
2903 F:      drivers/pci/hotplug/cpcihp_zt5550.*
2904
2905 COMPACTPCI HOTPLUG GENERIC DRIVER
2906 M:      Scott Murray <scott@spiteful.org>
2907 L:      linux-pci@vger.kernel.org
2908 S:      Maintained
2909 F:      drivers/pci/hotplug/cpcihp_generic.c
2910
2911 COMPAL LAPTOP SUPPORT
2912 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
2913 L:      platform-driver-x86@vger.kernel.org
2914 S:      Maintained
2915 F:      drivers/platform/x86/compal-laptop.c
2916
2917 CONEXANT ACCESSRUNNER USB DRIVER
2918 M:      Simon Arlott <cxacru@fire.lp0.eu>
2919 L:      accessrunner-general@lists.sourceforge.net
2920 W:      http://accessrunner.sourceforge.net/
2921 S:      Maintained
2922 F:      drivers/usb/atm/cxacru.c
2923
2924 CONFIGFS
2925 M:      Joel Becker <jlbec@evilplan.org>
2926 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
2927 S:      Supported
2928 F:      fs/configfs/
2929 F:      include/linux/configfs.h
2930
2931 CONNECTOR
2932 M:      Evgeniy Polyakov <zbr@ioremap.net>
2933 L:      netdev@vger.kernel.org
2934 S:      Maintained
2935 F:      drivers/connector/
2936
2937 CONTROL GROUP (CGROUP)
2938 M:      Tejun Heo <tj@kernel.org>
2939 M:      Li Zefan <lizefan@huawei.com>
2940 M:      Johannes Weiner <hannes@cmpxchg.org>
2941 L:      cgroups@vger.kernel.org
2942 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
2943 S:      Maintained
2944 F:      Documentation/cgroups/
2945 F:      include/linux/cgroup*
2946 F:      kernel/cgroup*
2947
2948 CONTROL GROUP - CPUSET
2949 M:      Li Zefan <lizefan@huawei.com>
2950 L:      cgroups@vger.kernel.org
2951 W:      http://www.bullopensource.org/cpuset/
2952 W:      http://oss.sgi.com/projects/cpusets/
2953 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
2954 S:      Maintained
2955 F:      Documentation/cgroups/cpusets.txt
2956 F:      include/linux/cpuset.h
2957 F:      kernel/cpuset.c
2958
2959 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
2960 M:      Johannes Weiner <hannes@cmpxchg.org>
2961 M:      Michal Hocko <mhocko@kernel.org>
2962 L:      cgroups@vger.kernel.org
2963 L:      linux-mm@kvack.org
2964 S:      Maintained
2965 F:      mm/memcontrol.c
2966 F:      mm/swap_cgroup.c
2967
2968 CORETEMP HARDWARE MONITORING DRIVER
2969 M:      Fenghua Yu <fenghua.yu@intel.com>
2970 L:      lm-sensors@lm-sensors.org
2971 S:      Maintained
2972 F:      Documentation/hwmon/coretemp
2973 F:      drivers/hwmon/coretemp.c
2974
2975 COSA/SRP SYNC SERIAL DRIVER
2976 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
2977 W:      http://www.fi.muni.cz/~kas/cosa/
2978 S:      Maintained
2979 F:      drivers/net/wan/cosa*
2980
2981 CPMAC ETHERNET DRIVER
2982 M:      Florian Fainelli <florian@openwrt.org>
2983 L:      netdev@vger.kernel.org
2984 S:      Maintained
2985 F:      drivers/net/ethernet/ti/cpmac.c
2986
2987 CPU FREQUENCY DRIVERS
2988 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
2989 M:      Viresh Kumar <viresh.kumar@linaro.org>
2990 L:      linux-pm@vger.kernel.org
2991 S:      Maintained
2992 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2993 T:      git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
2994 F:      drivers/cpufreq/
2995 F:      include/linux/cpufreq.h
2996
2997 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
2998 M:      Viresh Kumar <viresh.kumar@linaro.org>
2999 M:      Sudeep Holla <sudeep.holla@arm.com>
3000 L:      linux-pm@vger.kernel.org
3001 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
3002 S:      Maintained
3003 F:      drivers/cpufreq/arm_big_little.h
3004 F:      drivers/cpufreq/arm_big_little.c
3005 F:      drivers/cpufreq/arm_big_little_dt.c
3006
3007 CPUIDLE DRIVER - ARM BIG LITTLE
3008 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
3009 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3010 L:      linux-pm@vger.kernel.org
3011 L:      linux-arm-kernel@lists.infradead.org
3012 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3013 S:      Maintained
3014 F:      drivers/cpuidle/cpuidle-big_little.c
3015
3016 CPUIDLE DRIVER - ARM EXYNOS
3017 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
3018 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3019 M:      Kukjin Kim <kgene@kernel.org>
3020 L:      linux-pm@vger.kernel.org
3021 L:      linux-samsung-soc@vger.kernel.org
3022 S:      Supported
3023 F:      drivers/cpuidle/cpuidle-exynos.c
3024 F:      arch/arm/mach-exynos/pm.c
3025
3026 CPUIDLE DRIVERS
3027 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
3028 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3029 L:      linux-pm@vger.kernel.org
3030 S:      Maintained
3031 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3032 F:      drivers/cpuidle/*
3033 F:      include/linux/cpuidle.h
3034
3035 CPUID/MSR DRIVER
3036 M:      "H. Peter Anvin" <hpa@zytor.com>
3037 S:      Maintained
3038 F:      arch/x86/kernel/cpuid.c
3039 F:      arch/x86/kernel/msr.c
3040
3041 CPU POWER MONITORING SUBSYSTEM
3042 M:      Thomas Renninger <trenn@suse.com>
3043 L:      linux-pm@vger.kernel.org
3044 S:      Maintained
3045 F:      tools/power/cpupower/
3046
3047 CRAMFS FILESYSTEM
3048 W:      http://sourceforge.net/projects/cramfs/
3049 S:      Orphan / Obsolete
3050 F:      Documentation/filesystems/cramfs.txt
3051 F:      fs/cramfs/
3052
3053 CRIS PORT
3054 M:      Mikael Starvik <starvik@axis.com>
3055 M:      Jesper Nilsson <jesper.nilsson@axis.com>
3056 L:      linux-cris-kernel@axis.com
3057 W:      http://developer.axis.com
3058 S:      Maintained
3059 F:      arch/cris/
3060 F:      drivers/tty/serial/crisv10.*
3061
3062 CRYPTO API
3063 M:      Herbert Xu <herbert@gondor.apana.org.au>
3064 M:      "David S. Miller" <davem@davemloft.net>
3065 L:      linux-crypto@vger.kernel.org
3066 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
3067 S:      Maintained
3068 F:      Documentation/crypto/
3069 F:      Documentation/DocBook/crypto-API.tmpl
3070 F:      arch/*/crypto/
3071 F:      crypto/
3072 F:      drivers/crypto/
3073 F:      include/crypto/
3074
3075 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
3076 M:      Neil Horman <nhorman@tuxdriver.com>
3077 L:      linux-crypto@vger.kernel.org
3078 S:      Maintained
3079 F:      crypto/ansi_cprng.c
3080 F:      crypto/rng.c
3081
3082 CS5535 Audio ALSA driver
3083 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
3084 S:      Maintained
3085 F:      sound/pci/cs5535audio/
3086
3087 CW1200 WLAN driver
3088 M:      Solomon Peachy <pizza@shaftnet.org>
3089 S:      Maintained
3090 F:      drivers/net/wireless/cw1200/
3091
3092 CX18 VIDEO4LINUX DRIVER
3093 M:      Andy Walls <awalls@md.metrocast.net>
3094 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
3095 L:      linux-media@vger.kernel.org
3096 T:      git git://linuxtv.org/media_tree.git
3097 W:      http://linuxtv.org
3098 W:      http://www.ivtvdriver.org/index.php/Cx18
3099 S:      Maintained
3100 F:      Documentation/video4linux/cx18.txt
3101 F:      drivers/media/pci/cx18/
3102 F:      include/uapi/linux/ivtv*
3103
3104 CX2341X MPEG ENCODER HELPER MODULE
3105 M:      Hans Verkuil <hverkuil@xs4all.nl>
3106 L:      linux-media@vger.kernel.org
3107 T:      git git://linuxtv.org/media_tree.git
3108 W:      http://linuxtv.org
3109 S:      Maintained
3110 F:      drivers/media/common/cx2341x*
3111 F:      include/media/cx2341x*
3112
3113 CX24120 MEDIA DRIVER
3114 M:      Jemma Denson <jdenson@gmail.com>
3115 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
3116 L:      linux-media@vger.kernel.org
3117 W:      http://linuxtv.org/
3118 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3119 S:      Maintained
3120 F:      drivers/media/dvb-frontends/cx24120*
3121
3122 CX88 VIDEO4LINUX DRIVER
3123 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3124 L:      linux-media@vger.kernel.org
3125 W:      http://linuxtv.org
3126 T:      git git://linuxtv.org/media_tree.git
3127 S:      Odd fixes
3128 F:      Documentation/video4linux/cx88/
3129 F:      drivers/media/pci/cx88/
3130
3131 CXD2820R MEDIA DRIVER
3132 M:      Antti Palosaari <crope@iki.fi>
3133 L:      linux-media@vger.kernel.org
3134 W:      http://linuxtv.org/
3135 W:      http://palosaari.fi/linux/
3136 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3137 T:      git git://linuxtv.org/anttip/media_tree.git
3138 S:      Maintained
3139 F:      drivers/media/dvb-frontends/cxd2820r*
3140
3141 CXGB3 ETHERNET DRIVER (CXGB3)
3142 M:      Santosh Raspatur <santosh@chelsio.com>
3143 L:      netdev@vger.kernel.org
3144 W:      http://www.chelsio.com
3145 S:      Supported
3146 F:      drivers/net/ethernet/chelsio/cxgb3/
3147
3148 CXGB3 ISCSI DRIVER (CXGB3I)
3149 M:      Karen Xie <kxie@chelsio.com>
3150 L:      linux-scsi@vger.kernel.org
3151 W:      http://www.chelsio.com
3152 S:      Supported
3153 F:      drivers/scsi/cxgbi/cxgb3i
3154
3155 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
3156 M:      Steve Wise <swise@chelsio.com>
3157 L:      linux-rdma@vger.kernel.org
3158 W:      http://www.openfabrics.org
3159 S:      Supported
3160 F:      drivers/infiniband/hw/cxgb3/
3161
3162 CXGB4 ETHERNET DRIVER (CXGB4)
3163 M:      Hariprasad S <hariprasad@chelsio.com>
3164 L:      netdev@vger.kernel.org
3165 W:      http://www.chelsio.com
3166 S:      Supported
3167 F:      drivers/net/ethernet/chelsio/cxgb4/
3168
3169 CXGB4 ISCSI DRIVER (CXGB4I)
3170 M:      Karen Xie <kxie@chelsio.com>
3171 L:      linux-scsi@vger.kernel.org
3172 W:      http://www.chelsio.com
3173 S:      Supported
3174 F:      drivers/scsi/cxgbi/cxgb4i
3175
3176 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
3177 M:      Steve Wise <swise@chelsio.com>
3178 L:      linux-rdma@vger.kernel.org
3179 W:      http://www.openfabrics.org
3180 S:      Supported
3181 F:      drivers/infiniband/hw/cxgb4/
3182
3183 CXGB4VF ETHERNET DRIVER (CXGB4VF)
3184 M:      Casey Leedom <leedom@chelsio.com>
3185 L:      netdev@vger.kernel.org
3186 W:      http://www.chelsio.com
3187 S:      Supported
3188 F:      drivers/net/ethernet/chelsio/cxgb4vf/
3189
3190 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
3191 M:      Ian Munsie <imunsie@au1.ibm.com>
3192 M:      Michael Neuling <mikey@neuling.org>
3193 L:      linuxppc-dev@lists.ozlabs.org
3194 S:      Supported
3195 F:      drivers/misc/cxl/
3196 F:      include/misc/cxl*
3197 F:      include/uapi/misc/cxl.h
3198 F:      Documentation/powerpc/cxl.txt
3199 F:      Documentation/powerpc/cxl.txt
3200 F:      Documentation/ABI/testing/sysfs-class-cxl
3201
3202 STMMAC ETHERNET DRIVER
3203 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
3204 L:      netdev@vger.kernel.org
3205 W:      http://www.stlinux.com
3206 S:      Supported
3207 F:      drivers/net/ethernet/stmicro/stmmac/
3208
3209 CYBERPRO FB DRIVER
3210 M:      Russell King <linux@arm.linux.org.uk>
3211 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3212 W:      http://www.arm.linux.org.uk/
3213 S:      Maintained
3214 F:      drivers/video/fbdev/cyber2000fb.*
3215
3216 CYCLADES ASYNC MUX DRIVER
3217 W:      http://www.cyclades.com/
3218 S:      Orphan
3219 F:      drivers/tty/cyclades.c
3220 F:      include/linux/cyclades.h
3221 F:      include/uapi/linux/cyclades.h
3222
3223 CYCLADES PC300 DRIVER
3224 W:      http://www.cyclades.com/
3225 S:      Orphan
3226 F:      drivers/net/wan/pc300*
3227
3228 CYPRESS_FIRMWARE MEDIA DRIVER
3229 M:      Antti Palosaari <crope@iki.fi>
3230 L:      linux-media@vger.kernel.org
3231 W:      http://linuxtv.org/
3232 W:      http://palosaari.fi/linux/
3233 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3234 T:      git git://linuxtv.org/anttip/media_tree.git
3235 S:      Maintained
3236 F:      drivers/media/common/cypress_firmware*
3237
3238 CYTTSP TOUCHSCREEN DRIVER
3239 M:      Ferruh Yigit <fery@cypress.com>
3240 L:      linux-input@vger.kernel.org
3241 S:      Supported
3242 F:      drivers/input/touchscreen/cyttsp*
3243 F:      include/linux/input/cyttsp.h
3244
3245 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
3246 M:      Joshua Kinard <kumba@gentoo.org>
3247 S:      Maintained
3248 F:      drivers/rtc/rtc-ds1685.c
3249 F:      include/linux/rtc/ds1685.h
3250
3251 DAMA SLAVE for AX.25
3252 M:      Joerg Reuter <jreuter@yaina.de>
3253 W:      http://yaina.de/jreuter/
3254 W:      http://www.qsl.net/dl1bke/
3255 L:      linux-hams@vger.kernel.org
3256 S:      Maintained
3257 F:      net/ax25/af_ax25.c
3258 F:      net/ax25/ax25_dev.c
3259 F:      net/ax25/ax25_ds_*
3260 F:      net/ax25/ax25_in.c
3261 F:      net/ax25/ax25_out.c
3262 F:      net/ax25/ax25_timer.c
3263 F:      net/ax25/sysctl_net_ax25.c
3264
3265 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
3266 L:      netdev@vger.kernel.org
3267 S:      Orphan
3268 F:      Documentation/networking/dmfe.txt
3269 F:      drivers/net/ethernet/dec/tulip/dmfe.c
3270
3271 DC390/AM53C974 SCSI driver
3272 M:      Hannes Reinecke <hare@suse.com>
3273 L:      linux-scsi@vger.kernel.org
3274 S:      Maintained
3275 F:      drivers/scsi/am53c974.c
3276
3277 DC395x SCSI driver
3278 M:      Oliver Neukum <oliver@neukum.org>
3279 M:      Ali Akcaagac <aliakc@web.de>
3280 M:      Jamie Lenehan <lenehan@twibble.org>
3281 L:      dc395x@twibble.org
3282 W:      http://twibble.org/dist/dc395x/
3283 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
3284 S:      Maintained
3285 F:      Documentation/scsi/dc395x.txt
3286 F:      drivers/scsi/dc395x.*
3287
3288 DCCP PROTOCOL
3289 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
3290 L:      dccp@vger.kernel.org
3291 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
3292 S:      Maintained
3293 F:      include/linux/dccp.h
3294 F:      include/uapi/linux/dccp.h
3295 F:      include/linux/tfrc.h
3296 F:      net/dccp/
3297
3298 DECnet NETWORK LAYER
3299 W:      http://linux-decnet.sourceforge.net
3300 L:      linux-decnet-user@lists.sourceforge.net
3301 S:      Orphan
3302 F:      Documentation/networking/decnet.txt
3303 F:      net/decnet/
3304
3305 DECSTATION PLATFORM SUPPORT
3306 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3307 L:      linux-mips@linux-mips.org
3308 W:      http://www.linux-mips.org/wiki/DECstation
3309 S:      Maintained
3310 F:      arch/mips/dec/
3311 F:      arch/mips/include/asm/dec/
3312 F:      arch/mips/include/asm/mach-dec/
3313
3314 DEFXX FDDI NETWORK DRIVER
3315 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3316 S:      Maintained
3317 F:      drivers/net/fddi/defxx.*
3318
3319 DELL LAPTOP DRIVER
3320 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3321 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3322 L:      platform-driver-x86@vger.kernel.org
3323 S:      Maintained
3324 F:      drivers/platform/x86/dell-laptop.c
3325
3326 DELL LAPTOP RBTN DRIVER
3327 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3328 S:      Maintained
3329 F:      drivers/platform/x86/dell-rbtn.*
3330
3331 DELL LAPTOP FREEFALL DRIVER
3332 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3333 S:      Maintained
3334 F:      drivers/platform/x86/dell-smo8800.c
3335
3336 DELL LAPTOP SMM DRIVER
3337 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3338 S:      Maintained
3339 F:      drivers/hwmon/dell-smm-hwmon.c
3340 F:      include/uapi/linux/i8k.h
3341
3342 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
3343 M:      Doug Warzecha <Douglas_Warzecha@dell.com>
3344 S:      Maintained
3345 F:      Documentation/dcdbas.txt
3346 F:      drivers/firmware/dcdbas.*
3347
3348 DELL WMI EXTRAS DRIVER
3349 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3350 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3351 S:      Maintained
3352 F:      drivers/platform/x86/dell-wmi.c
3353
3354 DESIGNWARE USB2 DRD IP DRIVER
3355 M:      John Youn <johnyoun@synopsys.com>
3356 L:      linux-usb@vger.kernel.org
3357 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3358 S:      Maintained
3359 F:      drivers/usb/dwc2/
3360
3361 DESIGNWARE USB3 DRD IP DRIVER
3362 M:      Felipe Balbi <balbi@ti.com>
3363 L:      linux-usb@vger.kernel.org
3364 L:      linux-omap@vger.kernel.org
3365 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3366 S:      Maintained
3367 F:      drivers/usb/dwc3/
3368
3369 DEVICE COREDUMP (DEV_COREDUMP)
3370 M:      Johannes Berg <johannes@sipsolutions.net>
3371 L:      linux-kernel@vger.kernel.org
3372 S:      Maintained
3373 F:      drivers/base/devcoredump.c
3374 F:      include/linux/devcoredump.h
3375
3376 DEVICE FREQUENCY (DEVFREQ)
3377 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
3378 M:      Kyungmin Park <kyungmin.park@samsung.com>
3379 L:      linux-pm@vger.kernel.org
3380 S:      Maintained
3381 F:      drivers/devfreq/
3382
3383 DEVICE NUMBER REGISTRY
3384 M:      Torben Mathiasen <device@lanana.org>
3385 W:      http://lanana.org/docs/device-list/index.html
3386 S:      Maintained
3387
3388 DEVICE-MAPPER  (LVM)
3389 M:      Alasdair Kergon <agk@redhat.com>
3390 M:      Mike Snitzer <snitzer@redhat.com>
3391 M:      dm-devel@redhat.com
3392 L:      dm-devel@redhat.com
3393 W:      http://sources.redhat.com/dm
3394 Q:      http://patchwork.kernel.org/project/dm-devel/list/
3395 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
3396 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
3397 S:      Maintained
3398 F:      Documentation/device-mapper/
3399 F:      drivers/md/dm*
3400 F:      drivers/md/persistent-data/
3401 F:      include/linux/device-mapper.h
3402 F:      include/linux/dm-*.h
3403 F:      include/uapi/linux/dm-*.h
3404
3405 DIALOG SEMICONDUCTOR DRIVERS
3406 M:      Support Opensource <support.opensource@diasemi.com>
3407 W:      http://www.dialog-semiconductor.com/products
3408 S:      Supported
3409 F:      Documentation/hwmon/da90??
3410 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
3411 F:      drivers/gpio/gpio-da90??.c
3412 F:      drivers/hwmon/da90??-hwmon.c
3413 F:      drivers/iio/adc/da91??-*.c
3414 F:      drivers/input/misc/da90??_onkey.c
3415 F:      drivers/input/touchscreen/da9052_tsi.c
3416 F:      drivers/leds/leds-da90??.c
3417 F:      drivers/mfd/da903x.c
3418 F:      drivers/mfd/da90??-*.c
3419 F:      drivers/mfd/da91??-*.c
3420 F:      drivers/power/da9052-battery.c
3421 F:      drivers/power/da91??-*.c
3422 F:      drivers/regulator/da903x.c
3423 F:      drivers/regulator/da9???-regulator.[ch]
3424 F:      drivers/rtc/rtc-da90??.c
3425 F:      drivers/video/backlight/da90??_bl.c
3426 F:      drivers/watchdog/da90??_wdt.c
3427 F:      include/linux/mfd/da903x.h
3428 F:      include/linux/mfd/da9052/
3429 F:      include/linux/mfd/da9055/
3430 F:      include/linux/mfd/da9063/
3431 F:      include/linux/mfd/da9150/
3432 F:      include/sound/da[79]*.h
3433 F:      sound/soc/codecs/da[79]*.[ch]
3434
3435 DIGI NEO AND CLASSIC PCI PRODUCTS
3436 M:      Lidza Louina <lidza.louina@gmail.com>
3437 M:      Mark Hounschell <markh@compro.net>
3438 L:      driverdev-devel@linuxdriverproject.org
3439 S:      Maintained
3440 F:      drivers/staging/dgnc/
3441
3442 DIGI EPCA PCI PRODUCTS
3443 M:      Lidza Louina <lidza.louina@gmail.com>
3444 M:      Daeseok Youn <daeseok.youn@gmail.com>
3445 L:      driverdev-devel@linuxdriverproject.org
3446 S:      Maintained
3447 F:      drivers/staging/dgap/
3448
3449 DIOLAN U2C-12 I2C DRIVER
3450 M:      Guenter Roeck <linux@roeck-us.net>
3451 L:      linux-i2c@vger.kernel.org
3452 S:      Maintained
3453 F:      drivers/i2c/busses/i2c-diolan-u2c.c
3454
3455 DIRECT ACCESS (DAX)
3456 M:      Matthew Wilcox <willy@linux.intel.com>
3457 L:      linux-fsdevel@vger.kernel.org
3458 S:      Supported
3459 F:      fs/dax.c
3460
3461 DIRECTORY NOTIFICATION (DNOTIFY)
3462 M:      Eric Paris <eparis@parisplace.org>
3463 S:      Maintained
3464 F:      Documentation/filesystems/dnotify.txt
3465 F:      fs/notify/dnotify/
3466 F:      include/linux/dnotify.h
3467
3468 DISK GEOMETRY AND PARTITION HANDLING
3469 M:      Andries Brouwer <aeb@cwi.nl>
3470 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
3471 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
3472 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
3473 S:      Maintained
3474
3475 DISKQUOTA
3476 M:      Jan Kara <jack@suse.com>
3477 S:      Maintained
3478 F:      Documentation/filesystems/quota.txt
3479 F:      fs/quota/
3480 F:      include/linux/quota*.h
3481 F:      include/uapi/linux/quota*.h
3482
3483 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
3484 M:      Bernie Thompson <bernie@plugable.com>
3485 L:      linux-fbdev@vger.kernel.org
3486 S:      Maintained
3487 W:      http://plugable.com/category/projects/udlfb/
3488 F:      drivers/video/fbdev/udlfb.c
3489 F:      include/video/udlfb.h
3490 F:      Documentation/fb/udlfb.txt
3491
3492 DISTRIBUTED LOCK MANAGER (DLM)
3493 M:      Christine Caulfield <ccaulfie@redhat.com>
3494 M:      David Teigland <teigland@redhat.com>
3495 L:      cluster-devel@redhat.com
3496 W:      http://sources.redhat.com/cluster/
3497 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
3498 S:      Supported
3499 F:      fs/dlm/
3500
3501 DMA BUFFER SHARING FRAMEWORK
3502 M:      Sumit Semwal <sumit.semwal@linaro.org>
3503 S:      Maintained
3504 L:      linux-media@vger.kernel.org
3505 L:      dri-devel@lists.freedesktop.org
3506 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
3507 F:      drivers/dma-buf/
3508 F:      include/linux/dma-buf*
3509 F:      include/linux/reservation.h
3510 F:      include/linux/*fence.h
3511 F:      Documentation/dma-buf-sharing.txt
3512 T:      git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
3513
3514 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
3515 M:      Vinod Koul <vinod.koul@intel.com>
3516 L:      dmaengine@vger.kernel.org
3517 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
3518 S:      Maintained
3519 F:      drivers/dma/
3520 F:      include/linux/dmaengine.h
3521 F:      Documentation/dmaengine/
3522 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
3523
3524 DME1737 HARDWARE MONITOR DRIVER
3525 M:      Juerg Haefliger <juergh@gmail.com>
3526 L:      lm-sensors@lm-sensors.org
3527 S:      Maintained
3528 F:      Documentation/hwmon/dme1737
3529 F:      drivers/hwmon/dme1737.c
3530
3531 DMI/SMBIOS SUPPORT
3532 M:      Jean Delvare <jdelvare@suse.com>
3533 S:      Maintained
3534 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
3535 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
3536 F:      drivers/firmware/dmi-id.c
3537 F:      drivers/firmware/dmi_scan.c
3538 F:      include/linux/dmi.h
3539
3540 DOCUMENTATION
3541 M:      Jonathan Corbet <corbet@lwn.net>
3542 L:      linux-doc@vger.kernel.org
3543 S:      Maintained
3544 F:      Documentation/
3545 F:      scripts/docproc.c
3546 F:      scripts/kernel-doc*
3547 X:      Documentation/ABI/
3548 X:      Documentation/devicetree/
3549 X:      Documentation/acpi
3550 X:      Documentation/power
3551 X:      Documentation/spi
3552 X:      Documentation/DocBook/media
3553 T:      git git://git.lwn.net/linux.git docs-next
3554
3555 DOUBLETALK DRIVER
3556 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
3557 L:      blinux-list@redhat.com
3558 S:      Maintained
3559 F:      drivers/char/dtlk.c
3560 F:      include/linux/dtlk.h
3561
3562 DPT_I2O SCSI RAID DRIVER
3563 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
3564 L:      linux-scsi@vger.kernel.org
3565 W:      http://www.adaptec.com/
3566 S:      Maintained
3567 F:      drivers/scsi/dpt*
3568 F:      drivers/scsi/dpt/
3569
3570 DRBD DRIVER
3571 P:      Philipp Reisner
3572 P:      Lars Ellenberg
3573 M:      drbd-dev@lists.linbit.com
3574 L:      drbd-user@lists.linbit.com
3575 W:      http://www.drbd.org
3576 T:      git git://git.drbd.org/linux-2.6-drbd.git drbd
3577 T:      git git://git.drbd.org/drbd-8.3.git
3578 S:      Supported
3579 F:      drivers/block/drbd/
3580 F:      lib/lru_cache.c
3581 F:      Documentation/blockdev/drbd/
3582
3583 DRIVER CORE, KOBJECTS, DEBUGFS, KERNFS AND SYSFS
3584 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3585 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
3586 S:      Supported
3587 F:      Documentation/kobject.txt
3588 F:      drivers/base/
3589 F:      fs/debugfs/
3590 F:      fs/kernfs/
3591 F:      fs/sysfs/
3592 F:      include/linux/debugfs.h
3593 F:      include/linux/kobj*
3594 F:      lib/kobj*
3595
3596 DRM DRIVERS
3597 M:      David Airlie <airlied@linux.ie>
3598 L:      dri-devel@lists.freedesktop.org
3599 T:      git git://people.freedesktop.org/~airlied/linux
3600 S:      Maintained
3601 F:      drivers/gpu/drm/
3602 F:      drivers/gpu/vga/
3603 F:      include/drm/
3604 F:      include/uapi/drm/
3605
3606 RADEON DRM DRIVERS
3607 M:      Alex Deucher <alexander.deucher@amd.com>
3608 M:      Christian König <christian.koenig@amd.com>
3609 L:      dri-devel@lists.freedesktop.org
3610 T:      git git://people.freedesktop.org/~agd5f/linux
3611 S:      Supported
3612 F:      drivers/gpu/drm/radeon/
3613 F:      include/uapi/drm/radeon*
3614
3615 DRM PANEL DRIVERS
3616 M:      Thierry Reding <thierry.reding@gmail.com>
3617 L:      dri-devel@lists.freedesktop.org
3618 T:      git git://anongit.freedesktop.org/tegra/linux.git
3619 S:      Maintained
3620 F:      drivers/gpu/drm/drm_panel.c
3621 F:      drivers/gpu/drm/panel/
3622 F:      include/drm/drm_panel.h
3623 F:      Documentation/devicetree/bindings/panel/
3624
3625 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
3626 M:      Daniel Vetter <daniel.vetter@intel.com>
3627 M:      Jani Nikula <jani.nikula@linux.intel.com>
3628 L:      intel-gfx@lists.freedesktop.org
3629 L:      dri-devel@lists.freedesktop.org
3630 W:      https://01.org/linuxgraphics/
3631 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
3632 T:      git git://anongit.freedesktop.org/drm-intel
3633 S:      Supported
3634 F:      drivers/gpu/drm/i915/
3635 F:      include/drm/i915*
3636 F:      include/uapi/drm/i915*
3637
3638 DRM DRIVERS FOR ATMEL HLCDC
3639 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
3640 L:      dri-devel@lists.freedesktop.org
3641 S:      Supported
3642 F:      drivers/gpu/drm/atmel-hlcdc/
3643 F:      Documentation/devicetree/bindings/drm/atmel/
3644
3645 DRM DRIVERS FOR EXYNOS
3646 M:      Inki Dae <inki.dae@samsung.com>
3647 M:      Joonyoung Shim <jy0922.shim@samsung.com>
3648 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
3649 M:      Kyungmin Park <kyungmin.park@samsung.com>
3650 L:      dri-devel@lists.freedesktop.org
3651 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
3652 S:      Supported
3653 F:      drivers/gpu/drm/exynos/
3654 F:      include/drm/exynos*
3655 F:      include/uapi/drm/exynos*
3656
3657 DRM DRIVERS FOR FREESCALE DCU
3658 M:      Jianwei Wang <jianwei.wang.chn@gmail.com>
3659 M:      Alison Wang <alison.wang@freescale.com>
3660 L:      dri-devel@lists.freedesktop.org
3661 S:      Supported
3662 F:      drivers/gpu/drm/fsl-dcu/
3663 F:      Documentation/devicetree/bindings/video/fsl,dcu.txt
3664 F:      Documentation/devicetree/bindings/panel/nec,nl4827hc19_05b.txt
3665
3666 DRM DRIVERS FOR FREESCALE IMX
3667 M:      Philipp Zabel <p.zabel@pengutronix.de>
3668 L:      dri-devel@lists.freedesktop.org
3669 S:      Maintained
3670 F:      drivers/gpu/drm/imx/
3671 F:      Documentation/devicetree/bindings/drm/imx/
3672
3673 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
3674 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
3675 L:      dri-devel@lists.freedesktop.org
3676 T:      git git://github.com/patjak/drm-gma500
3677 S:      Maintained
3678 F:      drivers/gpu/drm/gma500
3679 F:      include/drm/gma500*
3680
3681 DRM DRIVERS FOR NVIDIA TEGRA
3682 M:      Thierry Reding <thierry.reding@gmail.com>
3683 M:      Terje Bergström <tbergstrom@nvidia.com>
3684 L:      dri-devel@lists.freedesktop.org
3685 L:      linux-tegra@vger.kernel.org
3686 T:      git git://anongit.freedesktop.org/tegra/linux.git
3687 S:      Supported
3688 F:      drivers/gpu/drm/tegra/
3689 F:      drivers/gpu/host1x/
3690 F:      include/linux/host1x.h
3691 F:      include/uapi/drm/tegra_drm.h
3692 F:      Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt
3693
3694 DRM DRIVERS FOR RENESAS
3695 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
3696 L:      dri-devel@lists.freedesktop.org
3697 L:      linux-sh@vger.kernel.org
3698 T:      git git://people.freedesktop.org/~airlied/linux
3699 S:      Supported
3700 F:      drivers/gpu/drm/rcar-du/
3701 F:      drivers/gpu/drm/shmobile/
3702 F:      include/linux/platform_data/shmob_drm.h
3703
3704 DRM DRIVERS FOR ROCKCHIP
3705 M:      Mark Yao <mark.yao@rock-chips.com>
3706 L:      dri-devel@lists.freedesktop.org
3707 S:      Maintained
3708 F:      drivers/gpu/drm/rockchip/
3709 F:      Documentation/devicetree/bindings/video/rockchip*
3710
3711 DRM DRIVERS FOR STI
3712 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
3713 M:      Vincent Abriou <vincent.abriou@st.com>
3714 L:      dri-devel@lists.freedesktop.org
3715 T:      git http://git.linaro.org/people/benjamin.gaignard/kernel.git
3716 S:      Maintained
3717 F:      drivers/gpu/drm/sti
3718 F:      Documentation/devicetree/bindings/gpu/st,stih4xx.txt
3719
3720 DSBR100 USB FM RADIO DRIVER
3721 M:      Alexey Klimov <klimov.linux@gmail.com>
3722 L:      linux-media@vger.kernel.org
3723 T:      git git://linuxtv.org/media_tree.git
3724 S:      Maintained
3725 F:      drivers/media/radio/dsbr100.c
3726
3727 DSCC4 DRIVER
3728 M:      Francois Romieu <romieu@fr.zoreil.com>
3729 L:      netdev@vger.kernel.org
3730 S:      Maintained
3731 F:      drivers/net/wan/dscc4.c
3732
3733 DT3155 MEDIA DRIVER
3734 M:      Hans Verkuil <hverkuil@xs4all.nl>
3735 L:      linux-media@vger.kernel.org
3736 T:      git git://linuxtv.org/media_tree.git
3737 W:      http://linuxtv.org
3738 S:      Odd Fixes
3739 F:      drivers/media/pci/dt3155/
3740
3741 DVB_USB_AF9015 MEDIA DRIVER
3742 M:      Antti Palosaari <crope@iki.fi>
3743 L:      linux-media@vger.kernel.org
3744 W:      http://linuxtv.org/
3745 W:      http://palosaari.fi/linux/
3746 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3747 T:      git git://linuxtv.org/anttip/media_tree.git
3748 S:      Maintained
3749 F:      drivers/media/usb/dvb-usb-v2/af9015*
3750
3751 DVB_USB_AF9035 MEDIA DRIVER
3752 M:      Antti Palosaari <crope@iki.fi>
3753 L:      linux-media@vger.kernel.org
3754 W:      http://linuxtv.org/
3755 W:      http://palosaari.fi/linux/
3756 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3757 T:      git git://linuxtv.org/anttip/media_tree.git
3758 S:      Maintained
3759 F:      drivers/media/usb/dvb-usb-v2/af9035*
3760
3761 DVB_USB_ANYSEE MEDIA DRIVER
3762 M:      Antti Palosaari <crope@iki.fi>
3763 L:      linux-media@vger.kernel.org
3764 W:      http://linuxtv.org/
3765 W:      http://palosaari.fi/linux/
3766 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3767 T:      git git://linuxtv.org/anttip/media_tree.git
3768 S:      Maintained
3769 F:      drivers/media/usb/dvb-usb-v2/anysee*
3770
3771 DVB_USB_AU6610 MEDIA DRIVER
3772 M:      Antti Palosaari <crope@iki.fi>
3773 L:      linux-media@vger.kernel.org
3774 W:      http://linuxtv.org/
3775 W:      http://palosaari.fi/linux/
3776 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3777 T:      git git://linuxtv.org/anttip/media_tree.git
3778 S:      Maintained
3779 F:      drivers/media/usb/dvb-usb-v2/au6610*
3780
3781 DVB_USB_CE6230 MEDIA DRIVER
3782 M:      Antti Palosaari <crope@iki.fi>
3783 L:      linux-media@vger.kernel.org
3784 W:      http://linuxtv.org/
3785 W:      http://palosaari.fi/linux/
3786 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3787 T:      git git://linuxtv.org/anttip/media_tree.git
3788 S:      Maintained
3789 F:      drivers/media/usb/dvb-usb-v2/ce6230*
3790
3791 DVB_USB_CXUSB MEDIA DRIVER
3792 M:      Michael Krufky <mkrufky@linuxtv.org>
3793 L:      linux-media@vger.kernel.org
3794 W:      http://linuxtv.org/
3795 W:      http://github.com/mkrufky
3796 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3797 T:      git git://linuxtv.org/media_tree.git
3798 S:      Maintained
3799 F:      drivers/media/usb/dvb-usb/cxusb*
3800
3801 DVB_USB_EC168 MEDIA DRIVER
3802 M:      Antti Palosaari <crope@iki.fi>
3803 L:      linux-media@vger.kernel.org
3804 W:      http://linuxtv.org/
3805 W:      http://palosaari.fi/linux/
3806 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3807 T:      git git://linuxtv.org/anttip/media_tree.git
3808 S:      Maintained
3809 F:      drivers/media/usb/dvb-usb-v2/ec168*
3810
3811 DVB_USB_GL861 MEDIA DRIVER
3812 M:      Antti Palosaari <crope@iki.fi>
3813 L:      linux-media@vger.kernel.org
3814 W:      http://linuxtv.org/
3815 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3816 T:      git git://linuxtv.org/anttip/media_tree.git
3817 S:      Maintained
3818 F:      drivers/media/usb/dvb-usb-v2/gl861*
3819
3820 DVB_USB_MXL111SF MEDIA DRIVER
3821 M:      Michael Krufky <mkrufky@linuxtv.org>
3822 L:      linux-media@vger.kernel.org
3823 W:      http://linuxtv.org/
3824 W:      http://github.com/mkrufky
3825 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3826 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
3827 S:      Maintained
3828 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
3829
3830 DVB_USB_RTL28XXU MEDIA DRIVER
3831 M:      Antti Palosaari <crope@iki.fi>
3832 L:      linux-media@vger.kernel.org
3833 W:      http://linuxtv.org/
3834 W:      http://palosaari.fi/linux/
3835 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3836 T:      git git://linuxtv.org/anttip/media_tree.git
3837 S:      Maintained
3838 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
3839
3840 DVB_USB_V2 MEDIA DRIVER
3841 M:      Antti Palosaari <crope@iki.fi>
3842 L:      linux-media@vger.kernel.org
3843 W:      http://linuxtv.org/
3844 W:      http://palosaari.fi/linux/
3845 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3846 T:      git git://linuxtv.org/anttip/media_tree.git
3847 S:      Maintained
3848 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
3849 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
3850
3851 DYNAMIC DEBUG
3852 M:      Jason Baron <jbaron@akamai.com>
3853 S:      Maintained
3854 F:      lib/dynamic_debug.c
3855 F:      include/linux/dynamic_debug.h
3856
3857 DZ DECSTATION DZ11 SERIAL DRIVER
3858 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3859 S:      Maintained
3860 F:      drivers/tty/serial/dz.*
3861
3862 E3X0 POWER BUTTON DRIVER
3863 M:      Moritz Fischer <moritz.fischer@ettus.com>
3864 L:      usrp-users@lists.ettus.com
3865 W:      http://www.ettus.com
3866 S:      Supported
3867 F:      drivers/input/misc/e3x0-button.c
3868 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
3869
3870 E4000 MEDIA DRIVER
3871 M:      Antti Palosaari <crope@iki.fi>
3872 L:      linux-media@vger.kernel.org
3873 W:      http://linuxtv.org/
3874 W:      http://palosaari.fi/linux/
3875 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3876 T:      git git://linuxtv.org/anttip/media_tree.git
3877 S:      Maintained
3878 F:      drivers/media/tuners/e4000*
3879
3880 EATA ISA/EISA/PCI SCSI DRIVER
3881 M:      Dario Ballabio <ballabio_dario@emc.com>
3882 L:      linux-scsi@vger.kernel.org
3883 S:      Maintained
3884 F:      drivers/scsi/eata.c
3885
3886 EC100 MEDIA DRIVER
3887 M:      Antti Palosaari <crope@iki.fi>
3888 L:      linux-media@vger.kernel.org
3889 W:      http://linuxtv.org/
3890 W:      http://palosaari.fi/linux/
3891 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3892 T:      git git://linuxtv.org/anttip/media_tree.git
3893 S:      Maintained
3894 F:      drivers/media/dvb-frontends/ec100*
3895
3896 ECRYPT FILE SYSTEM
3897 M:      Tyler Hicks <tyhicks@canonical.com>
3898 L:      ecryptfs@vger.kernel.org
3899 W:      http://ecryptfs.org
3900 W:      https://launchpad.net/ecryptfs
3901 S:      Supported
3902 F:      Documentation/filesystems/ecryptfs.txt
3903 F:      fs/ecryptfs/
3904
3905 EDAC-CORE
3906 M:      Doug Thompson <dougthompson@xmission.com>
3907 M:      Borislav Petkov <bp@alien8.de>
3908 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3909 L:      linux-edac@vger.kernel.org
3910 W:      bluesmoke.sourceforge.net
3911 T:      git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git#for-next
3912 T:      git://git.kernel.org/pub/linux/kernel/git/mchehab/linux-edac.git#linux_next
3913 S:      Supported
3914 F:      Documentation/edac.txt
3915 F:      drivers/edac/
3916 F:      include/linux/edac.h
3917
3918 EDAC-AMD64
3919 M:      Doug Thompson <dougthompson@xmission.com>
3920 M:      Borislav Petkov <bp@alien8.de>
3921 L:      linux-edac@vger.kernel.org
3922 W:      bluesmoke.sourceforge.net
3923 S:      Maintained
3924 F:      drivers/edac/amd64_edac*
3925
3926 EDAC-CALXEDA
3927 M:      Doug Thompson <dougthompson@xmission.com>
3928 M:      Robert Richter <rric@kernel.org>
3929 L:      linux-edac@vger.kernel.org
3930 W:      bluesmoke.sourceforge.net
3931 S:      Maintained
3932 F:      drivers/edac/highbank*
3933
3934 EDAC-CAVIUM
3935 M:      Ralf Baechle <ralf@linux-mips.org>
3936 M:      David Daney <david.daney@cavium.com>
3937 L:      linux-edac@vger.kernel.org
3938 L:      linux-mips@linux-mips.org
3939 W:      bluesmoke.sourceforge.net
3940 S:      Supported
3941 F:      drivers/edac/octeon_edac*
3942
3943 EDAC-E752X
3944 M:      Mark Gross <mark.gross@intel.com>
3945 M:      Doug Thompson <dougthompson@xmission.com>
3946 L:      linux-edac@vger.kernel.org
3947 W:      bluesmoke.sourceforge.net
3948 S:      Maintained
3949 F:      drivers/edac/e752x_edac.c
3950
3951 EDAC-E7XXX
3952 M:      Doug Thompson <dougthompson@xmission.com>
3953 L:      linux-edac@vger.kernel.org
3954 W:      bluesmoke.sourceforge.net
3955 S:      Maintained
3956 F:      drivers/edac/e7xxx_edac.c
3957
3958 EDAC-GHES
3959 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3960 L:      linux-edac@vger.kernel.org
3961 W:      bluesmoke.sourceforge.net
3962 S:      Maintained
3963 F:      drivers/edac/ghes_edac.c
3964
3965 EDAC-I82443BXGX
3966 M:      Tim Small <tim@buttersideup.com>
3967 L:      linux-edac@vger.kernel.org
3968 W:      bluesmoke.sourceforge.net
3969 S:      Maintained
3970 F:      drivers/edac/i82443bxgx_edac.c
3971
3972 EDAC-I3000
3973 M:      Jason Uhlenkott <juhlenko@akamai.com>
3974 L:      linux-edac@vger.kernel.org
3975 W:      bluesmoke.sourceforge.net
3976 S:      Maintained
3977 F:      drivers/edac/i3000_edac.c
3978
3979 EDAC-I5000
3980 M:      Doug Thompson <dougthompson@xmission.com>
3981 L:      linux-edac@vger.kernel.org
3982 W:      bluesmoke.sourceforge.net
3983 S:      Maintained
3984 F:      drivers/edac/i5000_edac.c
3985
3986 EDAC-I5400
3987 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3988 L:      linux-edac@vger.kernel.org
3989 W:      bluesmoke.sourceforge.net
3990 S:      Maintained
3991 F:      drivers/edac/i5400_edac.c
3992
3993 EDAC-I7300
3994 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3995 L:      linux-edac@vger.kernel.org
3996 W:      bluesmoke.sourceforge.net
3997 S:      Maintained
3998 F:      drivers/edac/i7300_edac.c
3999
4000 EDAC-I7CORE
4001 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4002 L:      linux-edac@vger.kernel.org
4003 W:      bluesmoke.sourceforge.net
4004 S:      Maintained
4005 F:      drivers/edac/i7core_edac.c
4006
4007 EDAC-I82975X
4008 M:      Ranganathan Desikan <ravi@jetztechnologies.com>
4009 M:      "Arvind R." <arvino55@gmail.com>
4010 L:      linux-edac@vger.kernel.org
4011 W:      bluesmoke.sourceforge.net
4012 S:      Maintained
4013 F:      drivers/edac/i82975x_edac.c
4014
4015 EDAC-IE31200
4016 M:      Jason Baron <jbaron@akamai.com>
4017 L:      linux-edac@vger.kernel.org
4018 W:      bluesmoke.sourceforge.net
4019 S:      Maintained
4020 F:      drivers/edac/ie31200_edac.c
4021
4022 EDAC-MPC85XX
4023 M:      Johannes Thumshirn <morbidrsa@gmail.com>
4024 L:      linux-edac@vger.kernel.org
4025 W:      bluesmoke.sourceforge.net
4026 S:      Maintained
4027 F:      drivers/edac/mpc85xx_edac.[ch]
4028
4029 EDAC-PASEMI
4030 M:      Egor Martovetsky <egor@pasemi.com>
4031 L:      linux-edac@vger.kernel.org
4032 W:      bluesmoke.sourceforge.net
4033 S:      Maintained
4034 F:      drivers/edac/pasemi_edac.c
4035
4036 EDAC-R82600
4037 M:      Tim Small <tim@buttersideup.com>
4038 L:      linux-edac@vger.kernel.org
4039 W:      bluesmoke.sourceforge.net
4040 S:      Maintained
4041 F:      drivers/edac/r82600_edac.c
4042
4043 EDAC-SBRIDGE
4044 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4045 L:      linux-edac@vger.kernel.org
4046 W:      bluesmoke.sourceforge.net
4047 S:      Maintained
4048 F:      drivers/edac/sb_edac.c
4049
4050 EDAC-XGENE
4051 APPLIED MICRO (APM) X-GENE SOC EDAC
4052 M:     Loc Ho <lho@apm.com>
4053 S:     Supported
4054 F:     drivers/edac/xgene_edac.c
4055 F:     Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
4056
4057 EDIROL UA-101/UA-1000 DRIVER
4058 M:      Clemens Ladisch <clemens@ladisch.de>
4059 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4060 T:      git git://git.alsa-project.org/alsa-kernel.git
4061 S:      Maintained
4062 F:      sound/usb/misc/ua101.c
4063
4064 EXTENSIBLE FIRMWARE INTERFACE (EFI)
4065 M:      Matt Fleming <matt@codeblueprint.co.uk>
4066 L:      linux-efi@vger.kernel.org
4067 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4068 S:      Maintained
4069 F:      Documentation/efi-stub.txt
4070 F:      arch/ia64/kernel/efi.c
4071 F:      arch/x86/boot/compressed/eboot.[ch]
4072 F:      arch/x86/include/asm/efi.h
4073 F:      arch/x86/platform/efi/*
4074 F:      drivers/firmware/efi/*
4075 F:      include/linux/efi*.h
4076
4077 EFI VARIABLE FILESYSTEM
4078 M:      Matthew Garrett <matthew.garrett@nebula.com>
4079 M:      Jeremy Kerr <jk@ozlabs.org>
4080 M:      Matt Fleming <matt@codeblueprint.co.uk>
4081 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4082 L:      linux-efi@vger.kernel.org
4083 S:      Maintained
4084 F:      fs/efivarfs/
4085
4086 EFIFB FRAMEBUFFER DRIVER
4087 L:      linux-fbdev@vger.kernel.org
4088 M:      Peter Jones <pjones@redhat.com>
4089 S:      Maintained
4090 F:      drivers/video/fbdev/efifb.c
4091
4092 EFS FILESYSTEM
4093 W:      http://aeschi.ch.eu.org/efs/
4094 S:      Orphan
4095 F:      fs/efs/
4096
4097 EHCA (IBM GX bus InfiniBand adapter) DRIVER
4098 M:      Hoang-Nam Nguyen <hnguyen@de.ibm.com>
4099 M:      Christoph Raisch <raisch@de.ibm.com>
4100 L:      linux-rdma@vger.kernel.org
4101 S:      Supported
4102 F:      drivers/infiniband/hw/ehca/
4103
4104 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
4105 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
4106 L:      netdev@vger.kernel.org
4107 S:      Maintained
4108 F:      drivers/net/ethernet/ibm/ehea/
4109
4110 EM28XX VIDEO4LINUX DRIVER
4111 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4112 L:      linux-media@vger.kernel.org
4113 W:      http://linuxtv.org
4114 T:      git git://linuxtv.org/media_tree.git
4115 S:      Maintained
4116 F:      drivers/media/usb/em28xx/
4117
4118 EMBEDDED LINUX
4119 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
4120 M:      Matt Mackall <mpm@selenic.com>
4121 M:      David Woodhouse <dwmw2@infradead.org>
4122 L:      linux-embedded@vger.kernel.org
4123 S:      Maintained
4124
4125 EMULEX/AVAGO LPFC FC/FCOE SCSI DRIVER
4126 M:      James Smart <james.smart@avagotech.com>
4127 M:      Dick Kennedy <dick.kennedy@avagotech.com>
4128 L:      linux-scsi@vger.kernel.org
4129 W:      http://www.avagotech.com
4130 S:      Supported
4131 F:      drivers/scsi/lpfc/
4132
4133 ENE CB710 FLASH CARD READER DRIVER
4134 M:      MichaÅ‚ MirosÅ‚aw <mirq-linux@rere.qmqm.pl>
4135 S:      Maintained
4136 F:      drivers/misc/cb710/
4137 F:      drivers/mmc/host/cb710-mmc.*
4138 F:      include/linux/cb710.h
4139
4140 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
4141 M:      Maxim Levitsky <maximlevitsky@gmail.com>
4142 S:      Maintained
4143 F:      drivers/media/rc/ene_ir.*
4144
4145 ENHANCED ERROR HANDLING (EEH)
4146 M:      Gavin Shan <shangw@linux.vnet.ibm.com>
4147 L:      linuxppc-dev@lists.ozlabs.org
4148 S:      Supported
4149 F:      Documentation/powerpc/eeh-pci-error-recovery.txt
4150 F:      arch/powerpc/kernel/eeh*.c
4151
4152 EPSON S1D13XXX FRAMEBUFFER DRIVER
4153 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
4154 S:      Maintained
4155 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
4156 F:      drivers/video/fbdev/s1d13xxxfb.c
4157 F:      include/video/s1d13xxxfb.h
4158
4159 ET131X NETWORK DRIVER
4160 M:      Mark Einon <mark.einon@gmail.com>
4161 S:      Odd Fixes
4162 F:      drivers/net/ethernet/agere/
4163
4164 ETHERNET BRIDGE
4165 M:      Stephen Hemminger <stephen@networkplumber.org>
4166 L:      bridge@lists.linux-foundation.org
4167 L:      netdev@vger.kernel.org
4168 W:      http://www.linuxfoundation.org/en/Net:Bridge
4169 S:      Maintained
4170 F:      include/linux/netfilter_bridge/
4171 F:      net/bridge/
4172
4173 ETHERNET PHY LIBRARY
4174 M:      Florian Fainelli <f.fainelli@gmail.com>
4175 L:      netdev@vger.kernel.org
4176 S:      Maintained
4177 F:      include/linux/phy.h
4178 F:      include/linux/phy_fixed.h
4179 F:      drivers/net/phy/
4180 F:      Documentation/networking/phy.txt
4181 F:      drivers/of/of_mdio.c
4182 F:      drivers/of/of_net.c
4183
4184 EXT2 FILE SYSTEM
4185 M:      Jan Kara <jack@suse.com>
4186 L:      linux-ext4@vger.kernel.org
4187 S:      Maintained
4188 F:      Documentation/filesystems/ext2.txt
4189 F:      fs/ext2/
4190 F:      include/linux/ext2*
4191
4192 EXT4 FILE SYSTEM
4193 M:      "Theodore Ts'o" <tytso@mit.edu>
4194 M:      Andreas Dilger <adilger.kernel@dilger.ca>
4195 L:      linux-ext4@vger.kernel.org
4196 W:      http://ext4.wiki.kernel.org
4197 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
4198 S:      Maintained
4199 F:      Documentation/filesystems/ext4.txt
4200 F:      fs/ext4/
4201
4202 Extended Verification Module (EVM)
4203 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
4204 L:      linux-ima-devel@lists.sourceforge.net
4205 L:      linux-security-module@vger.kernel.org
4206 S:      Supported
4207 F:      security/integrity/evm/
4208
4209 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
4210 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
4211 M:      Chanwoo Choi <cw00.choi@samsung.com>
4212 L:      linux-kernel@vger.kernel.org
4213 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
4214 S:      Maintained
4215 F:      drivers/extcon/
4216 F:      Documentation/extcon/
4217
4218 EXYNOS DP DRIVER
4219 M:      Jingoo Han <jingoohan1@gmail.com>
4220 L:      dri-devel@lists.freedesktop.org
4221 S:      Maintained
4222 F:      drivers/gpu/drm/exynos/exynos_dp*
4223
4224 EXYNOS MIPI DISPLAY DRIVERS
4225 M:      Inki Dae <inki.dae@samsung.com>
4226 M:      Donghwa Lee <dh09.lee@samsung.com>
4227 M:      Kyungmin Park <kyungmin.park@samsung.com>
4228 L:      linux-fbdev@vger.kernel.org
4229 S:      Maintained
4230 F:      drivers/video/fbdev/exynos/exynos_mipi*
4231 F:      include/video/exynos_mipi*
4232
4233 F71805F HARDWARE MONITORING DRIVER
4234 M:      Jean Delvare <jdelvare@suse.com>
4235 L:      lm-sensors@lm-sensors.org
4236 S:      Maintained
4237 F:      Documentation/hwmon/f71805f
4238 F:      drivers/hwmon/f71805f.c
4239
4240 FC0011 TUNER DRIVER
4241 M:      Michael Buesch <m@bues.ch>
4242 L:      linux-media@vger.kernel.org
4243 S:      Maintained
4244 F:      drivers/media/tuners/fc0011.h
4245 F:      drivers/media/tuners/fc0011.c
4246
4247 FC2580 MEDIA DRIVER
4248 M:      Antti Palosaari <crope@iki.fi>
4249 L:      linux-media@vger.kernel.org
4250 W:      http://linuxtv.org/
4251 W:      http://palosaari.fi/linux/
4252 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4253 T:      git git://linuxtv.org/anttip/media_tree.git
4254 S:      Maintained
4255 F:      drivers/media/tuners/fc2580*
4256
4257 FANOTIFY
4258 M:      Eric Paris <eparis@redhat.com>
4259 S:      Maintained
4260 F:      fs/notify/fanotify/
4261 F:      include/linux/fanotify.h
4262 F:      include/uapi/linux/fanotify.h
4263
4264 FARSYNC SYNCHRONOUS DRIVER
4265 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
4266 W:      http://www.farsite.co.uk/
4267 S:      Supported
4268 F:      drivers/net/wan/farsync.*
4269
4270 FAULT INJECTION SUPPORT
4271 M:      Akinobu Mita <akinobu.mita@gmail.com>
4272 S:      Supported
4273 F:      Documentation/fault-injection/
4274 F:      lib/fault-inject.c
4275
4276 FBTFT Framebuffer drivers
4277 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
4278 M:      Noralf Trønnes <noralf@tronnes.org>
4279 S:      Maintained
4280 F:      drivers/staging/fbtft/
4281
4282 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
4283 M:      Vasu Dev <vasu.dev@intel.com>
4284 L:      fcoe-devel@open-fcoe.org
4285 W:      www.Open-FCoE.org
4286 S:      Supported
4287 F:      drivers/scsi/libfc/
4288 F:      drivers/scsi/fcoe/
4289 F:      include/scsi/fc/
4290 F:      include/scsi/libfc.h
4291 F:      include/scsi/libfcoe.h
4292 F:      include/uapi/scsi/fc/
4293
4294 FILE LOCKING (flock() and fcntl()/lockf())
4295 M:      Jeff Layton <jlayton@poochiereds.net>
4296 M:      "J. Bruce Fields" <bfields@fieldses.org>
4297 L:      linux-fsdevel@vger.kernel.org
4298 S:      Maintained
4299 F:      include/linux/fcntl.h
4300 F:      include/linux/fs.h
4301 F:      include/uapi/linux/fcntl.h
4302 F:      include/uapi/linux/fs.h
4303 F:      fs/fcntl.c
4304 F:      fs/locks.c
4305
4306 FILESYSTEMS (VFS and infrastructure)
4307 M:      Alexander Viro <viro@zeniv.linux.org.uk>
4308 L:      linux-fsdevel@vger.kernel.org
4309 S:      Maintained
4310 F:      fs/*
4311
4312 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
4313 M:      Riku Voipio <riku.voipio@iki.fi>
4314 L:      lm-sensors@lm-sensors.org
4315 S:      Maintained
4316 F:      drivers/hwmon/f75375s.c
4317 F:      include/linux/f75375s.h
4318
4319 FIREWIRE AUDIO DRIVERS
4320 M:      Clemens Ladisch <clemens@ladisch.de>
4321 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4322 T:      git git://git.alsa-project.org/alsa-kernel.git
4323 S:      Maintained
4324 F:      sound/firewire/
4325
4326 FIREWIRE MEDIA DRIVERS (firedtv)
4327 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4328 L:      linux-media@vger.kernel.org
4329 L:      linux1394-devel@lists.sourceforge.net
4330 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
4331 S:      Maintained
4332 F:      drivers/media/firewire/
4333
4334 FIREWIRE SBP-2 TARGET
4335 M:      Chris Boot <bootc@bootc.net>
4336 L:      linux-scsi@vger.kernel.org
4337 L:      target-devel@vger.kernel.org
4338 L:      linux1394-devel@lists.sourceforge.net
4339 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
4340 S:      Maintained
4341 F:      drivers/target/sbp/
4342
4343 FIREWIRE SUBSYSTEM
4344 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4345 L:      linux1394-devel@lists.sourceforge.net
4346 W:      http://ieee1394.wiki.kernel.org/
4347 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
4348 S:      Maintained
4349 F:      drivers/firewire/
4350 F:      include/linux/firewire.h
4351 F:      include/uapi/linux/firewire*.h
4352 F:      tools/firewire/
4353
4354 FIRMWARE LOADER (request_firmware)
4355 M:      Ming Lei <ming.lei@canonical.com>
4356 L:      linux-kernel@vger.kernel.org
4357 S:      Maintained
4358 F:      Documentation/firmware_class/
4359 F:      drivers/base/firmware*.c
4360 F:      include/linux/firmware.h
4361
4362 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
4363 M:      Joshua Morris <josh.h.morris@us.ibm.com>
4364 M:      Philip Kelleher <pjk1939@linux.vnet.ibm.com>
4365 S:      Maintained
4366 F:      drivers/block/rsxx/
4367
4368 FLOPPY DRIVER
4369 M:      Jiri Kosina <jikos@kernel.org>
4370 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
4371 S:      Odd fixes
4372 F:      drivers/block/floppy.c
4373
4374 FMC SUBSYSTEM
4375 M:      Alessandro Rubini <rubini@gnudd.com>
4376 W:      http://www.ohwr.org/projects/fmc-bus
4377 S:      Supported
4378 F:      drivers/fmc/
4379 F:      include/linux/fmc*.h
4380 F:      include/linux/ipmi-fru.h
4381 K:      fmc_d.*register
4382
4383 FPU EMULATOR
4384 M:      Bill Metzenthen <billm@melbpc.org.au>
4385 W:      http://floatingpoint.sourceforge.net/emulator/index.html
4386 S:      Maintained
4387 F:      arch/x86/math-emu/
4388
4389 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
4390 L:      netdev@vger.kernel.org
4391 S:      Orphan
4392 F:      drivers/net/wan/dlci.c
4393 F:      drivers/net/wan/sdla.c
4394
4395 FRAMEBUFFER LAYER
4396 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
4397 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
4398 L:      linux-fbdev@vger.kernel.org
4399 W:      http://linux-fbdev.sourceforge.net/
4400 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
4401 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git
4402 S:      Maintained
4403 F:      Documentation/fb/
4404 F:      Documentation/devicetree/bindings/fb/
4405 F:      drivers/video/
4406 F:      include/video/
4407 F:      include/linux/fb.h
4408 F:      include/uapi/video/
4409 F:      include/uapi/linux/fb.h
4410
4411 FREESCALE DIU FRAMEBUFFER DRIVER
4412 M:      Timur Tabi <timur@tabi.org>
4413 L:      linux-fbdev@vger.kernel.org
4414 S:      Maintained
4415 F:      drivers/video/fbdev/fsl-diu-fb.*
4416
4417 FREESCALE DMA DRIVER
4418 M:      Li Yang <leoli@freescale.com>
4419 M:      Zhang Wei <zw@zh-kernel.org>
4420 L:      linuxppc-dev@lists.ozlabs.org
4421 S:      Maintained
4422 F:      drivers/dma/fsldma.*
4423
4424 FREESCALE I2C CPM DRIVER
4425 M:      Jochen Friedrich <jochen@scram.de>
4426 L:      linuxppc-dev@lists.ozlabs.org
4427 L:      linux-i2c@vger.kernel.org
4428 S:      Maintained
4429 F:      drivers/i2c/busses/i2c-cpm.c
4430
4431 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
4432 M:      Sascha Hauer <kernel@pengutronix.de>
4433 L:      linux-fbdev@vger.kernel.org
4434 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4435 S:      Maintained
4436 F:      include/linux/platform_data/video-imxfb.h
4437 F:      drivers/video/fbdev/imxfb.c
4438
4439 FREESCALE QUAD SPI DRIVER
4440 M:      Han Xu <han.xu@freescale.com>
4441 L:      linux-mtd@lists.infradead.org
4442 S:      Maintained
4443 F:      drivers/mtd/spi-nor/fsl-quadspi.c
4444
4445 FREESCALE SOC FS_ENET DRIVER
4446 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
4447 M:      Vitaly Bordug <vbordug@ru.mvista.com>
4448 L:      linuxppc-dev@lists.ozlabs.org
4449 L:      netdev@vger.kernel.org
4450 S:      Maintained
4451 F:      drivers/net/ethernet/freescale/fs_enet/
4452 F:      include/linux/fs_enet_pd.h
4453
4454 FREESCALE QUICC ENGINE LIBRARY
4455 L:      linuxppc-dev@lists.ozlabs.org
4456 S:      Orphan
4457 F:      arch/powerpc/sysdev/qe_lib/
4458 F:      arch/powerpc/include/asm/*qe.h
4459
4460 FREESCALE USB PERIPHERAL DRIVERS
4461 M:      Li Yang <leoli@freescale.com>
4462 L:      linux-usb@vger.kernel.org
4463 L:      linuxppc-dev@lists.ozlabs.org
4464 S:      Maintained
4465 F:      drivers/usb/gadget/udc/fsl*
4466
4467 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
4468 M:      Li Yang <leoli@freescale.com>
4469 L:      netdev@vger.kernel.org
4470 L:      linuxppc-dev@lists.ozlabs.org
4471 S:      Maintained
4472 F:      drivers/net/ethernet/freescale/ucc_geth*
4473
4474 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
4475 M:      Claudiu Manoil <claudiu.manoil@freescale.com>
4476 L:      netdev@vger.kernel.org
4477 S:      Maintained
4478 F:      drivers/net/ethernet/freescale/gianfar*
4479 X:      drivers/net/ethernet/freescale/gianfar_ptp.c
4480 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
4481
4482 FREESCALE QUICC ENGINE UCC UART DRIVER
4483 M:      Timur Tabi <timur@tabi.org>
4484 L:      linuxppc-dev@lists.ozlabs.org
4485 S:      Maintained
4486 F:      drivers/tty/serial/ucc_uart.c
4487
4488 FREESCALE SOC SOUND DRIVERS
4489 M:      Timur Tabi <timur@tabi.org>
4490 M:      Nicolin Chen <nicoleotsuka@gmail.com>
4491 M:      Xiubo Li <Xiubo.Lee@gmail.com>
4492 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4493 L:      linuxppc-dev@lists.ozlabs.org
4494 S:      Maintained
4495 F:      sound/soc/fsl/fsl*
4496 F:      sound/soc/fsl/imx*
4497 F:      sound/soc/fsl/mpc8610_hpcd.c
4498
4499 FREESCALE QORIQ MANAGEMENT COMPLEX DRIVER
4500 M:      "J. German Rivera" <German.Rivera@freescale.com>
4501 L:      linux-kernel@vger.kernel.org
4502 S:      Maintained
4503 F:      drivers/staging/fsl-mc/
4504
4505 FREEVXFS FILESYSTEM
4506 M:      Christoph Hellwig <hch@infradead.org>
4507 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
4508 S:      Maintained
4509 F:      fs/freevxfs/
4510
4511 FREEZER
4512 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4513 M:      Pavel Machek <pavel@ucw.cz>
4514 L:      linux-pm@vger.kernel.org
4515 S:      Supported
4516 F:      Documentation/power/freezing-of-tasks.txt
4517 F:      include/linux/freezer.h
4518 F:      kernel/freezer.c
4519
4520 FRONTSWAP API
4521 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4522 L:      linux-kernel@vger.kernel.org
4523 S:      Maintained
4524 F:      mm/frontswap.c
4525 F:      include/linux/frontswap.h
4526
4527 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
4528 M:      David Howells <dhowells@redhat.com>
4529 L:      linux-cachefs@redhat.com
4530 S:      Supported
4531 F:      Documentation/filesystems/caching/
4532 F:      fs/fscache/
4533 F:      include/linux/fscache*.h
4534
4535 F2FS FILE SYSTEM
4536 M:      Jaegeuk Kim <jaegeuk@kernel.org>
4537 M:      Changman Lee <cm224.lee@samsung.com>
4538 R:      Chao Yu <chao2.yu@samsung.com>
4539 L:      linux-f2fs-devel@lists.sourceforge.net
4540 W:      http://en.wikipedia.org/wiki/F2FS
4541 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
4542 S:      Maintained
4543 F:      Documentation/filesystems/f2fs.txt
4544 F:      Documentation/ABI/testing/sysfs-fs-f2fs
4545 F:      fs/f2fs/
4546 F:      include/linux/f2fs_fs.h
4547 F:      include/trace/events/f2fs.h
4548
4549 FUJITSU FR-V (FRV) PORT
4550 M:      David Howells <dhowells@redhat.com>
4551 S:      Maintained
4552 F:      arch/frv/
4553
4554 FUJITSU LAPTOP EXTRAS
4555 M:      Jonathan Woithe <jwoithe@just42.net>
4556 L:      platform-driver-x86@vger.kernel.org
4557 S:      Maintained
4558 F:      drivers/platform/x86/fujitsu-laptop.c
4559
4560 FUJITSU M-5MO LS CAMERA ISP DRIVER
4561 M:      Kyungmin Park <kyungmin.park@samsung.com>
4562 M:      Heungjun Kim <riverful.kim@samsung.com>
4563 L:      linux-media@vger.kernel.org
4564 S:      Maintained
4565 F:      drivers/media/i2c/m5mols/
4566 F:      include/media/m5mols.h
4567
4568 FUJITSU TABLET EXTRAS
4569 M:      Robert Gerlach <khnz@gmx.de>
4570 L:      platform-driver-x86@vger.kernel.org
4571 S:      Maintained
4572 F:      drivers/platform/x86/fujitsu-tablet.c
4573
4574 FUSE: FILESYSTEM IN USERSPACE
4575 M:      Miklos Szeredi <miklos@szeredi.hu>
4576 L:      fuse-devel@lists.sourceforge.net
4577 W:      http://fuse.sourceforge.net/
4578 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
4579 S:      Maintained
4580 F:      fs/fuse/
4581 F:      include/uapi/linux/fuse.h
4582 F:      Documentation/filesystems/fuse.txt
4583
4584 FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
4585 M:      Rik Faith <faith@cs.unc.edu>
4586 L:      linux-scsi@vger.kernel.org
4587 S:      Odd Fixes (e.g., new signatures)
4588 F:      drivers/scsi/fdomain.*
4589
4590 GCOV BASED KERNEL PROFILING
4591 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
4592 S:      Maintained
4593 F:      kernel/gcov/
4594 F:      Documentation/gcov.txt
4595
4596 GDT SCSI DISK ARRAY CONTROLLER DRIVER
4597 M:      Achim Leubner <achim_leubner@adaptec.com>
4598 L:      linux-scsi@vger.kernel.org
4599 W:      http://www.icp-vortex.com/
4600 S:      Supported
4601 F:      drivers/scsi/gdt*
4602
4603 GDB KERNEL DEBUGGING HELPER SCRIPTS
4604 M:      Jan Kiszka <jan.kiszka@siemens.com>
4605 S:      Supported
4606 F:      scripts/gdb/
4607
4608 GEMTEK FM RADIO RECEIVER DRIVER
4609 M:      Hans Verkuil <hverkuil@xs4all.nl>
4610 L:      linux-media@vger.kernel.org
4611 T:      git git://linuxtv.org/media_tree.git
4612 W:      http://linuxtv.org
4613 S:      Maintained
4614 F:      drivers/media/radio/radio-gemtek*
4615
4616 GENERIC GPIO I2C DRIVER
4617 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
4618 S:      Supported
4619 F:      drivers/i2c/busses/i2c-gpio.c
4620 F:      include/linux/i2c-gpio.h
4621
4622 GENERIC GPIO I2C MULTIPLEXER DRIVER
4623 M:      Peter Korsgaard <peter.korsgaard@barco.com>
4624 L:      linux-i2c@vger.kernel.org
4625 S:      Supported
4626 F:      drivers/i2c/muxes/i2c-mux-gpio.c
4627 F:      include/linux/i2c-mux-gpio.h
4628 F:      Documentation/i2c/muxes/i2c-mux-gpio
4629
4630 GENERIC HDLC (WAN) DRIVERS
4631 M:      Krzysztof Halasa <khc@pm.waw.pl>
4632 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
4633 S:      Maintained
4634 F:      drivers/net/wan/c101.c
4635 F:      drivers/net/wan/hd6457*
4636 F:      drivers/net/wan/hdlc*
4637 F:      drivers/net/wan/n2.c
4638 F:      drivers/net/wan/pc300too.c
4639 F:      drivers/net/wan/pci200syn.c
4640 F:      drivers/net/wan/wanxl*
4641
4642 GENERIC INCLUDE/ASM HEADER FILES
4643 M:      Arnd Bergmann <arnd@arndb.de>
4644 L:      linux-arch@vger.kernel.org
4645 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
4646 S:      Maintained
4647 F:      include/asm-generic/
4648 F:      include/uapi/asm-generic/
4649
4650 GENERIC PHY FRAMEWORK
4651 M:      Kishon Vijay Abraham I <kishon@ti.com>
4652 L:      linux-kernel@vger.kernel.org
4653 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
4654 S:      Supported
4655 F:      drivers/phy/
4656 F:      include/linux/phy/
4657
4658 GENERIC PM DOMAINS
4659 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4660 M:      Kevin Hilman <khilman@kernel.org>
4661 M:      Ulf Hansson <ulf.hansson@linaro.org>
4662 L:      linux-pm@vger.kernel.org
4663 S:      Supported
4664 F:      drivers/base/power/domain*.c
4665 F:      include/linux/pm_domain.h
4666
4667 GENERIC UIO DRIVER FOR PCI DEVICES
4668 M:      "Michael S. Tsirkin" <mst@redhat.com>
4669 L:      kvm@vger.kernel.org
4670 S:      Supported
4671 F:      drivers/uio/uio_pci_generic.c
4672
4673 GET_MAINTAINER SCRIPT
4674 M:      Joe Perches <joe@perches.com>
4675 S:      Maintained
4676 F:      scripts/get_maintainer.pl
4677
4678 GFS2 FILE SYSTEM
4679 M:      Steven Whitehouse <swhiteho@redhat.com>
4680 M:      Bob Peterson <rpeterso@redhat.com>
4681 L:      cluster-devel@redhat.com
4682 W:      http://sources.redhat.com/cluster/
4683 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
4684 S:      Supported
4685 F:      Documentation/filesystems/gfs2*.txt
4686 F:      fs/gfs2/
4687 F:      include/uapi/linux/gfs2_ondisk.h
4688
4689 GIGASET ISDN DRIVERS
4690 M:      Paul Bolle <pebolle@tiscali.nl>
4691 L:      gigaset307x-common@lists.sourceforge.net
4692 W:      http://gigaset307x.sourceforge.net/
4693 S:      Odd Fixes
4694 F:      Documentation/isdn/README.gigaset
4695 F:      drivers/isdn/gigaset/
4696 F:      include/uapi/linux/gigaset_dev.h
4697
4698 GO7007 MPEG CODEC
4699 M:      Hans Verkuil <hans.verkuil@cisco.com>
4700 L:      linux-media@vger.kernel.org
4701 S:      Maintained
4702 F:      drivers/media/usb/go7007/
4703
4704 GOODIX TOUCHSCREEN
4705 M:      Bastien Nocera <hadess@hadess.net>
4706 L:      linux-input@vger.kernel.org
4707 S:      Maintained
4708 F:      drivers/input/touchscreen/goodix.c
4709
4710 GPIO SUBSYSTEM
4711 M:      Linus Walleij <linus.walleij@linaro.org>
4712 M:      Alexandre Courbot <gnurou@gmail.com>
4713 L:      linux-gpio@vger.kernel.org
4714 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
4715 S:      Maintained
4716 F:      Documentation/gpio/
4717 F:      drivers/gpio/
4718 F:      include/linux/gpio/
4719 F:      include/linux/gpio.h
4720 F:      include/asm-generic/gpio.h
4721
4722 GRE DEMULTIPLEXER DRIVER
4723 M:      Dmitry Kozlov <xeb@mail.ru>
4724 L:      netdev@vger.kernel.org
4725 S:      Maintained
4726 F:      net/ipv4/gre_demux.c
4727 F:      net/ipv4/gre_offload.c
4728 F:      include/net/gre.h
4729
4730 GRETH 10/100/1G Ethernet MAC device driver
4731 M:      Kristoffer Glembo <kristoffer@gaisler.com>
4732 L:      netdev@vger.kernel.org
4733 S:      Maintained
4734 F:      drivers/net/ethernet/aeroflex/
4735
4736 GSPCA FINEPIX SUBDRIVER
4737 M:      Frank Zago <frank@zago.net>
4738 L:      linux-media@vger.kernel.org
4739 T:      git git://linuxtv.org/media_tree.git
4740 S:      Maintained
4741 F:      drivers/media/usb/gspca/finepix.c
4742
4743 GSPCA GL860 SUBDRIVER
4744 M:      Olivier Lorin <o.lorin@laposte.net>
4745 L:      linux-media@vger.kernel.org
4746 T:      git git://linuxtv.org/media_tree.git
4747 S:      Maintained
4748 F:      drivers/media/usb/gspca/gl860/
4749
4750 GSPCA M5602 SUBDRIVER
4751 M:      Erik Andren <erik.andren@gmail.com>
4752 L:      linux-media@vger.kernel.org
4753 T:      git git://linuxtv.org/media_tree.git
4754 S:      Maintained
4755 F:      drivers/media/usb/gspca/m5602/
4756
4757 GSPCA PAC207 SONIXB SUBDRIVER
4758 M:      Hans de Goede <hdegoede@redhat.com>
4759 L:      linux-media@vger.kernel.org
4760 T:      git git://linuxtv.org/media_tree.git
4761 S:      Maintained
4762 F:      drivers/media/usb/gspca/pac207.c
4763
4764 GSPCA SN9C20X SUBDRIVER
4765 M:      Brian Johnson <brijohn@gmail.com>
4766 L:      linux-media@vger.kernel.org
4767 T:      git git://linuxtv.org/media_tree.git
4768 S:      Maintained
4769 F:      drivers/media/usb/gspca/sn9c20x.c
4770
4771 GSPCA T613 SUBDRIVER
4772 M:      Leandro Costantino <lcostantino@gmail.com>
4773 L:      linux-media@vger.kernel.org
4774 T:      git git://linuxtv.org/media_tree.git
4775 S:      Maintained
4776 F:      drivers/media/usb/gspca/t613.c
4777
4778 GSPCA USB WEBCAM DRIVER
4779 M:      Hans de Goede <hdegoede@redhat.com>
4780 L:      linux-media@vger.kernel.org
4781 T:      git git://linuxtv.org/media_tree.git
4782 S:      Maintained
4783 F:      drivers/media/usb/gspca/
4784
4785 GUID PARTITION TABLE (GPT)
4786 M:      Davidlohr Bueso <dave@stgolabs.net>
4787 L:      linux-efi@vger.kernel.org
4788 S:      Maintained
4789 F:      block/partitions/efi.*
4790
4791 STK1160 USB VIDEO CAPTURE DRIVER
4792 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
4793 L:      linux-media@vger.kernel.org
4794 T:      git git://linuxtv.org/media_tree.git
4795 S:      Maintained
4796 F:      drivers/media/usb/stk1160/
4797
4798 H8/300 ARCHITECTURE
4799 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
4800 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
4801 W:      http://uclinux-h8.sourceforge.jp
4802 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
4803 S:      Maintained
4804 F:      arch/h8300/
4805 F:      drivers/clocksource/h8300_*.c
4806 F:      drivers/clk/h8300/
4807 F:      drivers/irqchip/irq-renesas-h8*.c
4808
4809 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
4810 M:      Frank Seidel <frank@f-seidel.de>
4811 L:      platform-driver-x86@vger.kernel.org
4812 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
4813 S:      Maintained
4814 F:      drivers/platform/x86/hdaps.c
4815
4816 HDPVR USB VIDEO ENCODER DRIVER
4817 M:      Hans Verkuil <hverkuil@xs4all.nl>
4818 L:      linux-media@vger.kernel.org
4819 T:      git git://linuxtv.org/media_tree.git
4820 W:      http://linuxtv.org
4821 S:      Odd Fixes
4822 F:      drivers/media/usb/hdpvr/
4823
4824 HWPOISON MEMORY FAILURE HANDLING
4825 M:      Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
4826 L:      linux-mm@kvack.org
4827 S:      Maintained
4828 F:      mm/memory-failure.c
4829 F:      mm/hwpoison-inject.c
4830
4831 HYPERVISOR VIRTUAL CONSOLE DRIVER
4832 L:      linuxppc-dev@lists.ozlabs.org
4833 S:      Odd Fixes
4834 F:      drivers/tty/hvc/
4835
4836 HACKRF MEDIA DRIVER
4837 M:      Antti Palosaari <crope@iki.fi>
4838 L:      linux-media@vger.kernel.org
4839 W:      http://linuxtv.org/
4840 W:      http://palosaari.fi/linux/
4841 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4842 T:      git git://linuxtv.org/anttip/media_tree.git
4843 S:      Maintained
4844 F:      drivers/media/usb/hackrf/
4845
4846 HARDWARE MONITORING
4847 M:      Jean Delvare <jdelvare@suse.com>
4848 M:      Guenter Roeck <linux@roeck-us.net>
4849 L:      lm-sensors@lm-sensors.org
4850 W:      http://www.lm-sensors.org/
4851 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/
4852 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
4853 S:      Maintained
4854 F:      Documentation/hwmon/
4855 F:      drivers/hwmon/
4856 F:      include/linux/hwmon*.h
4857
4858 HARDWARE RANDOM NUMBER GENERATOR CORE
4859 M:      Matt Mackall <mpm@selenic.com>
4860 M:      Herbert Xu <herbert@gondor.apana.org.au>
4861 L:      linux-crypto@vger.kernel.org
4862 S:      Odd fixes
4863 F:      Documentation/hw_random.txt
4864 F:      drivers/char/hw_random/
4865 F:      include/linux/hw_random.h
4866
4867 HARDWARE SPINLOCK CORE
4868 M:      Ohad Ben-Cohen <ohad@wizery.com>
4869 S:      Maintained
4870 F:      Documentation/hwspinlock.txt
4871 F:      drivers/hwspinlock/hwspinlock_*
4872 F:      include/linux/hwspinlock.h
4873
4874 HARMONY SOUND DRIVER
4875 L:      linux-parisc@vger.kernel.org
4876 S:      Maintained
4877 F:      sound/parisc/harmony.*
4878
4879 HD29L2 MEDIA DRIVER
4880 M:      Antti Palosaari <crope@iki.fi>
4881 L:      linux-media@vger.kernel.org
4882 W:      http://linuxtv.org/
4883 W:      http://palosaari.fi/linux/
4884 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4885 T:      git git://linuxtv.org/anttip/media_tree.git
4886 S:      Maintained
4887 F:      drivers/media/dvb-frontends/hd29l2*
4888
4889 HEWLETT-PACKARD SMART2 RAID DRIVER
4890 L:      iss_storagedev@hp.com
4891 S:      Orphan
4892 F:      Documentation/blockdev/cpqarray.txt
4893 F:      drivers/block/cpqarray.*
4894
4895 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
4896 M:      Don Brace <don.brace@pmcs.com>
4897 L:      iss_storagedev@hp.com
4898 L:      storagedev@pmcs.com
4899 L:      linux-scsi@vger.kernel.org
4900 S:      Supported
4901 F:      Documentation/scsi/hpsa.txt
4902 F:      drivers/scsi/hpsa*.[ch]
4903 F:      include/linux/cciss*.h
4904 F:      include/uapi/linux/cciss*.h
4905
4906 HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
4907 M:      Don Brace <don.brace@pmcs.com>
4908 L:      iss_storagedev@hp.com
4909 L:      storagedev@pmcs.com
4910 L:      linux-scsi@vger.kernel.org
4911 S:      Supported
4912 F:      Documentation/blockdev/cciss.txt
4913 F:      drivers/block/cciss*
4914 F:      include/linux/cciss_ioctl.h
4915 F:      include/uapi/linux/cciss_ioctl.h
4916
4917 HFS FILESYSTEM
4918 L:      linux-fsdevel@vger.kernel.org
4919 S:      Orphan
4920 F:      Documentation/filesystems/hfs.txt
4921 F:      fs/hfs/
4922
4923 HFSPLUS FILESYSTEM
4924 L:      linux-fsdevel@vger.kernel.org
4925 S:      Orphan
4926 F:      Documentation/filesystems/hfsplus.txt
4927 F:      fs/hfsplus/
4928
4929 HGA FRAMEBUFFER DRIVER
4930 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
4931 L:      linux-nvidia@lists.surfsouth.com
4932 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
4933 S:      Maintained
4934 F:      drivers/video/fbdev/hgafb.c
4935
4936 HIBERNATION (aka Software Suspend, aka swsusp)
4937 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4938 M:      Pavel Machek <pavel@ucw.cz>
4939 L:      linux-pm@vger.kernel.org
4940 S:      Supported
4941 F:      arch/x86/power/
4942 F:      drivers/base/power/
4943 F:      kernel/power/
4944 F:      include/linux/suspend.h
4945 F:      include/linux/freezer.h
4946 F:      include/linux/pm.h
4947 F:      arch/*/include/asm/suspend*.h
4948
4949 HID CORE LAYER
4950 M:      Jiri Kosina <jikos@kernel.org>
4951 L:      linux-input@vger.kernel.org
4952 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
4953 S:      Maintained
4954 F:      drivers/hid/
4955 F:      include/linux/hid*
4956 F:      include/uapi/linux/hid*
4957
4958 HID SENSOR HUB DRIVERS
4959 M:      Jiri Kosina <jikos@kernel.org>
4960 M:      Jonathan Cameron <jic23@kernel.org>
4961 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
4962 L:      linux-input@vger.kernel.org
4963 L:      linux-iio@vger.kernel.org
4964 S:      Maintained
4965 F:      Documentation/hid/hid-sensor*
4966 F:      drivers/hid/hid-sensor-*
4967 F:      drivers/iio/*/hid-*
4968 F:      include/linux/hid-sensor-*
4969
4970 HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
4971 M:      Thomas Gleixner <tglx@linutronix.de>
4972 L:      linux-kernel@vger.kernel.org
4973 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4974 S:      Maintained
4975 F:      Documentation/timers/
4976 F:      kernel/time/hrtimer.c
4977 F:      kernel/time/clockevents.c
4978 F:      kernel/time/tick*.*
4979 F:      kernel/time/timer_*.c
4980 F:      include/linux/clockchips.h
4981 F:      include/linux/hrtimer.h
4982
4983 HIGH-SPEED SCC DRIVER FOR AX.25
4984 L:      linux-hams@vger.kernel.org
4985 S:      Orphan
4986 F:      drivers/net/hamradio/dmascc.c
4987 F:      drivers/net/hamradio/scc.c
4988
4989 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
4990 M:      HighPoint Linux Team <linux@highpoint-tech.com>
4991 W:      http://www.highpoint-tech.com
4992 S:      Supported
4993 F:      Documentation/scsi/hptiop.txt
4994 F:      drivers/scsi/hptiop.c
4995
4996 HIPPI
4997 M:      Jes Sorensen <jes@trained-monkey.org>
4998 L:      linux-hippi@sunsite.dk
4999 S:      Maintained
5000 F:      include/linux/hippidevice.h
5001 F:      include/uapi/linux/if_hippi.h
5002 F:      net/802/hippi.c
5003 F:      drivers/net/hippi/
5004
5005 HOST AP DRIVER
5006 M:      Jouni Malinen <j@w1.fi>
5007 L:      hostap@shmoo.com (subscribers-only)
5008 L:      linux-wireless@vger.kernel.org
5009 W:      http://hostap.epitest.fi/
5010 S:      Maintained
5011 F:      drivers/net/wireless/hostap/
5012
5013 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
5014 L:      platform-driver-x86@vger.kernel.org
5015 S:      Orphan
5016 F:      drivers/platform/x86/tc1100-wmi.c
5017
5018 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
5019 M:      Jaroslav Kysela <perex@perex.cz>
5020 S:      Maintained
5021 F:      drivers/net/ethernet/hp/hp100.*
5022
5023 HPET:   High Precision Event Timers driver
5024 M:      Clemens Ladisch <clemens@ladisch.de>
5025 S:      Maintained
5026 F:      Documentation/timers/hpet.txt
5027 F:      drivers/char/hpet.c
5028 F:      include/linux/hpet.h
5029 F:      include/uapi/linux/hpet.h
5030
5031 HPET:   x86
5032 S:      Orphan
5033 F:      arch/x86/kernel/hpet.c
5034 F:      arch/x86/include/asm/hpet.h
5035
5036 HPFS FILESYSTEM
5037 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
5038 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
5039 S:      Maintained
5040 F:      fs/hpfs/
5041
5042 HSI SUBSYSTEM
5043 M:      Sebastian Reichel <sre@kernel.org>
5044 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
5045 S:      Maintained
5046 F:      Documentation/ABI/testing/sysfs-bus-hsi
5047 F:      Documentation/hsi.txt
5048 F:      drivers/hsi/
5049 F:      include/linux/hsi/
5050 F:      include/uapi/linux/hsi/
5051
5052 HSO 3G MODEM DRIVER
5053 M:      Jan Dumon <j.dumon@option.com>
5054 W:      http://www.pharscape.org
5055 S:      Maintained
5056 F:      drivers/net/usb/hso.c
5057
5058 HSR NETWORK PROTOCOL
5059 M:      Arvid Brodin <arvid.brodin@alten.se>
5060 L:      netdev@vger.kernel.org
5061 S:      Maintained
5062 F:      net/hsr/
5063
5064 HTCPEN TOUCHSCREEN DRIVER
5065 M:      Pau Oliva Fora <pof@eslack.org>
5066 L:      linux-input@vger.kernel.org
5067 S:      Maintained
5068 F:      drivers/input/touchscreen/htcpen.c
5069
5070 HUGETLB FILESYSTEM
5071 M:      Nadia Yvette Chambers <nyc@holomorphy.com>
5072 S:      Maintained
5073 F:      fs/hugetlbfs/
5074
5075 Hyper-V CORE AND DRIVERS
5076 M:      "K. Y. Srinivasan" <kys@microsoft.com>
5077 M:      Haiyang Zhang <haiyangz@microsoft.com>
5078 L:      devel@linuxdriverproject.org
5079 S:      Maintained
5080 F:      arch/x86/include/asm/mshyperv.h
5081 F:      arch/x86/include/uapi/asm/hyperv.h
5082 F:      arch/x86/kernel/cpu/mshyperv.c
5083 F:      drivers/hid/hid-hyperv.c
5084 F:      drivers/hv/
5085 F:      drivers/input/serio/hyperv-keyboard.c
5086 F:      drivers/net/hyperv/
5087 F:      drivers/scsi/storvsc_drv.c
5088 F:      drivers/video/fbdev/hyperv_fb.c
5089 F:      include/linux/hyperv.h
5090 F:      tools/hv/
5091 F:      Documentation/ABI/stable/sysfs-bus-vmbus
5092
5093 I2C OVER PARALLEL PORT
5094 M:      Jean Delvare <jdelvare@suse.com>
5095 L:      linux-i2c@vger.kernel.org
5096 S:      Maintained
5097 F:      Documentation/i2c/busses/i2c-parport
5098 F:      Documentation/i2c/busses/i2c-parport-light
5099 F:      drivers/i2c/busses/i2c-parport.c
5100 F:      drivers/i2c/busses/i2c-parport-light.c
5101
5102 I2C/SMBUS CONTROLLER DRIVERS FOR PC
5103 M:      Jean Delvare <jdelvare@suse.com>
5104 L:      linux-i2c@vger.kernel.org
5105 S:      Maintained
5106 F:      Documentation/i2c/busses/i2c-ali1535
5107 F:      Documentation/i2c/busses/i2c-ali1563
5108 F:      Documentation/i2c/busses/i2c-ali15x3
5109 F:      Documentation/i2c/busses/i2c-amd756
5110 F:      Documentation/i2c/busses/i2c-amd8111
5111 F:      Documentation/i2c/busses/i2c-i801
5112 F:      Documentation/i2c/busses/i2c-nforce2
5113 F:      Documentation/i2c/busses/i2c-piix4
5114 F:      Documentation/i2c/busses/i2c-sis5595
5115 F:      Documentation/i2c/busses/i2c-sis630
5116 F:      Documentation/i2c/busses/i2c-sis96x
5117 F:      Documentation/i2c/busses/i2c-via
5118 F:      Documentation/i2c/busses/i2c-viapro
5119 F:      drivers/i2c/busses/i2c-ali1535.c
5120 F:      drivers/i2c/busses/i2c-ali1563.c
5121 F:      drivers/i2c/busses/i2c-ali15x3.c
5122 F:      drivers/i2c/busses/i2c-amd756.c
5123 F:      drivers/i2c/busses/i2c-amd756-s4882.c
5124 F:      drivers/i2c/busses/i2c-amd8111.c
5125 F:      drivers/i2c/busses/i2c-i801.c
5126 F:      drivers/i2c/busses/i2c-isch.c
5127 F:      drivers/i2c/busses/i2c-nforce2.c
5128 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
5129 F:      drivers/i2c/busses/i2c-piix4.c
5130 F:      drivers/i2c/busses/i2c-sis5595.c
5131 F:      drivers/i2c/busses/i2c-sis630.c
5132 F:      drivers/i2c/busses/i2c-sis96x.c
5133 F:      drivers/i2c/busses/i2c-via.c
5134 F:      drivers/i2c/busses/i2c-viapro.c
5135
5136 I2C/SMBUS ISMT DRIVER
5137 M:      Seth Heasley <seth.heasley@intel.com>
5138 M:      Neil Horman <nhorman@tuxdriver.com>
5139 L:      linux-i2c@vger.kernel.org
5140 F:      drivers/i2c/busses/i2c-ismt.c
5141 F:      Documentation/i2c/busses/i2c-ismt
5142
5143 I2C/SMBUS STUB DRIVER
5144 M:      Jean Delvare <jdelvare@suse.com>
5145 L:      linux-i2c@vger.kernel.org
5146 S:      Maintained
5147 F:      drivers/i2c/i2c-stub.c
5148
5149 I2C SUBSYSTEM
5150 M:      Wolfram Sang <wsa@the-dreams.de>
5151 L:      linux-i2c@vger.kernel.org
5152 W:      https://i2c.wiki.kernel.org/
5153 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
5154 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
5155 S:      Maintained
5156 F:      Documentation/devicetree/bindings/i2c/
5157 F:      Documentation/i2c/
5158 F:      drivers/i2c/
5159 F:      drivers/i2c/*/
5160 F:      include/linux/i2c.h
5161 F:      include/linux/i2c-*.h
5162 F:      include/uapi/linux/i2c.h
5163 F:      include/uapi/linux/i2c-*.h
5164
5165 I2C ACPI SUPPORT
5166 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
5167 L:      linux-i2c@vger.kernel.org
5168 L:      linux-acpi@vger.kernel.org
5169 S:      Maintained
5170
5171 I2C-TAOS-EVM DRIVER
5172 M:      Jean Delvare <jdelvare@suse.com>
5173 L:      linux-i2c@vger.kernel.org
5174 S:      Maintained
5175 F:      Documentation/i2c/busses/i2c-taos-evm
5176 F:      drivers/i2c/busses/i2c-taos-evm.c
5177
5178 I2C-TINY-USB DRIVER
5179 M:      Till Harbaum <till@harbaum.org>
5180 L:      linux-i2c@vger.kernel.org
5181 W:      http://www.harbaum.org/till/i2c_tiny_usb
5182 S:      Maintained
5183 F:      drivers/i2c/busses/i2c-tiny-usb.c
5184
5185 i386 BOOT CODE
5186 M:      "H. Peter Anvin" <hpa@zytor.com>
5187 S:      Maintained
5188 F:      arch/x86/boot/
5189
5190 i386 SETUP CODE / CPU ERRATA WORKAROUNDS
5191 M:      "H. Peter Anvin" <hpa@zytor.com>
5192 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
5193 S:      Maintained
5194
5195 IA64 (Itanium) PLATFORM
5196 M:      Tony Luck <tony.luck@intel.com>
5197 M:      Fenghua Yu <fenghua.yu@intel.com>
5198 L:      linux-ia64@vger.kernel.org
5199 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
5200 S:      Maintained
5201 F:      arch/ia64/
5202
5203 IBM Power VMX Cryptographic instructions
5204 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5205 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5206 L:      linux-crypto@vger.kernel.org
5207 S:      Supported
5208 F:      drivers/crypto/vmx/Makefile
5209 F:      drivers/crypto/vmx/Kconfig
5210 F:      drivers/crypto/vmx/vmx.c
5211 F:      drivers/crypto/vmx/aes*
5212 F:      drivers/crypto/vmx/ghash*
5213 F:      drivers/crypto/vmx/ppc-xlate.pl
5214
5215 IBM Power in-Nest Crypto Acceleration
5216 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5217 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5218 L:      linux-crypto@vger.kernel.org
5219 S:      Supported
5220 F:      drivers/crypto/nx/Makefile
5221 F:      drivers/crypto/nx/Kconfig
5222 F:      drivers/crypto/nx/nx-aes*
5223 F:      drivers/crypto/nx/nx-sha*
5224 F:      drivers/crypto/nx/nx.*
5225 F:      drivers/crypto/nx/nx_csbcpb.h
5226 F:      drivers/crypto/nx/nx_debugfs.h
5227
5228 IBM Power 842 compression accelerator
5229 M:      Dan Streetman <ddstreet@ieee.org>
5230 S:      Supported
5231 F:      drivers/crypto/nx/Makefile
5232 F:      drivers/crypto/nx/Kconfig
5233 F:      drivers/crypto/nx/nx-842*
5234 F:      include/linux/sw842.h
5235 F:      crypto/842.c
5236 F:      lib/842/
5237
5238 IBM Power Linux RAID adapter
5239 M:      Brian King <brking@us.ibm.com>
5240 S:      Supported
5241 F:      drivers/scsi/ipr.*
5242
5243 IBM Power Virtual Ethernet Device Driver
5244 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
5245 L:      netdev@vger.kernel.org
5246 S:      Supported
5247 F:      drivers/net/ethernet/ibm/ibmveth.*
5248
5249 IBM Power Virtual SCSI Device Drivers
5250 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5251 L:      linux-scsi@vger.kernel.org
5252 S:      Supported
5253 F:      drivers/scsi/ibmvscsi/ibmvscsi*
5254 F:      drivers/scsi/ibmvscsi/viosrp.h
5255
5256 IBM Power Virtual FC Device Drivers
5257 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5258 L:      linux-scsi@vger.kernel.org
5259 S:      Supported
5260 F:      drivers/scsi/ibmvscsi/ibmvfc*
5261
5262 IBM ServeRAID RAID DRIVER
5263 S:      Orphan
5264 F:      drivers/scsi/ips.*
5265
5266 ICH LPC AND GPIO DRIVER
5267 M:      Peter Tyser <ptyser@xes-inc.com>
5268 S:      Maintained
5269 F:      drivers/mfd/lpc_ich.c
5270 F:      drivers/gpio/gpio-ich.c
5271
5272 IDE SUBSYSTEM
5273 M:      "David S. Miller" <davem@davemloft.net>
5274 L:      linux-ide@vger.kernel.org
5275 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
5276 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
5277 S:      Maintained
5278 F:      Documentation/ide/
5279 F:      drivers/ide/
5280 F:      include/linux/ide.h
5281
5282 IDEAPAD LAPTOP EXTRAS DRIVER
5283 M:      Ike Panhc <ike.pan@canonical.com>
5284 L:      platform-driver-x86@vger.kernel.org
5285 W:      http://launchpad.net/ideapad-laptop
5286 S:      Maintained
5287 F:      drivers/platform/x86/ideapad-laptop.c
5288
5289 IDEAPAD LAPTOP SLIDEBAR DRIVER
5290 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
5291 L:      linux-input@vger.kernel.org
5292 W:      https://github.com/o2genum/ideapad-slidebar
5293 S:      Maintained
5294 F:      drivers/input/misc/ideapad_slidebar.c
5295
5296 IDE/ATAPI DRIVERS
5297 M:      Borislav Petkov <bp@alien8.de>
5298 L:      linux-ide@vger.kernel.org
5299 S:      Maintained
5300 F:      Documentation/cdrom/ide-cd
5301 F:      drivers/ide/ide-cd*
5302
5303 IDLE-I7300
5304 M:      Andy Henroid <andrew.d.henroid@intel.com>
5305 L:      linux-pm@vger.kernel.org
5306 S:      Supported
5307 F:      drivers/idle/i7300_idle.c
5308
5309 IEEE 802.15.4 SUBSYSTEM
5310 M:      Alexander Aring <alex.aring@gmail.com>
5311 L:      linux-wpan@vger.kernel.org
5312 W:      https://github.com/linux-wpan
5313 T:      git git://github.com/linux-wpan/linux-wpan-next.git
5314 S:      Maintained
5315 F:      net/ieee802154/
5316 F:      net/mac802154/
5317 F:      drivers/net/ieee802154/
5318 F:      include/linux/nl802154.h
5319 F:      include/linux/ieee802154.h
5320 F:      include/net/nl802154.h
5321 F:      include/net/mac802154.h
5322 F:      include/net/af_ieee802154.h
5323 F:      include/net/cfg802154.h
5324 F:      include/net/ieee802154_netdev.h
5325 F:      Documentation/networking/ieee802154.txt
5326
5327 IGORPLUG-USB IR RECEIVER
5328 M:      Sean Young <sean@mess.org>
5329 L:      linux-media@vger.kernel.org
5330 S:      Maintained
5331 F:      drivers/media/rc/igorplugusb.c
5332
5333 IGUANAWORKS USB IR TRANSCEIVER
5334 M:      Sean Young <sean@mess.org>
5335 L:      linux-media@vger.kernel.org
5336 S:      Maintained
5337 F:      drivers/media/rc/iguanair.c
5338
5339 IIO SUBSYSTEM AND DRIVERS
5340 M:      Jonathan Cameron <jic23@kernel.org>
5341 R:      Hartmut Knaack <knaack.h@gmx.de>
5342 R:      Lars-Peter Clausen <lars@metafoo.de>
5343 R:      Peter Meerwald <pmeerw@pmeerw.net>
5344 L:      linux-iio@vger.kernel.org
5345 S:      Maintained
5346 F:      drivers/iio/
5347 F:      drivers/staging/iio/
5348 F:      include/linux/iio/
5349 F:      tools/iio/
5350
5351 IKANOS/ADI EAGLE ADSL USB DRIVER
5352 M:      Matthieu Castet <castet.matthieu@free.fr>
5353 M:      Stanislaw Gruszka <stf_xl@wp.pl>
5354 S:      Maintained
5355 F:      drivers/usb/atm/ueagle-atm.c
5356
5357 INA209 HARDWARE MONITOR DRIVER
5358 M:      Guenter Roeck <linux@roeck-us.net>
5359 L:      lm-sensors@lm-sensors.org
5360 S:      Maintained
5361 F:      Documentation/hwmon/ina209
5362 F:      Documentation/devicetree/bindings/i2c/ina209.txt
5363 F:      drivers/hwmon/ina209.c
5364
5365 INA2XX HARDWARE MONITOR DRIVER
5366 M:      Guenter Roeck <linux@roeck-us.net>
5367 L:      lm-sensors@lm-sensors.org
5368 S:      Maintained
5369 F:      Documentation/hwmon/ina2xx
5370 F:      drivers/hwmon/ina2xx.c
5371 F:      include/linux/platform_data/ina2xx.h
5372
5373 INDUSTRY PACK SUBSYSTEM (IPACK)
5374 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
5375 M:      Jens Taprogge <jens.taprogge@taprogge.org>
5376 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5377 L:      industrypack-devel@lists.sourceforge.net
5378 W:      http://industrypack.sourceforge.net
5379 S:      Maintained
5380 F:      drivers/ipack/
5381
5382 INGENIC JZ4780 DMA Driver
5383 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
5384 S:      Maintained
5385 F:      drivers/dma/dma-jz4780.c
5386
5387 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
5388 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
5389 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
5390 L:      linux-ima-devel@lists.sourceforge.net
5391 L:      linux-ima-user@lists.sourceforge.net
5392 L:      linux-security-module@vger.kernel.org
5393 S:      Supported
5394 F:      security/integrity/ima/
5395
5396 IMGTEC IR DECODER DRIVER
5397 M:      James Hogan <james.hogan@imgtec.com>
5398 S:      Maintained
5399 F:      drivers/media/rc/img-ir/
5400
5401 IMS TWINTURBO FRAMEBUFFER DRIVER
5402 L:      linux-fbdev@vger.kernel.org
5403 S:      Orphan
5404 F:      drivers/video/fbdev/imsttfb.c
5405
5406 INFINIBAND SUBSYSTEM
5407 M:      Doug Ledford <dledford@redhat.com>
5408 M:      Sean Hefty <sean.hefty@intel.com>
5409 M:      Hal Rosenstock <hal.rosenstock@gmail.com>
5410 L:      linux-rdma@vger.kernel.org
5411 W:      http://www.openfabrics.org/
5412 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5413 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git
5414 S:      Supported
5415 F:      Documentation/infiniband/
5416 F:      drivers/infiniband/
5417 F:      drivers/staging/rdma/
5418 F:      include/uapi/linux/if_infiniband.h
5419 F:      include/uapi/rdma/
5420 F:      include/rdma/
5421
5422 INOTIFY
5423 M:      John McCutchan <john@johnmccutchan.com>
5424 M:      Robert Love <rlove@rlove.org>
5425 M:      Eric Paris <eparis@parisplace.org>
5426 S:      Maintained
5427 F:      Documentation/filesystems/inotify.txt
5428 F:      fs/notify/inotify/
5429 F:      include/linux/inotify.h
5430 F:      include/uapi/linux/inotify.h
5431
5432 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
5433 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
5434 L:      linux-input@vger.kernel.org
5435 Q:      http://patchwork.kernel.org/project/linux-input/list/
5436 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
5437 S:      Maintained
5438 F:      drivers/input/
5439 F:      include/linux/input.h
5440 F:      include/uapi/linux/input.h
5441 F:      include/linux/input/
5442
5443 INPUT MULTITOUCH (MT) PROTOCOL
5444 M:      Henrik Rydberg <rydberg@bitmath.org>
5445 L:      linux-input@vger.kernel.org
5446 S:      Odd fixes
5447 F:      Documentation/input/multi-touch-protocol.txt
5448 F:      drivers/input/input-mt.c
5449 K:      \b(ABS|SYN)_MT_
5450
5451 INTEL ASoC BDW/HSW DRIVERS
5452 M:      Jie Yang <yang.jie@linux.intel.com>
5453 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5454 S:      Supported
5455 F:      sound/soc/intel/common/sst-dsp*
5456 F:      sound/soc/intel/common/sst-firmware.c
5457 F:      sound/soc/intel/boards/broadwell.c
5458 F:      sound/soc/intel/haswell/
5459
5460 INTEL C600 SERIES SAS CONTROLLER DRIVER
5461 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
5462 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
5463 L:      linux-scsi@vger.kernel.org
5464 T:      git git://git.code.sf.net/p/intel-sas/isci
5465 S:      Supported
5466 F:      drivers/scsi/isci/
5467
5468 INTEL IDLE DRIVER
5469 M:      Len Brown <lenb@kernel.org>
5470 L:      linux-pm@vger.kernel.org
5471 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
5472 S:      Supported
5473 F:      drivers/idle/intel_idle.c
5474
5475 INTEL PSTATE DRIVER
5476 M:      Kristen Carlson Accardi <kristen@linux.intel.com>
5477 L:      linux-pm@vger.kernel.org
5478 S:      Supported
5479 F:      drivers/cpufreq/intel_pstate.c
5480
5481 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
5482 M:      Maik Broemme <mbroemme@plusserver.de>
5483 L:      linux-fbdev@vger.kernel.org
5484 S:      Maintained
5485 F:      Documentation/fb/intelfb.txt
5486 F:      drivers/video/fbdev/intelfb/
5487
5488 INTEL 810/815 FRAMEBUFFER DRIVER
5489 M:      Antonino Daplas <adaplas@gmail.com>
5490 L:      linux-fbdev@vger.kernel.org
5491 S:      Maintained
5492 F:      drivers/video/fbdev/i810/
5493
5494 INTEL MENLOW THERMAL DRIVER
5495 M:      Sujith Thomas <sujith.thomas@intel.com>
5496 L:      platform-driver-x86@vger.kernel.org
5497 W:      https://01.org/linux-acpi
5498 S:      Supported
5499 F:      drivers/platform/x86/intel_menlow.c
5500
5501 INTEL I/OAT DMA DRIVER
5502 M:      Dave Jiang <dave.jiang@intel.com>
5503 R:      Dan Williams <dan.j.williams@intel.com>
5504 L:      dmaengine@vger.kernel.org
5505 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5506 S:      Supported
5507 F:      drivers/dma/ioat*
5508
5509 INTEL IOMMU (VT-d)
5510 M:      David Woodhouse <dwmw2@infradead.org>
5511 L:      iommu@lists.linux-foundation.org
5512 T:      git git://git.infradead.org/iommu-2.6.git
5513 S:      Supported
5514 F:      drivers/iommu/intel-iommu.c
5515 F:      include/linux/intel-iommu.h
5516
5517 INTEL IOP-ADMA DMA DRIVER
5518 R:      Dan Williams <dan.j.williams@intel.com>
5519 S:      Odd fixes
5520 F:      drivers/dma/iop-adma.c
5521
5522 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
5523 M:      Krzysztof Halasa <khalasa@piap.pl>
5524 S:      Maintained
5525 F:      arch/arm/mach-ixp4xx/include/mach/qmgr.h
5526 F:      arch/arm/mach-ixp4xx/include/mach/npe.h
5527 F:      arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
5528 F:      arch/arm/mach-ixp4xx/ixp4xx_npe.c
5529 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
5530 F:      drivers/net/wan/ixp4xx_hss.c
5531
5532 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
5533 M:      Deepak Saxena <dsaxena@plexity.net>
5534 S:      Maintained
5535 F:      drivers/char/hw_random/ixp4xx-rng.c
5536
5537 INTEL ETHERNET DRIVERS
5538 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
5539 R:      Jesse Brandeburg <jesse.brandeburg@intel.com>
5540 R:      Shannon Nelson <shannon.nelson@intel.com>
5541 R:      Carolyn Wyborny <carolyn.wyborny@intel.com>
5542 R:      Don Skidmore <donald.c.skidmore@intel.com>
5543 R:      Matthew Vick <matthew.vick@intel.com>
5544 R:      John Ronciak <john.ronciak@intel.com>
5545 R:      Mitch Williams <mitch.a.williams@intel.com>
5546 L:      intel-wired-lan@lists.osuosl.org
5547 W:      http://www.intel.com/support/feedback.htm
5548 W:      http://e1000.sourceforge.net/
5549 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
5550 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
5551 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
5552 S:      Supported
5553 F:      Documentation/networking/e100.txt
5554 F:      Documentation/networking/e1000.txt
5555 F:      Documentation/networking/e1000e.txt
5556 F:      Documentation/networking/igb.txt
5557 F:      Documentation/networking/igbvf.txt
5558 F:      Documentation/networking/ixgb.txt
5559 F:      Documentation/networking/ixgbe.txt
5560 F:      Documentation/networking/ixgbevf.txt
5561 F:      Documentation/networking/i40e.txt
5562 F:      Documentation/networking/i40evf.txt
5563 F:      drivers/net/ethernet/intel/
5564 F:      drivers/net/ethernet/intel/*/
5565
5566 INTEL-MID GPIO DRIVER
5567 M:      David Cohen <david.a.cohen@linux.intel.com>
5568 L:      linux-gpio@vger.kernel.org
5569 S:      Maintained
5570 F:      drivers/gpio/gpio-intel-mid.c
5571
5572 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
5573 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
5574 L:      linux-wireless@vger.kernel.org
5575 S:      Maintained
5576 F:      Documentation/networking/README.ipw2100
5577 F:      Documentation/networking/README.ipw2200
5578 F:      drivers/net/wireless/ipw2x00/
5579
5580 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
5581 M:      Richard L Maliszewski <richard.l.maliszewski@intel.com>
5582 M:      Gang Wei <gang.wei@intel.com>
5583 M:      Shane Wang <shane.wang@intel.com>
5584 L:      tboot-devel@lists.sourceforge.net
5585 W:      http://tboot.sourceforge.net
5586 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
5587 S:      Supported
5588 F:      Documentation/intel_txt.txt
5589 F:      include/linux/tboot.h
5590 F:      arch/x86/kernel/tboot.c
5591
5592 INTEL WIRELESS WIMAX CONNECTION 2400
5593 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
5594 M:      linux-wimax@intel.com
5595 L:      wimax@linuxwimax.org (subscribers-only)
5596 S:      Supported
5597 W:      http://linuxwimax.org
5598 F:      Documentation/wimax/README.i2400m
5599 F:      drivers/net/wimax/i2400m/
5600 F:      include/uapi/linux/wimax/i2400m.h
5601
5602 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
5603 M:      Stanislaw Gruszka <sgruszka@redhat.com>
5604 L:      linux-wireless@vger.kernel.org
5605 S:      Supported
5606 F:      drivers/net/wireless/iwlegacy/
5607
5608 INTEL WIRELESS WIFI LINK (iwlwifi)
5609 M:      Johannes Berg <johannes.berg@intel.com>
5610 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
5611 M:      Intel Linux Wireless <linuxwifi@intel.com>
5612 L:      linux-wireless@vger.kernel.org
5613 W:      http://intellinuxwireless.org
5614 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
5615 S:      Supported
5616 F:      drivers/net/wireless/iwlwifi/
5617
5618 INTEL MANAGEMENT ENGINE (mei)
5619 M:      Tomas Winkler <tomas.winkler@intel.com>
5620 L:      linux-kernel@vger.kernel.org
5621 S:      Supported
5622 F:      include/uapi/linux/mei.h
5623 F:      include/linux/mei_cl_bus.h
5624 F:      drivers/misc/mei/*
5625 F:      Documentation/misc-devices/mei/*
5626
5627 INTEL PMC IPC DRIVER
5628 M:      Zha Qipeng<qipeng.zha@intel.com>
5629 L:      platform-driver-x86@vger.kernel.org
5630 S:      Maintained
5631 F:      drivers/platform/x86/intel_pmc_ipc.c
5632 F:      arch/x86/include/asm/intel_pmc_ipc.h
5633
5634 IOC3 ETHERNET DRIVER
5635 M:      Ralf Baechle <ralf@linux-mips.org>
5636 L:      linux-mips@linux-mips.org
5637 S:      Maintained
5638 F:      drivers/net/ethernet/sgi/ioc3-eth.c
5639
5640 IOC3 SERIAL DRIVER
5641 M:      Pat Gefre <pfg@sgi.com>
5642 L:      linux-serial@vger.kernel.org
5643 S:      Maintained
5644 F:      drivers/tty/serial/ioc3_serial.c
5645
5646 IOMMU DRIVERS
5647 M:      Joerg Roedel <joro@8bytes.org>
5648 L:      iommu@lists.linux-foundation.org
5649 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
5650 S:      Maintained
5651 F:      drivers/iommu/
5652
5653 IP MASQUERADING
5654 M:      Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
5655 S:      Maintained
5656 F:      net/ipv4/netfilter/ipt_MASQUERADE.c
5657
5658 IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
5659 M:      Francois Romieu <romieu@fr.zoreil.com>
5660 M:      Sorbica Shieh <sorbica@icplus.com.tw>
5661 L:      netdev@vger.kernel.org
5662 S:      Maintained
5663 F:      drivers/net/ethernet/icplus/ipg.*
5664
5665 IPATH DRIVER
5666 M:      Mike Marciniszyn <infinipath@intel.com>
5667 L:      linux-rdma@vger.kernel.org
5668 S:      Maintained
5669 F:      drivers/staging/rdma/ipath/
5670
5671 IPMI SUBSYSTEM
5672 M:      Corey Minyard <minyard@acm.org>
5673 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
5674 W:      http://openipmi.sourceforge.net/
5675 S:      Supported
5676 F:      Documentation/IPMI.txt
5677 F:      drivers/char/ipmi/
5678 F:      include/linux/ipmi*
5679 F:      include/uapi/linux/ipmi*
5680
5681 QCOM AUDIO (ASoC) DRIVERS
5682 M:      Patrick Lai <plai@codeaurora.org>
5683 M:      Banajit Goswami <bgoswami@codeaurora.org>
5684 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5685 S:      Supported
5686 F:      sound/soc/qcom/
5687
5688 IPS SCSI RAID DRIVER
5689 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
5690 L:      linux-scsi@vger.kernel.org
5691 W:      http://www.adaptec.com/
5692 S:      Maintained
5693 F:      drivers/scsi/ips*
5694
5695 IPVS
5696 M:      Wensong Zhang <wensong@linux-vs.org>
5697 M:      Simon Horman <horms@verge.net.au>
5698 M:      Julian Anastasov <ja@ssi.bg>
5699 L:      netdev@vger.kernel.org
5700 L:      lvs-devel@vger.kernel.org
5701 S:      Maintained
5702 F:      Documentation/networking/ipvs-sysctl.txt
5703 F:      include/net/ip_vs.h
5704 F:      include/uapi/linux/ip_vs.h
5705 F:      net/netfilter/ipvs/
5706
5707 IPWIRELESS DRIVER
5708 M:      Jiri Kosina <jikos@kernel.org>
5709 M:      David Sterba <dsterba@suse.com>
5710 S:      Odd Fixes
5711 F:      drivers/tty/ipwireless/
5712
5713 IPX NETWORK LAYER
5714 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
5715 L:      netdev@vger.kernel.org
5716 S:      Maintained
5717 F:      include/net/ipx.h
5718 F:      include/uapi/linux/ipx.h
5719 F:      net/ipx/
5720
5721 IRDA SUBSYSTEM
5722 M:      Samuel Ortiz <samuel@sortiz.org>
5723 L:      irda-users@lists.sourceforge.net (subscribers-only)
5724 L:      netdev@vger.kernel.org
5725 W:      http://irda.sourceforge.net/
5726 S:      Maintained
5727 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
5728 F:      Documentation/networking/irda.txt
5729 F:      drivers/net/irda/
5730 F:      include/net/irda/
5731 F:      net/irda/
5732
5733 IRQ SUBSYSTEM
5734 M:      Thomas Gleixner <tglx@linutronix.de>
5735 L:      linux-kernel@vger.kernel.org
5736 S:      Maintained
5737 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5738 F:      kernel/irq/
5739
5740 IRQCHIP DRIVERS
5741 M:      Thomas Gleixner <tglx@linutronix.de>
5742 M:      Jason Cooper <jason@lakedaemon.net>
5743 M:      Marc Zyngier <marc.zyngier@arm.com>
5744 L:      linux-kernel@vger.kernel.org
5745 S:      Maintained
5746 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5747 T:      git git://git.infradead.org/users/jcooper/linux.git irqchip/core
5748 F:      Documentation/devicetree/bindings/interrupt-controller/
5749 F:      drivers/irqchip/
5750
5751 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
5752 M:      Jiang Liu <jiang.liu@linux.intel.com>
5753 M:      Marc Zyngier <marc.zyngier@arm.com>
5754 S:      Maintained
5755 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5756 F:      Documentation/IRQ-domain.txt
5757 F:      include/linux/irqdomain.h
5758 F:      kernel/irq/irqdomain.c
5759 F:      kernel/irq/msi.c
5760
5761 ISAPNP
5762 M:      Jaroslav Kysela <perex@perex.cz>
5763 S:      Maintained
5764 F:      Documentation/isapnp.txt
5765 F:      drivers/pnp/isapnp/
5766 F:      include/linux/isapnp.h
5767
5768 ISA RADIO MODULE
5769 M:      Hans Verkuil <hverkuil@xs4all.nl>
5770 L:      linux-media@vger.kernel.org
5771 T:      git git://linuxtv.org/media_tree.git
5772 W:      http://linuxtv.org
5773 S:      Maintained
5774 F:      drivers/media/radio/radio-isa*
5775
5776 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
5777 M:      Peter Jones <pjones@redhat.com>
5778 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
5779 S:      Maintained
5780 F:      drivers/firmware/iscsi_ibft*
5781
5782 ISCSI
5783 M:      Mike Christie <michaelc@cs.wisc.edu>
5784 L:      open-iscsi@googlegroups.com
5785 W:      www.open-iscsi.org
5786 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
5787 S:      Maintained
5788 F:      drivers/scsi/*iscsi*
5789 F:      include/scsi/*iscsi*
5790
5791 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
5792 M:      Or Gerlitz <ogerlitz@mellanox.com>
5793 M:      Sagi Grimberg <sagig@mellanox.com>
5794 M:      Roi Dayan <roid@mellanox.com>
5795 L:      linux-rdma@vger.kernel.org
5796 S:      Supported
5797 W:      http://www.openfabrics.org
5798 W:      www.open-iscsi.org
5799 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5800 F:      drivers/infiniband/ulp/iser/
5801
5802 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
5803 M:      Sagi Grimberg <sagig@mellanox.com>
5804 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
5805 L:      linux-rdma@vger.kernel.org
5806 L:      target-devel@vger.kernel.org
5807 S:      Supported
5808 W:      http://www.linux-iscsi.org
5809 F:      drivers/infiniband/ulp/isert
5810
5811 ISDN SUBSYSTEM
5812 M:      Karsten Keil <isdn@linux-pingi.de>
5813 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5814 L:      netdev@vger.kernel.org
5815 W:      http://www.isdn4linux.de
5816 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
5817 S:      Maintained
5818 F:      Documentation/isdn/
5819 F:      drivers/isdn/
5820 F:      include/linux/isdn.h
5821 F:      include/linux/isdn/
5822 F:      include/uapi/linux/isdn.h
5823 F:      include/uapi/linux/isdn/
5824
5825 ISDN SUBSYSTEM (Eicon active card driver)
5826 M:      Armin Schindler <mac@melware.de>
5827 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5828 W:      http://www.melware.de
5829 S:      Maintained
5830 F:      drivers/isdn/hardware/eicon/
5831
5832 IT87 HARDWARE MONITORING DRIVER
5833 M:      Jean Delvare <jdelvare@suse.com>
5834 L:      lm-sensors@lm-sensors.org
5835 S:      Maintained
5836 F:      Documentation/hwmon/it87
5837 F:      drivers/hwmon/it87.c
5838
5839 IT913X MEDIA DRIVER
5840 M:      Antti Palosaari <crope@iki.fi>
5841 L:      linux-media@vger.kernel.org
5842 W:      http://linuxtv.org/
5843 W:      http://palosaari.fi/linux/
5844 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5845 T:      git git://linuxtv.org/anttip/media_tree.git
5846 S:      Maintained
5847 F:      drivers/media/tuners/it913x*
5848
5849 IVTV VIDEO4LINUX DRIVER
5850 M:      Andy Walls <awalls@md.metrocast.net>
5851 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
5852 L:      linux-media@vger.kernel.org
5853 T:      git git://linuxtv.org/media_tree.git
5854 W:      http://www.ivtvdriver.org
5855 S:      Maintained
5856 F:      Documentation/video4linux/*.ivtv
5857 F:      drivers/media/pci/ivtv/
5858 F:      include/uapi/linux/ivtv*
5859
5860 IX2505V MEDIA DRIVER
5861 M:      Malcolm Priestley <tvboxspy@gmail.com>
5862 L:      linux-media@vger.kernel.org
5863 W:      http://linuxtv.org/
5864 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5865 S:      Maintained
5866 F:      drivers/media/dvb-frontends/ix2505v*
5867
5868 JC42.4 TEMPERATURE SENSOR DRIVER
5869 M:      Guenter Roeck <linux@roeck-us.net>
5870 L:      lm-sensors@lm-sensors.org
5871 S:      Maintained
5872 F:      drivers/hwmon/jc42.c
5873 F:      Documentation/hwmon/jc42
5874
5875 JFS FILESYSTEM
5876 M:      Dave Kleikamp <shaggy@kernel.org>
5877 L:      jfs-discussion@lists.sourceforge.net
5878 W:      http://jfs.sourceforge.net/
5879 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
5880 S:      Maintained
5881 F:      Documentation/filesystems/jfs.txt
5882 F:      fs/jfs/
5883
5884 JME NETWORK DRIVER
5885 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
5886 L:      netdev@vger.kernel.org
5887 S:      Maintained
5888 F:      drivers/net/ethernet/jme.*
5889
5890 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
5891 M:      David Woodhouse <dwmw2@infradead.org>
5892 L:      linux-mtd@lists.infradead.org
5893 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
5894 S:      Maintained
5895 F:      fs/jffs2/
5896 F:      include/uapi/linux/jffs2.h
5897
5898 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
5899 M:      "Theodore Ts'o" <tytso@mit.edu>
5900 M:      Jan Kara <jack@suse.com>
5901 L:      linux-ext4@vger.kernel.org
5902 S:      Maintained
5903 F:      fs/jbd2/
5904 F:      include/linux/jbd2.h
5905
5906 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
5907 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
5908 L:      linux-media@vger.kernel.org
5909 S:      Maintained
5910 F:      drivers/media/platform/rcar_jpu.c
5911
5912 JSM Neo PCI based serial card
5913 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
5914 L:      linux-serial@vger.kernel.org
5915 S:      Maintained
5916 F:      drivers/tty/serial/jsm/
5917
5918 K10TEMP HARDWARE MONITORING DRIVER
5919 M:      Clemens Ladisch <clemens@ladisch.de>
5920 L:      lm-sensors@lm-sensors.org
5921 S:      Maintained
5922 F:      Documentation/hwmon/k10temp
5923 F:      drivers/hwmon/k10temp.c
5924
5925 K8TEMP HARDWARE MONITORING DRIVER
5926 M:      Rudolf Marek <r.marek@assembler.cz>
5927 L:      lm-sensors@lm-sensors.org
5928 S:      Maintained
5929 F:      Documentation/hwmon/k8temp
5930 F:      drivers/hwmon/k8temp.c
5931
5932 KCONFIG
5933 M:      "Yann E. MORIN" <yann.morin.1998@free.fr>
5934 L:      linux-kbuild@vger.kernel.org
5935 T:      git git://gitorious.org/linux-kconfig/linux-kconfig
5936 S:      Maintained
5937 F:      Documentation/kbuild/kconfig-language.txt
5938 F:      scripts/kconfig/
5939
5940 KDUMP
5941 M:      Vivek Goyal <vgoyal@redhat.com>
5942 M:      Haren Myneni <hbabu@us.ibm.com>
5943 L:      kexec@lists.infradead.org
5944 W:      http://lse.sourceforge.net/kdump/
5945 S:      Maintained
5946 F:      Documentation/kdump/
5947
5948 KEENE FM RADIO TRANSMITTER DRIVER
5949 M:      Hans Verkuil <hverkuil@xs4all.nl>
5950 L:      linux-media@vger.kernel.org
5951 T:      git git://linuxtv.org/media_tree.git
5952 W:      http://linuxtv.org
5953 S:      Maintained
5954 F:      drivers/media/radio/radio-keene*
5955
5956 KERNEL AUTOMOUNTER v4 (AUTOFS4)
5957 M:      Ian Kent <raven@themaw.net>
5958 L:      autofs@vger.kernel.org
5959 S:      Maintained
5960 F:      fs/autofs4/
5961
5962 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
5963 M:      Michal Marek <mmarek@suse.com>
5964 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
5965 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
5966 L:      linux-kbuild@vger.kernel.org
5967 S:      Maintained
5968 F:      Documentation/kbuild/
5969 F:      Makefile
5970 F:      scripts/Makefile.*
5971 F:      scripts/basic/
5972 F:      scripts/mk*
5973 F:      scripts/package/
5974
5975 KERNEL JANITORS
5976 L:      kernel-janitors@vger.kernel.org
5977 W:      http://kernelnewbies.org/KernelJanitors
5978 S:      Odd Fixes
5979
5980 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
5981 M:      "J. Bruce Fields" <bfields@fieldses.org>
5982 M:      Jeff Layton <jlayton@poochiereds.net>
5983 L:      linux-nfs@vger.kernel.org
5984 W:      http://nfs.sourceforge.net/
5985 S:      Supported
5986 F:      fs/nfsd/
5987 F:      include/uapi/linux/nfsd/
5988 F:      fs/lockd/
5989 F:      fs/nfs_common/
5990 F:      net/sunrpc/
5991 F:      include/linux/lockd/
5992 F:      include/linux/sunrpc/
5993 F:      include/uapi/linux/sunrpc/
5994
5995 KERNEL SELFTEST FRAMEWORK
5996 M:      Shuah Khan <shuahkh@osg.samsung.com>
5997 L:      linux-api@vger.kernel.org
5998 T:      git git://git.kernel.org/pub/scm/shuah/linux-kselftest
5999 S:      Maintained
6000 F:      tools/testing/selftests
6001
6002 KERNEL VIRTUAL MACHINE (KVM)
6003 M:      Gleb Natapov <gleb@kernel.org>
6004 M:      Paolo Bonzini <pbonzini@redhat.com>
6005 L:      kvm@vger.kernel.org
6006 W:      http://www.linux-kvm.org
6007 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
6008 S:      Supported
6009 F:      Documentation/*/kvm*.txt
6010 F:      Documentation/virtual/kvm/
6011 F:      arch/*/kvm/
6012 F:      arch/x86/kernel/kvm.c
6013 F:      arch/x86/kernel/kvmclock.c
6014 F:      arch/*/include/asm/kvm*
6015 F:      include/linux/kvm*
6016 F:      include/uapi/linux/kvm*
6017 F:      virt/kvm/
6018
6019 KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
6020 M:      Joerg Roedel <joro@8bytes.org>
6021 L:      kvm@vger.kernel.org
6022 W:      http://www.linux-kvm.org/
6023 S:      Maintained
6024 F:      arch/x86/include/asm/svm.h
6025 F:      arch/x86/kvm/svm.c
6026
6027 KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
6028 M:      Alexander Graf <agraf@suse.com>
6029 L:      kvm-ppc@vger.kernel.org
6030 W:      http://www.linux-kvm.org/
6031 T:      git git://github.com/agraf/linux-2.6.git
6032 S:      Supported
6033 F:      arch/powerpc/include/asm/kvm*
6034 F:      arch/powerpc/kvm/
6035
6036 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
6037 M:      Christian Borntraeger <borntraeger@de.ibm.com>
6038 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
6039 L:      linux-s390@vger.kernel.org
6040 W:      http://www.ibm.com/developerworks/linux/linux390/
6041 S:      Supported
6042 F:      Documentation/s390/kvm.txt
6043 F:      arch/s390/include/asm/kvm*
6044 F:      arch/s390/kvm/
6045
6046 KERNEL VIRTUAL MACHINE (KVM) FOR ARM
6047 M:      Christoffer Dall <christoffer.dall@linaro.org>
6048 M:      Marc Zyngier <marc.zyngier@arm.com>
6049 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6050 L:      kvmarm@lists.cs.columbia.edu
6051 W:      http://systems.cs.columbia.edu/projects/kvm-arm
6052 S:      Supported
6053 F:      arch/arm/include/uapi/asm/kvm*
6054 F:      arch/arm/include/asm/kvm*
6055 F:      arch/arm/kvm/
6056 F:      virt/kvm/arm/
6057 F:      include/kvm/arm_*
6058
6059 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
6060 M:      Christoffer Dall <christoffer.dall@linaro.org>
6061 M:      Marc Zyngier <marc.zyngier@arm.com>
6062 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6063 L:      kvmarm@lists.cs.columbia.edu
6064 S:      Maintained
6065 F:      arch/arm64/include/uapi/asm/kvm*
6066 F:      arch/arm64/include/asm/kvm*
6067 F:      arch/arm64/kvm/
6068
6069 KEXEC
6070 M:      Eric Biederman <ebiederm@xmission.com>
6071 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
6072 L:      kexec@lists.infradead.org
6073 S:      Maintained
6074 F:      include/linux/kexec.h
6075 F:      include/uapi/linux/kexec.h
6076 F:      kernel/kexec.c
6077
6078 KEYS/KEYRINGS:
6079 M:      David Howells <dhowells@redhat.com>
6080 L:      keyrings@vger.kernel.org
6081 S:      Maintained
6082 F:      Documentation/security/keys.txt
6083 F:      include/linux/key.h
6084 F:      include/linux/key-type.h
6085 F:      include/keys/
6086 F:      security/keys/
6087
6088 KEYS-TRUSTED
6089 M:      David Safford <safford@us.ibm.com>
6090 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6091 L:      linux-security-module@vger.kernel.org
6092 L:      keyrings@vger.kernel.org
6093 S:      Supported
6094 F:      Documentation/security/keys-trusted-encrypted.txt
6095 F:      include/keys/trusted-type.h
6096 F:      security/keys/trusted.c
6097 F:      security/keys/trusted.h
6098
6099 KEYS-ENCRYPTED
6100 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6101 M:      David Safford <safford@us.ibm.com>
6102 L:      linux-security-module@vger.kernel.org
6103 L:      keyrings@vger.kernel.org
6104 S:      Supported
6105 F:      Documentation/security/keys-trusted-encrypted.txt
6106 F:      include/keys/encrypted-type.h
6107 F:      security/keys/encrypted-keys/
6108
6109 KGDB / KDB /debug_core
6110 M:      Jason Wessel <jason.wessel@windriver.com>
6111 W:      http://kgdb.wiki.kernel.org/
6112 L:      kgdb-bugreport@lists.sourceforge.net
6113 S:      Maintained
6114 F:      Documentation/DocBook/kgdb.tmpl
6115 F:      drivers/misc/kgdbts.c
6116 F:      drivers/tty/serial/kgdboc.c
6117 F:      include/linux/kdb.h
6118 F:      include/linux/kgdb.h
6119 F:      kernel/debug/
6120
6121 KMEMCHECK
6122 M:      Vegard Nossum <vegardno@ifi.uio.no>
6123 M:      Pekka Enberg <penberg@kernel.org>
6124 S:      Maintained
6125 F:      Documentation/kmemcheck.txt
6126 F:      arch/x86/include/asm/kmemcheck.h
6127 F:      arch/x86/mm/kmemcheck/
6128 F:      include/linux/kmemcheck.h
6129 F:      mm/kmemcheck.c
6130
6131 KMEMLEAK
6132 M:      Catalin Marinas <catalin.marinas@arm.com>
6133 S:      Maintained
6134 F:      Documentation/kmemleak.txt
6135 F:      include/linux/kmemleak.h
6136 F:      mm/kmemleak.c
6137 F:      mm/kmemleak-test.c
6138
6139 KPROBES
6140 M:      Ananth N Mavinakayanahalli <ananth@in.ibm.com>
6141 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
6142 M:      "David S. Miller" <davem@davemloft.net>
6143 M:      Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
6144 S:      Maintained
6145 F:      Documentation/kprobes.txt
6146 F:      include/linux/kprobes.h
6147 F:      kernel/kprobes.c
6148
6149 KS0108 LCD CONTROLLER DRIVER
6150 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
6151 W:      http://miguelojeda.es/auxdisplay.htm
6152 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
6153 S:      Maintained
6154 F:      Documentation/auxdisplay/ks0108
6155 F:      drivers/auxdisplay/ks0108.c
6156 F:      include/linux/ks0108.h
6157
6158 L3MDEV
6159 M:      David Ahern <dsa@cumulusnetworks.com>
6160 L:      netdev@vger.kernel.org
6161 S:      Maintained
6162 F:      net/l3mdev
6163 F:      include/net/l3mdev.h
6164
6165 LAPB module
6166 L:      linux-x25@vger.kernel.org
6167 S:      Orphan
6168 F:      Documentation/networking/lapb-module.txt
6169 F:      include/*/lapb.h
6170 F:      net/lapb/
6171
6172 LASI 53c700 driver for PARISC
6173 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
6174 L:      linux-scsi@vger.kernel.org
6175 S:      Maintained
6176 F:      Documentation/scsi/53c700.txt
6177 F:      drivers/scsi/53c700*
6178
6179 LED SUBSYSTEM
6180 M:      Richard Purdie <rpurdie@rpsys.net>
6181 M:      Jacek Anaszewski <j.anaszewski@samsung.com>
6182 L:      linux-leds@vger.kernel.org
6183 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
6184 S:      Maintained
6185 F:      drivers/leds/
6186 F:      include/linux/leds.h
6187
6188 LEGACY EEPROM DRIVER
6189 M:      Jean Delvare <jdelvare@suse.com>
6190 S:      Maintained
6191 F:      Documentation/misc-devices/eeprom
6192 F:      drivers/misc/eeprom/eeprom.c
6193
6194 LEGO USB Tower driver
6195 M:      Juergen Stuber <starblue@users.sourceforge.net>
6196 L:      legousb-devel@lists.sourceforge.net
6197 W:      http://legousb.sourceforge.net/
6198 S:      Maintained
6199 F:      drivers/usb/misc/legousbtower.c
6200
6201 LG2160 MEDIA DRIVER
6202 M:      Michael Krufky <mkrufky@linuxtv.org>
6203 L:      linux-media@vger.kernel.org
6204 W:      http://linuxtv.org/
6205 W:      http://github.com/mkrufky
6206 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6207 T:      git git://linuxtv.org/mkrufky/tuners.git
6208 S:      Maintained
6209 F:      drivers/media/dvb-frontends/lg2160.*
6210
6211 LGDT3305 MEDIA DRIVER
6212 M:      Michael Krufky <mkrufky@linuxtv.org>
6213 L:      linux-media@vger.kernel.org
6214 W:      http://linuxtv.org/
6215 W:      http://github.com/mkrufky
6216 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6217 T:      git git://linuxtv.org/mkrufky/tuners.git
6218 S:      Maintained
6219 F:      drivers/media/dvb-frontends/lgdt3305.*
6220
6221 LGUEST
6222 M:      Rusty Russell <rusty@rustcorp.com.au>
6223 L:      lguest@lists.ozlabs.org
6224 W:      http://lguest.ozlabs.org/
6225 S:      Odd Fixes
6226 F:      arch/x86/include/asm/lguest*.h
6227 F:      arch/x86/lguest/
6228 F:      drivers/lguest/
6229 F:      include/linux/lguest*.h
6230 F:      tools/lguest/
6231
6232 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
6233 M:      Tejun Heo <tj@kernel.org>
6234 L:      linux-ide@vger.kernel.org
6235 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6236 S:      Maintained
6237 F:      drivers/ata/
6238 F:      include/linux/ata.h
6239 F:      include/linux/libata.h
6240
6241 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
6242 M:      Viresh Kumar <vireshk@kernel.org>
6243 L:      linux-ide@vger.kernel.org
6244 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6245 S:      Maintained
6246 F:      include/linux/pata_arasan_cf_data.h
6247 F:      drivers/ata/pata_arasan_cf.c
6248
6249 LIBATA PATA DRIVERS
6250 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6251 M:      Tejun Heo <tj@kernel.org>
6252 L:      linux-ide@vger.kernel.org
6253 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6254 S:      Maintained
6255 F:      drivers/ata/pata_*.c
6256 F:      drivers/ata/ata_generic.c
6257
6258 LIBATA SATA AHCI PLATFORM devices support
6259 M:      Hans de Goede <hdegoede@redhat.com>
6260 M:      Tejun Heo <tj@kernel.org>
6261 L:      linux-ide@vger.kernel.org
6262 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6263 S:      Maintained
6264 F:      drivers/ata/ahci_platform.c
6265 F:      drivers/ata/libahci_platform.c
6266 F:      include/linux/ahci_platform.h
6267
6268 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
6269 M:      Mikael Pettersson <mikpelinux@gmail.com>
6270 L:      linux-ide@vger.kernel.org
6271 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6272 S:      Maintained
6273 F:      drivers/ata/sata_promise.*
6274
6275 LIBLOCKDEP
6276 M:      Sasha Levin <sasha.levin@oracle.com>
6277 S:      Maintained
6278 F:      tools/lib/lockdep/
6279
6280 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
6281 M:      Dan Williams <dan.j.williams@intel.com>
6282 L:      linux-nvdimm@lists.01.org
6283 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6284 S:      Supported
6285 F:      drivers/nvdimm/*
6286 F:      include/linux/nd.h
6287 F:      include/linux/libnvdimm.h
6288 F:      include/uapi/linux/ndctl.h
6289
6290 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
6291 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6292 L:      linux-nvdimm@lists.01.org
6293 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6294 S:      Supported
6295 F:      drivers/nvdimm/blk.c
6296 F:      drivers/nvdimm/region_devs.c
6297 F:      drivers/acpi/nfit*
6298
6299 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
6300 M:      Vishal Verma <vishal.l.verma@intel.com>
6301 L:      linux-nvdimm@lists.01.org
6302 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6303 S:      Supported
6304 F:      drivers/nvdimm/btt*
6305
6306 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
6307 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6308 L:      linux-nvdimm@lists.01.org
6309 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6310 S:      Supported
6311 F:      drivers/nvdimm/pmem.c
6312 F:      include/linux/pmem.h
6313 F:      arch/*/include/asm/pmem.h
6314
6315 LIGHTNVM PLATFORM SUPPORT
6316 M:      Matias Bjorling <mb@lightnvm.io>
6317 W:      http://github/OpenChannelSSD
6318 S:      Maintained
6319 F:      drivers/lightnvm/
6320 F:      include/linux/lightnvm.h
6321 F:      include/uapi/linux/lightnvm.h
6322
6323 LINUX FOR IBM pSERIES (RS/6000)
6324 M:      Paul Mackerras <paulus@au.ibm.com>
6325 W:      http://www.ibm.com/linux/ltc/projects/ppc
6326 S:      Supported
6327 F:      arch/powerpc/boot/rs6000.h
6328
6329 LINUX FOR POWERPC (32-BIT AND 64-BIT)
6330 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6331 M:      Paul Mackerras <paulus@samba.org>
6332 M:      Michael Ellerman <mpe@ellerman.id.au>
6333 W:      http://www.penguinppc.org/
6334 L:      linuxppc-dev@lists.ozlabs.org
6335 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
6336 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
6337 S:      Supported
6338 F:      Documentation/powerpc/
6339 F:      arch/powerpc/
6340
6341 LINUX FOR POWER MACINTOSH
6342 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6343 W:      http://www.penguinppc.org/
6344 L:      linuxppc-dev@lists.ozlabs.org
6345 S:      Maintained
6346 F:      arch/powerpc/platforms/powermac/
6347 F:      drivers/macintosh/
6348
6349 LINUX FOR POWERPC EMBEDDED MPC5XXX
6350 M:      Anatolij Gustschin <agust@denx.de>
6351 L:      linuxppc-dev@lists.ozlabs.org
6352 T:      git git://git.denx.de/linux-denx-agust.git
6353 S:      Maintained
6354 F:      arch/powerpc/platforms/512x/
6355 F:      arch/powerpc/platforms/52xx/
6356
6357 LINUX FOR POWERPC EMBEDDED PPC4XX
6358 M:      Alistair Popple <alistair@popple.id.au>
6359 M:      Matt Porter <mporter@kernel.crashing.org>
6360 W:      http://www.penguinppc.org/
6361 L:      linuxppc-dev@lists.ozlabs.org
6362 S:      Maintained
6363 F:      arch/powerpc/platforms/40x/
6364 F:      arch/powerpc/platforms/44x/
6365
6366 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
6367 L:      linuxppc-dev@lists.ozlabs.org
6368 S:      Orphan
6369 F:      arch/powerpc/*/*virtex*
6370 F:      arch/powerpc/*/*/*virtex*
6371
6372 LINUX FOR POWERPC EMBEDDED PPC8XX
6373 M:      Vitaly Bordug <vitb@kernel.crashing.org>
6374 W:      http://www.penguinppc.org/
6375 L:      linuxppc-dev@lists.ozlabs.org
6376 S:      Maintained
6377 F:      arch/powerpc/platforms/8xx/
6378
6379 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
6380 M:      Scott Wood <scottwood@freescale.com>
6381 M:      Kumar Gala <galak@kernel.crashing.org>
6382 W:      http://www.penguinppc.org/
6383 L:      linuxppc-dev@lists.ozlabs.org
6384 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
6385 S:      Maintained
6386 F:      arch/powerpc/platforms/83xx/
6387 F:      arch/powerpc/platforms/85xx/
6388
6389 LINUX FOR POWERPC PA SEMI PWRFICIENT
6390 M:      Olof Johansson <olof@lixom.net>
6391 L:      linuxppc-dev@lists.ozlabs.org
6392 S:      Maintained
6393 F:      arch/powerpc/platforms/pasemi/
6394 F:      drivers/*/*pasemi*
6395 F:      drivers/*/*/*pasemi*
6396
6397 LINUX SECURITY MODULE (LSM) FRAMEWORK
6398 M:      Chris Wright <chrisw@sous-sol.org>
6399 L:      linux-security-module@vger.kernel.org
6400 S:      Supported
6401
6402 LIS3LV02D ACCELEROMETER DRIVER
6403 M:      Eric Piel <eric.piel@tremplin-utc.net>
6404 S:      Maintained
6405 F:      Documentation/misc-devices/lis3lv02d
6406 F:      drivers/misc/lis3lv02d/
6407 F:      drivers/platform/x86/hp_accel.c
6408
6409 LIVE PATCHING
6410 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6411 M:      Seth Jennings <sjenning@redhat.com>
6412 M:      Jiri Kosina <jikos@kernel.org>
6413 M:      Vojtech Pavlik <vojtech@suse.com>
6414 S:      Maintained
6415 F:      kernel/livepatch/
6416 F:      include/linux/livepatch.h
6417 F:      arch/x86/include/asm/livepatch.h
6418 F:      arch/x86/kernel/livepatch.c
6419 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
6420 F:      samples/livepatch/
6421 L:      live-patching@vger.kernel.org
6422 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
6423
6424 LLC (802.2)
6425 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
6426 S:      Maintained
6427 F:      include/linux/llc.h
6428 F:      include/uapi/linux/llc.h
6429 F:      include/net/llc*
6430 F:      net/llc/
6431
6432 LM73 HARDWARE MONITOR DRIVER
6433 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
6434 L:      lm-sensors@lm-sensors.org
6435 S:      Maintained
6436 F:      drivers/hwmon/lm73.c
6437
6438 LM78 HARDWARE MONITOR DRIVER
6439 M:      Jean Delvare <jdelvare@suse.com>
6440 L:      lm-sensors@lm-sensors.org
6441 S:      Maintained
6442 F:      Documentation/hwmon/lm78
6443 F:      drivers/hwmon/lm78.c
6444
6445 LM83 HARDWARE MONITOR DRIVER
6446 M:      Jean Delvare <jdelvare@suse.com>
6447 L:      lm-sensors@lm-sensors.org
6448 S:      Maintained
6449 F:      Documentation/hwmon/lm83
6450 F:      drivers/hwmon/lm83.c
6451
6452 LM90 HARDWARE MONITOR DRIVER
6453 M:      Jean Delvare <jdelvare@suse.com>
6454 L:      lm-sensors@lm-sensors.org
6455 S:      Maintained
6456 F:      Documentation/hwmon/lm90
6457 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
6458 F:      drivers/hwmon/lm90.c
6459
6460 LM95234 HARDWARE MONITOR DRIVER
6461 M:      Guenter Roeck <linux@roeck-us.net>
6462 L:      lm-sensors@lm-sensors.org
6463 S:      Maintained
6464 F:      Documentation/hwmon/lm95234
6465 F:      drivers/hwmon/lm95234.c
6466
6467 LME2510 MEDIA DRIVER
6468 M:      Malcolm Priestley <tvboxspy@gmail.com>
6469 L:      linux-media@vger.kernel.org
6470 W:      http://linuxtv.org/
6471 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6472 S:      Maintained
6473 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
6474
6475 LOCKDEP AND LOCKSTAT
6476 M:      Peter Zijlstra <peterz@infradead.org>
6477 M:      Ingo Molnar <mingo@redhat.com>
6478 L:      linux-kernel@vger.kernel.org
6479 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
6480 S:      Maintained
6481 F:      Documentation/locking/lockdep*.txt
6482 F:      Documentation/locking/lockstat.txt
6483 F:      include/linux/lockdep.h
6484 F:      kernel/locking/
6485
6486 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
6487 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
6488 L:      linux-ntfs-dev@lists.sourceforge.net
6489 W:      http://www.linux-ntfs.org/content/view/19/37/
6490 S:      Maintained
6491 F:      Documentation/ldm.txt
6492 F:      block/partitions/ldm.*
6493
6494 LogFS
6495 M:      Joern Engel <joern@logfs.org>
6496 M:      Prasad Joshi <prasadjoshi.linux@gmail.com>
6497 L:      logfs@logfs.org
6498 W:      logfs.org
6499 S:      Maintained
6500 F:      fs/logfs/
6501
6502 LPC32XX MACHINE SUPPORT
6503 M:      Roland Stigge <stigge@antcom.de>
6504 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6505 S:      Maintained
6506 F:      arch/arm/mach-lpc32xx/
6507
6508 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
6509 M:      Nagalakshmi Nandigama <nagalakshmi.nandigama@avagotech.com>
6510 M:      Praveen Krishnamoorthy <praveen.krishnamoorthy@avagotech.com>
6511 M:      Sreekanth Reddy <sreekanth.reddy@avagotech.com>
6512 M:      Abhijit Mahajan <abhijit.mahajan@avagotech.com>
6513 L:      MPT-FusionLinux.pdl@avagotech.com
6514 L:      linux-scsi@vger.kernel.org
6515 W:      http://www.lsilogic.com/support
6516 S:      Supported
6517 F:      drivers/message/fusion/
6518 F:      drivers/scsi/mpt2sas/
6519 F:      drivers/scsi/mpt3sas/
6520
6521 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
6522 M:      Matthew Wilcox <matthew@wil.cx>
6523 L:      linux-scsi@vger.kernel.org
6524 S:      Maintained
6525 F:      drivers/scsi/sym53c8xx_2/
6526
6527 LTC4261 HARDWARE MONITOR DRIVER
6528 M:      Guenter Roeck <linux@roeck-us.net>
6529 L:      lm-sensors@lm-sensors.org
6530 S:      Maintained
6531 F:      Documentation/hwmon/ltc4261
6532 F:      drivers/hwmon/ltc4261.c
6533
6534 LTP (Linux Test Project)
6535 M:      Mike Frysinger <vapier@gentoo.org>
6536 M:      Cyril Hrubis <chrubis@suse.cz>
6537 M:      Wanlong Gao <wanlong.gao@gmail.com>
6538 M:      Jan Stancek <jstancek@redhat.com>
6539 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
6540 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
6541 L:      ltp@lists.linux.it (subscribers-only)
6542 W:      http://linux-test-project.github.io/
6543 T:      git git://github.com/linux-test-project/ltp.git
6544 S:      Maintained
6545
6546 M32R ARCHITECTURE
6547 W:      http://www.linux-m32r.org/
6548 S:      Orphan
6549 F:      arch/m32r/
6550
6551 M68K ARCHITECTURE
6552 M:      Geert Uytterhoeven <geert@linux-m68k.org>
6553 L:      linux-m68k@lists.linux-m68k.org
6554 W:      http://www.linux-m68k.org/
6555 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
6556 S:      Maintained
6557 F:      arch/m68k/
6558 F:      drivers/zorro/
6559
6560 M68K ON APPLE MACINTOSH
6561 M:      Joshua Thompson <funaho@jurai.org>
6562 W:      http://www.mac.linux-m68k.org/
6563 L:      linux-m68k@lists.linux-m68k.org
6564 S:      Maintained
6565 F:      arch/m68k/mac/
6566
6567 M68K ON HP9000/300
6568 M:      Philip Blundell <philb@gnu.org>
6569 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
6570 S:      Maintained
6571 F:      arch/m68k/hp300/
6572
6573 M88DS3103 MEDIA DRIVER
6574 M:      Antti Palosaari <crope@iki.fi>
6575 L:      linux-media@vger.kernel.org
6576 W:      http://linuxtv.org/
6577 W:      http://palosaari.fi/linux/
6578 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6579 T:      git git://linuxtv.org/anttip/media_tree.git
6580 S:      Maintained
6581 F:      drivers/media/dvb-frontends/m88ds3103*
6582
6583 M88RS2000 MEDIA DRIVER
6584 M:      Malcolm Priestley <tvboxspy@gmail.com>
6585 L:      linux-media@vger.kernel.org
6586 W:      http://linuxtv.org/
6587 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6588 S:      Maintained
6589 F:      drivers/media/dvb-frontends/m88rs2000*
6590
6591 MA901 MASTERKIT USB FM RADIO DRIVER
6592 M:      Alexey Klimov <klimov.linux@gmail.com>
6593 L:      linux-media@vger.kernel.org
6594 T:      git git://linuxtv.org/media_tree.git
6595 S:      Maintained
6596 F:      drivers/media/radio/radio-ma901.c
6597
6598 MAC80211
6599 M:      Johannes Berg <johannes@sipsolutions.net>
6600 L:      linux-wireless@vger.kernel.org
6601 W:      http://wireless.kernel.org/
6602 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6603 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
6604 S:      Maintained
6605 F:      Documentation/networking/mac80211-injection.txt
6606 F:      include/net/mac80211.h
6607 F:      net/mac80211/
6608
6609 MACVLAN DRIVER
6610 M:      Patrick McHardy <kaber@trash.net>
6611 L:      netdev@vger.kernel.org
6612 S:      Maintained
6613 F:      drivers/net/macvlan.c
6614 F:      include/linux/if_macvlan.h
6615
6616 MAILBOX API
6617 M:      Jassi Brar <jassisinghbrar@gmail.com>
6618 L:      linux-kernel@vger.kernel.org
6619 S:      Maintained
6620 F:      drivers/mailbox/
6621 F:      include/linux/mailbox_client.h
6622 F:      include/linux/mailbox_controller.h
6623
6624 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
6625 M:      Michael Kerrisk <mtk.manpages@gmail.com>
6626 W:      http://www.kernel.org/doc/man-pages
6627 L:      linux-man@vger.kernel.org
6628 S:      Maintained
6629
6630 MARVELL ARMADA DRM SUPPORT
6631 M:      Russell King <rmk+kernel@arm.linux.org.uk>
6632 S:      Maintained
6633 F:      drivers/gpu/drm/armada/
6634
6635 MARVELL 88E6352 DSA support
6636 M:      Guenter Roeck <linux@roeck-us.net>
6637 S:      Maintained
6638 F:      drivers/net/dsa/mv88e6352.c
6639
6640 MARVELL CRYPTO DRIVER
6641 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
6642 M:      Arnaud Ebalard <arno@natisbad.org>
6643 F:      drivers/crypto/marvell/
6644 S:      Maintained
6645 L:      linux-crypto@vger.kernel.org
6646
6647 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
6648 M:      Mirko Lindner <mlindner@marvell.com>
6649 M:      Stephen Hemminger <stephen@networkplumber.org>
6650 L:      netdev@vger.kernel.org
6651 S:      Maintained
6652 F:      drivers/net/ethernet/marvell/sk*
6653
6654 MARVELL LIBERTAS WIRELESS DRIVER
6655 L:      libertas-dev@lists.infradead.org
6656 S:      Orphan
6657 F:      drivers/net/wireless/libertas/
6658
6659 MARVELL MV643XX ETHERNET DRIVER
6660 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
6661 L:      netdev@vger.kernel.org
6662 S:      Maintained
6663 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
6664 F:      include/linux/mv643xx.h
6665
6666 MARVELL MVNETA ETHERNET DRIVER
6667 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
6668 L:      netdev@vger.kernel.org
6669 S:      Maintained
6670 F:      drivers/net/ethernet/marvell/mvneta.*
6671
6672 MARVELL MWIFIEX WIRELESS DRIVER
6673 M:      Amitkumar Karwar <akarwar@marvell.com>
6674 M:      Nishant Sarmukadam <nishants@marvell.com>
6675 L:      linux-wireless@vger.kernel.org
6676 S:      Maintained
6677 F:      drivers/net/wireless/mwifiex/
6678
6679 MARVELL MWL8K WIRELESS DRIVER
6680 M:      Lennert Buytenhek <buytenh@wantstofly.org>
6681 L:      linux-wireless@vger.kernel.org
6682 S:      Odd Fixes
6683 F:      drivers/net/wireless/mwl8k.c
6684
6685 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
6686 M:      Nicolas Pitre <nico@fluxnic.net>
6687 S:      Odd Fixes
6688 F:      drivers/mmc/host/mvsdio.*
6689
6690 MATROX FRAMEBUFFER DRIVER
6691 L:      linux-fbdev@vger.kernel.org
6692 S:      Orphan
6693 F:      drivers/video/fbdev/matrox/matroxfb_*
6694 F:      include/uapi/linux/matroxfb.h
6695
6696 MAX16065 HARDWARE MONITOR DRIVER
6697 M:      Guenter Roeck <linux@roeck-us.net>
6698 L:      lm-sensors@lm-sensors.org
6699 S:      Maintained
6700 F:      Documentation/hwmon/max16065
6701 F:      drivers/hwmon/max16065.c
6702
6703 MAX20751 HARDWARE MONITOR DRIVER
6704 M:      Guenter Roeck <linux@roeck-us.net>
6705 L:      lm-sensors@lm-sensors.org
6706 S:      Maintained
6707 F:      Documentation/hwmon/max20751
6708 F:      drivers/hwmon/max20751.c
6709
6710 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6711 M:      "Hans J. Koch" <hjk@hansjkoch.de>
6712 L:      lm-sensors@lm-sensors.org
6713 S:      Maintained
6714 F:      Documentation/hwmon/max6650
6715 F:      drivers/hwmon/max6650.c
6716
6717 MAX6697 HARDWARE MONITOR DRIVER
6718 M:      Guenter Roeck <linux@roeck-us.net>
6719 L:      lm-sensors@lm-sensors.org
6720 S:      Maintained
6721 F:      Documentation/hwmon/max6697
6722 F:      Documentation/devicetree/bindings/i2c/max6697.txt
6723 F:      drivers/hwmon/max6697.c
6724 F:      include/linux/platform_data/max6697.h
6725
6726 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
6727 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6728 L:      linux-pm@vger.kernel.org
6729 S:      Supported
6730 F:      drivers/power/max14577_charger.c
6731 F:      drivers/power/max77693_charger.c
6732
6733 MAXIM MAX77802 MULTIFUNCTION PMIC DEVICE DRIVERS
6734 M:      Javier Martinez Canillas <javier@osg.samsung.com>
6735 L:      linux-kernel@vger.kernel.org
6736 S:      Supported
6737 F:      drivers/*/*max77802.c
6738 F:      Documentation/devicetree/bindings/*/*max77802.txt
6739 F:      include/dt-bindings/*/*max77802.h
6740
6741 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
6742 M:      Chanwoo Choi <cw00.choi@samsung.com>
6743 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6744 L:      linux-kernel@vger.kernel.org
6745 S:      Supported
6746 F:      drivers/*/max14577.c
6747 F:      drivers/*/max77686.c
6748 F:      drivers/*/max77693.c
6749 F:      drivers/extcon/extcon-max14577.c
6750 F:      drivers/extcon/extcon-max77693.c
6751 F:      drivers/rtc/rtc-max77686.c
6752 F:      drivers/clk/clk-max77686.c
6753 F:      Documentation/devicetree/bindings/mfd/max14577.txt
6754 F:      Documentation/devicetree/bindings/*/max77686.txt
6755 F:      Documentation/devicetree/bindings/mfd/max77693.txt
6756 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
6757 F:      include/linux/mfd/max14577*.h
6758 F:      include/linux/mfd/max77686*.h
6759 F:      include/linux/mfd/max77693*.h
6760
6761 MAXIRADIO FM RADIO RECEIVER DRIVER
6762 M:      Hans Verkuil <hverkuil@xs4all.nl>
6763 L:      linux-media@vger.kernel.org
6764 T:      git git://linuxtv.org/media_tree.git
6765 W:      http://linuxtv.org
6766 S:      Maintained
6767 F:      drivers/media/radio/radio-maxiradio*
6768
6769 MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVER
6770 M:      Peter Rosin <peda@axentia.se>
6771 L:      linux-iio@vger.kernel.org
6772 S:      Maintained
6773 F:      drivers/iio/potentiometer/mcp4531.c
6774
6775 MEDIA DRIVERS FOR RENESAS - VSP1
6776 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6777 L:      linux-media@vger.kernel.org
6778 L:      linux-sh@vger.kernel.org
6779 T:      git git://linuxtv.org/media_tree.git
6780 S:      Supported
6781 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
6782 F:      drivers/media/platform/vsp1/
6783
6784 MEDIA DRIVERS FOR ASCOT2E
6785 M:      Sergey Kozlov <serjk@netup.ru>
6786 L:      linux-media@vger.kernel.org
6787 W:      http://linuxtv.org
6788 W:      http://netup.tv/
6789 T:      git git://linuxtv.org/media_tree.git
6790 S:      Supported
6791 F:      drivers/media/dvb-frontends/ascot2e*
6792
6793 MEDIA DRIVERS FOR CXD2841ER
6794 M:      Sergey Kozlov <serjk@netup.ru>
6795 L:      linux-media@vger.kernel.org
6796 W:      http://linuxtv.org/
6797 W:      http://netup.tv/
6798 T:      git git://linuxtv.org/media_tree.git
6799 S:      Supported
6800 F:      drivers/media/dvb-frontends/cxd2841er*
6801
6802 MEDIA DRIVERS FOR HORUS3A
6803 M:      Sergey Kozlov <serjk@netup.ru>
6804 L:      linux-media@vger.kernel.org
6805 W:      http://linuxtv.org/
6806 W:      http://netup.tv/
6807 T:      git git://linuxtv.org/media_tree.git
6808 S:      Supported
6809 F:      drivers/media/dvb-frontends/horus3a*
6810
6811 MEDIA DRIVERS FOR LNBH25
6812 M:      Sergey Kozlov <serjk@netup.ru>
6813 L:      linux-media@vger.kernel.org
6814 W:      http://linuxtv.org/
6815 W:      http://netup.tv/
6816 T:      git git://linuxtv.org/media_tree.git
6817 S:      Supported
6818 F:      drivers/media/dvb-frontends/lnbh25*
6819
6820 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
6821 M:      Sergey Kozlov <serjk@netup.ru>
6822 L:      linux-media@vger.kernel.org
6823 W:      http://linuxtv.org/
6824 W:      http://netup.tv/
6825 T:      git git://linuxtv.org/media_tree.git
6826 S:      Supported
6827 F:      drivers/media/pci/netup_unidvb/*
6828
6829 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
6830 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
6831 P:      LinuxTV.org Project
6832 L:      linux-media@vger.kernel.org
6833 W:      http://linuxtv.org
6834 Q:      http://patchwork.kernel.org/project/linux-media/list/
6835 T:      git git://linuxtv.org/media_tree.git
6836 S:      Maintained
6837 F:      Documentation/dvb/
6838 F:      Documentation/video4linux/
6839 F:      Documentation/DocBook/media/
6840 F:      drivers/media/
6841 F:      drivers/staging/media/
6842 F:      include/media/
6843 F:      include/uapi/linux/dvb/
6844 F:      include/uapi/linux/videodev2.h
6845 F:      include/uapi/linux/media.h
6846 F:      include/uapi/linux/v4l2-*
6847 F:      include/uapi/linux/meye.h
6848 F:      include/uapi/linux/ivtv*
6849 F:      include/uapi/linux/uvcvideo.h
6850
6851 MEDIATEK MT7601U WIRELESS LAN DRIVER
6852 M:      Jakub Kicinski <kubakici@wp.pl>
6853 L:      linux-wireless@vger.kernel.org
6854 S:      Maintained
6855 F:      drivers/net/wireless/mediatek/mt7601u/
6856
6857 MEGARAID SCSI/SAS DRIVERS
6858 M:      Kashyap Desai <kashyap.desai@avagotech.com>
6859 M:      Sumit Saxena <sumit.saxena@avagotech.com>
6860 M:      Uday Lingala <uday.lingala@avagotech.com>
6861 L:      megaraidlinux.pdl@avagotech.com
6862 L:      linux-scsi@vger.kernel.org
6863 W:      http://www.lsi.com
6864 S:      Maintained
6865 F:      Documentation/scsi/megaraid.txt
6866 F:      drivers/scsi/megaraid.*
6867 F:      drivers/scsi/megaraid/
6868
6869 MELLANOX ETHERNET DRIVER (mlx4_en)
6870 M:      Amir Vadai <amirv@mellanox.com>
6871 L:      netdev@vger.kernel.org
6872 S:      Supported
6873 W:      http://www.mellanox.com
6874 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6875 F:      drivers/net/ethernet/mellanox/mlx4/en_*
6876
6877 MELLANOX ETHERNET SWITCH DRIVERS
6878 M:      Jiri Pirko <jiri@mellanox.com>
6879 M:      Ido Schimmel <idosch@mellanox.com>
6880 L:      netdev@vger.kernel.org
6881 S:      Supported
6882 W:      http://www.mellanox.com
6883 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6884 F:      drivers/net/ethernet/mellanox/mlxsw/
6885
6886 MEMBARRIER SUPPORT
6887 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
6888 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
6889 L:      linux-kernel@vger.kernel.org
6890 S:      Supported
6891 F:      kernel/membarrier.c
6892 F:      include/uapi/linux/membarrier.h
6893
6894 MEMORY MANAGEMENT
6895 L:      linux-mm@kvack.org
6896 W:      http://www.linux-mm.org
6897 S:      Maintained
6898 F:      include/linux/mm.h
6899 F:      include/linux/gfp.h
6900 F:      include/linux/mmzone.h
6901 F:      include/linux/memory_hotplug.h
6902 F:      include/linux/vmalloc.h
6903 F:      mm/
6904
6905 MEMORY TECHNOLOGY DEVICES (MTD)
6906 M:      David Woodhouse <dwmw2@infradead.org>
6907 M:      Brian Norris <computersforpeace@gmail.com>
6908 L:      linux-mtd@lists.infradead.org
6909 W:      http://www.linux-mtd.infradead.org/
6910 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
6911 T:      git git://git.infradead.org/linux-mtd.git
6912 T:      git git://git.infradead.org/l2-mtd.git
6913 S:      Maintained
6914 F:      drivers/mtd/
6915 F:      include/linux/mtd/
6916 F:      include/uapi/mtd/
6917
6918 MEN A21 WATCHDOG DRIVER
6919 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6920 L:      linux-watchdog@vger.kernel.org
6921 S:      Maintained
6922 F:      drivers/watchdog/mena21_wdt.c
6923
6924 MEN CHAMELEON BUS (mcb)
6925 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6926 S:      Maintained
6927 F:      drivers/mcb/
6928 F:      include/linux/mcb.h
6929 F:      Documentation/men-chameleon-bus.txt
6930
6931 MEN F21BMC (Board Management Controller)
6932 M:      Andreas Werner <andreas.werner@men.de>
6933 S:      Supported
6934 F:      drivers/mfd/menf21bmc.c
6935 F:      drivers/watchdog/menf21bmc_wdt.c
6936 F:      drivers/leds/leds-menf21bmc.c
6937 F:      drivers/hwmon/menf21bmc_hwmon.c
6938 F:      Documentation/hwmon/menf21bmc
6939
6940 METAG ARCHITECTURE
6941 M:      James Hogan <james.hogan@imgtec.com>
6942 L:      linux-metag@vger.kernel.org
6943 S:      Supported
6944 F:      arch/metag/
6945 F:      Documentation/metag/
6946 F:      Documentation/devicetree/bindings/metag/
6947 F:      drivers/clocksource/metag_generic.c
6948 F:      drivers/irqchip/irq-metag.c
6949 F:      drivers/irqchip/irq-metag-ext.c
6950 F:      drivers/tty/metag_da.c
6951
6952 MICROBLAZE ARCHITECTURE
6953 M:      Michal Simek <monstr@monstr.eu>
6954 W:      http://www.monstr.eu/fdt/
6955 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
6956 S:      Supported
6957 F:      arch/microblaze/
6958
6959 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
6960 M:      Chen Yu <yu.c.chen@intel.com>
6961 L:      platform-driver-x86@vger.kernel.org
6962 S:      Supported
6963 F:      drivers/platform/x86/surfacepro3_button.c
6964
6965 MICROTEK X6 SCANNER
6966 M:      Oliver Neukum <oliver@neukum.org>
6967 S:      Maintained
6968 F:      drivers/usb/image/microtek.*
6969
6970 MIPS
6971 M:      Ralf Baechle <ralf@linux-mips.org>
6972 L:      linux-mips@linux-mips.org
6973 W:      http://www.linux-mips.org/
6974 T:      git git://git.linux-mips.org/pub/scm/ralf/linux.git
6975 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
6976 S:      Supported
6977 F:      Documentation/mips/
6978 F:      arch/mips/
6979
6980 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
6981 M:      Hans Verkuil <hverkuil@xs4all.nl>
6982 L:      linux-media@vger.kernel.org
6983 T:      git git://linuxtv.org/media_tree.git
6984 W:      http://linuxtv.org
6985 S:      Odd Fixes
6986 F:      drivers/media/radio/radio-miropcm20*
6987
6988 Mellanox MLX5 core VPI driver
6989 M:      Eli Cohen <eli@mellanox.com>
6990 L:      netdev@vger.kernel.org
6991 L:      linux-rdma@vger.kernel.org
6992 W:      http://www.mellanox.com
6993 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6994 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
6995 T:      git git://openfabrics.org/~eli/connect-ib.git
6996 S:      Supported
6997 F:      drivers/net/ethernet/mellanox/mlx5/core/
6998 F:      include/linux/mlx5/
6999
7000 Mellanox MLX5 IB driver
7001 M:      Eli Cohen <eli@mellanox.com>
7002 L:      linux-rdma@vger.kernel.org
7003 W:      http://www.mellanox.com
7004 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
7005 T:      git git://openfabrics.org/~eli/connect-ib.git
7006 S:      Supported
7007 F:      include/linux/mlx5/
7008 F:      drivers/infiniband/hw/mlx5/
7009
7010 MELEXIS MLX90614 DRIVER
7011 M:      Crt Mori <cmo@melexis.com>
7012 L:      linux-iio@vger.kernel.org
7013 W:      http://www.melexis.com
7014 S:      Supported
7015 F:      drivers/iio/temperature/mlx90614.c
7016
7017 MN88472 MEDIA DRIVER
7018 M:      Antti Palosaari <crope@iki.fi>
7019 L:      linux-media@vger.kernel.org
7020 W:      http://linuxtv.org/
7021 W:      http://palosaari.fi/linux/
7022 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7023 T:      git git://linuxtv.org/anttip/media_tree.git
7024 S:      Maintained
7025 F:      drivers/staging/media/mn88472/
7026 F:      drivers/media/dvb-frontends/mn88472.h
7027
7028 MN88473 MEDIA DRIVER
7029 M:      Antti Palosaari <crope@iki.fi>
7030 L:      linux-media@vger.kernel.org
7031 W:      http://linuxtv.org/
7032 W:      http://palosaari.fi/linux/
7033 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7034 T:      git git://linuxtv.org/anttip/media_tree.git
7035 S:      Maintained
7036 F:      drivers/staging/media/mn88473/
7037 F:      drivers/media/dvb-frontends/mn88473.h
7038
7039 MODULE SUPPORT
7040 M:      Rusty Russell <rusty@rustcorp.com.au>
7041 S:      Maintained
7042 F:      include/linux/module.h
7043 F:      kernel/module.c
7044
7045 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
7046 W:      http://popies.net/meye/
7047 S:      Orphan
7048 F:      Documentation/video4linux/meye.txt
7049 F:      drivers/media/pci/meye/
7050 F:      include/uapi/linux/meye.h
7051
7052 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
7053 M:      Jiri Slaby <jirislaby@gmail.com>
7054 S:      Maintained
7055 F:      Documentation/serial/moxa-smartio
7056 F:      drivers/tty/mxser.*
7057
7058 MR800 AVERMEDIA USB FM RADIO DRIVER
7059 M:      Alexey Klimov <klimov.linux@gmail.com>
7060 L:      linux-media@vger.kernel.org
7061 T:      git git://linuxtv.org/media_tree.git
7062 S:      Maintained
7063 F:      drivers/media/radio/radio-mr800.c
7064
7065 MRF24J40 IEEE 802.15.4 RADIO DRIVER
7066 M:      Alan Ott <alan@signal11.us>
7067 L:      linux-wpan@vger.kernel.org
7068 S:      Maintained
7069 F:      drivers/net/ieee802154/mrf24j40.c
7070 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
7071
7072 MSI LAPTOP SUPPORT
7073 M:      "Lee, Chun-Yi" <jlee@suse.com>
7074 L:      platform-driver-x86@vger.kernel.org
7075 S:      Maintained
7076 F:      drivers/platform/x86/msi-laptop.c
7077
7078 MSI WMI SUPPORT
7079 L:      platform-driver-x86@vger.kernel.org
7080 S:      Orphan
7081 F:      drivers/platform/x86/msi-wmi.c
7082
7083 MSI001 MEDIA DRIVER
7084 M:      Antti Palosaari <crope@iki.fi>
7085 L:      linux-media@vger.kernel.org
7086 W:      http://linuxtv.org/
7087 W:      http://palosaari.fi/linux/
7088 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7089 T:      git git://linuxtv.org/anttip/media_tree.git
7090 S:      Maintained
7091 F:      drivers/media/tuners/msi001*
7092
7093 MSI2500 MEDIA DRIVER
7094 M:      Antti Palosaari <crope@iki.fi>
7095 L:      linux-media@vger.kernel.org
7096 W:      http://linuxtv.org/
7097 W:      http://palosaari.fi/linux/
7098 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7099 T:      git git://linuxtv.org/anttip/media_tree.git
7100 S:      Maintained
7101 F:      drivers/media/usb/msi2500/
7102
7103 MSYSTEMS DISKONCHIP G3 MTD DRIVER
7104 M:      Robert Jarzmik <robert.jarzmik@free.fr>
7105 L:      linux-mtd@lists.infradead.org
7106 S:      Maintained
7107 F:      drivers/mtd/devices/docg3*
7108
7109 MT9M032 APTINA SENSOR DRIVER
7110 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7111 L:      linux-media@vger.kernel.org
7112 T:      git git://linuxtv.org/media_tree.git
7113 S:      Maintained
7114 F:      drivers/media/i2c/mt9m032.c
7115 F:      include/media/mt9m032.h
7116
7117 MT9P031 APTINA CAMERA SENSOR
7118 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7119 L:      linux-media@vger.kernel.org
7120 T:      git git://linuxtv.org/media_tree.git
7121 S:      Maintained
7122 F:      drivers/media/i2c/mt9p031.c
7123 F:      include/media/mt9p031.h
7124
7125 MT9T001 APTINA CAMERA SENSOR
7126 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7127 L:      linux-media@vger.kernel.org
7128 T:      git git://linuxtv.org/media_tree.git
7129 S:      Maintained
7130 F:      drivers/media/i2c/mt9t001.c
7131 F:      include/media/mt9t001.h
7132
7133 MT9V032 APTINA CAMERA SENSOR
7134 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7135 L:      linux-media@vger.kernel.org
7136 T:      git git://linuxtv.org/media_tree.git
7137 S:      Maintained
7138 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
7139 F:      drivers/media/i2c/mt9v032.c
7140 F:      include/media/mt9v032.h
7141
7142 MULTIFUNCTION DEVICES (MFD)
7143 M:      Lee Jones <lee.jones@linaro.org>
7144 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
7145 S:      Supported
7146 F:      drivers/mfd/
7147 F:      include/linux/mfd/
7148
7149 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
7150 M:      Ulf Hansson <ulf.hansson@linaro.org>
7151 L:      linux-mmc@vger.kernel.org
7152 T:      git git://git.linaro.org/people/ulf.hansson/mmc.git
7153 S:      Maintained
7154 F:      drivers/mmc/
7155 F:      include/linux/mmc/
7156 F:      include/uapi/linux/mmc/
7157
7158 MULTIMEDIA CARD (MMC) ETC. OVER SPI
7159 S:      Orphan
7160 F:      drivers/mmc/host/mmc_spi.c
7161 F:      include/linux/spi/mmc_spi.h
7162
7163 MULTISOUND SOUND DRIVER
7164 M:      Andrew Veliath <andrewtv@usa.net>
7165 S:      Maintained
7166 F:      Documentation/sound/oss/MultiSound
7167 F:      sound/oss/msnd*
7168
7169 MULTITECH MULTIPORT CARD (ISICOM)
7170 S:      Orphan
7171 F:      drivers/tty/isicom.c
7172 F:      include/linux/isicom.h
7173
7174 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
7175 M:      Felipe Balbi <balbi@ti.com>
7176 L:      linux-usb@vger.kernel.org
7177 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7178 S:      Maintained
7179 F:      drivers/usb/musb/
7180
7181 MXL5007T MEDIA DRIVER
7182 M:      Michael Krufky <mkrufky@linuxtv.org>
7183 L:      linux-media@vger.kernel.org
7184 W:      http://linuxtv.org/
7185 W:      http://github.com/mkrufky
7186 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7187 T:      git git://linuxtv.org/mkrufky/tuners.git
7188 S:      Maintained
7189 F:      drivers/media/tuners/mxl5007t.*
7190
7191 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
7192 M:      Hyong-Youb Kim <hykim@myri.com>
7193 L:      netdev@vger.kernel.org
7194 W:      https://www.myricom.com/support/downloads/myri10ge.html
7195 S:      Supported
7196 F:      drivers/net/ethernet/myricom/myri10ge/
7197
7198 NATSEMI ETHERNET DRIVER (DP8381x)
7199 S:      Orphan
7200 F:      drivers/net/ethernet/natsemi/natsemi.c
7201
7202 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
7203 M:      Daniel Mack <zonque@gmail.com>
7204 S:      Maintained
7205 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7206 W:      http://www.native-instruments.com
7207 F:      sound/usb/caiaq/
7208
7209 NCP FILESYSTEM
7210 M:      Petr Vandrovec <petr@vandrovec.name>
7211 S:      Odd Fixes
7212 F:      fs/ncpfs/
7213
7214 NCR 5380 SCSI DRIVERS
7215 M:      Finn Thain <fthain@telegraphics.com.au>
7216 M:      Michael Schmitz <schmitzmic@gmail.com>
7217 L:      linux-scsi@vger.kernel.org
7218 S:      Maintained
7219 F:      Documentation/scsi/g_NCR5380.txt
7220 F:      drivers/scsi/NCR5380.*
7221 F:      drivers/scsi/arm/cumana_1.c
7222 F:      drivers/scsi/arm/oak.c
7223 F:      drivers/scsi/atari_NCR5380.c
7224 F:      drivers/scsi/atari_scsi.*
7225 F:      drivers/scsi/dmx3191d.c
7226 F:      drivers/scsi/dtc.*
7227 F:      drivers/scsi/g_NCR5380.*
7228 F:      drivers/scsi/g_NCR5380_mmio.c
7229 F:      drivers/scsi/mac_scsi.*
7230 F:      drivers/scsi/pas16.*
7231 F:      drivers/scsi/sun3_scsi.*
7232 F:      drivers/scsi/sun3_scsi_vme.c
7233 F:      drivers/scsi/t128.*
7234
7235 NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
7236 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
7237 L:      linux-scsi@vger.kernel.org
7238 S:      Maintained
7239 F:      drivers/scsi/NCR_D700.*
7240
7241 NCT6775 HARDWARE MONITOR DRIVER
7242 M:      Guenter Roeck <linux@roeck-us.net>
7243 L:      lm-sensors@lm-sensors.org
7244 S:      Maintained
7245 F:      Documentation/hwmon/nct6775
7246 F:      drivers/hwmon/nct6775.c
7247
7248 NETEFFECT IWARP RNIC DRIVER (IW_NES)
7249 M:      Faisal Latif <faisal.latif@intel.com>
7250 L:      linux-rdma@vger.kernel.org
7251 W:      http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
7252 S:      Supported
7253 F:      drivers/infiniband/hw/nes/
7254
7255 NETEM NETWORK EMULATOR
7256 M:      Stephen Hemminger <stephen@networkplumber.org>
7257 L:      netem@lists.linux-foundation.org
7258 S:      Maintained
7259 F:      net/sched/sch_netem.c
7260
7261 NETERION 10GbE DRIVERS (s2io/vxge)
7262 M:      Jon Mason <jdmason@kudzu.us>
7263 L:      netdev@vger.kernel.org
7264 S:      Supported
7265 F:      Documentation/networking/s2io.txt
7266 F:      Documentation/networking/vxge.txt
7267 F:      drivers/net/ethernet/neterion/
7268
7269 NETFILTER ({IP,IP6,ARP,EB,NF}TABLES)
7270 M:      Pablo Neira Ayuso <pablo@netfilter.org>
7271 M:      Patrick McHardy <kaber@trash.net>
7272 M:      Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
7273 L:      netfilter-devel@vger.kernel.org
7274 L:      coreteam@netfilter.org
7275 W:      http://www.netfilter.org/
7276 W:      http://www.iptables.org/
7277 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
7278 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
7279 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
7280 S:      Supported
7281 F:      include/linux/netfilter*
7282 F:      include/linux/netfilter/
7283 F:      include/net/netfilter/
7284 F:      include/uapi/linux/netfilter*
7285 F:      include/uapi/linux/netfilter/
7286 F:      net/*/netfilter.c
7287 F:      net/*/netfilter/
7288 F:      net/netfilter/
7289 F:      net/bridge/br_netfilter*.c
7290
7291 NETLABEL
7292 M:      Paul Moore <paul@paul-moore.com>
7293 W:      http://netlabel.sf.net
7294 L:      netdev@vger.kernel.org
7295 S:      Maintained
7296 F:      Documentation/netlabel/
7297 F:      include/net/netlabel.h
7298 F:      net/netlabel/
7299
7300 NETROM NETWORK LAYER
7301 M:      Ralf Baechle <ralf@linux-mips.org>
7302 L:      linux-hams@vger.kernel.org
7303 W:      http://www.linux-ax25.org/
7304 S:      Maintained
7305 F:      include/net/netrom.h
7306 F:      include/uapi/linux/netrom.h
7307 F:      net/netrom/
7308
7309 NETWORK BLOCK DEVICE (NBD)
7310 M:      Markus Pargmann <mpa@pengutronix.de>
7311 S:      Maintained
7312 L:      nbd-general@lists.sourceforge.net
7313 T:      git git://git.pengutronix.de/git/mpa/linux-nbd.git
7314 F:      Documentation/blockdev/nbd.txt
7315 F:      drivers/block/nbd.c
7316 F:      include/uapi/linux/nbd.h
7317
7318 NETWORK DROP MONITOR
7319 M:      Neil Horman <nhorman@tuxdriver.com>
7320 L:      netdev@vger.kernel.org
7321 S:      Maintained
7322 W:      https://fedorahosted.org/dropwatch/
7323 F:      net/core/drop_monitor.c
7324
7325 NETWORKING [GENERAL]
7326 M:      "David S. Miller" <davem@davemloft.net>
7327 L:      netdev@vger.kernel.org
7328 W:      http://www.linuxfoundation.org/en/Net
7329 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7330 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7331 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7332 S:      Maintained
7333 F:      net/
7334 F:      include/net/
7335 F:      include/linux/in.h
7336 F:      include/linux/net.h
7337 F:      include/linux/netdevice.h
7338 F:      include/uapi/linux/in.h
7339 F:      include/uapi/linux/net.h
7340 F:      include/uapi/linux/netdevice.h
7341 F:      include/uapi/linux/net_namespace.h
7342 F:      tools/net/
7343 F:      tools/testing/selftests/net/
7344 F:      lib/random32.c
7345 F:      lib/test_bpf.c
7346
7347 NETWORKING [IPv4/IPv6]
7348 M:      "David S. Miller" <davem@davemloft.net>
7349 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
7350 M:      James Morris <jmorris@namei.org>
7351 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
7352 M:      Patrick McHardy <kaber@trash.net>
7353 L:      netdev@vger.kernel.org
7354 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7355 S:      Maintained
7356 F:      net/ipv4/
7357 F:      net/ipv6/
7358 F:      include/net/ip*
7359 F:      arch/x86/net/*
7360
7361 NETWORKING [IPSEC]
7362 M:      Steffen Klassert <steffen.klassert@secunet.com>
7363 M:      Herbert Xu <herbert@gondor.apana.org.au>
7364 M:      "David S. Miller" <davem@davemloft.net>
7365 L:      netdev@vger.kernel.org
7366 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
7367 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
7368 S:      Maintained
7369 F:      net/core/flow.c
7370 F:      net/xfrm/
7371 F:      net/key/
7372 F:      net/ipv4/xfrm*
7373 F:      net/ipv4/esp4.c
7374 F:      net/ipv4/ah4.c
7375 F:      net/ipv4/ipcomp.c
7376 F:      net/ipv4/ip_vti.c
7377 F:      net/ipv6/xfrm*
7378 F:      net/ipv6/esp6.c
7379 F:      net/ipv6/ah6.c
7380 F:      net/ipv6/ipcomp6.c
7381 F:      net/ipv6/ip6_vti.c
7382 F:      include/uapi/linux/xfrm.h
7383 F:      include/net/xfrm.h
7384
7385 NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
7386 M:      Paul Moore <paul@paul-moore.com>
7387 L:      netdev@vger.kernel.org
7388 S:      Maintained
7389
7390 NETWORKING [WIRELESS]
7391 L:      linux-wireless@vger.kernel.org
7392 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7393
7394 NETWORKING DRIVERS
7395 L:      netdev@vger.kernel.org
7396 W:      http://www.linuxfoundation.org/en/Net
7397 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7398 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7399 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7400 S:      Odd Fixes
7401 F:      drivers/net/
7402 F:      include/linux/if_*
7403 F:      include/linux/netdevice.h
7404 F:      include/linux/etherdevice.h
7405 F:      include/linux/fcdevice.h
7406 F:      include/linux/fddidevice.h
7407 F:      include/linux/hippidevice.h
7408 F:      include/linux/inetdevice.h
7409 F:      include/uapi/linux/if_*
7410 F:      include/uapi/linux/netdevice.h
7411
7412 NETWORKING DRIVERS (WIRELESS)
7413 M:      Kalle Valo <kvalo@codeaurora.org>
7414 L:      linux-wireless@vger.kernel.org
7415 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7416 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git/
7417 S:      Maintained
7418 F:      drivers/net/wireless/
7419
7420 NETXEN (1/10) GbE SUPPORT
7421 M:      Manish Chopra <manish.chopra@qlogic.com>
7422 M:      Sony Chacko <sony.chacko@qlogic.com>
7423 M:      Rajesh Borundia <rajesh.borundia@qlogic.com>
7424 L:      netdev@vger.kernel.org
7425 W:      http://www.qlogic.com
7426 S:      Supported
7427 F:      drivers/net/ethernet/qlogic/netxen/
7428
7429 NFC SUBSYSTEM
7430 M:      Lauro Ramos Venancio <lauro.venancio@openbossa.org>
7431 M:      Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
7432 M:      Samuel Ortiz <sameo@linux.intel.com>
7433 L:      linux-wireless@vger.kernel.org
7434 L:      linux-nfc@lists.01.org (subscribers-only)
7435 S:      Supported
7436 F:      net/nfc/
7437 F:      include/net/nfc/
7438 F:      include/uapi/linux/nfc.h
7439 F:      drivers/nfc/
7440 F:      include/linux/platform_data/pn544.h
7441 F:      Documentation/devicetree/bindings/net/nfc/
7442
7443 NFS, SUNRPC, AND LOCKD CLIENTS
7444 M:      Trond Myklebust <trond.myklebust@primarydata.com>
7445 M:      Anna Schumaker <anna.schumaker@netapp.com>
7446 L:      linux-nfs@vger.kernel.org
7447 W:      http://client.linux-nfs.org
7448 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
7449 S:      Maintained
7450 F:      fs/lockd/
7451 F:      fs/nfs/
7452 F:      fs/nfs_common/
7453 F:      net/sunrpc/
7454 F:      include/linux/lockd/
7455 F:      include/linux/nfs*
7456 F:      include/linux/sunrpc/
7457 F:      include/uapi/linux/nfs*
7458 F:      include/uapi/linux/sunrpc/
7459
7460 NILFS2 FILESYSTEM
7461 M:      Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
7462 L:      linux-nilfs@vger.kernel.org
7463 W:      http://nilfs.sourceforge.net/
7464 T:      git git://github.com/konis/nilfs2.git
7465 S:      Supported
7466 F:      Documentation/filesystems/nilfs2.txt
7467 F:      fs/nilfs2/
7468 F:      include/linux/nilfs2_fs.h
7469
7470 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
7471 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7472 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7473 S:      Maintained
7474 F:      Documentation/scsi/NinjaSCSI.txt
7475 F:      drivers/scsi/pcmcia/nsp_*
7476
7477 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
7478 M:      GOTO Masanori <gotom@debian.or.jp>
7479 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7480 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7481 S:      Maintained
7482 F:      Documentation/scsi/NinjaSCSI.txt
7483 F:      drivers/scsi/nsp32*
7484
7485 NIOS2 ARCHITECTURE
7486 M:      Ley Foon Tan <lftan@altera.com>
7487 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
7488 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
7489 S:      Maintained
7490 F:      arch/nios2/
7491
7492 NOKIA N900 POWER SUPPLY DRIVERS
7493 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
7494 S:      Maintained
7495 F:      include/linux/power/bq2415x_charger.h
7496 F:      include/linux/power/bq27xxx_battery.h
7497 F:      include/linux/power/isp1704_charger.h
7498 F:      drivers/power/bq2415x_charger.c
7499 F:      drivers/power/bq27xxx_battery.c
7500 F:      drivers/power/isp1704_charger.c
7501 F:      drivers/power/rx51_battery.c
7502
7503 NTB DRIVER CORE
7504 M:      Jon Mason <jdmason@kudzu.us>
7505 M:      Dave Jiang <dave.jiang@intel.com>
7506 M:      Allen Hubbe <Allen.Hubbe@emc.com>
7507 L:      linux-ntb@googlegroups.com
7508 S:      Supported
7509 W:      https://github.com/jonmason/ntb/wiki
7510 T:      git git://github.com/jonmason/ntb.git
7511 F:      drivers/ntb/
7512 F:      drivers/net/ntb_netdev.c
7513 F:      include/linux/ntb.h
7514 F:      include/linux/ntb_transport.h
7515
7516 NTB INTEL DRIVER
7517 M:      Jon Mason <jdmason@kudzu.us>
7518 M:      Dave Jiang <dave.jiang@intel.com>
7519 L:      linux-ntb@googlegroups.com
7520 S:      Supported
7521 W:      https://github.com/jonmason/ntb/wiki
7522 T:      git git://github.com/jonmason/ntb.git
7523 F:      drivers/ntb/hw/intel/
7524
7525 NTFS FILESYSTEM
7526 M:      Anton Altaparmakov <anton@tuxera.com>
7527 L:      linux-ntfs-dev@lists.sourceforge.net
7528 W:      http://www.tuxera.com/
7529 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
7530 S:      Supported
7531 F:      Documentation/filesystems/ntfs.txt
7532 F:      fs/ntfs/
7533
7534 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
7535 M:      Antonino Daplas <adaplas@gmail.com>
7536 L:      linux-fbdev@vger.kernel.org
7537 S:      Maintained
7538 F:      drivers/video/fbdev/riva/
7539 F:      drivers/video/fbdev/nvidia/
7540
7541 NVM EXPRESS DRIVER
7542 M:      Keith Busch <keith.busch@intel.com>
7543 M:      Jens Axboe <axboe@fb.com>
7544 L:      linux-nvme@lists.infradead.org
7545 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
7546 W:      https://kernel.googlesource.com/pub/scm/linux/kernel/git/axboe/linux-block/
7547 S:      Supported
7548 F:      drivers/nvme/host/
7549 F:      include/linux/nvme.h
7550
7551 NVMEM FRAMEWORK
7552 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
7553 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
7554 S:      Maintained
7555 F:      drivers/nvmem/
7556 F:      Documentation/devicetree/bindings/nvmem/
7557 F:      include/linux/nvmem-consumer.h
7558 F:      include/linux/nvmem-provider.h
7559
7560 NXP-NCI NFC DRIVER
7561 M:      ClĂ©ment Perrochaud <clement.perrochaud@effinnov.com>
7562 R:      Charles Gorand <charles.gorand@effinnov.com>
7563 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
7564 S:      Supported
7565 F:      drivers/nfc/nxp-nci
7566
7567 NXP TDA998X DRM DRIVER
7568 M:      Russell King <rmk+kernel@arm.linux.org.uk>
7569 S:      Supported
7570 F:      drivers/gpu/drm/i2c/tda998x_drv.c
7571 F:      include/drm/i2c/tda998x.h
7572
7573 NXP TFA9879 DRIVER
7574 M:      Peter Rosin <peda@axentia.se>
7575 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7576 S:      Maintained
7577 F:      sound/soc/codecs/tfa9879*
7578
7579 OMAP SUPPORT
7580 M:      Tony Lindgren <tony@atomide.com>
7581 L:      linux-omap@vger.kernel.org
7582 W:      http://www.muru.com/linux/omap/
7583 W:      http://linux.omap.com/
7584 Q:      http://patchwork.kernel.org/project/linux-omap/list/
7585 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
7586 S:      Maintained
7587 F:      arch/arm/*omap*/
7588 F:      arch/arm/configs/omap1_defconfig
7589 F:      arch/arm/configs/omap2plus_defconfig
7590 F:      drivers/i2c/busses/i2c-omap.c
7591 F:      drivers/irqchip/irq-omap-intc.c
7592 F:      drivers/mfd/*omap*.c
7593 F:      drivers/mfd/menelaus.c
7594 F:      drivers/mfd/palmas.c
7595 F:      drivers/mfd/tps65217.c
7596 F:      drivers/mfd/tps65218.c
7597 F:      drivers/mfd/tps65910.c
7598 F:      drivers/mfd/twl-core.[ch]
7599 F:      drivers/mfd/twl4030*.c
7600 F:      drivers/mfd/twl6030*.c
7601 F:      drivers/mfd/twl6040*.c
7602 F:      drivers/regulator/palmas-regulator*.c
7603 F:      drivers/regulator/pbias-regulator.c
7604 F:      drivers/regulator/tps65217-regulator.c
7605 F:      drivers/regulator/tps65218-regulator.c
7606 F:      drivers/regulator/tps65910-regulator.c
7607 F:      drivers/regulator/twl-regulator.c
7608 F:      include/linux/i2c-omap.h
7609
7610 OMAP DEVICE TREE SUPPORT
7611 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7612 M:      Tony Lindgren <tony@atomide.com>
7613 L:      linux-omap@vger.kernel.org
7614 L:      devicetree@vger.kernel.org
7615 S:      Maintained
7616 F:      arch/arm/boot/dts/*omap*
7617 F:      arch/arm/boot/dts/*am3*
7618 F:      arch/arm/boot/dts/*am4*
7619 F:      arch/arm/boot/dts/*am5*
7620 F:      arch/arm/boot/dts/*dra7*
7621
7622 OMAP CLOCK FRAMEWORK SUPPORT
7623 M:      Paul Walmsley <paul@pwsan.com>
7624 L:      linux-omap@vger.kernel.org
7625 S:      Maintained
7626 F:      arch/arm/*omap*/*clock*
7627
7628 OMAP POWER MANAGEMENT SUPPORT
7629 M:      Kevin Hilman <khilman@deeprootsystems.com>
7630 L:      linux-omap@vger.kernel.org
7631 S:      Maintained
7632 F:      arch/arm/*omap*/*pm*
7633 F:      drivers/cpufreq/omap-cpufreq.c
7634
7635 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
7636 M:      Rajendra Nayak <rnayak@ti.com>
7637 M:      Paul Walmsley <paul@pwsan.com>
7638 L:      linux-omap@vger.kernel.org
7639 S:      Maintained
7640 F:      arch/arm/mach-omap2/prm*
7641
7642 OMAP AUDIO SUPPORT
7643 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
7644 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
7645 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7646 L:      linux-omap@vger.kernel.org
7647 S:      Maintained
7648 F:      sound/soc/omap/
7649
7650 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
7651 M:      Roger Quadros <rogerq@ti.com>
7652 M:      Tony Lindgren <tony@atomide.com>
7653 L:      linux-omap@vger.kernel.org
7654 S:      Maintained
7655 F:      drivers/memory/omap-gpmc.c
7656 F:      arch/arm/mach-omap2/*gpmc*
7657
7658 OMAP FRAMEBUFFER SUPPORT
7659 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
7660 L:      linux-fbdev@vger.kernel.org
7661 L:      linux-omap@vger.kernel.org
7662 S:      Maintained
7663 F:      drivers/video/fbdev/omap/
7664
7665 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
7666 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
7667 L:      linux-omap@vger.kernel.org
7668 L:      linux-fbdev@vger.kernel.org
7669 S:      Maintained
7670 F:      drivers/video/fbdev/omap2/
7671 F:      Documentation/arm/OMAP/DSS
7672
7673 OMAP HARDWARE SPINLOCK SUPPORT
7674 M:      Ohad Ben-Cohen <ohad@wizery.com>
7675 L:      linux-omap@vger.kernel.org
7676 S:      Maintained
7677 F:      drivers/hwspinlock/omap_hwspinlock.c
7678
7679 OMAP MMC SUPPORT
7680 M:      Jarkko Lavinen <jarkko.lavinen@nokia.com>
7681 L:      linux-omap@vger.kernel.org
7682 S:      Maintained
7683 F:      drivers/mmc/host/omap.c
7684
7685 OMAP HS MMC SUPPORT
7686 L:      linux-mmc@vger.kernel.org
7687 L:      linux-omap@vger.kernel.org
7688 S:      Orphan
7689 F:      drivers/mmc/host/omap_hsmmc.c
7690
7691 OMAP RANDOM NUMBER GENERATOR SUPPORT
7692 M:      Deepak Saxena <dsaxena@plexity.net>
7693 S:      Maintained
7694 F:      drivers/char/hw_random/omap-rng.c
7695
7696 OMAP HWMOD SUPPORT
7697 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7698 M:      Paul Walmsley <paul@pwsan.com>
7699 L:      linux-omap@vger.kernel.org
7700 S:      Maintained
7701 F:      arch/arm/mach-omap2/omap_hwmod.*
7702
7703 OMAP HWMOD DATA
7704 M:      Paul Walmsley <paul@pwsan.com>
7705 L:      linux-omap@vger.kernel.org
7706 S:      Maintained
7707 F:      arch/arm/mach-omap2/omap_hwmod*data*
7708
7709 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
7710 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7711 L:      linux-omap@vger.kernel.org
7712 S:      Maintained
7713 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
7714
7715 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
7716 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7717 L:      linux-media@vger.kernel.org
7718 S:      Maintained
7719 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
7720 F:      drivers/media/platform/omap3isp/
7721 F:      drivers/staging/media/omap4iss/
7722
7723 OMAP USB SUPPORT
7724 M:      Felipe Balbi <balbi@ti.com>
7725 L:      linux-usb@vger.kernel.org
7726 L:      linux-omap@vger.kernel.org
7727 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7728 S:      Maintained
7729 F:      drivers/usb/*/*omap*
7730 F:      arch/arm/*omap*/usb*
7731
7732 OMAP GPIO DRIVER
7733 M:      Javier Martinez Canillas <javier@dowhile0.org>
7734 M:      Santosh Shilimkar <ssantosh@kernel.org>
7735 M:      Kevin Hilman <khilman@deeprootsystems.com>
7736 L:      linux-omap@vger.kernel.org
7737 S:      Maintained
7738 F:      drivers/gpio/gpio-omap.c
7739
7740 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
7741 M:      Mark Jackson <mpfj@newflow.co.uk>
7742 L:      linux-omap@vger.kernel.org
7743 S:      Maintained
7744 F:      arch/arm/boot/dts/am335x-nano.dts
7745
7746 OMFS FILESYSTEM
7747 M:      Bob Copeland <me@bobcopeland.com>
7748 L:      linux-karma-devel@lists.sourceforge.net
7749 S:      Maintained
7750 F:      Documentation/filesystems/omfs.txt
7751 F:      fs/omfs/
7752
7753 OMNIKEY CARDMAN 4000 DRIVER
7754 M:      Harald Welte <laforge@gnumonks.org>
7755 S:      Maintained
7756 F:      drivers/char/pcmcia/cm4000_cs.c
7757 F:      include/linux/cm4000_cs.h
7758 F:      include/uapi/linux/cm4000_cs.h
7759
7760 OMNIKEY CARDMAN 4040 DRIVER
7761 M:      Harald Welte <laforge@gnumonks.org>
7762 S:      Maintained
7763 F:      drivers/char/pcmcia/cm4040_cs.*
7764
7765 OMNIVISION OV7670 SENSOR DRIVER
7766 M:      Jonathan Corbet <corbet@lwn.net>
7767 L:      linux-media@vger.kernel.org
7768 T:      git git://linuxtv.org/media_tree.git
7769 S:      Maintained
7770 F:      drivers/media/i2c/ov7670.c
7771
7772 ONENAND FLASH DRIVER
7773 M:      Kyungmin Park <kyungmin.park@samsung.com>
7774 L:      linux-mtd@lists.infradead.org
7775 S:      Maintained
7776 F:      drivers/mtd/onenand/
7777 F:      include/linux/mtd/onenand*.h
7778
7779 ONSTREAM SCSI TAPE DRIVER
7780 M:      Willem Riede <osst@riede.org>
7781 L:      osst-users@lists.sourceforge.net
7782 L:      linux-scsi@vger.kernel.org
7783 S:      Maintained
7784 F:      Documentation/scsi/osst.txt
7785 F:      drivers/scsi/osst.*
7786 F:      drivers/scsi/osst_*.h
7787 F:      drivers/scsi/st.h
7788
7789 OPENCORES I2C BUS DRIVER
7790 M:      Peter Korsgaard <jacmet@sunsite.dk>
7791 L:      linux-i2c@vger.kernel.org
7792 S:      Maintained
7793 F:      Documentation/i2c/busses/i2c-ocores
7794 F:      drivers/i2c/busses/i2c-ocores.c
7795
7796 OPEN FIRMWARE AND FLATTENED DEVICE TREE
7797 M:      Rob Herring <robh+dt@kernel.org>
7798 M:      Frank Rowand <frowand.list@gmail.com>
7799 M:      Grant Likely <grant.likely@linaro.org>
7800 L:      devicetree@vger.kernel.org
7801 W:      http://www.devicetree.org/
7802 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/glikely/linux.git
7803 S:      Maintained
7804 F:      drivers/of/
7805 F:      include/linux/of*.h
7806 F:      scripts/dtc/
7807
7808 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
7809 M:      Rob Herring <robh+dt@kernel.org>
7810 M:      Pawel Moll <pawel.moll@arm.com>
7811 M:      Mark Rutland <mark.rutland@arm.com>
7812 M:      Ian Campbell <ijc+devicetree@hellion.org.uk>
7813 M:      Kumar Gala <galak@codeaurora.org>
7814 L:      devicetree@vger.kernel.org
7815 S:      Maintained
7816 F:      Documentation/devicetree/
7817 F:      arch/*/boot/dts/
7818 F:      include/dt-bindings/
7819
7820 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
7821 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
7822 L:      devicetree@vger.kernel.org
7823 S:      Maintained
7824 F:      Documentation/devicetree/dynamic-resolution-notes.txt
7825 F:      Documentation/devicetree/overlay-notes.txt
7826 F:      drivers/of/overlay.c
7827 F:      drivers/of/resolver.c
7828
7829 OPENRISC ARCHITECTURE
7830 M:      Jonas Bonn <jonas@southpole.se>
7831 W:      http://openrisc.net
7832 L:      linux@lists.openrisc.net (moderated for non-subscribers)
7833 S:      Maintained
7834 T:      git git://openrisc.net/~jonas/linux
7835 F:      arch/openrisc/
7836
7837 OPENVSWITCH
7838 M:      Pravin Shelar <pshelar@nicira.com>
7839 L:      netdev@vger.kernel.org
7840 L:      dev@openvswitch.org
7841 W:      http://openvswitch.org
7842 S:      Maintained
7843 F:      net/openvswitch/
7844 F:      include/uapi/linux/openvswitch.h
7845
7846 OPL4 DRIVER
7847 M:      Clemens Ladisch <clemens@ladisch.de>
7848 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7849 T:      git git://git.alsa-project.org/alsa-kernel.git
7850 S:      Maintained
7851 F:      sound/drivers/opl4/
7852
7853 OPROFILE
7854 M:      Robert Richter <rric@kernel.org>
7855 L:      oprofile-list@lists.sf.net
7856 S:      Maintained
7857 F:      arch/*/include/asm/oprofile*.h
7858 F:      arch/*/oprofile/
7859 F:      drivers/oprofile/
7860 F:      include/linux/oprofile.h
7861
7862 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
7863 M:      Mark Fasheh <mfasheh@suse.com>
7864 M:      Joel Becker <jlbec@evilplan.org>
7865 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
7866 W:      http://ocfs2.wiki.kernel.org
7867 S:      Supported
7868 F:      Documentation/filesystems/ocfs2.txt
7869 F:      Documentation/filesystems/dlmfs.txt
7870 F:      fs/ocfs2/
7871
7872 ORINOCO DRIVER
7873 L:      linux-wireless@vger.kernel.org
7874 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
7875 W:      http://www.nongnu.org/orinoco/
7876 S:      Orphan
7877 F:      drivers/net/wireless/orinoco/
7878
7879 OSD LIBRARY and FILESYSTEM
7880 M:      Boaz Harrosh <ooo@electrozaur.com>
7881 M:      Benny Halevy <bhalevy@primarydata.com>
7882 L:      osd-dev@open-osd.org
7883 W:      http://open-osd.org
7884 T:      git git://git.open-osd.org/open-osd.git
7885 S:      Maintained
7886 F:      drivers/scsi/osd/
7887 F:      include/scsi/osd_*
7888 F:      fs/exofs/
7889
7890 OVERLAY FILESYSTEM
7891 M:      Miklos Szeredi <miklos@szeredi.hu>
7892 L:      linux-unionfs@vger.kernel.org
7893 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
7894 S:      Supported
7895 F:      fs/overlayfs/
7896 F:      Documentation/filesystems/overlayfs.txt
7897
7898 P54 WIRELESS DRIVER
7899 M:      Christian Lamparter <chunkeey@googlemail.com>
7900 L:      linux-wireless@vger.kernel.org
7901 W:      http://wireless.kernel.org/en/users/Drivers/p54
7902 S:      Maintained
7903 F:      drivers/net/wireless/p54/
7904
7905 PA SEMI ETHERNET DRIVER
7906 M:      Olof Johansson <olof@lixom.net>
7907 L:      netdev@vger.kernel.org
7908 S:      Maintained
7909 F:      drivers/net/ethernet/pasemi/*
7910
7911 PA SEMI SMBUS DRIVER
7912 M:      Olof Johansson <olof@lixom.net>
7913 L:      linux-i2c@vger.kernel.org
7914 S:      Maintained
7915 F:      drivers/i2c/busses/i2c-pasemi.c
7916
7917 PADATA PARALLEL EXECUTION MECHANISM
7918 M:      Steffen Klassert <steffen.klassert@secunet.com>
7919 L:      linux-crypto@vger.kernel.org
7920 S:      Maintained
7921 F:      kernel/padata.c
7922 F:      include/linux/padata.h
7923 F:      Documentation/padata.txt
7924
7925 PANASONIC LAPTOP ACPI EXTRAS DRIVER
7926 M:      Harald Welte <laforge@gnumonks.org>
7927 L:      platform-driver-x86@vger.kernel.org
7928 S:      Maintained
7929 F:      drivers/platform/x86/panasonic-laptop.c
7930
7931 PANASONIC MN10300/AM33/AM34 PORT
7932 M:      David Howells <dhowells@redhat.com>
7933 M:      Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
7934 L:      linux-am33-list@redhat.com (moderated for non-subscribers)
7935 W:      ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
7936 S:      Maintained
7937 F:      Documentation/mn10300/
7938 F:      arch/mn10300/
7939
7940 PARALLEL PORT SUBSYSTEM
7941 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
7942 M:      Sudip Mukherjee <sudip@vectorindia.org>
7943 L:      linux-parport@lists.infradead.org (subscribers-only)
7944 S:      Maintained
7945 F:      drivers/parport/
7946 F:      include/linux/parport*.h
7947 F:      drivers/char/ppdev.c
7948 F:      include/uapi/linux/ppdev.h
7949 F:      Documentation/parport*.txt
7950
7951 PARAVIRT_OPS INTERFACE
7952 M:      Jeremy Fitzhardinge <jeremy@goop.org>
7953 M:      Chris Wright <chrisw@sous-sol.org>
7954 M:      Alok Kataria <akataria@vmware.com>
7955 M:      Rusty Russell <rusty@rustcorp.com.au>
7956 L:      virtualization@lists.linux-foundation.org
7957 S:      Supported
7958 F:      Documentation/virtual/paravirt_ops.txt
7959 F:      arch/*/kernel/paravirt*
7960 F:      arch/*/include/asm/paravirt.h
7961
7962 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
7963 M:      Tim Waugh <tim@cyberelk.net>
7964 L:      linux-parport@lists.infradead.org (subscribers-only)
7965 S:      Maintained
7966 F:      Documentation/blockdev/paride.txt
7967 F:      drivers/block/paride/
7968
7969 PARISC ARCHITECTURE
7970 M:      "James E.J. Bottomley" <jejb@parisc-linux.org>
7971 M:      Helge Deller <deller@gmx.de>
7972 L:      linux-parisc@vger.kernel.org
7973 W:      http://www.parisc-linux.org/
7974 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
7975 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
7976 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
7977 S:      Maintained
7978 F:      arch/parisc/
7979 F:      Documentation/parisc/
7980 F:      drivers/parisc/
7981 F:      drivers/char/agp/parisc-agp.c
7982 F:      drivers/input/serio/gscps2.c
7983 F:      drivers/parport/parport_gsc.*
7984 F:      drivers/tty/serial/8250/8250_gsc.c
7985 F:      drivers/video/fbdev/sti*
7986 F:      drivers/video/console/sti*
7987 F:      drivers/video/logo/logo_parisc*
7988
7989 PC87360 HARDWARE MONITORING DRIVER
7990 M:      Jim Cromie <jim.cromie@gmail.com>
7991 L:      lm-sensors@lm-sensors.org
7992 S:      Maintained
7993 F:      Documentation/hwmon/pc87360
7994 F:      drivers/hwmon/pc87360.c
7995
7996 PC8736x GPIO DRIVER
7997 M:      Jim Cromie <jim.cromie@gmail.com>
7998 S:      Maintained
7999 F:      drivers/char/pc8736x_gpio.c
8000
8001 PC87427 HARDWARE MONITORING DRIVER
8002 M:      Jean Delvare <jdelvare@suse.com>
8003 L:      lm-sensors@lm-sensors.org
8004 S:      Maintained
8005 F:      Documentation/hwmon/pc87427
8006 F:      drivers/hwmon/pc87427.c
8007
8008 PCA9532 LED DRIVER
8009 M:      Riku Voipio <riku.voipio@iki.fi>
8010 S:      Maintained
8011 F:      drivers/leds/leds-pca9532.c
8012 F:      include/linux/leds-pca9532.h
8013
8014 PCA9541 I2C BUS MASTER SELECTOR DRIVER
8015 M:      Guenter Roeck <linux@roeck-us.net>
8016 L:      linux-i2c@vger.kernel.org
8017 S:      Maintained
8018 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
8019
8020 PCDP - PRIMARY CONSOLE AND DEBUG PORT
8021 M:      Khalid Aziz <khalid@gonehiking.org>
8022 S:      Maintained
8023 F:      drivers/firmware/pcdp.*
8024
8025 PCI ERROR RECOVERY
8026 M:      Linas Vepstas <linasvepstas@gmail.com>
8027 L:      linux-pci@vger.kernel.org
8028 S:      Supported
8029 F:      Documentation/PCI/pci-error-recovery.txt
8030
8031 PCI SUBSYSTEM
8032 M:      Bjorn Helgaas <bhelgaas@google.com>
8033 L:      linux-pci@vger.kernel.org
8034 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
8035 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
8036 S:      Supported
8037 F:      Documentation/PCI/
8038 F:      drivers/pci/
8039 F:      include/linux/pci*
8040 F:      arch/x86/pci/
8041 F:      arch/x86/kernel/quirks.c
8042
8043 PCI DRIVER FOR ALTERA PCIE IP
8044 M:      Ley Foon Tan <lftan@altera.com>
8045 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
8046 L:      linux-pci@vger.kernel.org
8047 S:      Supported
8048 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
8049 F:      drivers/pci/host/pcie-altera.c
8050
8051 PCI DRIVER FOR ARM VERSATILE PLATFORM
8052 M:      Rob Herring <robh@kernel.org>
8053 L:      linux-pci@vger.kernel.org
8054 L:      linux-arm-kernel@lists.infradead.org
8055 S:      Maintained
8056 F:      Documentation/devicetree/bindings/pci/versatile.txt
8057 F:      drivers/pci/host/pci-versatile.c
8058
8059 PCI DRIVER FOR APPLIEDMICRO XGENE
8060 M:      Tanmay Inamdar <tinamdar@apm.com>
8061 L:      linux-pci@vger.kernel.org
8062 L:      linux-arm-kernel@lists.infradead.org
8063 S:      Maintained
8064 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
8065 F:      drivers/pci/host/pci-xgene.c
8066
8067 PCI DRIVER FOR FREESCALE LAYERSCAPE
8068 M:      Minghuan Lian <minghuan.Lian@freescale.com>
8069 M:      Mingkai Hu <mingkai.hu@freescale.com>
8070 M:      Roy Zang <tie-fei.zang@freescale.com>
8071 L:      linuxppc-dev@lists.ozlabs.org
8072 L:      linux-pci@vger.kernel.org
8073 L:      linux-arm-kernel@lists.infradead.org
8074 S:      Maintained
8075 F:      drivers/pci/host/*layerscape*
8076
8077 PCI DRIVER FOR IMX6
8078 M:      Richard Zhu <Richard.Zhu@freescale.com>
8079 M:      Lucas Stach <l.stach@pengutronix.de>
8080 L:      linux-pci@vger.kernel.org
8081 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8082 S:      Maintained
8083 F:      drivers/pci/host/*imx6*
8084
8085 PCI DRIVER FOR TI KEYSTONE
8086 M:      Murali Karicheri <m-karicheri2@ti.com>
8087 L:      linux-pci@vger.kernel.org
8088 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8089 S:      Maintained
8090 F:      drivers/pci/host/*keystone*
8091
8092 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
8093 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8094 M:      Jason Cooper <jason@lakedaemon.net>
8095 L:      linux-pci@vger.kernel.org
8096 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8097 S:      Maintained
8098 F:      drivers/pci/host/*mvebu*
8099
8100 PCI DRIVER FOR NVIDIA TEGRA
8101 M:      Thierry Reding <thierry.reding@gmail.com>
8102 L:      linux-tegra@vger.kernel.org
8103 L:      linux-pci@vger.kernel.org
8104 S:      Supported
8105 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
8106 F:      drivers/pci/host/pci-tegra.c
8107
8108 PCI DRIVER FOR TI DRA7XX
8109 M:      Kishon Vijay Abraham I <kishon@ti.com>
8110 L:      linux-omap@vger.kernel.org
8111 L:      linux-pci@vger.kernel.org
8112 S:      Supported
8113 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
8114 F:      drivers/pci/host/pci-dra7xx.c
8115
8116 PCI DRIVER FOR RENESAS R-CAR
8117 M:      Simon Horman <horms@verge.net.au>
8118 L:      linux-pci@vger.kernel.org
8119 L:      linux-sh@vger.kernel.org
8120 S:      Maintained
8121 F:      drivers/pci/host/*rcar*
8122
8123 PCI DRIVER FOR SAMSUNG EXYNOS
8124 M:      Jingoo Han <jingoohan1@gmail.com>
8125 L:      linux-pci@vger.kernel.org
8126 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8127 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8128 S:      Maintained
8129 F:      drivers/pci/host/pci-exynos.c
8130
8131 PCI DRIVER FOR SYNOPSIS DESIGNWARE
8132 M:      Jingoo Han <jingoohan1@gmail.com>
8133 M:      Pratyush Anand <pratyush.anand@gmail.com>
8134 L:      linux-pci@vger.kernel.org
8135 S:      Maintained
8136 F:      drivers/pci/host/*designware*
8137
8138 PCI DRIVER FOR GENERIC OF HOSTS
8139 M:      Will Deacon <will.deacon@arm.com>
8140 L:      linux-pci@vger.kernel.org
8141 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8142 S:      Maintained
8143 F:      Documentation/devicetree/bindings/pci/host-generic-pci.txt
8144 F:      drivers/pci/host/pci-host-generic.c
8145
8146 PCIE DRIVER FOR ST SPEAR13XX
8147 M:      Pratyush Anand <pratyush.anand@gmail.com>
8148 L:      linux-pci@vger.kernel.org
8149 S:      Maintained
8150 F:      drivers/pci/host/*spear*
8151
8152 PCI MSI DRIVER FOR ALTERA MSI IP
8153 M:      Ley Foon Tan <lftan@altera.com>
8154 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
8155 L:      linux-pci@vger.kernel.org
8156 S:      Supported
8157 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
8158 F:      drivers/pci/host/pcie-altera-msi.c
8159
8160 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
8161 M:      Duc Dang <dhdang@apm.com>
8162 L:      linux-pci@vger.kernel.org
8163 L:      linux-arm-kernel@lists.infradead.org
8164 S:      Maintained
8165 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
8166 F:      drivers/pci/host/pci-xgene-msi.c
8167
8168 PCIE DRIVER FOR HISILICON
8169 M:      Zhou Wang <wangzhou1@hisilicon.com>
8170 L:      linux-pci@vger.kernel.org
8171 S:      Maintained
8172 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
8173 F:      drivers/pci/host/pcie-hisi.c
8174
8175 PCMCIA SUBSYSTEM
8176 P:      Linux PCMCIA Team
8177 L:      linux-pcmcia@lists.infradead.org
8178 W:      http://lists.infradead.org/mailman/listinfo/linux-pcmcia
8179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
8180 S:      Maintained
8181 F:      Documentation/pcmcia/
8182 F:      drivers/pcmcia/
8183 F:      include/pcmcia/
8184
8185 PCNET32 NETWORK DRIVER
8186 M:      Don Fry <pcnet32@frontier.com>
8187 L:      netdev@vger.kernel.org
8188 S:      Maintained
8189 F:      drivers/net/ethernet/amd/pcnet32.c
8190
8191 PCRYPT PARALLEL CRYPTO ENGINE
8192 M:      Steffen Klassert <steffen.klassert@secunet.com>
8193 L:      linux-crypto@vger.kernel.org
8194 S:      Maintained
8195 F:      crypto/pcrypt.c
8196 F:      include/crypto/pcrypt.h
8197
8198 PER-CPU MEMORY ALLOCATOR
8199 M:      Tejun Heo <tj@kernel.org>
8200 M:      Christoph Lameter <cl@linux-foundation.org>
8201 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
8202 S:      Maintained
8203 F:      include/linux/percpu*.h
8204 F:      mm/percpu*.c
8205 F:      arch/*/include/asm/percpu.h
8206
8207 PER-TASK DELAY ACCOUNTING
8208 M:      Balbir Singh <bsingharora@gmail.com>
8209 S:      Maintained
8210 F:      include/linux/delayacct.h
8211 F:      kernel/delayacct.c
8212
8213 PERFORMANCE EVENTS SUBSYSTEM
8214 M:      Peter Zijlstra <a.p.zijlstra@chello.nl>
8215 M:      Ingo Molnar <mingo@redhat.com>
8216 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
8217 L:      linux-kernel@vger.kernel.org
8218 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
8219 S:      Supported
8220 F:      kernel/events/*
8221 F:      include/linux/perf_event.h
8222 F:      include/uapi/linux/perf_event.h
8223 F:      arch/*/kernel/perf_event*.c
8224 F:      arch/*/kernel/*/perf_event*.c
8225 F:      arch/*/kernel/*/*/perf_event*.c
8226 F:      arch/*/include/asm/perf_event.h
8227 F:      arch/*/kernel/perf_callchain.c
8228 F:      tools/perf/
8229
8230 PERSONALITY HANDLING
8231 M:      Christoph Hellwig <hch@infradead.org>
8232 L:      linux-abi-devel@lists.sourceforge.net
8233 S:      Maintained
8234 F:      include/linux/personality.h
8235 F:      include/uapi/linux/personality.h
8236
8237 PHONET PROTOCOL
8238 M:      Remi Denis-Courmont <courmisch@gmail.com>
8239 S:      Supported
8240 F:      Documentation/networking/phonet.txt
8241 F:      include/linux/phonet.h
8242 F:      include/net/phonet/
8243 F:      include/uapi/linux/phonet.h
8244 F:      net/phonet/
8245
8246 PHRAM MTD DRIVER
8247 M:      Joern Engel <joern@lazybastard.org>
8248 L:      linux-mtd@lists.infradead.org
8249 S:      Maintained
8250 F:      drivers/mtd/devices/phram.c
8251
8252 PICOLCD HID DRIVER
8253 M:      Bruno PrĂ©mont <bonbons@linux-vserver.org>
8254 L:      linux-input@vger.kernel.org
8255 S:      Maintained
8256 F:      drivers/hid/hid-picolcd*
8257
8258 PICOXCELL SUPPORT
8259 M:      Jamie Iles <jamie@jamieiles.com>
8260 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8261 T:      git git://github.com/jamieiles/linux-2.6-ji.git
8262 S:      Supported
8263 F:      arch/arm/boot/dts/picoxcell*
8264 F:      arch/arm/mach-picoxcell/
8265 F:      drivers/crypto/picoxcell*
8266
8267 PIN CONTROL SUBSYSTEM
8268 M:      Linus Walleij <linus.walleij@linaro.org>
8269 L:      linux-gpio@vger.kernel.org
8270 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
8271 S:      Maintained
8272 F:      drivers/pinctrl/
8273 F:      include/linux/pinctrl/
8274
8275 PIN CONTROLLER - ATMEL AT91
8276 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
8277 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8278 S:      Maintained
8279 F:      drivers/pinctrl/pinctrl-at91.*
8280
8281 PIN CONTROLLER - INTEL
8282 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8283 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
8284 S:      Maintained
8285 F:      drivers/pinctrl/intel/
8286
8287 PIN CONTROLLER - RENESAS
8288 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8289 L:      linux-sh@vger.kernel.org
8290 S:      Maintained
8291 F:      drivers/pinctrl/sh-pfc/
8292
8293 PIN CONTROLLER - SAMSUNG
8294 M:      Tomasz Figa <tomasz.figa@gmail.com>
8295 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8296 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8297 S:      Maintained
8298 F:      drivers/pinctrl/samsung/
8299
8300 PIN CONTROLLER - ST SPEAR
8301 M:      Viresh Kumar <vireshk@kernel.org>
8302 L:      spear-devel@list.st.com
8303 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8304 W:      http://www.st.com/spear
8305 S:      Maintained
8306 F:      drivers/pinctrl/spear/
8307
8308 PKTCDVD DRIVER
8309 M:      Jiri Kosina <jikos@kernel.org>
8310 S:      Maintained
8311 F:      drivers/block/pktcdvd.c
8312 F:      include/linux/pktcdvd.h
8313 F:      include/uapi/linux/pktcdvd.h
8314
8315 PKUNITY SOC DRIVERS
8316 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
8317 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
8318 S:      Maintained
8319 T:      git git://github.com/gxt/linux.git
8320 F:      drivers/input/serio/i8042-unicore32io.h
8321 F:      drivers/i2c/busses/i2c-puv3.c
8322 F:      drivers/video/fbdev/fb-puv3.c
8323 F:      drivers/rtc/rtc-puv3.c
8324
8325 PMBUS HARDWARE MONITORING DRIVERS
8326 M:      Guenter Roeck <linux@roeck-us.net>
8327 L:      lm-sensors@lm-sensors.org
8328 W:      http://www.lm-sensors.org/
8329 W:      http://www.roeck-us.net/linux/drivers/
8330 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8331 S:      Maintained
8332 F:      Documentation/hwmon/pmbus
8333 F:      drivers/hwmon/pmbus/
8334 F:      include/linux/i2c/pmbus.h
8335
8336 PMC SIERRA MaxRAID DRIVER
8337 L:      linux-scsi@vger.kernel.org
8338 W:      http://www.pmc-sierra.com/
8339 S:      Orphan
8340 F:      drivers/scsi/pmcraid.*
8341
8342 PMC SIERRA PM8001 DRIVER
8343 M:      Jack Wang <jinpu.wang@profitbricks.com>
8344 M:      lindar_liu@usish.com
8345 L:      pmchba@pmcs.com
8346 L:      linux-scsi@vger.kernel.org
8347 S:      Supported
8348 F:      drivers/scsi/pm8001/
8349
8350 POSIX CLOCKS and TIMERS
8351 M:      Thomas Gleixner <tglx@linutronix.de>
8352 L:      linux-kernel@vger.kernel.org
8353 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8354 S:      Maintained
8355 F:      fs/timerfd.c
8356 F:      include/linux/timer*
8357 F:      kernel/time/*timer*
8358
8359 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
8360 M:      Sebastian Reichel <sre@kernel.org>
8361 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
8362 M:      David Woodhouse <dwmw2@infradead.org>
8363 L:      linux-pm@vger.kernel.org
8364 T:      git git://git.infradead.org/battery-2.6.git
8365 S:      Maintained
8366 F:      include/linux/power_supply.h
8367 F:      drivers/power/
8368 X:      drivers/power/avs/
8369
8370 POWER STATE COORDINATION INTERFACE (PSCI)
8371 M:      Mark Rutland <mark.rutland@arm.com>
8372 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
8373 L:      linux-arm-kernel@lists.infradead.org
8374 S:      Maintained
8375 F:      drivers/firmware/psci.c
8376 F:      include/linux/psci.h
8377 F:      include/uapi/linux/psci.h
8378
8379 PNP SUPPORT
8380 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
8381 S:      Maintained
8382 F:      drivers/pnp/
8383
8384 PPP PROTOCOL DRIVERS AND COMPRESSORS
8385 M:      Paul Mackerras <paulus@samba.org>
8386 L:      linux-ppp@vger.kernel.org
8387 S:      Maintained
8388 F:      drivers/net/ppp/ppp_*
8389
8390 PPP OVER ATM (RFC 2364)
8391 M:      Mitchell Blank Jr <mitch@sfgoth.com>
8392 S:      Maintained
8393 F:      net/atm/pppoatm.c
8394 F:      include/uapi/linux/atmppp.h
8395
8396 PPP OVER ETHERNET
8397 M:      Michal Ostrowski <mostrows@earthlink.net>
8398 S:      Maintained
8399 F:      drivers/net/ppp/pppoe.c
8400 F:      drivers/net/ppp/pppox.c
8401
8402 PPP OVER L2TP
8403 M:      James Chapman <jchapman@katalix.com>
8404 S:      Maintained
8405 F:      net/l2tp/l2tp_ppp.c
8406 F:      include/linux/if_pppol2tp.h
8407 F:      include/uapi/linux/if_pppol2tp.h
8408
8409 PPS SUPPORT
8410 M:      Rodolfo Giometti <giometti@enneenne.com>
8411 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
8412 L:      linuxpps@ml.enneenne.com (subscribers-only)
8413 S:      Maintained
8414 F:      Documentation/pps/
8415 F:      drivers/pps/
8416 F:      include/linux/pps*.h
8417
8418 PPTP DRIVER
8419 M:      Dmitry Kozlov <xeb@mail.ru>
8420 L:      netdev@vger.kernel.org
8421 S:      Maintained
8422 F:      drivers/net/ppp/pptp.c
8423 W:      http://sourceforge.net/projects/accel-pptp
8424
8425 PREEMPTIBLE KERNEL
8426 M:      Robert Love <rml@tech9.net>
8427 L:      kpreempt-tech@lists.sourceforge.net
8428 W:      ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
8429 S:      Supported
8430 F:      Documentation/preempt-locking.txt
8431 F:      include/linux/preempt.h
8432
8433 PRISM54 WIRELESS DRIVER
8434 M:      "Luis R. Rodriguez" <mcgrof@gmail.com>
8435 L:      linux-wireless@vger.kernel.org
8436 W:      http://wireless.kernel.org/en/users/Drivers/p54
8437 S:      Obsolete
8438 F:      drivers/net/wireless/prism54/
8439
8440 PS3 NETWORK SUPPORT
8441 M:      Geoff Levand <geoff@infradead.org>
8442 L:      netdev@vger.kernel.org
8443 L:      linuxppc-dev@lists.ozlabs.org
8444 S:      Maintained
8445 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
8446
8447 PS3 PLATFORM SUPPORT
8448 M:      Geoff Levand <geoff@infradead.org>
8449 L:      linuxppc-dev@lists.ozlabs.org
8450 S:      Maintained
8451 F:      arch/powerpc/boot/ps3*
8452 F:      arch/powerpc/include/asm/lv1call.h
8453 F:      arch/powerpc/include/asm/ps3*.h
8454 F:      arch/powerpc/platforms/ps3/
8455 F:      drivers/*/ps3*
8456 F:      drivers/ps3/
8457 F:      drivers/rtc/rtc-ps3.c
8458 F:      drivers/usb/host/*ps3.c
8459 F:      sound/ppc/snd_ps3*
8460
8461 PS3VRAM DRIVER
8462 M:      Jim Paris <jim@jtan.com>
8463 M:      Geoff Levand <geoff@infradead.org>
8464 L:      linuxppc-dev@lists.ozlabs.org
8465 S:      Maintained
8466 F:      drivers/block/ps3vram.c
8467
8468 PSTORE FILESYSTEM
8469 M:      Anton Vorontsov <anton@enomsg.org>
8470 M:      Colin Cross <ccross@android.com>
8471 M:      Kees Cook <keescook@chromium.org>
8472 M:      Tony Luck <tony.luck@intel.com>
8473 S:      Maintained
8474 T:      git git://git.infradead.org/users/cbou/linux-pstore.git
8475 F:      fs/pstore/
8476 F:      include/linux/pstore*
8477 F:      drivers/firmware/efi/efi-pstore.c
8478 F:      drivers/acpi/apei/erst.c
8479
8480 PTP HARDWARE CLOCK SUPPORT
8481 M:      Richard Cochran <richardcochran@gmail.com>
8482 L:      netdev@vger.kernel.org
8483 S:      Maintained
8484 W:      http://linuxptp.sourceforge.net/
8485 F:      Documentation/ABI/testing/sysfs-ptp
8486 F:      Documentation/ptp/*
8487 F:      drivers/net/ethernet/freescale/gianfar_ptp.c
8488 F:      drivers/net/phy/dp83640*
8489 F:      drivers/ptp/*
8490 F:      include/linux/ptp_cl*
8491
8492 PTRACE SUPPORT
8493 M:      Roland McGrath <roland@hack.frob.com>
8494 M:      Oleg Nesterov <oleg@redhat.com>
8495 S:      Maintained
8496 F:      include/asm-generic/syscall.h
8497 F:      include/linux/ptrace.h
8498 F:      include/linux/regset.h
8499 F:      include/linux/tracehook.h
8500 F:      include/uapi/linux/ptrace.h
8501 F:      kernel/ptrace.c
8502
8503 PVRUSB2 VIDEO4LINUX DRIVER
8504 M:      Mike Isely <isely@pobox.com>
8505 L:      pvrusb2@isely.net       (subscribers-only)
8506 L:      linux-media@vger.kernel.org
8507 W:      http://www.isely.net/pvrusb2/
8508 T:      git git://linuxtv.org/media_tree.git
8509 S:      Maintained
8510 F:      Documentation/video4linux/README.pvrusb2
8511 F:      drivers/media/usb/pvrusb2/
8512
8513 PWC WEBCAM DRIVER
8514 M:      Hans de Goede <hdegoede@redhat.com>
8515 L:      linux-media@vger.kernel.org
8516 T:      git git://linuxtv.org/media_tree.git
8517 S:      Maintained
8518 F:      drivers/media/usb/pwc/*
8519
8520 PWM FAN DRIVER
8521 M:      Kamil Debski <k.debski@samsung.com>
8522 L:      lm-sensors@lm-sensors.org
8523 S:      Supported
8524 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
8525 F:      Documentation/hwmon/pwm-fan
8526 F:      drivers/hwmon/pwm-fan.c
8527
8528 PWM SUBSYSTEM
8529 M:      Thierry Reding <thierry.reding@gmail.com>
8530 L:      linux-pwm@vger.kernel.org
8531 S:      Maintained
8532 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
8533 F:      Documentation/pwm.txt
8534 F:      Documentation/devicetree/bindings/pwm/
8535 F:      include/linux/pwm.h
8536 F:      drivers/pwm/
8537 F:      drivers/video/backlight/pwm_bl.c
8538 F:      include/linux/pwm_backlight.h
8539
8540 PXA2xx/PXA3xx SUPPORT
8541 M:      Daniel Mack <daniel@zonque.org>
8542 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
8543 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8544 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8545 T:      git git://github.com/hzhuang1/linux.git
8546 T:      git git://github.com/rjarzmik/linux.git
8547 S:      Maintained
8548 F:      arch/arm/mach-pxa/
8549 F:      drivers/dma/pxa*
8550 F:      drivers/pcmcia/pxa2xx*
8551 F:      drivers/spi/spi-pxa2xx*
8552 F:      drivers/usb/gadget/udc/pxa2*
8553 F:      include/sound/pxa2xx-lib.h
8554 F:      sound/arm/pxa*
8555 F:      sound/soc/pxa/
8556
8557 PXA3xx NAND FLASH DRIVER
8558 M:      Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
8559 L:      linux-mtd@lists.infradead.org
8560 S:      Maintained
8561 F:      drivers/mtd/nand/pxa3xx_nand.c
8562
8563 MMP SUPPORT
8564 M:      Eric Miao <eric.y.miao@gmail.com>
8565 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
8566 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8567 T:      git git://github.com/hzhuang1/linux.git
8568 T:      git git://git.linaro.org/people/ycmiao/pxa-linux.git
8569 S:      Maintained
8570 F:      arch/arm/mach-mmp/
8571
8572 PXA MMCI DRIVER
8573 S:      Orphan
8574
8575 PXA RTC DRIVER
8576 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8577 L:      rtc-linux@googlegroups.com
8578 S:      Maintained
8579
8580 QAT DRIVER
8581 M:      Tadeusz Struk <tadeusz.struk@intel.com>
8582 L:      qat-linux@intel.com
8583 S:      Supported
8584 F:      drivers/crypto/qat/
8585
8586 QIB DRIVER
8587 M:      Mike Marciniszyn <infinipath@intel.com>
8588 L:      linux-rdma@vger.kernel.org
8589 S:      Supported
8590 F:      drivers/infiniband/hw/qib/
8591
8592 QLOGIC QLA1280 SCSI DRIVER
8593 M:      Michael Reed <mdr@sgi.com>
8594 L:      linux-scsi@vger.kernel.org
8595 S:      Maintained
8596 F:      drivers/scsi/qla1280.[ch]
8597
8598 QLOGIC QLA2XXX FC-SCSI DRIVER
8599 M:      qla2xxx-upstream@qlogic.com
8600 L:      linux-scsi@vger.kernel.org
8601 S:      Supported
8602 F:      Documentation/scsi/LICENSE.qla2xxx
8603 F:      drivers/scsi/qla2xxx/
8604
8605 QLOGIC QLA4XXX iSCSI DRIVER
8606 M:      QLogic-Storage-Upstream@qlogic.com
8607 L:      linux-scsi@vger.kernel.org
8608 S:      Supported
8609 F:      Documentation/scsi/LICENSE.qla4xxx
8610 F:      drivers/scsi/qla4xxx/
8611
8612 QLOGIC QLA3XXX NETWORK DRIVER
8613 M:      Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
8614 M:      Ron Mercer <ron.mercer@qlogic.com>
8615 M:      linux-driver@qlogic.com
8616 L:      netdev@vger.kernel.org
8617 S:      Supported
8618 F:      Documentation/networking/LICENSE.qla3xxx
8619 F:      drivers/net/ethernet/qlogic/qla3xxx.*
8620
8621 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
8622 M:      Dept-GELinuxNICDev@qlogic.com
8623 L:      netdev@vger.kernel.org
8624 S:      Supported
8625 F:      drivers/net/ethernet/qlogic/qlcnic/
8626
8627 QLOGIC QLGE 10Gb ETHERNET DRIVER
8628 M:      Harish Patil <harish.patil@qlogic.com>
8629 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
8630 M:      Dept-GELinuxNICDev@qlogic.com
8631 M:      linux-driver@qlogic.com
8632 L:      netdev@vger.kernel.org
8633 S:      Supported
8634 F:      drivers/net/ethernet/qlogic/qlge/
8635
8636 QLOGIC QL4xxx ETHERNET DRIVER
8637 M:      Yuval Mintz <Yuval.Mintz@qlogic.com>
8638 M:      Ariel Elior <Ariel.Elior@qlogic.com>
8639 M:      everest-linux-l2@qlogic.com
8640 L:      netdev@vger.kernel.org
8641 S:      Supported
8642 F:      drivers/net/ethernet/qlogic/qed/
8643 F:      include/linux/qed/
8644 F:      drivers/net/ethernet/qlogic/qede/
8645
8646 QNX4 FILESYSTEM
8647 M:      Anders Larsen <al@alarsen.net>
8648 W:      http://www.alarsen.net/linux/qnx4fs/
8649 S:      Maintained
8650 F:      fs/qnx4/
8651 F:      include/uapi/linux/qnx4_fs.h
8652 F:      include/uapi/linux/qnxtypes.h
8653
8654 QT1010 MEDIA DRIVER
8655 M:      Antti Palosaari <crope@iki.fi>
8656 L:      linux-media@vger.kernel.org
8657 W:      http://linuxtv.org/
8658 W:      http://palosaari.fi/linux/
8659 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8660 T:      git git://linuxtv.org/anttip/media_tree.git
8661 S:      Maintained
8662 F:      drivers/media/tuners/qt1010*
8663
8664 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
8665 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
8666 L:      linux-wireless@vger.kernel.org
8667 L:      ath9k-devel@lists.ath9k.org
8668 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
8669 S:      Supported
8670 F:      drivers/net/wireless/ath/ath9k/
8671
8672 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
8673 M:      Kalle Valo <kvalo@qca.qualcomm.com>
8674 L:      ath10k@lists.infradead.org
8675 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
8676 T:      git git://github.com/kvalo/ath.git
8677 S:      Supported
8678 F:      drivers/net/wireless/ath/ath10k/
8679
8680 QUALCOMM HEXAGON ARCHITECTURE
8681 M:      Richard Kuo <rkuo@codeaurora.org>
8682 L:      linux-hexagon@vger.kernel.org
8683 S:      Supported
8684 F:      arch/hexagon/
8685
8686 QUALCOMM WCN36XX WIRELESS DRIVER
8687 M:      Eugene Krasnikov <k.eugene.e@gmail.com>
8688 L:      wcn36xx@lists.infradead.org
8689 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
8690 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
8691 S:      Supported
8692 F:      drivers/net/wireless/ath/wcn36xx/
8693
8694 RADOS BLOCK DEVICE (RBD)
8695 M:      Ilya Dryomov <idryomov@gmail.com>
8696 M:      Sage Weil <sage@redhat.com>
8697 M:      Alex Elder <elder@kernel.org>
8698 L:      ceph-devel@vger.kernel.org
8699 W:      http://ceph.com/
8700 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
8701 T:      git git://github.com/ceph/ceph-client.git
8702 S:      Supported
8703 F:      Documentation/ABI/testing/sysfs-bus-rbd
8704 F:      drivers/block/rbd.c
8705 F:      drivers/block/rbd_types.h
8706
8707 RADEON FRAMEBUFFER DISPLAY DRIVER
8708 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
8709 L:      linux-fbdev@vger.kernel.org
8710 S:      Maintained
8711 F:      drivers/video/fbdev/aty/radeon*
8712 F:      include/uapi/linux/radeonfb.h
8713
8714 RADIOSHARK RADIO DRIVER
8715 M:      Hans de Goede <hdegoede@redhat.com>
8716 L:      linux-media@vger.kernel.org
8717 T:      git git://linuxtv.org/media_tree.git
8718 S:      Maintained
8719 F:      drivers/media/radio/radio-shark.c
8720
8721 RADIOSHARK2 RADIO DRIVER
8722 M:      Hans de Goede <hdegoede@redhat.com>
8723 L:      linux-media@vger.kernel.org
8724 T:      git git://linuxtv.org/media_tree.git
8725 S:      Maintained
8726 F:      drivers/media/radio/radio-shark2.c
8727 F:      drivers/media/radio/radio-tea5777.c
8728
8729 RAGE128 FRAMEBUFFER DISPLAY DRIVER
8730 M:      Paul Mackerras <paulus@samba.org>
8731 L:      linux-fbdev@vger.kernel.org
8732 S:      Maintained
8733 F:      drivers/video/fbdev/aty/aty128fb.c
8734
8735 RALINK RT2X00 WIRELESS LAN DRIVER
8736 P:      rt2x00 project
8737 M:      Stanislaw Gruszka <sgruszka@redhat.com>
8738 M:      Helmut Schaa <helmut.schaa@googlemail.com>
8739 L:      linux-wireless@vger.kernel.org
8740 S:      Maintained
8741 F:      drivers/net/wireless/rt2x00/
8742
8743 RAMDISK RAM BLOCK DEVICE DRIVER
8744 M:      Jens Axboe <axboe@kernel.dk>
8745 S:      Maintained
8746 F:      Documentation/blockdev/ramdisk.txt
8747 F:      drivers/block/brd.c
8748
8749 RANDOM NUMBER DRIVER
8750 M:      "Theodore Ts'o" <tytso@mit.edu>
8751 S:      Maintained
8752 F:      drivers/char/random.c
8753
8754 RAPIDIO SUBSYSTEM
8755 M:      Matt Porter <mporter@kernel.crashing.org>
8756 M:      Alexandre Bounine <alexandre.bounine@idt.com>
8757 S:      Maintained
8758 F:      drivers/rapidio/
8759
8760 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
8761 L:      linux-wireless@vger.kernel.org
8762 S:      Orphan
8763 F:      drivers/net/wireless/ray*
8764
8765 RCUTORTURE MODULE
8766 M:      Josh Triplett <josh@joshtriplett.org>
8767 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8768 L:      linux-kernel@vger.kernel.org
8769 S:      Supported
8770 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8771 F:      Documentation/RCU/torture.txt
8772 F:      kernel/rcu/rcutorture.c
8773
8774 RCUTORTURE TEST FRAMEWORK
8775 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8776 M:      Josh Triplett <josh@joshtriplett.org>
8777 R:      Steven Rostedt <rostedt@goodmis.org>
8778 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8779 R:      Lai Jiangshan <jiangshanlai@gmail.com>
8780 L:      linux-kernel@vger.kernel.org
8781 S:      Supported
8782 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8783 F:      tools/testing/selftests/rcutorture
8784
8785 RDC R-321X SoC
8786 M:      Florian Fainelli <florian@openwrt.org>
8787 S:      Maintained
8788
8789 RDC R6040 FAST ETHERNET DRIVER
8790 M:      Florian Fainelli <florian@openwrt.org>
8791 L:      netdev@vger.kernel.org
8792 S:      Maintained
8793 F:      drivers/net/ethernet/rdc/r6040.c
8794
8795 RDS - RELIABLE DATAGRAM SOCKETS
8796 M:      Chien Yen <chien.yen@oracle.com>
8797 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
8798 S:      Supported
8799 F:      net/rds/
8800
8801 READ-COPY UPDATE (RCU)
8802 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8803 M:      Josh Triplett <josh@joshtriplett.org>
8804 R:      Steven Rostedt <rostedt@goodmis.org>
8805 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8806 R:      Lai Jiangshan <jiangshanlai@gmail.com>
8807 L:      linux-kernel@vger.kernel.org
8808 W:      http://www.rdrop.com/users/paulmck/RCU/
8809 S:      Supported
8810 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8811 F:      Documentation/RCU/
8812 X:      Documentation/RCU/torture.txt
8813 F:      include/linux/rcu*
8814 X:      include/linux/srcu.h
8815 F:      kernel/rcu/
8816 X:      kernel/torture.c
8817
8818 REAL TIME CLOCK (RTC) SUBSYSTEM
8819 M:      Alessandro Zummo <a.zummo@towertech.it>
8820 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
8821 L:      rtc-linux@googlegroups.com
8822 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
8823 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
8824 S:      Maintained
8825 F:      Documentation/rtc.txt
8826 F:      drivers/rtc/
8827 F:      include/linux/rtc.h
8828 F:      include/uapi/linux/rtc.h
8829
8830 REALTEK AUDIO CODECS
8831 M:      Bard Liao <bardliao@realtek.com>
8832 M:      Oder Chiou <oder_chiou@realtek.com>
8833 S:      Maintained
8834 F:      sound/soc/codecs/rt*
8835 F:      include/sound/rt*.h
8836
8837 REISERFS FILE SYSTEM
8838 L:      reiserfs-devel@vger.kernel.org
8839 S:      Supported
8840 F:      fs/reiserfs/
8841
8842 REGISTER MAP ABSTRACTION
8843 M:      Mark Brown <broonie@kernel.org>
8844 L:      linux-kernel@vger.kernel.org
8845 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
8846 S:      Supported
8847 F:      drivers/base/regmap/
8848 F:      include/linux/regmap.h
8849
8850 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
8851 M:      Ohad Ben-Cohen <ohad@wizery.com>
8852 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
8853 S:      Maintained
8854 F:      drivers/remoteproc/
8855 F:      Documentation/remoteproc.txt
8856 F:      include/linux/remoteproc.h
8857
8858 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
8859 M:      Ohad Ben-Cohen <ohad@wizery.com>
8860 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
8861 S:      Maintained
8862 F:      drivers/rpmsg/
8863 F:      Documentation/rpmsg.txt
8864 F:      include/linux/rpmsg.h
8865
8866 RESET CONTROLLER FRAMEWORK
8867 M:      Philipp Zabel <p.zabel@pengutronix.de>
8868 S:      Maintained
8869 F:      drivers/reset/
8870 F:      Documentation/devicetree/bindings/reset/
8871 F:      include/dt-bindings/reset/
8872 F:      include/linux/reset.h
8873 F:      include/linux/reset-controller.h
8874
8875 RFKILL
8876 M:      Johannes Berg <johannes@sipsolutions.net>
8877 L:      linux-wireless@vger.kernel.org
8878 W:      http://wireless.kernel.org/
8879 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
8880 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
8881 S:      Maintained
8882 F:      Documentation/rfkill.txt
8883 F:      net/rfkill/
8884
8885 RHASHTABLE
8886 M:      Thomas Graf <tgraf@suug.ch>
8887 L:      netdev@vger.kernel.org
8888 S:      Maintained
8889 F:      lib/rhashtable.c
8890 F:      include/linux/rhashtable.h
8891
8892 RICOH SMARTMEDIA/XD DRIVER
8893 M:      Maxim Levitsky <maximlevitsky@gmail.com>
8894 S:      Maintained
8895 F:      drivers/mtd/nand/r852.c
8896 F:      drivers/mtd/nand/r852.h
8897
8898 RICOH R5C592 MEMORYSTICK DRIVER
8899 M:      Maxim Levitsky <maximlevitsky@gmail.com>
8900 S:      Maintained
8901 F:      drivers/memstick/host/r592.*
8902
8903 ROCCAT DRIVERS
8904 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
8905 W:      http://sourceforge.net/projects/roccat/
8906 S:      Maintained
8907 F:      drivers/hid/hid-roccat*
8908 F:      include/linux/hid-roccat*
8909 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
8910
8911 ROCKER DRIVER
8912 M:      Jiri Pirko <jiri@resnulli.us>
8913 M:      Scott Feldman <sfeldma@gmail.com>
8914 L:      netdev@vger.kernel.org
8915 S:      Supported
8916 F:      drivers/net/ethernet/rocker/
8917
8918 ROCKETPORT DRIVER
8919 P:      Comtrol Corp.
8920 W:      http://www.comtrol.com
8921 S:      Maintained
8922 F:      Documentation/serial/rocket.txt
8923 F:      drivers/tty/rocket*
8924
8925 ROCKETPORT EXPRESS/INFINITY DRIVER
8926 M:      Kevin Cernekee <cernekee@gmail.com>
8927 L:      linux-serial@vger.kernel.org
8928 S:      Odd Fixes
8929 F:      drivers/tty/serial/rp2.*
8930
8931 ROSE NETWORK LAYER
8932 M:      Ralf Baechle <ralf@linux-mips.org>
8933 L:      linux-hams@vger.kernel.org
8934 W:      http://www.linux-ax25.org/
8935 S:      Maintained
8936 F:      include/net/rose.h
8937 F:      include/uapi/linux/rose.h
8938 F:      net/rose/
8939
8940 RTL2830 MEDIA DRIVER
8941 M:      Antti Palosaari <crope@iki.fi>
8942 L:      linux-media@vger.kernel.org
8943 W:      http://linuxtv.org/
8944 W:      http://palosaari.fi/linux/
8945 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8946 T:      git git://linuxtv.org/anttip/media_tree.git
8947 S:      Maintained
8948 F:      drivers/media/dvb-frontends/rtl2830*
8949
8950 RTL2832 MEDIA DRIVER
8951 M:      Antti Palosaari <crope@iki.fi>
8952 L:      linux-media@vger.kernel.org
8953 W:      http://linuxtv.org/
8954 W:      http://palosaari.fi/linux/
8955 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8956 T:      git git://linuxtv.org/anttip/media_tree.git
8957 S:      Maintained
8958 F:      drivers/media/dvb-frontends/rtl2832*
8959
8960 RTL2832_SDR MEDIA DRIVER
8961 M:      Antti Palosaari <crope@iki.fi>
8962 L:      linux-media@vger.kernel.org
8963 W:      http://linuxtv.org/
8964 W:      http://palosaari.fi/linux/
8965 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8966 T:      git git://linuxtv.org/anttip/media_tree.git
8967 S:      Maintained
8968 F:      drivers/media/dvb-frontends/rtl2832_sdr*
8969
8970 RTL8180 WIRELESS DRIVER
8971 L:      linux-wireless@vger.kernel.org
8972 W:      http://wireless.kernel.org/
8973 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8974 S:      Orphan
8975 F:      drivers/net/wireless/rtl818x/rtl8180/
8976
8977 RTL8187 WIRELESS DRIVER
8978 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
8979 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
8980 M:      Larry Finger <Larry.Finger@lwfinger.net>
8981 L:      linux-wireless@vger.kernel.org
8982 W:      http://wireless.kernel.org/
8983 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8984 S:      Maintained
8985 F:      drivers/net/wireless/rtl818x/rtl8187/
8986
8987 RTL8192CE WIRELESS DRIVER
8988 M:      Larry Finger <Larry.Finger@lwfinger.net>
8989 M:      Chaoming Li <chaoming_li@realsil.com.cn>
8990 L:      linux-wireless@vger.kernel.org
8991 W:      http://wireless.kernel.org/
8992 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8993 S:      Maintained
8994 F:      drivers/net/wireless/rtlwifi/
8995 F:      drivers/net/wireless/rtlwifi/rtl8192ce/
8996
8997 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
8998 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
8999 L:      linux-wireless@vger.kernel.org
9000 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8723au-mac80211
9001 S:      Maintained
9002 F:      drivers/net/wireless/realtek/rtl8xxxu/
9003
9004 S3 SAVAGE FRAMEBUFFER DRIVER
9005 M:      Antonino Daplas <adaplas@gmail.com>
9006 L:      linux-fbdev@vger.kernel.org
9007 S:      Maintained
9008 F:      drivers/video/fbdev/savage/
9009
9010 S390
9011 M:      Martin Schwidefsky <schwidefsky@de.ibm.com>
9012 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
9013 L:      linux-s390@vger.kernel.org
9014 W:      http://www.ibm.com/developerworks/linux/linux390/
9015 S:      Supported
9016 F:      arch/s390/
9017 F:      drivers/s390/
9018 F:      Documentation/s390/
9019 F:      Documentation/DocBook/s390*
9020
9021 S390 COMMON I/O LAYER
9022 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
9023 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
9024 L:      linux-s390@vger.kernel.org
9025 W:      http://www.ibm.com/developerworks/linux/linux390/
9026 S:      Supported
9027 F:      drivers/s390/cio/
9028
9029 S390 DASD DRIVER
9030 M:      Stefan Weinhuber <wein@de.ibm.com>
9031 M:      Stefan Haberland <stefan.haberland@de.ibm.com>
9032 L:      linux-s390@vger.kernel.org
9033 W:      http://www.ibm.com/developerworks/linux/linux390/
9034 S:      Supported
9035 F:      drivers/s390/block/dasd*
9036 F:      block/partitions/ibm.c
9037
9038 S390 NETWORK DRIVERS
9039 M:      Ursula Braun <ursula.braun@de.ibm.com>
9040 L:      linux-s390@vger.kernel.org
9041 W:      http://www.ibm.com/developerworks/linux/linux390/
9042 S:      Supported
9043 F:      drivers/s390/net/
9044
9045 S390 PCI SUBSYSTEM
9046 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
9047 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
9048 L:      linux-s390@vger.kernel.org
9049 W:      http://www.ibm.com/developerworks/linux/linux390/
9050 S:      Supported
9051 F:      arch/s390/pci/
9052 F:      drivers/pci/hotplug/s390_pci_hpc.c
9053
9054 S390 ZCRYPT DRIVER
9055 M:      Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
9056 L:      linux-s390@vger.kernel.org
9057 W:      http://www.ibm.com/developerworks/linux/linux390/
9058 S:      Supported
9059 F:      drivers/s390/crypto/
9060
9061 S390 ZFCP DRIVER
9062 M:      Steffen Maier <maier@linux.vnet.ibm.com>
9063 L:      linux-s390@vger.kernel.org
9064 W:      http://www.ibm.com/developerworks/linux/linux390/
9065 S:      Supported
9066 F:      drivers/s390/scsi/zfcp_*
9067
9068 S390 IUCV NETWORK LAYER
9069 M:      Ursula Braun <ursula.braun@de.ibm.com>
9070 L:      linux-s390@vger.kernel.org
9071 W:      http://www.ibm.com/developerworks/linux/linux390/
9072 S:      Supported
9073 F:      drivers/s390/net/*iucv*
9074 F:      include/net/iucv/
9075 F:      net/iucv/
9076
9077 S390 IOMMU (PCI)
9078 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
9079 L:      linux-s390@vger.kernel.org
9080 W:      http://www.ibm.com/developerworks/linux/linux390/
9081 S:      Supported
9082 F:      drivers/iommu/s390-iommu.c
9083
9084 S3C24XX SD/MMC Driver
9085 M:      Ben Dooks <ben-linux@fluff.org>
9086 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9087 S:      Supported
9088 F:      drivers/mmc/host/s3cmci.*
9089
9090 SAA6588 RDS RECEIVER DRIVER
9091 M:      Hans Verkuil <hverkuil@xs4all.nl>
9092 L:      linux-media@vger.kernel.org
9093 T:      git git://linuxtv.org/media_tree.git
9094 W:      http://linuxtv.org
9095 S:      Odd Fixes
9096 F:      drivers/media/i2c/saa6588*
9097
9098 SAA7134 VIDEO4LINUX DRIVER
9099 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9100 L:      linux-media@vger.kernel.org
9101 W:      http://linuxtv.org
9102 T:      git git://linuxtv.org/media_tree.git
9103 S:      Odd fixes
9104 F:      Documentation/video4linux/*.saa7134
9105 F:      drivers/media/pci/saa7134/
9106
9107 SAA7146 VIDEO4LINUX-2 DRIVER
9108 M:      Hans Verkuil <hverkuil@xs4all.nl>
9109 L:      linux-media@vger.kernel.org
9110 T:      git git://linuxtv.org/media_tree.git
9111 S:      Maintained
9112 F:      drivers/media/common/saa7146/
9113 F:      drivers/media/pci/saa7146/
9114 F:      include/media/saa7146*
9115
9116 SAMSUNG LAPTOP DRIVER
9117 M:      Corentin Chary <corentin.chary@gmail.com>
9118 L:      platform-driver-x86@vger.kernel.org
9119 S:      Maintained
9120 F:      drivers/platform/x86/samsung-laptop.c
9121
9122 SAMSUNG AUDIO (ASoC) DRIVERS
9123 M:      Sangbeom Kim <sbkim73@samsung.com>
9124 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9125 S:      Supported
9126 F:      sound/soc/samsung/
9127
9128 SAMSUNG FRAMEBUFFER DRIVER
9129 M:      Jingoo Han <jingoohan1@gmail.com>
9130 L:      linux-fbdev@vger.kernel.org
9131 S:      Maintained
9132 F:      drivers/video/fbdev/s3c-fb.c
9133
9134 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
9135 M:      Sangbeom Kim <sbkim73@samsung.com>
9136 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
9137 L:      linux-kernel@vger.kernel.org
9138 L:      linux-samsung-soc@vger.kernel.org
9139 S:      Supported
9140 F:      drivers/mfd/sec*.c
9141 F:      drivers/regulator/s2m*.c
9142 F:      drivers/regulator/s5m*.c
9143 F:      drivers/clk/clk-s2mps11.c
9144 F:      drivers/rtc/rtc-s5m.c
9145 F:      include/linux/mfd/samsung/
9146 F:      Documentation/devicetree/bindings/regulator/s5m8767-regulator.txt
9147 F:      Documentation/devicetree/bindings/mfd/s2mp*.txt
9148
9149 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
9150 M:      Kyungmin Park <kyungmin.park@samsung.com>
9151 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
9152 L:      linux-media@vger.kernel.org
9153 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
9154 S:      Supported
9155 F:      drivers/media/platform/exynos4-is/
9156
9157 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
9158 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
9159 L:      linux-media@vger.kernel.org
9160 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9161 S:      Maintained
9162 F:      drivers/media/platform/s3c-camif/
9163 F:      include/media/s3c_camif.h
9164
9165 SAMSUNG S5C73M3 CAMERA DRIVER
9166 M:      Kyungmin Park <kyungmin.park@samsung.com>
9167 M:      Andrzej Hajda <a.hajda@samsung.com>
9168 L:      linux-media@vger.kernel.org
9169 S:      Supported
9170 F:      drivers/media/i2c/s5c73m3/*
9171
9172 SAMSUNG S5K5BAF CAMERA DRIVER
9173 M:      Kyungmin Park <kyungmin.park@samsung.com>
9174 M:      Andrzej Hajda <a.hajda@samsung.com>
9175 L:      linux-media@vger.kernel.org
9176 S:      Supported
9177 F:      drivers/media/i2c/s5k5baf.c
9178
9179 SAMSUNG S3FWRN5 NFC DRIVER
9180 M:      Robert Baldyga <r.baldyga@samsung.com>
9181 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
9182 S:      Supported
9183 F:      drivers/nfc/s3fwrn5
9184
9185 SAMSUNG SOC CLOCK DRIVERS
9186 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
9187 M:      Tomasz Figa <tomasz.figa@gmail.com>
9188 S:      Supported
9189 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9190 F:      drivers/clk/samsung/
9191
9192 SAMSUNG SXGBE DRIVERS
9193 M:      Byungho An <bh74.an@samsung.com>
9194 M:      Girish K S <ks.giri@samsung.com>
9195 M:      Vipul Pandya <vipul.pandya@samsung.com>
9196 S:      Supported
9197 L:      netdev@vger.kernel.org
9198 F:      drivers/net/ethernet/samsung/sxgbe/
9199
9200 SAMSUNG THERMAL DRIVER
9201 M:      Lukasz Majewski <l.majewski@samsung.com>
9202 L:      linux-pm@vger.kernel.org
9203 L:      linux-samsung-soc@vger.kernel.org
9204 S:      Supported
9205 T:      https://github.com/lmajewski/linux-samsung-thermal.git
9206 F:      drivers/thermal/samsung/
9207
9208 SAMSUNG USB2 PHY DRIVER
9209 M:      Kamil Debski <k.debski@samsung.com>
9210 L:      linux-kernel@vger.kernel.org
9211 S:      Supported
9212 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
9213 F:      Documentation/phy/samsung-usb2.txt
9214 F:      drivers/phy/phy-exynos4210-usb2.c
9215 F:      drivers/phy/phy-exynos4x12-usb2.c
9216 F:      drivers/phy/phy-exynos5250-usb2.c
9217 F:      drivers/phy/phy-s5pv210-usb2.c
9218 F:      drivers/phy/phy-samsung-usb2.c
9219 F:      drivers/phy/phy-samsung-usb2.h
9220
9221 SERIAL DRIVERS
9222 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9223 L:      linux-serial@vger.kernel.org
9224 S:      Maintained
9225 F:      drivers/tty/serial/
9226
9227 SYNOPSYS DESIGNWARE DMAC DRIVER
9228 M:      Viresh Kumar <vireshk@kernel.org>
9229 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9230 S:      Maintained
9231 F:      include/linux/dma/dw.h
9232 F:      include/linux/platform_data/dma-dw.h
9233 F:      drivers/dma/dw/
9234
9235 SYNOPSYS DESIGNWARE ETHERNET QOS 4.10a driver
9236 M: Lars Persson <lars.persson@axis.com>
9237 L: netdev@vger.kernel.org
9238 S: Supported
9239 F: Documentation/devicetree/bindings/net/snps,dwc-qos-ethernet.txt
9240 F: drivers/net/ethernet/synopsys/dwc_eth_qos.c
9241
9242 SYNOPSYS DESIGNWARE I2C DRIVER
9243 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9244 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
9245 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9246 L:      linux-i2c@vger.kernel.org
9247 S:      Maintained
9248 F:      drivers/i2c/busses/i2c-designware-*
9249 F:      include/linux/platform_data/i2c-designware.h
9250
9251 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
9252 M:      Seungwon Jeon <tgih.jun@samsung.com>
9253 M:      Jaehoon Chung <jh80.chung@samsung.com>
9254 L:      linux-mmc@vger.kernel.org
9255 S:      Maintained
9256 F:      include/linux/mmc/dw_mmc.h
9257 F:      drivers/mmc/host/dw_mmc*
9258
9259 THUNDERBOLT DRIVER
9260 M:      Andreas Noever <andreas.noever@gmail.com>
9261 S:      Maintained
9262 F:      drivers/thunderbolt/
9263
9264 TIMEKEEPING, CLOCKSOURCE CORE, NTP
9265 M:      John Stultz <john.stultz@linaro.org>
9266 M:      Thomas Gleixner <tglx@linutronix.de>
9267 L:      linux-kernel@vger.kernel.org
9268 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
9269 S:      Supported
9270 F:      include/linux/clocksource.h
9271 F:      include/linux/time.h
9272 F:      include/linux/timex.h
9273 F:      include/uapi/linux/time.h
9274 F:      include/uapi/linux/timex.h
9275 F:      kernel/time/clocksource.c
9276 F:      kernel/time/time*.c
9277 F:      kernel/time/ntp.c
9278 F:      tools/testing/selftests/timers/
9279
9280 SC1200 WDT DRIVER
9281 M:      Zwane Mwaikambo <zwanem@gmail.com>
9282 S:      Maintained
9283 F:      drivers/watchdog/sc1200wdt.c
9284
9285 SCHEDULER
9286 M:      Ingo Molnar <mingo@redhat.com>
9287 M:      Peter Zijlstra <peterz@infradead.org>
9288 L:      linux-kernel@vger.kernel.org
9289 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
9290 S:      Maintained
9291 F:      kernel/sched/
9292 F:      include/linux/sched.h
9293 F:      include/uapi/linux/sched.h
9294 F:      include/linux/wait.h
9295
9296 SCORE ARCHITECTURE
9297 M:      Chen Liqin <liqin.linux@gmail.com>
9298 M:      Lennox Wu <lennox.wu@gmail.com>
9299 W:      http://www.sunplus.com
9300 S:      Supported
9301 F:      arch/score/
9302
9303 SYSTEM CONTROL & POWER INTERFACE (SCPI) Message Protocol drivers
9304 M:      Sudeep Holla <sudeep.holla@arm.com>
9305 L:      linux-arm-kernel@lists.infradead.org
9306 S:      Maintained
9307 F:      Documentation/devicetree/bindings/arm/arm,scpi.txt
9308 F:      drivers/clk/clk-scpi.c
9309 F:      drivers/cpufreq/scpi-cpufreq.c
9310 F:      drivers/firmware/arm_scpi.c
9311 F:      include/linux/scpi_protocol.h
9312
9313 SCSI CDROM DRIVER
9314 M:      Jens Axboe <axboe@kernel.dk>
9315 L:      linux-scsi@vger.kernel.org
9316 W:      http://www.kernel.dk
9317 S:      Maintained
9318 F:      drivers/scsi/sr*
9319
9320 SCSI RDMA PROTOCOL (SRP) INITIATOR
9321 M:      Bart Van Assche <bart.vanassche@sandisk.com>
9322 L:      linux-rdma@vger.kernel.org
9323 S:      Supported
9324 W:      http://www.openfabrics.org
9325 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9326 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
9327 F:      drivers/infiniband/ulp/srp/
9328 F:      include/scsi/srp.h
9329
9330 SCSI SG DRIVER
9331 M:      Doug Gilbert <dgilbert@interlog.com>
9332 L:      linux-scsi@vger.kernel.org
9333 W:      http://sg.danny.cz/sg
9334 S:      Maintained
9335 F:      Documentation/scsi/scsi-generic.txt
9336 F:      drivers/scsi/sg.c
9337 F:      include/scsi/sg.h
9338
9339 SCSI SUBSYSTEM
9340 M:      "James E.J. Bottomley" <JBottomley@odin.com>
9341 L:      linux-scsi@vger.kernel.org
9342 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
9343 S:      Maintained
9344 F:      drivers/scsi/
9345 F:      include/scsi/
9346
9347 SCSI TAPE DRIVER
9348 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
9349 L:      linux-scsi@vger.kernel.org
9350 S:      Maintained
9351 F:      Documentation/scsi/st.txt
9352 F:      drivers/scsi/st.*
9353 F:      drivers/scsi/st_*.h
9354
9355 SCTP PROTOCOL
9356 M:      Vlad Yasevich <vyasevich@gmail.com>
9357 M:      Neil Horman <nhorman@tuxdriver.com>
9358 L:      linux-sctp@vger.kernel.org
9359 W:      http://lksctp.sourceforge.net
9360 S:      Maintained
9361 F:      Documentation/networking/sctp.txt
9362 F:      include/linux/sctp.h
9363 F:      include/uapi/linux/sctp.h
9364 F:      include/net/sctp/
9365 F:      net/sctp/
9366
9367 SCx200 CPU SUPPORT
9368 M:      Jim Cromie <jim.cromie@gmail.com>
9369 S:      Odd Fixes
9370 F:      Documentation/i2c/busses/scx200_acb
9371 F:      arch/x86/platform/scx200/
9372 F:      drivers/watchdog/scx200_wdt.c
9373 F:      drivers/i2c/busses/scx200*
9374 F:      drivers/mtd/maps/scx200_docflash.c
9375 F:      include/linux/scx200.h
9376
9377 SCx200 GPIO DRIVER
9378 M:      Jim Cromie <jim.cromie@gmail.com>
9379 S:      Maintained
9380 F:      drivers/char/scx200_gpio.c
9381 F:      include/linux/scx200_gpio.h
9382
9383 SCx200 HRT CLOCKSOURCE DRIVER
9384 M:      Jim Cromie <jim.cromie@gmail.com>
9385 S:      Maintained
9386 F:      drivers/clocksource/scx200_hrt.c
9387
9388 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
9389 M:      Sascha Sommer <saschasommer@freenet.de>
9390 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
9391 S:      Maintained
9392 F:      drivers/mmc/host/sdricoh_cs.c
9393
9394 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
9395 L:      linux-mmc@vger.kernel.org
9396 S:      Orphan
9397 F:      drivers/mmc/host/sdhci.*
9398 F:      drivers/mmc/host/sdhci-pltfm.[ch]
9399
9400 SECURE COMPUTING
9401 M:      Kees Cook <keescook@chromium.org>
9402 R:      Andy Lutomirski <luto@amacapital.net>
9403 R:      Will Drewry <wad@chromium.org>
9404 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
9405 S:      Supported
9406 F:      kernel/seccomp.c
9407 F:      include/uapi/linux/seccomp.h
9408 F:      include/linux/seccomp.h
9409 F:      tools/testing/selftests/seccomp/*
9410 K:      \bsecure_computing
9411 K:      \bTIF_SECCOMP\b
9412
9413 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
9414 M:      Ben Dooks <ben-linux@fluff.org>
9415 M:      Jaehoon Chung <jh80.chung@samsung.com>
9416 L:      linux-mmc@vger.kernel.org
9417 S:      Maintained
9418 F:      drivers/mmc/host/sdhci-s3c*
9419
9420 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
9421 M:      Viresh Kumar <vireshk@kernel.org>
9422 L:      spear-devel@list.st.com
9423 L:      linux-mmc@vger.kernel.org
9424 S:      Maintained
9425 F:      drivers/mmc/host/sdhci-spear.c
9426
9427 SECURITY SUBSYSTEM
9428 M:      James Morris <james.l.morris@oracle.com>
9429 M:      "Serge E. Hallyn" <serge@hallyn.com>
9430 L:      linux-security-module@vger.kernel.org (suggested Cc:)
9431 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
9432 W:      http://kernsec.org/
9433 S:      Supported
9434 F:      security/
9435
9436 SECURITY CONTACT
9437 M:      Security Officers <security@kernel.org>
9438 S:      Supported
9439
9440 SELINUX SECURITY MODULE
9441 M:      Paul Moore <paul@paul-moore.com>
9442 M:      Stephen Smalley <sds@tycho.nsa.gov>
9443 M:      Eric Paris <eparis@parisplace.org>
9444 L:      selinux@tycho.nsa.gov (moderated for non-subscribers)
9445 W:      http://selinuxproject.org
9446 T:      git git://git.infradead.org/users/pcmoore/selinux
9447 S:      Supported
9448 F:      include/linux/selinux*
9449 F:      security/selinux/
9450 F:      scripts/selinux/
9451
9452 APPARMOR SECURITY MODULE
9453 M:      John Johansen <john.johansen@canonical.com>
9454 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
9455 W:      apparmor.wiki.kernel.org
9456 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
9457 S:      Supported
9458 F:      security/apparmor/
9459
9460 YAMA SECURITY MODULE
9461 M:      Kees Cook <keescook@chromium.org>
9462 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
9463 S:      Supported
9464 F:      security/yama/
9465
9466 SENSABLE PHANTOM
9467 M:      Jiri Slaby <jirislaby@gmail.com>
9468 S:      Maintained
9469 F:      drivers/misc/phantom.c
9470 F:      include/uapi/linux/phantom.h
9471
9472 SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
9473 M:      Jayamohan Kallickal <jayamohan.kallickal@avagotech.com>
9474 M:      Minh Tran <minh.tran@avagotech.com>
9475 M:      John Soni Jose <sony.john-n@avagotech.com>
9476 L:      linux-scsi@vger.kernel.org
9477 W:      http://www.avagotech.com
9478 S:      Supported
9479 F:      drivers/scsi/be2iscsi/
9480
9481 Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER
9482 M:      Sathya Perla <sathya.perla@avagotech.com>
9483 M:      Ajit Khaparde <ajit.khaparde@avagotech.com>
9484 M:      Padmanabh Ratnakar <padmanabh.ratnakar@avagotech.com>
9485 M:      Sriharsha Basavapatna <sriharsha.basavapatna@avagotech.com>
9486 L:      netdev@vger.kernel.org
9487 W:      http://www.emulex.com
9488 S:      Supported
9489 F:      drivers/net/ethernet/emulex/benet/
9490
9491 EMULEX ONECONNECT ROCE DRIVER
9492 M:      Selvin Xavier <selvin.xavier@avagotech.com>
9493 M:      Devesh Sharma <devesh.sharma@avagotech.com>
9494 M:      Mitesh Ahuja <mitesh.ahuja@avagotech.com>
9495 L:      linux-rdma@vger.kernel.org
9496 W:      http://www.emulex.com
9497 S:      Supported
9498 F:      drivers/infiniband/hw/ocrdma/
9499
9500 SFC NETWORK DRIVER
9501 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
9502 M:      Shradha Shah <sshah@solarflare.com>
9503 L:      netdev@vger.kernel.org
9504 S:      Supported
9505 F:      drivers/net/ethernet/sfc/
9506
9507 SGI GRU DRIVER
9508 M:      Dimitri Sivanich <sivanich@sgi.com>
9509 S:      Maintained
9510 F:      drivers/misc/sgi-gru/
9511
9512 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
9513 M:      Pat Gefre <pfg@sgi.com>
9514 L:      linux-ia64@vger.kernel.org
9515 S:      Supported
9516 F:      Documentation/ia64/serial.txt
9517 F:      drivers/tty/serial/ioc?_serial.c
9518 F:      include/linux/ioc?.h
9519
9520 SGI XP/XPC/XPNET DRIVER
9521 M:      Cliff Whickman <cpw@sgi.com>
9522 M:      Robin Holt <robinmholt@gmail.com>
9523 S:      Maintained
9524 F:      drivers/misc/sgi-xp/
9525
9526 SI2157 MEDIA DRIVER
9527 M:      Antti Palosaari <crope@iki.fi>
9528 L:      linux-media@vger.kernel.org
9529 W:      http://linuxtv.org/
9530 W:      http://palosaari.fi/linux/
9531 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9532 T:      git git://linuxtv.org/anttip/media_tree.git
9533 S:      Maintained
9534 F:      drivers/media/tuners/si2157*
9535
9536 SI2168 MEDIA DRIVER
9537 M:      Antti Palosaari <crope@iki.fi>
9538 L:      linux-media@vger.kernel.org
9539 W:      http://linuxtv.org/
9540 W:      http://palosaari.fi/linux/
9541 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9542 T:      git git://linuxtv.org/anttip/media_tree.git
9543 S:      Maintained
9544 F:      drivers/media/dvb-frontends/si2168*
9545
9546 SI470X FM RADIO RECEIVER I2C DRIVER
9547 M:      Hans Verkuil <hverkuil@xs4all.nl>
9548 L:      linux-media@vger.kernel.org
9549 T:      git git://linuxtv.org/media_tree.git
9550 W:      http://linuxtv.org
9551 S:      Odd Fixes
9552 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
9553
9554 SI470X FM RADIO RECEIVER USB DRIVER
9555 M:      Hans Verkuil <hverkuil@xs4all.nl>
9556 L:      linux-media@vger.kernel.org
9557 T:      git git://linuxtv.org/media_tree.git
9558 W:      http://linuxtv.org
9559 S:      Maintained
9560 F:      drivers/media/radio/si470x/radio-si470x-common.c
9561 F:      drivers/media/radio/si470x/radio-si470x.h
9562 F:      drivers/media/radio/si470x/radio-si470x-usb.c
9563
9564 SI4713 FM RADIO TRANSMITTER I2C DRIVER
9565 M:      Eduardo Valentin <edubezval@gmail.com>
9566 L:      linux-media@vger.kernel.org
9567 T:      git git://linuxtv.org/media_tree.git
9568 W:      http://linuxtv.org
9569 S:      Odd Fixes
9570 F:      drivers/media/radio/si4713/si4713.?
9571
9572 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
9573 M:      Eduardo Valentin <edubezval@gmail.com>
9574 L:      linux-media@vger.kernel.org
9575 T:      git git://linuxtv.org/media_tree.git
9576 W:      http://linuxtv.org
9577 S:      Odd Fixes
9578 F:      drivers/media/radio/si4713/radio-platform-si4713.c
9579
9580 SI4713 FM RADIO TRANSMITTER USB DRIVER
9581 M:      Hans Verkuil <hverkuil@xs4all.nl>
9582 L:      linux-media@vger.kernel.org
9583 T:      git git://linuxtv.org/media_tree.git
9584 W:      http://linuxtv.org
9585 S:      Maintained
9586 F:      drivers/media/radio/si4713/radio-usb-si4713.c
9587
9588 SIANO DVB DRIVER
9589 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9590 L:      linux-media@vger.kernel.org
9591 W:      http://linuxtv.org
9592 T:      git git://linuxtv.org/media_tree.git
9593 S:      Odd fixes
9594 F:      drivers/media/common/siano/
9595 F:      drivers/media/usb/siano/
9596 F:      drivers/media/usb/siano/
9597 F:      drivers/media/mmc/siano/
9598
9599 SIMPLEFB FB DRIVER
9600 M:      Hans de Goede <hdegoede@redhat.com>
9601 L:      linux-fbdev@vger.kernel.org
9602 S:      Maintained
9603 F:      Documentation/devicetree/bindings/video/simple-framebuffer.txt
9604 F:      drivers/video/fbdev/simplefb.c
9605 F:      include/linux/platform_data/simplefb.h
9606
9607 SH_VEU V4L2 MEM2MEM DRIVER
9608 L:      linux-media@vger.kernel.org
9609 S:      Orphan
9610 F:      drivers/media/platform/sh_veu.c
9611
9612 SH_VOU V4L2 OUTPUT DRIVER
9613 L:      linux-media@vger.kernel.org
9614 S:      Orphan
9615 F:      drivers/media/platform/sh_vou.c
9616 F:      include/media/sh_vou.h
9617
9618 SIMPLE FIRMWARE INTERFACE (SFI)
9619 M:      Len Brown <lenb@kernel.org>
9620 L:      sfi-devel@simplefirmware.org
9621 W:      http://simplefirmware.org/
9622 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
9623 S:      Supported
9624 F:      arch/x86/platform/sfi/
9625 F:      drivers/sfi/
9626 F:      include/linux/sfi*.h
9627
9628 SIMTEC EB110ATX (Chalice CATS)
9629 P:      Ben Dooks
9630 P:      Vincent Sanders <vince@simtec.co.uk>
9631 M:      Simtec Linux Team <linux@simtec.co.uk>
9632 W:      http://www.simtec.co.uk/products/EB110ATX/
9633 S:      Supported
9634
9635 SIMTEC EB2410ITX (BAST)
9636 P:      Ben Dooks
9637 P:      Vincent Sanders <vince@simtec.co.uk>
9638 M:      Simtec Linux Team <linux@simtec.co.uk>
9639 W:      http://www.simtec.co.uk/products/EB2410ITX/
9640 S:      Supported
9641 F:      arch/arm/mach-s3c24xx/mach-bast.c
9642 F:      arch/arm/mach-s3c24xx/bast-ide.c
9643 F:      arch/arm/mach-s3c24xx/bast-irq.c
9644
9645 TI DAVINCI MACHINE SUPPORT
9646 M:      Sekhar Nori <nsekhar@ti.com>
9647 M:      Kevin Hilman <khilman@deeprootsystems.com>
9648 T:      git git://gitorious.org/linux-davinci/linux-davinci.git
9649 Q:      http://patchwork.kernel.org/project/linux-davinci/list/
9650 S:      Supported
9651 F:      arch/arm/mach-davinci/
9652 F:      drivers/i2c/busses/i2c-davinci.c
9653
9654 TI DAVINCI SERIES MEDIA DRIVER
9655 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9656 L:      linux-media@vger.kernel.org
9657 W:      http://linuxtv.org/
9658 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9659 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9660 S:      Maintained
9661 F:      drivers/media/platform/davinci/
9662 F:      include/media/davinci/
9663
9664 TI AM437X VPFE DRIVER
9665 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9666 L:      linux-media@vger.kernel.org
9667 W:      http://linuxtv.org/
9668 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9669 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9670 S:      Maintained
9671 F:      drivers/media/platform/am437x/
9672
9673 OV2659 OMNIVISION SENSOR DRIVER
9674 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9675 L:      linux-media@vger.kernel.org
9676 W:      http://linuxtv.org/
9677 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9678 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9679 S:      Maintained
9680 F:      drivers/media/i2c/ov2659.c
9681 F:      include/media/ov2659.h
9682
9683 SILICON MOTION SM712 FRAME BUFFER DRIVER
9684 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
9685 M:      Teddy Wang <teddy.wang@siliconmotion.com>
9686 M:      Sudip Mukherjee <sudip@vectorindia.org>
9687 L:      linux-fbdev@vger.kernel.org
9688 S:      Maintained
9689 F:      drivers/video/fbdev/sm712*
9690 F:      Documentation/fb/sm712fb.txt
9691
9692 SIS 190 ETHERNET DRIVER
9693 M:      Francois Romieu <romieu@fr.zoreil.com>
9694 L:      netdev@vger.kernel.org
9695 S:      Maintained
9696 F:      drivers/net/ethernet/sis/sis190.c
9697
9698 SIS 900/7016 FAST ETHERNET DRIVER
9699 M:      Daniele Venzano <venza@brownhat.org>
9700 W:      http://www.brownhat.org/sis900.html
9701 L:      netdev@vger.kernel.org
9702 S:      Maintained
9703 F:      drivers/net/ethernet/sis/sis900.*
9704
9705 SIS FRAMEBUFFER DRIVER
9706 M:      Thomas Winischhofer <thomas@winischhofer.net>
9707 W:      http://www.winischhofer.net/linuxsisvga.shtml
9708 S:      Maintained
9709 F:      Documentation/fb/sisfb.txt
9710 F:      drivers/video/fbdev/sis/
9711 F:      include/video/sisfb.h
9712
9713 SIS USB2VGA DRIVER
9714 M:      Thomas Winischhofer <thomas@winischhofer.net>
9715 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
9716 S:      Maintained
9717 F:      drivers/usb/misc/sisusbvga/
9718
9719 SLAB ALLOCATOR
9720 M:      Christoph Lameter <cl@linux.com>
9721 M:      Pekka Enberg <penberg@kernel.org>
9722 M:      David Rientjes <rientjes@google.com>
9723 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
9724 M:      Andrew Morton <akpm@linux-foundation.org>
9725 L:      linux-mm@kvack.org
9726 S:      Maintained
9727 F:      include/linux/sl?b*.h
9728 F:      mm/sl?b*
9729
9730 SLEEPABLE READ-COPY UPDATE (SRCU)
9731 M:      Lai Jiangshan <jiangshanlai@gmail.com>
9732 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9733 M:      Josh Triplett <josh@joshtriplett.org>
9734 R:      Steven Rostedt <rostedt@goodmis.org>
9735 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9736 L:      linux-kernel@vger.kernel.org
9737 W:      http://www.rdrop.com/users/paulmck/RCU/
9738 S:      Supported
9739 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9740 F:      include/linux/srcu.h
9741 F:      kernel/rcu/srcu.c
9742
9743 SMACK SECURITY MODULE
9744 M:      Casey Schaufler <casey@schaufler-ca.com>
9745 L:      linux-security-module@vger.kernel.org
9746 W:      http://schaufler-ca.com
9747 T:      git git://git.gitorious.org/smack-next/kernel.git
9748 S:      Maintained
9749 F:      Documentation/security/Smack.txt
9750 F:      security/smack/
9751
9752 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
9753 M:      Kevin Hilman <khilman@kernel.org>
9754 M:      Nishanth Menon <nm@ti.com>
9755 S:      Maintained
9756 F:      drivers/power/avs/
9757 F:      include/linux/power/smartreflex.h
9758 L:      linux-pm@vger.kernel.org
9759
9760 SMC91x ETHERNET DRIVER
9761 M:      Nicolas Pitre <nico@fluxnic.net>
9762 S:      Odd Fixes
9763 F:      drivers/net/ethernet/smsc/smc91x.*
9764
9765 SMIA AND SMIA++ IMAGE SENSOR DRIVER
9766 M:      Sakari Ailus <sakari.ailus@iki.fi>
9767 L:      linux-media@vger.kernel.org
9768 S:      Maintained
9769 F:      drivers/media/i2c/smiapp/
9770 F:      include/media/smiapp.h
9771 F:      drivers/media/i2c/smiapp-pll.c
9772 F:      drivers/media/i2c/smiapp-pll.h
9773 F:      include/uapi/linux/smiapp.h
9774 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
9775
9776 SMM665 HARDWARE MONITOR DRIVER
9777 M:      Guenter Roeck <linux@roeck-us.net>
9778 L:      lm-sensors@lm-sensors.org
9779 S:      Maintained
9780 F:      Documentation/hwmon/smm665
9781 F:      drivers/hwmon/smm665.c
9782
9783 SMSC EMC2103 HARDWARE MONITOR DRIVER
9784 M:      Steve Glendinning <steve.glendinning@shawell.net>
9785 L:      lm-sensors@lm-sensors.org
9786 S:      Maintained
9787 F:      Documentation/hwmon/emc2103
9788 F:      drivers/hwmon/emc2103.c
9789
9790 SMSC SCH5627 HARDWARE MONITOR DRIVER
9791 M:      Hans de Goede <hdegoede@redhat.com>
9792 L:      lm-sensors@lm-sensors.org
9793 S:      Supported
9794 F:      Documentation/hwmon/sch5627
9795 F:      drivers/hwmon/sch5627.c
9796
9797 SMSC47B397 HARDWARE MONITOR DRIVER
9798 M:      Jean Delvare <jdelvare@suse.com>
9799 L:      lm-sensors@lm-sensors.org
9800 S:      Maintained
9801 F:      Documentation/hwmon/smsc47b397
9802 F:      drivers/hwmon/smsc47b397.c
9803
9804 SMSC911x ETHERNET DRIVER
9805 M:      Steve Glendinning <steve.glendinning@shawell.net>
9806 L:      netdev@vger.kernel.org
9807 S:      Maintained
9808 F:      include/linux/smsc911x.h
9809 F:      drivers/net/ethernet/smsc/smsc911x.*
9810
9811 SMSC9420 PCI ETHERNET DRIVER
9812 M:      Steve Glendinning <steve.glendinning@shawell.net>
9813 L:      netdev@vger.kernel.org
9814 S:      Maintained
9815 F:      drivers/net/ethernet/smsc/smsc9420.*
9816
9817 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
9818 M:      Steve Glendinning <steve.glendinning@shawell.net>
9819 L:      linux-fbdev@vger.kernel.org
9820 S:      Maintained
9821 F:      drivers/video/fbdev/smscufx.c
9822
9823 SOC-CAMERA V4L2 SUBSYSTEM
9824 M:      Guennadi Liakhovetski <g.liakhovetski@gmx.de>
9825 L:      linux-media@vger.kernel.org
9826 T:      git git://linuxtv.org/media_tree.git
9827 S:      Maintained
9828 F:      include/media/soc*
9829 F:      drivers/media/i2c/soc_camera/
9830 F:      drivers/media/platform/soc_camera/
9831
9832 SOEKRIS NET48XX LED SUPPORT
9833 M:      Chris Boot <bootc@bootc.net>
9834 S:      Maintained
9835 F:      drivers/leds/leds-net48xx.c
9836
9837 SOFTLOGIC 6x10 MPEG CODEC
9838 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
9839 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
9840 M:      Andrey Utkin <andrey.krieger.utkin@gmail.com>
9841 M:      Ismael Luceno <ismael@iodev.co.uk>
9842 L:      linux-media@vger.kernel.org
9843 S:      Supported
9844 F:      drivers/media/pci/solo6x10/
9845
9846 SOFTWARE RAID (Multiple Disks) SUPPORT
9847 M:      Neil Brown <neilb@suse.com>
9848 L:      linux-raid@vger.kernel.org
9849 S:      Supported
9850 F:      drivers/md/
9851 F:      include/linux/raid/
9852 F:      include/uapi/linux/raid/
9853
9854 SONIC NETWORK DRIVER
9855 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
9856 L:      netdev@vger.kernel.org
9857 S:      Maintained
9858 F:      drivers/net/ethernet/natsemi/sonic.*
9859
9860 SONICS SILICON BACKPLANE DRIVER (SSB)
9861 M:      Michael Buesch <m@bues.ch>
9862 L:      netdev@vger.kernel.org
9863 S:      Maintained
9864 F:      drivers/ssb/
9865 F:      include/linux/ssb/
9866
9867 SONY VAIO CONTROL DEVICE DRIVER
9868 M:      Mattia Dongili <malattia@linux.it>
9869 L:      platform-driver-x86@vger.kernel.org
9870 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
9871 S:      Maintained
9872 F:      Documentation/laptops/sony-laptop.txt
9873 F:      drivers/char/sonypi.c
9874 F:      drivers/platform/x86/sony-laptop.c
9875 F:      include/linux/sony-laptop.h
9876
9877 SONY MEMORYSTICK CARD SUPPORT
9878 M:      Alex Dubov <oakad@yahoo.com>
9879 W:      http://tifmxx.berlios.de/
9880 S:      Maintained
9881 F:      drivers/memstick/host/tifm_ms.c
9882
9883 SONY MEMORYSTICK STANDARD SUPPORT
9884 M:      Maxim Levitsky <maximlevitsky@gmail.com>
9885 S:      Maintained
9886 F:      drivers/memstick/core/ms_block.*
9887
9888 SOUND
9889 M:      Jaroslav Kysela <perex@perex.cz>
9890 M:      Takashi Iwai <tiwai@suse.com>
9891 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9892 W:      http://www.alsa-project.org/
9893 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
9894 T:      git git://git.alsa-project.org/alsa-kernel.git
9895 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
9896 S:      Maintained
9897 F:      Documentation/sound/
9898 F:      include/sound/
9899 F:      include/uapi/sound/
9900 F:      sound/
9901
9902 SOUND - COMPRESSED AUDIO
9903 M:      Vinod Koul <vinod.koul@intel.com>
9904 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9905 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
9906 S:      Supported
9907 F:      Documentation/sound/alsa/compress_offload.txt
9908 F:      include/sound/compress_driver.h
9909 F:      include/uapi/sound/compress_*
9910 F:      sound/core/compress_offload.c
9911 F:      sound/soc/soc-compress.c
9912
9913 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
9914 M:      Liam Girdwood <lgirdwood@gmail.com>
9915 M:      Mark Brown <broonie@kernel.org>
9916 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
9917 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9918 W:      http://alsa-project.org/main/index.php/ASoC
9919 S:      Supported
9920 F:      Documentation/sound/alsa/soc/
9921 F:      sound/soc/
9922 F:      include/sound/soc*
9923
9924 SOUND - DMAENGINE HELPERS
9925 M:      Lars-Peter Clausen <lars@metafoo.de>
9926 S:      Supported
9927 F:      include/sound/dmaengine_pcm.h
9928 F:      sound/core/pcm_dmaengine.c
9929 F:      sound/soc/soc-generic-dmaengine-pcm.c
9930
9931 SP2 MEDIA DRIVER
9932 M:      Olli Salonen <olli.salonen@iki.fi>
9933 L:      linux-media@vger.kernel.org
9934 W:      http://linuxtv.org/
9935 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9936 S:      Maintained
9937 F:      drivers/media/dvb-frontends/sp2*
9938
9939 SPARC + UltraSPARC (sparc/sparc64)
9940 M:      "David S. Miller" <davem@davemloft.net>
9941 L:      sparclinux@vger.kernel.org
9942 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
9943 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
9944 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
9945 S:      Maintained
9946 F:      arch/sparc/
9947 F:      drivers/sbus/
9948
9949 SPARC SERIAL DRIVERS
9950 M:      "David S. Miller" <davem@davemloft.net>
9951 L:      sparclinux@vger.kernel.org
9952 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
9953 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
9954 S:      Maintained
9955 F:      include/linux/sunserialcore.h
9956 F:      drivers/tty/serial/suncore.c
9957 F:      drivers/tty/serial/sunhv.c
9958 F:      drivers/tty/serial/sunsab.c
9959 F:      drivers/tty/serial/sunsab.h
9960 F:      drivers/tty/serial/sunsu.c
9961 F:      drivers/tty/serial/sunzilog.c
9962 F:      drivers/tty/serial/sunzilog.h
9963
9964 SPARSE CHECKER
9965 M:      "Christopher Li" <sparse@chrisli.org>
9966 L:      linux-sparse@vger.kernel.org
9967 W:      https://sparse.wiki.kernel.org/
9968 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
9969 T:      git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
9970 S:      Maintained
9971 F:      include/linux/compiler.h
9972
9973 SPEAR PLATFORM SUPPORT
9974 M:      Viresh Kumar <vireshk@kernel.org>
9975 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
9976 L:      spear-devel@list.st.com
9977 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9978 W:      http://www.st.com/spear
9979 S:      Maintained
9980 F:      arch/arm/mach-spear/
9981
9982 SPEAR CLOCK FRAMEWORK SUPPORT
9983 M:      Viresh Kumar <vireshk@kernel.org>
9984 L:      spear-devel@list.st.com
9985 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9986 W:      http://www.st.com/spear
9987 S:      Maintained
9988 F:      drivers/clk/spear/
9989
9990 SPI SUBSYSTEM
9991 M:      Mark Brown <broonie@kernel.org>
9992 L:      linux-spi@vger.kernel.org
9993 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
9994 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
9995 S:      Maintained
9996 F:      Documentation/spi/
9997 F:      drivers/spi/
9998 F:      include/linux/spi/
9999 F:      include/uapi/linux/spi/
10000
10001 SPIDERNET NETWORK DRIVER for CELL
10002 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
10003 L:      netdev@vger.kernel.org
10004 S:      Supported
10005 F:      Documentation/networking/spider_net.txt
10006 F:      drivers/net/ethernet/toshiba/spider_net*
10007
10008 SPU FILE SYSTEM
10009 M:      Jeremy Kerr <jk@ozlabs.org>
10010 L:      linuxppc-dev@lists.ozlabs.org
10011 W:      http://www.ibm.com/developerworks/power/cell/
10012 S:      Supported
10013 F:      Documentation/filesystems/spufs.txt
10014 F:      arch/powerpc/platforms/cell/spufs/
10015
10016 SQUASHFS FILE SYSTEM
10017 M:      Phillip Lougher <phillip@squashfs.org.uk>
10018 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
10019 W:      http://squashfs.org.uk
10020 S:      Maintained
10021 F:      Documentation/filesystems/squashfs.txt
10022 F:      fs/squashfs/
10023
10024 SRM (Alpha) environment access
10025 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
10026 S:      Maintained
10027 F:      arch/alpha/kernel/srm_env.c
10028
10029 STABLE BRANCH
10030 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10031 L:      stable@vger.kernel.org
10032 S:      Supported
10033 F:      Documentation/stable_kernel_rules.txt
10034
10035 STAGING SUBSYSTEM
10036 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10037 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
10038 L:      devel@driverdev.osuosl.org
10039 S:      Supported
10040 F:      drivers/staging/
10041
10042 STAGING - COMEDI
10043 M:      Ian Abbott <abbotti@mev.co.uk>
10044 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
10045 S:      Odd Fixes
10046 F:      drivers/staging/comedi/
10047
10048 STAGING - FLARION FT1000 DRIVERS
10049 M:      Marek Belisko <marek.belisko@gmail.com>
10050 S:      Odd Fixes
10051 F:      drivers/staging/ft1000/
10052
10053 STAGING - INDUSTRIAL IO
10054 M:      Jonathan Cameron <jic23@kernel.org>
10055 L:      linux-iio@vger.kernel.org
10056 S:      Odd Fixes
10057 F:      drivers/staging/iio/
10058
10059 STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
10060 M:      Jarod Wilson <jarod@wilsonet.com>
10061 W:      http://www.lirc.org/
10062 S:      Odd Fixes
10063 F:      drivers/staging/media/lirc/
10064
10065 STAGING - LUSTRE PARALLEL FILESYSTEM
10066 M:      Oleg Drokin <oleg.drokin@intel.com>
10067 M:      Andreas Dilger <andreas.dilger@intel.com>
10068 L:      lustre-devel@lists.lustre.org (moderated for non-subscribers)
10069 W:      http://wiki.lustre.org/
10070 S:      Maintained
10071 F:      drivers/staging/lustre
10072
10073 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
10074 M:      Marc Dietrich <marvin24@gmx.de>
10075 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
10076 L:      linux-tegra@vger.kernel.org
10077 S:      Maintained
10078 F:      drivers/staging/nvec/
10079
10080 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
10081 M:      Jens Frederich <jfrederich@gmail.com>
10082 M:      Daniel Drake <dsd@laptop.org>
10083 M:      Jon Nettleton <jon.nettleton@gmail.com>
10084 W:      http://wiki.laptop.org/go/DCON
10085 S:      Maintained
10086 F:      drivers/staging/olpc_dcon/
10087
10088 STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
10089 M:      Willy Tarreau <willy@meta-x.org>
10090 S:      Odd Fixes
10091 F:      drivers/staging/panel/
10092
10093 STAGING - REALTEK RTL8712U DRIVERS
10094 M:      Larry Finger <Larry.Finger@lwfinger.net>
10095 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
10096 S:      Odd Fixes
10097 F:      drivers/staging/rtl8712/
10098
10099 STAGING - REALTEK RTL8723U WIRELESS DRIVER
10100 M:      Larry Finger <Larry.Finger@lwfinger.net>
10101 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
10102 L:      linux-wireless@vger.kernel.org
10103 S:      Maintained
10104 F:      drivers/staging/rtl8723au/
10105
10106 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
10107 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
10108 M:      Teddy Wang <teddy.wang@siliconmotion.com>
10109 M:      Sudip Mukherjee <sudip@vectorindia.org>
10110 L:      linux-fbdev@vger.kernel.org
10111 S:      Maintained
10112 F:      drivers/staging/sm750fb/
10113
10114 STAGING - SLICOSS
10115 M:      Lior Dotan <liodot@gmail.com>
10116 M:      Christopher Harrer <charrer@alacritech.com>
10117 S:      Odd Fixes
10118 F:      drivers/staging/slicoss/
10119
10120 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
10121 M:      William Hubbs <w.d.hubbs@gmail.com>
10122 M:      Chris Brannon <chris@the-brannons.com>
10123 M:      Kirk Reiser <kirk@reisers.ca>
10124 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
10125 L:      speakup@linux-speakup.org
10126 W:      http://www.linux-speakup.org/
10127 S:      Odd Fixes
10128 F:      drivers/staging/speakup/
10129
10130 STAGING - VIA VT665X DRIVERS
10131 M:      Forest Bond <forest@alittletooquiet.net>
10132 S:      Odd Fixes
10133 F:      drivers/staging/vt665?/
10134
10135 STAGING - WILC1000 WIFI DRIVER
10136 M:      Johnny Kim <johnny.kim@atmel.com>
10137 M:      Austin Shin <austin.shin@atmel.com>
10138 M:      Chris Park <chris.park@atmel.com>
10139 M:      Tony Cho <tony.cho@atmel.com>
10140 M:      Glen Lee <glen.lee@atmel.com>
10141 M:      Leo Kim <leo.kim@atmel.com>
10142 L:      linux-wireless@vger.kernel.org
10143 S:      Supported
10144 F:      drivers/staging/wilc1000/
10145
10146 STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
10147 M:      Arnaud Patard <arnaud.patard@rtp-net.org>
10148 S:      Odd Fixes
10149 F:      drivers/staging/xgifb/
10150
10151 HFI1 DRIVER
10152 M:      Mike Marciniszyn <infinipath@intel.com>
10153 L:      linux-rdma@vger.kernel.org
10154 S:      Supported
10155 F:      drivers/staging/rdma/hfi1
10156
10157 STARFIRE/DURALAN NETWORK DRIVER
10158 M:      Ion Badulescu <ionut@badula.org>
10159 S:      Odd Fixes
10160 F:      drivers/net/ethernet/adaptec/starfire*
10161
10162 SUN3/3X
10163 M:      Sam Creasey <sammy@sammy.net>
10164 W:      http://sammy.net/sun3/
10165 S:      Maintained
10166 F:      arch/m68k/kernel/*sun3*
10167 F:      arch/m68k/sun3*/
10168 F:      arch/m68k/include/asm/sun3*
10169 F:      drivers/net/ethernet/i825xx/sun3*
10170
10171 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
10172 M:      Hans de Goede <hdegoede@redhat.com>
10173 L:      linux-input@vger.kernel.org
10174 S:      Maintained
10175 F:      Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
10176 F:      drivers/input/keyboard/sun4i-lradc-keys.c
10177
10178 SUNDANCE NETWORK DRIVER
10179 M:      Denis Kirjanov <kda@linux-powerpc.org>
10180 L:      netdev@vger.kernel.org
10181 S:      Maintained
10182 F:      drivers/net/ethernet/dlink/sundance.c
10183
10184 SUPERH
10185 L:      linux-sh@vger.kernel.org
10186 Q:      http://patchwork.kernel.org/project/linux-sh/list/
10187 S:      Orphan
10188 F:      Documentation/sh/
10189 F:      arch/sh/
10190 F:      drivers/sh/
10191
10192 SUSPEND TO RAM
10193 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
10194 M:      Len Brown <len.brown@intel.com>
10195 M:      Pavel Machek <pavel@ucw.cz>
10196 L:      linux-pm@vger.kernel.org
10197 S:      Supported
10198 F:      Documentation/power/
10199 F:      arch/x86/kernel/acpi/
10200 F:      drivers/base/power/
10201 F:      kernel/power/
10202 F:      include/linux/suspend.h
10203 F:      include/linux/freezer.h
10204 F:      include/linux/pm.h
10205
10206 SVGA HANDLING
10207 M:      Martin Mares <mj@ucw.cz>
10208 L:      linux-video@atrey.karlin.mff.cuni.cz
10209 S:      Maintained
10210 F:      Documentation/svga.txt
10211 F:      arch/x86/boot/video*
10212
10213 SWIOTLB SUBSYSTEM
10214 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10215 L:      linux-kernel@vger.kernel.org
10216 S:      Supported
10217 F:      lib/swiotlb.c
10218 F:      arch/*/kernel/pci-swiotlb.c
10219 F:      include/linux/swiotlb.h
10220
10221 SWITCHDEV
10222 M:      Jiri Pirko <jiri@resnulli.us>
10223 L:      netdev@vger.kernel.org
10224 S:      Supported
10225 F:      net/switchdev/
10226 F:      include/net/switchdev.h
10227
10228 SYNOPSYS ARC ARCHITECTURE
10229 M:      Vineet Gupta <vgupta@synopsys.com>
10230 L:      linux-snps-arc@lists.infraded.org
10231 S:      Supported
10232 F:      arch/arc/
10233 F:      Documentation/devicetree/bindings/arc/*
10234 F:      drivers/tty/serial/arc_uart.c
10235 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
10236
10237 SYNOPSYS ARC SDP platform support
10238 M:      Alexey Brodkin <abrodkin@synopsys.com>
10239 S:      Supported
10240 F:      arch/arc/plat-axs10x
10241 F:      arch/arc/boot/dts/ax*
10242 F:      Documentation/devicetree/bindings/arc/axs10*
10243
10244 SYSTEM CONFIGURATION (SYSCON)
10245 M:      Lee Jones <lee.jones@linaro.org>
10246 M:      Arnd Bergmann <arnd@arndb.de>
10247 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
10248 S:      Supported
10249 F:      drivers/mfd/syscon.c
10250
10251 SYSV FILESYSTEM
10252 M:      Christoph Hellwig <hch@infradead.org>
10253 S:      Maintained
10254 F:      Documentation/filesystems/sysv-fs.txt
10255 F:      fs/sysv/
10256 F:      include/linux/sysv_fs.h
10257
10258 TARGET SUBSYSTEM
10259 M:      "Nicholas A. Bellinger" <nab@linux-iscsi.org>
10260 L:      linux-scsi@vger.kernel.org
10261 L:      target-devel@vger.kernel.org
10262 W:      http://www.linux-iscsi.org
10263 W:      http://groups.google.com/group/linux-iscsi-target-dev
10264 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10265 S:      Supported
10266 F:      drivers/target/
10267 F:      include/target/
10268 F:      Documentation/target/
10269
10270 TASKSTATS STATISTICS INTERFACE
10271 M:      Balbir Singh <bsingharora@gmail.com>
10272 S:      Maintained
10273 F:      Documentation/accounting/taskstats*
10274 F:      include/linux/taskstats*
10275 F:      kernel/taskstats.c
10276
10277 TC CLASSIFIER
10278 M:      Jamal Hadi Salim <jhs@mojatatu.com>
10279 L:      netdev@vger.kernel.org
10280 S:      Maintained
10281 F:      include/net/pkt_cls.h
10282 F:      include/uapi/linux/pkt_cls.h
10283 F:      net/sched/
10284
10285 TCP LOW PRIORITY MODULE
10286 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
10287 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
10288 W:      http://tcp-lp-mod.sourceforge.net/
10289 S:      Maintained
10290 F:      net/ipv4/tcp_lp.c
10291
10292 TDA10071 MEDIA DRIVER
10293 M:      Antti Palosaari <crope@iki.fi>
10294 L:      linux-media@vger.kernel.org
10295 W:      http://linuxtv.org/
10296 W:      http://palosaari.fi/linux/
10297 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10298 T:      git git://linuxtv.org/anttip/media_tree.git
10299 S:      Maintained
10300 F:      drivers/media/dvb-frontends/tda10071*
10301
10302 TDA18212 MEDIA DRIVER
10303 M:      Antti Palosaari <crope@iki.fi>
10304 L:      linux-media@vger.kernel.org
10305 W:      http://linuxtv.org/
10306 W:      http://palosaari.fi/linux/
10307 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10308 T:      git git://linuxtv.org/anttip/media_tree.git
10309 S:      Maintained
10310 F:      drivers/media/tuners/tda18212*
10311
10312 TDA18218 MEDIA DRIVER
10313 M:      Antti Palosaari <crope@iki.fi>
10314 L:      linux-media@vger.kernel.org
10315 W:      http://linuxtv.org/
10316 W:      http://palosaari.fi/linux/
10317 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10318 T:      git git://linuxtv.org/anttip/media_tree.git
10319 S:      Maintained
10320 F:      drivers/media/tuners/tda18218*
10321
10322 TDA18271 MEDIA DRIVER
10323 M:      Michael Krufky <mkrufky@linuxtv.org>
10324 L:      linux-media@vger.kernel.org
10325 W:      http://linuxtv.org/
10326 W:      http://github.com/mkrufky
10327 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10328 T:      git git://linuxtv.org/mkrufky/tuners.git
10329 S:      Maintained
10330 F:      drivers/media/tuners/tda18271*
10331
10332 TDA827x MEDIA DRIVER
10333 M:      Michael Krufky <mkrufky@linuxtv.org>
10334 L:      linux-media@vger.kernel.org
10335 W:      http://linuxtv.org/
10336 W:      http://github.com/mkrufky
10337 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10338 T:      git git://linuxtv.org/mkrufky/tuners.git
10339 S:      Maintained
10340 F:      drivers/media/tuners/tda8290.*
10341
10342 TDA8290 MEDIA DRIVER
10343 M:      Michael Krufky <mkrufky@linuxtv.org>
10344 L:      linux-media@vger.kernel.org
10345 W:      http://linuxtv.org/
10346 W:      http://github.com/mkrufky
10347 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10348 T:      git git://linuxtv.org/mkrufky/tuners.git
10349 S:      Maintained
10350 F:      drivers/media/tuners/tda8290.*
10351
10352 TDA9840 MEDIA DRIVER
10353 M:      Hans Verkuil <hverkuil@xs4all.nl>
10354 L:      linux-media@vger.kernel.org
10355 T:      git git://linuxtv.org/media_tree.git
10356 W:      http://linuxtv.org
10357 S:      Maintained
10358 F:      drivers/media/i2c/tda9840*
10359
10360 TEA5761 TUNER DRIVER
10361 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10362 L:      linux-media@vger.kernel.org
10363 W:      http://linuxtv.org
10364 T:      git git://linuxtv.org/media_tree.git
10365 S:      Odd fixes
10366 F:      drivers/media/tuners/tea5761.*
10367
10368 TEA5767 TUNER DRIVER
10369 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10370 L:      linux-media@vger.kernel.org
10371 W:      http://linuxtv.org
10372 T:      git git://linuxtv.org/media_tree.git
10373 S:      Maintained
10374 F:      drivers/media/tuners/tea5767.*
10375
10376 TEA6415C MEDIA DRIVER
10377 M:      Hans Verkuil <hverkuil@xs4all.nl>
10378 L:      linux-media@vger.kernel.org
10379 T:      git git://linuxtv.org/media_tree.git
10380 W:      http://linuxtv.org
10381 S:      Maintained
10382 F:      drivers/media/i2c/tea6415c*
10383
10384 TEA6420 MEDIA DRIVER
10385 M:      Hans Verkuil <hverkuil@xs4all.nl>
10386 L:      linux-media@vger.kernel.org
10387 T:      git git://linuxtv.org/media_tree.git
10388 W:      http://linuxtv.org
10389 S:      Maintained
10390 F:      drivers/media/i2c/tea6420*
10391
10392 TEAM DRIVER
10393 M:      Jiri Pirko <jiri@resnulli.us>
10394 L:      netdev@vger.kernel.org
10395 S:      Supported
10396 F:      drivers/net/team/
10397 F:      include/linux/if_team.h
10398 F:      include/uapi/linux/if_team.h
10399
10400 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
10401 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
10402 S:      Maintained
10403 F:      arch/x86/platform/ts5500/
10404
10405 TECHNOTREND USB IR RECEIVER
10406 M:      Sean Young <sean@mess.org>
10407 L:      linux-media@vger.kernel.org
10408 S:      Maintained
10409 F:      drivers/media/rc/ttusbir.c
10410
10411 TEGRA ARCHITECTURE SUPPORT
10412 M:      Stephen Warren <swarren@wwwdotorg.org>
10413 M:      Thierry Reding <thierry.reding@gmail.com>
10414 M:      Alexandre Courbot <gnurou@gmail.com>
10415 L:      linux-tegra@vger.kernel.org
10416 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
10417 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
10418 S:      Supported
10419 N:      [^a-z]tegra
10420
10421 TEGRA CLOCK DRIVER
10422 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
10423 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
10424 S:      Supported
10425 F:      drivers/clk/tegra/
10426
10427 TEGRA DMA DRIVER
10428 M:      Laxman Dewangan <ldewangan@nvidia.com>
10429 S:      Supported
10430 F:      drivers/dma/tegra20-apb-dma.c
10431
10432 TEGRA I2C DRIVER
10433 M:      Laxman Dewangan <ldewangan@nvidia.com>
10434 S:      Supported
10435 F:      drivers/i2c/busses/i2c-tegra.c
10436
10437 TEGRA IOMMU DRIVERS
10438 M:      Hiroshi Doyu <hdoyu@nvidia.com>
10439 S:      Supported
10440 F:      drivers/iommu/tegra*
10441
10442 TEGRA KBC DRIVER
10443 M:      Rakesh Iyer <riyer@nvidia.com>
10444 M:      Laxman Dewangan <ldewangan@nvidia.com>
10445 S:      Supported
10446 F:      drivers/input/keyboard/tegra-kbc.c
10447
10448 TEGRA PWM DRIVER
10449 M:      Thierry Reding <thierry.reding@gmail.com>
10450 S:      Supported
10451 F:      drivers/pwm/pwm-tegra.c
10452
10453 TEGRA SERIAL DRIVER
10454 M:      Laxman Dewangan <ldewangan@nvidia.com>
10455 S:      Supported
10456 F:      drivers/tty/serial/serial-tegra.c
10457
10458 TEGRA SPI DRIVER
10459 M:      Laxman Dewangan <ldewangan@nvidia.com>
10460 S:      Supported
10461 F:      drivers/spi/spi-tegra*
10462
10463 TEHUTI ETHERNET DRIVER
10464 M:      Andy Gospodarek <andy@greyhouse.net>
10465 L:      netdev@vger.kernel.org
10466 S:      Supported
10467 F:      drivers/net/ethernet/tehuti/*
10468
10469 Telecom Clock Driver for MCPL0010
10470 M:      Mark Gross <mark.gross@intel.com>
10471 S:      Supported
10472 F:      drivers/char/tlclk.c
10473
10474 TENSILICA XTENSA PORT (xtensa)
10475 M:      Chris Zankel <chris@zankel.net>
10476 M:      Max Filippov <jcmvbkbc@gmail.com>
10477 L:      linux-xtensa@linux-xtensa.org
10478 S:      Maintained
10479 F:      arch/xtensa/
10480 F:      drivers/irqchip/irq-xtensa-*
10481
10482 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
10483 M:      Hans Verkuil <hverkuil@xs4all.nl>
10484 L:      linux-media@vger.kernel.org
10485 T:      git git://linuxtv.org/media_tree.git
10486 W:      http://linuxtv.org
10487 S:      Maintained
10488 F:      drivers/media/radio/radio-raremono.c
10489
10490 THERMAL
10491 M:      Zhang Rui <rui.zhang@intel.com>
10492 M:      Eduardo Valentin <edubezval@gmail.com>
10493 L:      linux-pm@vger.kernel.org
10494 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
10495 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
10496 Q:      https://patchwork.kernel.org/project/linux-pm/list/
10497 S:      Supported
10498 F:      drivers/thermal/
10499 F:      include/linux/thermal.h
10500 F:      include/uapi/linux/thermal.h
10501 F:      include/linux/cpu_cooling.h
10502 F:      Documentation/devicetree/bindings/thermal/
10503
10504 THERMAL/CPU_COOLING
10505 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
10506 M:      Viresh Kumar <viresh.kumar@linaro.org>
10507 M:      Javi Merino <javi.merino@arm.com>
10508 L:      linux-pm@vger.kernel.org
10509 S:      Supported
10510 F:      Documentation/thermal/cpu-cooling-api.txt
10511 F:      drivers/thermal/cpu_cooling.c
10512 F:      include/linux/cpu_cooling.h
10513
10514 THINGM BLINK(1) USB RGB LED DRIVER
10515 M:      Vivien Didelot <vivien.didelot@savoirfairelinux.com>
10516 S:      Maintained
10517 F:      drivers/hid/hid-thingm.c
10518
10519 THINKPAD ACPI EXTRAS DRIVER
10520 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
10521 L:      ibm-acpi-devel@lists.sourceforge.net
10522 L:      platform-driver-x86@vger.kernel.org
10523 W:      http://ibm-acpi.sourceforge.net
10524 W:      http://thinkwiki.org/wiki/Ibm-acpi
10525 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
10526 S:      Maintained
10527 F:      drivers/platform/x86/thinkpad_acpi.c
10528
10529 TI BANDGAP AND THERMAL DRIVER
10530 M:      Eduardo Valentin <edubezval@gmail.com>
10531 L:      linux-pm@vger.kernel.org
10532 L:      linux-omap@vger.kernel.org
10533 S:      Maintained
10534 F:      drivers/thermal/ti-soc-thermal/
10535
10536 TI CDCE706 CLOCK DRIVER
10537 M:      Max Filippov <jcmvbkbc@gmail.com>
10538 S:      Maintained
10539 F:      drivers/clk/clk-cdce706.c
10540
10541 TI CLOCK DRIVER
10542 M:      Tero Kristo <t-kristo@ti.com>
10543 L:      linux-omap@vger.kernel.org
10544 S:      Maintained
10545 F:      drivers/clk/ti/
10546 F:      include/linux/clk/ti.h
10547
10548 TI FLASH MEDIA INTERFACE DRIVER
10549 M:      Alex Dubov <oakad@yahoo.com>
10550 S:      Maintained
10551 F:      drivers/misc/tifm*
10552 F:      drivers/mmc/host/tifm_sd.c
10553 F:      include/linux/tifm.h
10554
10555 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
10556 M:      Santosh Shilimkar <ssantosh@kernel.org>
10557 L:      linux-kernel@vger.kernel.org
10558 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10559 S:      Maintained
10560 F:      drivers/soc/ti/*
10561 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
10562
10563
10564 TI LM49xxx FAMILY ASoC CODEC DRIVERS
10565 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
10566 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
10567 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10568 S:      Maintained
10569 F:      sound/soc/codecs/lm49453*
10570 F:      sound/soc/codecs/isabelle*
10571
10572 TI LP855x BACKLIGHT DRIVER
10573 M:      Milo Kim <milo.kim@ti.com>
10574 S:      Maintained
10575 F:      Documentation/backlight/lp855x-driver.txt
10576 F:      drivers/video/backlight/lp855x_bl.c
10577 F:      include/linux/platform_data/lp855x.h
10578
10579 TI LP8727 CHARGER DRIVER
10580 M:      Milo Kim <milo.kim@ti.com>
10581 S:      Maintained
10582 F:      drivers/power/lp8727_charger.c
10583 F:      include/linux/platform_data/lp8727.h
10584
10585 TI LP8788 MFD DRIVER
10586 M:      Milo Kim <milo.kim@ti.com>
10587 S:      Maintained
10588 F:      drivers/iio/adc/lp8788_adc.c
10589 F:      drivers/leds/leds-lp8788.c
10590 F:      drivers/mfd/lp8788*.c
10591 F:      drivers/power/lp8788-charger.c
10592 F:      drivers/regulator/lp8788-*.c
10593 F:      include/linux/mfd/lp8788*.h
10594
10595 TI NETCP ETHERNET DRIVER
10596 M:      Wingman Kwok <w-kwok2@ti.com>
10597 M:      Murali Karicheri <m-karicheri2@ti.com>
10598 L:      netdev@vger.kernel.org
10599 S:      Maintained
10600 F:      drivers/net/ethernet/ti/netcp*
10601
10602 TI TAS571X FAMILY ASoC CODEC DRIVER
10603 M:      Kevin Cernekee <cernekee@chromium.org>
10604 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10605 S:      Odd Fixes
10606 F:      sound/soc/codecs/tas571x*
10607
10608 TI TWL4030 SERIES SOC CODEC DRIVER
10609 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
10610 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10611 S:      Maintained
10612 F:      sound/soc/codecs/twl4030*
10613
10614 TI WILINK WIRELESS DRIVERS
10615 L:      linux-wireless@vger.kernel.org
10616 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
10617 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
10618 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
10619 S:      Orphan
10620 F:      drivers/net/wireless/ti/
10621 F:      include/linux/wl12xx.h
10622
10623 TIPC NETWORK LAYER
10624 M:      Jon Maloy <jon.maloy@ericsson.com>
10625 M:      Ying Xue <ying.xue@windriver.com>
10626 L:      netdev@vger.kernel.org (core kernel code)
10627 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
10628 W:      http://tipc.sourceforge.net/
10629 S:      Maintained
10630 F:      include/uapi/linux/tipc*.h
10631 F:      net/tipc/
10632
10633 TILE ARCHITECTURE
10634 M:      Chris Metcalf <cmetcalf@ezchip.com>
10635 W:      http://www.ezchip.com/scm/
10636 S:      Supported
10637 F:      arch/tile/
10638 F:      drivers/char/tile-srom.c
10639 F:      drivers/edac/tile_edac.c
10640 F:      drivers/net/ethernet/tile/
10641 F:      drivers/rtc/rtc-tile.c
10642 F:      drivers/tty/hvc/hvc_tile.c
10643 F:      drivers/tty/serial/tilegx.c
10644 F:      drivers/usb/host/*-tilegx.c
10645 F:      include/linux/usb/tilegx.h
10646
10647 TLAN NETWORK DRIVER
10648 M:      Samuel Chessman <chessman@tux.org>
10649 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
10650 W:      http://sourceforge.net/projects/tlan/
10651 S:      Maintained
10652 F:      Documentation/networking/tlan.txt
10653 F:      drivers/net/ethernet/ti/tlan.*
10654
10655 TOMOYO SECURITY MODULE
10656 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
10657 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
10658 L:      tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
10659 L:      tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
10660 L:      tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
10661 L:      tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
10662 W:      http://tomoyo.sourceforge.jp/
10663 T:      quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
10664 S:      Maintained
10665 F:      security/tomoyo/
10666
10667 TOPSTAR LAPTOP EXTRAS DRIVER
10668 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
10669 L:      platform-driver-x86@vger.kernel.org
10670 S:      Maintained
10671 F:      drivers/platform/x86/topstar-laptop.c
10672
10673 TOSHIBA ACPI EXTRAS DRIVER
10674 M:      Azael Avalos <coproscefalo@gmail.com>
10675 L:      platform-driver-x86@vger.kernel.org
10676 S:      Maintained
10677 F:      drivers/platform/x86/toshiba_acpi.c
10678
10679 TOSHIBA BLUETOOTH DRIVER
10680 M:      Azael Avalos <coproscefalo@gmail.com>
10681 L:      platform-driver-x86@vger.kernel.org
10682 S:      Maintained
10683 F:      drivers/platform/x86/toshiba_bluetooth.c
10684
10685 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
10686 M:      Azael Avalos <coproscefalo@gmail.com>
10687 L:      platform-driver-x86@vger.kernel.org
10688 S:      Maintained
10689 F:      drivers/platform/x86/toshiba_haps.c
10690
10691 TOSHIBA WMI HOTKEYS DRIVER
10692 M:      Azael Avalos <coproscefalo@gmail.com>
10693 L:      platform-driver-x86@vger.kernel.org
10694 S:      Maintained
10695 F:      drivers/platform/x86/toshiba-wmi.c
10696
10697 TOSHIBA SMM DRIVER
10698 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
10699 W:      http://www.buzzard.org.uk/toshiba/
10700 S:      Maintained
10701 F:      drivers/char/toshiba.c
10702 F:      include/linux/toshiba.h
10703 F:      include/uapi/linux/toshiba.h
10704
10705 TOSHIBA TC358743 DRIVER
10706 M:      Mats Randgaard <matrandg@cisco.com>
10707 L:      linux-media@vger.kernel.org
10708 S:      Maintained
10709 F:      drivers/media/i2c/tc358743*
10710 F:      include/media/tc358743.h
10711
10712 TMIO MMC DRIVER
10713 M:      Ian Molton <ian@mnementh.co.uk>
10714 L:      linux-mmc@vger.kernel.org
10715 S:      Maintained
10716 F:      drivers/mmc/host/tmio_mmc*
10717 F:      drivers/mmc/host/sh_mobile_sdhi.c
10718 F:      include/linux/mmc/tmio.h
10719 F:      include/linux/mmc/sh_mobile_sdhi.h
10720
10721 TMP401 HARDWARE MONITOR DRIVER
10722 M:      Guenter Roeck <linux@roeck-us.net>
10723 L:      lm-sensors@lm-sensors.org
10724 S:      Maintained
10725 F:      Documentation/hwmon/tmp401
10726 F:      drivers/hwmon/tmp401.c
10727
10728 TMPFS (SHMEM FILESYSTEM)
10729 M:      Hugh Dickins <hughd@google.com>
10730 L:      linux-mm@kvack.org
10731 S:      Maintained
10732 F:      include/linux/shmem_fs.h
10733 F:      mm/shmem.c
10734
10735 TM6000 VIDEO4LINUX DRIVER
10736 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10737 L:      linux-media@vger.kernel.org
10738 W:      http://linuxtv.org
10739 T:      git git://linuxtv.org/media_tree.git
10740 S:      Odd fixes
10741 F:      drivers/media/usb/tm6000/
10742
10743 TW68 VIDEO4LINUX DRIVER
10744 M:      Hans Verkuil <hverkuil@xs4all.nl>
10745 L:      linux-media@vger.kernel.org
10746 T:      git git://linuxtv.org/media_tree.git
10747 W:      http://linuxtv.org
10748 S:      Odd Fixes
10749 F:      drivers/media/pci/tw68/
10750
10751 TPM DEVICE DRIVER
10752 M:      Peter Huewe <peterhuewe@gmx.de>
10753 M:      Marcel Selhorst <tpmdd@selhorst.net>
10754 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
10755 R:      Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
10756 W:      http://tpmdd.sourceforge.net
10757 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
10758 Q:      git git://github.com/PeterHuewe/linux-tpmdd.git
10759 T:      https://github.com/PeterHuewe/linux-tpmdd
10760 S:      Maintained
10761 F:      drivers/char/tpm/
10762
10763 TPM IBM_VTPM DEVICE DRIVER
10764 M:      Ashley Lai <ashleydlai@gmail.com>
10765 W:      http://tpmdd.sourceforge.net
10766 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
10767 S:      Maintained
10768 F:      drivers/char/tpm/tpm_ibmvtpm*
10769
10770 TRACING
10771 M:      Steven Rostedt <rostedt@goodmis.org>
10772 M:      Ingo Molnar <mingo@redhat.com>
10773 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
10774 S:      Maintained
10775 F:      Documentation/trace/ftrace.txt
10776 F:      arch/*/*/*/ftrace.h
10777 F:      arch/*/kernel/ftrace.c
10778 F:      include/*/ftrace.h
10779 F:      include/linux/trace*.h
10780 F:      include/trace/
10781 F:      kernel/trace/
10782 F:      tools/testing/selftests/ftrace/
10783
10784 TRIVIAL PATCHES
10785 M:      Jiri Kosina <trivial@kernel.org>
10786 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
10787 S:      Maintained
10788 K:      ^Subject:.*(?i)trivial
10789
10790 TTY LAYER
10791 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10792 M:      Jiri Slaby <jslaby@suse.com>
10793 S:      Supported
10794 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
10795 F:      Documentation/serial/
10796 F:      drivers/tty/
10797 F:      drivers/tty/serial/serial_core.c
10798 F:      include/linux/serial_core.h
10799 F:      include/linux/serial.h
10800 F:      include/linux/tty.h
10801 F:      include/uapi/linux/serial_core.h
10802 F:      include/uapi/linux/serial.h
10803 F:      include/uapi/linux/tty.h
10804
10805 TUA9001 MEDIA DRIVER
10806 M:      Antti Palosaari <crope@iki.fi>
10807 L:      linux-media@vger.kernel.org
10808 W:      http://linuxtv.org/
10809 W:      http://palosaari.fi/linux/
10810 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10811 T:      git git://linuxtv.org/anttip/media_tree.git
10812 S:      Maintained
10813 F:      drivers/media/tuners/tua9001*
10814
10815 TULIP NETWORK DRIVERS
10816 M:      Grant Grundler <grundler@parisc-linux.org>
10817 L:      netdev@vger.kernel.org
10818 S:      Maintained
10819 F:      drivers/net/ethernet/dec/tulip/
10820
10821 TUN/TAP driver
10822 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
10823 W:      http://vtun.sourceforge.net/tun
10824 S:      Maintained
10825 F:      Documentation/networking/tuntap.txt
10826 F:      arch/um/os-Linux/drivers/
10827
10828 TURBOCHANNEL SUBSYSTEM
10829 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
10830 M:      Ralf Baechle <ralf@linux-mips.org>
10831 L:      linux-mips@linux-mips.org
10832 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
10833 S:      Maintained
10834 F:      drivers/tc/
10835 F:      include/linux/tc.h
10836
10837 U14-34F SCSI DRIVER
10838 M:      Dario Ballabio <ballabio_dario@emc.com>
10839 L:      linux-scsi@vger.kernel.org
10840 S:      Maintained
10841 F:      drivers/scsi/u14-34f.c
10842
10843 UBI FILE SYSTEM (UBIFS)
10844 M:      Artem Bityutskiy <dedekind1@gmail.com>
10845 M:      Adrian Hunter <adrian.hunter@intel.com>
10846 L:      linux-mtd@lists.infradead.org
10847 T:      git git://git.infradead.org/ubifs-2.6.git
10848 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
10849 S:      Maintained
10850 F:      Documentation/filesystems/ubifs.txt
10851 F:      fs/ubifs/
10852
10853 UCLINUX (M68KNOMMU AND COLDFIRE)
10854 M:      Greg Ungerer <gerg@uclinux.org>
10855 W:      http://www.uclinux.org/
10856 L:      linux-m68k@lists.linux-m68k.org
10857 L:      uclinux-dev@uclinux.org  (subscribers-only)
10858 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
10859 S:      Maintained
10860 F:      arch/m68k/coldfire/
10861 F:      arch/m68k/68*/
10862 F:      arch/m68k/*/*_no.*
10863 F:      arch/m68k/include/asm/*_no.*
10864
10865 UDF FILESYSTEM
10866 M:      Jan Kara <jack@suse.com>
10867 S:      Maintained
10868 F:      Documentation/filesystems/udf.txt
10869 F:      fs/udf/
10870
10871 UFS FILESYSTEM
10872 M:      Evgeniy Dushistov <dushistov@mail.ru>
10873 S:      Maintained
10874 F:      Documentation/filesystems/ufs.txt
10875 F:      fs/ufs/
10876
10877 UHID USERSPACE HID IO DRIVER:
10878 M:      David Herrmann <dh.herrmann@googlemail.com>
10879 L:      linux-input@vger.kernel.org
10880 S:      Maintained
10881 F:      drivers/hid/uhid.c
10882 F:      include/uapi/linux/uhid.h
10883
10884 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
10885 L:      linux-usb@vger.kernel.org
10886 S:      Orphan
10887 F:      drivers/uwb/
10888 F:      include/linux/uwb.h
10889 F:      include/linux/uwb/
10890
10891 UNICORE32 ARCHITECTURE:
10892 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
10893 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
10894 S:      Maintained
10895 T:      git git://github.com/gxt/linux.git
10896 F:      arch/unicore32/
10897
10898 UNIFDEF
10899 M:      Tony Finch <dot@dotat.at>
10900 W:      http://dotat.at/prog/unifdef
10901 S:      Maintained
10902 F:      scripts/unifdef.c
10903
10904 UNIFORM CDROM DRIVER
10905 M:      Jens Axboe <axboe@kernel.dk>
10906 W:      http://www.kernel.dk
10907 S:      Maintained
10908 F:      Documentation/cdrom/
10909 F:      drivers/cdrom/cdrom.c
10910 F:      include/linux/cdrom.h
10911 F:      include/uapi/linux/cdrom.h
10912
10913 UNISYS S-PAR DRIVERS
10914 M:      Benjamin Romer <benjamin.romer@unisys.com>
10915 M:      David Kershner <david.kershner@unisys.com>
10916 L:      sparmaintainer@unisys.com (Unisys internal)
10917 S:      Supported
10918 F:      drivers/staging/unisys/
10919
10920 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
10921 M:      Vinayak Holikatti <vinholikatti@gmail.com>
10922 L:      linux-scsi@vger.kernel.org
10923 S:      Supported
10924 F:      Documentation/scsi/ufs.txt
10925 F:      drivers/scsi/ufs/
10926
10927 UNSORTED BLOCK IMAGES (UBI)
10928 M:      Artem Bityutskiy <dedekind1@gmail.com>
10929 M:      Richard Weinberger <richard@nod.at>
10930 W:      http://www.linux-mtd.infradead.org/
10931 L:      linux-mtd@lists.infradead.org
10932 T:      git git://git.infradead.org/ubifs-2.6.git
10933 S:      Supported
10934 F:      drivers/mtd/ubi/
10935 F:      include/linux/mtd/ubi.h
10936 F:      include/uapi/mtd/ubi-user.h
10937
10938 USB ACM DRIVER
10939 M:      Oliver Neukum <oliver@neukum.org>
10940 L:      linux-usb@vger.kernel.org
10941 S:      Maintained
10942 F:      Documentation/usb/acm.txt
10943 F:      drivers/usb/class/cdc-acm.*
10944
10945 USB AR5523 WIRELESS DRIVER
10946 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
10947 L:      linux-wireless@vger.kernel.org
10948 S:      Maintained
10949 F:      drivers/net/wireless/ath/ar5523/
10950
10951 USB ATTACHED SCSI
10952 M:      Hans de Goede <hdegoede@redhat.com>
10953 M:      Gerd Hoffmann <kraxel@redhat.com>
10954 L:      linux-usb@vger.kernel.org
10955 L:      linux-scsi@vger.kernel.org
10956 S:      Maintained
10957 F:      drivers/usb/storage/uas.c
10958
10959 USB CDC ETHERNET DRIVER
10960 M:      Oliver Neukum <oliver@neukum.org>
10961 L:      linux-usb@vger.kernel.org
10962 S:      Maintained
10963 F:      drivers/net/usb/cdc_*.c
10964 F:      include/uapi/linux/usb/cdc.h
10965
10966 USB CHAOSKEY DRIVER
10967 M:      Keith Packard <keithp@keithp.com>
10968 L:      linux-usb@vger.kernel.org
10969 S:      Maintained
10970 F:      drivers/usb/misc/chaoskey.c
10971
10972 USB CYPRESS C67X00 DRIVER
10973 M:      Peter Korsgaard <jacmet@sunsite.dk>
10974 L:      linux-usb@vger.kernel.org
10975 S:      Maintained
10976 F:      drivers/usb/c67x00/
10977
10978 USB DAVICOM DM9601 DRIVER
10979 M:      Peter Korsgaard <jacmet@sunsite.dk>
10980 L:      netdev@vger.kernel.org
10981 W:      http://www.linux-usb.org/usbnet
10982 S:      Maintained
10983 F:      drivers/net/usb/dm9601.c
10984
10985 USB DIAMOND RIO500 DRIVER
10986 M:      Cesar Miquel <miquel@df.uba.ar>
10987 L:      rio500-users@lists.sourceforge.net
10988 W:      http://rio500.sourceforge.net
10989 S:      Maintained
10990 F:      drivers/usb/misc/rio500*
10991
10992 USB EHCI DRIVER
10993 M:      Alan Stern <stern@rowland.harvard.edu>
10994 L:      linux-usb@vger.kernel.org
10995 S:      Maintained
10996 F:      Documentation/usb/ehci.txt
10997 F:      drivers/usb/host/ehci*
10998
10999 USB GADGET/PERIPHERAL SUBSYSTEM
11000 M:      Felipe Balbi <balbi@ti.com>
11001 L:      linux-usb@vger.kernel.org
11002 W:      http://www.linux-usb.org/gadget
11003 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
11004 S:      Maintained
11005 F:      drivers/usb/gadget/
11006 F:      include/linux/usb/gadget*
11007
11008 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
11009 M:      Jiri Kosina <jikos@kernel.org>
11010 L:      linux-usb@vger.kernel.org
11011 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
11012 S:      Maintained
11013 F:      Documentation/hid/hiddev.txt
11014 F:      drivers/hid/usbhid/
11015
11016 USB ISP116X DRIVER
11017 M:      Olav Kongas <ok@artecdesign.ee>
11018 L:      linux-usb@vger.kernel.org
11019 S:      Maintained
11020 F:      drivers/usb/host/isp116x*
11021 F:      include/linux/usb/isp116x.h
11022
11023 USB MASS STORAGE DRIVER
11024 M:      Matthew Dharm <mdharm-usb@one-eyed-alien.net>
11025 L:      linux-usb@vger.kernel.org
11026 L:      usb-storage@lists.one-eyed-alien.net
11027 S:      Maintained
11028 W:      http://www.one-eyed-alien.net/~mdharm/linux-usb/
11029 F:      drivers/usb/storage/
11030
11031 USB MIDI DRIVER
11032 M:      Clemens Ladisch <clemens@ladisch.de>
11033 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11034 T:      git git://git.alsa-project.org/alsa-kernel.git
11035 S:      Maintained
11036 F:      sound/usb/midi.*
11037
11038 USB NETWORKING DRIVERS
11039 L:      linux-usb@vger.kernel.org
11040 S:      Odd Fixes
11041 F:      drivers/net/usb/
11042
11043 USB OHCI DRIVER
11044 M:      Alan Stern <stern@rowland.harvard.edu>
11045 L:      linux-usb@vger.kernel.org
11046 S:      Maintained
11047 F:      Documentation/usb/ohci.txt
11048 F:      drivers/usb/host/ohci*
11049
11050 USB OTG FSM (Finite State Machine)
11051 M:      Peter Chen <Peter.Chen@freescale.com>
11052 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
11053 L:      linux-usb@vger.kernel.org
11054 S:      Maintained
11055 F:      drivers/usb/common/usb-otg-fsm.c
11056
11057 USB OVER IP DRIVER
11058 M:      Valentina Manea <valentina.manea.m@gmail.com>
11059 M:      Shuah Khan <shuah.kh@samsung.com>
11060 L:      linux-usb@vger.kernel.org
11061 S:      Maintained
11062 F:      drivers/usb/usbip/
11063 F:      tools/usb/usbip/
11064
11065 USB PEGASUS DRIVER
11066 M:      Petko Manolov <petkan@nucleusys.com>
11067 L:      linux-usb@vger.kernel.org
11068 L:      netdev@vger.kernel.org
11069 T:      git git://github.com/petkan/pegasus.git
11070 W:      https://github.com/petkan/pegasus
11071 S:      Maintained
11072 F:      drivers/net/usb/pegasus.*
11073
11074 USB PHY LAYER
11075 M:      Felipe Balbi <balbi@ti.com>
11076 L:      linux-usb@vger.kernel.org
11077 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
11078 S:      Maintained
11079 F:      drivers/usb/phy/
11080
11081 USB PRINTER DRIVER (usblp)
11082 M:      Pete Zaitcev <zaitcev@redhat.com>
11083 L:      linux-usb@vger.kernel.org
11084 S:      Supported
11085 F:      drivers/usb/class/usblp.c
11086
11087 USB RTL8150 DRIVER
11088 M:      Petko Manolov <petkan@nucleusys.com>
11089 L:      linux-usb@vger.kernel.org
11090 L:      netdev@vger.kernel.org
11091 T:      git git://github.com/petkan/rtl8150.git
11092 W:      https://github.com/petkan/rtl8150
11093 S:      Maintained
11094 F:      drivers/net/usb/rtl8150.c
11095
11096 USB SERIAL SUBSYSTEM
11097 M:      Johan Hovold <johan@kernel.org>
11098 L:      linux-usb@vger.kernel.org
11099 S:      Maintained
11100 F:      Documentation/usb/usb-serial.txt
11101 F:      drivers/usb/serial/
11102 F:      include/linux/usb/serial.h
11103
11104 USB SMSC75XX ETHERNET DRIVER
11105 M:      Steve Glendinning <steve.glendinning@shawell.net>
11106 L:      netdev@vger.kernel.org
11107 S:      Maintained
11108 F:      drivers/net/usb/smsc75xx.*
11109
11110 USB SMSC95XX ETHERNET DRIVER
11111 M:      Steve Glendinning <steve.glendinning@shawell.net>
11112 L:      netdev@vger.kernel.org
11113 S:      Maintained
11114 F:      drivers/net/usb/smsc95xx.*
11115
11116 USB SUBSYSTEM
11117 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11118 L:      linux-usb@vger.kernel.org
11119 W:      http://www.linux-usb.org
11120 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
11121 S:      Supported
11122 F:      Documentation/usb/
11123 F:      drivers/usb/
11124 F:      include/linux/usb.h
11125 F:      include/linux/usb/
11126
11127 USB UHCI DRIVER
11128 M:      Alan Stern <stern@rowland.harvard.edu>
11129 L:      linux-usb@vger.kernel.org
11130 S:      Maintained
11131 F:      drivers/usb/host/uhci*
11132
11133 USB "USBNET" DRIVER FRAMEWORK
11134 M:      Oliver Neukum <oneukum@suse.com>
11135 L:      netdev@vger.kernel.org
11136 W:      http://www.linux-usb.org/usbnet
11137 S:      Maintained
11138 F:      drivers/net/usb/usbnet.c
11139 F:      include/linux/usb/usbnet.h
11140
11141 USB VIDEO CLASS
11142 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11143 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
11144 L:      linux-media@vger.kernel.org
11145 T:      git git://linuxtv.org/media_tree.git
11146 W:      http://www.ideasonboard.org/uvc/
11147 S:      Maintained
11148 F:      drivers/media/usb/uvc/
11149 F:      include/uapi/linux/uvcvideo.h
11150
11151 USB VISION DRIVER
11152 M:      Hans Verkuil <hverkuil@xs4all.nl>
11153 L:      linux-media@vger.kernel.org
11154 T:      git git://linuxtv.org/media_tree.git
11155 W:      http://linuxtv.org
11156 S:      Odd Fixes
11157 F:      drivers/media/usb/usbvision/
11158
11159 USB WEBCAM GADGET
11160 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11161 L:      linux-usb@vger.kernel.org
11162 S:      Maintained
11163 F:      drivers/usb/gadget/function/*uvc*
11164 F:      drivers/usb/gadget/legacy/webcam.c
11165
11166 USB WIRELESS RNDIS DRIVER (rndis_wlan)
11167 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
11168 L:      linux-wireless@vger.kernel.org
11169 S:      Maintained
11170 F:      drivers/net/wireless/rndis_wlan.c
11171
11172 USB XHCI DRIVER
11173 M:      Mathias Nyman <mathias.nyman@intel.com>
11174 L:      linux-usb@vger.kernel.org
11175 S:      Supported
11176 F:      drivers/usb/host/xhci*
11177 F:      drivers/usb/host/pci-quirks*
11178
11179 USB ZD1201 DRIVER
11180 L:      linux-wireless@vger.kernel.org
11181 W:      http://linux-lc100020.sourceforge.net
11182 S:      Orphan
11183 F:      drivers/net/wireless/zd1201.*
11184
11185 USB ZR364XX DRIVER
11186 M:      Antoine Jacquet <royale@zerezo.com>
11187 L:      linux-usb@vger.kernel.org
11188 L:      linux-media@vger.kernel.org
11189 T:      git git://linuxtv.org/media_tree.git
11190 W:      http://royale.zerezo.com/zr364xx/
11191 S:      Maintained
11192 F:      Documentation/video4linux/zr364xx.txt
11193 F:      drivers/media/usb/zr364xx/
11194
11195 ULPI BUS
11196 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
11197 L:      linux-usb@vger.kernel.org
11198 S:      Maintained
11199 F:      drivers/usb/common/ulpi.c
11200 F:      include/linux/ulpi/
11201
11202 USER-MODE LINUX (UML)
11203 M:      Jeff Dike <jdike@addtoit.com>
11204 M:      Richard Weinberger <richard@nod.at>
11205 L:      user-mode-linux-devel@lists.sourceforge.net
11206 L:      user-mode-linux-user@lists.sourceforge.net
11207 W:      http://user-mode-linux.sourceforge.net
11208 S:      Maintained
11209 F:      Documentation/virtual/uml/
11210 F:      arch/um/
11211 F:      arch/x86/um/
11212 F:      fs/hostfs/
11213 F:      fs/hppfs/
11214
11215 USERSPACE I/O (UIO)
11216 M:      "Hans J. Koch" <hjk@hansjkoch.de>
11217 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11218 S:      Maintained
11219 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
11220 F:      Documentation/DocBook/uio-howto.tmpl
11221 F:      drivers/uio/
11222 F:      include/linux/uio*.h
11223
11224 UTIL-LINUX PACKAGE
11225 M:      Karel Zak <kzak@redhat.com>
11226 L:      util-linux@vger.kernel.org
11227 W:      http://en.wikipedia.org/wiki/Util-linux
11228 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
11229 S:      Maintained
11230
11231 UVESAFB DRIVER
11232 M:      Michal Januszewski <spock@gentoo.org>
11233 L:      linux-fbdev@vger.kernel.org
11234 W:      http://dev.gentoo.org/~spock/projects/uvesafb/
11235 S:      Maintained
11236 F:      Documentation/fb/uvesafb.txt
11237 F:      drivers/video/fbdev/uvesafb.*
11238
11239 VF610 NAND DRIVER
11240 M:      Stefan Agner <stefan@agner.ch>
11241 L:      linux-mtd@lists.infradead.org
11242 S:      Supported
11243 F:      drivers/mtd/nand/vf610_nfc.c
11244
11245 VFAT/FAT/MSDOS FILESYSTEM
11246 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
11247 S:      Maintained
11248 F:      Documentation/filesystems/vfat.txt
11249 F:      fs/fat/
11250
11251 VFIO DRIVER
11252 M:      Alex Williamson <alex.williamson@redhat.com>
11253 L:      kvm@vger.kernel.org
11254 S:      Maintained
11255 F:      Documentation/vfio.txt
11256 F:      drivers/vfio/
11257 F:      include/linux/vfio.h
11258 F:      include/uapi/linux/vfio.h
11259
11260 VFIO PLATFORM DRIVER
11261 M:      Baptiste Reynal <b.reynal@virtualopensystems.com>
11262 L:      kvm@vger.kernel.org
11263 S:      Maintained
11264 F:      drivers/vfio/platform/
11265
11266 VIDEOBUF2 FRAMEWORK
11267 M:      Pawel Osciak <pawel@osciak.com>
11268 M:      Marek Szyprowski <m.szyprowski@samsung.com>
11269 M:      Kyungmin Park <kyungmin.park@samsung.com>
11270 L:      linux-media@vger.kernel.org
11271 S:      Maintained
11272 F:      drivers/media/v4l2-core/videobuf2-*
11273 F:      include/media/videobuf2-*
11274
11275 VIRTUAL SERIO DEVICE DRIVER
11276 M:      Stephen Chandler Paul <thatslyude@gmail.com>
11277 S:      Maintained
11278 F:      drivers/input/serio/userio.c
11279 F:      include/uapi/linux/userio.h
11280
11281 VIRTIO CONSOLE DRIVER
11282 M:      Amit Shah <amit.shah@redhat.com>
11283 L:      virtualization@lists.linux-foundation.org
11284 S:      Maintained
11285 F:      drivers/char/virtio_console.c
11286 F:      include/linux/virtio_console.h
11287 F:      include/uapi/linux/virtio_console.h
11288
11289 VIRTIO CORE, NET AND BLOCK DRIVERS
11290 M:      "Michael S. Tsirkin" <mst@redhat.com>
11291 L:      virtualization@lists.linux-foundation.org
11292 S:      Maintained
11293 F:      drivers/virtio/
11294 F:      tools/virtio/
11295 F:      drivers/net/virtio_net.c
11296 F:      drivers/block/virtio_blk.c
11297 F:      include/linux/virtio_*.h
11298 F:      include/uapi/linux/virtio_*.h
11299
11300 VIRTIO DRIVERS FOR S390
11301 M:      Christian Borntraeger <borntraeger@de.ibm.com>
11302 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
11303 L:      linux-s390@vger.kernel.org
11304 L:      virtualization@lists.linux-foundation.org
11305 L:      kvm@vger.kernel.org
11306 S:      Supported
11307 F:      drivers/s390/virtio/
11308
11309 VIRTIO GPU DRIVER
11310 M:      David Airlie <airlied@linux.ie>
11311 M:      Gerd Hoffmann <kraxel@redhat.com>
11312 L:      dri-devel@lists.freedesktop.org
11313 L:      virtualization@lists.linux-foundation.org
11314 S:      Maintained
11315 F:      drivers/gpu/drm/virtio/
11316 F:      include/uapi/linux/virtio_gpu.h
11317
11318 VIRTIO HOST (VHOST)
11319 M:      "Michael S. Tsirkin" <mst@redhat.com>
11320 L:      kvm@vger.kernel.org
11321 L:      virtualization@lists.linux-foundation.org
11322 L:      netdev@vger.kernel.org
11323 S:      Maintained
11324 F:      drivers/vhost/
11325 F:      include/uapi/linux/vhost.h
11326
11327 VIRTIO INPUT DRIVER
11328 M:      Gerd Hoffmann <kraxel@redhat.com>
11329 S:      Maintained
11330 F:      drivers/virtio/virtio_input.c
11331 F:      include/uapi/linux/virtio_input.h
11332
11333 VIA RHINE NETWORK DRIVER
11334 S:      Orphan
11335 F:      drivers/net/ethernet/via/via-rhine.c
11336
11337 VIA SD/MMC CARD CONTROLLER DRIVER
11338 M:      Bruce Chang <brucechang@via.com.tw>
11339 M:      Harald Welte <HaraldWelte@viatech.com>
11340 S:      Maintained
11341 F:      drivers/mmc/host/via-sdmmc.c
11342
11343 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
11344 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
11345 L:      linux-fbdev@vger.kernel.org
11346 S:      Maintained
11347 F:      include/linux/via-core.h
11348 F:      include/linux/via-gpio.h
11349 F:      include/linux/via_i2c.h
11350 F:      drivers/video/fbdev/via/
11351
11352 VIA VELOCITY NETWORK DRIVER
11353 M:      Francois Romieu <romieu@fr.zoreil.com>
11354 L:      netdev@vger.kernel.org
11355 S:      Maintained
11356 F:      drivers/net/ethernet/via/via-velocity.*
11357
11358 VIRT LIB
11359 M:      Alex Williamson <alex.williamson@redhat.com>
11360 M:      Paolo Bonzini <pbonzini@redhat.com>
11361 L:      kvm@vger.kernel.org
11362 S:      Supported
11363 F:      virt/lib/
11364
11365 VIVID VIRTUAL VIDEO DRIVER
11366 M:      Hans Verkuil <hverkuil@xs4all.nl>
11367 L:      linux-media@vger.kernel.org
11368 T:      git git://linuxtv.org/media_tree.git
11369 W:      http://linuxtv.org
11370 S:      Maintained
11371 F:      drivers/media/platform/vivid/*
11372
11373 VLAN (802.1Q)
11374 M:      Patrick McHardy <kaber@trash.net>
11375 L:      netdev@vger.kernel.org
11376 S:      Maintained
11377 F:      drivers/net/macvlan.c
11378 F:      include/linux/if_*vlan.h
11379 F:      net/8021q/
11380
11381 VLYNQ BUS
11382 M:      Florian Fainelli <florian@openwrt.org>
11383 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
11384 S:      Maintained
11385 F:      drivers/vlynq/vlynq.c
11386 F:      include/linux/vlynq.h
11387
11388 VME SUBSYSTEM
11389 M:      Martyn Welch <martyn@welchs.me.uk>
11390 M:      Manohar Vanga <manohar.vanga@gmail.com>
11391 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11392 L:      devel@driverdev.osuosl.org
11393 S:      Maintained
11394 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
11395 F:      Documentation/vme_api.txt
11396 F:      drivers/staging/vme/
11397 F:      drivers/vme/
11398 F:      include/linux/vme*
11399
11400 VMWARE HYPERVISOR INTERFACE
11401 M:      Alok Kataria <akataria@vmware.com>
11402 L:      virtualization@lists.linux-foundation.org
11403 S:      Supported
11404 F:      arch/x86/kernel/cpu/vmware.c
11405
11406 VMWARE BALLOON DRIVER
11407 M:      Xavier Deguillard <xdeguillard@vmware.com>
11408 M:      Philip Moltmann <moltmann@vmware.com>
11409 M:      "VMware, Inc." <pv-drivers@vmware.com>
11410 L:      linux-kernel@vger.kernel.org
11411 S:      Maintained
11412 F:      drivers/misc/vmw_balloon.c
11413
11414 VMWARE VMMOUSE SUBDRIVER
11415 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
11416 M:      "VMware, Inc." <pv-drivers@vmware.com>
11417 L:      linux-input@vger.kernel.org
11418 S:      Maintained
11419 F:      drivers/input/mouse/vmmouse.c
11420 F:      drivers/input/mouse/vmmouse.h
11421
11422 VMWARE VMXNET3 ETHERNET DRIVER
11423 M:      Shrikrishna Khare <skhare@vmware.com>
11424 M:      "VMware, Inc." <pv-drivers@vmware.com>
11425 L:      netdev@vger.kernel.org
11426 S:      Maintained
11427 F:      drivers/net/vmxnet3/
11428
11429 VMware PVSCSI driver
11430 M:      Arvind Kumar <arvindkumar@vmware.com>
11431 M:      VMware PV-Drivers <pv-drivers@vmware.com>
11432 L:      linux-scsi@vger.kernel.org
11433 S:      Maintained
11434 F:      drivers/scsi/vmw_pvscsi.c
11435 F:      drivers/scsi/vmw_pvscsi.h
11436
11437 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
11438 M:      Liam Girdwood <lgirdwood@gmail.com>
11439 M:      Mark Brown <broonie@kernel.org>
11440 L:      linux-kernel@vger.kernel.org
11441 W:      http://www.slimlogic.co.uk/?p=48
11442 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
11443 S:      Supported
11444 F:      drivers/regulator/
11445 F:      include/linux/regulator/
11446
11447 VRF
11448 M:      David Ahern <dsa@cumulusnetworks.com>
11449 M:      Shrijeet Mukherjee <shm@cumulusnetworks.com>
11450 L:      netdev@vger.kernel.org
11451 S:      Maintained
11452 F:      drivers/net/vrf.c
11453 F:      Documentation/networking/vrf.txt
11454
11455 VT1211 HARDWARE MONITOR DRIVER
11456 M:      Juerg Haefliger <juergh@gmail.com>
11457 L:      lm-sensors@lm-sensors.org
11458 S:      Maintained
11459 F:      Documentation/hwmon/vt1211
11460 F:      drivers/hwmon/vt1211.c
11461
11462 VT8231 HARDWARE MONITOR DRIVER
11463 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
11464 L:      lm-sensors@lm-sensors.org
11465 S:      Maintained
11466 F:      drivers/hwmon/vt8231.c
11467
11468 VUB300 USB to SDIO/SD/MMC bridge chip
11469 M:      Tony Olech <tony.olech@elandigitalsystems.com>
11470 L:      linux-mmc@vger.kernel.org
11471 L:      linux-usb@vger.kernel.org
11472 S:      Supported
11473 F:      drivers/mmc/host/vub300.c
11474
11475 W1 DALLAS'S 1-WIRE BUS
11476 M:      Evgeniy Polyakov <zbr@ioremap.net>
11477 S:      Maintained
11478 F:      Documentation/w1/
11479 F:      drivers/w1/
11480
11481 W83791D HARDWARE MONITORING DRIVER
11482 M:      Marc Hulsman <m.hulsman@tudelft.nl>
11483 L:      lm-sensors@lm-sensors.org
11484 S:      Maintained
11485 F:      Documentation/hwmon/w83791d
11486 F:      drivers/hwmon/w83791d.c
11487
11488 W83793 HARDWARE MONITORING DRIVER
11489 M:      Rudolf Marek <r.marek@assembler.cz>
11490 L:      lm-sensors@lm-sensors.org
11491 S:      Maintained
11492 F:      Documentation/hwmon/w83793
11493 F:      drivers/hwmon/w83793.c
11494
11495 W83795 HARDWARE MONITORING DRIVER
11496 M:      Jean Delvare <jdelvare@suse.com>
11497 L:      lm-sensors@lm-sensors.org
11498 S:      Maintained
11499 F:      drivers/hwmon/w83795.c
11500
11501 W83L51xD SD/MMC CARD INTERFACE DRIVER
11502 M:      Pierre Ossman <pierre@ossman.eu>
11503 S:      Maintained
11504 F:      drivers/mmc/host/wbsd.*
11505
11506 WACOM PROTOCOL 4 SERIAL TABLETS
11507 M:      Julian Squires <julian@cipht.net>
11508 M:      Hans de Goede <hdegoede@redhat.com>
11509 L:      linux-input@vger.kernel.org
11510 S:      Maintained
11511 F:      drivers/input/tablet/wacom_serial4.c
11512
11513 WATCHDOG DEVICE DRIVERS
11514 M:      Wim Van Sebroeck <wim@iguana.be>
11515 L:      linux-watchdog@vger.kernel.org
11516 W:      http://www.linux-watchdog.org/
11517 T:      git git://www.linux-watchdog.org/linux-watchdog.git
11518 S:      Maintained
11519 F:      Documentation/watchdog/
11520 F:      drivers/watchdog/
11521 F:      include/linux/watchdog.h
11522 F:      include/uapi/linux/watchdog.h
11523
11524 WD7000 SCSI DRIVER
11525 M:      Miroslav Zagorac <zaga@fly.cc.fer.hr>
11526 L:      linux-scsi@vger.kernel.org
11527 S:      Maintained
11528 F:      drivers/scsi/wd7000.c
11529
11530 WIIMOTE HID DRIVER
11531 M:      David Herrmann <dh.herrmann@googlemail.com>
11532 L:      linux-input@vger.kernel.org
11533 S:      Maintained
11534 F:      drivers/hid/hid-wiimote*
11535
11536 WINBOND CIR DRIVER
11537 M:      David Härdeman <david@hardeman.nu>
11538 S:      Maintained
11539 F:      drivers/media/rc/winbond-cir.c
11540
11541 WIMAX STACK
11542 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
11543 M:      linux-wimax@intel.com
11544 L:      wimax@linuxwimax.org (subscribers-only)
11545 S:      Supported
11546 W:      http://linuxwimax.org
11547 F:      Documentation/wimax/README.wimax
11548 F:      include/linux/wimax/debug.h
11549 F:      include/net/wimax.h
11550 F:      include/uapi/linux/wimax.h
11551 F:      net/wimax/
11552
11553 WISTRON LAPTOP BUTTON DRIVER
11554 M:      Miloslav Trmac <mitr@volny.cz>
11555 S:      Maintained
11556 F:      drivers/input/misc/wistron_btns.c
11557
11558 WL3501 WIRELESS PCMCIA CARD DRIVER
11559 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
11560 L:      linux-wireless@vger.kernel.org
11561 W:      http://oops.ghostprotocols.net:81/blog
11562 S:      Maintained
11563 F:      drivers/net/wireless/wl3501*
11564
11565 WOLFSON MICROELECTRONICS DRIVERS
11566 L:      patches@opensource.wolfsonmicro.com
11567 T:      git https://github.com/CirrusLogic/linux-drivers.git
11568 W:      https://github.com/CirrusLogic/linux-drivers/wiki
11569 S:      Supported
11570 F:      Documentation/hwmon/wm83??
11571 F:      Documentation/devicetree/bindings/extcon/extcon-arizona.txt
11572 F:      Documentation/devicetree/bindings/regulator/arizona-regulator.txt
11573 F:      Documentation/devicetree/bindings/mfd/arizona.txt
11574 F:      arch/arm/mach-s3c64xx/mach-crag6410*
11575 F:      drivers/clk/clk-wm83*.c
11576 F:      drivers/extcon/extcon-arizona.c
11577 F:      drivers/leds/leds-wm83*.c
11578 F:      drivers/gpio/gpio-*wm*.c
11579 F:      drivers/gpio/gpio-arizona.c
11580 F:      drivers/hwmon/wm83??-hwmon.c
11581 F:      drivers/input/misc/wm831x-on.c
11582 F:      drivers/input/touchscreen/wm831x-ts.c
11583 F:      drivers/input/touchscreen/wm97*.c
11584 F:      drivers/mfd/arizona*
11585 F:      drivers/mfd/wm*.c
11586 F:      drivers/power/wm83*.c
11587 F:      drivers/rtc/rtc-wm83*.c
11588 F:      drivers/regulator/wm8*.c
11589 F:      drivers/video/backlight/wm83*_bl.c
11590 F:      drivers/watchdog/wm83*_wdt.c
11591 F:      include/linux/mfd/arizona/
11592 F:      include/linux/mfd/wm831x/
11593 F:      include/linux/mfd/wm8350/
11594 F:      include/linux/mfd/wm8400*
11595 F:      include/linux/wm97xx.h
11596 F:      include/sound/wm????.h
11597 F:      sound/soc/codecs/arizona.?
11598 F:      sound/soc/codecs/wm*
11599
11600 WORKQUEUE
11601 M:      Tejun Heo <tj@kernel.org>
11602 R:      Lai Jiangshan <jiangshanlai@gmail.com>
11603 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
11604 S:      Maintained
11605 F:      include/linux/workqueue.h
11606 F:      kernel/workqueue.c
11607 F:      Documentation/workqueue.txt
11608
11609 X.25 NETWORK LAYER
11610 M:      Andrew Hendry <andrew.hendry@gmail.com>
11611 L:      linux-x25@vger.kernel.org
11612 S:      Odd Fixes
11613 F:      Documentation/networking/x25*
11614 F:      include/net/x25*
11615 F:      net/x25/
11616
11617 X86 ARCHITECTURE (32-BIT AND 64-BIT)
11618 M:      Thomas Gleixner <tglx@linutronix.de>
11619 M:      Ingo Molnar <mingo@redhat.com>
11620 M:      "H. Peter Anvin" <hpa@zytor.com>
11621 M:      x86@kernel.org
11622 L:      linux-kernel@vger.kernel.org
11623 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
11624 S:      Maintained
11625 F:      Documentation/x86/
11626 F:      arch/x86/
11627
11628 X86 PLATFORM DRIVERS
11629 M:      Darren Hart <dvhart@infradead.org>
11630 L:      platform-driver-x86@vger.kernel.org
11631 T:      git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git
11632 S:      Maintained
11633 F:      drivers/platform/x86/
11634 F:      drivers/platform/olpc/
11635
11636 X86 MCE INFRASTRUCTURE
11637 M:      Tony Luck <tony.luck@intel.com>
11638 M:      Borislav Petkov <bp@alien8.de>
11639 L:      linux-edac@vger.kernel.org
11640 S:      Maintained
11641 F:      arch/x86/kernel/cpu/mcheck/*
11642
11643 X86 MICROCODE UPDATE SUPPORT
11644 M:      Borislav Petkov <bp@alien8.de>
11645 S:      Maintained
11646 F:      arch/x86/kernel/cpu/microcode/*
11647
11648 X86 VDSO
11649 M:      Andy Lutomirski <luto@amacapital.net>
11650 L:      linux-kernel@vger.kernel.org
11651 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
11652 S:      Maintained
11653 F:      arch/x86/entry/vdso/
11654
11655 XC2028/3028 TUNER DRIVER
11656 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
11657 L:      linux-media@vger.kernel.org
11658 W:      http://linuxtv.org
11659 T:      git git://linuxtv.org/media_tree.git
11660 S:      Maintained
11661 F:      drivers/media/tuners/tuner-xc2028.*
11662
11663 XEN HYPERVISOR INTERFACE
11664 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11665 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
11666 M:      David Vrabel <david.vrabel@citrix.com>
11667 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11668 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
11669 S:      Supported
11670 F:      arch/x86/xen/
11671 F:      drivers/*/xen-*front.c
11672 F:      drivers/xen/
11673 F:      arch/x86/include/asm/xen/
11674 F:      include/xen/
11675 F:      include/uapi/xen/
11676
11677 XEN HYPERVISOR ARM
11678 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
11679 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11680 S:      Supported
11681 F:      arch/arm/xen/
11682 F:      arch/arm/include/asm/xen/
11683
11684 XEN HYPERVISOR ARM64
11685 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
11686 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11687 S:      Supported
11688 F:      arch/arm64/xen/
11689 F:      arch/arm64/include/asm/xen/
11690
11691 XEN NETWORK BACKEND DRIVER
11692 M:      Ian Campbell <ian.campbell@citrix.com>
11693 M:      Wei Liu <wei.liu2@citrix.com>
11694 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11695 L:      netdev@vger.kernel.org
11696 S:      Supported
11697 F:      drivers/net/xen-netback/*
11698
11699 XEN PCI SUBSYSTEM
11700 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11701 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11702 S:      Supported
11703 F:      arch/x86/pci/*xen*
11704 F:      drivers/pci/*xen*
11705
11706 XEN BLOCK SUBSYSTEM
11707 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11708 M:      Roger Pau MonnĂ© <roger.pau@citrix.com>
11709 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11710 S:      Supported
11711 F:      drivers/block/xen-blkback/*
11712 F:      drivers/block/xen*
11713
11714 XEN PVSCSI DRIVERS
11715 M:      Juergen Gross <jgross@suse.com>
11716 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11717 L:      linux-scsi@vger.kernel.org
11718 S:      Supported
11719 F:      drivers/scsi/xen-scsifront.c
11720 F:      drivers/xen/xen-scsiback.c
11721 F:      include/xen/interface/io/vscsiif.h
11722
11723 XEN SWIOTLB SUBSYSTEM
11724 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11725 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11726 S:      Supported
11727 F:      arch/x86/xen/*swiotlb*
11728 F:      drivers/xen/*swiotlb*
11729
11730 XFS FILESYSTEM
11731 P:      Silicon Graphics Inc
11732 M:      Dave Chinner <david@fromorbit.com>
11733 M:      xfs@oss.sgi.com
11734 L:      xfs@oss.sgi.com
11735 W:      http://oss.sgi.com/projects/xfs
11736 T:      git git://oss.sgi.com/xfs/xfs.git
11737 S:      Supported
11738 F:      Documentation/filesystems/xfs.txt
11739 F:      fs/xfs/
11740
11741 XILINX AXI ETHERNET DRIVER
11742 M:      Anirudha Sarangi <anirudh@xilinx.com>
11743 M:      John Linn <John.Linn@xilinx.com>
11744 S:      Maintained
11745 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
11746
11747 XILINX UARTLITE SERIAL DRIVER
11748 M:      Peter Korsgaard <jacmet@sunsite.dk>
11749 L:      linux-serial@vger.kernel.org
11750 S:      Maintained
11751 F:      drivers/tty/serial/uartlite.c
11752
11753 XILINX VIDEO IP CORES
11754 M:      Hyun Kwon <hyun.kwon@xilinx.com>
11755 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11756 L:      linux-media@vger.kernel.org
11757 T:      git git://linuxtv.org/media_tree.git
11758 S:      Supported
11759 F:      Documentation/devicetree/bindings/media/xilinx/
11760 F:      drivers/media/platform/xilinx/
11761 F:      include/uapi/linux/xilinx-v4l2-controls.h
11762
11763 XILLYBUS DRIVER
11764 M:      Eli Billauer <eli.billauer@gmail.com>
11765 L:      linux-kernel@vger.kernel.org
11766 S:      Supported
11767 F:      drivers/char/xillybus/
11768
11769 XTENSA XTFPGA PLATFORM SUPPORT
11770 M:      Max Filippov <jcmvbkbc@gmail.com>
11771 L:      linux-xtensa@linux-xtensa.org
11772 S:      Maintained
11773 F:      drivers/spi/spi-xtensa-xtfpga.c
11774 F:      sound/soc/xtensa/xtfpga-i2s.c
11775
11776 YAM DRIVER FOR AX.25
11777 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
11778 L:      linux-hams@vger.kernel.org
11779 S:      Maintained
11780 F:      drivers/net/hamradio/yam*
11781 F:      include/linux/yam.h
11782
11783 YEALINK PHONE DRIVER
11784 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
11785 L:      usbb2k-api-dev@nongnu.org
11786 S:      Maintained
11787 F:      Documentation/input/yealink.txt
11788 F:      drivers/input/misc/yealink.*
11789
11790 Z8530 DRIVER FOR AX.25
11791 M:      Joerg Reuter <jreuter@yaina.de>
11792 W:      http://yaina.de/jreuter/
11793 W:      http://www.qsl.net/dl1bke/
11794 L:      linux-hams@vger.kernel.org
11795 S:      Maintained
11796 F:      Documentation/networking/z8530drv.txt
11797 F:      drivers/net/hamradio/*scc.c
11798 F:      drivers/net/hamradio/z8530.h
11799
11800 ZBUD COMPRESSED PAGE ALLOCATOR
11801 M:      Seth Jennings <sjennings@variantweb.net>
11802 L:      linux-mm@kvack.org
11803 S:      Maintained
11804 F:      mm/zbud.c
11805 F:      include/linux/zbud.h
11806
11807 ZD1211RW WIRELESS DRIVER
11808 M:      Daniel Drake <dsd@gentoo.org>
11809 M:      Ulrich Kunitz <kune@deine-taler.de>
11810 W:      http://zd1211.ath.cx/wiki/DriverRewrite
11811 L:      linux-wireless@vger.kernel.org
11812 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
11813 S:      Maintained
11814 F:      drivers/net/wireless/zd1211rw/
11815
11816 ZPOOL COMPRESSED PAGE STORAGE API
11817 M:      Dan Streetman <ddstreet@ieee.org>
11818 L:      linux-mm@kvack.org
11819 S:      Maintained
11820 F:      mm/zpool.c
11821 F:      include/linux/zpool.h
11822
11823 ZR36067 VIDEO FOR LINUX DRIVER
11824 L:      mjpeg-users@lists.sourceforge.net
11825 L:      linux-media@vger.kernel.org
11826 W:      http://mjpeg.sourceforge.net/driver-zoran/
11827 T:      hg http://linuxtv.org/hg/v4l-dvb
11828 S:      Odd Fixes
11829 F:      drivers/media/pci/zoran/
11830
11831 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
11832 M:      Minchan Kim <minchan@kernel.org>
11833 M:      Nitin Gupta <ngupta@vflare.org>
11834 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
11835 L:      linux-kernel@vger.kernel.org
11836 S:      Maintained
11837 F:      drivers/block/zram/
11838 F:      Documentation/blockdev/zram.txt
11839
11840 ZS DECSTATION Z85C30 SERIAL DRIVER
11841 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
11842 S:      Maintained
11843 F:      drivers/tty/serial/zs.*
11844
11845 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
11846 M:      Minchan Kim <minchan@kernel.org>
11847 M:      Nitin Gupta <ngupta@vflare.org>
11848 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
11849 L:      linux-mm@kvack.org
11850 S:      Maintained
11851 F:      mm/zsmalloc.c
11852 F:      include/linux/zsmalloc.h
11853 F:      Documentation/vm/zsmalloc.txt
11854
11855 ZSWAP COMPRESSED SWAP CACHING
11856 M:      Seth Jennings <sjennings@variantweb.net>
11857 L:      linux-mm@kvack.org
11858 S:      Maintained
11859 F:      mm/zswap.c
11860
11861 THE REST
11862 M:      Linus Torvalds <torvalds@linux-foundation.org>
11863 L:      linux-kernel@vger.kernel.org
11864 Q:      http://patchwork.kernel.org/project/LKML/list/
11865 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
11866 S:      Buried alive in reporters
11867 F:      *
11868 F:      */