OSDN Git Service

Merge remote-tracking branch 'tip/auto-latest'
[uclinux-h8/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 M:      Thomas Dahlmann <dahlmann.thomas@arcor.de>
619 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
620 S:      Supported
621 F:      drivers/usb/gadget/udc/amd5536udc.*
622
623 AMD GEODE PROCESSOR/CHIPSET SUPPORT
624 P:      Andres Salomon <dilinger@queued.net>
625 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
626 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
627 S:      Supported
628 F:      drivers/char/hw_random/geode-rng.c
629 F:      drivers/crypto/geode*
630 F:      drivers/video/fbdev/geode/
631 F:      arch/x86/include/asm/geode.h
632
633 AMD IOMMU (AMD-VI)
634 M:      Joerg Roedel <joro@8bytes.org>
635 L:      iommu@lists.linux-foundation.org
636 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
637 S:      Maintained
638 F:      drivers/iommu/amd_iommu*.[ch]
639 F:      include/linux/amd-iommu.h
640
641 AMD KFD
642 M:      Oded Gabbay <oded.gabbay@gmail.com>
643 L:      dri-devel@lists.freedesktop.org
644 T:      git git://people.freedesktop.org/~gabbayo/linux.git
645 S:      Supported
646 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c
647 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
648 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
649 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
650 F:      drivers/gpu/drm/amd/amdkfd/
651 F:      drivers/gpu/drm/amd/include/cik_structs.h
652 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
653 F:      drivers/gpu/drm/amd/include/vi_structs.h
654 F:      drivers/gpu/drm/radeon/radeon_kfd.c
655 F:      drivers/gpu/drm/radeon/radeon_kfd.h
656 F:      include/uapi/linux/kfd_ioctl.h
657
658 AMD MICROCODE UPDATE SUPPORT
659 M:      Borislav Petkov <bp@alien8.de>
660 S:      Maintained
661 F:      arch/x86/kernel/cpu/microcode/amd*
662
663 AMD XGBE DRIVER
664 M:      Tom Lendacky <thomas.lendacky@amd.com>
665 L:      netdev@vger.kernel.org
666 S:      Supported
667 F:      drivers/net/ethernet/amd/xgbe/
668
669 AMS (Apple Motion Sensor) DRIVER
670 M:      Michael Hanselmann <linux-kernel@hansmi.ch>
671 S:      Supported
672 F:      drivers/macintosh/ams/
673
674 AMSO1100 RNIC DRIVER
675 M:      Tom Tucker <tom@opengridcomputing.com>
676 M:      Steve Wise <swise@opengridcomputing.com>
677 L:      linux-rdma@vger.kernel.org
678 S:      Maintained
679 F:      drivers/infiniband/hw/amso1100/
680
681 ANALOG DEVICES INC AD9389B DRIVER
682 M:      Hans Verkuil <hans.verkuil@cisco.com>
683 L:      linux-media@vger.kernel.org
684 S:      Maintained
685 F:      drivers/media/i2c/ad9389b*
686
687 ANALOG DEVICES INC ADV7180 DRIVER
688 M:      Lars-Peter Clausen <lars@metafoo.de>
689 L:      linux-media@vger.kernel.org
690 W:      http://ez.analog.com/community/linux-device-drivers
691 S:      Supported
692 F:      drivers/media/i2c/adv7180.c
693
694 ANALOG DEVICES INC ADV7511 DRIVER
695 M:      Hans Verkuil <hans.verkuil@cisco.com>
696 L:      linux-media@vger.kernel.org
697 S:      Maintained
698 F:      drivers/media/i2c/adv7511*
699
700 ANALOG DEVICES INC ADV7604 DRIVER
701 M:      Hans Verkuil <hans.verkuil@cisco.com>
702 L:      linux-media@vger.kernel.org
703 S:      Maintained
704 F:      drivers/media/i2c/adv7604*
705
706 ANALOG DEVICES INC ADV7842 DRIVER
707 M:      Hans Verkuil <hans.verkuil@cisco.com>
708 L:      linux-media@vger.kernel.org
709 S:      Maintained
710 F:      drivers/media/i2c/adv7842*
711
712 ANALOG DEVICES INC ASOC CODEC DRIVERS
713 M:      Lars-Peter Clausen <lars@metafoo.de>
714 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
715 W:      http://wiki.analog.com/
716 W:      http://ez.analog.com/community/linux-device-drivers
717 S:      Supported
718 F:      sound/soc/codecs/adau*
719 F:      sound/soc/codecs/adav*
720 F:      sound/soc/codecs/ad1*
721 F:      sound/soc/codecs/ad7*
722 F:      sound/soc/codecs/ssm*
723 F:      sound/soc/codecs/sigmadsp.*
724
725 ANALOG DEVICES INC ASOC DRIVERS
726 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
727 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
728 W:      http://blackfin.uclinux.org/
729 S:      Supported
730 F:      sound/soc/blackfin/*
731
732 ANALOG DEVICES INC IIO DRIVERS
733 M:      Lars-Peter Clausen <lars@metafoo.de>
734 M:      Michael Hennerich <Michael.Hennerich@analog.com>
735 W:      http://wiki.analog.com/
736 W:      http://ez.analog.com/community/linux-device-drivers
737 S:      Supported
738 F:      drivers/iio/*/ad*
739 X:      drivers/iio/*/adjd*
740 F:      drivers/staging/iio/*/ad*
741 F:      staging/iio/trigger/iio-trig-bfin-timer.c
742
743 ANALOG DEVICES INC DMA DRIVERS
744 M:      Lars-Peter Clausen <lars@metafoo.de>
745 W:      http://ez.analog.com/community/linux-device-drivers
746 S:      Supported
747 F:      drivers/dma/dma-axi-dmac.c
748
749 ANDROID DRIVERS
750 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
751 M:      Arve HjønnevĂ¥g <arve@android.com>
752 M:      Riley Andrews <riandrews@android.com>
753 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
754 L:      devel@driverdev.osuosl.org
755 S:      Supported
756 F:      drivers/android/
757 F:      drivers/staging/android/
758
759 AOA (Apple Onboard Audio) ALSA DRIVER
760 M:      Johannes Berg <johannes@sipsolutions.net>
761 L:      linuxppc-dev@lists.ozlabs.org
762 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
763 S:      Maintained
764 F:      sound/aoa/
765
766 APM DRIVER
767 M:      Jiri Kosina <jikos@kernel.org>
768 S:      Odd fixes
769 F:      arch/x86/kernel/apm_32.c
770 F:      include/linux/apm_bios.h
771 F:      include/uapi/linux/apm_bios.h
772 F:      drivers/char/apm-emulation.c
773
774 APPLE BCM5974 MULTITOUCH DRIVER
775 M:      Henrik Rydberg <rydberg@bitmath.org>
776 L:      linux-input@vger.kernel.org
777 S:      Odd fixes
778 F:      drivers/input/mouse/bcm5974.c
779
780 APPLE SMC DRIVER
781 M:      Henrik Rydberg <rydberg@bitmath.org>
782 L:      lm-sensors@lm-sensors.org
783 S:      Odd fixes
784 F:      drivers/hwmon/applesmc.c
785
786 APPLETALK NETWORK LAYER
787 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
788 S:      Maintained
789 F:      drivers/net/appletalk/
790 F:      net/appletalk/
791
792 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
793 M:      Iyappan Subramanian <isubramanian@apm.com>
794 M:      Keyur Chudgar <kchudgar@apm.com>
795 S:      Supported
796 F:      drivers/net/ethernet/apm/xgene/
797 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
798
799 APTINA CAMERA SENSOR PLL
800 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
801 L:      linux-media@vger.kernel.org
802 S:      Maintained
803 F:      drivers/media/i2c/aptina-pll.*
804
805 ARC FRAMEBUFFER DRIVER
806 M:      Jaya Kumar <jayalk@intworks.biz>
807 S:      Maintained
808 F:      drivers/video/fbdev/arcfb.c
809 F:      drivers/video/fbdev/core/fb_defio.c
810
811 ARCNET NETWORK LAYER
812 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
813 L:      netdev@vger.kernel.org
814 S:      Maintained
815 F:      drivers/net/arcnet/
816 F:      include/uapi/linux/if_arcnet.h
817
818 ARM MFM AND FLOPPY DRIVERS
819 M:      Ian Molton <spyro@f2s.com>
820 S:      Maintained
821 F:      arch/arm/lib/floppydma.S
822 F:      arch/arm/include/asm/floppy.h
823
824 ARM PMU PROFILING AND DEBUGGING
825 M:      Will Deacon <will.deacon@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 A1X SoC support
899 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
900 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
901 S:      Maintained
902 N:      sun[x456789]i
903
904 ARM/Allwinner SoC Clock Support
905 M:      Emilio LĂ³pez <emilio@elopez.com.ar>
906 S:      Maintained
907 F:      drivers/clk/sunxi/
908
909 ARM/Amlogic MesonX SoC support
910 M:      Carlo Caione <carlo@caione.org>
911 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
912 S:      Maintained
913 F:      drivers/media/rc/meson-ir.c
914 N:      meson[x68]
915
916 ARM/Annapurna Labs ALPINE ARCHITECTURE
917 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
918 S:      Maintained
919 F:      arch/arm/mach-alpine/
920
921 ARM/ATMEL AT91RM9200, AT91SAM9 AND SAMA5 SOC SUPPORT
922 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
923 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
924 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
925 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
926 W:      http://www.linux4sam.org
927 S:      Supported
928 F:      arch/arm/mach-at91/
929 F:      include/soc/at91/
930 F:      arch/arm/boot/dts/at91*.dts
931 F:      arch/arm/boot/dts/at91*.dtsi
932 F:      arch/arm/boot/dts/sama*.dts
933 F:      arch/arm/boot/dts/sama*.dtsi
934 F:      arch/arm/include/debug/at91.S
935
936 ARM/ATMEL AT91 Clock Support
937 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
938 S:      Maintained
939 F:      drivers/clk/at91
940
941 ARM/CALXEDA HIGHBANK ARCHITECTURE
942 M:      Rob Herring <robh@kernel.org>
943 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
944 S:      Maintained
945 F:      arch/arm/mach-highbank/
946
947 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
948 M:      Krzysztof Halasa <khalasa@piap.pl>
949 S:      Maintained
950 F:      arch/arm/mach-cns3xxx/
951
952 ARM/CAVIUM THUNDER NETWORK DRIVER
953 M:      Sunil Goutham <sgoutham@cavium.com>
954 M:      Robert Richter <rric@kernel.org>
955 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
956 S:      Supported
957 F:      drivers/net/ethernet/cavium/thunder/
958
959 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
960 M:      Alexander Shiyan <shc_work@mail.ru>
961 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
962 S:      Odd Fixes
963 N:      clps711x
964
965 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
966 M:      Hartley Sweeten <hsweeten@visionengravers.com>
967 M:      Ryan Mallon <rmallon@gmail.com>
968 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
969 S:      Maintained
970 F:      arch/arm/mach-ep93xx/
971 F:      arch/arm/mach-ep93xx/include/mach/
972
973 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
974 M:      Lennert Buytenhek <kernel@wantstofly.org>
975 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
976 S:      Maintained
977
978 ARM/CLKDEV SUPPORT
979 M:      Russell King <linux@arm.linux.org.uk>
980 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
981 S:      Maintained
982 F:      arch/arm/include/asm/clkdev.h
983 F:      drivers/clk/clkdev.c
984
985 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
986 M:      Mike Rapoport <mike@compulab.co.il>
987 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
988 S:      Maintained
989
990 ARM/CONTEC MICRO9 MACHINE SUPPORT
991 M:      Hubert Feurstein <hubert.feurstein@contec.at>
992 S:      Maintained
993 F:      arch/arm/mach-ep93xx/micro9.c
994
995 ARM/CORESIGHT FRAMEWORK AND DRIVERS
996 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
997 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
998 S:      Maintained
999 F:      drivers/hwtracing/coresight/*
1000 F:      Documentation/trace/coresight.txt
1001 F:      Documentation/devicetree/bindings/arm/coresight.txt
1002 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1003
1004 ARM/CORGI MACHINE SUPPORT
1005 M:      Richard Purdie <rpurdie@rpsys.net>
1006 S:      Maintained
1007
1008 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1009 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1010 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1011 T:      git git://github.com/ulli-kroll/linux.git
1012 S:      Maintained
1013 F:      arch/arm/mach-gemini/
1014 F:      drivers/rtc/rtc-gemini.c
1015
1016 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1017 M:      Barry Song <baohua@kernel.org>
1018 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1019 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1020 S:      Maintained
1021 F:      arch/arm/mach-prima2/
1022 F:      drivers/clk/sirf/
1023 F:      drivers/clocksource/timer-prima2.c
1024 F:      drivers/clocksource/timer-atlas7.c
1025 N:      [^a-z]sirf
1026
1027 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1028 M:      Baruch Siach <baruch@tkos.co.il>
1029 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1030 S:      Maintained
1031 F:      arch/arm/boot/dts/cx92755*
1032 N:      digicolor
1033
1034 ARM/EBSA110 MACHINE SUPPORT
1035 M:      Russell King <linux@arm.linux.org.uk>
1036 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1037 W:      http://www.arm.linux.org.uk/
1038 S:      Maintained
1039 F:      arch/arm/mach-ebsa110/
1040 F:      drivers/net/ethernet/amd/am79c961a.*
1041
1042 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1043 M:      Uwe Kleine-König <kernel@pengutronix.de>
1044 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1045 S:      Maintained
1046 N:      efm32
1047
1048 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1049 M:      Daniel Ribeiro <drwyrm@gmail.com>
1050 M:      Stefan Schmidt <stefan@openezx.org>
1051 M:      Harald Welte <laforge@openezx.org>
1052 L:      openezx-devel@lists.openezx.org (moderated for non-subscribers)
1053 W:      http://www.openezx.org/
1054 S:      Maintained
1055 T:      topgit git://git.openezx.org/openezx.git
1056 F:      arch/arm/mach-pxa/ezx.c
1057
1058 ARM/FARADAY FA526 PORT
1059 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1060 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1061 S:      Maintained
1062 T:      git git://git.berlios.de/gemini-board
1063 F:      arch/arm/mm/*-fa*
1064
1065 ARM/FOOTBRIDGE ARCHITECTURE
1066 M:      Russell King <linux@arm.linux.org.uk>
1067 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1068 W:      http://www.arm.linux.org.uk/
1069 S:      Maintained
1070 F:      arch/arm/include/asm/hardware/dec21285.h
1071 F:      arch/arm/mach-footbridge/
1072
1073 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1074 M:      Shawn Guo <shawnguo@kernel.org>
1075 M:      Sascha Hauer <kernel@pengutronix.de>
1076 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1077 S:      Maintained
1078 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1079 F:      arch/arm/mach-imx/
1080 F:      arch/arm/mach-mxs/
1081 F:      arch/arm/boot/dts/imx*
1082 F:      arch/arm/configs/imx*_defconfig
1083 F:      drivers/clk/imx/
1084 F:      include/soc/imx/
1085
1086 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1087 M:      Shawn Guo <shawnguo@kernel.org>
1088 M:      Sascha Hauer <kernel@pengutronix.de>
1089 R:      Stefan Agner <stefan@agner.ch>
1090 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1091 S:      Maintained
1092 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1093 F:      arch/arm/mach-imx/*vf610*
1094 F:      arch/arm/boot/dts/vf*
1095
1096 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1097 M:      Lennert Buytenhek <kernel@wantstofly.org>
1098 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1099 S:      Maintained
1100
1101 ARM/GUMSTIX MACHINE SUPPORT
1102 M:      Steve Sakoman <sakoman@gmail.com>
1103 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1104 S:      Maintained
1105
1106 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1107 M:      Philipp Zabel <philipp.zabel@gmail.com>
1108 M:      Paul Parsons <lost.distance@yahoo.com>
1109 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1110 S:      Maintained
1111 F:      arch/arm/mach-pxa/hx4700.c
1112 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1113 F:      sound/soc/pxa/hx4700.c
1114
1115 ARM/HISILICON SOC SUPPORT
1116 M:      Wei Xu <xuwei5@hisilicon.com>
1117 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1118 W:      http://www.hisilicon.com
1119 S:      Supported
1120 T:      git git://github.com/hisilicon/linux-hisi.git
1121 F:      arch/arm/mach-hisi/
1122
1123 ARM/HP JORNADA 7XX MACHINE SUPPORT
1124 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1125 W:      www.jlime.com
1126 S:      Maintained
1127 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1128 F:      arch/arm/mach-sa1100/jornada720.c
1129 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1130
1131 ARM/IGEP MACHINE SUPPORT
1132 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1133 M:      Javier Martinez Canillas <javier@dowhile0.org>
1134 L:      linux-omap@vger.kernel.org
1135 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1136 S:      Maintained
1137 F:      arch/arm/boot/dts/omap3-igep*
1138
1139 ARM/INCOME PXA270 SUPPORT
1140 M:      Marek Vasut <marek.vasut@gmail.com>
1141 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1142 S:      Maintained
1143 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1144
1145 ARM/INTEL IOP32X ARM ARCHITECTURE
1146 M:      Lennert Buytenhek <kernel@wantstofly.org>
1147 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1148 S:      Maintained
1149
1150 ARM/INTEL IOP33X ARM ARCHITECTURE
1151 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1152 S:      Orphan
1153
1154 ARM/INTEL IOP13XX ARM ARCHITECTURE
1155 M:      Lennert Buytenhek <kernel@wantstofly.org>
1156 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1157 S:      Maintained
1158
1159 ARM/INTEL IQ81342EX MACHINE SUPPORT
1160 M:      Lennert Buytenhek <kernel@wantstofly.org>
1161 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1162 S:      Maintained
1163
1164 ARM/INTEL IXDP2850 MACHINE SUPPORT
1165 M:      Lennert Buytenhek <kernel@wantstofly.org>
1166 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1167 S:      Maintained
1168
1169 ARM/INTEL IXP4XX ARM ARCHITECTURE
1170 M:      Imre Kaloz <kaloz@openwrt.org>
1171 M:      Krzysztof Halasa <khalasa@piap.pl>
1172 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1173 S:      Maintained
1174 F:      arch/arm/mach-ixp4xx/
1175
1176 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1177 M:      Jonathan Cameron <jic23@cam.ac.uk>
1178 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1179 S:      Maintained
1180 F:      arch/arm/mach-pxa/stargate2.c
1181 F:      drivers/pcmcia/pxa2xx_stargate2.c
1182
1183 ARM/INTEL XSC3 (MANZANO) ARM CORE
1184 M:      Lennert Buytenhek <kernel@wantstofly.org>
1185 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1186 S:      Maintained
1187
1188 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1189 M:      Lennert Buytenhek <kernel@wantstofly.org>
1190 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1191 S:      Maintained
1192
1193 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
1194 M:      Santosh Shilimkar <ssantosh@kernel.org>
1195 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1196 S:      Maintained
1197 F:      arch/arm/mach-keystone/
1198 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
1199
1200 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
1201 M:      Santosh Shilimkar <ssantosh@kernel.org>
1202 L:      linux-kernel@vger.kernel.org
1203 S:      Maintained
1204 F:      drivers/clk/keystone/
1205
1206 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
1207 M:      Santosh Shilimkar <ssantosh@kernel.org>
1208 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1209 L:      linux-kernel@vger.kernel.org
1210 S:      Maintained
1211 F:      drivers/clocksource/timer-keystone.c
1212
1213 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
1214 M:      Santosh Shilimkar <ssantosh@kernel.org>
1215 L:      linux-kernel@vger.kernel.org
1216 S:      Maintained
1217 F:      drivers/power/reset/keystone-reset.c
1218
1219 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
1220 M:      Santosh Shilimkar <ssantosh@kernel.org>
1221 L:      linux-kernel@vger.kernel.org
1222 S:      Maintained
1223 F:      drivers/memory/*emif*
1224
1225 ARM/LOGICPD PXA270 MACHINE SUPPORT
1226 M:      Lennert Buytenhek <kernel@wantstofly.org>
1227 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1228 S:      Maintained
1229
1230 ARM/LPC18XX ARCHITECTURE
1231 M:      Joachim Eastwood <manabian@gmail.com>
1232 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1233 S:      Maintained
1234 N:      lpc18xx
1235
1236 ARM/MAGICIAN MACHINE SUPPORT
1237 M:      Philipp Zabel <philipp.zabel@gmail.com>
1238 S:      Maintained
1239
1240 ARM/Marvell Kirkwood and Armada 370, 375, 38x, XP SOC support
1241 M:      Jason Cooper <jason@lakedaemon.net>
1242 M:      Andrew Lunn <andrew@lunn.ch>
1243 M:      Gregory Clement <gregory.clement@free-electrons.com>
1244 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1245 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1246 S:      Maintained
1247 F:      arch/arm/mach-mvebu/
1248 F:      drivers/rtc/rtc-armada38x.c
1249 F:      arch/arm/boot/dts/armada*
1250 F:      arch/arm/boot/dts/kirkwood*
1251
1252
1253 ARM/Marvell Berlin SoC support
1254 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1255 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1256 S:      Maintained
1257 F:      arch/arm/mach-berlin/
1258 F:      arch/arm/boot/dts/berlin*
1259
1260
1261 ARM/Marvell Dove/MV78xx0/Orion SOC support
1262 M:      Jason Cooper <jason@lakedaemon.net>
1263 M:      Andrew Lunn <andrew@lunn.ch>
1264 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1265 M:      Gregory Clement <gregory.clement@free-electrons.com>
1266 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1267 S:      Maintained
1268 F:      arch/arm/mach-dove/
1269 F:      arch/arm/mach-mv78xx0/
1270 F:      arch/arm/mach-orion5x/
1271 F:      arch/arm/plat-orion/
1272 F:      arch/arm/boot/dts/dove*
1273 F:      arch/arm/boot/dts/orion5x*
1274
1275
1276 ARM/Orion SoC/Technologic Systems TS-78xx platform support
1277 M:      Alexander Clouter <alex@digriz.org.uk>
1278 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1279 W:      http://www.digriz.org.uk/ts78xx/kernel
1280 S:      Maintained
1281 F:      arch/arm/mach-orion5x/ts78xx-*
1282
1283 ARM/Mediatek RTC DRIVER
1284 M:      Eddie Huang <eddie.huang@mediatek.com>
1285 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1286 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1287 S:      Maintained
1288 F:      drivers/rtc/rtc-mt6397.c
1289
1290 ARM/Mediatek SoC support
1291 M:      Matthias Brugger <matthias.bgg@gmail.com>
1292 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1293 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1294 S:      Maintained
1295 F:      arch/arm/boot/dts/mt6*
1296 F:      arch/arm/boot/dts/mt8*
1297 F:      arch/arm/mach-mediatek/
1298 N:      mtk
1299 K:      mediatek
1300
1301 ARM/MICREL KS8695 ARCHITECTURE
1302 M:      Greg Ungerer <gerg@uclinux.org>
1303 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1304 F:      arch/arm/mach-ks8695/
1305 S:      Odd Fixes
1306
1307 ARM/MIOA701 MACHINE SUPPORT
1308 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1309 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1310 F:      arch/arm/mach-pxa/mioa701.c
1311 S:      Maintained
1312
1313 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1314 M:      Michael Petchkovsky <mkpetch@internode.on.net>
1315 S:      Maintained
1316
1317 ARM/NOMADIK ARCHITECTURE
1318 M:      Alessandro Rubini <rubini@unipv.it>
1319 M:      Linus Walleij <linus.walleij@linaro.org>
1320 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1321 S:      Maintained
1322 F:      arch/arm/mach-nomadik/
1323 F:      drivers/pinctrl/nomadik/
1324 F:      drivers/i2c/busses/i2c-nomadik.c
1325 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
1326
1327 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
1328 M:      Nelson Castillo <arhuaco@freaks-unidos.net>
1329 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
1330 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
1331 S:      Supported
1332
1333 ARM/TOSA MACHINE SUPPORT
1334 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1335 M:      Dirk Opfer <dirk@opfer-online.de>
1336 S:      Maintained
1337
1338 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
1339 M:      Marek Vasut <marek.vasut@gmail.com>
1340 L:      linux-arm-kernel@lists.infradead.org
1341 W:      http://hackndev.com
1342 S:      Maintained
1343 F:      arch/arm/mach-pxa/include/mach/palmtx.h
1344 F:      arch/arm/mach-pxa/palmtx.c
1345 F:      arch/arm/mach-pxa/include/mach/palmt5.h
1346 F:      arch/arm/mach-pxa/palmt5.c
1347 F:      arch/arm/mach-pxa/include/mach/palmld.h
1348 F:      arch/arm/mach-pxa/palmld.c
1349 F:      arch/arm/mach-pxa/include/mach/palmte2.h
1350 F:      arch/arm/mach-pxa/palmte2.c
1351 F:      arch/arm/mach-pxa/include/mach/palmtc.h
1352 F:      arch/arm/mach-pxa/palmtc.c
1353
1354 ARM/PALM TREO SUPPORT
1355 M:      Tomas Cech <sleep_walker@suse.com>
1356 L:      linux-arm-kernel@lists.infradead.org
1357 W:      http://hackndev.com
1358 S:      Maintained
1359 F:      arch/arm/mach-pxa/include/mach/palmtreo.h
1360 F:      arch/arm/mach-pxa/palmtreo.c
1361
1362 ARM/PALMZ72 SUPPORT
1363 M:      Sergey Lapin <slapin@ossfans.org>
1364 L:      linux-arm-kernel@lists.infradead.org
1365 W:      http://hackndev.com
1366 S:      Maintained
1367 F:      arch/arm/mach-pxa/include/mach/palmz72.h
1368 F:      arch/arm/mach-pxa/palmz72.c
1369
1370 ARM/PLEB SUPPORT
1371 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
1372 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1373 S:      Maintained
1374
1375 ARM/PT DIGITAL BOARD PORT
1376 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
1377 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1378 W:      http://www.arm.linux.org.uk/
1379 S:      Maintained
1380
1381 ARM/QUALCOMM SUPPORT
1382 M:      Kumar Gala <galak@codeaurora.org>
1383 M:      Andy Gross <agross@codeaurora.org>
1384 M:      David Brown <davidb@codeaurora.org>
1385 L:      linux-arm-msm@vger.kernel.org
1386 L:      linux-soc@vger.kernel.org
1387 S:      Maintained
1388 F:      arch/arm/mach-qcom/
1389 F:      drivers/soc/qcom/
1390 F:      drivers/tty/serial/msm_serial.h
1391 F:      drivers/tty/serial/msm_serial.c
1392 F:      drivers/*/pm8???-*
1393 F:      drivers/mfd/ssbi.c
1394 F:      drivers/firmware/qcom_scm.c
1395 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git
1396
1397 ARM/RADISYS ENP2611 MACHINE SUPPORT
1398 M:      Lennert Buytenhek <kernel@wantstofly.org>
1399 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1400 S:      Maintained
1401
1402 ARM/RISCPC ARCHITECTURE
1403 M:      Russell King <linux@arm.linux.org.uk>
1404 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1405 W:      http://www.arm.linux.org.uk/
1406 S:      Maintained
1407 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
1408 F:      arch/arm/include/asm/hardware/ioc.h
1409 F:      arch/arm/include/asm/hardware/iomd.h
1410 F:      arch/arm/include/asm/hardware/memc.h
1411 F:      arch/arm/mach-rpc/
1412 F:      drivers/net/ethernet/8390/etherh.c
1413 F:      drivers/net/ethernet/i825xx/ether1*
1414 F:      drivers/net/ethernet/seeq/ether3*
1415 F:      drivers/scsi/arm/
1416
1417 ARM/Rockchip SoC support
1418 M:      Heiko Stuebner <heiko@sntech.de>
1419 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1420 L:      linux-rockchip@lists.infradead.org
1421 S:      Maintained
1422 F:      arch/arm/boot/dts/rk3*
1423 F:      arch/arm/mach-rockchip/
1424 F:      drivers/clk/rockchip/
1425 F:      drivers/i2c/busses/i2c-rk3x.c
1426 F:      drivers/*/*rockchip*
1427 F:      drivers/*/*/*rockchip*
1428 F:      sound/soc/rockchip/
1429 N:      rockchip
1430
1431 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
1432 M:      Kukjin Kim <kgene@kernel.org>
1433 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
1434 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1435 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1436 S:      Maintained
1437 F:      arch/arm/boot/dts/s3c*
1438 F:      arch/arm/boot/dts/exynos*
1439 F:      arch/arm64/boot/dts/exynos/
1440 F:      arch/arm/plat-samsung/
1441 F:      arch/arm/mach-s3c24*/
1442 F:      arch/arm/mach-s3c64xx/
1443 F:      arch/arm/mach-s5p*/
1444 F:      arch/arm/mach-exynos*/
1445 F:      drivers/*/*s3c2410*
1446 F:      drivers/*/*/*s3c2410*
1447 F:      drivers/spi/spi-s3c*
1448 F:      sound/soc/samsung/*
1449 N:      exynos
1450
1451 ARM/SAMSUNG MOBILE MACHINE SUPPORT
1452 M:      Kyungmin Park <kyungmin.park@samsung.com>
1453 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1454 S:      Maintained
1455 F:      arch/arm/mach-s5pv210/
1456
1457 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1458 M:      Kyungmin Park <kyungmin.park@samsung.com>
1459 M:      Kamil Debski <k.debski@samsung.com>
1460 L:      linux-arm-kernel@lists.infradead.org
1461 L:      linux-media@vger.kernel.org
1462 S:      Maintained
1463 F:      drivers/media/platform/s5p-g2d/
1464
1465 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1466 M:      Kyungmin Park <kyungmin.park@samsung.com>
1467 M:      Kamil Debski <k.debski@samsung.com>
1468 M:      Jeongtae Park <jtp.park@samsung.com>
1469 L:      linux-arm-kernel@lists.infradead.org
1470 L:      linux-media@vger.kernel.org
1471 S:      Maintained
1472 F:      arch/arm/plat-samsung/s5p-dev-mfc.c
1473 F:      drivers/media/platform/s5p-mfc/
1474
1475 ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1476 M:      Kyungmin Park <kyungmin.park@samsung.com>
1477 M:      Tomasz Stanislawski <t.stanislaws@samsung.com>
1478 L:      linux-arm-kernel@lists.infradead.org
1479 L:      linux-media@vger.kernel.org
1480 S:      Maintained
1481 F:      drivers/media/platform/s5p-tv/
1482
1483 ARM/SHMOBILE ARM ARCHITECTURE
1484 M:      Simon Horman <horms@verge.net.au>
1485 M:      Magnus Damm <magnus.damm@gmail.com>
1486 L:      linux-sh@vger.kernel.org
1487 W:      http://oss.renesas.com
1488 Q:      http://patchwork.kernel.org/project/linux-sh/list/
1489 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1490 S:      Supported
1491 F:      arch/arm/boot/dts/emev2*
1492 F:      arch/arm/boot/dts/r7s*
1493 F:      arch/arm/boot/dts/r8a*
1494 F:      arch/arm/boot/dts/sh*
1495 F:      arch/arm/configs/shmobile_defconfig
1496 F:      arch/arm/include/debug/renesas-scif.S
1497 F:      arch/arm/mach-shmobile/
1498 F:      drivers/sh/
1499
1500 ARM/SOCFPGA ARCHITECTURE
1501 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1502 S:      Maintained
1503 F:      arch/arm/mach-socfpga/
1504 F:      arch/arm/boot/dts/socfpga*
1505 F:      arch/arm/configs/socfpga_defconfig
1506 W:      http://www.rocketboards.org
1507 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
1508
1509 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1510 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1511 S:      Maintained
1512 F:      drivers/clk/socfpga/
1513
1514 ARM/SOCFPGA EDAC SUPPORT
1515 M:      Thor Thayer <tthayer@opensource.altera.com>
1516 S:      Maintained
1517 F:      drivers/edac/altera_edac.
1518
1519 ARM/STI ARCHITECTURE
1520 M:      Srinivas Kandagatla <srinivas.kandagatla@gmail.com>
1521 M:      Maxime Coquelin <maxime.coquelin@st.com>
1522 M:      Patrice Chotard <patrice.chotard@st.com>
1523 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1524 L:      kernel@stlinux.com
1525 W:      http://www.stlinux.com
1526 S:      Maintained
1527 F:      arch/arm/mach-sti/
1528 F:      arch/arm/boot/dts/sti*
1529 F:      drivers/char/hw_random/st-rng.c
1530 F:      drivers/clocksource/arm_global_timer.c
1531 F:      drivers/clocksource/clksrc_st_lpc.c
1532 F:      drivers/i2c/busses/i2c-st.c
1533 F:      drivers/media/rc/st_rc.c
1534 F:      drivers/media/platform/sti/c8sectpfe/
1535 F:      drivers/mmc/host/sdhci-st.c
1536 F:      drivers/phy/phy-miphy28lp.c
1537 F:      drivers/phy/phy-miphy365x.c
1538 F:      drivers/phy/phy-stih407-usb.c
1539 F:      drivers/phy/phy-stih41x-usb.c
1540 F:      drivers/pinctrl/pinctrl-st.c
1541 F:      drivers/reset/sti/
1542 F:      drivers/rtc/rtc-st-lpc.c
1543 F:      drivers/tty/serial/st-asc.c
1544 F:      drivers/usb/dwc3/dwc3-st.c
1545 F:      drivers/usb/host/ehci-st.c
1546 F:      drivers/usb/host/ohci-st.c
1547 F:      drivers/watchdog/st_lpc_wdt.c
1548 F:      drivers/ata/ahci_st.c
1549
1550 ARM/STM32 ARCHITECTURE
1551 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
1552 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1553 S:      Maintained
1554 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git
1555 N:      stm32
1556 F:      drivers/clocksource/armv7m_systick.c
1557
1558 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
1559 M:      Lennert Buytenhek <kernel@wantstofly.org>
1560 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1561 S:      Maintained
1562
1563 ARM/TETON BGA MACHINE SUPPORT
1564 M:      "Mark F. Brown" <mark.brown314@gmail.com>
1565 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1566 S:      Maintained
1567
1568 ARM/THECUS N2100 MACHINE SUPPORT
1569 M:      Lennert Buytenhek <kernel@wantstofly.org>
1570 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1571 S:      Maintained
1572
1573 ARM/NUVOTON W90X900 ARM ARCHITECTURE
1574 M:      Wan ZongShun <mcuos.com@gmail.com>
1575 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1576 W:      http://www.mcuos.com
1577 S:      Maintained
1578 F:      arch/arm/mach-w90x900/
1579 F:      drivers/input/keyboard/w90p910_keypad.c
1580 F:      drivers/input/touchscreen/w90p910_ts.c
1581 F:      drivers/watchdog/nuc900_wdt.c
1582 F:      drivers/net/ethernet/nuvoton/w90p910_ether.c
1583 F:      drivers/mtd/nand/nuc900_nand.c
1584 F:      drivers/rtc/rtc-nuc900.c
1585 F:      drivers/spi/spi-nuc900.c
1586 F:      drivers/usb/host/ehci-w90x900.c
1587 F:      drivers/video/fbdev/nuc900fb.c
1588
1589 ARM/U300 MACHINE SUPPORT
1590 M:      Linus Walleij <linus.walleij@linaro.org>
1591 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1592 S:      Supported
1593 F:      arch/arm/mach-u300/
1594 F:      drivers/clocksource/timer-u300.c
1595 F:      drivers/i2c/busses/i2c-stu300.c
1596 F:      drivers/rtc/rtc-coh901331.c
1597 F:      drivers/watchdog/coh901327_wdt.c
1598 F:      drivers/dma/coh901318*
1599 F:      drivers/mfd/ab3100*
1600 F:      drivers/rtc/rtc-ab3100.c
1601 F:      drivers/rtc/rtc-coh901331.c
1602 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1603
1604 ARM/UNIPHIER ARCHITECTURE
1605 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
1606 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1607 S:      Maintained
1608 F:      arch/arm/boot/dts/uniphier*
1609 F:      arch/arm/mach-uniphier/
1610 F:      drivers/pinctrl/uniphier/
1611 F:      drivers/tty/serial/8250/8250_uniphier.c
1612 N:      uniphier
1613
1614 ARM/Ux500 ARM ARCHITECTURE
1615 M:      Linus Walleij <linus.walleij@linaro.org>
1616 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1617 S:      Maintained
1618 F:      arch/arm/mach-ux500/
1619 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
1620 F:      drivers/dma/ste_dma40*
1621 F:      drivers/hwspinlock/u8500_hsem.c
1622 F:      drivers/mfd/abx500*
1623 F:      drivers/mfd/ab8500*
1624 F:      drivers/mfd/dbx500*
1625 F:      drivers/mfd/db8500*
1626 F:      drivers/pinctrl/nomadik/pinctrl-ab*
1627 F:      drivers/pinctrl/nomadik/pinctrl-nomadik*
1628 F:      drivers/rtc/rtc-ab8500.c
1629 F:      drivers/rtc/rtc-pl031.c
1630 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1631
1632 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
1633 M:      Ulf Hansson <ulf.hansson@linaro.org>
1634 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1635 T:      git git://git.linaro.org/people/ulfh/clk.git
1636 S:      Maintained
1637 F:      drivers/clk/ux500/
1638 F:      include/linux/platform_data/clk-ux500.h
1639
1640 ARM/VERSATILE EXPRESS PLATFORM
1641 M:      Liviu Dudau <liviu.dudau@arm.com>
1642 M:      Sudeep Holla <sudeep.holla@arm.com>
1643 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
1644 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1645 S:      Maintained
1646 F:      arch/arm/boot/dts/vexpress*
1647 F:      arch/arm64/boot/dts/arm/vexpress*
1648 F:      arch/arm/mach-vexpress/
1649 F:      */*/vexpress*
1650 F:      */*/*/vexpress*
1651 F:      drivers/clk/versatile/clk-vexpress-osc.c
1652 F:      drivers/clocksource/versatile.c
1653
1654 ARM/VFP SUPPORT
1655 M:      Russell King <linux@arm.linux.org.uk>
1656 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1657 W:      http://www.arm.linux.org.uk/
1658 S:      Maintained
1659 F:      arch/arm/vfp/
1660
1661 ARM/VOIPAC PXA270 SUPPORT
1662 M:      Marek Vasut <marek.vasut@gmail.com>
1663 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1664 S:      Maintained
1665 F:      arch/arm/mach-pxa/vpac270.c
1666 F:      arch/arm/mach-pxa/include/mach/vpac270.h
1667
1668 ARM/VT8500 ARM ARCHITECTURE
1669 M:      Tony Prisk <linux@prisktech.co.nz>
1670 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1671 S:      Maintained
1672 F:      arch/arm/mach-vt8500/
1673 F:      drivers/clocksource/vt8500_timer.c
1674 F:      drivers/i2c/busses/i2c-wmt.c
1675 F:      drivers/mmc/host/wmt-sdmmc.c
1676 F:      drivers/pwm/pwm-vt8500.c
1677 F:      drivers/rtc/rtc-vt8500.c
1678 F:      drivers/tty/serial/vt8500_serial.c
1679 F:      drivers/usb/host/ehci-platform.c
1680 F:      drivers/usb/host/uhci-platform.c
1681 F:      drivers/video/fbdev/vt8500lcdfb.*
1682 F:      drivers/video/fbdev/wm8505fb*
1683 F:      drivers/video/fbdev/wmt_ge_rops.*
1684
1685 ARM/ZIPIT Z2 SUPPORT
1686 M:      Marek Vasut <marek.vasut@gmail.com>
1687 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1688 S:      Maintained
1689 F:      arch/arm/mach-pxa/z2.c
1690 F:      arch/arm/mach-pxa/include/mach/z2.h
1691
1692 ARM/ZTE ARCHITECTURE
1693 M:      Jun Nie <jun.nie@linaro.org>
1694 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1695 S:      Maintained
1696 F:      arch/arm/mach-zx/
1697 F:      drivers/clk/zte/
1698 F:      Documentation/devicetree/bindings/arm/zte.txt
1699 F:      Documentation/devicetree/bindings/clock/zx296702-clk.txt
1700
1701 ARM/ZYNQ ARCHITECTURE
1702 M:      Michal Simek <michal.simek@xilinx.com>
1703 R:      Sören Brinkmann <soren.brinkmann@xilinx.com>
1704 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1705 W:      http://wiki.xilinx.com
1706 T:      git https://github.com/Xilinx/linux-xlnx.git
1707 S:      Supported
1708 F:      arch/arm/mach-zynq/
1709 F:      drivers/cpuidle/cpuidle-zynq.c
1710 F:      drivers/block/xsysace.c
1711 N:      zynq
1712 N:      xilinx
1713 F:      drivers/clocksource/cadence_ttc_timer.c
1714 F:      drivers/i2c/busses/i2c-cadence.c
1715 F:      drivers/mmc/host/sdhci-of-arasan.c
1716 F:      drivers/edac/synopsys_edac.c
1717
1718 ARM SMMU DRIVERS
1719 M:      Will Deacon <will.deacon@arm.com>
1720 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1721 S:      Maintained
1722 F:      drivers/iommu/arm-smmu.c
1723 F:      drivers/iommu/arm-smmu-v3.c
1724 F:      drivers/iommu/io-pgtable-arm.c
1725
1726 ARM64 PORT (AARCH64 ARCHITECTURE)
1727 M:      Catalin Marinas <catalin.marinas@arm.com>
1728 M:      Will Deacon <will.deacon@arm.com>
1729 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1730 S:      Maintained
1731 F:      arch/arm64/
1732 F:      Documentation/arm64/
1733
1734 AS3645A LED FLASH CONTROLLER DRIVER
1735 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1736 L:      linux-media@vger.kernel.org
1737 T:      git git://linuxtv.org/media_tree.git
1738 S:      Maintained
1739 F:      drivers/media/i2c/as3645a.c
1740 F:      include/media/as3645a.h
1741
1742 ASC7621 HARDWARE MONITOR DRIVER
1743 M:      George Joseph <george.joseph@fairview5.com>
1744 L:      lm-sensors@lm-sensors.org
1745 S:      Maintained
1746 F:      Documentation/hwmon/asc7621
1747 F:      drivers/hwmon/asc7621.c
1748
1749 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
1750 M:      Corentin Chary <corentin.chary@gmail.com>
1751 L:      acpi4asus-user@lists.sourceforge.net
1752 L:      platform-driver-x86@vger.kernel.org
1753 W:      http://acpi4asus.sf.net
1754 S:      Maintained
1755 F:      drivers/platform/x86/asus*.c
1756 F:      drivers/platform/x86/eeepc*.c
1757
1758 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
1759 R:      Dan Williams <dan.j.williams@intel.com>
1760 W:      http://sourceforge.net/projects/xscaleiop
1761 S:      Odd fixes
1762 F:      Documentation/crypto/async-tx-api.txt
1763 F:      crypto/async_tx/
1764 F:      drivers/dma/
1765 F:      include/linux/dmaengine.h
1766 F:      include/linux/async_tx.h
1767
1768 AT24 EEPROM DRIVER
1769 M:      Wolfram Sang <wsa@the-dreams.de>
1770 L:      linux-i2c@vger.kernel.org
1771 S:      Maintained
1772 F:      drivers/misc/eeprom/at24.c
1773 F:      include/linux/platform_data/at24.h
1774
1775 ATA OVER ETHERNET (AOE) DRIVER
1776 M:      "Ed L. Cashin" <ed.cashin@acm.org>
1777 W:      http://www.openaoe.org/
1778 S:      Supported
1779 F:      Documentation/aoe/
1780 F:      drivers/block/aoe/
1781
1782 ATHEROS ATH GENERIC UTILITIES
1783 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1784 L:      linux-wireless@vger.kernel.org
1785 S:      Supported
1786 F:      drivers/net/wireless/ath/*
1787
1788 ATHEROS ATH5K WIRELESS DRIVER
1789 M:      Jiri Slaby <jirislaby@gmail.com>
1790 M:      Nick Kossifidis <mickflemm@gmail.com>
1791 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1792 L:      linux-wireless@vger.kernel.org
1793 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
1794 S:      Maintained
1795 F:      drivers/net/wireless/ath/ath5k/
1796
1797 ATHEROS ATH6KL WIRELESS DRIVER
1798 M:      Kalle Valo <kvalo@qca.qualcomm.com>
1799 L:      linux-wireless@vger.kernel.org
1800 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
1801 T:      git git://github.com/kvalo/ath.git
1802 S:      Supported
1803 F:      drivers/net/wireless/ath/ath6kl/
1804
1805 WILOCITY WIL6210 WIRELESS DRIVER
1806 M:      Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com>
1807 L:      linux-wireless@vger.kernel.org
1808 L:      wil6210@qca.qualcomm.com
1809 S:      Supported
1810 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
1811 F:      drivers/net/wireless/ath/wil6210/
1812 F:      include/uapi/linux/wil6210_uapi.h
1813
1814 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1815 M:      Christian Lamparter <chunkeey@googlemail.com>
1816 L:      linux-wireless@vger.kernel.org
1817 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
1818 S:      Maintained
1819 F:      drivers/net/wireless/ath/carl9170/
1820
1821 ATK0110 HWMON DRIVER
1822 M:      Luca Tettamanti <kronos.it@gmail.com>
1823 L:      lm-sensors@lm-sensors.org
1824 S:      Maintained
1825 F:      drivers/hwmon/asus_atk0110.c
1826
1827 ATI_REMOTE2 DRIVER
1828 M:      Ville Syrjala <syrjala@sci.fi>
1829 S:      Maintained
1830 F:      drivers/input/misc/ati_remote2.c
1831
1832 ATLX ETHERNET DRIVERS
1833 M:      Jay Cliburn <jcliburn@gmail.com>
1834 M:      Chris Snook <chris.snook@gmail.com>
1835 L:      netdev@vger.kernel.org
1836 W:      http://sourceforge.net/projects/atl1
1837 W:      http://atl1.sourceforge.net
1838 S:      Maintained
1839 F:      drivers/net/ethernet/atheros/
1840
1841 ATM
1842 M:      Chas Williams <3chas3@gmail.com>
1843 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
1844 L:      netdev@vger.kernel.org
1845 W:      http://linux-atm.sourceforge.net
1846 S:      Maintained
1847 F:      drivers/atm/
1848 F:      include/linux/atm*
1849 F:      include/uapi/linux/atm*
1850
1851 ATMEL AT91 / AT32 MCI DRIVER
1852 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1853 S:      Maintained
1854 F:      drivers/mmc/host/atmel-mci.c
1855 F:      drivers/mmc/host/atmel-mci-regs.h
1856
1857 ATMEL AT91 / AT32 SERIAL DRIVER
1858 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1859 S:      Supported
1860 F:      drivers/tty/serial/atmel_serial.c
1861
1862 ATMEL Audio ALSA driver
1863 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1864 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1865 S:      Supported
1866 F:      sound/soc/atmel
1867
1868 ATMEL DMA DRIVER
1869 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1870 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1871 S:      Supported
1872 F:      drivers/dma/at_hdmac.c
1873 F:      drivers/dma/at_hdmac_regs.h
1874 F:      include/linux/platform_data/dma-atmel.h
1875
1876 ATMEL XDMA DRIVER
1877 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1878 L:      linux-arm-kernel@lists.infradead.org
1879 L:      dmaengine@vger.kernel.org
1880 S:      Supported
1881 F:      drivers/dma/at_xdmac.c
1882
1883 ATMEL I2C DRIVER
1884 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1885 L:      linux-i2c@vger.kernel.org
1886 S:      Supported
1887 F:      drivers/i2c/busses/i2c-at91.c
1888
1889 ATMEL ISI DRIVER
1890 M:      Josh Wu <josh.wu@atmel.com>
1891 L:      linux-media@vger.kernel.org
1892 S:      Supported
1893 F:      drivers/media/platform/soc_camera/atmel-isi.c
1894 F:      include/media/atmel-isi.h
1895
1896 ATMEL LCDFB DRIVER
1897 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1898 L:      linux-fbdev@vger.kernel.org
1899 S:      Maintained
1900 F:      drivers/video/fbdev/atmel_lcdfb.c
1901 F:      include/video/atmel_lcdc.h
1902
1903 ATMEL MACB ETHERNET DRIVER
1904 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1905 S:      Supported
1906 F:      drivers/net/ethernet/cadence/
1907
1908 ATMEL NAND DRIVER
1909 M:      Josh Wu <josh.wu@atmel.com>
1910 L:      linux-mtd@lists.infradead.org
1911 S:      Supported
1912 F:      drivers/mtd/nand/atmel_nand*
1913
1914 ATMEL SDMMC DRIVER
1915 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1916 L:      linux-mmc@vger.kernel.org
1917 S:      Supported
1918 F:      drivers/mmc/host/sdhci-of-at91.c
1919
1920 ATMEL SPI DRIVER
1921 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1922 S:      Supported
1923 F:      drivers/spi/spi-atmel.*
1924
1925 ATMEL SSC DRIVER
1926 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1927 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1928 S:      Supported
1929 F:      drivers/misc/atmel-ssc.c
1930 F:      include/linux/atmel-ssc.h
1931
1932 ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1933 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1934 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1935 S:      Supported
1936 F:      drivers/misc/atmel_tclib.c
1937 F:      drivers/clocksource/tcb_clksrc.c
1938
1939 ATMEL USBA UDC DRIVER
1940 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1941 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1942 S:      Supported
1943 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
1944
1945 ATMEL WIRELESS DRIVER
1946 M:      Simon Kelley <simon@thekelleys.org.uk>
1947 L:      linux-wireless@vger.kernel.org
1948 W:      http://www.thekelleys.org.uk/atmel
1949 W:      http://atmelwlandriver.sourceforge.net/
1950 S:      Maintained
1951 F:      drivers/net/wireless/atmel*
1952
1953 ATMEL MAXTOUCH DRIVER
1954 M:      Nick Dyer <nick.dyer@itdev.co.uk>
1955 T:      git git://github.com/atmel-maxtouch/linux.git
1956 S:      Supported
1957 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
1958 F:      drivers/input/touchscreen/atmel_mxt_ts.c
1959 F:      include/linux/platform_data/atmel_mxt_ts.h
1960
1961 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
1962 M:      Bradley Grove <linuxdrivers@attotech.com>
1963 L:      linux-scsi@vger.kernel.org
1964 W:      http://www.attotech.com
1965 S:      Supported
1966 F:      drivers/scsi/esas2r
1967
1968 ATUSB IEEE 802.15.4 RADIO DRIVER
1969 M:      Stefan Schmidt <stefan@osg.samsung.com>
1970 L:      linux-wpan@vger.kernel.org
1971 S:      Maintained
1972 F:      drivers/net/ieee802154/atusb.c
1973 F:      drivers/net/ieee802154/atusb.h
1974 F:      drivers/net/ieee802154/at86rf230.h
1975
1976 AUDIT SUBSYSTEM
1977 M:      Paul Moore <paul@paul-moore.com>
1978 M:      Eric Paris <eparis@redhat.com>
1979 L:      linux-audit@redhat.com (moderated for non-subscribers)
1980 W:      http://people.redhat.com/sgrubb/audit/
1981 T:      git git://git.infradead.org/users/pcmoore/audit
1982 S:      Maintained
1983 F:      include/linux/audit.h
1984 F:      include/uapi/linux/audit.h
1985 F:      kernel/audit*
1986
1987 AUXILIARY DISPLAY DRIVERS
1988 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
1989 W:      http://miguelojeda.es/auxdisplay.htm
1990 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
1991 S:      Maintained
1992 F:      drivers/auxdisplay/
1993 F:      include/linux/cfag12864b.h
1994
1995 AVR32 ARCHITECTURE
1996 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
1997 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
1998 W:      http://www.atmel.com/products/AVR32/
1999 W:      http://mirror.egtvedt.no/avr32linux.org/
2000 W:      http://avrfreaks.net/
2001 S:      Maintained
2002 F:      arch/avr32/
2003
2004 AVR32/AT32AP MACHINE SUPPORT
2005 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
2006 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
2007 S:      Maintained
2008 F:      arch/avr32/mach-at32ap/
2009
2010 AX.25 NETWORK LAYER
2011 M:      Ralf Baechle <ralf@linux-mips.org>
2012 L:      linux-hams@vger.kernel.org
2013 W:      http://www.linux-ax25.org/
2014 S:      Maintained
2015 F:      include/uapi/linux/ax25.h
2016 F:      include/net/ax25.h
2017 F:      net/ax25/
2018
2019 AZ6007 DVB DRIVER
2020 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2021 L:      linux-media@vger.kernel.org
2022 W:      http://linuxtv.org
2023 T:      git git://linuxtv.org/media_tree.git
2024 S:      Maintained
2025 F:      drivers/media/usb/dvb-usb-v2/az6007.c
2026
2027 AZTECH FM RADIO RECEIVER DRIVER
2028 M:      Hans Verkuil <hverkuil@xs4all.nl>
2029 L:      linux-media@vger.kernel.org
2030 T:      git git://linuxtv.org/media_tree.git
2031 W:      http://linuxtv.org
2032 S:      Maintained
2033 F:      drivers/media/radio/radio-aztech*
2034
2035 B43 WIRELESS DRIVER
2036 L:      linux-wireless@vger.kernel.org
2037 L:      b43-dev@lists.infradead.org
2038 W:      http://wireless.kernel.org/en/users/Drivers/b43
2039 S:      Odd Fixes
2040 F:      drivers/net/wireless/b43/
2041
2042 B43LEGACY WIRELESS DRIVER
2043 M:      Larry Finger <Larry.Finger@lwfinger.net>
2044 L:      linux-wireless@vger.kernel.org
2045 L:      b43-dev@lists.infradead.org
2046 W:      http://wireless.kernel.org/en/users/Drivers/b43
2047 S:      Maintained
2048 F:      drivers/net/wireless/b43legacy/
2049
2050 BACKLIGHT CLASS/SUBSYSTEM
2051 M:      Jingoo Han <jingoohan1@gmail.com>
2052 M:      Lee Jones <lee.jones@linaro.org>
2053 S:      Maintained
2054 F:      drivers/video/backlight/
2055 F:      include/linux/backlight.h
2056
2057 BATMAN ADVANCED
2058 M:      Marek Lindner <mareklindner@neomailbox.ch>
2059 M:      Simon Wunderlich <sw@simonwunderlich.de>
2060 M:      Antonio Quartulli <antonio@meshcoding.com>
2061 L:      b.a.t.m.a.n@lists.open-mesh.org
2062 W:      http://www.open-mesh.org/
2063 S:      Maintained
2064 F:      net/batman-adv/
2065
2066 BAYCOM/HDLCDRV DRIVERS FOR AX.25
2067 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
2068 L:      linux-hams@vger.kernel.org
2069 W:      http://www.baycom.org/~tom/ham/ham.html
2070 S:      Maintained
2071 F:      drivers/net/hamradio/baycom*
2072
2073 BCACHE (BLOCK LAYER CACHE)
2074 M:      Kent Overstreet <kent.overstreet@gmail.com>
2075 L:      linux-bcache@vger.kernel.org
2076 W:      http://bcache.evilpiepirate.org
2077 S:      Maintained
2078 F:      drivers/md/bcache/
2079
2080 BDISP ST MEDIA DRIVER
2081 M:      Fabien Dessenne <fabien.dessenne@st.com>
2082 L:      linux-media@vger.kernel.org
2083 T:      git git://linuxtv.org/media_tree.git
2084 W:      http://linuxtv.org
2085 S:      Supported
2086 F:      drivers/media/platform/sti/bdisp
2087
2088 BEFS FILE SYSTEM
2089 S:      Orphan
2090 F:      Documentation/filesystems/befs.txt
2091 F:      fs/befs/
2092
2093 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
2094 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
2095 L:      netdev@vger.kernel.org
2096 S:      Maintained
2097 F:      drivers/net/ethernet/ec_bhf.c
2098
2099 BFS FILE SYSTEM
2100 M:      "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
2101 S:      Maintained
2102 F:      Documentation/filesystems/bfs.txt
2103 F:      fs/bfs/
2104 F:      include/uapi/linux/bfs_fs.h
2105
2106 BLACKFIN ARCHITECTURE
2107 M:      Steven Miao <realmz6@gmail.com>
2108 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2109 T:      git git://git.code.sf.net/p/adi-linux/code
2110 W:      http://blackfin.uclinux.org
2111 S:      Supported
2112 F:      arch/blackfin/
2113
2114 BLACKFIN EMAC DRIVER
2115 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2116 W:      http://blackfin.uclinux.org
2117 S:      Supported
2118 F:      drivers/net/ethernet/adi/
2119
2120 BLACKFIN RTC DRIVER
2121 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2122 W:      http://blackfin.uclinux.org
2123 S:      Supported
2124 F:      drivers/rtc/rtc-bfin.c
2125
2126 BLACKFIN SDH DRIVER
2127 M:      Sonic Zhang <sonic.zhang@analog.com>
2128 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2129 W:      http://blackfin.uclinux.org
2130 S:      Supported
2131 F:      drivers/mmc/host/bfin_sdh.c
2132
2133 BLACKFIN SERIAL DRIVER
2134 M:      Sonic Zhang <sonic.zhang@analog.com>
2135 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2136 W:      http://blackfin.uclinux.org
2137 S:      Supported
2138 F:      drivers/tty/serial/bfin_uart.c
2139
2140 BLACKFIN WATCHDOG DRIVER
2141 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2142 W:      http://blackfin.uclinux.org
2143 S:      Supported
2144 F:      drivers/watchdog/bfin_wdt.c
2145
2146 BLACKFIN I2C TWI DRIVER
2147 M:      Sonic Zhang <sonic.zhang@analog.com>
2148 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2149 W:      http://blackfin.uclinux.org/
2150 S:      Supported
2151 F:      drivers/i2c/busses/i2c-bfin-twi.c
2152
2153 BLACKFIN MEDIA DRIVER
2154 M:      Scott Jiang <scott.jiang.linux@gmail.com>
2155 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2156 W:      http://blackfin.uclinux.org/
2157 S:      Supported
2158 F:      drivers/media/platform/blackfin/
2159 F:      drivers/media/i2c/adv7183*
2160 F:      drivers/media/i2c/vs6624*
2161
2162 BLINKM RGB LED DRIVER
2163 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
2164 S:      Maintained
2165 F:      drivers/leds/leds-blinkm.c
2166
2167 BLOCK LAYER
2168 M:      Jens Axboe <axboe@kernel.dk>
2169 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
2170 S:      Maintained
2171 F:      block/
2172 F:      kernel/trace/blktrace.c
2173
2174 BLOCK2MTD DRIVER
2175 M:      Joern Engel <joern@lazybastard.org>
2176 L:      linux-mtd@lists.infradead.org
2177 S:      Maintained
2178 F:      drivers/mtd/devices/block2mtd.c
2179
2180 BLUETOOTH DRIVERS
2181 M:      Marcel Holtmann <marcel@holtmann.org>
2182 M:      Gustavo Padovan <gustavo@padovan.org>
2183 M:      Johan Hedberg <johan.hedberg@gmail.com>
2184 L:      linux-bluetooth@vger.kernel.org
2185 W:      http://www.bluez.org/
2186 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2187 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2188 S:      Maintained
2189 F:      drivers/bluetooth/
2190
2191 BLUETOOTH SUBSYSTEM
2192 M:      Marcel Holtmann <marcel@holtmann.org>
2193 M:      Gustavo Padovan <gustavo@padovan.org>
2194 M:      Johan Hedberg <johan.hedberg@gmail.com>
2195 L:      linux-bluetooth@vger.kernel.org
2196 W:      http://www.bluez.org/
2197 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2198 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2199 S:      Maintained
2200 F:      net/bluetooth/
2201 F:      include/net/bluetooth/
2202
2203 BONDING DRIVER
2204 M:      Jay Vosburgh <j.vosburgh@gmail.com>
2205 M:      Veaceslav Falico <vfalico@gmail.com>
2206 M:      Andy Gospodarek <gospo@cumulusnetworks.com>
2207 L:      netdev@vger.kernel.org
2208 W:      http://sourceforge.net/projects/bonding/
2209 S:      Supported
2210 F:      drivers/net/bonding/
2211 F:      include/uapi/linux/if_bonding.h
2212
2213 BPF (Safe dynamic programs and tools)
2214 M:      Alexei Starovoitov <ast@kernel.org>
2215 L:      netdev@vger.kernel.org
2216 L:      linux-kernel@vger.kernel.org
2217 S:      Supported
2218 F:      kernel/bpf/
2219
2220 BROADCOM B44 10/100 ETHERNET DRIVER
2221 M:      Gary Zambrano <zambrano@broadcom.com>
2222 L:      netdev@vger.kernel.org
2223 S:      Supported
2224 F:      drivers/net/ethernet/broadcom/b44.*
2225
2226 BROADCOM GENET ETHERNET DRIVER
2227 M:      Florian Fainelli <f.fainelli@gmail.com>
2228 L:      netdev@vger.kernel.org
2229 S:      Supported
2230 F:      drivers/net/ethernet/broadcom/genet/
2231
2232 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
2233 M:      Sony Chacko <sony.chacko@qlogic.com>
2234 M:      Dept-HSGLinuxNICDev@qlogic.com
2235 L:      netdev@vger.kernel.org
2236 S:      Supported
2237 F:      drivers/net/ethernet/broadcom/bnx2.*
2238 F:      drivers/net/ethernet/broadcom/bnx2_*
2239
2240 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
2241 M:      Ariel Elior <ariel.elior@qlogic.com>
2242 L:      netdev@vger.kernel.org
2243 S:      Supported
2244 F:      drivers/net/ethernet/broadcom/bnx2x/
2245
2246 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
2247 M:      Florian Fainelli <f.fainelli@gmail.com>
2248 M:      Ray Jui <rjui@broadcom.com>
2249 M:      Scott Branden <sbranden@broadcom.com>
2250 L:      bcm-kernel-feedback-list@broadcom.com
2251 T:      git git://github.com/broadcom/mach-bcm
2252 S:      Maintained
2253 F:      arch/arm/mach-bcm/
2254 F:      arch/arm/boot/dts/bcm113*
2255 F:      arch/arm/boot/dts/bcm216*
2256 F:      arch/arm/boot/dts/bcm281*
2257 F:      arch/arm/configs/bcm_defconfig
2258 F:      drivers/mmc/host/sdhci-bcm-kona.c
2259 F:      drivers/clocksource/bcm_kona_timer.c
2260
2261 BROADCOM BCM2835 ARM ARCHITECTURE
2262 M:      Stephen Warren <swarren@wwwdotorg.org>
2263 M:      Lee Jones <lee@kernel.org>
2264 M:      Eric Anholt <eric@anholt.net>
2265 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
2266 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2267 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rpi/linux-rpi.git
2268 S:      Maintained
2269 N:      bcm2835
2270
2271 BROADCOM BCM33XX MIPS ARCHITECTURE
2272 M:      Kevin Cernekee <cernekee@gmail.com>
2273 L:      linux-mips@linux-mips.org
2274 S:      Maintained
2275 F:      arch/mips/bcm3384/*
2276 F:      arch/mips/include/asm/mach-bcm3384/*
2277 F:      arch/mips/kernel/*bmips*
2278
2279 BROADCOM BCM47XX MIPS ARCHITECTURE
2280 M:      Hauke Mehrtens <hauke@hauke-m.de>
2281 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2282 L:      linux-mips@linux-mips.org
2283 S:      Maintained
2284 F:      arch/mips/bcm47xx/*
2285 F:      arch/mips/include/asm/mach-bcm47xx/*
2286
2287 BROADCOM BCM5301X ARM ARCHITECTURE
2288 M:      Hauke Mehrtens <hauke@hauke-m.de>
2289 L:      linux-arm-kernel@lists.infradead.org
2290 S:      Maintained
2291 F:      arch/arm/mach-bcm/bcm_5301x.c
2292 F:      arch/arm/boot/dts/bcm5301x.dtsi
2293 F:      arch/arm/boot/dts/bcm470*
2294
2295 BROADCOM BCM63XX ARM ARCHITECTURE
2296 M:      Florian Fainelli <f.fainelli@gmail.com>
2297 L:      linux-arm-kernel@lists.infradead.org
2298 T:      git git://github.com/broadcom/arm-bcm63xx.git
2299 S:      Maintained
2300 F:      arch/arm/mach-bcm/bcm63xx.c
2301 F:      arch/arm/include/debug/bcm63xx.S
2302
2303 BROADCOM BCM63XX/BCM33XX UDC DRIVER
2304 M:      Kevin Cernekee <cernekee@gmail.com>
2305 L:      linux-usb@vger.kernel.org
2306 S:      Maintained
2307 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
2308
2309 BROADCOM BCM7XXX ARM ARCHITECTURE
2310 M:      Brian Norris <computersforpeace@gmail.com>
2311 M:      Gregory Fong <gregory.0xf0@gmail.com>
2312 M:      Florian Fainelli <f.fainelli@gmail.com>
2313 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2314 T:      git git://github.com/broadcom/stblinux.git
2315 S:      Maintained
2316 F:      arch/arm/mach-bcm/*brcmstb*
2317 F:      arch/arm/boot/dts/bcm7*.dts*
2318 F:      drivers/bus/brcmstb_gisb.c
2319 N:      brcmstb
2320
2321 BROADCOM BMIPS MIPS ARCHITECTURE
2322 M:      Kevin Cernekee <cernekee@gmail.com>
2323 M:      Florian Fainelli <f.fainelli@gmail.com>
2324 L:      linux-mips@linux-mips.org
2325 T:      git git://github.com/broadcom/stblinux.git
2326 S:      Maintained
2327 F:      arch/mips/bmips/*
2328 F:      arch/mips/include/asm/mach-bmips/*
2329 F:      arch/mips/kernel/*bmips*
2330 F:      arch/mips/boot/dts/brcm/bcm*.dts*
2331 F:      drivers/irqchip/irq-bcm7*
2332 F:      drivers/irqchip/irq-brcmstb*
2333
2334 BROADCOM TG3 GIGABIT ETHERNET DRIVER
2335 M:      Prashant Sreedharan <prashant@broadcom.com>
2336 M:      Michael Chan <mchan@broadcom.com>
2337 L:      netdev@vger.kernel.org
2338 S:      Supported
2339 F:      drivers/net/ethernet/broadcom/tg3.*
2340
2341 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2342 M:      Brett Rudley <brudley@broadcom.com>
2343 M:      Arend van Spriel <arend@broadcom.com>
2344 M:      Franky (Zhenhui) Lin <frankyl@broadcom.com>
2345 M:      Hante Meuleman <meuleman@broadcom.com>
2346 L:      linux-wireless@vger.kernel.org
2347 L:      brcm80211-dev-list@broadcom.com
2348 S:      Supported
2349 F:      drivers/net/wireless/brcm80211/
2350
2351 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
2352 M:      QLogic-Storage-Upstream@qlogic.com
2353 L:      linux-scsi@vger.kernel.org
2354 S:      Supported
2355 F:      drivers/scsi/bnx2fc/
2356
2357 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
2358 M:      QLogic-Storage-Upstream@qlogic.com
2359 L:      linux-scsi@vger.kernel.org
2360 S:      Supported
2361 F:      drivers/scsi/bnx2i/
2362
2363 BROADCOM CYGNUS/IPROC ARM ARCHITECTURE
2364 M:      Ray Jui <rjui@broadcom.com>
2365 M:      Scott Branden <sbranden@broadcom.com>
2366 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2367 L:      bcm-kernel-feedback-list@broadcom.com
2368 T:      git git://github.com/broadcom/cygnus-linux.git
2369 S:      Maintained
2370 N:      iproc
2371 N:      cygnus
2372 N:      bcm9113*
2373 N:      bcm9583*
2374 N:      bcm583*
2375 N:      bcm113*
2376
2377 BROADCOM BRCMSTB GPIO DRIVER
2378 M:      Gregory Fong <gregory.0xf0@gmail.com>
2379 L:      bcm-kernel-feedback-list@broadcom.com>
2380 S:      Supported
2381 F:      drivers/gpio/gpio-brcmstb.c
2382 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
2383
2384 BROADCOM KONA GPIO DRIVER
2385 M:      Ray Jui <rjui@broadcom.com>
2386 L:      bcm-kernel-feedback-list@broadcom.com
2387 S:      Supported
2388 F:      drivers/gpio/gpio-bcm-kona.c
2389 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
2390
2391 BROADCOM NVRAM DRIVER
2392 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2393 L:      linux-mips@linux-mips.org
2394 S:      Maintained
2395 F:      drivers/firmware/broadcom/*
2396
2397 BROADCOM STB NAND FLASH DRIVER
2398 M:      Brian Norris <computersforpeace@gmail.com>
2399 L:      linux-mtd@lists.infradead.org
2400 S:      Maintained
2401 F:      drivers/mtd/nand/brcmnand/
2402
2403 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2404 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2405 L:      linux-wireless@vger.kernel.org
2406 S:      Maintained
2407 F:      drivers/bcma/
2408 F:      include/linux/bcma/
2409
2410 BROADCOM SYSTEMPORT ETHERNET DRIVER
2411 M:      Florian Fainelli <f.fainelli@gmail.com>
2412 L:      netdev@vger.kernel.org
2413 S:      Supported
2414 F:      drivers/net/ethernet/broadcom/bcmsysport.*
2415
2416 BROCADE BFA FC SCSI DRIVER
2417 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
2418 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
2419 L:      linux-scsi@vger.kernel.org
2420 S:      Supported
2421 F:      drivers/scsi/bfa/
2422
2423 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
2424 M:      Rasesh Mody <rasesh.mody@qlogic.com>
2425 L:      netdev@vger.kernel.org
2426 S:      Supported
2427 F:      drivers/net/ethernet/brocade/bna/
2428
2429 BSG (block layer generic sg v4 driver)
2430 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
2431 L:      linux-scsi@vger.kernel.org
2432 S:      Supported
2433 F:      block/bsg.c
2434 F:      include/linux/bsg.h
2435 F:      include/uapi/linux/bsg.h
2436
2437 BT87X AUDIO DRIVER
2438 M:      Clemens Ladisch <clemens@ladisch.de>
2439 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2440 T:      git git://git.alsa-project.org/alsa-kernel.git
2441 S:      Maintained
2442 F:      Documentation/sound/alsa/Bt87x.txt
2443 F:      sound/pci/bt87x.c
2444
2445 BT8XXGPIO DRIVER
2446 M:      Michael Buesch <m@bues.ch>
2447 W:      http://bu3sch.de/btgpio.php
2448 S:      Maintained
2449 F:      drivers/gpio/gpio-bt8xx.c
2450
2451 BTRFS FILE SYSTEM
2452 M:      Chris Mason <clm@fb.com>
2453 M:      Josef Bacik <jbacik@fb.com>
2454 M:      David Sterba <dsterba@suse.com>
2455 L:      linux-btrfs@vger.kernel.org
2456 W:      http://btrfs.wiki.kernel.org/
2457 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
2458 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
2459 S:      Maintained
2460 F:      Documentation/filesystems/btrfs.txt
2461 F:      fs/btrfs/
2462
2463 BTTV VIDEO4LINUX DRIVER
2464 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2465 L:      linux-media@vger.kernel.org
2466 W:      http://linuxtv.org
2467 T:      git git://linuxtv.org/media_tree.git
2468 S:      Odd fixes
2469 F:      Documentation/video4linux/bttv/
2470 F:      drivers/media/pci/bt8xx/bttv*
2471
2472 BUSLOGIC SCSI DRIVER
2473 M:      Khalid Aziz <khalid@gonehiking.org>
2474 L:      linux-scsi@vger.kernel.org
2475 S:      Maintained
2476 F:      drivers/scsi/BusLogic.*
2477 F:      drivers/scsi/FlashPoint.*
2478
2479 C-MEDIA CMI8788 DRIVER
2480 M:      Clemens Ladisch <clemens@ladisch.de>
2481 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2482 T:      git git://git.alsa-project.org/alsa-kernel.git
2483 S:      Maintained
2484 F:      sound/pci/oxygen/
2485
2486 C6X ARCHITECTURE
2487 M:      Mark Salter <msalter@redhat.com>
2488 M:      Aurelien Jacquiot <a-jacquiot@ti.com>
2489 L:      linux-c6x-dev@linux-c6x.org
2490 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
2491 S:      Maintained
2492 F:      arch/c6x/
2493
2494 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
2495 M:      David Howells <dhowells@redhat.com>
2496 L:      linux-cachefs@redhat.com
2497 S:      Supported
2498 F:      Documentation/filesystems/caching/cachefiles.txt
2499 F:      fs/cachefiles/
2500
2501 CADET FM/AM RADIO RECEIVER DRIVER
2502 M:      Hans Verkuil <hverkuil@xs4all.nl>
2503 L:      linux-media@vger.kernel.org
2504 T:      git git://linuxtv.org/media_tree.git
2505 W:      http://linuxtv.org
2506 S:      Maintained
2507 F:      drivers/media/radio/radio-cadet*
2508
2509 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
2510 M:      Jonathan Corbet <corbet@lwn.net>
2511 L:      linux-media@vger.kernel.org
2512 T:      git git://linuxtv.org/media_tree.git
2513 S:      Maintained
2514 F:      Documentation/video4linux/cafe_ccic
2515 F:      drivers/media/platform/marvell-ccic/
2516
2517 CAIF NETWORK LAYER
2518 M:      Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
2519 L:      netdev@vger.kernel.org
2520 S:      Supported
2521 F:      Documentation/networking/caif/
2522 F:      drivers/net/caif/
2523 F:      include/uapi/linux/caif/
2524 F:      include/net/caif/
2525 F:      net/caif/
2526
2527 CALGARY x86-64 IOMMU
2528 M:      Muli Ben-Yehuda <muli@il.ibm.com>
2529 M:      "Jon D. Mason" <jdmason@kudzu.us>
2530 L:      discuss@x86-64.org
2531 S:      Maintained
2532 F:      arch/x86/kernel/pci-calgary_64.c
2533 F:      arch/x86/kernel/tce_64.c
2534 F:      arch/x86/include/asm/calgary.h
2535 F:      arch/x86/include/asm/tce.h
2536
2537 CAN NETWORK LAYER
2538 M:      Oliver Hartkopp <socketcan@hartkopp.net>
2539 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2540 L:      linux-can@vger.kernel.org
2541 W:      https://github.com/linux-can
2542 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2543 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2544 S:      Maintained
2545 F:      Documentation/networking/can.txt
2546 F:      net/can/
2547 F:      include/linux/can/core.h
2548 F:      include/uapi/linux/can.h
2549 F:      include/uapi/linux/can/bcm.h
2550 F:      include/uapi/linux/can/raw.h
2551 F:      include/uapi/linux/can/gw.h
2552
2553 CAN NETWORK DRIVERS
2554 M:      Wolfgang Grandegger <wg@grandegger.com>
2555 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2556 L:      linux-can@vger.kernel.org
2557 W:      https://github.com/linux-can
2558 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2559 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2560 S:      Maintained
2561 F:      drivers/net/can/
2562 F:      include/linux/can/dev.h
2563 F:      include/linux/can/platform/
2564 F:      include/uapi/linux/can/error.h
2565 F:      include/uapi/linux/can/netlink.h
2566
2567 CAPABILITIES
2568 M:      Serge Hallyn <serge.hallyn@canonical.com>
2569 L:      linux-security-module@vger.kernel.org
2570 S:      Supported
2571 F:      include/linux/capability.h
2572 F:      include/uapi/linux/capability.h
2573 F:      security/commoncap.c
2574 F:      kernel/capability.c
2575
2576 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
2577 M:      Kevin Tsai <ktsai@capellamicro.com>
2578 S:      Maintained
2579 F:      drivers/iio/light/cm*
2580 F:      Documentation/devicetree/bindings/i2c/trivial-devices.txt
2581
2582 CAVIUM LIQUIDIO NETWORK DRIVER
2583 M:     Derek Chickles <derek.chickles@caviumnetworks.com>
2584 M:     Satanand Burla <satananda.burla@caviumnetworks.com>
2585 M:     Felix Manlunas <felix.manlunas@caviumnetworks.com>
2586 M:     Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com>
2587 L:     netdev@vger.kernel.org
2588 W:     http://www.cavium.com
2589 S:     Supported
2590 F:     drivers/net/ethernet/cavium/liquidio/
2591
2592 CC2520 IEEE-802.15.4 RADIO DRIVER
2593 M:      Varka Bhadram <varkabhadram@gmail.com>
2594 L:      linux-wpan@vger.kernel.org
2595 S:      Maintained
2596 F:      drivers/net/ieee802154/cc2520.c
2597 F:      include/linux/spi/cc2520.h
2598 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
2599
2600 CELL BROADBAND ENGINE ARCHITECTURE
2601 M:      Arnd Bergmann <arnd@arndb.de>
2602 L:      linuxppc-dev@lists.ozlabs.org
2603 W:      http://www.ibm.com/developerworks/power/cell/
2604 S:      Supported
2605 F:      arch/powerpc/include/asm/cell*.h
2606 F:      arch/powerpc/include/asm/spu*.h
2607 F:      arch/powerpc/include/uapi/asm/spu*.h
2608 F:      arch/powerpc/oprofile/*cell*
2609 F:      arch/powerpc/platforms/cell/
2610
2611 CEPH COMMON CODE (LIBCEPH)
2612 M:      Ilya Dryomov <idryomov@gmail.com>
2613 M:      "Yan, Zheng" <zyan@redhat.com>
2614 M:      Sage Weil <sage@redhat.com>
2615 L:      ceph-devel@vger.kernel.org
2616 W:      http://ceph.com/
2617 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2618 T:      git git://github.com/ceph/ceph-client.git
2619 S:      Supported
2620 F:      net/ceph/
2621 F:      include/linux/ceph/
2622 F:      include/linux/crush/
2623
2624 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
2625 M:      "Yan, Zheng" <zyan@redhat.com>
2626 M:      Sage Weil <sage@redhat.com>
2627 M:      Ilya Dryomov <idryomov@gmail.com>
2628 L:      ceph-devel@vger.kernel.org
2629 W:      http://ceph.com/
2630 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2631 T:      git git://github.com/ceph/ceph-client.git
2632 S:      Supported
2633 F:      Documentation/filesystems/ceph.txt
2634 F:      fs/ceph/
2635
2636 CERTIFICATE HANDLING:
2637 M:      David Howells <dhowells@redhat.com>
2638 M:      David Woodhouse <dwmw2@infradead.org>
2639 L:      keyrings@linux-nfs.org
2640 S:      Maintained
2641 F:      Documentation/module-signing.txt
2642 F:      certs/
2643 F:      scripts/extract-cert.c
2644
2645 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
2646 L:      linux-usb@vger.kernel.org
2647 S:      Orphan
2648 F:      Documentation/usb/WUSB-Design-overview.txt
2649 F:      Documentation/usb/wusb-cbaf
2650 F:      drivers/usb/host/hwa-hc.c
2651 F:      drivers/usb/host/whci/
2652 F:      drivers/usb/wusbcore/
2653 F:      include/linux/usb/wusb*
2654
2655 CFAG12864B LCD DRIVER
2656 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2657 W:      http://miguelojeda.es/auxdisplay.htm
2658 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2659 S:      Maintained
2660 F:      drivers/auxdisplay/cfag12864b.c
2661 F:      include/linux/cfag12864b.h
2662
2663 CFAG12864BFB LCD FRAMEBUFFER DRIVER
2664 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2665 W:      http://miguelojeda.es/auxdisplay.htm
2666 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2667 S:      Maintained
2668 F:      drivers/auxdisplay/cfag12864bfb.c
2669 F:      include/linux/cfag12864b.h
2670
2671 CFG80211 and NL80211
2672 M:      Johannes Berg <johannes@sipsolutions.net>
2673 L:      linux-wireless@vger.kernel.org
2674 W:      http://wireless.kernel.org/
2675 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2676 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
2677 S:      Maintained
2678 F:      include/uapi/linux/nl80211.h
2679 F:      include/net/cfg80211.h
2680 F:      net/wireless/*
2681 X:      net/wireless/wext*
2682
2683 CHAR and MISC DRIVERS
2684 M:      Arnd Bergmann <arnd@arndb.de>
2685 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2686 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
2687 S:      Supported
2688 F:      drivers/char/*
2689 F:      drivers/misc/*
2690 F:      include/linux/miscdevice.h
2691
2692 CHECKPATCH
2693 M:      Andy Whitcroft <apw@canonical.com>
2694 M:      Joe Perches <joe@perches.com>
2695 S:      Maintained
2696 F:      scripts/checkpatch.pl
2697
2698 CHINESE DOCUMENTATION
2699 M:      Harry Wei <harryxiyou@gmail.com>
2700 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
2701 L:      linux-kernel@zh-kernel.org (moderated for non-subscribers)
2702 S:      Maintained
2703 F:      Documentation/zh_CN/
2704
2705 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
2706 M:      Peter Chen <Peter.Chen@freescale.com>
2707 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
2708 L:      linux-usb@vger.kernel.org
2709 S:      Maintained
2710 F:      drivers/usb/chipidea/
2711
2712 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
2713 M:      Hans de Goede <hdegoede@redhat.com>
2714 L:      linux-input@vger.kernel.org
2715 S:      Maintained
2716 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
2717 F:      drivers/input/touchscreen/chipone_icn8318.c
2718
2719 CHROME HARDWARE PLATFORM SUPPORT
2720 M:      Olof Johansson <olof@lixom.net>
2721 S:      Maintained
2722 F:      drivers/platform/chrome/
2723
2724 CISCO VIC ETHERNET NIC DRIVER
2725 M:      Christian Benvenuti <benve@cisco.com>
2726 M:      Sujith Sankar <ssujith@cisco.com>
2727 M:      Govindarajulu Varadarajan <_govind@gmx.com>
2728 M:      Neel Patel <neepatel@cisco.com>
2729 S:      Supported
2730 F:      drivers/net/ethernet/cisco/enic/
2731
2732 CISCO VIC LOW LATENCY NIC DRIVER
2733 M:      Upinder Malhi <umalhi@cisco.com>
2734 S:      Supported
2735 F:      drivers/infiniband/hw/usnic
2736
2737 CIRRUS LOGIC EP93XX ETHERNET DRIVER
2738 M:      Hartley Sweeten <hsweeten@visionengravers.com>
2739 L:      netdev@vger.kernel.org
2740 S:      Maintained
2741 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
2742
2743 CIRRUS LOGIC AUDIO CODEC DRIVERS
2744 M:      Brian Austin <brian.austin@cirrus.com>
2745 M:      Paul Handrigan <Paul.Handrigan@cirrus.com>
2746 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2747 S:      Maintained
2748 F:      sound/soc/codecs/cs*
2749
2750 CLEANCACHE API
2751 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2752 L:      linux-kernel@vger.kernel.org
2753 S:      Maintained
2754 F:      mm/cleancache.c
2755 F:      include/linux/cleancache.h
2756
2757 CLK API
2758 M:      Russell King <linux@arm.linux.org.uk>
2759 L:      linux-clk@vger.kernel.org
2760 S:      Maintained
2761 F:      include/linux/clk.h
2762
2763 CLOCKSOURCE, CLOCKEVENT DRIVERS
2764 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2765 M:      Thomas Gleixner <tglx@linutronix.de>
2766 L:      linux-kernel@vger.kernel.org
2767 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
2768 S:      Supported
2769 F:      drivers/clocksource
2770
2771 CISCO FCOE HBA DRIVER
2772 M:      Hiral Patel <hiralpat@cisco.com>
2773 M:      Suma Ramars <sramars@cisco.com>
2774 M:      Brian Uchino <buchino@cisco.com>
2775 L:      linux-scsi@vger.kernel.org
2776 S:      Supported
2777 F:      drivers/scsi/fnic/
2778
2779 CISCO SCSI HBA DRIVER
2780 M:      Narsimhulu Musini <nmusini@cisco.com>
2781 M:      Sesidhar Baddela <sebaddel@cisco.com>
2782 L:      linux-scsi@vger.kernel.org
2783 S:      Supported
2784 F:      drivers/scsi/snic/
2785
2786 CMPC ACPI DRIVER
2787 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2788 M:      Daniel Oliveira Nascimento <don@syst.com.br>
2789 L:      platform-driver-x86@vger.kernel.org
2790 S:      Supported
2791 F:      drivers/platform/x86/classmate-laptop.c
2792
2793 COBALT MEDIA DRIVER
2794 M:      Hans Verkuil <hans.verkuil@cisco.com>
2795 L:      linux-media@vger.kernel.org
2796 T:      git git://linuxtv.org/media_tree.git
2797 W:      http://linuxtv.org
2798 S:      Supported
2799 F:      drivers/media/pci/cobalt/
2800
2801 COCCINELLE/Semantic Patches (SmPL)
2802 M:      Julia Lawall <Julia.Lawall@lip6.fr>
2803 M:      Gilles Muller <Gilles.Muller@lip6.fr>
2804 M:      Nicolas Palix <nicolas.palix@imag.fr>
2805 M:      Michal Marek <mmarek@suse.com>
2806 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
2807 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
2808 W:      http://coccinelle.lip6.fr/
2809 S:      Supported
2810 F:      Documentation/coccinelle.txt
2811 F:      scripts/coccinelle/
2812 F:      scripts/coccicheck
2813
2814 CODA FILE SYSTEM
2815 M:      Jan Harkes <jaharkes@cs.cmu.edu>
2816 M:      coda@cs.cmu.edu
2817 L:      codalist@coda.cs.cmu.edu
2818 W:      http://www.coda.cs.cmu.edu/
2819 S:      Maintained
2820 F:      Documentation/filesystems/coda.txt
2821 F:      fs/coda/
2822 F:      include/linux/coda*.h
2823 F:      include/uapi/linux/coda*.h
2824
2825 CODA V4L2 MEM2MEM DRIVER
2826 M:      Philipp Zabel <p.zabel@pengutronix.de>
2827 L:      linux-media@vger.kernel.org
2828 S:      Maintained
2829 F:      Documentation/devicetree/bindings/media/coda.txt
2830 F:      drivers/media/platform/coda/
2831
2832 COMMON CLK FRAMEWORK
2833 M:      Michael Turquette <mturquette@baylibre.com>
2834 M:      Stephen Boyd <sboyd@codeaurora.org>
2835 L:      linux-clk@vger.kernel.org
2836 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
2837 S:      Maintained
2838 F:      drivers/clk/
2839 X:      drivers/clk/clkdev.c
2840 F:      include/linux/clk-pr*
2841 F:      include/linux/clk/
2842
2843 COMMON INTERNET FILE SYSTEM (CIFS)
2844 M:      Steve French <sfrench@samba.org>
2845 L:      linux-cifs@vger.kernel.org
2846 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
2847 W:      http://linux-cifs.samba.org/
2848 T:      git git://git.samba.org/sfrench/cifs-2.6.git
2849 S:      Supported
2850 F:      Documentation/filesystems/cifs/
2851 F:      fs/cifs/
2852
2853 COMPACTPCI HOTPLUG CORE
2854 M:      Scott Murray <scott@spiteful.org>
2855 L:      linux-pci@vger.kernel.org
2856 S:      Maintained
2857 F:      drivers/pci/hotplug/cpci_hotplug*
2858
2859 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
2860 M:      Scott Murray <scott@spiteful.org>
2861 L:      linux-pci@vger.kernel.org
2862 S:      Maintained
2863 F:      drivers/pci/hotplug/cpcihp_zt5550.*
2864
2865 COMPACTPCI HOTPLUG GENERIC DRIVER
2866 M:      Scott Murray <scott@spiteful.org>
2867 L:      linux-pci@vger.kernel.org
2868 S:      Maintained
2869 F:      drivers/pci/hotplug/cpcihp_generic.c
2870
2871 COMPAL LAPTOP SUPPORT
2872 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
2873 L:      platform-driver-x86@vger.kernel.org
2874 S:      Maintained
2875 F:      drivers/platform/x86/compal-laptop.c
2876
2877 CONEXANT ACCESSRUNNER USB DRIVER
2878 M:      Simon Arlott <cxacru@fire.lp0.eu>
2879 L:      accessrunner-general@lists.sourceforge.net
2880 W:      http://accessrunner.sourceforge.net/
2881 S:      Maintained
2882 F:      drivers/usb/atm/cxacru.c
2883
2884 CONFIGFS
2885 M:      Joel Becker <jlbec@evilplan.org>
2886 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
2887 S:      Supported
2888 F:      fs/configfs/
2889 F:      include/linux/configfs.h
2890
2891 CONNECTOR
2892 M:      Evgeniy Polyakov <zbr@ioremap.net>
2893 L:      netdev@vger.kernel.org
2894 S:      Maintained
2895 F:      drivers/connector/
2896
2897 CONTROL GROUP (CGROUP)
2898 M:      Tejun Heo <tj@kernel.org>
2899 M:      Li Zefan <lizefan@huawei.com>
2900 M:      Johannes Weiner <hannes@cmpxchg.org>
2901 L:      cgroups@vger.kernel.org
2902 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
2903 S:      Maintained
2904 F:      Documentation/cgroups/
2905 F:      include/linux/cgroup*
2906 F:      kernel/cgroup*
2907
2908 CONTROL GROUP - CPUSET
2909 M:      Li Zefan <lizefan@huawei.com>
2910 L:      cgroups@vger.kernel.org
2911 W:      http://www.bullopensource.org/cpuset/
2912 W:      http://oss.sgi.com/projects/cpusets/
2913 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
2914 S:      Maintained
2915 F:      Documentation/cgroups/cpusets.txt
2916 F:      include/linux/cpuset.h
2917 F:      kernel/cpuset.c
2918
2919 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
2920 M:      Johannes Weiner <hannes@cmpxchg.org>
2921 M:      Michal Hocko <mhocko@kernel.org>
2922 L:      cgroups@vger.kernel.org
2923 L:      linux-mm@kvack.org
2924 S:      Maintained
2925 F:      mm/memcontrol.c
2926 F:      mm/swap_cgroup.c
2927
2928 CORETEMP HARDWARE MONITORING DRIVER
2929 M:      Fenghua Yu <fenghua.yu@intel.com>
2930 L:      lm-sensors@lm-sensors.org
2931 S:      Maintained
2932 F:      Documentation/hwmon/coretemp
2933 F:      drivers/hwmon/coretemp.c
2934
2935 COSA/SRP SYNC SERIAL DRIVER
2936 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
2937 W:      http://www.fi.muni.cz/~kas/cosa/
2938 S:      Maintained
2939 F:      drivers/net/wan/cosa*
2940
2941 CPMAC ETHERNET DRIVER
2942 M:      Florian Fainelli <florian@openwrt.org>
2943 L:      netdev@vger.kernel.org
2944 S:      Maintained
2945 F:      drivers/net/ethernet/ti/cpmac.c
2946
2947 CPU FREQUENCY DRIVERS
2948 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
2949 M:      Viresh Kumar <viresh.kumar@linaro.org>
2950 L:      linux-pm@vger.kernel.org
2951 S:      Maintained
2952 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2953 T:      git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
2954 F:      drivers/cpufreq/
2955 F:      include/linux/cpufreq.h
2956
2957 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
2958 M:      Viresh Kumar <viresh.kumar@linaro.org>
2959 M:      Sudeep Holla <sudeep.holla@arm.com>
2960 L:      linux-pm@vger.kernel.org
2961 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
2962 S:      Maintained
2963 F:      drivers/cpufreq/arm_big_little.h
2964 F:      drivers/cpufreq/arm_big_little.c
2965 F:      drivers/cpufreq/arm_big_little_dt.c
2966
2967 CPUIDLE DRIVER - ARM BIG LITTLE
2968 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2969 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2970 L:      linux-pm@vger.kernel.org
2971 L:      linux-arm-kernel@lists.infradead.org
2972 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2973 S:      Maintained
2974 F:      drivers/cpuidle/cpuidle-big_little.c
2975
2976 CPUIDLE DRIVER - ARM EXYNOS
2977 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
2978 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2979 M:      Kukjin Kim <kgene@kernel.org>
2980 L:      linux-pm@vger.kernel.org
2981 L:      linux-samsung-soc@vger.kernel.org
2982 S:      Supported
2983 F:      drivers/cpuidle/cpuidle-exynos.c
2984 F:      arch/arm/mach-exynos/pm.c
2985
2986 CPUIDLE DRIVERS
2987 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
2988 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2989 L:      linux-pm@vger.kernel.org
2990 S:      Maintained
2991 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2992 F:      drivers/cpuidle/*
2993 F:      include/linux/cpuidle.h
2994
2995 CPUID/MSR DRIVER
2996 M:      "H. Peter Anvin" <hpa@zytor.com>
2997 S:      Maintained
2998 F:      arch/x86/kernel/cpuid.c
2999 F:      arch/x86/kernel/msr.c
3000
3001 CPU POWER MONITORING SUBSYSTEM
3002 M:      Thomas Renninger <trenn@suse.com>
3003 L:      linux-pm@vger.kernel.org
3004 S:      Maintained
3005 F:      tools/power/cpupower/
3006
3007 CRAMFS FILESYSTEM
3008 W:      http://sourceforge.net/projects/cramfs/
3009 S:      Orphan / Obsolete
3010 F:      Documentation/filesystems/cramfs.txt
3011 F:      fs/cramfs/
3012
3013 CRIS PORT
3014 M:      Mikael Starvik <starvik@axis.com>
3015 M:      Jesper Nilsson <jesper.nilsson@axis.com>
3016 L:      linux-cris-kernel@axis.com
3017 W:      http://developer.axis.com
3018 S:      Maintained
3019 F:      arch/cris/
3020 F:      drivers/tty/serial/crisv10.*
3021
3022 CRYPTO API
3023 M:      Herbert Xu <herbert@gondor.apana.org.au>
3024 M:      "David S. Miller" <davem@davemloft.net>
3025 L:      linux-crypto@vger.kernel.org
3026 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
3027 S:      Maintained
3028 F:      Documentation/crypto/
3029 F:      Documentation/DocBook/crypto-API.tmpl
3030 F:      arch/*/crypto/
3031 F:      crypto/
3032 F:      drivers/crypto/
3033 F:      include/crypto/
3034
3035 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
3036 M:      Neil Horman <nhorman@tuxdriver.com>
3037 L:      linux-crypto@vger.kernel.org
3038 S:      Maintained
3039 F:      crypto/ansi_cprng.c
3040 F:      crypto/rng.c
3041
3042 CS5535 Audio ALSA driver
3043 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
3044 S:      Maintained
3045 F:      sound/pci/cs5535audio/
3046
3047 CW1200 WLAN driver
3048 M:      Solomon Peachy <pizza@shaftnet.org>
3049 S:      Maintained
3050 F:      drivers/net/wireless/cw1200/
3051
3052 CX18 VIDEO4LINUX DRIVER
3053 M:      Andy Walls <awalls@md.metrocast.net>
3054 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
3055 L:      linux-media@vger.kernel.org
3056 T:      git git://linuxtv.org/media_tree.git
3057 W:      http://linuxtv.org
3058 W:      http://www.ivtvdriver.org/index.php/Cx18
3059 S:      Maintained
3060 F:      Documentation/video4linux/cx18.txt
3061 F:      drivers/media/pci/cx18/
3062 F:      include/uapi/linux/ivtv*
3063
3064 CX2341X MPEG ENCODER HELPER MODULE
3065 M:      Hans Verkuil <hverkuil@xs4all.nl>
3066 L:      linux-media@vger.kernel.org
3067 T:      git git://linuxtv.org/media_tree.git
3068 W:      http://linuxtv.org
3069 S:      Maintained
3070 F:      drivers/media/common/cx2341x*
3071 F:      include/media/cx2341x*
3072
3073 CX24120 MEDIA DRIVER
3074 M:      Jemma Denson <jdenson@gmail.com>
3075 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
3076 L:      linux-media@vger.kernel.org
3077 W:      http://linuxtv.org/
3078 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3079 S:      Maintained
3080 F:      drivers/media/dvb-frontends/cx24120*
3081
3082 CX88 VIDEO4LINUX DRIVER
3083 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3084 L:      linux-media@vger.kernel.org
3085 W:      http://linuxtv.org
3086 T:      git git://linuxtv.org/media_tree.git
3087 S:      Odd fixes
3088 F:      Documentation/video4linux/cx88/
3089 F:      drivers/media/pci/cx88/
3090
3091 CXD2820R MEDIA DRIVER
3092 M:      Antti Palosaari <crope@iki.fi>
3093 L:      linux-media@vger.kernel.org
3094 W:      http://linuxtv.org/
3095 W:      http://palosaari.fi/linux/
3096 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3097 T:      git git://linuxtv.org/anttip/media_tree.git
3098 S:      Maintained
3099 F:      drivers/media/dvb-frontends/cxd2820r*
3100
3101 CXGB3 ETHERNET DRIVER (CXGB3)
3102 M:      Santosh Raspatur <santosh@chelsio.com>
3103 L:      netdev@vger.kernel.org
3104 W:      http://www.chelsio.com
3105 S:      Supported
3106 F:      drivers/net/ethernet/chelsio/cxgb3/
3107
3108 CXGB3 ISCSI DRIVER (CXGB3I)
3109 M:      Karen Xie <kxie@chelsio.com>
3110 L:      linux-scsi@vger.kernel.org
3111 W:      http://www.chelsio.com
3112 S:      Supported
3113 F:      drivers/scsi/cxgbi/cxgb3i
3114
3115 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
3116 M:      Steve Wise <swise@chelsio.com>
3117 L:      linux-rdma@vger.kernel.org
3118 W:      http://www.openfabrics.org
3119 S:      Supported
3120 F:      drivers/infiniband/hw/cxgb3/
3121
3122 CXGB4 ETHERNET DRIVER (CXGB4)
3123 M:      Hariprasad S <hariprasad@chelsio.com>
3124 L:      netdev@vger.kernel.org
3125 W:      http://www.chelsio.com
3126 S:      Supported
3127 F:      drivers/net/ethernet/chelsio/cxgb4/
3128
3129 CXGB4 ISCSI DRIVER (CXGB4I)
3130 M:      Karen Xie <kxie@chelsio.com>
3131 L:      linux-scsi@vger.kernel.org
3132 W:      http://www.chelsio.com
3133 S:      Supported
3134 F:      drivers/scsi/cxgbi/cxgb4i
3135
3136 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
3137 M:      Steve Wise <swise@chelsio.com>
3138 L:      linux-rdma@vger.kernel.org
3139 W:      http://www.openfabrics.org
3140 S:      Supported
3141 F:      drivers/infiniband/hw/cxgb4/
3142
3143 CXGB4VF ETHERNET DRIVER (CXGB4VF)
3144 M:      Casey Leedom <leedom@chelsio.com>
3145 L:      netdev@vger.kernel.org
3146 W:      http://www.chelsio.com
3147 S:      Supported
3148 F:      drivers/net/ethernet/chelsio/cxgb4vf/
3149
3150 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
3151 M:      Ian Munsie <imunsie@au1.ibm.com>
3152 M:      Michael Neuling <mikey@neuling.org>
3153 L:      linuxppc-dev@lists.ozlabs.org
3154 S:      Supported
3155 F:      drivers/misc/cxl/
3156 F:      include/misc/cxl*
3157 F:      include/uapi/misc/cxl.h
3158 F:      Documentation/powerpc/cxl.txt
3159 F:      Documentation/powerpc/cxl.txt
3160 F:      Documentation/ABI/testing/sysfs-class-cxl
3161
3162 STMMAC ETHERNET DRIVER
3163 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
3164 L:      netdev@vger.kernel.org
3165 W:      http://www.stlinux.com
3166 S:      Supported
3167 F:      drivers/net/ethernet/stmicro/stmmac/
3168
3169 CYBERPRO FB DRIVER
3170 M:      Russell King <linux@arm.linux.org.uk>
3171 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3172 W:      http://www.arm.linux.org.uk/
3173 S:      Maintained
3174 F:      drivers/video/fbdev/cyber2000fb.*
3175
3176 CYCLADES ASYNC MUX DRIVER
3177 W:      http://www.cyclades.com/
3178 S:      Orphan
3179 F:      drivers/tty/cyclades.c
3180 F:      include/linux/cyclades.h
3181 F:      include/uapi/linux/cyclades.h
3182
3183 CYCLADES PC300 DRIVER
3184 W:      http://www.cyclades.com/
3185 S:      Orphan
3186 F:      drivers/net/wan/pc300*
3187
3188 CYPRESS_FIRMWARE MEDIA DRIVER
3189 M:      Antti Palosaari <crope@iki.fi>
3190 L:      linux-media@vger.kernel.org
3191 W:      http://linuxtv.org/
3192 W:      http://palosaari.fi/linux/
3193 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3194 T:      git git://linuxtv.org/anttip/media_tree.git
3195 S:      Maintained
3196 F:      drivers/media/common/cypress_firmware*
3197
3198 CYTTSP TOUCHSCREEN DRIVER
3199 M:      Ferruh Yigit <fery@cypress.com>
3200 L:      linux-input@vger.kernel.org
3201 S:      Supported
3202 F:      drivers/input/touchscreen/cyttsp*
3203 F:      include/linux/input/cyttsp.h
3204
3205 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
3206 M:      Joshua Kinard <kumba@gentoo.org>
3207 S:      Maintained
3208 F:      drivers/rtc/rtc-ds1685.c
3209 F:      include/linux/rtc/ds1685.h
3210
3211 DAMA SLAVE for AX.25
3212 M:      Joerg Reuter <jreuter@yaina.de>
3213 W:      http://yaina.de/jreuter/
3214 W:      http://www.qsl.net/dl1bke/
3215 L:      linux-hams@vger.kernel.org
3216 S:      Maintained
3217 F:      net/ax25/af_ax25.c
3218 F:      net/ax25/ax25_dev.c
3219 F:      net/ax25/ax25_ds_*
3220 F:      net/ax25/ax25_in.c
3221 F:      net/ax25/ax25_out.c
3222 F:      net/ax25/ax25_timer.c
3223 F:      net/ax25/sysctl_net_ax25.c
3224
3225 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
3226 L:      netdev@vger.kernel.org
3227 S:      Orphan
3228 F:      Documentation/networking/dmfe.txt
3229 F:      drivers/net/ethernet/dec/tulip/dmfe.c
3230
3231 DC390/AM53C974 SCSI driver
3232 M:      Hannes Reinecke <hare@suse.com>
3233 L:      linux-scsi@vger.kernel.org
3234 S:      Maintained
3235 F:      drivers/scsi/am53c974.c
3236
3237 DC395x SCSI driver
3238 M:      Oliver Neukum <oliver@neukum.org>
3239 M:      Ali Akcaagac <aliakc@web.de>
3240 M:      Jamie Lenehan <lenehan@twibble.org>
3241 L:      dc395x@twibble.org
3242 W:      http://twibble.org/dist/dc395x/
3243 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
3244 S:      Maintained
3245 F:      Documentation/scsi/dc395x.txt
3246 F:      drivers/scsi/dc395x.*
3247
3248 DCCP PROTOCOL
3249 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
3250 L:      dccp@vger.kernel.org
3251 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
3252 S:      Maintained
3253 F:      include/linux/dccp.h
3254 F:      include/uapi/linux/dccp.h
3255 F:      include/linux/tfrc.h
3256 F:      net/dccp/
3257
3258 DECnet NETWORK LAYER
3259 W:      http://linux-decnet.sourceforge.net
3260 L:      linux-decnet-user@lists.sourceforge.net
3261 S:      Orphan
3262 F:      Documentation/networking/decnet.txt
3263 F:      net/decnet/
3264
3265 DECSTATION PLATFORM SUPPORT
3266 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3267 L:      linux-mips@linux-mips.org
3268 W:      http://www.linux-mips.org/wiki/DECstation
3269 S:      Maintained
3270 F:      arch/mips/dec/
3271 F:      arch/mips/include/asm/dec/
3272 F:      arch/mips/include/asm/mach-dec/
3273
3274 DEFXX FDDI NETWORK DRIVER
3275 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3276 S:      Maintained
3277 F:      drivers/net/fddi/defxx.*
3278
3279 DELL LAPTOP DRIVER
3280 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3281 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3282 L:      platform-driver-x86@vger.kernel.org
3283 S:      Maintained
3284 F:      drivers/platform/x86/dell-laptop.c
3285
3286 DELL LAPTOP RBTN DRIVER
3287 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3288 S:      Maintained
3289 F:      drivers/platform/x86/dell-rbtn.*
3290
3291 DELL LAPTOP FREEFALL DRIVER
3292 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3293 S:      Maintained
3294 F:      drivers/platform/x86/dell-smo8800.c
3295
3296 DELL LAPTOP SMM DRIVER
3297 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3298 S:      Maintained
3299 F:      drivers/hwmon/dell-smm-hwmon.c
3300 F:      include/uapi/linux/i8k.h
3301
3302 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
3303 M:      Doug Warzecha <Douglas_Warzecha@dell.com>
3304 S:      Maintained
3305 F:      Documentation/dcdbas.txt
3306 F:      drivers/firmware/dcdbas.*
3307
3308 DELL WMI EXTRAS DRIVER
3309 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3310 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3311 S:      Maintained
3312 F:      drivers/platform/x86/dell-wmi.c
3313
3314 DESIGNWARE USB2 DRD IP DRIVER
3315 M:      John Youn <johnyoun@synopsys.com>
3316 L:      linux-usb@vger.kernel.org
3317 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3318 S:      Maintained
3319 F:      drivers/usb/dwc2/
3320
3321 DESIGNWARE USB3 DRD IP DRIVER
3322 M:      Felipe Balbi <balbi@ti.com>
3323 L:      linux-usb@vger.kernel.org
3324 L:      linux-omap@vger.kernel.org
3325 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3326 S:      Maintained
3327 F:      drivers/usb/dwc3/
3328
3329 DEVICE COREDUMP (DEV_COREDUMP)
3330 M:      Johannes Berg <johannes@sipsolutions.net>
3331 L:      linux-kernel@vger.kernel.org
3332 S:      Maintained
3333 F:      drivers/base/devcoredump.c
3334 F:      include/linux/devcoredump.h
3335
3336 DEVICE FREQUENCY (DEVFREQ)
3337 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
3338 M:      Kyungmin Park <kyungmin.park@samsung.com>
3339 L:      linux-pm@vger.kernel.org
3340 S:      Maintained
3341 F:      drivers/devfreq/
3342
3343 DEVICE NUMBER REGISTRY
3344 M:      Torben Mathiasen <device@lanana.org>
3345 W:      http://lanana.org/docs/device-list/index.html
3346 S:      Maintained
3347
3348 DEVICE-MAPPER  (LVM)
3349 M:      Alasdair Kergon <agk@redhat.com>
3350 M:      Mike Snitzer <snitzer@redhat.com>
3351 M:      dm-devel@redhat.com
3352 L:      dm-devel@redhat.com
3353 W:      http://sources.redhat.com/dm
3354 Q:      http://patchwork.kernel.org/project/dm-devel/list/
3355 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
3356 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
3357 S:      Maintained
3358 F:      Documentation/device-mapper/
3359 F:      drivers/md/dm*
3360 F:      drivers/md/persistent-data/
3361 F:      include/linux/device-mapper.h
3362 F:      include/linux/dm-*.h
3363 F:      include/uapi/linux/dm-*.h
3364
3365 DIALOG SEMICONDUCTOR DRIVERS
3366 M:      Support Opensource <support.opensource@diasemi.com>
3367 W:      http://www.dialog-semiconductor.com/products
3368 S:      Supported
3369 F:      Documentation/hwmon/da90??
3370 F:      drivers/gpio/gpio-da90??.c
3371 F:      drivers/hwmon/da90??-hwmon.c
3372 F:      drivers/iio/adc/da91??-*.c
3373 F:      drivers/input/misc/da90??_onkey.c
3374 F:      drivers/input/touchscreen/da9052_tsi.c
3375 F:      drivers/leds/leds-da90??.c
3376 F:      drivers/mfd/da903x.c
3377 F:      drivers/mfd/da90??-*.c
3378 F:      drivers/mfd/da91??-*.c
3379 F:      drivers/power/da9052-battery.c
3380 F:      drivers/power/da91??-*.c
3381 F:      drivers/regulator/da903x.c
3382 F:      drivers/regulator/da9???-regulator.[ch]
3383 F:      drivers/rtc/rtc-da90??.c
3384 F:      drivers/video/backlight/da90??_bl.c
3385 F:      drivers/watchdog/da90??_wdt.c
3386 F:      include/linux/mfd/da903x.h
3387 F:      include/linux/mfd/da9052/
3388 F:      include/linux/mfd/da9055/
3389 F:      include/linux/mfd/da9063/
3390 F:      include/linux/mfd/da9150/
3391 F:      include/sound/da[79]*.h
3392 F:      sound/soc/codecs/da[79]*.[ch]
3393
3394 DIGI NEO AND CLASSIC PCI PRODUCTS
3395 M:      Lidza Louina <lidza.louina@gmail.com>
3396 M:      Mark Hounschell <markh@compro.net>
3397 L:      driverdev-devel@linuxdriverproject.org
3398 S:      Maintained
3399 F:      drivers/staging/dgnc/
3400
3401 DIGI EPCA PCI PRODUCTS
3402 M:      Lidza Louina <lidza.louina@gmail.com>
3403 M:      Daeseok Youn <daeseok.youn@gmail.com>
3404 L:      driverdev-devel@linuxdriverproject.org
3405 S:      Maintained
3406 F:      drivers/staging/dgap/
3407
3408 DIOLAN U2C-12 I2C DRIVER
3409 M:      Guenter Roeck <linux@roeck-us.net>
3410 L:      linux-i2c@vger.kernel.org
3411 S:      Maintained
3412 F:      drivers/i2c/busses/i2c-diolan-u2c.c
3413
3414 DIRECT ACCESS (DAX)
3415 M:      Matthew Wilcox <willy@linux.intel.com>
3416 L:      linux-fsdevel@vger.kernel.org
3417 S:      Supported
3418 F:      fs/dax.c
3419
3420 DIRECTORY NOTIFICATION (DNOTIFY)
3421 M:      Eric Paris <eparis@parisplace.org>
3422 S:      Maintained
3423 F:      Documentation/filesystems/dnotify.txt
3424 F:      fs/notify/dnotify/
3425 F:      include/linux/dnotify.h
3426
3427 DISK GEOMETRY AND PARTITION HANDLING
3428 M:      Andries Brouwer <aeb@cwi.nl>
3429 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
3430 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
3431 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
3432 S:      Maintained
3433
3434 DISKQUOTA
3435 M:      Jan Kara <jack@suse.com>
3436 S:      Maintained
3437 F:      Documentation/filesystems/quota.txt
3438 F:      fs/quota/
3439 F:      include/linux/quota*.h
3440 F:      include/uapi/linux/quota*.h
3441
3442 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
3443 M:      Bernie Thompson <bernie@plugable.com>
3444 L:      linux-fbdev@vger.kernel.org
3445 S:      Maintained
3446 W:      http://plugable.com/category/projects/udlfb/
3447 F:      drivers/video/fbdev/udlfb.c
3448 F:      include/video/udlfb.h
3449 F:      Documentation/fb/udlfb.txt
3450
3451 DISTRIBUTED LOCK MANAGER (DLM)
3452 M:      Christine Caulfield <ccaulfie@redhat.com>
3453 M:      David Teigland <teigland@redhat.com>
3454 L:      cluster-devel@redhat.com
3455 W:      http://sources.redhat.com/cluster/
3456 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
3457 S:      Supported
3458 F:      fs/dlm/
3459
3460 DMA BUFFER SHARING FRAMEWORK
3461 M:      Sumit Semwal <sumit.semwal@linaro.org>
3462 S:      Maintained
3463 L:      linux-media@vger.kernel.org
3464 L:      dri-devel@lists.freedesktop.org
3465 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
3466 F:      drivers/dma-buf/
3467 F:      include/linux/dma-buf*
3468 F:      include/linux/reservation.h
3469 F:      include/linux/*fence.h
3470 F:      Documentation/dma-buf-sharing.txt
3471 T:      git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
3472
3473 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
3474 M:      Vinod Koul <vinod.koul@intel.com>
3475 L:      dmaengine@vger.kernel.org
3476 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
3477 S:      Maintained
3478 F:      drivers/dma/
3479 F:      include/linux/dmaengine.h
3480 F:      Documentation/dmaengine/
3481 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
3482
3483 DME1737 HARDWARE MONITOR DRIVER
3484 M:      Juerg Haefliger <juergh@gmail.com>
3485 L:      lm-sensors@lm-sensors.org
3486 S:      Maintained
3487 F:      Documentation/hwmon/dme1737
3488 F:      drivers/hwmon/dme1737.c
3489
3490 DMI/SMBIOS SUPPORT
3491 M:      Jean Delvare <jdelvare@suse.com>
3492 S:      Maintained
3493 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
3494 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
3495 F:      drivers/firmware/dmi-id.c
3496 F:      drivers/firmware/dmi_scan.c
3497 F:      include/linux/dmi.h
3498
3499 DOCUMENTATION
3500 M:      Jonathan Corbet <corbet@lwn.net>
3501 L:      linux-doc@vger.kernel.org
3502 S:      Maintained
3503 F:      Documentation/
3504 F:      scripts/docproc.c
3505 F:      scripts/kernel-doc*
3506 X:      Documentation/ABI/
3507 X:      Documentation/devicetree/
3508 X:      Documentation/acpi
3509 X:      Documentation/power
3510 X:      Documentation/spi
3511 X:      Documentation/DocBook/media
3512 T:      git git://git.lwn.net/linux.git docs-next
3513
3514 DOUBLETALK DRIVER
3515 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
3516 L:      blinux-list@redhat.com
3517 S:      Maintained
3518 F:      drivers/char/dtlk.c
3519 F:      include/linux/dtlk.h
3520
3521 DPT_I2O SCSI RAID DRIVER
3522 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
3523 L:      linux-scsi@vger.kernel.org
3524 W:      http://www.adaptec.com/
3525 S:      Maintained
3526 F:      drivers/scsi/dpt*
3527 F:      drivers/scsi/dpt/
3528
3529 DRBD DRIVER
3530 P:      Philipp Reisner
3531 P:      Lars Ellenberg
3532 M:      drbd-dev@lists.linbit.com
3533 L:      drbd-user@lists.linbit.com
3534 W:      http://www.drbd.org
3535 T:      git git://git.drbd.org/linux-2.6-drbd.git drbd
3536 T:      git git://git.drbd.org/drbd-8.3.git
3537 S:      Supported
3538 F:      drivers/block/drbd/
3539 F:      lib/lru_cache.c
3540 F:      Documentation/blockdev/drbd/
3541
3542 DRIVER CORE, KOBJECTS, DEBUGFS, KERNFS AND SYSFS
3543 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3544 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
3545 S:      Supported
3546 F:      Documentation/kobject.txt
3547 F:      drivers/base/
3548 F:      fs/debugfs/
3549 F:      fs/kernfs/
3550 F:      fs/sysfs/
3551 F:      include/linux/debugfs.h
3552 F:      include/linux/kobj*
3553 F:      lib/kobj*
3554
3555 DRM DRIVERS
3556 M:      David Airlie <airlied@linux.ie>
3557 L:      dri-devel@lists.freedesktop.org
3558 T:      git git://people.freedesktop.org/~airlied/linux
3559 S:      Maintained
3560 F:      drivers/gpu/drm/
3561 F:      drivers/gpu/vga/
3562 F:      include/drm/
3563 F:      include/uapi/drm/
3564
3565 RADEON DRM DRIVERS
3566 M:      Alex Deucher <alexander.deucher@amd.com>
3567 M:      Christian König <christian.koenig@amd.com>
3568 L:      dri-devel@lists.freedesktop.org
3569 T:      git git://people.freedesktop.org/~agd5f/linux
3570 S:      Supported
3571 F:      drivers/gpu/drm/radeon/
3572 F:      include/uapi/drm/radeon*
3573
3574 DRM PANEL DRIVERS
3575 M:      Thierry Reding <thierry.reding@gmail.com>
3576 L:      dri-devel@lists.freedesktop.org
3577 T:      git git://anongit.freedesktop.org/tegra/linux.git
3578 S:      Maintained
3579 F:      drivers/gpu/drm/drm_panel.c
3580 F:      drivers/gpu/drm/panel/
3581 F:      include/drm/drm_panel.h
3582 F:      Documentation/devicetree/bindings/panel/
3583
3584 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
3585 M:      Daniel Vetter <daniel.vetter@intel.com>
3586 M:      Jani Nikula <jani.nikula@linux.intel.com>
3587 L:      intel-gfx@lists.freedesktop.org
3588 L:      dri-devel@lists.freedesktop.org
3589 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
3590 T:      git git://anongit.freedesktop.org/drm-intel
3591 S:      Supported
3592 F:      drivers/gpu/drm/i915/
3593 F:      include/drm/i915*
3594 F:      include/uapi/drm/i915*
3595
3596 DRM DRIVERS FOR EXYNOS
3597 M:      Inki Dae <inki.dae@samsung.com>
3598 M:      Joonyoung Shim <jy0922.shim@samsung.com>
3599 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
3600 M:      Kyungmin Park <kyungmin.park@samsung.com>
3601 L:      dri-devel@lists.freedesktop.org
3602 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
3603 S:      Supported
3604 F:      drivers/gpu/drm/exynos/
3605 F:      include/drm/exynos*
3606 F:      include/uapi/drm/exynos*
3607
3608 DRM DRIVERS FOR FREESCALE DCU
3609 M:      Jianwei Wang <jianwei.wang.chn@gmail.com>
3610 M:      Alison Wang <alison.wang@freescale.com>
3611 L:      dri-devel@lists.freedesktop.org
3612 S:      Supported
3613 F:      drivers/gpu/drm/fsl-dcu/
3614 F:      Documentation/devicetree/bindings/video/fsl,dcu.txt
3615 F:      Documentation/devicetree/bindings/panel/nec,nl4827hc19_05b.txt
3616
3617 DRM DRIVERS FOR FREESCALE IMX
3618 M:      Philipp Zabel <p.zabel@pengutronix.de>
3619 L:      dri-devel@lists.freedesktop.org
3620 S:      Maintained
3621 F:      drivers/gpu/drm/imx/
3622 F:      Documentation/devicetree/bindings/drm/imx/
3623
3624 DRM DRIVERS FOR NVIDIA TEGRA
3625 M:      Thierry Reding <thierry.reding@gmail.com>
3626 M:      Terje Bergström <tbergstrom@nvidia.com>
3627 L:      dri-devel@lists.freedesktop.org
3628 L:      linux-tegra@vger.kernel.org
3629 T:      git git://anongit.freedesktop.org/tegra/linux.git
3630 S:      Supported
3631 F:      drivers/gpu/drm/tegra/
3632 F:      drivers/gpu/host1x/
3633 F:      include/linux/host1x.h
3634 F:      include/uapi/drm/tegra_drm.h
3635 F:      Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt
3636
3637 DRM DRIVERS FOR RENESAS
3638 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
3639 L:      dri-devel@lists.freedesktop.org
3640 L:      linux-sh@vger.kernel.org
3641 T:      git git://people.freedesktop.org/~airlied/linux
3642 S:      Supported
3643 F:      drivers/gpu/drm/rcar-du/
3644 F:      drivers/gpu/drm/shmobile/
3645 F:      include/linux/platform_data/shmob_drm.h
3646
3647 DRM DRIVERS FOR ROCKCHIP
3648 M:      Mark Yao <mark.yao@rock-chips.com>
3649 L:      dri-devel@lists.freedesktop.org
3650 S:      Maintained
3651 F:      drivers/gpu/drm/rockchip/
3652 F:      Documentation/devicetree/bindings/video/rockchip*
3653
3654 DRM DRIVERS FOR STI
3655 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
3656 M:      Vincent Abriou <vincent.abriou@st.com>
3657 L:      dri-devel@lists.freedesktop.org
3658 T:      git http://git.linaro.org/people/benjamin.gaignard/kernel.git
3659 S:      Maintained
3660 F:      drivers/gpu/drm/sti
3661 F:      Documentation/devicetree/bindings/gpu/st,stih4xx.txt
3662
3663 DSBR100 USB FM RADIO DRIVER
3664 M:      Alexey Klimov <klimov.linux@gmail.com>
3665 L:      linux-media@vger.kernel.org
3666 T:      git git://linuxtv.org/media_tree.git
3667 S:      Maintained
3668 F:      drivers/media/radio/dsbr100.c
3669
3670 DSCC4 DRIVER
3671 M:      Francois Romieu <romieu@fr.zoreil.com>
3672 L:      netdev@vger.kernel.org
3673 S:      Maintained
3674 F:      drivers/net/wan/dscc4.c
3675
3676 DT3155 MEDIA DRIVER
3677 M:      Hans Verkuil <hverkuil@xs4all.nl>
3678 L:      linux-media@vger.kernel.org
3679 T:      git git://linuxtv.org/media_tree.git
3680 W:      http://linuxtv.org
3681 S:      Odd Fixes
3682 F:      drivers/media/pci/dt3155/
3683
3684 DVB_USB_AF9015 MEDIA DRIVER
3685 M:      Antti Palosaari <crope@iki.fi>
3686 L:      linux-media@vger.kernel.org
3687 W:      http://linuxtv.org/
3688 W:      http://palosaari.fi/linux/
3689 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3690 T:      git git://linuxtv.org/anttip/media_tree.git
3691 S:      Maintained
3692 F:      drivers/media/usb/dvb-usb-v2/af9015*
3693
3694 DVB_USB_AF9035 MEDIA DRIVER
3695 M:      Antti Palosaari <crope@iki.fi>
3696 L:      linux-media@vger.kernel.org
3697 W:      http://linuxtv.org/
3698 W:      http://palosaari.fi/linux/
3699 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3700 T:      git git://linuxtv.org/anttip/media_tree.git
3701 S:      Maintained
3702 F:      drivers/media/usb/dvb-usb-v2/af9035*
3703
3704 DVB_USB_ANYSEE MEDIA DRIVER
3705 M:      Antti Palosaari <crope@iki.fi>
3706 L:      linux-media@vger.kernel.org
3707 W:      http://linuxtv.org/
3708 W:      http://palosaari.fi/linux/
3709 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3710 T:      git git://linuxtv.org/anttip/media_tree.git
3711 S:      Maintained
3712 F:      drivers/media/usb/dvb-usb-v2/anysee*
3713
3714 DVB_USB_AU6610 MEDIA DRIVER
3715 M:      Antti Palosaari <crope@iki.fi>
3716 L:      linux-media@vger.kernel.org
3717 W:      http://linuxtv.org/
3718 W:      http://palosaari.fi/linux/
3719 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3720 T:      git git://linuxtv.org/anttip/media_tree.git
3721 S:      Maintained
3722 F:      drivers/media/usb/dvb-usb-v2/au6610*
3723
3724 DVB_USB_CE6230 MEDIA DRIVER
3725 M:      Antti Palosaari <crope@iki.fi>
3726 L:      linux-media@vger.kernel.org
3727 W:      http://linuxtv.org/
3728 W:      http://palosaari.fi/linux/
3729 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3730 T:      git git://linuxtv.org/anttip/media_tree.git
3731 S:      Maintained
3732 F:      drivers/media/usb/dvb-usb-v2/ce6230*
3733
3734 DVB_USB_CXUSB MEDIA DRIVER
3735 M:      Michael Krufky <mkrufky@linuxtv.org>
3736 L:      linux-media@vger.kernel.org
3737 W:      http://linuxtv.org/
3738 W:      http://github.com/mkrufky
3739 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3740 T:      git git://linuxtv.org/media_tree.git
3741 S:      Maintained
3742 F:      drivers/media/usb/dvb-usb/cxusb*
3743
3744 DVB_USB_EC168 MEDIA DRIVER
3745 M:      Antti Palosaari <crope@iki.fi>
3746 L:      linux-media@vger.kernel.org
3747 W:      http://linuxtv.org/
3748 W:      http://palosaari.fi/linux/
3749 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3750 T:      git git://linuxtv.org/anttip/media_tree.git
3751 S:      Maintained
3752 F:      drivers/media/usb/dvb-usb-v2/ec168*
3753
3754 DVB_USB_GL861 MEDIA DRIVER
3755 M:      Antti Palosaari <crope@iki.fi>
3756 L:      linux-media@vger.kernel.org
3757 W:      http://linuxtv.org/
3758 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3759 T:      git git://linuxtv.org/anttip/media_tree.git
3760 S:      Maintained
3761 F:      drivers/media/usb/dvb-usb-v2/gl861*
3762
3763 DVB_USB_MXL111SF MEDIA DRIVER
3764 M:      Michael Krufky <mkrufky@linuxtv.org>
3765 L:      linux-media@vger.kernel.org
3766 W:      http://linuxtv.org/
3767 W:      http://github.com/mkrufky
3768 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3769 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
3770 S:      Maintained
3771 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
3772
3773 DVB_USB_RTL28XXU MEDIA DRIVER
3774 M:      Antti Palosaari <crope@iki.fi>
3775 L:      linux-media@vger.kernel.org
3776 W:      http://linuxtv.org/
3777 W:      http://palosaari.fi/linux/
3778 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3779 T:      git git://linuxtv.org/anttip/media_tree.git
3780 S:      Maintained
3781 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
3782
3783 DVB_USB_V2 MEDIA DRIVER
3784 M:      Antti Palosaari <crope@iki.fi>
3785 L:      linux-media@vger.kernel.org
3786 W:      http://linuxtv.org/
3787 W:      http://palosaari.fi/linux/
3788 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3789 T:      git git://linuxtv.org/anttip/media_tree.git
3790 S:      Maintained
3791 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
3792 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
3793
3794 DYNAMIC DEBUG
3795 M:      Jason Baron <jbaron@akamai.com>
3796 S:      Maintained
3797 F:      lib/dynamic_debug.c
3798 F:      include/linux/dynamic_debug.h
3799
3800 DZ DECSTATION DZ11 SERIAL DRIVER
3801 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3802 S:      Maintained
3803 F:      drivers/tty/serial/dz.*
3804
3805 E3X0 POWER BUTTON DRIVER
3806 M:      Moritz Fischer <moritz.fischer@ettus.com>
3807 L:      usrp-users@lists.ettus.com
3808 W:      http://www.ettus.com
3809 S:      Supported
3810 F:      drivers/input/misc/e3x0-button.c
3811 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
3812
3813 E4000 MEDIA DRIVER
3814 M:      Antti Palosaari <crope@iki.fi>
3815 L:      linux-media@vger.kernel.org
3816 W:      http://linuxtv.org/
3817 W:      http://palosaari.fi/linux/
3818 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3819 T:      git git://linuxtv.org/anttip/media_tree.git
3820 S:      Maintained
3821 F:      drivers/media/tuners/e4000*
3822
3823 EATA ISA/EISA/PCI SCSI DRIVER
3824 M:      Dario Ballabio <ballabio_dario@emc.com>
3825 L:      linux-scsi@vger.kernel.org
3826 S:      Maintained
3827 F:      drivers/scsi/eata.c
3828
3829 EC100 MEDIA DRIVER
3830 M:      Antti Palosaari <crope@iki.fi>
3831 L:      linux-media@vger.kernel.org
3832 W:      http://linuxtv.org/
3833 W:      http://palosaari.fi/linux/
3834 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3835 T:      git git://linuxtv.org/anttip/media_tree.git
3836 S:      Maintained
3837 F:      drivers/media/dvb-frontends/ec100*
3838
3839 ECRYPT FILE SYSTEM
3840 M:      Tyler Hicks <tyhicks@canonical.com>
3841 L:      ecryptfs@vger.kernel.org
3842 W:      http://ecryptfs.org
3843 W:      https://launchpad.net/ecryptfs
3844 S:      Supported
3845 F:      Documentation/filesystems/ecryptfs.txt
3846 F:      fs/ecryptfs/
3847
3848 EDAC-CORE
3849 M:      Doug Thompson <dougthompson@xmission.com>
3850 M:      Borislav Petkov <bp@alien8.de>
3851 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3852 L:      linux-edac@vger.kernel.org
3853 W:      bluesmoke.sourceforge.net
3854 T:      git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git#for-next
3855 T:      git://git.kernel.org/pub/linux/kernel/git/mchehab/linux-edac.git#linux_next
3856 S:      Supported
3857 F:      Documentation/edac.txt
3858 F:      drivers/edac/
3859 F:      include/linux/edac.h
3860
3861 EDAC-AMD64
3862 M:      Doug Thompson <dougthompson@xmission.com>
3863 M:      Borislav Petkov <bp@alien8.de>
3864 L:      linux-edac@vger.kernel.org
3865 W:      bluesmoke.sourceforge.net
3866 S:      Maintained
3867 F:      drivers/edac/amd64_edac*
3868
3869 EDAC-CALXEDA
3870 M:      Doug Thompson <dougthompson@xmission.com>
3871 M:      Robert Richter <rric@kernel.org>
3872 L:      linux-edac@vger.kernel.org
3873 W:      bluesmoke.sourceforge.net
3874 S:      Maintained
3875 F:      drivers/edac/highbank*
3876
3877 EDAC-CAVIUM
3878 M:      Ralf Baechle <ralf@linux-mips.org>
3879 M:      David Daney <david.daney@cavium.com>
3880 L:      linux-edac@vger.kernel.org
3881 L:      linux-mips@linux-mips.org
3882 W:      bluesmoke.sourceforge.net
3883 S:      Supported
3884 F:      drivers/edac/octeon_edac*
3885
3886 EDAC-E752X
3887 M:      Mark Gross <mark.gross@intel.com>
3888 M:      Doug Thompson <dougthompson@xmission.com>
3889 L:      linux-edac@vger.kernel.org
3890 W:      bluesmoke.sourceforge.net
3891 S:      Maintained
3892 F:      drivers/edac/e752x_edac.c
3893
3894 EDAC-E7XXX
3895 M:      Doug Thompson <dougthompson@xmission.com>
3896 L:      linux-edac@vger.kernel.org
3897 W:      bluesmoke.sourceforge.net
3898 S:      Maintained
3899 F:      drivers/edac/e7xxx_edac.c
3900
3901 EDAC-GHES
3902 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3903 L:      linux-edac@vger.kernel.org
3904 W:      bluesmoke.sourceforge.net
3905 S:      Maintained
3906 F:      drivers/edac/ghes_edac.c
3907
3908 EDAC-I82443BXGX
3909 M:      Tim Small <tim@buttersideup.com>
3910 L:      linux-edac@vger.kernel.org
3911 W:      bluesmoke.sourceforge.net
3912 S:      Maintained
3913 F:      drivers/edac/i82443bxgx_edac.c
3914
3915 EDAC-I3000
3916 M:      Jason Uhlenkott <juhlenko@akamai.com>
3917 L:      linux-edac@vger.kernel.org
3918 W:      bluesmoke.sourceforge.net
3919 S:      Maintained
3920 F:      drivers/edac/i3000_edac.c
3921
3922 EDAC-I5000
3923 M:      Doug Thompson <dougthompson@xmission.com>
3924 L:      linux-edac@vger.kernel.org
3925 W:      bluesmoke.sourceforge.net
3926 S:      Maintained
3927 F:      drivers/edac/i5000_edac.c
3928
3929 EDAC-I5400
3930 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3931 L:      linux-edac@vger.kernel.org
3932 W:      bluesmoke.sourceforge.net
3933 S:      Maintained
3934 F:      drivers/edac/i5400_edac.c
3935
3936 EDAC-I7300
3937 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3938 L:      linux-edac@vger.kernel.org
3939 W:      bluesmoke.sourceforge.net
3940 S:      Maintained
3941 F:      drivers/edac/i7300_edac.c
3942
3943 EDAC-I7CORE
3944 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3945 L:      linux-edac@vger.kernel.org
3946 W:      bluesmoke.sourceforge.net
3947 S:      Maintained
3948 F:      drivers/edac/i7core_edac.c
3949
3950 EDAC-I82975X
3951 M:      Ranganathan Desikan <ravi@jetztechnologies.com>
3952 M:      "Arvind R." <arvino55@gmail.com>
3953 L:      linux-edac@vger.kernel.org
3954 W:      bluesmoke.sourceforge.net
3955 S:      Maintained
3956 F:      drivers/edac/i82975x_edac.c
3957
3958 EDAC-IE31200
3959 M:      Jason Baron <jbaron@akamai.com>
3960 L:      linux-edac@vger.kernel.org
3961 W:      bluesmoke.sourceforge.net
3962 S:      Maintained
3963 F:      drivers/edac/ie31200_edac.c
3964
3965 EDAC-MPC85XX
3966 M:      Johannes Thumshirn <morbidrsa@gmail.com>
3967 L:      linux-edac@vger.kernel.org
3968 W:      bluesmoke.sourceforge.net
3969 S:      Maintained
3970 F:      drivers/edac/mpc85xx_edac.[ch]
3971
3972 EDAC-PASEMI
3973 M:      Egor Martovetsky <egor@pasemi.com>
3974 L:      linux-edac@vger.kernel.org
3975 W:      bluesmoke.sourceforge.net
3976 S:      Maintained
3977 F:      drivers/edac/pasemi_edac.c
3978
3979 EDAC-R82600
3980 M:      Tim Small <tim@buttersideup.com>
3981 L:      linux-edac@vger.kernel.org
3982 W:      bluesmoke.sourceforge.net
3983 S:      Maintained
3984 F:      drivers/edac/r82600_edac.c
3985
3986 EDAC-SBRIDGE
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/sb_edac.c
3992
3993 EDAC-XGENE
3994 APPLIED MICRO (APM) X-GENE SOC EDAC
3995 M:     Loc Ho <lho@apm.com>
3996 S:     Supported
3997 F:     drivers/edac/xgene_edac.c
3998 F:     Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
3999
4000 EDIROL UA-101/UA-1000 DRIVER
4001 M:      Clemens Ladisch <clemens@ladisch.de>
4002 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4003 T:      git git://git.alsa-project.org/alsa-kernel.git
4004 S:      Maintained
4005 F:      sound/usb/misc/ua101.c
4006
4007 EXTENSIBLE FIRMWARE INTERFACE (EFI)
4008 M:      Matt Fleming <matt.fleming@intel.com>
4009 L:      linux-efi@vger.kernel.org
4010 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4011 S:      Maintained
4012 F:      Documentation/efi-stub.txt
4013 F:      arch/ia64/kernel/efi.c
4014 F:      arch/x86/boot/compressed/eboot.[ch]
4015 F:      arch/x86/include/asm/efi.h
4016 F:      arch/x86/platform/efi/*
4017 F:      drivers/firmware/efi/*
4018 F:      include/linux/efi*.h
4019
4020 EFI VARIABLE FILESYSTEM
4021 M:      Matthew Garrett <matthew.garrett@nebula.com>
4022 M:      Jeremy Kerr <jk@ozlabs.org>
4023 M:      Matt Fleming <matt.fleming@intel.com>
4024 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4025 L:      linux-efi@vger.kernel.org
4026 S:      Maintained
4027 F:      fs/efivarfs/
4028
4029 EFIFB FRAMEBUFFER DRIVER
4030 L:      linux-fbdev@vger.kernel.org
4031 M:      Peter Jones <pjones@redhat.com>
4032 S:      Maintained
4033 F:      drivers/video/fbdev/efifb.c
4034
4035 EFS FILESYSTEM
4036 W:      http://aeschi.ch.eu.org/efs/
4037 S:      Orphan
4038 F:      fs/efs/
4039
4040 EHCA (IBM GX bus InfiniBand adapter) DRIVER
4041 M:      Hoang-Nam Nguyen <hnguyen@de.ibm.com>
4042 M:      Christoph Raisch <raisch@de.ibm.com>
4043 L:      linux-rdma@vger.kernel.org
4044 S:      Supported
4045 F:      drivers/infiniband/hw/ehca/
4046
4047 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
4048 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
4049 L:      netdev@vger.kernel.org
4050 S:      Maintained
4051 F:      drivers/net/ethernet/ibm/ehea/
4052
4053 EM28XX VIDEO4LINUX DRIVER
4054 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4055 L:      linux-media@vger.kernel.org
4056 W:      http://linuxtv.org
4057 T:      git git://linuxtv.org/media_tree.git
4058 S:      Maintained
4059 F:      drivers/media/usb/em28xx/
4060
4061 EMBEDDED LINUX
4062 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
4063 M:      Matt Mackall <mpm@selenic.com>
4064 M:      David Woodhouse <dwmw2@infradead.org>
4065 L:      linux-embedded@vger.kernel.org
4066 S:      Maintained
4067
4068 EMULEX/AVAGO LPFC FC/FCOE SCSI DRIVER
4069 M:      James Smart <james.smart@avagotech.com>
4070 M:      Dick Kennedy <dick.kennedy@avagotech.com>
4071 L:      linux-scsi@vger.kernel.org
4072 W:      http://www.avagotech.com
4073 S:      Supported
4074 F:      drivers/scsi/lpfc/
4075
4076 ENE CB710 FLASH CARD READER DRIVER
4077 M:      MichaÅ‚ MirosÅ‚aw <mirq-linux@rere.qmqm.pl>
4078 S:      Maintained
4079 F:      drivers/misc/cb710/
4080 F:      drivers/mmc/host/cb710-mmc.*
4081 F:      include/linux/cb710.h
4082
4083 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
4084 M:      Maxim Levitsky <maximlevitsky@gmail.com>
4085 S:      Maintained
4086 F:      drivers/media/rc/ene_ir.*
4087
4088 ENHANCED ERROR HANDLING (EEH)
4089 M:      Gavin Shan <shangw@linux.vnet.ibm.com>
4090 L:      linuxppc-dev@lists.ozlabs.org
4091 S:      Supported
4092 F:      Documentation/powerpc/eeh-pci-error-recovery.txt
4093 F:      arch/powerpc/kernel/eeh*.c
4094
4095 EPSON S1D13XXX FRAMEBUFFER DRIVER
4096 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
4097 S:      Maintained
4098 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
4099 F:      drivers/video/fbdev/s1d13xxxfb.c
4100 F:      include/video/s1d13xxxfb.h
4101
4102 ET131X NETWORK DRIVER
4103 M:      Mark Einon <mark.einon@gmail.com>
4104 S:      Odd Fixes
4105 F:      drivers/net/ethernet/agere/
4106
4107 ETHERNET BRIDGE
4108 M:      Stephen Hemminger <stephen@networkplumber.org>
4109 L:      bridge@lists.linux-foundation.org
4110 L:      netdev@vger.kernel.org
4111 W:      http://www.linuxfoundation.org/en/Net:Bridge
4112 S:      Maintained
4113 F:      include/linux/netfilter_bridge/
4114 F:      net/bridge/
4115
4116 ETHERNET PHY LIBRARY
4117 M:      Florian Fainelli <f.fainelli@gmail.com>
4118 L:      netdev@vger.kernel.org
4119 S:      Maintained
4120 F:      include/linux/phy.h
4121 F:      include/linux/phy_fixed.h
4122 F:      drivers/net/phy/
4123 F:      Documentation/networking/phy.txt
4124 F:      drivers/of/of_mdio.c
4125 F:      drivers/of/of_net.c
4126
4127 EXT2 FILE SYSTEM
4128 M:      Jan Kara <jack@suse.com>
4129 L:      linux-ext4@vger.kernel.org
4130 S:      Maintained
4131 F:      Documentation/filesystems/ext2.txt
4132 F:      fs/ext2/
4133 F:      include/linux/ext2*
4134
4135 EXT4 FILE SYSTEM
4136 M:      "Theodore Ts'o" <tytso@mit.edu>
4137 M:      Andreas Dilger <adilger.kernel@dilger.ca>
4138 L:      linux-ext4@vger.kernel.org
4139 W:      http://ext4.wiki.kernel.org
4140 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
4141 S:      Maintained
4142 F:      Documentation/filesystems/ext4.txt
4143 F:      fs/ext4/
4144
4145 Extended Verification Module (EVM)
4146 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
4147 L:      linux-ima-devel@lists.sourceforge.net
4148 L:      linux-security-module@vger.kernel.org
4149 S:      Supported
4150 F:      security/integrity/evm/
4151
4152 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
4153 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
4154 M:      Chanwoo Choi <cw00.choi@samsung.com>
4155 L:      linux-kernel@vger.kernel.org
4156 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
4157 S:      Maintained
4158 F:      drivers/extcon/
4159 F:      Documentation/extcon/
4160
4161 EXYNOS DP DRIVER
4162 M:      Jingoo Han <jingoohan1@gmail.com>
4163 L:      dri-devel@lists.freedesktop.org
4164 S:      Maintained
4165 F:      drivers/gpu/drm/exynos/exynos_dp*
4166
4167 EXYNOS MIPI DISPLAY DRIVERS
4168 M:      Inki Dae <inki.dae@samsung.com>
4169 M:      Donghwa Lee <dh09.lee@samsung.com>
4170 M:      Kyungmin Park <kyungmin.park@samsung.com>
4171 L:      linux-fbdev@vger.kernel.org
4172 S:      Maintained
4173 F:      drivers/video/fbdev/exynos/exynos_mipi*
4174 F:      include/video/exynos_mipi*
4175
4176 F71805F HARDWARE MONITORING DRIVER
4177 M:      Jean Delvare <jdelvare@suse.com>
4178 L:      lm-sensors@lm-sensors.org
4179 S:      Maintained
4180 F:      Documentation/hwmon/f71805f
4181 F:      drivers/hwmon/f71805f.c
4182
4183 FC0011 TUNER DRIVER
4184 M:      Michael Buesch <m@bues.ch>
4185 L:      linux-media@vger.kernel.org
4186 S:      Maintained
4187 F:      drivers/media/tuners/fc0011.h
4188 F:      drivers/media/tuners/fc0011.c
4189
4190 FC2580 MEDIA DRIVER
4191 M:      Antti Palosaari <crope@iki.fi>
4192 L:      linux-media@vger.kernel.org
4193 W:      http://linuxtv.org/
4194 W:      http://palosaari.fi/linux/
4195 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4196 T:      git git://linuxtv.org/anttip/media_tree.git
4197 S:      Maintained
4198 F:      drivers/media/tuners/fc2580*
4199
4200 FANOTIFY
4201 M:      Eric Paris <eparis@redhat.com>
4202 S:      Maintained
4203 F:      fs/notify/fanotify/
4204 F:      include/linux/fanotify.h
4205 F:      include/uapi/linux/fanotify.h
4206
4207 FARSYNC SYNCHRONOUS DRIVER
4208 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
4209 W:      http://www.farsite.co.uk/
4210 S:      Supported
4211 F:      drivers/net/wan/farsync.*
4212
4213 FAULT INJECTION SUPPORT
4214 M:      Akinobu Mita <akinobu.mita@gmail.com>
4215 S:      Supported
4216 F:      Documentation/fault-injection/
4217 F:      lib/fault-inject.c
4218
4219 FBTFT Framebuffer drivers
4220 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
4221 M:      Noralf Trønnes <noralf@tronnes.org>
4222 S:      Maintained
4223 F:      drivers/staging/fbtft/
4224
4225 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
4226 M:      Vasu Dev <vasu.dev@intel.com>
4227 L:      fcoe-devel@open-fcoe.org
4228 W:      www.Open-FCoE.org
4229 S:      Supported
4230 F:      drivers/scsi/libfc/
4231 F:      drivers/scsi/fcoe/
4232 F:      include/scsi/fc/
4233 F:      include/scsi/libfc.h
4234 F:      include/scsi/libfcoe.h
4235 F:      include/uapi/scsi/fc/
4236
4237 FILE LOCKING (flock() and fcntl()/lockf())
4238 M:      Jeff Layton <jlayton@poochiereds.net>
4239 M:      "J. Bruce Fields" <bfields@fieldses.org>
4240 L:      linux-fsdevel@vger.kernel.org
4241 S:      Maintained
4242 F:      include/linux/fcntl.h
4243 F:      include/linux/fs.h
4244 F:      include/uapi/linux/fcntl.h
4245 F:      include/uapi/linux/fs.h
4246 F:      fs/fcntl.c
4247 F:      fs/locks.c
4248
4249 FILESYSTEMS (VFS and infrastructure)
4250 M:      Alexander Viro <viro@zeniv.linux.org.uk>
4251 L:      linux-fsdevel@vger.kernel.org
4252 S:      Maintained
4253 F:      fs/*
4254
4255 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
4256 M:      Riku Voipio <riku.voipio@iki.fi>
4257 L:      lm-sensors@lm-sensors.org
4258 S:      Maintained
4259 F:      drivers/hwmon/f75375s.c
4260 F:      include/linux/f75375s.h
4261
4262 FIREWIRE AUDIO DRIVERS
4263 M:      Clemens Ladisch <clemens@ladisch.de>
4264 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4265 T:      git git://git.alsa-project.org/alsa-kernel.git
4266 S:      Maintained
4267 F:      sound/firewire/
4268
4269 FIREWIRE MEDIA DRIVERS (firedtv)
4270 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4271 L:      linux-media@vger.kernel.org
4272 L:      linux1394-devel@lists.sourceforge.net
4273 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
4274 S:      Maintained
4275 F:      drivers/media/firewire/
4276
4277 FIREWIRE SBP-2 TARGET
4278 M:      Chris Boot <bootc@bootc.net>
4279 L:      linux-scsi@vger.kernel.org
4280 L:      target-devel@vger.kernel.org
4281 L:      linux1394-devel@lists.sourceforge.net
4282 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
4283 S:      Maintained
4284 F:      drivers/target/sbp/
4285
4286 FIREWIRE SUBSYSTEM
4287 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4288 L:      linux1394-devel@lists.sourceforge.net
4289 W:      http://ieee1394.wiki.kernel.org/
4290 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
4291 S:      Maintained
4292 F:      drivers/firewire/
4293 F:      include/linux/firewire.h
4294 F:      include/uapi/linux/firewire*.h
4295 F:      tools/firewire/
4296
4297 FIRMWARE LOADER (request_firmware)
4298 M:      Ming Lei <ming.lei@canonical.com>
4299 L:      linux-kernel@vger.kernel.org
4300 S:      Maintained
4301 F:      Documentation/firmware_class/
4302 F:      drivers/base/firmware*.c
4303 F:      include/linux/firmware.h
4304
4305 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
4306 M:      Joshua Morris <josh.h.morris@us.ibm.com>
4307 M:      Philip Kelleher <pjk1939@linux.vnet.ibm.com>
4308 S:      Maintained
4309 F:      drivers/block/rsxx/
4310
4311 FLOPPY DRIVER
4312 M:      Jiri Kosina <jikos@kernel.org>
4313 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
4314 S:      Odd fixes
4315 F:      drivers/block/floppy.c
4316
4317 FMC SUBSYSTEM
4318 M:      Alessandro Rubini <rubini@gnudd.com>
4319 W:      http://www.ohwr.org/projects/fmc-bus
4320 S:      Supported
4321 F:      drivers/fmc/
4322 F:      include/linux/fmc*.h
4323 F:      include/linux/ipmi-fru.h
4324 K:      fmc_d.*register
4325
4326 FPU EMULATOR
4327 M:      Bill Metzenthen <billm@melbpc.org.au>
4328 W:      http://floatingpoint.sourceforge.net/emulator/index.html
4329 S:      Maintained
4330 F:      arch/x86/math-emu/
4331
4332 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
4333 L:      netdev@vger.kernel.org
4334 S:      Orphan
4335 F:      drivers/net/wan/dlci.c
4336 F:      drivers/net/wan/sdla.c
4337
4338 FRAMEBUFFER LAYER
4339 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
4340 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
4341 L:      linux-fbdev@vger.kernel.org
4342 W:      http://linux-fbdev.sourceforge.net/
4343 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
4344 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git
4345 S:      Maintained
4346 F:      Documentation/fb/
4347 F:      Documentation/devicetree/bindings/fb/
4348 F:      drivers/video/
4349 F:      include/video/
4350 F:      include/linux/fb.h
4351 F:      include/uapi/video/
4352 F:      include/uapi/linux/fb.h
4353
4354 FREESCALE DIU FRAMEBUFFER DRIVER
4355 M:      Timur Tabi <timur@tabi.org>
4356 L:      linux-fbdev@vger.kernel.org
4357 S:      Maintained
4358 F:      drivers/video/fbdev/fsl-diu-fb.*
4359
4360 FREESCALE DMA DRIVER
4361 M:      Li Yang <leoli@freescale.com>
4362 M:      Zhang Wei <zw@zh-kernel.org>
4363 L:      linuxppc-dev@lists.ozlabs.org
4364 S:      Maintained
4365 F:      drivers/dma/fsldma.*
4366
4367 FREESCALE I2C CPM DRIVER
4368 M:      Jochen Friedrich <jochen@scram.de>
4369 L:      linuxppc-dev@lists.ozlabs.org
4370 L:      linux-i2c@vger.kernel.org
4371 S:      Maintained
4372 F:      drivers/i2c/busses/i2c-cpm.c
4373
4374 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
4375 M:      Sascha Hauer <kernel@pengutronix.de>
4376 L:      linux-fbdev@vger.kernel.org
4377 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4378 S:      Maintained
4379 F:      include/linux/platform_data/video-imxfb.h
4380 F:      drivers/video/fbdev/imxfb.c
4381
4382 FREESCALE QUAD SPI DRIVER
4383 M:      Han Xu <han.xu@freescale.com>
4384 L:      linux-mtd@lists.infradead.org
4385 S:      Maintained
4386 F:      drivers/mtd/spi-nor/fsl-quadspi.c
4387
4388 FREESCALE SOC FS_ENET DRIVER
4389 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
4390 M:      Vitaly Bordug <vbordug@ru.mvista.com>
4391 L:      linuxppc-dev@lists.ozlabs.org
4392 L:      netdev@vger.kernel.org
4393 S:      Maintained
4394 F:      drivers/net/ethernet/freescale/fs_enet/
4395 F:      include/linux/fs_enet_pd.h
4396
4397 FREESCALE QUICC ENGINE LIBRARY
4398 L:      linuxppc-dev@lists.ozlabs.org
4399 S:      Orphan
4400 F:      arch/powerpc/sysdev/qe_lib/
4401 F:      arch/powerpc/include/asm/*qe.h
4402
4403 FREESCALE USB PERIPHERAL DRIVERS
4404 M:      Li Yang <leoli@freescale.com>
4405 L:      linux-usb@vger.kernel.org
4406 L:      linuxppc-dev@lists.ozlabs.org
4407 S:      Maintained
4408 F:      drivers/usb/gadget/udc/fsl*
4409
4410 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
4411 M:      Li Yang <leoli@freescale.com>
4412 L:      netdev@vger.kernel.org
4413 L:      linuxppc-dev@lists.ozlabs.org
4414 S:      Maintained
4415 F:      drivers/net/ethernet/freescale/ucc_geth*
4416
4417 FREESCALE QUICC ENGINE UCC UART DRIVER
4418 M:      Timur Tabi <timur@tabi.org>
4419 L:      linuxppc-dev@lists.ozlabs.org
4420 S:      Maintained
4421 F:      drivers/tty/serial/ucc_uart.c
4422
4423 FREESCALE SOC SOUND DRIVERS
4424 M:      Timur Tabi <timur@tabi.org>
4425 M:      Nicolin Chen <nicoleotsuka@gmail.com>
4426 M:      Xiubo Li <Xiubo.Lee@gmail.com>
4427 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4428 L:      linuxppc-dev@lists.ozlabs.org
4429 S:      Maintained
4430 F:      sound/soc/fsl/fsl*
4431 F:      sound/soc/fsl/imx*
4432 F:      sound/soc/fsl/mpc8610_hpcd.c
4433
4434 FREESCALE QORIQ MANAGEMENT COMPLEX DRIVER
4435 M:      "J. German Rivera" <German.Rivera@freescale.com>
4436 L:      linux-kernel@vger.kernel.org
4437 S:      Maintained
4438 F:      drivers/staging/fsl-mc/
4439
4440 FREEVXFS FILESYSTEM
4441 M:      Christoph Hellwig <hch@infradead.org>
4442 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
4443 S:      Maintained
4444 F:      fs/freevxfs/
4445
4446 FREEZER
4447 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4448 M:      Pavel Machek <pavel@ucw.cz>
4449 L:      linux-pm@vger.kernel.org
4450 S:      Supported
4451 F:      Documentation/power/freezing-of-tasks.txt
4452 F:      include/linux/freezer.h
4453 F:      kernel/freezer.c
4454
4455 FRONTSWAP API
4456 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4457 L:      linux-kernel@vger.kernel.org
4458 S:      Maintained
4459 F:      mm/frontswap.c
4460 F:      include/linux/frontswap.h
4461
4462 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
4463 M:      David Howells <dhowells@redhat.com>
4464 L:      linux-cachefs@redhat.com
4465 S:      Supported
4466 F:      Documentation/filesystems/caching/
4467 F:      fs/fscache/
4468 F:      include/linux/fscache*.h
4469
4470 F2FS FILE SYSTEM
4471 M:      Jaegeuk Kim <jaegeuk@kernel.org>
4472 M:      Changman Lee <cm224.lee@samsung.com>
4473 R:      Chao Yu <chao2.yu@samsung.com>
4474 L:      linux-f2fs-devel@lists.sourceforge.net
4475 W:      http://en.wikipedia.org/wiki/F2FS
4476 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
4477 S:      Maintained
4478 F:      Documentation/filesystems/f2fs.txt
4479 F:      Documentation/ABI/testing/sysfs-fs-f2fs
4480 F:      fs/f2fs/
4481 F:      include/linux/f2fs_fs.h
4482 F:      include/trace/events/f2fs.h
4483
4484 FUJITSU FR-V (FRV) PORT
4485 M:      David Howells <dhowells@redhat.com>
4486 S:      Maintained
4487 F:      arch/frv/
4488
4489 FUJITSU LAPTOP EXTRAS
4490 M:      Jonathan Woithe <jwoithe@just42.net>
4491 L:      platform-driver-x86@vger.kernel.org
4492 S:      Maintained
4493 F:      drivers/platform/x86/fujitsu-laptop.c
4494
4495 FUJITSU M-5MO LS CAMERA ISP DRIVER
4496 M:      Kyungmin Park <kyungmin.park@samsung.com>
4497 M:      Heungjun Kim <riverful.kim@samsung.com>
4498 L:      linux-media@vger.kernel.org
4499 S:      Maintained
4500 F:      drivers/media/i2c/m5mols/
4501 F:      include/media/m5mols.h
4502
4503 FUJITSU TABLET EXTRAS
4504 M:      Robert Gerlach <khnz@gmx.de>
4505 L:      platform-driver-x86@vger.kernel.org
4506 S:      Maintained
4507 F:      drivers/platform/x86/fujitsu-tablet.c
4508
4509 FUSE: FILESYSTEM IN USERSPACE
4510 M:      Miklos Szeredi <miklos@szeredi.hu>
4511 L:      fuse-devel@lists.sourceforge.net
4512 W:      http://fuse.sourceforge.net/
4513 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
4514 S:      Maintained
4515 F:      fs/fuse/
4516 F:      include/uapi/linux/fuse.h
4517 F:      Documentation/filesystems/fuse.txt
4518
4519 FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
4520 M:      Rik Faith <faith@cs.unc.edu>
4521 L:      linux-scsi@vger.kernel.org
4522 S:      Odd Fixes (e.g., new signatures)
4523 F:      drivers/scsi/fdomain.*
4524
4525 GCOV BASED KERNEL PROFILING
4526 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
4527 S:      Maintained
4528 F:      kernel/gcov/
4529 F:      Documentation/gcov.txt
4530
4531 GDT SCSI DISK ARRAY CONTROLLER DRIVER
4532 M:      Achim Leubner <achim_leubner@adaptec.com>
4533 L:      linux-scsi@vger.kernel.org
4534 W:      http://www.icp-vortex.com/
4535 S:      Supported
4536 F:      drivers/scsi/gdt*
4537
4538 GDB KERNEL DEBUGGING HELPER SCRIPTS
4539 M:      Jan Kiszka <jan.kiszka@siemens.com>
4540 S:      Supported
4541 F:      scripts/gdb/
4542
4543 GEMTEK FM RADIO RECEIVER DRIVER
4544 M:      Hans Verkuil <hverkuil@xs4all.nl>
4545 L:      linux-media@vger.kernel.org
4546 T:      git git://linuxtv.org/media_tree.git
4547 W:      http://linuxtv.org
4548 S:      Maintained
4549 F:      drivers/media/radio/radio-gemtek*
4550
4551 GENERIC GPIO I2C DRIVER
4552 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
4553 S:      Supported
4554 F:      drivers/i2c/busses/i2c-gpio.c
4555 F:      include/linux/i2c-gpio.h
4556
4557 GENERIC GPIO I2C MULTIPLEXER DRIVER
4558 M:      Peter Korsgaard <peter.korsgaard@barco.com>
4559 L:      linux-i2c@vger.kernel.org
4560 S:      Supported
4561 F:      drivers/i2c/muxes/i2c-mux-gpio.c
4562 F:      include/linux/i2c-mux-gpio.h
4563 F:      Documentation/i2c/muxes/i2c-mux-gpio
4564
4565 GENERIC HDLC (WAN) DRIVERS
4566 M:      Krzysztof Halasa <khc@pm.waw.pl>
4567 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
4568 S:      Maintained
4569 F:      drivers/net/wan/c101.c
4570 F:      drivers/net/wan/hd6457*
4571 F:      drivers/net/wan/hdlc*
4572 F:      drivers/net/wan/n2.c
4573 F:      drivers/net/wan/pc300too.c
4574 F:      drivers/net/wan/pci200syn.c
4575 F:      drivers/net/wan/wanxl*
4576
4577 GENERIC INCLUDE/ASM HEADER FILES
4578 M:      Arnd Bergmann <arnd@arndb.de>
4579 L:      linux-arch@vger.kernel.org
4580 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
4581 S:      Maintained
4582 F:      include/asm-generic/
4583 F:      include/uapi/asm-generic/
4584
4585 GENERIC PHY FRAMEWORK
4586 M:      Kishon Vijay Abraham I <kishon@ti.com>
4587 L:      linux-kernel@vger.kernel.org
4588 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
4589 S:      Supported
4590 F:      drivers/phy/
4591 F:      include/linux/phy/
4592
4593 GENERIC PM DOMAINS
4594 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4595 M:      Kevin Hilman <khilman@kernel.org>
4596 M:      Ulf Hansson <ulf.hansson@linaro.org>
4597 L:      linux-pm@vger.kernel.org
4598 S:      Supported
4599 F:      drivers/base/power/domain*.c
4600 F:      include/linux/pm_domain.h
4601
4602 GENERIC UIO DRIVER FOR PCI DEVICES
4603 M:      "Michael S. Tsirkin" <mst@redhat.com>
4604 L:      kvm@vger.kernel.org
4605 S:      Supported
4606 F:      drivers/uio/uio_pci_generic.c
4607
4608 GET_MAINTAINER SCRIPT
4609 M:      Joe Perches <joe@perches.com>
4610 S:      Maintained
4611 F:      scripts/get_maintainer.pl
4612
4613 GFS2 FILE SYSTEM
4614 M:      Steven Whitehouse <swhiteho@redhat.com>
4615 M:      Bob Peterson <rpeterso@redhat.com>
4616 L:      cluster-devel@redhat.com
4617 W:      http://sources.redhat.com/cluster/
4618 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
4619 S:      Supported
4620 F:      Documentation/filesystems/gfs2*.txt
4621 F:      fs/gfs2/
4622 F:      include/uapi/linux/gfs2_ondisk.h
4623
4624 GIGASET ISDN DRIVERS
4625 M:      Paul Bolle <pebolle@tiscali.nl>
4626 L:      gigaset307x-common@lists.sourceforge.net
4627 W:      http://gigaset307x.sourceforge.net/
4628 S:      Odd Fixes
4629 F:      Documentation/isdn/README.gigaset
4630 F:      drivers/isdn/gigaset/
4631 F:      include/uapi/linux/gigaset_dev.h
4632
4633 GO7007 MPEG CODEC
4634 M:      Hans Verkuil <hans.verkuil@cisco.com>
4635 L:      linux-media@vger.kernel.org
4636 S:      Maintained
4637 F:      drivers/media/usb/go7007/
4638
4639 GOODIX TOUCHSCREEN
4640 M:      Bastien Nocera <hadess@hadess.net>
4641 L:      linux-input@vger.kernel.org
4642 S:      Maintained
4643 F:      drivers/input/touchscreen/goodix.c
4644
4645 GPIO SUBSYSTEM
4646 M:      Linus Walleij <linus.walleij@linaro.org>
4647 M:      Alexandre Courbot <gnurou@gmail.com>
4648 L:      linux-gpio@vger.kernel.org
4649 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
4650 S:      Maintained
4651 F:      Documentation/gpio/
4652 F:      drivers/gpio/
4653 F:      include/linux/gpio/
4654 F:      include/linux/gpio.h
4655 F:      include/asm-generic/gpio.h
4656
4657 GRE DEMULTIPLEXER DRIVER
4658 M:      Dmitry Kozlov <xeb@mail.ru>
4659 L:      netdev@vger.kernel.org
4660 S:      Maintained
4661 F:      net/ipv4/gre_demux.c
4662 F:      net/ipv4/gre_offload.c
4663 F:      include/net/gre.h
4664
4665 GRETH 10/100/1G Ethernet MAC device driver
4666 M:      Kristoffer Glembo <kristoffer@gaisler.com>
4667 L:      netdev@vger.kernel.org
4668 S:      Maintained
4669 F:      drivers/net/ethernet/aeroflex/
4670
4671 GSPCA FINEPIX SUBDRIVER
4672 M:      Frank Zago <frank@zago.net>
4673 L:      linux-media@vger.kernel.org
4674 T:      git git://linuxtv.org/media_tree.git
4675 S:      Maintained
4676 F:      drivers/media/usb/gspca/finepix.c
4677
4678 GSPCA GL860 SUBDRIVER
4679 M:      Olivier Lorin <o.lorin@laposte.net>
4680 L:      linux-media@vger.kernel.org
4681 T:      git git://linuxtv.org/media_tree.git
4682 S:      Maintained
4683 F:      drivers/media/usb/gspca/gl860/
4684
4685 GSPCA M5602 SUBDRIVER
4686 M:      Erik Andren <erik.andren@gmail.com>
4687 L:      linux-media@vger.kernel.org
4688 T:      git git://linuxtv.org/media_tree.git
4689 S:      Maintained
4690 F:      drivers/media/usb/gspca/m5602/
4691
4692 GSPCA PAC207 SONIXB SUBDRIVER
4693 M:      Hans de Goede <hdegoede@redhat.com>
4694 L:      linux-media@vger.kernel.org
4695 T:      git git://linuxtv.org/media_tree.git
4696 S:      Maintained
4697 F:      drivers/media/usb/gspca/pac207.c
4698
4699 GSPCA SN9C20X SUBDRIVER
4700 M:      Brian Johnson <brijohn@gmail.com>
4701 L:      linux-media@vger.kernel.org
4702 T:      git git://linuxtv.org/media_tree.git
4703 S:      Maintained
4704 F:      drivers/media/usb/gspca/sn9c20x.c
4705
4706 GSPCA T613 SUBDRIVER
4707 M:      Leandro Costantino <lcostantino@gmail.com>
4708 L:      linux-media@vger.kernel.org
4709 T:      git git://linuxtv.org/media_tree.git
4710 S:      Maintained
4711 F:      drivers/media/usb/gspca/t613.c
4712
4713 GSPCA USB WEBCAM DRIVER
4714 M:      Hans de Goede <hdegoede@redhat.com>
4715 L:      linux-media@vger.kernel.org
4716 T:      git git://linuxtv.org/media_tree.git
4717 S:      Maintained
4718 F:      drivers/media/usb/gspca/
4719
4720 GUID PARTITION TABLE (GPT)
4721 M:      Davidlohr Bueso <dave@stgolabs.net>
4722 L:      linux-efi@vger.kernel.org
4723 S:      Maintained
4724 F:      block/partitions/efi.*
4725
4726 STK1160 USB VIDEO CAPTURE DRIVER
4727 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
4728 L:      linux-media@vger.kernel.org
4729 T:      git git://linuxtv.org/media_tree.git
4730 S:      Maintained
4731 F:      drivers/media/usb/stk1160/
4732
4733 H8/300 ARCHITECTURE
4734 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
4735 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
4736 W:      http://uclinux-h8.sourceforge.jp
4737 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
4738 S:      Maintained
4739 F:      arch/h8300/
4740 F:      drivers/clocksource/h8300_*.c
4741 F:      drivers/clk/h8300/
4742 F:      drivers/irqchip/irq-renesas-h8*.c
4743
4744 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
4745 M:      Frank Seidel <frank@f-seidel.de>
4746 L:      platform-driver-x86@vger.kernel.org
4747 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
4748 S:      Maintained
4749 F:      drivers/platform/x86/hdaps.c
4750
4751 HDPVR USB VIDEO ENCODER DRIVER
4752 M:      Hans Verkuil <hverkuil@xs4all.nl>
4753 L:      linux-media@vger.kernel.org
4754 T:      git git://linuxtv.org/media_tree.git
4755 W:      http://linuxtv.org
4756 S:      Odd Fixes
4757 F:      drivers/media/usb/hdpvr/
4758
4759 HWPOISON MEMORY FAILURE HANDLING
4760 M:      Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
4761 L:      linux-mm@kvack.org
4762 S:      Maintained
4763 F:      mm/memory-failure.c
4764 F:      mm/hwpoison-inject.c
4765
4766 HYPERVISOR VIRTUAL CONSOLE DRIVER
4767 L:      linuxppc-dev@lists.ozlabs.org
4768 S:      Odd Fixes
4769 F:      drivers/tty/hvc/
4770
4771 HACKRF MEDIA DRIVER
4772 M:      Antti Palosaari <crope@iki.fi>
4773 L:      linux-media@vger.kernel.org
4774 W:      http://linuxtv.org/
4775 W:      http://palosaari.fi/linux/
4776 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4777 T:      git git://linuxtv.org/anttip/media_tree.git
4778 S:      Maintained
4779 F:      drivers/media/usb/hackrf/
4780
4781 HARDWARE MONITORING
4782 M:      Jean Delvare <jdelvare@suse.com>
4783 M:      Guenter Roeck <linux@roeck-us.net>
4784 L:      lm-sensors@lm-sensors.org
4785 W:      http://www.lm-sensors.org/
4786 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/
4787 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
4788 S:      Maintained
4789 F:      Documentation/hwmon/
4790 F:      drivers/hwmon/
4791 F:      include/linux/hwmon*.h
4792
4793 HARDWARE RANDOM NUMBER GENERATOR CORE
4794 M:      Matt Mackall <mpm@selenic.com>
4795 M:      Herbert Xu <herbert@gondor.apana.org.au>
4796 L:      linux-crypto@vger.kernel.org
4797 S:      Odd fixes
4798 F:      Documentation/hw_random.txt
4799 F:      drivers/char/hw_random/
4800 F:      include/linux/hw_random.h
4801
4802 HARDWARE SPINLOCK CORE
4803 M:      Ohad Ben-Cohen <ohad@wizery.com>
4804 S:      Maintained
4805 F:      Documentation/hwspinlock.txt
4806 F:      drivers/hwspinlock/hwspinlock_*
4807 F:      include/linux/hwspinlock.h
4808
4809 HARMONY SOUND DRIVER
4810 L:      linux-parisc@vger.kernel.org
4811 S:      Maintained
4812 F:      sound/parisc/harmony.*
4813
4814 HD29L2 MEDIA DRIVER
4815 M:      Antti Palosaari <crope@iki.fi>
4816 L:      linux-media@vger.kernel.org
4817 W:      http://linuxtv.org/
4818 W:      http://palosaari.fi/linux/
4819 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4820 T:      git git://linuxtv.org/anttip/media_tree.git
4821 S:      Maintained
4822 F:      drivers/media/dvb-frontends/hd29l2*
4823
4824 HEWLETT-PACKARD SMART2 RAID DRIVER
4825 L:      iss_storagedev@hp.com
4826 S:      Orphan
4827 F:      Documentation/blockdev/cpqarray.txt
4828 F:      drivers/block/cpqarray.*
4829
4830 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
4831 M:      Don Brace <don.brace@pmcs.com>
4832 L:      iss_storagedev@hp.com
4833 L:      storagedev@pmcs.com
4834 L:      linux-scsi@vger.kernel.org
4835 S:      Supported
4836 F:      Documentation/scsi/hpsa.txt
4837 F:      drivers/scsi/hpsa*.[ch]
4838 F:      include/linux/cciss*.h
4839 F:      include/uapi/linux/cciss*.h
4840
4841 HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
4842 M:      Don Brace <don.brace@pmcs.com>
4843 L:      iss_storagedev@hp.com
4844 L:      storagedev@pmcs.com
4845 L:      linux-scsi@vger.kernel.org
4846 S:      Supported
4847 F:      Documentation/blockdev/cciss.txt
4848 F:      drivers/block/cciss*
4849 F:      include/linux/cciss_ioctl.h
4850 F:      include/uapi/linux/cciss_ioctl.h
4851
4852 HFS FILESYSTEM
4853 L:      linux-fsdevel@vger.kernel.org
4854 S:      Orphan
4855 F:      Documentation/filesystems/hfs.txt
4856 F:      fs/hfs/
4857
4858 HFSPLUS FILESYSTEM
4859 L:      linux-fsdevel@vger.kernel.org
4860 S:      Orphan
4861 F:      Documentation/filesystems/hfsplus.txt
4862 F:      fs/hfsplus/
4863
4864 HGA FRAMEBUFFER DRIVER
4865 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
4866 L:      linux-nvidia@lists.surfsouth.com
4867 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
4868 S:      Maintained
4869 F:      drivers/video/fbdev/hgafb.c
4870
4871 HIBERNATION (aka Software Suspend, aka swsusp)
4872 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4873 M:      Pavel Machek <pavel@ucw.cz>
4874 L:      linux-pm@vger.kernel.org
4875 S:      Supported
4876 F:      arch/x86/power/
4877 F:      drivers/base/power/
4878 F:      kernel/power/
4879 F:      include/linux/suspend.h
4880 F:      include/linux/freezer.h
4881 F:      include/linux/pm.h
4882 F:      arch/*/include/asm/suspend*.h
4883
4884 HID CORE LAYER
4885 M:      Jiri Kosina <jikos@kernel.org>
4886 L:      linux-input@vger.kernel.org
4887 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
4888 S:      Maintained
4889 F:      drivers/hid/
4890 F:      include/linux/hid*
4891 F:      include/uapi/linux/hid*
4892
4893 HID SENSOR HUB DRIVERS
4894 M:      Jiri Kosina <jikos@kernel.org>
4895 M:      Jonathan Cameron <jic23@kernel.org>
4896 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
4897 L:      linux-input@vger.kernel.org
4898 L:      linux-iio@vger.kernel.org
4899 S:      Maintained
4900 F:      Documentation/hid/hid-sensor*
4901 F:      drivers/hid/hid-sensor-*
4902 F:      drivers/iio/*/hid-*
4903 F:      include/linux/hid-sensor-*
4904
4905 HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
4906 M:      Thomas Gleixner <tglx@linutronix.de>
4907 L:      linux-kernel@vger.kernel.org
4908 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4909 S:      Maintained
4910 F:      Documentation/timers/
4911 F:      kernel/time/hrtimer.c
4912 F:      kernel/time/clockevents.c
4913 F:      kernel/time/tick*.*
4914 F:      kernel/time/timer_*.c
4915 F:      include/linux/clockchips.h
4916 F:      include/linux/hrtimer.h
4917
4918 HIGH-SPEED SCC DRIVER FOR AX.25
4919 L:      linux-hams@vger.kernel.org
4920 S:      Orphan
4921 F:      drivers/net/hamradio/dmascc.c
4922 F:      drivers/net/hamradio/scc.c
4923
4924 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
4925 M:      HighPoint Linux Team <linux@highpoint-tech.com>
4926 W:      http://www.highpoint-tech.com
4927 S:      Supported
4928 F:      Documentation/scsi/hptiop.txt
4929 F:      drivers/scsi/hptiop.c
4930
4931 HIPPI
4932 M:      Jes Sorensen <jes@trained-monkey.org>
4933 L:      linux-hippi@sunsite.dk
4934 S:      Maintained
4935 F:      include/linux/hippidevice.h
4936 F:      include/uapi/linux/if_hippi.h
4937 F:      net/802/hippi.c
4938 F:      drivers/net/hippi/
4939
4940 HOST AP DRIVER
4941 M:      Jouni Malinen <j@w1.fi>
4942 L:      hostap@shmoo.com (subscribers-only)
4943 L:      linux-wireless@vger.kernel.org
4944 W:      http://hostap.epitest.fi/
4945 S:      Maintained
4946 F:      drivers/net/wireless/hostap/
4947
4948 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
4949 L:      platform-driver-x86@vger.kernel.org
4950 S:      Orphan
4951 F:      drivers/platform/x86/tc1100-wmi.c
4952
4953 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
4954 M:      Jaroslav Kysela <perex@perex.cz>
4955 S:      Maintained
4956 F:      drivers/net/ethernet/hp/hp100.*
4957
4958 HPET:   High Precision Event Timers driver
4959 M:      Clemens Ladisch <clemens@ladisch.de>
4960 S:      Maintained
4961 F:      Documentation/timers/hpet.txt
4962 F:      drivers/char/hpet.c
4963 F:      include/linux/hpet.h
4964 F:      include/uapi/linux/hpet.h
4965
4966 HPET:   x86
4967 S:      Orphan
4968 F:      arch/x86/kernel/hpet.c
4969 F:      arch/x86/include/asm/hpet.h
4970
4971 HPFS FILESYSTEM
4972 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
4973 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
4974 S:      Maintained
4975 F:      fs/hpfs/
4976
4977 HSI SUBSYSTEM
4978 M:      Sebastian Reichel <sre@kernel.org>
4979 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
4980 S:      Maintained
4981 F:      Documentation/ABI/testing/sysfs-bus-hsi
4982 F:      Documentation/hsi.txt
4983 F:      drivers/hsi/
4984 F:      include/linux/hsi/
4985 F:      include/uapi/linux/hsi/
4986
4987 HSO 3G MODEM DRIVER
4988 M:      Jan Dumon <j.dumon@option.com>
4989 W:      http://www.pharscape.org
4990 S:      Maintained
4991 F:      drivers/net/usb/hso.c
4992
4993 HSR NETWORK PROTOCOL
4994 M:      Arvid Brodin <arvid.brodin@alten.se>
4995 L:      netdev@vger.kernel.org
4996 S:      Maintained
4997 F:      net/hsr/
4998
4999 HTCPEN TOUCHSCREEN DRIVER
5000 M:      Pau Oliva Fora <pof@eslack.org>
5001 L:      linux-input@vger.kernel.org
5002 S:      Maintained
5003 F:      drivers/input/touchscreen/htcpen.c
5004
5005 HUGETLB FILESYSTEM
5006 M:      Nadia Yvette Chambers <nyc@holomorphy.com>
5007 S:      Maintained
5008 F:      fs/hugetlbfs/
5009
5010 Hyper-V CORE AND DRIVERS
5011 M:      "K. Y. Srinivasan" <kys@microsoft.com>
5012 M:      Haiyang Zhang <haiyangz@microsoft.com>
5013 L:      devel@linuxdriverproject.org
5014 S:      Maintained
5015 F:      arch/x86/include/asm/mshyperv.h
5016 F:      arch/x86/include/uapi/asm/hyperv.h
5017 F:      arch/x86/kernel/cpu/mshyperv.c
5018 F:      drivers/hid/hid-hyperv.c
5019 F:      drivers/hv/
5020 F:      drivers/input/serio/hyperv-keyboard.c
5021 F:      drivers/net/hyperv/
5022 F:      drivers/scsi/storvsc_drv.c
5023 F:      drivers/video/fbdev/hyperv_fb.c
5024 F:      include/linux/hyperv.h
5025 F:      tools/hv/
5026 F:      Documentation/ABI/stable/sysfs-bus-vmbus
5027
5028 I2C OVER PARALLEL PORT
5029 M:      Jean Delvare <jdelvare@suse.com>
5030 L:      linux-i2c@vger.kernel.org
5031 S:      Maintained
5032 F:      Documentation/i2c/busses/i2c-parport
5033 F:      Documentation/i2c/busses/i2c-parport-light
5034 F:      drivers/i2c/busses/i2c-parport.c
5035 F:      drivers/i2c/busses/i2c-parport-light.c
5036
5037 I2C/SMBUS CONTROLLER DRIVERS FOR PC
5038 M:      Jean Delvare <jdelvare@suse.com>
5039 L:      linux-i2c@vger.kernel.org
5040 S:      Maintained
5041 F:      Documentation/i2c/busses/i2c-ali1535
5042 F:      Documentation/i2c/busses/i2c-ali1563
5043 F:      Documentation/i2c/busses/i2c-ali15x3
5044 F:      Documentation/i2c/busses/i2c-amd756
5045 F:      Documentation/i2c/busses/i2c-amd8111
5046 F:      Documentation/i2c/busses/i2c-i801
5047 F:      Documentation/i2c/busses/i2c-nforce2
5048 F:      Documentation/i2c/busses/i2c-piix4
5049 F:      Documentation/i2c/busses/i2c-sis5595
5050 F:      Documentation/i2c/busses/i2c-sis630
5051 F:      Documentation/i2c/busses/i2c-sis96x
5052 F:      Documentation/i2c/busses/i2c-via
5053 F:      Documentation/i2c/busses/i2c-viapro
5054 F:      drivers/i2c/busses/i2c-ali1535.c
5055 F:      drivers/i2c/busses/i2c-ali1563.c
5056 F:      drivers/i2c/busses/i2c-ali15x3.c
5057 F:      drivers/i2c/busses/i2c-amd756.c
5058 F:      drivers/i2c/busses/i2c-amd756-s4882.c
5059 F:      drivers/i2c/busses/i2c-amd8111.c
5060 F:      drivers/i2c/busses/i2c-i801.c
5061 F:      drivers/i2c/busses/i2c-isch.c
5062 F:      drivers/i2c/busses/i2c-nforce2.c
5063 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
5064 F:      drivers/i2c/busses/i2c-piix4.c
5065 F:      drivers/i2c/busses/i2c-sis5595.c
5066 F:      drivers/i2c/busses/i2c-sis630.c
5067 F:      drivers/i2c/busses/i2c-sis96x.c
5068 F:      drivers/i2c/busses/i2c-via.c
5069 F:      drivers/i2c/busses/i2c-viapro.c
5070
5071 I2C/SMBUS ISMT DRIVER
5072 M:      Seth Heasley <seth.heasley@intel.com>
5073 M:      Neil Horman <nhorman@tuxdriver.com>
5074 L:      linux-i2c@vger.kernel.org
5075 F:      drivers/i2c/busses/i2c-ismt.c
5076 F:      Documentation/i2c/busses/i2c-ismt
5077
5078 I2C/SMBUS STUB DRIVER
5079 M:      Jean Delvare <jdelvare@suse.com>
5080 L:      linux-i2c@vger.kernel.org
5081 S:      Maintained
5082 F:      drivers/i2c/i2c-stub.c
5083
5084 I2C SUBSYSTEM
5085 M:      Wolfram Sang <wsa@the-dreams.de>
5086 L:      linux-i2c@vger.kernel.org
5087 W:      https://i2c.wiki.kernel.org/
5088 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
5089 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
5090 S:      Maintained
5091 F:      Documentation/devicetree/bindings/i2c/
5092 F:      Documentation/i2c/
5093 F:      drivers/i2c/
5094 F:      include/linux/i2c.h
5095 F:      include/linux/i2c-*.h
5096 F:      include/uapi/linux/i2c.h
5097 F:      include/uapi/linux/i2c-*.h
5098
5099 I2C ACPI SUPPORT
5100 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
5101 L:      linux-i2c@vger.kernel.org
5102 L:      linux-acpi@vger.kernel.org
5103 S:      Maintained
5104
5105 I2C-TAOS-EVM DRIVER
5106 M:      Jean Delvare <jdelvare@suse.com>
5107 L:      linux-i2c@vger.kernel.org
5108 S:      Maintained
5109 F:      Documentation/i2c/busses/i2c-taos-evm
5110 F:      drivers/i2c/busses/i2c-taos-evm.c
5111
5112 I2C-TINY-USB DRIVER
5113 M:      Till Harbaum <till@harbaum.org>
5114 L:      linux-i2c@vger.kernel.org
5115 W:      http://www.harbaum.org/till/i2c_tiny_usb
5116 S:      Maintained
5117 F:      drivers/i2c/busses/i2c-tiny-usb.c
5118
5119 i386 BOOT CODE
5120 M:      "H. Peter Anvin" <hpa@zytor.com>
5121 S:      Maintained
5122 F:      arch/x86/boot/
5123
5124 i386 SETUP CODE / CPU ERRATA WORKAROUNDS
5125 M:      "H. Peter Anvin" <hpa@zytor.com>
5126 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
5127 S:      Maintained
5128
5129 IA64 (Itanium) PLATFORM
5130 M:      Tony Luck <tony.luck@intel.com>
5131 M:      Fenghua Yu <fenghua.yu@intel.com>
5132 L:      linux-ia64@vger.kernel.org
5133 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
5134 S:      Maintained
5135 F:      arch/ia64/
5136
5137 IBM Power VMX Cryptographic instructions
5138 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5139 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5140 L:      linux-crypto@vger.kernel.org
5141 S:      Supported
5142 F:      drivers/crypto/vmx/Makefile
5143 F:      drivers/crypto/vmx/Kconfig
5144 F:      drivers/crypto/vmx/vmx.c
5145 F:      drivers/crypto/vmx/aes*
5146 F:      drivers/crypto/vmx/ghash*
5147 F:      drivers/crypto/vmx/ppc-xlate.pl
5148
5149 IBM Power in-Nest Crypto Acceleration
5150 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5151 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5152 L:      linux-crypto@vger.kernel.org
5153 S:      Supported
5154 F:      drivers/crypto/nx/Makefile
5155 F:      drivers/crypto/nx/Kconfig
5156 F:      drivers/crypto/nx/nx-aes*
5157 F:      drivers/crypto/nx/nx-sha*
5158 F:      drivers/crypto/nx/nx.*
5159 F:      drivers/crypto/nx/nx_csbcpb.h
5160 F:      drivers/crypto/nx/nx_debugfs.h
5161
5162 IBM Power 842 compression accelerator
5163 M:      Dan Streetman <ddstreet@ieee.org>
5164 S:      Supported
5165 F:      drivers/crypto/nx/Makefile
5166 F:      drivers/crypto/nx/Kconfig
5167 F:      drivers/crypto/nx/nx-842*
5168 F:      include/linux/sw842.h
5169 F:      crypto/842.c
5170 F:      lib/842/
5171
5172 IBM Power Linux RAID adapter
5173 M:      Brian King <brking@us.ibm.com>
5174 S:      Supported
5175 F:      drivers/scsi/ipr.*
5176
5177 IBM Power Virtual Ethernet Device Driver
5178 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
5179 L:      netdev@vger.kernel.org
5180 S:      Supported
5181 F:      drivers/net/ethernet/ibm/ibmveth.*
5182
5183 IBM Power Virtual SCSI Device Drivers
5184 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5185 L:      linux-scsi@vger.kernel.org
5186 S:      Supported
5187 F:      drivers/scsi/ibmvscsi/ibmvscsi*
5188 F:      drivers/scsi/ibmvscsi/viosrp.h
5189
5190 IBM Power Virtual FC Device Drivers
5191 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5192 L:      linux-scsi@vger.kernel.org
5193 S:      Supported
5194 F:      drivers/scsi/ibmvscsi/ibmvfc*
5195
5196 IBM ServeRAID RAID DRIVER
5197 S:      Orphan
5198 F:      drivers/scsi/ips.*
5199
5200 ICH LPC AND GPIO DRIVER
5201 M:      Peter Tyser <ptyser@xes-inc.com>
5202 S:      Maintained
5203 F:      drivers/mfd/lpc_ich.c
5204 F:      drivers/gpio/gpio-ich.c
5205
5206 IDE SUBSYSTEM
5207 M:      "David S. Miller" <davem@davemloft.net>
5208 L:      linux-ide@vger.kernel.org
5209 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
5210 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
5211 S:      Maintained
5212 F:      Documentation/ide/
5213 F:      drivers/ide/
5214 F:      include/linux/ide.h
5215
5216 IDEAPAD LAPTOP EXTRAS DRIVER
5217 M:      Ike Panhc <ike.pan@canonical.com>
5218 L:      platform-driver-x86@vger.kernel.org
5219 W:      http://launchpad.net/ideapad-laptop
5220 S:      Maintained
5221 F:      drivers/platform/x86/ideapad-laptop.c
5222
5223 IDEAPAD LAPTOP SLIDEBAR DRIVER
5224 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
5225 L:      linux-input@vger.kernel.org
5226 W:      https://github.com/o2genum/ideapad-slidebar
5227 S:      Maintained
5228 F:      drivers/input/misc/ideapad_slidebar.c
5229
5230 IDE/ATAPI DRIVERS
5231 M:      Borislav Petkov <bp@alien8.de>
5232 L:      linux-ide@vger.kernel.org
5233 S:      Maintained
5234 F:      Documentation/cdrom/ide-cd
5235 F:      drivers/ide/ide-cd*
5236
5237 IDLE-I7300
5238 M:      Andy Henroid <andrew.d.henroid@intel.com>
5239 L:      linux-pm@vger.kernel.org
5240 S:      Supported
5241 F:      drivers/idle/i7300_idle.c
5242
5243 IEEE 802.15.4 SUBSYSTEM
5244 M:      Alexander Aring <alex.aring@gmail.com>
5245 L:      linux-wpan@vger.kernel.org
5246 W:      https://github.com/linux-wpan
5247 T:      git git://github.com/linux-wpan/linux-wpan-next.git
5248 S:      Maintained
5249 F:      net/ieee802154/
5250 F:      net/mac802154/
5251 F:      drivers/net/ieee802154/
5252 F:      include/linux/nl802154.h
5253 F:      include/linux/ieee802154.h
5254 F:      include/net/nl802154.h
5255 F:      include/net/mac802154.h
5256 F:      include/net/af_ieee802154.h
5257 F:      include/net/cfg802154.h
5258 F:      include/net/ieee802154_netdev.h
5259 F:      Documentation/networking/ieee802154.txt
5260
5261 IGORPLUG-USB IR RECEIVER
5262 M:      Sean Young <sean@mess.org>
5263 L:      linux-media@vger.kernel.org
5264 S:      Maintained
5265 F:      drivers/media/rc/igorplugusb.c
5266
5267 IGUANAWORKS USB IR TRANSCEIVER
5268 M:      Sean Young <sean@mess.org>
5269 L:      linux-media@vger.kernel.org
5270 S:      Maintained
5271 F:      drivers/media/rc/iguanair.c
5272
5273 IIO SUBSYSTEM AND DRIVERS
5274 M:      Jonathan Cameron <jic23@kernel.org>
5275 R:      Hartmut Knaack <knaack.h@gmx.de>
5276 R:      Lars-Peter Clausen <lars@metafoo.de>
5277 R:      Peter Meerwald <pmeerw@pmeerw.net>
5278 L:      linux-iio@vger.kernel.org
5279 S:      Maintained
5280 F:      drivers/iio/
5281 F:      drivers/staging/iio/
5282 F:      include/linux/iio/
5283 F:      tools/iio/
5284
5285 IKANOS/ADI EAGLE ADSL USB DRIVER
5286 M:      Matthieu Castet <castet.matthieu@free.fr>
5287 M:      Stanislaw Gruszka <stf_xl@wp.pl>
5288 S:      Maintained
5289 F:      drivers/usb/atm/ueagle-atm.c
5290
5291 INA209 HARDWARE MONITOR DRIVER
5292 M:      Guenter Roeck <linux@roeck-us.net>
5293 L:      lm-sensors@lm-sensors.org
5294 S:      Maintained
5295 F:      Documentation/hwmon/ina209
5296 F:      Documentation/devicetree/bindings/i2c/ina209.txt
5297 F:      drivers/hwmon/ina209.c
5298
5299 INA2XX HARDWARE MONITOR DRIVER
5300 M:      Guenter Roeck <linux@roeck-us.net>
5301 L:      lm-sensors@lm-sensors.org
5302 S:      Maintained
5303 F:      Documentation/hwmon/ina2xx
5304 F:      drivers/hwmon/ina2xx.c
5305 F:      include/linux/platform_data/ina2xx.h
5306
5307 INDUSTRY PACK SUBSYSTEM (IPACK)
5308 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
5309 M:      Jens Taprogge <jens.taprogge@taprogge.org>
5310 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5311 L:      industrypack-devel@lists.sourceforge.net
5312 W:      http://industrypack.sourceforge.net
5313 S:      Maintained
5314 F:      drivers/ipack/
5315
5316 INGENIC JZ4780 DMA Driver
5317 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
5318 S:      Maintained
5319 F:      drivers/dma/dma-jz4780.c
5320
5321 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
5322 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
5323 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
5324 L:      linux-ima-devel@lists.sourceforge.net
5325 L:      linux-ima-user@lists.sourceforge.net
5326 L:      linux-security-module@vger.kernel.org
5327 S:      Supported
5328 F:      security/integrity/ima/
5329
5330 IMGTEC IR DECODER DRIVER
5331 M:      James Hogan <james.hogan@imgtec.com>
5332 S:      Maintained
5333 F:      drivers/media/rc/img-ir/
5334
5335 IMS TWINTURBO FRAMEBUFFER DRIVER
5336 L:      linux-fbdev@vger.kernel.org
5337 S:      Orphan
5338 F:      drivers/video/fbdev/imsttfb.c
5339
5340 INFINIBAND SUBSYSTEM
5341 M:      Doug Ledford <dledford@redhat.com>
5342 M:      Sean Hefty <sean.hefty@intel.com>
5343 M:      Hal Rosenstock <hal.rosenstock@gmail.com>
5344 L:      linux-rdma@vger.kernel.org
5345 W:      http://www.openfabrics.org/
5346 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5347 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git
5348 S:      Supported
5349 F:      Documentation/infiniband/
5350 F:      drivers/infiniband/
5351 F:      drivers/staging/rdma/
5352 F:      include/uapi/linux/if_infiniband.h
5353 F:      include/uapi/rdma/
5354 F:      include/rdma/
5355
5356 INOTIFY
5357 M:      John McCutchan <john@johnmccutchan.com>
5358 M:      Robert Love <rlove@rlove.org>
5359 M:      Eric Paris <eparis@parisplace.org>
5360 S:      Maintained
5361 F:      Documentation/filesystems/inotify.txt
5362 F:      fs/notify/inotify/
5363 F:      include/linux/inotify.h
5364 F:      include/uapi/linux/inotify.h
5365
5366 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
5367 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
5368 L:      linux-input@vger.kernel.org
5369 Q:      http://patchwork.kernel.org/project/linux-input/list/
5370 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
5371 S:      Maintained
5372 F:      drivers/input/
5373 F:      include/linux/input.h
5374 F:      include/uapi/linux/input.h
5375 F:      include/linux/input/
5376
5377 INPUT MULTITOUCH (MT) PROTOCOL
5378 M:      Henrik Rydberg <rydberg@bitmath.org>
5379 L:      linux-input@vger.kernel.org
5380 S:      Odd fixes
5381 F:      Documentation/input/multi-touch-protocol.txt
5382 F:      drivers/input/input-mt.c
5383 K:      \b(ABS|SYN)_MT_
5384
5385 INTEL ASoC BDW/HSW DRIVERS
5386 M:      Jie Yang <yang.jie@linux.intel.com>
5387 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5388 S:      Supported
5389 F:      sound/soc/intel/common/sst-dsp*
5390 F:      sound/soc/intel/common/sst-firmware.c
5391 F:      sound/soc/intel/boards/broadwell.c
5392 F:      sound/soc/intel/haswell/
5393
5394 INTEL C600 SERIES SAS CONTROLLER DRIVER
5395 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
5396 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
5397 L:      linux-scsi@vger.kernel.org
5398 T:      git git://git.code.sf.net/p/intel-sas/isci
5399 S:      Supported
5400 F:      drivers/scsi/isci/
5401
5402 INTEL IDLE DRIVER
5403 M:      Len Brown <lenb@kernel.org>
5404 L:      linux-pm@vger.kernel.org
5405 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
5406 S:      Supported
5407 F:      drivers/idle/intel_idle.c
5408
5409 INTEL PSTATE DRIVER
5410 M:      Kristen Carlson Accardi <kristen@linux.intel.com>
5411 L:      linux-pm@vger.kernel.org
5412 S:      Supported
5413 F:      drivers/cpufreq/intel_pstate.c
5414
5415 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
5416 M:      Maik Broemme <mbroemme@plusserver.de>
5417 L:      linux-fbdev@vger.kernel.org
5418 S:      Maintained
5419 F:      Documentation/fb/intelfb.txt
5420 F:      drivers/video/fbdev/intelfb/
5421
5422 INTEL 810/815 FRAMEBUFFER DRIVER
5423 M:      Antonino Daplas <adaplas@gmail.com>
5424 L:      linux-fbdev@vger.kernel.org
5425 S:      Maintained
5426 F:      drivers/video/fbdev/i810/
5427
5428 INTEL MENLOW THERMAL DRIVER
5429 M:      Sujith Thomas <sujith.thomas@intel.com>
5430 L:      platform-driver-x86@vger.kernel.org
5431 W:      https://01.org/linux-acpi
5432 S:      Supported
5433 F:      drivers/platform/x86/intel_menlow.c
5434
5435 INTEL IA32 MICROCODE UPDATE SUPPORT
5436 M:      Borislav Petkov <bp@alien8.de>
5437 S:      Maintained
5438 F:      arch/x86/kernel/cpu/microcode/core*
5439 F:      arch/x86/kernel/cpu/microcode/intel*
5440
5441 INTEL I/OAT DMA DRIVER
5442 M:      Dave Jiang <dave.jiang@intel.com>
5443 R:      Dan Williams <dan.j.williams@intel.com>
5444 L:      dmaengine@vger.kernel.org
5445 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5446 S:      Supported
5447 F:      drivers/dma/ioat*
5448
5449 INTEL IOMMU (VT-d)
5450 M:      David Woodhouse <dwmw2@infradead.org>
5451 L:      iommu@lists.linux-foundation.org
5452 T:      git git://git.infradead.org/iommu-2.6.git
5453 S:      Supported
5454 F:      drivers/iommu/intel-iommu.c
5455 F:      include/linux/intel-iommu.h
5456
5457 INTEL IOP-ADMA DMA DRIVER
5458 R:      Dan Williams <dan.j.williams@intel.com>
5459 S:      Odd fixes
5460 F:      drivers/dma/iop-adma.c
5461
5462 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
5463 M:      Krzysztof Halasa <khalasa@piap.pl>
5464 S:      Maintained
5465 F:      arch/arm/mach-ixp4xx/include/mach/qmgr.h
5466 F:      arch/arm/mach-ixp4xx/include/mach/npe.h
5467 F:      arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
5468 F:      arch/arm/mach-ixp4xx/ixp4xx_npe.c
5469 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
5470 F:      drivers/net/wan/ixp4xx_hss.c
5471
5472 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
5473 M:      Deepak Saxena <dsaxena@plexity.net>
5474 S:      Maintained
5475 F:      drivers/char/hw_random/ixp4xx-rng.c
5476
5477 INTEL ETHERNET DRIVERS
5478 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
5479 R:      Jesse Brandeburg <jesse.brandeburg@intel.com>
5480 R:      Shannon Nelson <shannon.nelson@intel.com>
5481 R:      Carolyn Wyborny <carolyn.wyborny@intel.com>
5482 R:      Don Skidmore <donald.c.skidmore@intel.com>
5483 R:      Matthew Vick <matthew.vick@intel.com>
5484 R:      John Ronciak <john.ronciak@intel.com>
5485 R:      Mitch Williams <mitch.a.williams@intel.com>
5486 L:      intel-wired-lan@lists.osuosl.org
5487 W:      http://www.intel.com/support/feedback.htm
5488 W:      http://e1000.sourceforge.net/
5489 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
5490 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
5491 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
5492 S:      Supported
5493 F:      Documentation/networking/e100.txt
5494 F:      Documentation/networking/e1000.txt
5495 F:      Documentation/networking/e1000e.txt
5496 F:      Documentation/networking/igb.txt
5497 F:      Documentation/networking/igbvf.txt
5498 F:      Documentation/networking/ixgb.txt
5499 F:      Documentation/networking/ixgbe.txt
5500 F:      Documentation/networking/ixgbevf.txt
5501 F:      Documentation/networking/i40e.txt
5502 F:      Documentation/networking/i40evf.txt
5503 F:      drivers/net/ethernet/intel/
5504 F:      drivers/net/ethernet/intel/*/
5505
5506 INTEL-MID GPIO DRIVER
5507 M:      David Cohen <david.a.cohen@linux.intel.com>
5508 L:      linux-gpio@vger.kernel.org
5509 S:      Maintained
5510 F:      drivers/gpio/gpio-intel-mid.c
5511
5512 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
5513 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
5514 L:      linux-wireless@vger.kernel.org
5515 S:      Maintained
5516 F:      Documentation/networking/README.ipw2100
5517 F:      Documentation/networking/README.ipw2200
5518 F:      drivers/net/wireless/ipw2x00/
5519
5520 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
5521 M:      Richard L Maliszewski <richard.l.maliszewski@intel.com>
5522 M:      Gang Wei <gang.wei@intel.com>
5523 M:      Shane Wang <shane.wang@intel.com>
5524 L:      tboot-devel@lists.sourceforge.net
5525 W:      http://tboot.sourceforge.net
5526 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
5527 S:      Supported
5528 F:      Documentation/intel_txt.txt
5529 F:      include/linux/tboot.h
5530 F:      arch/x86/kernel/tboot.c
5531
5532 INTEL WIRELESS WIMAX CONNECTION 2400
5533 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
5534 M:      linux-wimax@intel.com
5535 L:      wimax@linuxwimax.org (subscribers-only)
5536 S:      Supported
5537 W:      http://linuxwimax.org
5538 F:      Documentation/wimax/README.i2400m
5539 F:      drivers/net/wimax/i2400m/
5540 F:      include/uapi/linux/wimax/i2400m.h
5541
5542 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
5543 M:      Stanislaw Gruszka <sgruszka@redhat.com>
5544 L:      linux-wireless@vger.kernel.org
5545 S:      Supported
5546 F:      drivers/net/wireless/iwlegacy/
5547
5548 INTEL WIRELESS WIFI LINK (iwlwifi)
5549 M:      Johannes Berg <johannes.berg@intel.com>
5550 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
5551 M:      Intel Linux Wireless <ilw@linux.intel.com>
5552 L:      linux-wireless@vger.kernel.org
5553 W:      http://intellinuxwireless.org
5554 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
5555 S:      Supported
5556 F:      drivers/net/wireless/iwlwifi/
5557
5558 INTEL MANAGEMENT ENGINE (mei)
5559 M:      Tomas Winkler <tomas.winkler@intel.com>
5560 L:      linux-kernel@vger.kernel.org
5561 S:      Supported
5562 F:      include/uapi/linux/mei.h
5563 F:      include/linux/mei_cl_bus.h
5564 F:      drivers/misc/mei/*
5565 F:      Documentation/misc-devices/mei/*
5566
5567 INTEL PMC IPC DRIVER
5568 M:      Zha Qipeng<qipeng.zha@intel.com>
5569 L:      platform-driver-x86@vger.kernel.org
5570 S:      Maintained
5571 F:      drivers/platform/x86/intel_pmc_ipc.c
5572 F:      arch/x86/include/asm/intel_pmc_ipc.h
5573
5574 IOC3 ETHERNET DRIVER
5575 M:      Ralf Baechle <ralf@linux-mips.org>
5576 L:      linux-mips@linux-mips.org
5577 S:      Maintained
5578 F:      drivers/net/ethernet/sgi/ioc3-eth.c
5579
5580 IOC3 SERIAL DRIVER
5581 M:      Pat Gefre <pfg@sgi.com>
5582 L:      linux-serial@vger.kernel.org
5583 S:      Maintained
5584 F:      drivers/tty/serial/ioc3_serial.c
5585
5586 IOMMU DRIVERS
5587 M:      Joerg Roedel <joro@8bytes.org>
5588 L:      iommu@lists.linux-foundation.org
5589 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
5590 S:      Maintained
5591 F:      drivers/iommu/
5592
5593 IP MASQUERADING
5594 M:      Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
5595 S:      Maintained
5596 F:      net/ipv4/netfilter/ipt_MASQUERADE.c
5597
5598 IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
5599 M:      Francois Romieu <romieu@fr.zoreil.com>
5600 M:      Sorbica Shieh <sorbica@icplus.com.tw>
5601 L:      netdev@vger.kernel.org
5602 S:      Maintained
5603 F:      drivers/net/ethernet/icplus/ipg.*
5604
5605 IPATH DRIVER
5606 M:      Mike Marciniszyn <infinipath@intel.com>
5607 L:      linux-rdma@vger.kernel.org
5608 S:      Maintained
5609 F:      drivers/staging/rdma/ipath/
5610
5611 IPMI SUBSYSTEM
5612 M:      Corey Minyard <minyard@acm.org>
5613 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
5614 W:      http://openipmi.sourceforge.net/
5615 S:      Supported
5616 F:      Documentation/IPMI.txt
5617 F:      drivers/char/ipmi/
5618 F:      include/linux/ipmi*
5619 F:      include/uapi/linux/ipmi*
5620
5621 QCOM AUDIO (ASoC) DRIVERS
5622 M:      Patrick Lai <plai@codeaurora.org>
5623 M:      Banajit Goswami <bgoswami@codeaurora.org>
5624 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5625 S:      Supported
5626 F:      sound/soc/qcom/
5627
5628 IPS SCSI RAID DRIVER
5629 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
5630 L:      linux-scsi@vger.kernel.org
5631 W:      http://www.adaptec.com/
5632 S:      Maintained
5633 F:      drivers/scsi/ips*
5634
5635 IPVS
5636 M:      Wensong Zhang <wensong@linux-vs.org>
5637 M:      Simon Horman <horms@verge.net.au>
5638 M:      Julian Anastasov <ja@ssi.bg>
5639 L:      netdev@vger.kernel.org
5640 L:      lvs-devel@vger.kernel.org
5641 S:      Maintained
5642 F:      Documentation/networking/ipvs-sysctl.txt
5643 F:      include/net/ip_vs.h
5644 F:      include/uapi/linux/ip_vs.h
5645 F:      net/netfilter/ipvs/
5646
5647 IPWIRELESS DRIVER
5648 M:      Jiri Kosina <jikos@kernel.org>
5649 M:      David Sterba <dsterba@suse.com>
5650 S:      Odd Fixes
5651 F:      drivers/tty/ipwireless/
5652
5653 IPX NETWORK LAYER
5654 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
5655 L:      netdev@vger.kernel.org
5656 S:      Maintained
5657 F:      include/net/ipx.h
5658 F:      include/uapi/linux/ipx.h
5659 F:      net/ipx/
5660
5661 IRDA SUBSYSTEM
5662 M:      Samuel Ortiz <samuel@sortiz.org>
5663 L:      irda-users@lists.sourceforge.net (subscribers-only)
5664 L:      netdev@vger.kernel.org
5665 W:      http://irda.sourceforge.net/
5666 S:      Maintained
5667 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
5668 F:      Documentation/networking/irda.txt
5669 F:      drivers/net/irda/
5670 F:      include/net/irda/
5671 F:      net/irda/
5672
5673 IRQ SUBSYSTEM
5674 M:      Thomas Gleixner <tglx@linutronix.de>
5675 L:      linux-kernel@vger.kernel.org
5676 S:      Maintained
5677 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5678 F:      kernel/irq/
5679
5680 IRQCHIP DRIVERS
5681 M:      Thomas Gleixner <tglx@linutronix.de>
5682 M:      Jason Cooper <jason@lakedaemon.net>
5683 M:      Marc Zyngier <marc.zyngier@arm.com>
5684 L:      linux-kernel@vger.kernel.org
5685 S:      Maintained
5686 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5687 T:      git git://git.infradead.org/users/jcooper/linux.git irqchip/core
5688 F:      Documentation/devicetree/bindings/interrupt-controller/
5689 F:      drivers/irqchip/
5690
5691 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
5692 M:      Jiang Liu <jiang.liu@linux.intel.com>
5693 M:      Marc Zyngier <marc.zyngier@arm.com>
5694 S:      Maintained
5695 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5696 F:      Documentation/IRQ-domain.txt
5697 F:      include/linux/irqdomain.h
5698 F:      kernel/irq/irqdomain.c
5699 F:      kernel/irq/msi.c
5700
5701 ISAPNP
5702 M:      Jaroslav Kysela <perex@perex.cz>
5703 S:      Maintained
5704 F:      Documentation/isapnp.txt
5705 F:      drivers/pnp/isapnp/
5706 F:      include/linux/isapnp.h
5707
5708 ISA RADIO MODULE
5709 M:      Hans Verkuil <hverkuil@xs4all.nl>
5710 L:      linux-media@vger.kernel.org
5711 T:      git git://linuxtv.org/media_tree.git
5712 W:      http://linuxtv.org
5713 S:      Maintained
5714 F:      drivers/media/radio/radio-isa*
5715
5716 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
5717 M:      Peter Jones <pjones@redhat.com>
5718 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
5719 S:      Maintained
5720 F:      drivers/firmware/iscsi_ibft*
5721
5722 ISCSI
5723 M:      Mike Christie <michaelc@cs.wisc.edu>
5724 L:      open-iscsi@googlegroups.com
5725 W:      www.open-iscsi.org
5726 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
5727 S:      Maintained
5728 F:      drivers/scsi/*iscsi*
5729 F:      include/scsi/*iscsi*
5730
5731 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
5732 M:      Or Gerlitz <ogerlitz@mellanox.com>
5733 M:      Sagi Grimberg <sagig@mellanox.com>
5734 M:      Roi Dayan <roid@mellanox.com>
5735 L:      linux-rdma@vger.kernel.org
5736 S:      Supported
5737 W:      http://www.openfabrics.org
5738 W:      www.open-iscsi.org
5739 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5740 F:      drivers/infiniband/ulp/iser/
5741
5742 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
5743 M:      Sagi Grimberg <sagig@mellanox.com>
5744 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
5745 L:      linux-rdma@vger.kernel.org
5746 L:      target-devel@vger.kernel.org
5747 S:      Supported
5748 W:      http://www.linux-iscsi.org
5749 F:      drivers/infiniband/ulp/isert
5750
5751 ISDN SUBSYSTEM
5752 M:      Karsten Keil <isdn@linux-pingi.de>
5753 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5754 L:      netdev@vger.kernel.org
5755 W:      http://www.isdn4linux.de
5756 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
5757 S:      Maintained
5758 F:      Documentation/isdn/
5759 F:      drivers/isdn/
5760 F:      include/linux/isdn.h
5761 F:      include/linux/isdn/
5762 F:      include/uapi/linux/isdn.h
5763 F:      include/uapi/linux/isdn/
5764
5765 ISDN SUBSYSTEM (Eicon active card driver)
5766 M:      Armin Schindler <mac@melware.de>
5767 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5768 W:      http://www.melware.de
5769 S:      Maintained
5770 F:      drivers/isdn/hardware/eicon/
5771
5772 IT87 HARDWARE MONITORING DRIVER
5773 M:      Jean Delvare <jdelvare@suse.com>
5774 L:      lm-sensors@lm-sensors.org
5775 S:      Maintained
5776 F:      Documentation/hwmon/it87
5777 F:      drivers/hwmon/it87.c
5778
5779 IT913X MEDIA DRIVER
5780 M:      Antti Palosaari <crope@iki.fi>
5781 L:      linux-media@vger.kernel.org
5782 W:      http://linuxtv.org/
5783 W:      http://palosaari.fi/linux/
5784 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5785 T:      git git://linuxtv.org/anttip/media_tree.git
5786 S:      Maintained
5787 F:      drivers/media/tuners/it913x*
5788
5789 IVTV VIDEO4LINUX DRIVER
5790 M:      Andy Walls <awalls@md.metrocast.net>
5791 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
5792 L:      linux-media@vger.kernel.org
5793 T:      git git://linuxtv.org/media_tree.git
5794 W:      http://www.ivtvdriver.org
5795 S:      Maintained
5796 F:      Documentation/video4linux/*.ivtv
5797 F:      drivers/media/pci/ivtv/
5798 F:      include/uapi/linux/ivtv*
5799
5800 IX2505V MEDIA DRIVER
5801 M:      Malcolm Priestley <tvboxspy@gmail.com>
5802 L:      linux-media@vger.kernel.org
5803 W:      http://linuxtv.org/
5804 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5805 S:      Maintained
5806 F:      drivers/media/dvb-frontends/ix2505v*
5807
5808 JC42.4 TEMPERATURE SENSOR DRIVER
5809 M:      Guenter Roeck <linux@roeck-us.net>
5810 L:      lm-sensors@lm-sensors.org
5811 S:      Maintained
5812 F:      drivers/hwmon/jc42.c
5813 F:      Documentation/hwmon/jc42
5814
5815 JFS FILESYSTEM
5816 M:      Dave Kleikamp <shaggy@kernel.org>
5817 L:      jfs-discussion@lists.sourceforge.net
5818 W:      http://jfs.sourceforge.net/
5819 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
5820 S:      Maintained
5821 F:      Documentation/filesystems/jfs.txt
5822 F:      fs/jfs/
5823
5824 JME NETWORK DRIVER
5825 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
5826 L:      netdev@vger.kernel.org
5827 S:      Maintained
5828 F:      drivers/net/ethernet/jme.*
5829
5830 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
5831 M:      David Woodhouse <dwmw2@infradead.org>
5832 L:      linux-mtd@lists.infradead.org
5833 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
5834 S:      Maintained
5835 F:      fs/jffs2/
5836 F:      include/uapi/linux/jffs2.h
5837
5838 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
5839 M:      "Theodore Ts'o" <tytso@mit.edu>
5840 M:      Jan Kara <jack@suse.com>
5841 L:      linux-ext4@vger.kernel.org
5842 S:      Maintained
5843 F:      fs/jbd2/
5844 F:      include/linux/jbd2.h
5845
5846 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
5847 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
5848 L:      linux-media@vger.kernel.org
5849 S:      Maintained
5850 F:      drivers/media/platform/rcar_jpu.c
5851
5852 JSM Neo PCI based serial card
5853 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
5854 L:      linux-serial@vger.kernel.org
5855 S:      Maintained
5856 F:      drivers/tty/serial/jsm/
5857
5858 K10TEMP HARDWARE MONITORING DRIVER
5859 M:      Clemens Ladisch <clemens@ladisch.de>
5860 L:      lm-sensors@lm-sensors.org
5861 S:      Maintained
5862 F:      Documentation/hwmon/k10temp
5863 F:      drivers/hwmon/k10temp.c
5864
5865 K8TEMP HARDWARE MONITORING DRIVER
5866 M:      Rudolf Marek <r.marek@assembler.cz>
5867 L:      lm-sensors@lm-sensors.org
5868 S:      Maintained
5869 F:      Documentation/hwmon/k8temp
5870 F:      drivers/hwmon/k8temp.c
5871
5872 KCONFIG
5873 M:      "Yann E. MORIN" <yann.morin.1998@free.fr>
5874 L:      linux-kbuild@vger.kernel.org
5875 T:      git git://gitorious.org/linux-kconfig/linux-kconfig
5876 S:      Maintained
5877 F:      Documentation/kbuild/kconfig-language.txt
5878 F:      scripts/kconfig/
5879
5880 KDUMP
5881 M:      Vivek Goyal <vgoyal@redhat.com>
5882 M:      Haren Myneni <hbabu@us.ibm.com>
5883 L:      kexec@lists.infradead.org
5884 W:      http://lse.sourceforge.net/kdump/
5885 S:      Maintained
5886 F:      Documentation/kdump/
5887
5888 KEENE FM RADIO TRANSMITTER DRIVER
5889 M:      Hans Verkuil <hverkuil@xs4all.nl>
5890 L:      linux-media@vger.kernel.org
5891 T:      git git://linuxtv.org/media_tree.git
5892 W:      http://linuxtv.org
5893 S:      Maintained
5894 F:      drivers/media/radio/radio-keene*
5895
5896 KERNEL AUTOMOUNTER v4 (AUTOFS4)
5897 M:      Ian Kent <raven@themaw.net>
5898 L:      autofs@vger.kernel.org
5899 S:      Maintained
5900 F:      fs/autofs4/
5901
5902 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
5903 M:      Michal Marek <mmarek@suse.com>
5904 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
5905 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
5906 L:      linux-kbuild@vger.kernel.org
5907 S:      Maintained
5908 F:      Documentation/kbuild/
5909 F:      Makefile
5910 F:      scripts/Makefile.*
5911 F:      scripts/basic/
5912 F:      scripts/mk*
5913 F:      scripts/package/
5914
5915 KERNEL JANITORS
5916 L:      kernel-janitors@vger.kernel.org
5917 W:      http://kernelnewbies.org/KernelJanitors
5918 S:      Odd Fixes
5919
5920 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
5921 M:      "J. Bruce Fields" <bfields@fieldses.org>
5922 M:      Jeff Layton <jlayton@poochiereds.net>
5923 L:      linux-nfs@vger.kernel.org
5924 W:      http://nfs.sourceforge.net/
5925 S:      Supported
5926 F:      fs/nfsd/
5927 F:      include/uapi/linux/nfsd/
5928 F:      fs/lockd/
5929 F:      fs/nfs_common/
5930 F:      net/sunrpc/
5931 F:      include/linux/lockd/
5932 F:      include/linux/sunrpc/
5933 F:      include/uapi/linux/sunrpc/
5934
5935 KERNEL SELFTEST FRAMEWORK
5936 M:      Shuah Khan <shuahkh@osg.samsung.com>
5937 L:      linux-api@vger.kernel.org
5938 T:      git git://git.kernel.org/pub/scm/shuah/linux-kselftest
5939 S:      Maintained
5940 F:      tools/testing/selftests
5941
5942 KERNEL VIRTUAL MACHINE (KVM)
5943 M:      Gleb Natapov <gleb@kernel.org>
5944 M:      Paolo Bonzini <pbonzini@redhat.com>
5945 L:      kvm@vger.kernel.org
5946 W:      http://www.linux-kvm.org
5947 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
5948 S:      Supported
5949 F:      Documentation/*/kvm*.txt
5950 F:      Documentation/virtual/kvm/
5951 F:      arch/*/kvm/
5952 F:      arch/x86/kernel/kvm.c
5953 F:      arch/x86/kernel/kvmclock.c
5954 F:      arch/*/include/asm/kvm*
5955 F:      include/linux/kvm*
5956 F:      include/uapi/linux/kvm*
5957 F:      virt/kvm/
5958
5959 KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
5960 M:      Joerg Roedel <joro@8bytes.org>
5961 L:      kvm@vger.kernel.org
5962 W:      http://kvm.qumranet.com
5963 S:      Maintained
5964 F:      arch/x86/include/asm/svm.h
5965 F:      arch/x86/kvm/svm.c
5966
5967 KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
5968 M:      Alexander Graf <agraf@suse.com>
5969 L:      kvm-ppc@vger.kernel.org
5970 W:      http://kvm.qumranet.com
5971 T:      git git://github.com/agraf/linux-2.6.git
5972 S:      Supported
5973 F:      arch/powerpc/include/asm/kvm*
5974 F:      arch/powerpc/kvm/
5975
5976 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
5977 M:      Christian Borntraeger <borntraeger@de.ibm.com>
5978 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
5979 L:      linux-s390@vger.kernel.org
5980 W:      http://www.ibm.com/developerworks/linux/linux390/
5981 S:      Supported
5982 F:      Documentation/s390/kvm.txt
5983 F:      arch/s390/include/asm/kvm*
5984 F:      arch/s390/kvm/
5985
5986 KERNEL VIRTUAL MACHINE (KVM) FOR ARM
5987 M:      Christoffer Dall <christoffer.dall@linaro.org>
5988 M:      Marc Zyngier <marc.zyngier@arm.com>
5989 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5990 L:      kvmarm@lists.cs.columbia.edu
5991 W:      http://systems.cs.columbia.edu/projects/kvm-arm
5992 S:      Supported
5993 F:      arch/arm/include/uapi/asm/kvm*
5994 F:      arch/arm/include/asm/kvm*
5995 F:      arch/arm/kvm/
5996 F:      virt/kvm/arm/
5997 F:      include/kvm/arm_*
5998
5999 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
6000 M:      Christoffer Dall <christoffer.dall@linaro.org>
6001 M:      Marc Zyngier <marc.zyngier@arm.com>
6002 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6003 L:      kvmarm@lists.cs.columbia.edu
6004 S:      Maintained
6005 F:      arch/arm64/include/uapi/asm/kvm*
6006 F:      arch/arm64/include/asm/kvm*
6007 F:      arch/arm64/kvm/
6008
6009 KEXEC
6010 M:      Eric Biederman <ebiederm@xmission.com>
6011 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
6012 L:      kexec@lists.infradead.org
6013 S:      Maintained
6014 F:      include/linux/kexec.h
6015 F:      include/uapi/linux/kexec.h
6016 F:      kernel/kexec.c
6017
6018 KEYS/KEYRINGS:
6019 M:      David Howells <dhowells@redhat.com>
6020 L:      keyrings@vger.kernel.org
6021 S:      Maintained
6022 F:      Documentation/security/keys.txt
6023 F:      include/linux/key.h
6024 F:      include/linux/key-type.h
6025 F:      include/keys/
6026 F:      security/keys/
6027
6028 KEYS-TRUSTED
6029 M:      David Safford <safford@us.ibm.com>
6030 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6031 L:      linux-security-module@vger.kernel.org
6032 L:      keyrings@vger.kernel.org
6033 S:      Supported
6034 F:      Documentation/security/keys-trusted-encrypted.txt
6035 F:      include/keys/trusted-type.h
6036 F:      security/keys/trusted.c
6037 F:      security/keys/trusted.h
6038
6039 KEYS-ENCRYPTED
6040 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6041 M:      David Safford <safford@us.ibm.com>
6042 L:      linux-security-module@vger.kernel.org
6043 L:      keyrings@vger.kernel.org
6044 S:      Supported
6045 F:      Documentation/security/keys-trusted-encrypted.txt
6046 F:      include/keys/encrypted-type.h
6047 F:      security/keys/encrypted-keys/
6048
6049 KGDB / KDB /debug_core
6050 M:      Jason Wessel <jason.wessel@windriver.com>
6051 W:      http://kgdb.wiki.kernel.org/
6052 L:      kgdb-bugreport@lists.sourceforge.net
6053 S:      Maintained
6054 F:      Documentation/DocBook/kgdb.tmpl
6055 F:      drivers/misc/kgdbts.c
6056 F:      drivers/tty/serial/kgdboc.c
6057 F:      include/linux/kdb.h
6058 F:      include/linux/kgdb.h
6059 F:      kernel/debug/
6060
6061 KMEMCHECK
6062 M:      Vegard Nossum <vegardno@ifi.uio.no>
6063 M:      Pekka Enberg <penberg@kernel.org>
6064 S:      Maintained
6065 F:      Documentation/kmemcheck.txt
6066 F:      arch/x86/include/asm/kmemcheck.h
6067 F:      arch/x86/mm/kmemcheck/
6068 F:      include/linux/kmemcheck.h
6069 F:      mm/kmemcheck.c
6070
6071 KMEMLEAK
6072 M:      Catalin Marinas <catalin.marinas@arm.com>
6073 S:      Maintained
6074 F:      Documentation/kmemleak.txt
6075 F:      include/linux/kmemleak.h
6076 F:      mm/kmemleak.c
6077 F:      mm/kmemleak-test.c
6078
6079 KPROBES
6080 M:      Ananth N Mavinakayanahalli <ananth@in.ibm.com>
6081 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
6082 M:      "David S. Miller" <davem@davemloft.net>
6083 M:      Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
6084 S:      Maintained
6085 F:      Documentation/kprobes.txt
6086 F:      include/linux/kprobes.h
6087 F:      kernel/kprobes.c
6088
6089 KS0108 LCD CONTROLLER DRIVER
6090 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
6091 W:      http://miguelojeda.es/auxdisplay.htm
6092 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
6093 S:      Maintained
6094 F:      Documentation/auxdisplay/ks0108
6095 F:      drivers/auxdisplay/ks0108.c
6096 F:      include/linux/ks0108.h
6097
6098 LAPB module
6099 L:      linux-x25@vger.kernel.org
6100 S:      Orphan
6101 F:      Documentation/networking/lapb-module.txt
6102 F:      include/*/lapb.h
6103 F:      net/lapb/
6104
6105 LASI 53c700 driver for PARISC
6106 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
6107 L:      linux-scsi@vger.kernel.org
6108 S:      Maintained
6109 F:      Documentation/scsi/53c700.txt
6110 F:      drivers/scsi/53c700*
6111
6112 LED SUBSYSTEM
6113 M:      Richard Purdie <rpurdie@rpsys.net>
6114 M:      Jacek Anaszewski <j.anaszewski@samsung.com>
6115 L:      linux-leds@vger.kernel.org
6116 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
6117 S:      Maintained
6118 F:      drivers/leds/
6119 F:      include/linux/leds.h
6120
6121 LEGACY EEPROM DRIVER
6122 M:      Jean Delvare <jdelvare@suse.com>
6123 S:      Maintained
6124 F:      Documentation/misc-devices/eeprom
6125 F:      drivers/misc/eeprom/eeprom.c
6126
6127 LEGO USB Tower driver
6128 M:      Juergen Stuber <starblue@users.sourceforge.net>
6129 L:      legousb-devel@lists.sourceforge.net
6130 W:      http://legousb.sourceforge.net/
6131 S:      Maintained
6132 F:      drivers/usb/misc/legousbtower.c
6133
6134 LG2160 MEDIA DRIVER
6135 M:      Michael Krufky <mkrufky@linuxtv.org>
6136 L:      linux-media@vger.kernel.org
6137 W:      http://linuxtv.org/
6138 W:      http://github.com/mkrufky
6139 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6140 T:      git git://linuxtv.org/mkrufky/tuners.git
6141 S:      Maintained
6142 F:      drivers/media/dvb-frontends/lg2160.*
6143
6144 LGDT3305 MEDIA DRIVER
6145 M:      Michael Krufky <mkrufky@linuxtv.org>
6146 L:      linux-media@vger.kernel.org
6147 W:      http://linuxtv.org/
6148 W:      http://github.com/mkrufky
6149 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6150 T:      git git://linuxtv.org/mkrufky/tuners.git
6151 S:      Maintained
6152 F:      drivers/media/dvb-frontends/lgdt3305.*
6153
6154 LGUEST
6155 M:      Rusty Russell <rusty@rustcorp.com.au>
6156 L:      lguest@lists.ozlabs.org
6157 W:      http://lguest.ozlabs.org/
6158 S:      Odd Fixes
6159 F:      arch/x86/include/asm/lguest*.h
6160 F:      arch/x86/lguest/
6161 F:      drivers/lguest/
6162 F:      include/linux/lguest*.h
6163 F:      tools/lguest/
6164
6165 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
6166 M:      Tejun Heo <tj@kernel.org>
6167 L:      linux-ide@vger.kernel.org
6168 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6169 S:      Maintained
6170 F:      drivers/ata/
6171 F:      include/linux/ata.h
6172 F:      include/linux/libata.h
6173
6174 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
6175 M:      Viresh Kumar <vireshk@kernel.org>
6176 L:      linux-ide@vger.kernel.org
6177 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6178 S:      Maintained
6179 F:      include/linux/pata_arasan_cf_data.h
6180 F:      drivers/ata/pata_arasan_cf.c
6181
6182 LIBATA PATA DRIVERS
6183 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6184 M:      Tejun Heo <tj@kernel.org>
6185 L:      linux-ide@vger.kernel.org
6186 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6187 S:      Maintained
6188 F:      drivers/ata/pata_*.c
6189 F:      drivers/ata/ata_generic.c
6190
6191 LIBATA SATA AHCI PLATFORM devices support
6192 M:      Hans de Goede <hdegoede@redhat.com>
6193 M:      Tejun Heo <tj@kernel.org>
6194 L:      linux-ide@vger.kernel.org
6195 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6196 S:      Maintained
6197 F:      drivers/ata/ahci_platform.c
6198 F:      drivers/ata/libahci_platform.c
6199 F:      include/linux/ahci_platform.h
6200
6201 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
6202 M:      Mikael Pettersson <mikpelinux@gmail.com>
6203 L:      linux-ide@vger.kernel.org
6204 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6205 S:      Maintained
6206 F:      drivers/ata/sata_promise.*
6207
6208 LIBLOCKDEP
6209 M:      Sasha Levin <sasha.levin@oracle.com>
6210 S:      Maintained
6211 F:      tools/lib/lockdep/
6212
6213 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
6214 M:      Dan Williams <dan.j.williams@intel.com>
6215 L:      linux-nvdimm@lists.01.org
6216 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6217 S:      Supported
6218 F:      drivers/nvdimm/*
6219 F:      include/linux/nd.h
6220 F:      include/linux/libnvdimm.h
6221 F:      include/uapi/linux/ndctl.h
6222
6223 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
6224 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6225 L:      linux-nvdimm@lists.01.org
6226 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6227 S:      Supported
6228 F:      drivers/nvdimm/blk.c
6229 F:      drivers/nvdimm/region_devs.c
6230 F:      drivers/acpi/nfit*
6231
6232 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
6233 M:      Vishal Verma <vishal.l.verma@intel.com>
6234 L:      linux-nvdimm@lists.01.org
6235 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6236 S:      Supported
6237 F:      drivers/nvdimm/btt*
6238
6239 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
6240 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6241 L:      linux-nvdimm@lists.01.org
6242 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6243 S:      Supported
6244 F:      drivers/nvdimm/pmem.c
6245 F:      include/linux/pmem.h
6246 F:      arch/*/include/asm/pmem.h
6247
6248 LINUX FOR IBM pSERIES (RS/6000)
6249 M:      Paul Mackerras <paulus@au.ibm.com>
6250 W:      http://www.ibm.com/linux/ltc/projects/ppc
6251 S:      Supported
6252 F:      arch/powerpc/boot/rs6000.h
6253
6254 LINUX FOR POWERPC (32-BIT AND 64-BIT)
6255 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6256 M:      Paul Mackerras <paulus@samba.org>
6257 M:      Michael Ellerman <mpe@ellerman.id.au>
6258 W:      http://www.penguinppc.org/
6259 L:      linuxppc-dev@lists.ozlabs.org
6260 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
6261 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
6262 S:      Supported
6263 F:      Documentation/powerpc/
6264 F:      arch/powerpc/
6265
6266 LINUX FOR POWER MACINTOSH
6267 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6268 W:      http://www.penguinppc.org/
6269 L:      linuxppc-dev@lists.ozlabs.org
6270 S:      Maintained
6271 F:      arch/powerpc/platforms/powermac/
6272 F:      drivers/macintosh/
6273
6274 LINUX FOR POWERPC EMBEDDED MPC5XXX
6275 M:      Anatolij Gustschin <agust@denx.de>
6276 L:      linuxppc-dev@lists.ozlabs.org
6277 T:      git git://git.denx.de/linux-denx-agust.git
6278 S:      Maintained
6279 F:      arch/powerpc/platforms/512x/
6280 F:      arch/powerpc/platforms/52xx/
6281
6282 LINUX FOR POWERPC EMBEDDED PPC4XX
6283 M:      Alistair Popple <alistair@popple.id.au>
6284 M:      Matt Porter <mporter@kernel.crashing.org>
6285 W:      http://www.penguinppc.org/
6286 L:      linuxppc-dev@lists.ozlabs.org
6287 S:      Maintained
6288 F:      arch/powerpc/platforms/40x/
6289 F:      arch/powerpc/platforms/44x/
6290
6291 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
6292 L:      linuxppc-dev@lists.ozlabs.org
6293 S:      Orphan
6294 F:      arch/powerpc/*/*virtex*
6295 F:      arch/powerpc/*/*/*virtex*
6296
6297 LINUX FOR POWERPC EMBEDDED PPC8XX
6298 M:      Vitaly Bordug <vitb@kernel.crashing.org>
6299 W:      http://www.penguinppc.org/
6300 L:      linuxppc-dev@lists.ozlabs.org
6301 S:      Maintained
6302 F:      arch/powerpc/platforms/8xx/
6303
6304 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
6305 M:      Scott Wood <scottwood@freescale.com>
6306 M:      Kumar Gala <galak@kernel.crashing.org>
6307 W:      http://www.penguinppc.org/
6308 L:      linuxppc-dev@lists.ozlabs.org
6309 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
6310 S:      Maintained
6311 F:      arch/powerpc/platforms/83xx/
6312 F:      arch/powerpc/platforms/85xx/
6313
6314 LINUX FOR POWERPC PA SEMI PWRFICIENT
6315 M:      Olof Johansson <olof@lixom.net>
6316 L:      linuxppc-dev@lists.ozlabs.org
6317 S:      Maintained
6318 F:      arch/powerpc/platforms/pasemi/
6319 F:      drivers/*/*pasemi*
6320 F:      drivers/*/*/*pasemi*
6321
6322 LINUX SECURITY MODULE (LSM) FRAMEWORK
6323 M:      Chris Wright <chrisw@sous-sol.org>
6324 L:      linux-security-module@vger.kernel.org
6325 S:      Supported
6326
6327 LIS3LV02D ACCELEROMETER DRIVER
6328 M:      Eric Piel <eric.piel@tremplin-utc.net>
6329 S:      Maintained
6330 F:      Documentation/misc-devices/lis3lv02d
6331 F:      drivers/misc/lis3lv02d/
6332 F:      drivers/platform/x86/hp_accel.c
6333
6334 LIVE PATCHING
6335 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6336 M:      Seth Jennings <sjenning@redhat.com>
6337 M:      Jiri Kosina <jikos@kernel.org>
6338 M:      Vojtech Pavlik <vojtech@suse.com>
6339 S:      Maintained
6340 F:      kernel/livepatch/
6341 F:      include/linux/livepatch.h
6342 F:      arch/x86/include/asm/livepatch.h
6343 F:      arch/x86/kernel/livepatch.c
6344 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
6345 F:      samples/livepatch/
6346 L:      live-patching@vger.kernel.org
6347 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
6348
6349 LLC (802.2)
6350 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
6351 S:      Maintained
6352 F:      include/linux/llc.h
6353 F:      include/uapi/linux/llc.h
6354 F:      include/net/llc*
6355 F:      net/llc/
6356
6357 LM73 HARDWARE MONITOR DRIVER
6358 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
6359 L:      lm-sensors@lm-sensors.org
6360 S:      Maintained
6361 F:      drivers/hwmon/lm73.c
6362
6363 LM78 HARDWARE MONITOR DRIVER
6364 M:      Jean Delvare <jdelvare@suse.com>
6365 L:      lm-sensors@lm-sensors.org
6366 S:      Maintained
6367 F:      Documentation/hwmon/lm78
6368 F:      drivers/hwmon/lm78.c
6369
6370 LM83 HARDWARE MONITOR DRIVER
6371 M:      Jean Delvare <jdelvare@suse.com>
6372 L:      lm-sensors@lm-sensors.org
6373 S:      Maintained
6374 F:      Documentation/hwmon/lm83
6375 F:      drivers/hwmon/lm83.c
6376
6377 LM90 HARDWARE MONITOR DRIVER
6378 M:      Jean Delvare <jdelvare@suse.com>
6379 L:      lm-sensors@lm-sensors.org
6380 S:      Maintained
6381 F:      Documentation/hwmon/lm90
6382 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
6383 F:      drivers/hwmon/lm90.c
6384
6385 LM95234 HARDWARE MONITOR DRIVER
6386 M:      Guenter Roeck <linux@roeck-us.net>
6387 L:      lm-sensors@lm-sensors.org
6388 S:      Maintained
6389 F:      Documentation/hwmon/lm95234
6390 F:      drivers/hwmon/lm95234.c
6391
6392 LME2510 MEDIA DRIVER
6393 M:      Malcolm Priestley <tvboxspy@gmail.com>
6394 L:      linux-media@vger.kernel.org
6395 W:      http://linuxtv.org/
6396 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6397 S:      Maintained
6398 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
6399
6400 LOCKDEP AND LOCKSTAT
6401 M:      Peter Zijlstra <peterz@infradead.org>
6402 M:      Ingo Molnar <mingo@redhat.com>
6403 L:      linux-kernel@vger.kernel.org
6404 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
6405 S:      Maintained
6406 F:      Documentation/locking/lockdep*.txt
6407 F:      Documentation/locking/lockstat.txt
6408 F:      include/linux/lockdep.h
6409 F:      kernel/locking/
6410
6411 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
6412 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
6413 L:      linux-ntfs-dev@lists.sourceforge.net
6414 W:      http://www.linux-ntfs.org/content/view/19/37/
6415 S:      Maintained
6416 F:      Documentation/ldm.txt
6417 F:      block/partitions/ldm.*
6418
6419 LogFS
6420 M:      Joern Engel <joern@logfs.org>
6421 M:      Prasad Joshi <prasadjoshi.linux@gmail.com>
6422 L:      logfs@logfs.org
6423 W:      logfs.org
6424 S:      Maintained
6425 F:      fs/logfs/
6426
6427 LPC32XX MACHINE SUPPORT
6428 M:      Roland Stigge <stigge@antcom.de>
6429 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6430 S:      Maintained
6431 F:      arch/arm/mach-lpc32xx/
6432
6433 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
6434 M:      Nagalakshmi Nandigama <nagalakshmi.nandigama@avagotech.com>
6435 M:      Praveen Krishnamoorthy <praveen.krishnamoorthy@avagotech.com>
6436 M:      Sreekanth Reddy <sreekanth.reddy@avagotech.com>
6437 M:      Abhijit Mahajan <abhijit.mahajan@avagotech.com>
6438 L:      MPT-FusionLinux.pdl@avagotech.com
6439 L:      linux-scsi@vger.kernel.org
6440 W:      http://www.lsilogic.com/support
6441 S:      Supported
6442 F:      drivers/message/fusion/
6443 F:      drivers/scsi/mpt2sas/
6444 F:      drivers/scsi/mpt3sas/
6445
6446 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
6447 M:      Matthew Wilcox <matthew@wil.cx>
6448 L:      linux-scsi@vger.kernel.org
6449 S:      Maintained
6450 F:      drivers/scsi/sym53c8xx_2/
6451
6452 LTC4261 HARDWARE MONITOR DRIVER
6453 M:      Guenter Roeck <linux@roeck-us.net>
6454 L:      lm-sensors@lm-sensors.org
6455 S:      Maintained
6456 F:      Documentation/hwmon/ltc4261
6457 F:      drivers/hwmon/ltc4261.c
6458
6459 LTP (Linux Test Project)
6460 M:      Mike Frysinger <vapier@gentoo.org>
6461 M:      Cyril Hrubis <chrubis@suse.cz>
6462 M:      Wanlong Gao <wanlong.gao@gmail.com>
6463 M:      Jan Stancek <jstancek@redhat.com>
6464 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
6465 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
6466 L:      ltp@lists.linux.it (subscribers-only)
6467 W:      http://linux-test-project.github.io/
6468 T:      git git://github.com/linux-test-project/ltp.git
6469 S:      Maintained
6470
6471 M32R ARCHITECTURE
6472 W:      http://www.linux-m32r.org/
6473 S:      Orphan
6474 F:      arch/m32r/
6475
6476 M68K ARCHITECTURE
6477 M:      Geert Uytterhoeven <geert@linux-m68k.org>
6478 L:      linux-m68k@lists.linux-m68k.org
6479 W:      http://www.linux-m68k.org/
6480 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
6481 S:      Maintained
6482 F:      arch/m68k/
6483 F:      drivers/zorro/
6484
6485 M68K ON APPLE MACINTOSH
6486 M:      Joshua Thompson <funaho@jurai.org>
6487 W:      http://www.mac.linux-m68k.org/
6488 L:      linux-m68k@lists.linux-m68k.org
6489 S:      Maintained
6490 F:      arch/m68k/mac/
6491
6492 M68K ON HP9000/300
6493 M:      Philip Blundell <philb@gnu.org>
6494 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
6495 S:      Maintained
6496 F:      arch/m68k/hp300/
6497
6498 M88DS3103 MEDIA DRIVER
6499 M:      Antti Palosaari <crope@iki.fi>
6500 L:      linux-media@vger.kernel.org
6501 W:      http://linuxtv.org/
6502 W:      http://palosaari.fi/linux/
6503 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6504 T:      git git://linuxtv.org/anttip/media_tree.git
6505 S:      Maintained
6506 F:      drivers/media/dvb-frontends/m88ds3103*
6507
6508 M88RS2000 MEDIA DRIVER
6509 M:      Malcolm Priestley <tvboxspy@gmail.com>
6510 L:      linux-media@vger.kernel.org
6511 W:      http://linuxtv.org/
6512 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6513 S:      Maintained
6514 F:      drivers/media/dvb-frontends/m88rs2000*
6515
6516 MA901 MASTERKIT USB FM RADIO DRIVER
6517 M:      Alexey Klimov <klimov.linux@gmail.com>
6518 L:      linux-media@vger.kernel.org
6519 T:      git git://linuxtv.org/media_tree.git
6520 S:      Maintained
6521 F:      drivers/media/radio/radio-ma901.c
6522
6523 MAC80211
6524 M:      Johannes Berg <johannes@sipsolutions.net>
6525 L:      linux-wireless@vger.kernel.org
6526 W:      http://wireless.kernel.org/
6527 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6528 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
6529 S:      Maintained
6530 F:      Documentation/networking/mac80211-injection.txt
6531 F:      include/net/mac80211.h
6532 F:      net/mac80211/
6533
6534 MACVLAN DRIVER
6535 M:      Patrick McHardy <kaber@trash.net>
6536 L:      netdev@vger.kernel.org
6537 S:      Maintained
6538 F:      drivers/net/macvlan.c
6539 F:      include/linux/if_macvlan.h
6540
6541 MAILBOX API
6542 M:      Jassi Brar <jassisinghbrar@gmail.com>
6543 L:      linux-kernel@vger.kernel.org
6544 S:      Maintained
6545 F:      drivers/mailbox/
6546 F:      include/linux/mailbox_client.h
6547 F:      include/linux/mailbox_controller.h
6548
6549 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
6550 M:      Michael Kerrisk <mtk.manpages@gmail.com>
6551 W:      http://www.kernel.org/doc/man-pages
6552 L:      linux-man@vger.kernel.org
6553 S:      Maintained
6554
6555 MARVELL ARMADA DRM SUPPORT
6556 M:      Russell King <rmk+kernel@arm.linux.org.uk>
6557 S:      Maintained
6558 F:      drivers/gpu/drm/armada/
6559
6560 MARVELL 88E6352 DSA support
6561 M:      Guenter Roeck <linux@roeck-us.net>
6562 S:      Maintained
6563 F:      drivers/net/dsa/mv88e6352.c
6564
6565 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
6566 M:      Mirko Lindner <mlindner@marvell.com>
6567 M:      Stephen Hemminger <stephen@networkplumber.org>
6568 L:      netdev@vger.kernel.org
6569 S:      Maintained
6570 F:      drivers/net/ethernet/marvell/sk*
6571
6572 MARVELL LIBERTAS WIRELESS DRIVER
6573 L:      libertas-dev@lists.infradead.org
6574 S:      Orphan
6575 F:      drivers/net/wireless/libertas/
6576
6577 MARVELL MV643XX ETHERNET DRIVER
6578 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
6579 L:      netdev@vger.kernel.org
6580 S:      Maintained
6581 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
6582 F:      include/linux/mv643xx.h
6583
6584 MARVELL MVNETA ETHERNET DRIVER
6585 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
6586 L:      netdev@vger.kernel.org
6587 S:      Maintained
6588 F:      drivers/net/ethernet/marvell/mvneta.*
6589
6590 MARVELL MWIFIEX WIRELESS DRIVER
6591 M:      Amitkumar Karwar <akarwar@marvell.com>
6592 M:      Nishant Sarmukadam <nishants@marvell.com>
6593 L:      linux-wireless@vger.kernel.org
6594 S:      Maintained
6595 F:      drivers/net/wireless/mwifiex/
6596
6597 MARVELL MWL8K WIRELESS DRIVER
6598 M:      Lennert Buytenhek <buytenh@wantstofly.org>
6599 L:      linux-wireless@vger.kernel.org
6600 S:      Odd Fixes
6601 F:      drivers/net/wireless/mwl8k.c
6602
6603 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
6604 M:      Nicolas Pitre <nico@fluxnic.net>
6605 S:      Odd Fixes
6606 F:      drivers/mmc/host/mvsdio.*
6607
6608 MATROX FRAMEBUFFER DRIVER
6609 L:      linux-fbdev@vger.kernel.org
6610 S:      Orphan
6611 F:      drivers/video/fbdev/matrox/matroxfb_*
6612 F:      include/uapi/linux/matroxfb.h
6613
6614 MAX16065 HARDWARE MONITOR DRIVER
6615 M:      Guenter Roeck <linux@roeck-us.net>
6616 L:      lm-sensors@lm-sensors.org
6617 S:      Maintained
6618 F:      Documentation/hwmon/max16065
6619 F:      drivers/hwmon/max16065.c
6620
6621 MAX20751 HARDWARE MONITOR DRIVER
6622 M:      Guenter Roeck <linux@roeck-us.net>
6623 L:      lm-sensors@lm-sensors.org
6624 S:      Maintained
6625 F:      Documentation/hwmon/max20751
6626 F:      drivers/hwmon/max20751.c
6627
6628 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6629 M:      "Hans J. Koch" <hjk@hansjkoch.de>
6630 L:      lm-sensors@lm-sensors.org
6631 S:      Maintained
6632 F:      Documentation/hwmon/max6650
6633 F:      drivers/hwmon/max6650.c
6634
6635 MAX6697 HARDWARE MONITOR DRIVER
6636 M:      Guenter Roeck <linux@roeck-us.net>
6637 L:      lm-sensors@lm-sensors.org
6638 S:      Maintained
6639 F:      Documentation/hwmon/max6697
6640 F:      Documentation/devicetree/bindings/i2c/max6697.txt
6641 F:      drivers/hwmon/max6697.c
6642 F:      include/linux/platform_data/max6697.h
6643
6644 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
6645 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6646 L:      linux-pm@vger.kernel.org
6647 S:      Supported
6648 F:      drivers/power/max14577_charger.c
6649 F:      drivers/power/max77693_charger.c
6650
6651 MAXIM MAX77802 MULTIFUNCTION PMIC DEVICE DRIVERS
6652 M:      Javier Martinez Canillas <javier@osg.samsung.com>
6653 L:      linux-kernel@vger.kernel.org
6654 S:      Supported
6655 F:      drivers/*/*max77802.c
6656 F:      Documentation/devicetree/bindings/*/*max77802.txt
6657 F:      include/dt-bindings/*/*max77802.h
6658
6659 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
6660 M:      Chanwoo Choi <cw00.choi@samsung.com>
6661 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6662 L:      linux-kernel@vger.kernel.org
6663 S:      Supported
6664 F:      drivers/*/max14577.c
6665 F:      drivers/*/max77686.c
6666 F:      drivers/*/max77693.c
6667 F:      drivers/extcon/extcon-max14577.c
6668 F:      drivers/extcon/extcon-max77693.c
6669 F:      drivers/rtc/rtc-max77686.c
6670 F:      drivers/clk/clk-max77686.c
6671 F:      Documentation/devicetree/bindings/mfd/max14577.txt
6672 F:      Documentation/devicetree/bindings/*/max77686.txt
6673 F:      Documentation/devicetree/bindings/mfd/max77693.txt
6674 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
6675 F:      include/linux/mfd/max14577*.h
6676 F:      include/linux/mfd/max77686*.h
6677 F:      include/linux/mfd/max77693*.h
6678
6679 MAXIRADIO FM RADIO RECEIVER DRIVER
6680 M:      Hans Verkuil <hverkuil@xs4all.nl>
6681 L:      linux-media@vger.kernel.org
6682 T:      git git://linuxtv.org/media_tree.git
6683 W:      http://linuxtv.org
6684 S:      Maintained
6685 F:      drivers/media/radio/radio-maxiradio*
6686
6687 MEDIA DRIVERS FOR RENESAS - VSP1
6688 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6689 L:      linux-media@vger.kernel.org
6690 L:      linux-sh@vger.kernel.org
6691 T:      git git://linuxtv.org/media_tree.git
6692 S:      Supported
6693 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
6694 F:      drivers/media/platform/vsp1/
6695
6696 MEDIA DRIVERS FOR ASCOT2E
6697 M:      Sergey Kozlov <serjk@netup.ru>
6698 L:      linux-media@vger.kernel.org
6699 W:      http://linuxtv.org
6700 W:      http://netup.tv/
6701 T:      git git://linuxtv.org/media_tree.git
6702 S:      Supported
6703 F:      drivers/media/dvb-frontends/ascot2e*
6704
6705 MEDIA DRIVERS FOR CXD2841ER
6706 M:      Sergey Kozlov <serjk@netup.ru>
6707 L:      linux-media@vger.kernel.org
6708 W:      http://linuxtv.org/
6709 W:      http://netup.tv/
6710 T:      git git://linuxtv.org/media_tree.git
6711 S:      Supported
6712 F:      drivers/media/dvb-frontends/cxd2841er*
6713
6714 MEDIA DRIVERS FOR HORUS3A
6715 M:      Sergey Kozlov <serjk@netup.ru>
6716 L:      linux-media@vger.kernel.org
6717 W:      http://linuxtv.org/
6718 W:      http://netup.tv/
6719 T:      git git://linuxtv.org/media_tree.git
6720 S:      Supported
6721 F:      drivers/media/dvb-frontends/horus3a*
6722
6723 MEDIA DRIVERS FOR LNBH25
6724 M:      Sergey Kozlov <serjk@netup.ru>
6725 L:      linux-media@vger.kernel.org
6726 W:      http://linuxtv.org/
6727 W:      http://netup.tv/
6728 T:      git git://linuxtv.org/media_tree.git
6729 S:      Supported
6730 F:      drivers/media/dvb-frontends/lnbh25*
6731
6732 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
6733 M:      Sergey Kozlov <serjk@netup.ru>
6734 L:      linux-media@vger.kernel.org
6735 W:      http://linuxtv.org/
6736 W:      http://netup.tv/
6737 T:      git git://linuxtv.org/media_tree.git
6738 S:      Supported
6739 F:      drivers/media/pci/netup_unidvb/*
6740
6741 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
6742 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
6743 P:      LinuxTV.org Project
6744 L:      linux-media@vger.kernel.org
6745 W:      http://linuxtv.org
6746 Q:      http://patchwork.kernel.org/project/linux-media/list/
6747 T:      git git://linuxtv.org/media_tree.git
6748 S:      Maintained
6749 F:      Documentation/dvb/
6750 F:      Documentation/video4linux/
6751 F:      Documentation/DocBook/media/
6752 F:      drivers/media/
6753 F:      drivers/staging/media/
6754 F:      include/media/
6755 F:      include/uapi/linux/dvb/
6756 F:      include/uapi/linux/videodev2.h
6757 F:      include/uapi/linux/media.h
6758 F:      include/uapi/linux/v4l2-*
6759 F:      include/uapi/linux/meye.h
6760 F:      include/uapi/linux/ivtv*
6761 F:      include/uapi/linux/uvcvideo.h
6762
6763 MEDIATEK MT7601U WIRELESS LAN DRIVER
6764 M:      Jakub Kicinski <kubakici@wp.pl>
6765 L:      linux-wireless@vger.kernel.org
6766 S:      Maintained
6767 F:      drivers/net/wireless/mediatek/mt7601u/
6768
6769 MEGARAID SCSI/SAS DRIVERS
6770 M:      Kashyap Desai <kashyap.desai@avagotech.com>
6771 M:      Sumit Saxena <sumit.saxena@avagotech.com>
6772 M:      Uday Lingala <uday.lingala@avagotech.com>
6773 L:      megaraidlinux.pdl@avagotech.com
6774 L:      linux-scsi@vger.kernel.org
6775 W:      http://www.lsi.com
6776 S:      Maintained
6777 F:      Documentation/scsi/megaraid.txt
6778 F:      drivers/scsi/megaraid.*
6779 F:      drivers/scsi/megaraid/
6780
6781 MELLANOX ETHERNET DRIVER (mlx4_en)
6782 M:      Amir Vadai <amirv@mellanox.com>
6783 M:      Ido Shamay <idos@mellanox.com>
6784 L:      netdev@vger.kernel.org
6785 S:      Supported
6786 W:      http://www.mellanox.com
6787 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6788 F:      drivers/net/ethernet/mellanox/mlx4/en_*
6789
6790 MELLANOX ETHERNET SWITCH DRIVERS
6791 M:      Jiri Pirko <jiri@mellanox.com>
6792 M:      Ido Schimmel <idosch@mellanox.com>
6793 L:      netdev@vger.kernel.org
6794 S:      Supported
6795 W:      http://www.mellanox.com
6796 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6797 F:      drivers/net/ethernet/mellanox/mlxsw/
6798
6799 MEMBARRIER SUPPORT
6800 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
6801 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
6802 L:      linux-kernel@vger.kernel.org
6803 S:      Supported
6804 F:      kernel/membarrier.c
6805 F:      include/uapi/linux/membarrier.h
6806
6807 MEMORY MANAGEMENT
6808 L:      linux-mm@kvack.org
6809 W:      http://www.linux-mm.org
6810 S:      Maintained
6811 F:      include/linux/mm.h
6812 F:      include/linux/gfp.h
6813 F:      include/linux/mmzone.h
6814 F:      include/linux/memory_hotplug.h
6815 F:      include/linux/vmalloc.h
6816 F:      mm/
6817
6818 MEMORY TECHNOLOGY DEVICES (MTD)
6819 M:      David Woodhouse <dwmw2@infradead.org>
6820 M:      Brian Norris <computersforpeace@gmail.com>
6821 L:      linux-mtd@lists.infradead.org
6822 W:      http://www.linux-mtd.infradead.org/
6823 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
6824 T:      git git://git.infradead.org/linux-mtd.git
6825 T:      git git://git.infradead.org/l2-mtd.git
6826 S:      Maintained
6827 F:      drivers/mtd/
6828 F:      include/linux/mtd/
6829 F:      include/uapi/mtd/
6830
6831 MEN A21 WATCHDOG DRIVER
6832 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6833 L:      linux-watchdog@vger.kernel.org
6834 S:      Maintained
6835 F:      drivers/watchdog/mena21_wdt.c
6836
6837 MEN CHAMELEON BUS (mcb)
6838 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6839 S:      Maintained
6840 F:      drivers/mcb/
6841 F:      include/linux/mcb.h
6842 F:      Documentation/men-chameleon-bus.txt
6843
6844 MEN F21BMC (Board Management Controller)
6845 M:      Andreas Werner <andreas.werner@men.de>
6846 S:      Supported
6847 F:      drivers/mfd/menf21bmc.c
6848 F:      drivers/watchdog/menf21bmc_wdt.c
6849 F:      drivers/leds/leds-menf21bmc.c
6850 F:      drivers/hwmon/menf21bmc_hwmon.c
6851 F:      Documentation/hwmon/menf21bmc
6852
6853 METAG ARCHITECTURE
6854 M:      James Hogan <james.hogan@imgtec.com>
6855 L:      linux-metag@vger.kernel.org
6856 S:      Supported
6857 F:      arch/metag/
6858 F:      Documentation/metag/
6859 F:      Documentation/devicetree/bindings/metag/
6860 F:      drivers/clocksource/metag_generic.c
6861 F:      drivers/irqchip/irq-metag.c
6862 F:      drivers/irqchip/irq-metag-ext.c
6863 F:      drivers/tty/metag_da.c
6864
6865 MICROBLAZE ARCHITECTURE
6866 M:      Michal Simek <monstr@monstr.eu>
6867 W:      http://www.monstr.eu/fdt/
6868 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
6869 S:      Supported
6870 F:      arch/microblaze/
6871
6872 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
6873 M:      Chen Yu <yu.c.chen@intel.com>
6874 L:      platform-driver-x86@vger.kernel.org
6875 S:      Supported
6876 F:      drivers/platform/x86/surfacepro3_button.c
6877
6878 MICROTEK X6 SCANNER
6879 M:      Oliver Neukum <oliver@neukum.org>
6880 S:      Maintained
6881 F:      drivers/usb/image/microtek.*
6882
6883 MIPS
6884 M:      Ralf Baechle <ralf@linux-mips.org>
6885 L:      linux-mips@linux-mips.org
6886 W:      http://www.linux-mips.org/
6887 T:      git git://git.linux-mips.org/pub/scm/ralf/linux.git
6888 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
6889 S:      Supported
6890 F:      Documentation/mips/
6891 F:      arch/mips/
6892
6893 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
6894 M:      Hans Verkuil <hverkuil@xs4all.nl>
6895 L:      linux-media@vger.kernel.org
6896 T:      git git://linuxtv.org/media_tree.git
6897 W:      http://linuxtv.org
6898 S:      Odd Fixes
6899 F:      drivers/media/radio/radio-miropcm20*
6900
6901 Mellanox MLX5 core VPI driver
6902 M:      Eli Cohen <eli@mellanox.com>
6903 L:      netdev@vger.kernel.org
6904 L:      linux-rdma@vger.kernel.org
6905 W:      http://www.mellanox.com
6906 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6907 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
6908 T:      git git://openfabrics.org/~eli/connect-ib.git
6909 S:      Supported
6910 F:      drivers/net/ethernet/mellanox/mlx5/core/
6911 F:      include/linux/mlx5/
6912
6913 Mellanox MLX5 IB driver
6914 M:      Eli Cohen <eli@mellanox.com>
6915 L:      linux-rdma@vger.kernel.org
6916 W:      http://www.mellanox.com
6917 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
6918 T:      git git://openfabrics.org/~eli/connect-ib.git
6919 S:      Supported
6920 F:      include/linux/mlx5/
6921 F:      drivers/infiniband/hw/mlx5/
6922
6923 MN88472 MEDIA DRIVER
6924 M:      Antti Palosaari <crope@iki.fi>
6925 L:      linux-media@vger.kernel.org
6926 W:      http://linuxtv.org/
6927 W:      http://palosaari.fi/linux/
6928 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6929 T:      git git://linuxtv.org/anttip/media_tree.git
6930 S:      Maintained
6931 F:      drivers/staging/media/mn88472/
6932 F:      drivers/media/dvb-frontends/mn88472.h
6933
6934 MN88473 MEDIA DRIVER
6935 M:      Antti Palosaari <crope@iki.fi>
6936 L:      linux-media@vger.kernel.org
6937 W:      http://linuxtv.org/
6938 W:      http://palosaari.fi/linux/
6939 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6940 T:      git git://linuxtv.org/anttip/media_tree.git
6941 S:      Maintained
6942 F:      drivers/staging/media/mn88473/
6943 F:      drivers/media/dvb-frontends/mn88473.h
6944
6945 MODULE SUPPORT
6946 M:      Rusty Russell <rusty@rustcorp.com.au>
6947 S:      Maintained
6948 F:      include/linux/module.h
6949 F:      kernel/module.c
6950
6951 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
6952 W:      http://popies.net/meye/
6953 S:      Orphan
6954 F:      Documentation/video4linux/meye.txt
6955 F:      drivers/media/pci/meye/
6956 F:      include/uapi/linux/meye.h
6957
6958 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
6959 M:      Jiri Slaby <jirislaby@gmail.com>
6960 S:      Maintained
6961 F:      Documentation/serial/moxa-smartio
6962 F:      drivers/tty/mxser.*
6963
6964 MR800 AVERMEDIA USB FM RADIO DRIVER
6965 M:      Alexey Klimov <klimov.linux@gmail.com>
6966 L:      linux-media@vger.kernel.org
6967 T:      git git://linuxtv.org/media_tree.git
6968 S:      Maintained
6969 F:      drivers/media/radio/radio-mr800.c
6970
6971 MRF24J40 IEEE 802.15.4 RADIO DRIVER
6972 M:      Alan Ott <alan@signal11.us>
6973 L:      linux-wpan@vger.kernel.org
6974 S:      Maintained
6975 F:      drivers/net/ieee802154/mrf24j40.c
6976 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
6977
6978 MSI LAPTOP SUPPORT
6979 M:      "Lee, Chun-Yi" <jlee@suse.com>
6980 L:      platform-driver-x86@vger.kernel.org
6981 S:      Maintained
6982 F:      drivers/platform/x86/msi-laptop.c
6983
6984 MSI WMI SUPPORT
6985 L:      platform-driver-x86@vger.kernel.org
6986 S:      Orphan
6987 F:      drivers/platform/x86/msi-wmi.c
6988
6989 MSI001 MEDIA DRIVER
6990 M:      Antti Palosaari <crope@iki.fi>
6991 L:      linux-media@vger.kernel.org
6992 W:      http://linuxtv.org/
6993 W:      http://palosaari.fi/linux/
6994 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6995 T:      git git://linuxtv.org/anttip/media_tree.git
6996 S:      Maintained
6997 F:      drivers/media/tuners/msi001*
6998
6999 MSI2500 MEDIA DRIVER
7000 M:      Antti Palosaari <crope@iki.fi>
7001 L:      linux-media@vger.kernel.org
7002 W:      http://linuxtv.org/
7003 W:      http://palosaari.fi/linux/
7004 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7005 T:      git git://linuxtv.org/anttip/media_tree.git
7006 S:      Maintained
7007 F:      drivers/media/usb/msi2500/
7008
7009 MSYSTEMS DISKONCHIP G3 MTD DRIVER
7010 M:      Robert Jarzmik <robert.jarzmik@free.fr>
7011 L:      linux-mtd@lists.infradead.org
7012 S:      Maintained
7013 F:      drivers/mtd/devices/docg3*
7014
7015 MT9M032 APTINA SENSOR DRIVER
7016 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7017 L:      linux-media@vger.kernel.org
7018 T:      git git://linuxtv.org/media_tree.git
7019 S:      Maintained
7020 F:      drivers/media/i2c/mt9m032.c
7021 F:      include/media/mt9m032.h
7022
7023 MT9P031 APTINA CAMERA SENSOR
7024 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7025 L:      linux-media@vger.kernel.org
7026 T:      git git://linuxtv.org/media_tree.git
7027 S:      Maintained
7028 F:      drivers/media/i2c/mt9p031.c
7029 F:      include/media/mt9p031.h
7030
7031 MT9T001 APTINA CAMERA SENSOR
7032 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7033 L:      linux-media@vger.kernel.org
7034 T:      git git://linuxtv.org/media_tree.git
7035 S:      Maintained
7036 F:      drivers/media/i2c/mt9t001.c
7037 F:      include/media/mt9t001.h
7038
7039 MT9V032 APTINA CAMERA SENSOR
7040 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7041 L:      linux-media@vger.kernel.org
7042 T:      git git://linuxtv.org/media_tree.git
7043 S:      Maintained
7044 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
7045 F:      drivers/media/i2c/mt9v032.c
7046 F:      include/media/mt9v032.h
7047
7048 MULTIFUNCTION DEVICES (MFD)
7049 M:      Samuel Ortiz <sameo@linux.intel.com>
7050 M:      Lee Jones <lee.jones@linaro.org>
7051 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
7052 S:      Supported
7053 F:      drivers/mfd/
7054 F:      include/linux/mfd/
7055
7056 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
7057 M:      Ulf Hansson <ulf.hansson@linaro.org>
7058 L:      linux-mmc@vger.kernel.org
7059 T:      git git://git.linaro.org/people/ulf.hansson/mmc.git
7060 S:      Maintained
7061 F:      drivers/mmc/
7062 F:      include/linux/mmc/
7063 F:      include/uapi/linux/mmc/
7064
7065 MULTIMEDIA CARD (MMC) ETC. OVER SPI
7066 S:      Orphan
7067 F:      drivers/mmc/host/mmc_spi.c
7068 F:      include/linux/spi/mmc_spi.h
7069
7070 MULTISOUND SOUND DRIVER
7071 M:      Andrew Veliath <andrewtv@usa.net>
7072 S:      Maintained
7073 F:      Documentation/sound/oss/MultiSound
7074 F:      sound/oss/msnd*
7075
7076 MULTITECH MULTIPORT CARD (ISICOM)
7077 S:      Orphan
7078 F:      drivers/tty/isicom.c
7079 F:      include/linux/isicom.h
7080
7081 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
7082 M:      Felipe Balbi <balbi@ti.com>
7083 L:      linux-usb@vger.kernel.org
7084 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7085 S:      Maintained
7086 F:      drivers/usb/musb/
7087
7088 MXL5007T MEDIA DRIVER
7089 M:      Michael Krufky <mkrufky@linuxtv.org>
7090 L:      linux-media@vger.kernel.org
7091 W:      http://linuxtv.org/
7092 W:      http://github.com/mkrufky
7093 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7094 T:      git git://linuxtv.org/mkrufky/tuners.git
7095 S:      Maintained
7096 F:      drivers/media/tuners/mxl5007t.*
7097
7098 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
7099 M:      Hyong-Youb Kim <hykim@myri.com>
7100 L:      netdev@vger.kernel.org
7101 W:      https://www.myricom.com/support/downloads/myri10ge.html
7102 S:      Supported
7103 F:      drivers/net/ethernet/myricom/myri10ge/
7104
7105 NATSEMI ETHERNET DRIVER (DP8381x)
7106 S:      Orphan
7107 F:      drivers/net/ethernet/natsemi/natsemi.c
7108
7109 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
7110 M:      Daniel Mack <zonque@gmail.com>
7111 S:      Maintained
7112 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7113 W:      http://www.native-instruments.com
7114 F:      sound/usb/caiaq/
7115
7116 NCP FILESYSTEM
7117 M:      Petr Vandrovec <petr@vandrovec.name>
7118 S:      Odd Fixes
7119 F:      fs/ncpfs/
7120
7121 NCR 5380 SCSI DRIVERS
7122 M:      Finn Thain <fthain@telegraphics.com.au>
7123 M:      Michael Schmitz <schmitzmic@gmail.com>
7124 L:      linux-scsi@vger.kernel.org
7125 S:      Maintained
7126 F:      Documentation/scsi/g_NCR5380.txt
7127 F:      drivers/scsi/NCR5380.*
7128 F:      drivers/scsi/arm/cumana_1.c
7129 F:      drivers/scsi/arm/oak.c
7130 F:      drivers/scsi/atari_NCR5380.c
7131 F:      drivers/scsi/atari_scsi.*
7132 F:      drivers/scsi/dmx3191d.c
7133 F:      drivers/scsi/dtc.*
7134 F:      drivers/scsi/g_NCR5380.*
7135 F:      drivers/scsi/g_NCR5380_mmio.c
7136 F:      drivers/scsi/mac_scsi.*
7137 F:      drivers/scsi/pas16.*
7138 F:      drivers/scsi/sun3_scsi.*
7139 F:      drivers/scsi/sun3_scsi_vme.c
7140 F:      drivers/scsi/t128.*
7141
7142 NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
7143 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
7144 L:      linux-scsi@vger.kernel.org
7145 S:      Maintained
7146 F:      drivers/scsi/NCR_D700.*
7147
7148 NCT6775 HARDWARE MONITOR DRIVER
7149 M:      Guenter Roeck <linux@roeck-us.net>
7150 L:      lm-sensors@lm-sensors.org
7151 S:      Maintained
7152 F:      Documentation/hwmon/nct6775
7153 F:      drivers/hwmon/nct6775.c
7154
7155 NETEFFECT IWARP RNIC DRIVER (IW_NES)
7156 M:      Faisal Latif <faisal.latif@intel.com>
7157 L:      linux-rdma@vger.kernel.org
7158 W:      http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
7159 S:      Supported
7160 F:      drivers/infiniband/hw/nes/
7161
7162 NETEM NETWORK EMULATOR
7163 M:      Stephen Hemminger <stephen@networkplumber.org>
7164 L:      netem@lists.linux-foundation.org
7165 S:      Maintained
7166 F:      net/sched/sch_netem.c
7167
7168 NETERION 10GbE DRIVERS (s2io/vxge)
7169 M:      Jon Mason <jdmason@kudzu.us>
7170 L:      netdev@vger.kernel.org
7171 S:      Supported
7172 F:      Documentation/networking/s2io.txt
7173 F:      Documentation/networking/vxge.txt
7174 F:      drivers/net/ethernet/neterion/
7175
7176 NETFILTER ({IP,IP6,ARP,EB,NF}TABLES)
7177 M:      Pablo Neira Ayuso <pablo@netfilter.org>
7178 M:      Patrick McHardy <kaber@trash.net>
7179 M:      Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
7180 L:      netfilter-devel@vger.kernel.org
7181 L:      coreteam@netfilter.org
7182 W:      http://www.netfilter.org/
7183 W:      http://www.iptables.org/
7184 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
7185 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
7186 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
7187 S:      Supported
7188 F:      include/linux/netfilter*
7189 F:      include/linux/netfilter/
7190 F:      include/net/netfilter/
7191 F:      include/uapi/linux/netfilter*
7192 F:      include/uapi/linux/netfilter/
7193 F:      net/*/netfilter.c
7194 F:      net/*/netfilter/
7195 F:      net/netfilter/
7196 F:      net/bridge/br_netfilter*.c
7197
7198 NETLABEL
7199 M:      Paul Moore <paul@paul-moore.com>
7200 W:      http://netlabel.sf.net
7201 L:      netdev@vger.kernel.org
7202 S:      Maintained
7203 F:      Documentation/netlabel/
7204 F:      include/net/netlabel.h
7205 F:      net/netlabel/
7206
7207 NETROM NETWORK LAYER
7208 M:      Ralf Baechle <ralf@linux-mips.org>
7209 L:      linux-hams@vger.kernel.org
7210 W:      http://www.linux-ax25.org/
7211 S:      Maintained
7212 F:      include/net/netrom.h
7213 F:      include/uapi/linux/netrom.h
7214 F:      net/netrom/
7215
7216 NETWORK BLOCK DEVICE (NBD)
7217 M:      Markus Pargmann <mpa@pengutronix.de>
7218 S:      Maintained
7219 L:      nbd-general@lists.sourceforge.net
7220 T:      git git://git.pengutronix.de/git/mpa/linux-nbd.git
7221 F:      Documentation/blockdev/nbd.txt
7222 F:      drivers/block/nbd.c
7223 F:      include/uapi/linux/nbd.h
7224
7225 NETWORK DROP MONITOR
7226 M:      Neil Horman <nhorman@tuxdriver.com>
7227 L:      netdev@vger.kernel.org
7228 S:      Maintained
7229 W:      https://fedorahosted.org/dropwatch/
7230 F:      net/core/drop_monitor.c
7231
7232 NETWORKING [GENERAL]
7233 M:      "David S. Miller" <davem@davemloft.net>
7234 L:      netdev@vger.kernel.org
7235 W:      http://www.linuxfoundation.org/en/Net
7236 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7237 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7238 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7239 S:      Maintained
7240 F:      net/
7241 F:      include/net/
7242 F:      include/linux/in.h
7243 F:      include/linux/net.h
7244 F:      include/linux/netdevice.h
7245 F:      include/uapi/linux/in.h
7246 F:      include/uapi/linux/net.h
7247 F:      include/uapi/linux/netdevice.h
7248 F:      include/uapi/linux/net_namespace.h
7249 F:      tools/net/
7250 F:      tools/testing/selftests/net/
7251 F:      lib/random32.c
7252 F:      lib/test_bpf.c
7253
7254 NETWORKING [IPv4/IPv6]
7255 M:      "David S. Miller" <davem@davemloft.net>
7256 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
7257 M:      James Morris <jmorris@namei.org>
7258 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
7259 M:      Patrick McHardy <kaber@trash.net>
7260 L:      netdev@vger.kernel.org
7261 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7262 S:      Maintained
7263 F:      net/ipv4/
7264 F:      net/ipv6/
7265 F:      include/net/ip*
7266 F:      arch/x86/net/*
7267
7268 NETWORKING [IPSEC]
7269 M:      Steffen Klassert <steffen.klassert@secunet.com>
7270 M:      Herbert Xu <herbert@gondor.apana.org.au>
7271 M:      "David S. Miller" <davem@davemloft.net>
7272 L:      netdev@vger.kernel.org
7273 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
7274 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
7275 S:      Maintained
7276 F:      net/core/flow.c
7277 F:      net/xfrm/
7278 F:      net/key/
7279 F:      net/ipv4/xfrm*
7280 F:      net/ipv4/esp4.c
7281 F:      net/ipv4/ah4.c
7282 F:      net/ipv4/ipcomp.c
7283 F:      net/ipv4/ip_vti.c
7284 F:      net/ipv6/xfrm*
7285 F:      net/ipv6/esp6.c
7286 F:      net/ipv6/ah6.c
7287 F:      net/ipv6/ipcomp6.c
7288 F:      net/ipv6/ip6_vti.c
7289 F:      include/uapi/linux/xfrm.h
7290 F:      include/net/xfrm.h
7291
7292 NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
7293 M:      Paul Moore <paul@paul-moore.com>
7294 L:      netdev@vger.kernel.org
7295 S:      Maintained
7296
7297 NETWORKING [WIRELESS]
7298 L:      linux-wireless@vger.kernel.org
7299 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7300
7301 NETWORKING DRIVERS
7302 L:      netdev@vger.kernel.org
7303 W:      http://www.linuxfoundation.org/en/Net
7304 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7305 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7306 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7307 S:      Odd Fixes
7308 F:      drivers/net/
7309 F:      include/linux/if_*
7310 F:      include/linux/netdevice.h
7311 F:      include/linux/etherdevice.h
7312 F:      include/linux/fcdevice.h
7313 F:      include/linux/fddidevice.h
7314 F:      include/linux/hippidevice.h
7315 F:      include/linux/inetdevice.h
7316 F:      include/uapi/linux/if_*
7317 F:      include/uapi/linux/netdevice.h
7318
7319 NETWORKING DRIVERS (WIRELESS)
7320 M:      Kalle Valo <kvalo@codeaurora.org>
7321 L:      linux-wireless@vger.kernel.org
7322 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7323 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git/
7324 S:      Maintained
7325 F:      drivers/net/wireless/
7326
7327 NETXEN (1/10) GbE SUPPORT
7328 M:      Manish Chopra <manish.chopra@qlogic.com>
7329 M:      Sony Chacko <sony.chacko@qlogic.com>
7330 M:      Rajesh Borundia <rajesh.borundia@qlogic.com>
7331 L:      netdev@vger.kernel.org
7332 W:      http://www.qlogic.com
7333 S:      Supported
7334 F:      drivers/net/ethernet/qlogic/netxen/
7335
7336 NFC SUBSYSTEM
7337 M:      Lauro Ramos Venancio <lauro.venancio@openbossa.org>
7338 M:      Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
7339 M:      Samuel Ortiz <sameo@linux.intel.com>
7340 L:      linux-wireless@vger.kernel.org
7341 L:      linux-nfc@lists.01.org (subscribers-only)
7342 S:      Supported
7343 F:      net/nfc/
7344 F:      include/net/nfc/
7345 F:      include/uapi/linux/nfc.h
7346 F:      drivers/nfc/
7347 F:      include/linux/platform_data/pn544.h
7348 F:      Documentation/devicetree/bindings/net/nfc/
7349
7350 NFS, SUNRPC, AND LOCKD CLIENTS
7351 M:      Trond Myklebust <trond.myklebust@primarydata.com>
7352 M:      Anna Schumaker <anna.schumaker@netapp.com>
7353 L:      linux-nfs@vger.kernel.org
7354 W:      http://client.linux-nfs.org
7355 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
7356 S:      Maintained
7357 F:      fs/lockd/
7358 F:      fs/nfs/
7359 F:      fs/nfs_common/
7360 F:      net/sunrpc/
7361 F:      include/linux/lockd/
7362 F:      include/linux/nfs*
7363 F:      include/linux/sunrpc/
7364 F:      include/uapi/linux/nfs*
7365 F:      include/uapi/linux/sunrpc/
7366
7367 NILFS2 FILESYSTEM
7368 M:      Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
7369 L:      linux-nilfs@vger.kernel.org
7370 W:      http://nilfs.sourceforge.net/
7371 T:      git git://github.com/konis/nilfs2.git
7372 S:      Supported
7373 F:      Documentation/filesystems/nilfs2.txt
7374 F:      fs/nilfs2/
7375 F:      include/linux/nilfs2_fs.h
7376
7377 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
7378 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7379 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7380 S:      Maintained
7381 F:      Documentation/scsi/NinjaSCSI.txt
7382 F:      drivers/scsi/pcmcia/nsp_*
7383
7384 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
7385 M:      GOTO Masanori <gotom@debian.or.jp>
7386 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7387 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7388 S:      Maintained
7389 F:      Documentation/scsi/NinjaSCSI.txt
7390 F:      drivers/scsi/nsp32*
7391
7392 NIOS2 ARCHITECTURE
7393 M:      Ley Foon Tan <lftan@altera.com>
7394 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
7395 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
7396 S:      Maintained
7397 F:      arch/nios2/
7398
7399 NOKIA N900 POWER SUPPLY DRIVERS
7400 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
7401 S:      Maintained
7402 F:      include/linux/power/bq2415x_charger.h
7403 F:      include/linux/power/bq27xxx_battery.h
7404 F:      include/linux/power/isp1704_charger.h
7405 F:      drivers/power/bq2415x_charger.c
7406 F:      drivers/power/bq27xxx_battery.c
7407 F:      drivers/power/isp1704_charger.c
7408 F:      drivers/power/rx51_battery.c
7409
7410 NTB DRIVER CORE
7411 M:      Jon Mason <jdmason@kudzu.us>
7412 M:      Dave Jiang <dave.jiang@intel.com>
7413 M:      Allen Hubbe <Allen.Hubbe@emc.com>
7414 L:      linux-ntb@googlegroups.com
7415 S:      Supported
7416 W:      https://github.com/jonmason/ntb/wiki
7417 T:      git git://github.com/jonmason/ntb.git
7418 F:      drivers/ntb/
7419 F:      drivers/net/ntb_netdev.c
7420 F:      include/linux/ntb.h
7421 F:      include/linux/ntb_transport.h
7422
7423 NTB INTEL DRIVER
7424 M:      Jon Mason <jdmason@kudzu.us>
7425 M:      Dave Jiang <dave.jiang@intel.com>
7426 L:      linux-ntb@googlegroups.com
7427 S:      Supported
7428 W:      https://github.com/jonmason/ntb/wiki
7429 T:      git git://github.com/jonmason/ntb.git
7430 F:      drivers/ntb/hw/intel/
7431
7432 NTFS FILESYSTEM
7433 M:      Anton Altaparmakov <anton@tuxera.com>
7434 L:      linux-ntfs-dev@lists.sourceforge.net
7435 W:      http://www.tuxera.com/
7436 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
7437 S:      Supported
7438 F:      Documentation/filesystems/ntfs.txt
7439 F:      fs/ntfs/
7440
7441 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
7442 M:      Antonino Daplas <adaplas@gmail.com>
7443 L:      linux-fbdev@vger.kernel.org
7444 S:      Maintained
7445 F:      drivers/video/fbdev/riva/
7446 F:      drivers/video/fbdev/nvidia/
7447
7448 NVM EXPRESS DRIVER
7449 M:      Matthew Wilcox <willy@linux.intel.com>
7450 L:      linux-nvme@lists.infradead.org
7451 T:      git git://git.infradead.org/users/willy/linux-nvme.git
7452 S:      Supported
7453 F:      drivers/block/nvme*
7454 F:      include/linux/nvme.h
7455
7456 NVMEM FRAMEWORK
7457 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
7458 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
7459 S:      Maintained
7460 F:      drivers/nvmem/
7461 F:      Documentation/devicetree/bindings/nvmem/
7462 F:      include/linux/nvmem-consumer.h
7463 F:      include/linux/nvmem-provider.h
7464
7465 NXP-NCI NFC DRIVER
7466 M:      ClĂ©ment Perrochaud <clement.perrochaud@effinnov.com>
7467 R:      Charles Gorand <charles.gorand@effinnov.com>
7468 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
7469 S:      Supported
7470 F:      drivers/nfc/nxp-nci
7471
7472 NXP TDA998X DRM DRIVER
7473 M:      Russell King <rmk+kernel@arm.linux.org.uk>
7474 S:      Supported
7475 F:      drivers/gpu/drm/i2c/tda998x_drv.c
7476 F:      include/drm/i2c/tda998x.h
7477
7478 NXP TFA9879 DRIVER
7479 M:      Peter Rosin <peda@axentia.se>
7480 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7481 S:      Maintained
7482 F:      sound/soc/codecs/tfa9879*
7483
7484 OMAP SUPPORT
7485 M:      Tony Lindgren <tony@atomide.com>
7486 L:      linux-omap@vger.kernel.org
7487 W:      http://www.muru.com/linux/omap/
7488 W:      http://linux.omap.com/
7489 Q:      http://patchwork.kernel.org/project/linux-omap/list/
7490 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
7491 S:      Maintained
7492 F:      arch/arm/*omap*/
7493 F:      arch/arm/configs/omap1_defconfig
7494 F:      arch/arm/configs/omap2plus_defconfig
7495 F:      drivers/i2c/busses/i2c-omap.c
7496 F:      drivers/irqchip/irq-omap-intc.c
7497 F:      drivers/mfd/*omap*.c
7498 F:      drivers/mfd/menelaus.c
7499 F:      drivers/mfd/palmas.c
7500 F:      drivers/mfd/tps65217.c
7501 F:      drivers/mfd/tps65218.c
7502 F:      drivers/mfd/tps65910.c
7503 F:      drivers/mfd/twl-core.[ch]
7504 F:      drivers/mfd/twl4030*.c
7505 F:      drivers/mfd/twl6030*.c
7506 F:      drivers/mfd/twl6040*.c
7507 F:      drivers/regulator/palmas-regulator*.c
7508 F:      drivers/regulator/pbias-regulator.c
7509 F:      drivers/regulator/tps65217-regulator.c
7510 F:      drivers/regulator/tps65218-regulator.c
7511 F:      drivers/regulator/tps65910-regulator.c
7512 F:      drivers/regulator/twl-regulator.c
7513 F:      include/linux/i2c-omap.h
7514
7515 OMAP DEVICE TREE SUPPORT
7516 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7517 M:      Tony Lindgren <tony@atomide.com>
7518 L:      linux-omap@vger.kernel.org
7519 L:      devicetree@vger.kernel.org
7520 S:      Maintained
7521 F:      arch/arm/boot/dts/*omap*
7522 F:      arch/arm/boot/dts/*am3*
7523 F:      arch/arm/boot/dts/*am4*
7524 F:      arch/arm/boot/dts/*am5*
7525 F:      arch/arm/boot/dts/*dra7*
7526
7527 OMAP CLOCK FRAMEWORK SUPPORT
7528 M:      Paul Walmsley <paul@pwsan.com>
7529 L:      linux-omap@vger.kernel.org
7530 S:      Maintained
7531 F:      arch/arm/*omap*/*clock*
7532
7533 OMAP POWER MANAGEMENT SUPPORT
7534 M:      Kevin Hilman <khilman@deeprootsystems.com>
7535 L:      linux-omap@vger.kernel.org
7536 S:      Maintained
7537 F:      arch/arm/*omap*/*pm*
7538 F:      drivers/cpufreq/omap-cpufreq.c
7539
7540 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
7541 M:      Rajendra Nayak <rnayak@ti.com>
7542 M:      Paul Walmsley <paul@pwsan.com>
7543 L:      linux-omap@vger.kernel.org
7544 S:      Maintained
7545 F:      arch/arm/mach-omap2/prm*
7546
7547 OMAP AUDIO SUPPORT
7548 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
7549 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
7550 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7551 L:      linux-omap@vger.kernel.org
7552 S:      Maintained
7553 F:      sound/soc/omap/
7554
7555 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
7556 M:      Roger Quadros <rogerq@ti.com>
7557 M:      Tony Lindgren <tony@atomide.com>
7558 L:      linux-omap@vger.kernel.org
7559 S:      Maintained
7560 F:      drivers/memory/omap-gpmc.c
7561 F:      arch/arm/mach-omap2/*gpmc*
7562
7563 OMAP FRAMEBUFFER SUPPORT
7564 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
7565 L:      linux-fbdev@vger.kernel.org
7566 L:      linux-omap@vger.kernel.org
7567 S:      Maintained
7568 F:      drivers/video/fbdev/omap/
7569
7570 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
7571 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
7572 L:      linux-omap@vger.kernel.org
7573 L:      linux-fbdev@vger.kernel.org
7574 S:      Maintained
7575 F:      drivers/video/fbdev/omap2/
7576 F:      Documentation/arm/OMAP/DSS
7577
7578 OMAP HARDWARE SPINLOCK SUPPORT
7579 M:      Ohad Ben-Cohen <ohad@wizery.com>
7580 L:      linux-omap@vger.kernel.org
7581 S:      Maintained
7582 F:      drivers/hwspinlock/omap_hwspinlock.c
7583
7584 OMAP MMC SUPPORT
7585 M:      Jarkko Lavinen <jarkko.lavinen@nokia.com>
7586 L:      linux-omap@vger.kernel.org
7587 S:      Maintained
7588 F:      drivers/mmc/host/omap.c
7589
7590 OMAP HS MMC SUPPORT
7591 L:      linux-mmc@vger.kernel.org
7592 L:      linux-omap@vger.kernel.org
7593 S:      Orphan
7594 F:      drivers/mmc/host/omap_hsmmc.c
7595
7596 OMAP RANDOM NUMBER GENERATOR SUPPORT
7597 M:      Deepak Saxena <dsaxena@plexity.net>
7598 S:      Maintained
7599 F:      drivers/char/hw_random/omap-rng.c
7600
7601 OMAP HWMOD SUPPORT
7602 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7603 M:      Paul Walmsley <paul@pwsan.com>
7604 L:      linux-omap@vger.kernel.org
7605 S:      Maintained
7606 F:      arch/arm/mach-omap2/omap_hwmod.*
7607
7608 OMAP HWMOD DATA
7609 M:      Paul Walmsley <paul@pwsan.com>
7610 L:      linux-omap@vger.kernel.org
7611 S:      Maintained
7612 F:      arch/arm/mach-omap2/omap_hwmod*data*
7613
7614 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
7615 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7616 L:      linux-omap@vger.kernel.org
7617 S:      Maintained
7618 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
7619
7620 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
7621 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7622 L:      linux-media@vger.kernel.org
7623 S:      Maintained
7624 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
7625 F:      drivers/media/platform/omap3isp/
7626 F:      drivers/staging/media/omap4iss/
7627
7628 OMAP USB SUPPORT
7629 M:      Felipe Balbi <balbi@ti.com>
7630 L:      linux-usb@vger.kernel.org
7631 L:      linux-omap@vger.kernel.org
7632 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7633 S:      Maintained
7634 F:      drivers/usb/*/*omap*
7635 F:      arch/arm/*omap*/usb*
7636
7637 OMAP GPIO DRIVER
7638 M:      Javier Martinez Canillas <javier@dowhile0.org>
7639 M:      Santosh Shilimkar <ssantosh@kernel.org>
7640 M:      Kevin Hilman <khilman@deeprootsystems.com>
7641 L:      linux-omap@vger.kernel.org
7642 S:      Maintained
7643 F:      drivers/gpio/gpio-omap.c
7644
7645 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
7646 M:      Mark Jackson <mpfj@newflow.co.uk>
7647 L:      linux-omap@vger.kernel.org
7648 S:      Maintained
7649 F:      arch/arm/boot/dts/am335x-nano.dts
7650
7651 OMFS FILESYSTEM
7652 M:      Bob Copeland <me@bobcopeland.com>
7653 L:      linux-karma-devel@lists.sourceforge.net
7654 S:      Maintained
7655 F:      Documentation/filesystems/omfs.txt
7656 F:      fs/omfs/
7657
7658 OMNIKEY CARDMAN 4000 DRIVER
7659 M:      Harald Welte <laforge@gnumonks.org>
7660 S:      Maintained
7661 F:      drivers/char/pcmcia/cm4000_cs.c
7662 F:      include/linux/cm4000_cs.h
7663 F:      include/uapi/linux/cm4000_cs.h
7664
7665 OMNIKEY CARDMAN 4040 DRIVER
7666 M:      Harald Welte <laforge@gnumonks.org>
7667 S:      Maintained
7668 F:      drivers/char/pcmcia/cm4040_cs.*
7669
7670 OMNIVISION OV7670 SENSOR DRIVER
7671 M:      Jonathan Corbet <corbet@lwn.net>
7672 L:      linux-media@vger.kernel.org
7673 T:      git git://linuxtv.org/media_tree.git
7674 S:      Maintained
7675 F:      drivers/media/i2c/ov7670.c
7676
7677 ONENAND FLASH DRIVER
7678 M:      Kyungmin Park <kyungmin.park@samsung.com>
7679 L:      linux-mtd@lists.infradead.org
7680 S:      Maintained
7681 F:      drivers/mtd/onenand/
7682 F:      include/linux/mtd/onenand*.h
7683
7684 ONSTREAM SCSI TAPE DRIVER
7685 M:      Willem Riede <osst@riede.org>
7686 L:      osst-users@lists.sourceforge.net
7687 L:      linux-scsi@vger.kernel.org
7688 S:      Maintained
7689 F:      Documentation/scsi/osst.txt
7690 F:      drivers/scsi/osst.*
7691 F:      drivers/scsi/osst_*.h
7692 F:      drivers/scsi/st.h
7693
7694 OPENCORES I2C BUS DRIVER
7695 M:      Peter Korsgaard <jacmet@sunsite.dk>
7696 L:      linux-i2c@vger.kernel.org
7697 S:      Maintained
7698 F:      Documentation/i2c/busses/i2c-ocores
7699 F:      drivers/i2c/busses/i2c-ocores.c
7700
7701 OPEN FIRMWARE AND FLATTENED DEVICE TREE
7702 M:      Rob Herring <robh+dt@kernel.org>
7703 M:      Frank Rowand <frowand.list@gmail.com>
7704 M:      Grant Likely <grant.likely@linaro.org>
7705 L:      devicetree@vger.kernel.org
7706 W:      http://www.devicetree.org/
7707 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/glikely/linux.git
7708 S:      Maintained
7709 F:      drivers/of/
7710 F:      include/linux/of*.h
7711 F:      scripts/dtc/
7712
7713 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
7714 M:      Rob Herring <robh+dt@kernel.org>
7715 M:      Pawel Moll <pawel.moll@arm.com>
7716 M:      Mark Rutland <mark.rutland@arm.com>
7717 M:      Ian Campbell <ijc+devicetree@hellion.org.uk>
7718 M:      Kumar Gala <galak@codeaurora.org>
7719 L:      devicetree@vger.kernel.org
7720 S:      Maintained
7721 F:      Documentation/devicetree/
7722 F:      arch/*/boot/dts/
7723 F:      include/dt-bindings/
7724
7725 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
7726 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
7727 L:      devicetree@vger.kernel.org
7728 S:      Maintained
7729 F:      Documentation/devicetree/dynamic-resolution-notes.txt
7730 F:      Documentation/devicetree/overlay-notes.txt
7731 F:      drivers/of/overlay.c
7732 F:      drivers/of/resolver.c
7733
7734 OPENRISC ARCHITECTURE
7735 M:      Jonas Bonn <jonas@southpole.se>
7736 W:      http://openrisc.net
7737 L:      linux@lists.openrisc.net (moderated for non-subscribers)
7738 S:      Maintained
7739 T:      git git://openrisc.net/~jonas/linux
7740 F:      arch/openrisc/
7741
7742 OPENVSWITCH
7743 M:      Pravin Shelar <pshelar@nicira.com>
7744 L:      netdev@vger.kernel.org
7745 L:      dev@openvswitch.org
7746 W:      http://openvswitch.org
7747 S:      Maintained
7748 F:      net/openvswitch/
7749 F:      include/uapi/linux/openvswitch.h
7750
7751 OPL4 DRIVER
7752 M:      Clemens Ladisch <clemens@ladisch.de>
7753 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7754 T:      git git://git.alsa-project.org/alsa-kernel.git
7755 S:      Maintained
7756 F:      sound/drivers/opl4/
7757
7758 OPROFILE
7759 M:      Robert Richter <rric@kernel.org>
7760 L:      oprofile-list@lists.sf.net
7761 S:      Maintained
7762 F:      arch/*/include/asm/oprofile*.h
7763 F:      arch/*/oprofile/
7764 F:      drivers/oprofile/
7765 F:      include/linux/oprofile.h
7766
7767 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
7768 M:      Mark Fasheh <mfasheh@suse.com>
7769 M:      Joel Becker <jlbec@evilplan.org>
7770 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
7771 W:      http://ocfs2.wiki.kernel.org
7772 S:      Supported
7773 F:      Documentation/filesystems/ocfs2.txt
7774 F:      Documentation/filesystems/dlmfs.txt
7775 F:      fs/ocfs2/
7776
7777 ORINOCO DRIVER
7778 L:      linux-wireless@vger.kernel.org
7779 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
7780 W:      http://www.nongnu.org/orinoco/
7781 S:      Orphan
7782 F:      drivers/net/wireless/orinoco/
7783
7784 OSD LIBRARY and FILESYSTEM
7785 M:      Boaz Harrosh <ooo@electrozaur.com>
7786 M:      Benny Halevy <bhalevy@primarydata.com>
7787 L:      osd-dev@open-osd.org
7788 W:      http://open-osd.org
7789 T:      git git://git.open-osd.org/open-osd.git
7790 S:      Maintained
7791 F:      drivers/scsi/osd/
7792 F:      include/scsi/osd_*
7793 F:      fs/exofs/
7794
7795 OVERLAY FILESYSTEM
7796 M:      Miklos Szeredi <miklos@szeredi.hu>
7797 L:      linux-unionfs@vger.kernel.org
7798 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
7799 S:      Supported
7800 F:      fs/overlayfs/
7801 F:      Documentation/filesystems/overlayfs.txt
7802
7803 P54 WIRELESS DRIVER
7804 M:      Christian Lamparter <chunkeey@googlemail.com>
7805 L:      linux-wireless@vger.kernel.org
7806 W:      http://wireless.kernel.org/en/users/Drivers/p54
7807 S:      Maintained
7808 F:      drivers/net/wireless/p54/
7809
7810 PA SEMI ETHERNET DRIVER
7811 M:      Olof Johansson <olof@lixom.net>
7812 L:      netdev@vger.kernel.org
7813 S:      Maintained
7814 F:      drivers/net/ethernet/pasemi/*
7815
7816 PA SEMI SMBUS DRIVER
7817 M:      Olof Johansson <olof@lixom.net>
7818 L:      linux-i2c@vger.kernel.org
7819 S:      Maintained
7820 F:      drivers/i2c/busses/i2c-pasemi.c
7821
7822 PADATA PARALLEL EXECUTION MECHANISM
7823 M:      Steffen Klassert <steffen.klassert@secunet.com>
7824 L:      linux-crypto@vger.kernel.org
7825 S:      Maintained
7826 F:      kernel/padata.c
7827 F:      include/linux/padata.h
7828 F:      Documentation/padata.txt
7829
7830 PANASONIC LAPTOP ACPI EXTRAS DRIVER
7831 M:      Harald Welte <laforge@gnumonks.org>
7832 L:      platform-driver-x86@vger.kernel.org
7833 S:      Maintained
7834 F:      drivers/platform/x86/panasonic-laptop.c
7835
7836 PANASONIC MN10300/AM33/AM34 PORT
7837 M:      David Howells <dhowells@redhat.com>
7838 M:      Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
7839 L:      linux-am33-list@redhat.com (moderated for non-subscribers)
7840 W:      ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
7841 S:      Maintained
7842 F:      Documentation/mn10300/
7843 F:      arch/mn10300/
7844
7845 PARALLEL PORT SUBSYSTEM
7846 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
7847 M:      Sudip Mukherjee <sudip@vectorindia.org>
7848 L:      linux-parport@lists.infradead.org (subscribers-only)
7849 S:      Maintained
7850 F:      drivers/parport/
7851 F:      include/linux/parport*.h
7852 F:      drivers/char/ppdev.c
7853 F:      include/uapi/linux/ppdev.h
7854 F:      Documentation/parport*.txt
7855
7856 PARAVIRT_OPS INTERFACE
7857 M:      Jeremy Fitzhardinge <jeremy@goop.org>
7858 M:      Chris Wright <chrisw@sous-sol.org>
7859 M:      Alok Kataria <akataria@vmware.com>
7860 M:      Rusty Russell <rusty@rustcorp.com.au>
7861 L:      virtualization@lists.linux-foundation.org
7862 S:      Supported
7863 F:      Documentation/virtual/paravirt_ops.txt
7864 F:      arch/*/kernel/paravirt*
7865 F:      arch/*/include/asm/paravirt.h
7866
7867 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
7868 M:      Tim Waugh <tim@cyberelk.net>
7869 L:      linux-parport@lists.infradead.org (subscribers-only)
7870 S:      Maintained
7871 F:      Documentation/blockdev/paride.txt
7872 F:      drivers/block/paride/
7873
7874 PARISC ARCHITECTURE
7875 M:      "James E.J. Bottomley" <jejb@parisc-linux.org>
7876 M:      Helge Deller <deller@gmx.de>
7877 L:      linux-parisc@vger.kernel.org
7878 W:      http://www.parisc-linux.org/
7879 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
7880 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
7881 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
7882 S:      Maintained
7883 F:      arch/parisc/
7884 F:      Documentation/parisc/
7885 F:      drivers/parisc/
7886 F:      drivers/char/agp/parisc-agp.c
7887 F:      drivers/input/serio/gscps2.c
7888 F:      drivers/parport/parport_gsc.*
7889 F:      drivers/tty/serial/8250/8250_gsc.c
7890 F:      drivers/video/fbdev/sti*
7891 F:      drivers/video/console/sti*
7892 F:      drivers/video/logo/logo_parisc*
7893
7894 PC87360 HARDWARE MONITORING DRIVER
7895 M:      Jim Cromie <jim.cromie@gmail.com>
7896 L:      lm-sensors@lm-sensors.org
7897 S:      Maintained
7898 F:      Documentation/hwmon/pc87360
7899 F:      drivers/hwmon/pc87360.c
7900
7901 PC8736x GPIO DRIVER
7902 M:      Jim Cromie <jim.cromie@gmail.com>
7903 S:      Maintained
7904 F:      drivers/char/pc8736x_gpio.c
7905
7906 PC87427 HARDWARE MONITORING DRIVER
7907 M:      Jean Delvare <jdelvare@suse.com>
7908 L:      lm-sensors@lm-sensors.org
7909 S:      Maintained
7910 F:      Documentation/hwmon/pc87427
7911 F:      drivers/hwmon/pc87427.c
7912
7913 PCA9532 LED DRIVER
7914 M:      Riku Voipio <riku.voipio@iki.fi>
7915 S:      Maintained
7916 F:      drivers/leds/leds-pca9532.c
7917 F:      include/linux/leds-pca9532.h
7918
7919 PCA9541 I2C BUS MASTER SELECTOR DRIVER
7920 M:      Guenter Roeck <linux@roeck-us.net>
7921 L:      linux-i2c@vger.kernel.org
7922 S:      Maintained
7923 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
7924
7925 PCDP - PRIMARY CONSOLE AND DEBUG PORT
7926 M:      Khalid Aziz <khalid@gonehiking.org>
7927 S:      Maintained
7928 F:      drivers/firmware/pcdp.*
7929
7930 PCI ERROR RECOVERY
7931 M:      Linas Vepstas <linasvepstas@gmail.com>
7932 L:      linux-pci@vger.kernel.org
7933 S:      Supported
7934 F:      Documentation/PCI/pci-error-recovery.txt
7935
7936 PCI SUBSYSTEM
7937 M:      Bjorn Helgaas <bhelgaas@google.com>
7938 L:      linux-pci@vger.kernel.org
7939 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
7940 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
7941 S:      Supported
7942 F:      Documentation/PCI/
7943 F:      drivers/pci/
7944 F:      include/linux/pci*
7945 F:      arch/x86/pci/
7946 F:      arch/x86/kernel/quirks.c
7947
7948 PCI DRIVER FOR ARM VERSATILE PLATFORM
7949 M:      Rob Herring <robh@kernel.org>
7950 L:      linux-pci@vger.kernel.org
7951 L:      linux-arm-kernel@lists.infradead.org
7952 S:      Maintained
7953 F:      Documentation/devicetree/bindings/pci/versatile.txt
7954 F:      drivers/pci/host/pci-versatile.c
7955
7956 PCI DRIVER FOR APPLIEDMICRO XGENE
7957 M:      Tanmay Inamdar <tinamdar@apm.com>
7958 L:      linux-pci@vger.kernel.org
7959 L:      linux-arm-kernel@lists.infradead.org
7960 S:      Maintained
7961 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
7962 F:      drivers/pci/host/pci-xgene.c
7963
7964 PCI DRIVER FOR FREESCALE LAYERSCAPE
7965 M:      Minghuan Lian <minghuan.Lian@freescale.com>
7966 M:      Mingkai Hu <mingkai.hu@freescale.com>
7967 M:      Roy Zang <tie-fei.zang@freescale.com>
7968 L:      linuxppc-dev@lists.ozlabs.org
7969 L:      linux-pci@vger.kernel.org
7970 L:      linux-arm-kernel@lists.infradead.org
7971 S:      Maintained
7972 F:      drivers/pci/host/*layerscape*
7973
7974 PCI DRIVER FOR IMX6
7975 M:      Richard Zhu <Richard.Zhu@freescale.com>
7976 M:      Lucas Stach <l.stach@pengutronix.de>
7977 L:      linux-pci@vger.kernel.org
7978 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7979 S:      Maintained
7980 F:      drivers/pci/host/*imx6*
7981
7982 PCI DRIVER FOR TI KEYSTONE
7983 M:      Murali Karicheri <m-karicheri2@ti.com>
7984 L:      linux-pci@vger.kernel.org
7985 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7986 S:      Maintained
7987 F:      drivers/pci/host/*keystone*
7988
7989 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
7990 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7991 M:      Jason Cooper <jason@lakedaemon.net>
7992 L:      linux-pci@vger.kernel.org
7993 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7994 S:      Maintained
7995 F:      drivers/pci/host/*mvebu*
7996
7997 PCI DRIVER FOR NVIDIA TEGRA
7998 M:      Thierry Reding <thierry.reding@gmail.com>
7999 L:      linux-tegra@vger.kernel.org
8000 L:      linux-pci@vger.kernel.org
8001 S:      Supported
8002 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
8003 F:      drivers/pci/host/pci-tegra.c
8004
8005 PCI DRIVER FOR TI DRA7XX
8006 M:      Kishon Vijay Abraham I <kishon@ti.com>
8007 L:      linux-omap@vger.kernel.org
8008 L:      linux-pci@vger.kernel.org
8009 S:      Supported
8010 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
8011 F:      drivers/pci/host/pci-dra7xx.c
8012
8013 PCI DRIVER FOR RENESAS R-CAR
8014 M:      Simon Horman <horms@verge.net.au>
8015 L:      linux-pci@vger.kernel.org
8016 L:      linux-sh@vger.kernel.org
8017 S:      Maintained
8018 F:      drivers/pci/host/*rcar*
8019
8020 PCI DRIVER FOR SAMSUNG EXYNOS
8021 M:      Jingoo Han <jingoohan1@gmail.com>
8022 L:      linux-pci@vger.kernel.org
8023 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8024 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8025 S:      Maintained
8026 F:      drivers/pci/host/pci-exynos.c
8027
8028 PCI DRIVER FOR SYNOPSIS DESIGNWARE
8029 M:      Jingoo Han <jingoohan1@gmail.com>
8030 M:      Pratyush Anand <pratyush.anand@gmail.com>
8031 L:      linux-pci@vger.kernel.org
8032 S:      Maintained
8033 F:      drivers/pci/host/*designware*
8034
8035 PCI DRIVER FOR GENERIC OF HOSTS
8036 M:      Will Deacon <will.deacon@arm.com>
8037 L:      linux-pci@vger.kernel.org
8038 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8039 S:      Maintained
8040 F:      Documentation/devicetree/bindings/pci/host-generic-pci.txt
8041 F:      drivers/pci/host/pci-host-generic.c
8042
8043 PCIE DRIVER FOR ST SPEAR13XX
8044 M:      Pratyush Anand <pratyush.anand@gmail.com>
8045 L:      linux-pci@vger.kernel.org
8046 S:      Maintained
8047 F:      drivers/pci/host/*spear*
8048
8049 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
8050 M:      Duc Dang <dhdang@apm.com>
8051 L:      linux-pci@vger.kernel.org
8052 L:      linux-arm-kernel@lists.infradead.org
8053 S:      Maintained
8054 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
8055 F:      drivers/pci/host/pci-xgene-msi.c
8056
8057 PCMCIA SUBSYSTEM
8058 P:      Linux PCMCIA Team
8059 L:      linux-pcmcia@lists.infradead.org
8060 W:      http://lists.infradead.org/mailman/listinfo/linux-pcmcia
8061 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
8062 S:      Maintained
8063 F:      Documentation/pcmcia/
8064 F:      drivers/pcmcia/
8065 F:      include/pcmcia/
8066
8067 PCNET32 NETWORK DRIVER
8068 M:      Don Fry <pcnet32@frontier.com>
8069 L:      netdev@vger.kernel.org
8070 S:      Maintained
8071 F:      drivers/net/ethernet/amd/pcnet32.c
8072
8073 PCRYPT PARALLEL CRYPTO ENGINE
8074 M:      Steffen Klassert <steffen.klassert@secunet.com>
8075 L:      linux-crypto@vger.kernel.org
8076 S:      Maintained
8077 F:      crypto/pcrypt.c
8078 F:      include/crypto/pcrypt.h
8079
8080 PER-CPU MEMORY ALLOCATOR
8081 M:      Tejun Heo <tj@kernel.org>
8082 M:      Christoph Lameter <cl@linux-foundation.org>
8083 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
8084 S:      Maintained
8085 F:      include/linux/percpu*.h
8086 F:      mm/percpu*.c
8087 F:      arch/*/include/asm/percpu.h
8088
8089 PER-TASK DELAY ACCOUNTING
8090 M:      Balbir Singh <bsingharora@gmail.com>
8091 S:      Maintained
8092 F:      include/linux/delayacct.h
8093 F:      kernel/delayacct.c
8094
8095 PERFORMANCE EVENTS SUBSYSTEM
8096 M:      Peter Zijlstra <a.p.zijlstra@chello.nl>
8097 M:      Ingo Molnar <mingo@redhat.com>
8098 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
8099 L:      linux-kernel@vger.kernel.org
8100 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
8101 S:      Supported
8102 F:      kernel/events/*
8103 F:      include/linux/perf_event.h
8104 F:      include/uapi/linux/perf_event.h
8105 F:      arch/*/kernel/perf_event*.c
8106 F:      arch/*/kernel/*/perf_event*.c
8107 F:      arch/*/kernel/*/*/perf_event*.c
8108 F:      arch/*/include/asm/perf_event.h
8109 F:      arch/*/kernel/perf_callchain.c
8110 F:      tools/perf/
8111
8112 PERSONALITY HANDLING
8113 M:      Christoph Hellwig <hch@infradead.org>
8114 L:      linux-abi-devel@lists.sourceforge.net
8115 S:      Maintained
8116 F:      include/linux/personality.h
8117 F:      include/uapi/linux/personality.h
8118
8119 PHONET PROTOCOL
8120 M:      Remi Denis-Courmont <courmisch@gmail.com>
8121 S:      Supported
8122 F:      Documentation/networking/phonet.txt
8123 F:      include/linux/phonet.h
8124 F:      include/net/phonet/
8125 F:      include/uapi/linux/phonet.h
8126 F:      net/phonet/
8127
8128 PHRAM MTD DRIVER
8129 M:      Joern Engel <joern@lazybastard.org>
8130 L:      linux-mtd@lists.infradead.org
8131 S:      Maintained
8132 F:      drivers/mtd/devices/phram.c
8133
8134 PICOLCD HID DRIVER
8135 M:      Bruno PrĂ©mont <bonbons@linux-vserver.org>
8136 L:      linux-input@vger.kernel.org
8137 S:      Maintained
8138 F:      drivers/hid/hid-picolcd*
8139
8140 PICOXCELL SUPPORT
8141 M:      Jamie Iles <jamie@jamieiles.com>
8142 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8143 T:      git git://github.com/jamieiles/linux-2.6-ji.git
8144 S:      Supported
8145 F:      arch/arm/boot/dts/picoxcell*
8146 F:      arch/arm/mach-picoxcell/
8147 F:      drivers/crypto/picoxcell*
8148
8149 PIN CONTROL SUBSYSTEM
8150 M:      Linus Walleij <linus.walleij@linaro.org>
8151 L:      linux-gpio@vger.kernel.org
8152 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
8153 S:      Maintained
8154 F:      drivers/pinctrl/
8155 F:      include/linux/pinctrl/
8156
8157 PIN CONTROLLER - ATMEL AT91
8158 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
8159 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8160 S:      Maintained
8161 F:      drivers/pinctrl/pinctrl-at91.*
8162
8163 PIN CONTROLLER - INTEL
8164 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8165 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
8166 S:      Maintained
8167 F:      drivers/pinctrl/intel/
8168
8169 PIN CONTROLLER - RENESAS
8170 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8171 L:      linux-sh@vger.kernel.org
8172 S:      Maintained
8173 F:      drivers/pinctrl/sh-pfc/
8174
8175 PIN CONTROLLER - SAMSUNG
8176 M:      Tomasz Figa <tomasz.figa@gmail.com>
8177 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8178 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8179 S:      Maintained
8180 F:      drivers/pinctrl/samsung/
8181
8182 PIN CONTROLLER - ST SPEAR
8183 M:      Viresh Kumar <vireshk@kernel.org>
8184 L:      spear-devel@list.st.com
8185 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8186 W:      http://www.st.com/spear
8187 S:      Maintained
8188 F:      drivers/pinctrl/spear/
8189
8190 PKTCDVD DRIVER
8191 M:      Jiri Kosina <jikos@kernel.org>
8192 S:      Maintained
8193 F:      drivers/block/pktcdvd.c
8194 F:      include/linux/pktcdvd.h
8195 F:      include/uapi/linux/pktcdvd.h
8196
8197 PKUNITY SOC DRIVERS
8198 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
8199 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
8200 S:      Maintained
8201 T:      git git://github.com/gxt/linux.git
8202 F:      drivers/input/serio/i8042-unicore32io.h
8203 F:      drivers/i2c/busses/i2c-puv3.c
8204 F:      drivers/video/fbdev/fb-puv3.c
8205 F:      drivers/rtc/rtc-puv3.c
8206
8207 PMBUS HARDWARE MONITORING DRIVERS
8208 M:      Guenter Roeck <linux@roeck-us.net>
8209 L:      lm-sensors@lm-sensors.org
8210 W:      http://www.lm-sensors.org/
8211 W:      http://www.roeck-us.net/linux/drivers/
8212 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8213 S:      Maintained
8214 F:      Documentation/hwmon/pmbus
8215 F:      drivers/hwmon/pmbus/
8216 F:      include/linux/i2c/pmbus.h
8217
8218 PMC SIERRA MaxRAID DRIVER
8219 L:      linux-scsi@vger.kernel.org
8220 W:      http://www.pmc-sierra.com/
8221 S:      Orphan
8222 F:      drivers/scsi/pmcraid.*
8223
8224 PMC SIERRA PM8001 DRIVER
8225 M:      Jack Wang <jinpu.wang@profitbricks.com>
8226 M:      lindar_liu@usish.com
8227 L:      pmchba@pmcs.com
8228 L:      linux-scsi@vger.kernel.org
8229 S:      Supported
8230 F:      drivers/scsi/pm8001/
8231
8232 POSIX CLOCKS and TIMERS
8233 M:      Thomas Gleixner <tglx@linutronix.de>
8234 L:      linux-kernel@vger.kernel.org
8235 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8236 S:      Maintained
8237 F:      fs/timerfd.c
8238 F:      include/linux/timer*
8239 F:      kernel/time/*timer*
8240
8241 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
8242 M:      Sebastian Reichel <sre@kernel.org>
8243 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
8244 M:      David Woodhouse <dwmw2@infradead.org>
8245 L:      linux-pm@vger.kernel.org
8246 T:      git git://git.infradead.org/battery-2.6.git
8247 S:      Maintained
8248 F:      include/linux/power_supply.h
8249 F:      drivers/power/
8250 X:      drivers/power/avs/
8251
8252 POWER STATE COORDINATION INTERFACE (PSCI)
8253 M:      Mark Rutland <mark.rutland@arm.com>
8254 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
8255 L:      linux-arm-kernel@lists.infradead.org
8256 S:      Maintained
8257 F:      drivers/firmware/psci.c
8258 F:      include/linux/psci.h
8259 F:      include/uapi/linux/psci.h
8260
8261 PNP SUPPORT
8262 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
8263 S:      Maintained
8264 F:      drivers/pnp/
8265
8266 PNXxxxx I2C DRIVER
8267 M:      Vitaly Wool <vitalywool@gmail.com>
8268 L:      linux-i2c@vger.kernel.org
8269 S:      Maintained
8270 F:      drivers/i2c/busses/i2c-pnx.c
8271
8272 PPP PROTOCOL DRIVERS AND COMPRESSORS
8273 M:      Paul Mackerras <paulus@samba.org>
8274 L:      linux-ppp@vger.kernel.org
8275 S:      Maintained
8276 F:      drivers/net/ppp/ppp_*
8277
8278 PPP OVER ATM (RFC 2364)
8279 M:      Mitchell Blank Jr <mitch@sfgoth.com>
8280 S:      Maintained
8281 F:      net/atm/pppoatm.c
8282 F:      include/uapi/linux/atmppp.h
8283
8284 PPP OVER ETHERNET
8285 M:      Michal Ostrowski <mostrows@earthlink.net>
8286 S:      Maintained
8287 F:      drivers/net/ppp/pppoe.c
8288 F:      drivers/net/ppp/pppox.c
8289
8290 PPP OVER L2TP
8291 M:      James Chapman <jchapman@katalix.com>
8292 S:      Maintained
8293 F:      net/l2tp/l2tp_ppp.c
8294 F:      include/linux/if_pppol2tp.h
8295 F:      include/uapi/linux/if_pppol2tp.h
8296
8297 PPS SUPPORT
8298 M:      Rodolfo Giometti <giometti@enneenne.com>
8299 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
8300 L:      linuxpps@ml.enneenne.com (subscribers-only)
8301 S:      Maintained
8302 F:      Documentation/pps/
8303 F:      drivers/pps/
8304 F:      include/linux/pps*.h
8305
8306 PPTP DRIVER
8307 M:      Dmitry Kozlov <xeb@mail.ru>
8308 L:      netdev@vger.kernel.org
8309 S:      Maintained
8310 F:      drivers/net/ppp/pptp.c
8311 W:      http://sourceforge.net/projects/accel-pptp
8312
8313 PREEMPTIBLE KERNEL
8314 M:      Robert Love <rml@tech9.net>
8315 L:      kpreempt-tech@lists.sourceforge.net
8316 W:      ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
8317 S:      Supported
8318 F:      Documentation/preempt-locking.txt
8319 F:      include/linux/preempt.h
8320
8321 PRISM54 WIRELESS DRIVER
8322 M:      "Luis R. Rodriguez" <mcgrof@gmail.com>
8323 L:      linux-wireless@vger.kernel.org
8324 W:      http://wireless.kernel.org/en/users/Drivers/p54
8325 S:      Obsolete
8326 F:      drivers/net/wireless/prism54/
8327
8328 PS3 NETWORK SUPPORT
8329 M:      Geoff Levand <geoff@infradead.org>
8330 L:      netdev@vger.kernel.org
8331 L:      linuxppc-dev@lists.ozlabs.org
8332 S:      Maintained
8333 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
8334
8335 PS3 PLATFORM SUPPORT
8336 M:      Geoff Levand <geoff@infradead.org>
8337 L:      linuxppc-dev@lists.ozlabs.org
8338 S:      Maintained
8339 F:      arch/powerpc/boot/ps3*
8340 F:      arch/powerpc/include/asm/lv1call.h
8341 F:      arch/powerpc/include/asm/ps3*.h
8342 F:      arch/powerpc/platforms/ps3/
8343 F:      drivers/*/ps3*
8344 F:      drivers/ps3/
8345 F:      drivers/rtc/rtc-ps3.c
8346 F:      drivers/usb/host/*ps3.c
8347 F:      sound/ppc/snd_ps3*
8348
8349 PS3VRAM DRIVER
8350 M:      Jim Paris <jim@jtan.com>
8351 M:      Geoff Levand <geoff@infradead.org>
8352 L:      linuxppc-dev@lists.ozlabs.org
8353 S:      Maintained
8354 F:      drivers/block/ps3vram.c
8355
8356 PSTORE FILESYSTEM
8357 M:      Anton Vorontsov <anton@enomsg.org>
8358 M:      Colin Cross <ccross@android.com>
8359 M:      Kees Cook <keescook@chromium.org>
8360 M:      Tony Luck <tony.luck@intel.com>
8361 S:      Maintained
8362 T:      git git://git.infradead.org/users/cbou/linux-pstore.git
8363 F:      fs/pstore/
8364 F:      include/linux/pstore*
8365 F:      drivers/firmware/efi/efi-pstore.c
8366 F:      drivers/acpi/apei/erst.c
8367
8368 PTP HARDWARE CLOCK SUPPORT
8369 M:      Richard Cochran <richardcochran@gmail.com>
8370 L:      netdev@vger.kernel.org
8371 S:      Maintained
8372 W:      http://linuxptp.sourceforge.net/
8373 F:      Documentation/ABI/testing/sysfs-ptp
8374 F:      Documentation/ptp/*
8375 F:      drivers/net/ethernet/freescale/gianfar_ptp.c
8376 F:      drivers/net/phy/dp83640*
8377 F:      drivers/ptp/*
8378 F:      include/linux/ptp_cl*
8379
8380 PTRACE SUPPORT
8381 M:      Roland McGrath <roland@hack.frob.com>
8382 M:      Oleg Nesterov <oleg@redhat.com>
8383 S:      Maintained
8384 F:      include/asm-generic/syscall.h
8385 F:      include/linux/ptrace.h
8386 F:      include/linux/regset.h
8387 F:      include/linux/tracehook.h
8388 F:      include/uapi/linux/ptrace.h
8389 F:      kernel/ptrace.c
8390
8391 PVRUSB2 VIDEO4LINUX DRIVER
8392 M:      Mike Isely <isely@pobox.com>
8393 L:      pvrusb2@isely.net       (subscribers-only)
8394 L:      linux-media@vger.kernel.org
8395 W:      http://www.isely.net/pvrusb2/
8396 T:      git git://linuxtv.org/media_tree.git
8397 S:      Maintained
8398 F:      Documentation/video4linux/README.pvrusb2
8399 F:      drivers/media/usb/pvrusb2/
8400
8401 PWC WEBCAM DRIVER
8402 M:      Hans de Goede <hdegoede@redhat.com>
8403 L:      linux-media@vger.kernel.org
8404 T:      git git://linuxtv.org/media_tree.git
8405 S:      Maintained
8406 F:      drivers/media/usb/pwc/*
8407
8408 PWM FAN DRIVER
8409 M:      Kamil Debski <k.debski@samsung.com>
8410 L:      lm-sensors@lm-sensors.org
8411 S:      Supported
8412 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
8413 F:      Documentation/hwmon/pwm-fan
8414 F:      drivers/hwmon/pwm-fan.c
8415
8416 PWM SUBSYSTEM
8417 M:      Thierry Reding <thierry.reding@gmail.com>
8418 L:      linux-pwm@vger.kernel.org
8419 S:      Maintained
8420 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
8421 F:      Documentation/pwm.txt
8422 F:      Documentation/devicetree/bindings/pwm/
8423 F:      include/linux/pwm.h
8424 F:      drivers/pwm/
8425 F:      drivers/video/backlight/pwm_bl.c
8426 F:      include/linux/pwm_backlight.h
8427
8428 PXA2xx/PXA3xx SUPPORT
8429 M:      Daniel Mack <daniel@zonque.org>
8430 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
8431 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8432 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8433 T:      git git://github.com/hzhuang1/linux.git
8434 T:      git git://github.com/rjarzmik/linux.git
8435 S:      Maintained
8436 F:      arch/arm/mach-pxa/
8437 F:      drivers/dma/pxa*
8438 F:      drivers/pcmcia/pxa2xx*
8439 F:      drivers/spi/spi-pxa2xx*
8440 F:      drivers/usb/gadget/udc/pxa2*
8441 F:      include/sound/pxa2xx-lib.h
8442 F:      sound/arm/pxa*
8443 F:      sound/soc/pxa/
8444
8445 PXA3xx NAND FLASH DRIVER
8446 M:      Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
8447 L:      linux-mtd@lists.infradead.org
8448 S:      Maintained
8449 F:      drivers/mtd/nand/pxa3xx_nand.c
8450
8451 MMP SUPPORT
8452 M:      Eric Miao <eric.y.miao@gmail.com>
8453 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
8454 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8455 T:      git git://github.com/hzhuang1/linux.git
8456 T:      git git://git.linaro.org/people/ycmiao/pxa-linux.git
8457 S:      Maintained
8458 F:      arch/arm/mach-mmp/
8459
8460 PXA MMCI DRIVER
8461 S:      Orphan
8462
8463 PXA RTC DRIVER
8464 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8465 L:      rtc-linux@googlegroups.com
8466 S:      Maintained
8467
8468 QAT DRIVER
8469 M:      Tadeusz Struk <tadeusz.struk@intel.com>
8470 L:      qat-linux@intel.com
8471 S:      Supported
8472 F:      drivers/crypto/qat/
8473
8474 QIB DRIVER
8475 M:      Mike Marciniszyn <infinipath@intel.com>
8476 L:      linux-rdma@vger.kernel.org
8477 S:      Supported
8478 F:      drivers/infiniband/hw/qib/
8479
8480 QLOGIC QLA1280 SCSI DRIVER
8481 M:      Michael Reed <mdr@sgi.com>
8482 L:      linux-scsi@vger.kernel.org
8483 S:      Maintained
8484 F:      drivers/scsi/qla1280.[ch]
8485
8486 QLOGIC QLA2XXX FC-SCSI DRIVER
8487 M:      qla2xxx-upstream@qlogic.com
8488 L:      linux-scsi@vger.kernel.org
8489 S:      Supported
8490 F:      Documentation/scsi/LICENSE.qla2xxx
8491 F:      drivers/scsi/qla2xxx/
8492
8493 QLOGIC QLA4XXX iSCSI DRIVER
8494 M:      QLogic-Storage-Upstream@qlogic.com
8495 L:      linux-scsi@vger.kernel.org
8496 S:      Supported
8497 F:      Documentation/scsi/LICENSE.qla4xxx
8498 F:      drivers/scsi/qla4xxx/
8499
8500 QLOGIC QLA3XXX NETWORK DRIVER
8501 M:      Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
8502 M:      Ron Mercer <ron.mercer@qlogic.com>
8503 M:      linux-driver@qlogic.com
8504 L:      netdev@vger.kernel.org
8505 S:      Supported
8506 F:      Documentation/networking/LICENSE.qla3xxx
8507 F:      drivers/net/ethernet/qlogic/qla3xxx.*
8508
8509 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
8510 M:      Dept-GELinuxNICDev@qlogic.com
8511 L:      netdev@vger.kernel.org
8512 S:      Supported
8513 F:      drivers/net/ethernet/qlogic/qlcnic/
8514
8515 QLOGIC QLGE 10Gb ETHERNET DRIVER
8516 M:      Harish Patil <harish.patil@qlogic.com>
8517 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
8518 M:      Dept-GELinuxNICDev@qlogic.com
8519 M:      linux-driver@qlogic.com
8520 L:      netdev@vger.kernel.org
8521 S:      Supported
8522 F:      drivers/net/ethernet/qlogic/qlge/
8523
8524 QNX4 FILESYSTEM
8525 M:      Anders Larsen <al@alarsen.net>
8526 W:      http://www.alarsen.net/linux/qnx4fs/
8527 S:      Maintained
8528 F:      fs/qnx4/
8529 F:      include/uapi/linux/qnx4_fs.h
8530 F:      include/uapi/linux/qnxtypes.h
8531
8532 QT1010 MEDIA DRIVER
8533 M:      Antti Palosaari <crope@iki.fi>
8534 L:      linux-media@vger.kernel.org
8535 W:      http://linuxtv.org/
8536 W:      http://palosaari.fi/linux/
8537 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8538 T:      git git://linuxtv.org/anttip/media_tree.git
8539 S:      Maintained
8540 F:      drivers/media/tuners/qt1010*
8541
8542 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
8543 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
8544 L:      linux-wireless@vger.kernel.org
8545 L:      ath9k-devel@lists.ath9k.org
8546 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
8547 S:      Supported
8548 F:      drivers/net/wireless/ath/ath9k/
8549
8550 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
8551 M:      Kalle Valo <kvalo@qca.qualcomm.com>
8552 L:      ath10k@lists.infradead.org
8553 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
8554 T:      git git://github.com/kvalo/ath.git
8555 S:      Supported
8556 F:      drivers/net/wireless/ath/ath10k/
8557
8558 QUALCOMM HEXAGON ARCHITECTURE
8559 M:      Richard Kuo <rkuo@codeaurora.org>
8560 L:      linux-hexagon@vger.kernel.org
8561 S:      Supported
8562 F:      arch/hexagon/
8563
8564 QUALCOMM WCN36XX WIRELESS DRIVER
8565 M:      Eugene Krasnikov <k.eugene.e@gmail.com>
8566 L:      wcn36xx@lists.infradead.org
8567 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
8568 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
8569 S:      Supported
8570 F:      drivers/net/wireless/ath/wcn36xx/
8571
8572 RADOS BLOCK DEVICE (RBD)
8573 M:      Ilya Dryomov <idryomov@gmail.com>
8574 M:      Sage Weil <sage@redhat.com>
8575 M:      Alex Elder <elder@kernel.org>
8576 L:      ceph-devel@vger.kernel.org
8577 W:      http://ceph.com/
8578 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
8579 T:      git git://github.com/ceph/ceph-client.git
8580 S:      Supported
8581 F:      Documentation/ABI/testing/sysfs-bus-rbd
8582 F:      drivers/block/rbd.c
8583 F:      drivers/block/rbd_types.h
8584
8585 RADEON FRAMEBUFFER DISPLAY DRIVER
8586 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
8587 L:      linux-fbdev@vger.kernel.org
8588 S:      Maintained
8589 F:      drivers/video/fbdev/aty/radeon*
8590 F:      include/uapi/linux/radeonfb.h
8591
8592 RADIOSHARK RADIO DRIVER
8593 M:      Hans de Goede <hdegoede@redhat.com>
8594 L:      linux-media@vger.kernel.org
8595 T:      git git://linuxtv.org/media_tree.git
8596 S:      Maintained
8597 F:      drivers/media/radio/radio-shark.c
8598
8599 RADIOSHARK2 RADIO DRIVER
8600 M:      Hans de Goede <hdegoede@redhat.com>
8601 L:      linux-media@vger.kernel.org
8602 T:      git git://linuxtv.org/media_tree.git
8603 S:      Maintained
8604 F:      drivers/media/radio/radio-shark2.c
8605 F:      drivers/media/radio/radio-tea5777.c
8606
8607 RAGE128 FRAMEBUFFER DISPLAY DRIVER
8608 M:      Paul Mackerras <paulus@samba.org>
8609 L:      linux-fbdev@vger.kernel.org
8610 S:      Maintained
8611 F:      drivers/video/fbdev/aty/aty128fb.c
8612
8613 RALINK RT2X00 WIRELESS LAN DRIVER
8614 P:      rt2x00 project
8615 M:      Stanislaw Gruszka <sgruszka@redhat.com>
8616 M:      Helmut Schaa <helmut.schaa@googlemail.com>
8617 L:      linux-wireless@vger.kernel.org
8618 S:      Maintained
8619 F:      drivers/net/wireless/rt2x00/
8620
8621 RAMDISK RAM BLOCK DEVICE DRIVER
8622 M:      Jens Axboe <axboe@kernel.dk>
8623 S:      Maintained
8624 F:      Documentation/blockdev/ramdisk.txt
8625 F:      drivers/block/brd.c
8626
8627 RANDOM NUMBER DRIVER
8628 M:      "Theodore Ts'o" <tytso@mit.edu>
8629 S:      Maintained
8630 F:      drivers/char/random.c
8631
8632 RAPIDIO SUBSYSTEM
8633 M:      Matt Porter <mporter@kernel.crashing.org>
8634 M:      Alexandre Bounine <alexandre.bounine@idt.com>
8635 S:      Maintained
8636 F:      drivers/rapidio/
8637
8638 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
8639 L:      linux-wireless@vger.kernel.org
8640 S:      Orphan
8641 F:      drivers/net/wireless/ray*
8642
8643 RCUTORTURE MODULE
8644 M:      Josh Triplett <josh@joshtriplett.org>
8645 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8646 L:      linux-kernel@vger.kernel.org
8647 S:      Supported
8648 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8649 F:      Documentation/RCU/torture.txt
8650 F:      kernel/rcu/rcutorture.c
8651
8652 RCUTORTURE TEST FRAMEWORK
8653 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8654 M:      Josh Triplett <josh@joshtriplett.org>
8655 R:      Steven Rostedt <rostedt@goodmis.org>
8656 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8657 R:      Lai Jiangshan <jiangshanlai@gmail.com>
8658 L:      linux-kernel@vger.kernel.org
8659 S:      Supported
8660 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8661 F:      tools/testing/selftests/rcutorture
8662
8663 RDC R-321X SoC
8664 M:      Florian Fainelli <florian@openwrt.org>
8665 S:      Maintained
8666
8667 RDC R6040 FAST ETHERNET DRIVER
8668 M:      Florian Fainelli <florian@openwrt.org>
8669 L:      netdev@vger.kernel.org
8670 S:      Maintained
8671 F:      drivers/net/ethernet/rdc/r6040.c
8672
8673 RDS - RELIABLE DATAGRAM SOCKETS
8674 M:      Chien Yen <chien.yen@oracle.com>
8675 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
8676 S:      Supported
8677 F:      net/rds/
8678
8679 READ-COPY UPDATE (RCU)
8680 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8681 M:      Josh Triplett <josh@joshtriplett.org>
8682 R:      Steven Rostedt <rostedt@goodmis.org>
8683 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8684 R:      Lai Jiangshan <jiangshanlai@gmail.com>
8685 L:      linux-kernel@vger.kernel.org
8686 W:      http://www.rdrop.com/users/paulmck/RCU/
8687 S:      Supported
8688 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8689 F:      Documentation/RCU/
8690 X:      Documentation/RCU/torture.txt
8691 F:      include/linux/rcu*
8692 X:      include/linux/srcu.h
8693 F:      kernel/rcu/
8694 X:      kernel/torture.c
8695
8696 REAL TIME CLOCK (RTC) SUBSYSTEM
8697 M:      Alessandro Zummo <a.zummo@towertech.it>
8698 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
8699 L:      rtc-linux@googlegroups.com
8700 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
8701 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
8702 S:      Maintained
8703 F:      Documentation/rtc.txt
8704 F:      drivers/rtc/
8705 F:      include/linux/rtc.h
8706 F:      include/uapi/linux/rtc.h
8707
8708 REALTEK AUDIO CODECS
8709 M:      Bard Liao <bardliao@realtek.com>
8710 M:      Oder Chiou <oder_chiou@realtek.com>
8711 S:      Maintained
8712 F:      sound/soc/codecs/rt*
8713 F:      include/sound/rt*.h
8714
8715 REISERFS FILE SYSTEM
8716 L:      reiserfs-devel@vger.kernel.org
8717 S:      Supported
8718 F:      fs/reiserfs/
8719
8720 REGISTER MAP ABSTRACTION
8721 M:      Mark Brown <broonie@kernel.org>
8722 L:      linux-kernel@vger.kernel.org
8723 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
8724 S:      Supported
8725 F:      drivers/base/regmap/
8726 F:      include/linux/regmap.h
8727
8728 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
8729 M:      Ohad Ben-Cohen <ohad@wizery.com>
8730 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
8731 S:      Maintained
8732 F:      drivers/remoteproc/
8733 F:      Documentation/remoteproc.txt
8734 F:      include/linux/remoteproc.h
8735
8736 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
8737 M:      Ohad Ben-Cohen <ohad@wizery.com>
8738 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
8739 S:      Maintained
8740 F:      drivers/rpmsg/
8741 F:      Documentation/rpmsg.txt
8742 F:      include/linux/rpmsg.h
8743
8744 RESET CONTROLLER FRAMEWORK
8745 M:      Philipp Zabel <p.zabel@pengutronix.de>
8746 S:      Maintained
8747 F:      drivers/reset/
8748 F:      Documentation/devicetree/bindings/reset/
8749 F:      include/dt-bindings/reset/
8750 F:      include/linux/reset.h
8751 F:      include/linux/reset-controller.h
8752
8753 RFKILL
8754 M:      Johannes Berg <johannes@sipsolutions.net>
8755 L:      linux-wireless@vger.kernel.org
8756 W:      http://wireless.kernel.org/
8757 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
8758 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
8759 S:      Maintained
8760 F:      Documentation/rfkill.txt
8761 F:      net/rfkill/
8762
8763 RHASHTABLE
8764 M:      Thomas Graf <tgraf@suug.ch>
8765 L:      netdev@vger.kernel.org
8766 S:      Maintained
8767 F:      lib/rhashtable.c
8768 F:      include/linux/rhashtable.h
8769
8770 RICOH SMARTMEDIA/XD DRIVER
8771 M:      Maxim Levitsky <maximlevitsky@gmail.com>
8772 S:      Maintained
8773 F:      drivers/mtd/nand/r852.c
8774 F:      drivers/mtd/nand/r852.h
8775
8776 RICOH R5C592 MEMORYSTICK DRIVER
8777 M:      Maxim Levitsky <maximlevitsky@gmail.com>
8778 S:      Maintained
8779 F:      drivers/memstick/host/r592.*
8780
8781 ROCCAT DRIVERS
8782 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
8783 W:      http://sourceforge.net/projects/roccat/
8784 S:      Maintained
8785 F:      drivers/hid/hid-roccat*
8786 F:      include/linux/hid-roccat*
8787 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
8788
8789 ROCKER DRIVER
8790 M:      Jiri Pirko <jiri@resnulli.us>
8791 M:      Scott Feldman <sfeldma@gmail.com>
8792 L:      netdev@vger.kernel.org
8793 S:      Supported
8794 F:      drivers/net/ethernet/rocker/
8795
8796 ROCKETPORT DRIVER
8797 P:      Comtrol Corp.
8798 W:      http://www.comtrol.com
8799 S:      Maintained
8800 F:      Documentation/serial/rocket.txt
8801 F:      drivers/tty/rocket*
8802
8803 ROCKETPORT EXPRESS/INFINITY DRIVER
8804 M:      Kevin Cernekee <cernekee@gmail.com>
8805 L:      linux-serial@vger.kernel.org
8806 S:      Odd Fixes
8807 F:      drivers/tty/serial/rp2.*
8808
8809 ROSE NETWORK LAYER
8810 M:      Ralf Baechle <ralf@linux-mips.org>
8811 L:      linux-hams@vger.kernel.org
8812 W:      http://www.linux-ax25.org/
8813 S:      Maintained
8814 F:      include/net/rose.h
8815 F:      include/uapi/linux/rose.h
8816 F:      net/rose/
8817
8818 RTL2830 MEDIA DRIVER
8819 M:      Antti Palosaari <crope@iki.fi>
8820 L:      linux-media@vger.kernel.org
8821 W:      http://linuxtv.org/
8822 W:      http://palosaari.fi/linux/
8823 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8824 T:      git git://linuxtv.org/anttip/media_tree.git
8825 S:      Maintained
8826 F:      drivers/media/dvb-frontends/rtl2830*
8827
8828 RTL2832 MEDIA DRIVER
8829 M:      Antti Palosaari <crope@iki.fi>
8830 L:      linux-media@vger.kernel.org
8831 W:      http://linuxtv.org/
8832 W:      http://palosaari.fi/linux/
8833 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8834 T:      git git://linuxtv.org/anttip/media_tree.git
8835 S:      Maintained
8836 F:      drivers/media/dvb-frontends/rtl2832*
8837
8838 RTL2832_SDR MEDIA DRIVER
8839 M:      Antti Palosaari <crope@iki.fi>
8840 L:      linux-media@vger.kernel.org
8841 W:      http://linuxtv.org/
8842 W:      http://palosaari.fi/linux/
8843 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8844 T:      git git://linuxtv.org/anttip/media_tree.git
8845 S:      Maintained
8846 F:      drivers/media/dvb-frontends/rtl2832_sdr*
8847
8848 RTL8180 WIRELESS DRIVER
8849 L:      linux-wireless@vger.kernel.org
8850 W:      http://wireless.kernel.org/
8851 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8852 S:      Orphan
8853 F:      drivers/net/wireless/rtl818x/rtl8180/
8854
8855 RTL8187 WIRELESS DRIVER
8856 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
8857 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
8858 M:      Larry Finger <Larry.Finger@lwfinger.net>
8859 L:      linux-wireless@vger.kernel.org
8860 W:      http://wireless.kernel.org/
8861 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8862 S:      Maintained
8863 F:      drivers/net/wireless/rtl818x/rtl8187/
8864
8865 RTL8192CE WIRELESS DRIVER
8866 M:      Larry Finger <Larry.Finger@lwfinger.net>
8867 M:      Chaoming Li <chaoming_li@realsil.com.cn>
8868 L:      linux-wireless@vger.kernel.org
8869 W:      http://wireless.kernel.org/
8870 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8871 S:      Maintained
8872 F:      drivers/net/wireless/rtlwifi/
8873 F:      drivers/net/wireless/rtlwifi/rtl8192ce/
8874
8875 S3 SAVAGE FRAMEBUFFER DRIVER
8876 M:      Antonino Daplas <adaplas@gmail.com>
8877 L:      linux-fbdev@vger.kernel.org
8878 S:      Maintained
8879 F:      drivers/video/fbdev/savage/
8880
8881 S390
8882 M:      Martin Schwidefsky <schwidefsky@de.ibm.com>
8883 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
8884 L:      linux-s390@vger.kernel.org
8885 W:      http://www.ibm.com/developerworks/linux/linux390/
8886 S:      Supported
8887 F:      arch/s390/
8888 F:      drivers/s390/
8889 F:      Documentation/s390/
8890 F:      Documentation/DocBook/s390*
8891
8892 S390 COMMON I/O LAYER
8893 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
8894 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
8895 L:      linux-s390@vger.kernel.org
8896 W:      http://www.ibm.com/developerworks/linux/linux390/
8897 S:      Supported
8898 F:      drivers/s390/cio/
8899
8900 S390 DASD DRIVER
8901 M:      Stefan Weinhuber <wein@de.ibm.com>
8902 M:      Stefan Haberland <stefan.haberland@de.ibm.com>
8903 L:      linux-s390@vger.kernel.org
8904 W:      http://www.ibm.com/developerworks/linux/linux390/
8905 S:      Supported
8906 F:      drivers/s390/block/dasd*
8907 F:      block/partitions/ibm.c
8908
8909 S390 NETWORK DRIVERS
8910 M:      Ursula Braun <ursula.braun@de.ibm.com>
8911 L:      linux-s390@vger.kernel.org
8912 W:      http://www.ibm.com/developerworks/linux/linux390/
8913 S:      Supported
8914 F:      drivers/s390/net/
8915
8916 S390 PCI SUBSYSTEM
8917 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
8918 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
8919 L:      linux-s390@vger.kernel.org
8920 W:      http://www.ibm.com/developerworks/linux/linux390/
8921 S:      Supported
8922 F:      arch/s390/pci/
8923 F:      drivers/pci/hotplug/s390_pci_hpc.c
8924
8925 S390 ZCRYPT DRIVER
8926 M:      Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
8927 L:      linux-s390@vger.kernel.org
8928 W:      http://www.ibm.com/developerworks/linux/linux390/
8929 S:      Supported
8930 F:      drivers/s390/crypto/
8931
8932 S390 ZFCP DRIVER
8933 M:      Steffen Maier <maier@linux.vnet.ibm.com>
8934 L:      linux-s390@vger.kernel.org
8935 W:      http://www.ibm.com/developerworks/linux/linux390/
8936 S:      Supported
8937 F:      drivers/s390/scsi/zfcp_*
8938
8939 S390 IUCV NETWORK LAYER
8940 M:      Ursula Braun <ursula.braun@de.ibm.com>
8941 L:      linux-s390@vger.kernel.org
8942 W:      http://www.ibm.com/developerworks/linux/linux390/
8943 S:      Supported
8944 F:      drivers/s390/net/*iucv*
8945 F:      include/net/iucv/
8946 F:      net/iucv/
8947
8948 S3C24XX SD/MMC Driver
8949 M:      Ben Dooks <ben-linux@fluff.org>
8950 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8951 S:      Supported
8952 F:      drivers/mmc/host/s3cmci.*
8953
8954 SAA6588 RDS RECEIVER DRIVER
8955 M:      Hans Verkuil <hverkuil@xs4all.nl>
8956 L:      linux-media@vger.kernel.org
8957 T:      git git://linuxtv.org/media_tree.git
8958 W:      http://linuxtv.org
8959 S:      Odd Fixes
8960 F:      drivers/media/i2c/saa6588*
8961
8962 SAA7134 VIDEO4LINUX DRIVER
8963 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
8964 L:      linux-media@vger.kernel.org
8965 W:      http://linuxtv.org
8966 T:      git git://linuxtv.org/media_tree.git
8967 S:      Odd fixes
8968 F:      Documentation/video4linux/*.saa7134
8969 F:      drivers/media/pci/saa7134/
8970
8971 SAA7146 VIDEO4LINUX-2 DRIVER
8972 M:      Hans Verkuil <hverkuil@xs4all.nl>
8973 L:      linux-media@vger.kernel.org
8974 T:      git git://linuxtv.org/media_tree.git
8975 S:      Maintained
8976 F:      drivers/media/common/saa7146/
8977 F:      drivers/media/pci/saa7146/
8978 F:      include/media/saa7146*
8979
8980 SAMSUNG LAPTOP DRIVER
8981 M:      Corentin Chary <corentin.chary@gmail.com>
8982 L:      platform-driver-x86@vger.kernel.org
8983 S:      Maintained
8984 F:      drivers/platform/x86/samsung-laptop.c
8985
8986 SAMSUNG AUDIO (ASoC) DRIVERS
8987 M:      Sangbeom Kim <sbkim73@samsung.com>
8988 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8989 S:      Supported
8990 F:      sound/soc/samsung/
8991
8992 SAMSUNG FRAMEBUFFER DRIVER
8993 M:      Jingoo Han <jingoohan1@gmail.com>
8994 L:      linux-fbdev@vger.kernel.org
8995 S:      Maintained
8996 F:      drivers/video/fbdev/s3c-fb.c
8997
8998 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
8999 M:      Sangbeom Kim <sbkim73@samsung.com>
9000 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
9001 L:      linux-kernel@vger.kernel.org
9002 L:      linux-samsung-soc@vger.kernel.org
9003 S:      Supported
9004 F:      drivers/mfd/sec*.c
9005 F:      drivers/regulator/s2m*.c
9006 F:      drivers/regulator/s5m*.c
9007 F:      drivers/clk/clk-s2mps11.c
9008 F:      drivers/rtc/rtc-s5m.c
9009 F:      include/linux/mfd/samsung/
9010 F:      Documentation/devicetree/bindings/regulator/s5m8767-regulator.txt
9011 F:      Documentation/devicetree/bindings/mfd/s2mp*.txt
9012
9013 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
9014 M:      Kyungmin Park <kyungmin.park@samsung.com>
9015 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
9016 L:      linux-media@vger.kernel.org
9017 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
9018 S:      Supported
9019 F:      drivers/media/platform/exynos4-is/
9020
9021 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
9022 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
9023 L:      linux-media@vger.kernel.org
9024 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9025 S:      Maintained
9026 F:      drivers/media/platform/s3c-camif/
9027 F:      include/media/s3c_camif.h
9028
9029 SAMSUNG S5C73M3 CAMERA DRIVER
9030 M:      Kyungmin Park <kyungmin.park@samsung.com>
9031 M:      Andrzej Hajda <a.hajda@samsung.com>
9032 L:      linux-media@vger.kernel.org
9033 S:      Supported
9034 F:      drivers/media/i2c/s5c73m3/*
9035
9036 SAMSUNG S5K5BAF CAMERA DRIVER
9037 M:      Kyungmin Park <kyungmin.park@samsung.com>
9038 M:      Andrzej Hajda <a.hajda@samsung.com>
9039 L:      linux-media@vger.kernel.org
9040 S:      Supported
9041 F:      drivers/media/i2c/s5k5baf.c
9042
9043 SAMSUNG S3FWRN5 NFC DRIVER
9044 M:      Robert Baldyga <r.baldyga@samsung.com>
9045 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
9046 S:      Supported
9047 F:      drivers/nfc/s3fwrn5
9048
9049 SAMSUNG SOC CLOCK DRIVERS
9050 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
9051 M:      Tomasz Figa <tomasz.figa@gmail.com>
9052 S:      Supported
9053 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9054 F:      drivers/clk/samsung/
9055
9056 SAMSUNG SXGBE DRIVERS
9057 M:      Byungho An <bh74.an@samsung.com>
9058 M:      Girish K S <ks.giri@samsung.com>
9059 M:      Vipul Pandya <vipul.pandya@samsung.com>
9060 S:      Supported
9061 L:      netdev@vger.kernel.org
9062 F:      drivers/net/ethernet/samsung/sxgbe/
9063
9064 SAMSUNG THERMAL DRIVER
9065 M:      Lukasz Majewski <l.majewski@samsung.com>
9066 L:      linux-pm@vger.kernel.org
9067 L:      linux-samsung-soc@vger.kernel.org
9068 S:      Supported
9069 T:      https://github.com/lmajewski/linux-samsung-thermal.git
9070 F:      drivers/thermal/samsung/
9071
9072 SAMSUNG USB2 PHY DRIVER
9073 M:      Kamil Debski <k.debski@samsung.com>
9074 L:      linux-kernel@vger.kernel.org
9075 S:      Supported
9076 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
9077 F:      Documentation/phy/samsung-usb2.txt
9078 F:      drivers/phy/phy-exynos4210-usb2.c
9079 F:      drivers/phy/phy-exynos4x12-usb2.c
9080 F:      drivers/phy/phy-exynos5250-usb2.c
9081 F:      drivers/phy/phy-s5pv210-usb2.c
9082 F:      drivers/phy/phy-samsung-usb2.c
9083 F:      drivers/phy/phy-samsung-usb2.h
9084
9085 SERIAL DRIVERS
9086 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9087 L:      linux-serial@vger.kernel.org
9088 S:      Maintained
9089 F:      drivers/tty/serial/
9090
9091 SYNOPSYS DESIGNWARE DMAC DRIVER
9092 M:      Viresh Kumar <vireshk@kernel.org>
9093 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9094 S:      Maintained
9095 F:      include/linux/dma/dw.h
9096 F:      include/linux/platform_data/dma-dw.h
9097 F:      drivers/dma/dw/
9098
9099 SYNOPSYS DESIGNWARE ETHERNET QOS 4.10a driver
9100 M: Lars Persson <lars.persson@axis.com>
9101 L: netdev@vger.kernel.org
9102 S: Supported
9103 F: Documentation/devicetree/bindings/net/snps,dwc-qos-ethernet.txt
9104 F: drivers/net/ethernet/synopsys/dwc_eth_qos.c
9105
9106 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
9107 M:      Seungwon Jeon <tgih.jun@samsung.com>
9108 M:      Jaehoon Chung <jh80.chung@samsung.com>
9109 L:      linux-mmc@vger.kernel.org
9110 S:      Maintained
9111 F:      include/linux/mmc/dw_mmc.h
9112 F:      drivers/mmc/host/dw_mmc*
9113
9114 THUNDERBOLT DRIVER
9115 M:      Andreas Noever <andreas.noever@gmail.com>
9116 S:      Maintained
9117 F:      drivers/thunderbolt/
9118
9119 TIMEKEEPING, CLOCKSOURCE CORE, NTP
9120 M:      John Stultz <john.stultz@linaro.org>
9121 M:      Thomas Gleixner <tglx@linutronix.de>
9122 L:      linux-kernel@vger.kernel.org
9123 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
9124 S:      Supported
9125 F:      include/linux/clocksource.h
9126 F:      include/linux/time.h
9127 F:      include/linux/timex.h
9128 F:      include/uapi/linux/time.h
9129 F:      include/uapi/linux/timex.h
9130 F:      kernel/time/clocksource.c
9131 F:      kernel/time/time*.c
9132 F:      kernel/time/ntp.c
9133 F:      tools/testing/selftests/timers/
9134
9135 SC1200 WDT DRIVER
9136 M:      Zwane Mwaikambo <zwanem@gmail.com>
9137 S:      Maintained
9138 F:      drivers/watchdog/sc1200wdt.c
9139
9140 SCHEDULER
9141 M:      Ingo Molnar <mingo@redhat.com>
9142 M:      Peter Zijlstra <peterz@infradead.org>
9143 L:      linux-kernel@vger.kernel.org
9144 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
9145 S:      Maintained
9146 F:      kernel/sched/
9147 F:      include/linux/sched.h
9148 F:      include/uapi/linux/sched.h
9149 F:      include/linux/wait.h
9150
9151 SCORE ARCHITECTURE
9152 M:      Chen Liqin <liqin.linux@gmail.com>
9153 M:      Lennox Wu <lennox.wu@gmail.com>
9154 W:      http://www.sunplus.com
9155 S:      Supported
9156 F:      arch/score/
9157
9158 SCSI CDROM DRIVER
9159 M:      Jens Axboe <axboe@kernel.dk>
9160 L:      linux-scsi@vger.kernel.org
9161 W:      http://www.kernel.dk
9162 S:      Maintained
9163 F:      drivers/scsi/sr*
9164
9165 SCSI RDMA PROTOCOL (SRP) INITIATOR
9166 M:      Bart Van Assche <bart.vanassche@sandisk.com>
9167 L:      linux-rdma@vger.kernel.org
9168 S:      Supported
9169 W:      http://www.openfabrics.org
9170 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9171 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
9172 F:      drivers/infiniband/ulp/srp/
9173 F:      include/scsi/srp.h
9174
9175 SCSI SG DRIVER
9176 M:      Doug Gilbert <dgilbert@interlog.com>
9177 L:      linux-scsi@vger.kernel.org
9178 W:      http://sg.danny.cz/sg
9179 S:      Maintained
9180 F:      Documentation/scsi/scsi-generic.txt
9181 F:      drivers/scsi/sg.c
9182 F:      include/scsi/sg.h
9183
9184 SCSI SUBSYSTEM
9185 M:      "James E.J. Bottomley" <JBottomley@odin.com>
9186 L:      linux-scsi@vger.kernel.org
9187 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
9188 S:      Maintained
9189 F:      drivers/scsi/
9190 F:      include/scsi/
9191
9192 SCSI TAPE DRIVER
9193 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
9194 L:      linux-scsi@vger.kernel.org
9195 S:      Maintained
9196 F:      Documentation/scsi/st.txt
9197 F:      drivers/scsi/st.*
9198 F:      drivers/scsi/st_*.h
9199
9200 SCTP PROTOCOL
9201 M:      Vlad Yasevich <vyasevich@gmail.com>
9202 M:      Neil Horman <nhorman@tuxdriver.com>
9203 L:      linux-sctp@vger.kernel.org
9204 W:      http://lksctp.sourceforge.net
9205 S:      Maintained
9206 F:      Documentation/networking/sctp.txt
9207 F:      include/linux/sctp.h
9208 F:      include/uapi/linux/sctp.h
9209 F:      include/net/sctp/
9210 F:      net/sctp/
9211
9212 SCx200 CPU SUPPORT
9213 M:      Jim Cromie <jim.cromie@gmail.com>
9214 S:      Odd Fixes
9215 F:      Documentation/i2c/busses/scx200_acb
9216 F:      arch/x86/platform/scx200/
9217 F:      drivers/watchdog/scx200_wdt.c
9218 F:      drivers/i2c/busses/scx200*
9219 F:      drivers/mtd/maps/scx200_docflash.c
9220 F:      include/linux/scx200.h
9221
9222 SCx200 GPIO DRIVER
9223 M:      Jim Cromie <jim.cromie@gmail.com>
9224 S:      Maintained
9225 F:      drivers/char/scx200_gpio.c
9226 F:      include/linux/scx200_gpio.h
9227
9228 SCx200 HRT CLOCKSOURCE DRIVER
9229 M:      Jim Cromie <jim.cromie@gmail.com>
9230 S:      Maintained
9231 F:      drivers/clocksource/scx200_hrt.c
9232
9233 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
9234 M:      Sascha Sommer <saschasommer@freenet.de>
9235 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
9236 S:      Maintained
9237 F:      drivers/mmc/host/sdricoh_cs.c
9238
9239 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
9240 L:      linux-mmc@vger.kernel.org
9241 S:      Orphan
9242 F:      drivers/mmc/host/sdhci.*
9243 F:      drivers/mmc/host/sdhci-pltfm.[ch]
9244
9245 SECURE COMPUTING
9246 M:      Kees Cook <keescook@chromium.org>
9247 R:      Andy Lutomirski <luto@amacapital.net>
9248 R:      Will Drewry <wad@chromium.org>
9249 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
9250 S:      Supported
9251 F:      kernel/seccomp.c
9252 F:      include/uapi/linux/seccomp.h
9253 F:      include/linux/seccomp.h
9254 F:      tools/testing/selftests/seccomp/*
9255 K:      \bsecure_computing
9256 K:      \bTIF_SECCOMP\b
9257
9258 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
9259 M:      Ben Dooks <ben-linux@fluff.org>
9260 M:      Jaehoon Chung <jh80.chung@samsung.com>
9261 L:      linux-mmc@vger.kernel.org
9262 S:      Maintained
9263 F:      drivers/mmc/host/sdhci-s3c*
9264
9265 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
9266 M:      Viresh Kumar <vireshk@kernel.org>
9267 L:      spear-devel@list.st.com
9268 L:      linux-mmc@vger.kernel.org
9269 S:      Maintained
9270 F:      drivers/mmc/host/sdhci-spear.c
9271
9272 SECURITY SUBSYSTEM
9273 M:      James Morris <james.l.morris@oracle.com>
9274 M:      "Serge E. Hallyn" <serge@hallyn.com>
9275 L:      linux-security-module@vger.kernel.org (suggested Cc:)
9276 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
9277 W:      http://kernsec.org/
9278 S:      Supported
9279 F:      security/
9280
9281 SECURITY CONTACT
9282 M:      Security Officers <security@kernel.org>
9283 S:      Supported
9284
9285 SELINUX SECURITY MODULE
9286 M:      Paul Moore <paul@paul-moore.com>
9287 M:      Stephen Smalley <sds@tycho.nsa.gov>
9288 M:      Eric Paris <eparis@parisplace.org>
9289 L:      selinux@tycho.nsa.gov (moderated for non-subscribers)
9290 W:      http://selinuxproject.org
9291 T:      git git://git.infradead.org/users/pcmoore/selinux
9292 S:      Supported
9293 F:      include/linux/selinux*
9294 F:      security/selinux/
9295 F:      scripts/selinux/
9296
9297 APPARMOR SECURITY MODULE
9298 M:      John Johansen <john.johansen@canonical.com>
9299 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
9300 W:      apparmor.wiki.kernel.org
9301 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
9302 S:      Supported
9303 F:      security/apparmor/
9304
9305 YAMA SECURITY MODULE
9306 M:      Kees Cook <keescook@chromium.org>
9307 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
9308 S:      Supported
9309 F:      security/yama/
9310
9311 SENSABLE PHANTOM
9312 M:      Jiri Slaby <jirislaby@gmail.com>
9313 S:      Maintained
9314 F:      drivers/misc/phantom.c
9315 F:      include/uapi/linux/phantom.h
9316
9317 SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
9318 M:      Jayamohan Kallickal <jayamohan.kallickal@avagotech.com>
9319 M:      Minh Tran <minh.tran@avagotech.com>
9320 M:      John Soni Jose <sony.john-n@avagotech.com>
9321 L:      linux-scsi@vger.kernel.org
9322 W:      http://www.avagotech.com
9323 S:      Supported
9324 F:      drivers/scsi/be2iscsi/
9325
9326 Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER
9327 M:      Sathya Perla <sathya.perla@avagotech.com>
9328 M:      Ajit Khaparde <ajit.khaparde@avagotech.com>
9329 M:      Padmanabh Ratnakar <padmanabh.ratnakar@avagotech.com>
9330 M:      Sriharsha Basavapatna <sriharsha.basavapatna@avagotech.com>
9331 L:      netdev@vger.kernel.org
9332 W:      http://www.emulex.com
9333 S:      Supported
9334 F:      drivers/net/ethernet/emulex/benet/
9335
9336 EMULEX ONECONNECT ROCE DRIVER
9337 M:      Selvin Xavier <selvin.xavier@avagotech.com>
9338 M:      Devesh Sharma <devesh.sharma@avagotech.com>
9339 M:      Mitesh Ahuja <mitesh.ahuja@avagotech.com>
9340 L:      linux-rdma@vger.kernel.org
9341 W:      http://www.emulex.com
9342 S:      Supported
9343 F:      drivers/infiniband/hw/ocrdma/
9344
9345 SFC NETWORK DRIVER
9346 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
9347 M:      Shradha Shah <sshah@solarflare.com>
9348 L:      netdev@vger.kernel.org
9349 S:      Supported
9350 F:      drivers/net/ethernet/sfc/
9351
9352 SGI GRU DRIVER
9353 M:      Dimitri Sivanich <sivanich@sgi.com>
9354 S:      Maintained
9355 F:      drivers/misc/sgi-gru/
9356
9357 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
9358 M:      Pat Gefre <pfg@sgi.com>
9359 L:      linux-ia64@vger.kernel.org
9360 S:      Supported
9361 F:      Documentation/ia64/serial.txt
9362 F:      drivers/tty/serial/ioc?_serial.c
9363 F:      include/linux/ioc?.h
9364
9365 SGI XP/XPC/XPNET DRIVER
9366 M:      Cliff Whickman <cpw@sgi.com>
9367 M:      Robin Holt <robinmholt@gmail.com>
9368 S:      Maintained
9369 F:      drivers/misc/sgi-xp/
9370
9371 SI2157 MEDIA DRIVER
9372 M:      Antti Palosaari <crope@iki.fi>
9373 L:      linux-media@vger.kernel.org
9374 W:      http://linuxtv.org/
9375 W:      http://palosaari.fi/linux/
9376 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9377 T:      git git://linuxtv.org/anttip/media_tree.git
9378 S:      Maintained
9379 F:      drivers/media/tuners/si2157*
9380
9381 SI2168 MEDIA DRIVER
9382 M:      Antti Palosaari <crope@iki.fi>
9383 L:      linux-media@vger.kernel.org
9384 W:      http://linuxtv.org/
9385 W:      http://palosaari.fi/linux/
9386 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9387 T:      git git://linuxtv.org/anttip/media_tree.git
9388 S:      Maintained
9389 F:      drivers/media/dvb-frontends/si2168*
9390
9391 SI470X FM RADIO RECEIVER I2C DRIVER
9392 M:      Hans Verkuil <hverkuil@xs4all.nl>
9393 L:      linux-media@vger.kernel.org
9394 T:      git git://linuxtv.org/media_tree.git
9395 W:      http://linuxtv.org
9396 S:      Odd Fixes
9397 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
9398
9399 SI470X FM RADIO RECEIVER USB DRIVER
9400 M:      Hans Verkuil <hverkuil@xs4all.nl>
9401 L:      linux-media@vger.kernel.org
9402 T:      git git://linuxtv.org/media_tree.git
9403 W:      http://linuxtv.org
9404 S:      Maintained
9405 F:      drivers/media/radio/si470x/radio-si470x-common.c
9406 F:      drivers/media/radio/si470x/radio-si470x.h
9407 F:      drivers/media/radio/si470x/radio-si470x-usb.c
9408
9409 SI4713 FM RADIO TRANSMITTER I2C DRIVER
9410 M:      Eduardo Valentin <edubezval@gmail.com>
9411 L:      linux-media@vger.kernel.org
9412 T:      git git://linuxtv.org/media_tree.git
9413 W:      http://linuxtv.org
9414 S:      Odd Fixes
9415 F:      drivers/media/radio/si4713/si4713.?
9416
9417 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
9418 M:      Eduardo Valentin <edubezval@gmail.com>
9419 L:      linux-media@vger.kernel.org
9420 T:      git git://linuxtv.org/media_tree.git
9421 W:      http://linuxtv.org
9422 S:      Odd Fixes
9423 F:      drivers/media/radio/si4713/radio-platform-si4713.c
9424
9425 SI4713 FM RADIO TRANSMITTER USB DRIVER
9426 M:      Hans Verkuil <hverkuil@xs4all.nl>
9427 L:      linux-media@vger.kernel.org
9428 T:      git git://linuxtv.org/media_tree.git
9429 W:      http://linuxtv.org
9430 S:      Maintained
9431 F:      drivers/media/radio/si4713/radio-usb-si4713.c
9432
9433 SIANO DVB DRIVER
9434 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9435 L:      linux-media@vger.kernel.org
9436 W:      http://linuxtv.org
9437 T:      git git://linuxtv.org/media_tree.git
9438 S:      Odd fixes
9439 F:      drivers/media/common/siano/
9440 F:      drivers/media/usb/siano/
9441 F:      drivers/media/usb/siano/
9442 F:      drivers/media/mmc/siano/
9443
9444 SIMPLEFB FB DRIVER
9445 M:      Hans de Goede <hdegoede@redhat.com>
9446 L:      linux-fbdev@vger.kernel.org
9447 S:      Maintained
9448 F:      Documentation/devicetree/bindings/video/simple-framebuffer.txt
9449 F:      drivers/video/fbdev/simplefb.c
9450 F:      include/linux/platform_data/simplefb.h
9451
9452 SH_VEU V4L2 MEM2MEM DRIVER
9453 L:      linux-media@vger.kernel.org
9454 S:      Orphan
9455 F:      drivers/media/platform/sh_veu.c
9456
9457 SH_VOU V4L2 OUTPUT DRIVER
9458 L:      linux-media@vger.kernel.org
9459 S:      Orphan
9460 F:      drivers/media/platform/sh_vou.c
9461 F:      include/media/sh_vou.h
9462
9463 SIMPLE FIRMWARE INTERFACE (SFI)
9464 M:      Len Brown <lenb@kernel.org>
9465 L:      sfi-devel@simplefirmware.org
9466 W:      http://simplefirmware.org/
9467 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
9468 S:      Supported
9469 F:      arch/x86/platform/sfi/
9470 F:      drivers/sfi/
9471 F:      include/linux/sfi*.h
9472
9473 SIMTEC EB110ATX (Chalice CATS)
9474 P:      Ben Dooks
9475 P:      Vincent Sanders <vince@simtec.co.uk>
9476 M:      Simtec Linux Team <linux@simtec.co.uk>
9477 W:      http://www.simtec.co.uk/products/EB110ATX/
9478 S:      Supported
9479
9480 SIMTEC EB2410ITX (BAST)
9481 P:      Ben Dooks
9482 P:      Vincent Sanders <vince@simtec.co.uk>
9483 M:      Simtec Linux Team <linux@simtec.co.uk>
9484 W:      http://www.simtec.co.uk/products/EB2410ITX/
9485 S:      Supported
9486 F:      arch/arm/mach-s3c24xx/mach-bast.c
9487 F:      arch/arm/mach-s3c24xx/bast-ide.c
9488 F:      arch/arm/mach-s3c24xx/bast-irq.c
9489
9490 TI DAVINCI MACHINE SUPPORT
9491 M:      Sekhar Nori <nsekhar@ti.com>
9492 M:      Kevin Hilman <khilman@deeprootsystems.com>
9493 T:      git git://gitorious.org/linux-davinci/linux-davinci.git
9494 Q:      http://patchwork.kernel.org/project/linux-davinci/list/
9495 S:      Supported
9496 F:      arch/arm/mach-davinci/
9497 F:      drivers/i2c/busses/i2c-davinci.c
9498
9499 TI DAVINCI SERIES MEDIA DRIVER
9500 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9501 L:      linux-media@vger.kernel.org
9502 W:      http://linuxtv.org/
9503 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9504 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9505 S:      Maintained
9506 F:      drivers/media/platform/davinci/
9507 F:      include/media/davinci/
9508
9509 TI AM437X VPFE DRIVER
9510 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9511 L:      linux-media@vger.kernel.org
9512 W:      http://linuxtv.org/
9513 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9514 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9515 S:      Maintained
9516 F:      drivers/media/platform/am437x/
9517
9518 OV2659 OMNIVISION SENSOR DRIVER
9519 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9520 L:      linux-media@vger.kernel.org
9521 W:      http://linuxtv.org/
9522 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9523 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9524 S:      Maintained
9525 F:      drivers/media/i2c/ov2659.c
9526 F:      include/media/ov2659.h
9527
9528 SILICON MOTION SM712 FRAME BUFFER DRIVER
9529 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
9530 M:      Teddy Wang <teddy.wang@siliconmotion.com>
9531 M:      Sudip Mukherjee <sudip@vectorindia.org>
9532 L:      linux-fbdev@vger.kernel.org
9533 S:      Maintained
9534 F:      drivers/video/fbdev/sm712*
9535 F:      Documentation/fb/sm712fb.txt
9536
9537 SIS 190 ETHERNET DRIVER
9538 M:      Francois Romieu <romieu@fr.zoreil.com>
9539 L:      netdev@vger.kernel.org
9540 S:      Maintained
9541 F:      drivers/net/ethernet/sis/sis190.c
9542
9543 SIS 900/7016 FAST ETHERNET DRIVER
9544 M:      Daniele Venzano <venza@brownhat.org>
9545 W:      http://www.brownhat.org/sis900.html
9546 L:      netdev@vger.kernel.org
9547 S:      Maintained
9548 F:      drivers/net/ethernet/sis/sis900.*
9549
9550 SIS FRAMEBUFFER DRIVER
9551 M:      Thomas Winischhofer <thomas@winischhofer.net>
9552 W:      http://www.winischhofer.net/linuxsisvga.shtml
9553 S:      Maintained
9554 F:      Documentation/fb/sisfb.txt
9555 F:      drivers/video/fbdev/sis/
9556 F:      include/video/sisfb.h
9557
9558 SIS USB2VGA DRIVER
9559 M:      Thomas Winischhofer <thomas@winischhofer.net>
9560 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
9561 S:      Maintained
9562 F:      drivers/usb/misc/sisusbvga/
9563
9564 SLAB ALLOCATOR
9565 M:      Christoph Lameter <cl@linux.com>
9566 M:      Pekka Enberg <penberg@kernel.org>
9567 M:      David Rientjes <rientjes@google.com>
9568 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
9569 M:      Andrew Morton <akpm@linux-foundation.org>
9570 L:      linux-mm@kvack.org
9571 S:      Maintained
9572 F:      include/linux/sl?b*.h
9573 F:      mm/sl?b*
9574
9575 SLEEPABLE READ-COPY UPDATE (SRCU)
9576 M:      Lai Jiangshan <jiangshanlai@gmail.com>
9577 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9578 M:      Josh Triplett <josh@joshtriplett.org>
9579 R:      Steven Rostedt <rostedt@goodmis.org>
9580 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9581 L:      linux-kernel@vger.kernel.org
9582 W:      http://www.rdrop.com/users/paulmck/RCU/
9583 S:      Supported
9584 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9585 F:      include/linux/srcu.h
9586 F:      kernel/rcu/srcu.c
9587
9588 SMACK SECURITY MODULE
9589 M:      Casey Schaufler <casey@schaufler-ca.com>
9590 L:      linux-security-module@vger.kernel.org
9591 W:      http://schaufler-ca.com
9592 T:      git git://git.gitorious.org/smack-next/kernel.git
9593 S:      Maintained
9594 F:      Documentation/security/Smack.txt
9595 F:      security/smack/
9596
9597 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
9598 M:      Kevin Hilman <khilman@kernel.org>
9599 M:      Nishanth Menon <nm@ti.com>
9600 S:      Maintained
9601 F:      drivers/power/avs/
9602 F:      include/linux/power/smartreflex.h
9603 L:      linux-pm@vger.kernel.org
9604
9605 SMC91x ETHERNET DRIVER
9606 M:      Nicolas Pitre <nico@fluxnic.net>
9607 S:      Odd Fixes
9608 F:      drivers/net/ethernet/smsc/smc91x.*
9609
9610 SMIA AND SMIA++ IMAGE SENSOR DRIVER
9611 M:      Sakari Ailus <sakari.ailus@iki.fi>
9612 L:      linux-media@vger.kernel.org
9613 S:      Maintained
9614 F:      drivers/media/i2c/smiapp/
9615 F:      include/media/smiapp.h
9616 F:      drivers/media/i2c/smiapp-pll.c
9617 F:      drivers/media/i2c/smiapp-pll.h
9618 F:      include/uapi/linux/smiapp.h
9619 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
9620
9621 SMM665 HARDWARE MONITOR DRIVER
9622 M:      Guenter Roeck <linux@roeck-us.net>
9623 L:      lm-sensors@lm-sensors.org
9624 S:      Maintained
9625 F:      Documentation/hwmon/smm665
9626 F:      drivers/hwmon/smm665.c
9627
9628 SMSC EMC2103 HARDWARE MONITOR DRIVER
9629 M:      Steve Glendinning <steve.glendinning@shawell.net>
9630 L:      lm-sensors@lm-sensors.org
9631 S:      Maintained
9632 F:      Documentation/hwmon/emc2103
9633 F:      drivers/hwmon/emc2103.c
9634
9635 SMSC SCH5627 HARDWARE MONITOR DRIVER
9636 M:      Hans de Goede <hdegoede@redhat.com>
9637 L:      lm-sensors@lm-sensors.org
9638 S:      Supported
9639 F:      Documentation/hwmon/sch5627
9640 F:      drivers/hwmon/sch5627.c
9641
9642 SMSC47B397 HARDWARE MONITOR DRIVER
9643 M:      Jean Delvare <jdelvare@suse.com>
9644 L:      lm-sensors@lm-sensors.org
9645 S:      Maintained
9646 F:      Documentation/hwmon/smsc47b397
9647 F:      drivers/hwmon/smsc47b397.c
9648
9649 SMSC911x ETHERNET DRIVER
9650 M:      Steve Glendinning <steve.glendinning@shawell.net>
9651 L:      netdev@vger.kernel.org
9652 S:      Maintained
9653 F:      include/linux/smsc911x.h
9654 F:      drivers/net/ethernet/smsc/smsc911x.*
9655
9656 SMSC9420 PCI ETHERNET DRIVER
9657 M:      Steve Glendinning <steve.glendinning@shawell.net>
9658 L:      netdev@vger.kernel.org
9659 S:      Maintained
9660 F:      drivers/net/ethernet/smsc/smsc9420.*
9661
9662 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
9663 M:      Steve Glendinning <steve.glendinning@shawell.net>
9664 L:      linux-fbdev@vger.kernel.org
9665 S:      Maintained
9666 F:      drivers/video/fbdev/smscufx.c
9667
9668 SOC-CAMERA V4L2 SUBSYSTEM
9669 M:      Guennadi Liakhovetski <g.liakhovetski@gmx.de>
9670 L:      linux-media@vger.kernel.org
9671 T:      git git://linuxtv.org/media_tree.git
9672 S:      Maintained
9673 F:      include/media/soc*
9674 F:      drivers/media/i2c/soc_camera/
9675 F:      drivers/media/platform/soc_camera/
9676
9677 SOEKRIS NET48XX LED SUPPORT
9678 M:      Chris Boot <bootc@bootc.net>
9679 S:      Maintained
9680 F:      drivers/leds/leds-net48xx.c
9681
9682 SOFTLOGIC 6x10 MPEG CODEC
9683 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
9684 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
9685 M:      Andrey Utkin <andrey.krieger.utkin@gmail.com>
9686 M:      Ismael Luceno <ismael@iodev.co.uk>
9687 L:      linux-media@vger.kernel.org
9688 S:      Supported
9689 F:      drivers/media/pci/solo6x10/
9690
9691 SOFTWARE RAID (Multiple Disks) SUPPORT
9692 M:      Neil Brown <neilb@suse.com>
9693 L:      linux-raid@vger.kernel.org
9694 S:      Supported
9695 F:      drivers/md/
9696 F:      include/linux/raid/
9697 F:      include/uapi/linux/raid/
9698
9699 SONIC NETWORK DRIVER
9700 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
9701 L:      netdev@vger.kernel.org
9702 S:      Maintained
9703 F:      drivers/net/ethernet/natsemi/sonic.*
9704
9705 SONICS SILICON BACKPLANE DRIVER (SSB)
9706 M:      Michael Buesch <m@bues.ch>
9707 L:      netdev@vger.kernel.org
9708 S:      Maintained
9709 F:      drivers/ssb/
9710 F:      include/linux/ssb/
9711
9712 SONY VAIO CONTROL DEVICE DRIVER
9713 M:      Mattia Dongili <malattia@linux.it>
9714 L:      platform-driver-x86@vger.kernel.org
9715 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
9716 S:      Maintained
9717 F:      Documentation/laptops/sony-laptop.txt
9718 F:      drivers/char/sonypi.c
9719 F:      drivers/platform/x86/sony-laptop.c
9720 F:      include/linux/sony-laptop.h
9721
9722 SONY MEMORYSTICK CARD SUPPORT
9723 M:      Alex Dubov <oakad@yahoo.com>
9724 W:      http://tifmxx.berlios.de/
9725 S:      Maintained
9726 F:      drivers/memstick/host/tifm_ms.c
9727
9728 SONY MEMORYSTICK STANDARD SUPPORT
9729 M:      Maxim Levitsky <maximlevitsky@gmail.com>
9730 S:      Maintained
9731 F:      drivers/memstick/core/ms_block.*
9732
9733 SOUND
9734 M:      Jaroslav Kysela <perex@perex.cz>
9735 M:      Takashi Iwai <tiwai@suse.com>
9736 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9737 W:      http://www.alsa-project.org/
9738 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
9739 T:      git git://git.alsa-project.org/alsa-kernel.git
9740 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
9741 S:      Maintained
9742 F:      Documentation/sound/
9743 F:      include/sound/
9744 F:      include/uapi/sound/
9745 F:      sound/
9746
9747 SOUND - COMPRESSED AUDIO
9748 M:      Vinod Koul <vinod.koul@intel.com>
9749 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9750 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
9751 S:      Supported
9752 F:      Documentation/sound/alsa/compress_offload.txt
9753 F:      include/sound/compress_driver.h
9754 F:      include/uapi/sound/compress_*
9755 F:      sound/core/compress_offload.c
9756 F:      sound/soc/soc-compress.c
9757
9758 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
9759 M:      Liam Girdwood <lgirdwood@gmail.com>
9760 M:      Mark Brown <broonie@kernel.org>
9761 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
9762 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9763 W:      http://alsa-project.org/main/index.php/ASoC
9764 S:      Supported
9765 F:      Documentation/sound/alsa/soc/
9766 F:      sound/soc/
9767 F:      include/sound/soc*
9768
9769 SOUND - DMAENGINE HELPERS
9770 M:      Lars-Peter Clausen <lars@metafoo.de>
9771 S:      Supported
9772 F:      include/sound/dmaengine_pcm.h
9773 F:      sound/core/pcm_dmaengine.c
9774 F:      sound/soc/soc-generic-dmaengine-pcm.c
9775
9776 SP2 MEDIA DRIVER
9777 M:      Olli Salonen <olli.salonen@iki.fi>
9778 L:      linux-media@vger.kernel.org
9779 W:      http://linuxtv.org/
9780 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9781 S:      Maintained
9782 F:      drivers/media/dvb-frontends/sp2*
9783
9784 SPARC + UltraSPARC (sparc/sparc64)
9785 M:      "David S. Miller" <davem@davemloft.net>
9786 L:      sparclinux@vger.kernel.org
9787 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
9788 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
9789 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
9790 S:      Maintained
9791 F:      arch/sparc/
9792 F:      drivers/sbus/
9793
9794 SPARC SERIAL DRIVERS
9795 M:      "David S. Miller" <davem@davemloft.net>
9796 L:      sparclinux@vger.kernel.org
9797 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
9798 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
9799 S:      Maintained
9800 F:      include/linux/sunserialcore.h
9801 F:      drivers/tty/serial/suncore.c
9802 F:      drivers/tty/serial/sunhv.c
9803 F:      drivers/tty/serial/sunsab.c
9804 F:      drivers/tty/serial/sunsab.h
9805 F:      drivers/tty/serial/sunsu.c
9806 F:      drivers/tty/serial/sunzilog.c
9807 F:      drivers/tty/serial/sunzilog.h
9808
9809 SPARSE CHECKER
9810 M:      "Christopher Li" <sparse@chrisli.org>
9811 L:      linux-sparse@vger.kernel.org
9812 W:      https://sparse.wiki.kernel.org/
9813 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
9814 T:      git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
9815 S:      Maintained
9816 F:      include/linux/compiler.h
9817
9818 SPEAR PLATFORM SUPPORT
9819 M:      Viresh Kumar <vireshk@kernel.org>
9820 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
9821 L:      spear-devel@list.st.com
9822 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9823 W:      http://www.st.com/spear
9824 S:      Maintained
9825 F:      arch/arm/mach-spear/
9826
9827 SPEAR CLOCK FRAMEWORK SUPPORT
9828 M:      Viresh Kumar <vireshk@kernel.org>
9829 L:      spear-devel@list.st.com
9830 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9831 W:      http://www.st.com/spear
9832 S:      Maintained
9833 F:      drivers/clk/spear/
9834
9835 SPI SUBSYSTEM
9836 M:      Mark Brown <broonie@kernel.org>
9837 L:      linux-spi@vger.kernel.org
9838 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
9839 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
9840 S:      Maintained
9841 F:      Documentation/spi/
9842 F:      drivers/spi/
9843 F:      include/linux/spi/
9844 F:      include/uapi/linux/spi/
9845
9846 SPIDERNET NETWORK DRIVER for CELL
9847 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
9848 L:      netdev@vger.kernel.org
9849 S:      Supported
9850 F:      Documentation/networking/spider_net.txt
9851 F:      drivers/net/ethernet/toshiba/spider_net*
9852
9853 SPU FILE SYSTEM
9854 M:      Jeremy Kerr <jk@ozlabs.org>
9855 L:      linuxppc-dev@lists.ozlabs.org
9856 W:      http://www.ibm.com/developerworks/power/cell/
9857 S:      Supported
9858 F:      Documentation/filesystems/spufs.txt
9859 F:      arch/powerpc/platforms/cell/spufs/
9860
9861 SQUASHFS FILE SYSTEM
9862 M:      Phillip Lougher <phillip@squashfs.org.uk>
9863 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
9864 W:      http://squashfs.org.uk
9865 S:      Maintained
9866 F:      Documentation/filesystems/squashfs.txt
9867 F:      fs/squashfs/
9868
9869 SRM (Alpha) environment access
9870 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
9871 S:      Maintained
9872 F:      arch/alpha/kernel/srm_env.c
9873
9874 STABLE BRANCH
9875 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9876 L:      stable@vger.kernel.org
9877 S:      Supported
9878 F:      Documentation/stable_kernel_rules.txt
9879
9880 STAGING SUBSYSTEM
9881 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9882 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
9883 L:      devel@driverdev.osuosl.org
9884 S:      Supported
9885 F:      drivers/staging/
9886
9887 STAGING - COMEDI
9888 M:      Ian Abbott <abbotti@mev.co.uk>
9889 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
9890 S:      Odd Fixes
9891 F:      drivers/staging/comedi/
9892
9893 STAGING - FLARION FT1000 DRIVERS
9894 M:      Marek Belisko <marek.belisko@gmail.com>
9895 S:      Odd Fixes
9896 F:      drivers/staging/ft1000/
9897
9898 STAGING - INDUSTRIAL IO
9899 M:      Jonathan Cameron <jic23@kernel.org>
9900 L:      linux-iio@vger.kernel.org
9901 S:      Odd Fixes
9902 F:      drivers/staging/iio/
9903
9904 STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
9905 M:      Jarod Wilson <jarod@wilsonet.com>
9906 W:      http://www.lirc.org/
9907 S:      Odd Fixes
9908 F:      drivers/staging/media/lirc/
9909
9910 STAGING - LUSTRE PARALLEL FILESYSTEM
9911 M:      Oleg Drokin <oleg.drokin@intel.com>
9912 M:      Andreas Dilger <andreas.dilger@intel.com>
9913 L:      lustre-devel@lists.lustre.org (moderated for non-subscribers)
9914 W:      http://wiki.lustre.org/
9915 S:      Maintained
9916 F:      drivers/staging/lustre
9917
9918 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
9919 M:      Julian Andres Klode <jak@jak-linux.org>
9920 M:      Marc Dietrich <marvin24@gmx.de>
9921 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
9922 L:      linux-tegra@vger.kernel.org
9923 S:      Maintained
9924 F:      drivers/staging/nvec/
9925
9926 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
9927 M:      Jens Frederich <jfrederich@gmail.com>
9928 M:      Daniel Drake <dsd@laptop.org>
9929 M:      Jon Nettleton <jon.nettleton@gmail.com>
9930 W:      http://wiki.laptop.org/go/DCON
9931 S:      Maintained
9932 F:      drivers/staging/olpc_dcon/
9933
9934 STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
9935 M:      Willy Tarreau <willy@meta-x.org>
9936 S:      Odd Fixes
9937 F:      drivers/staging/panel/
9938
9939 STAGING - REALTEK RTL8712U DRIVERS
9940 M:      Larry Finger <Larry.Finger@lwfinger.net>
9941 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
9942 S:      Odd Fixes
9943 F:      drivers/staging/rtl8712/
9944
9945 STAGING - REALTEK RTL8723U WIRELESS DRIVER
9946 M:      Larry Finger <Larry.Finger@lwfinger.net>
9947 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
9948 L:      linux-wireless@vger.kernel.org
9949 S:      Maintained
9950 F:      drivers/staging/rtl8723au/
9951
9952 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
9953 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
9954 M:      Teddy Wang <teddy.wang@siliconmotion.com>
9955 M:      Sudip Mukherjee <sudip@vectorindia.org>
9956 L:      linux-fbdev@vger.kernel.org
9957 S:      Maintained
9958 F:      drivers/staging/sm750fb/
9959
9960 STAGING - SLICOSS
9961 M:      Lior Dotan <liodot@gmail.com>
9962 M:      Christopher Harrer <charrer@alacritech.com>
9963 S:      Odd Fixes
9964 F:      drivers/staging/slicoss/
9965
9966 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
9967 M:      William Hubbs <w.d.hubbs@gmail.com>
9968 M:      Chris Brannon <chris@the-brannons.com>
9969 M:      Kirk Reiser <kirk@reisers.ca>
9970 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
9971 L:      speakup@linux-speakup.org
9972 W:      http://www.linux-speakup.org/
9973 S:      Odd Fixes
9974 F:      drivers/staging/speakup/
9975
9976 STAGING - VIA VT665X DRIVERS
9977 M:      Forest Bond <forest@alittletooquiet.net>
9978 S:      Odd Fixes
9979 F:      drivers/staging/vt665?/
9980
9981 STAGING - WILC1000 WIFI DRIVER
9982 M:      Johnny Kim <johnny.kim@atmel.com>
9983 M:      Rachel Kim <rachel.kim@atmel.com>
9984 M:      Dean Lee <dean.lee@atmel.com>
9985 M:      Chris Park <chris.park@atmel.com>
9986 L:      linux-wireless@vger.kernel.org
9987 S:      Supported
9988 F:      drivers/staging/wilc1000/
9989
9990 STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
9991 M:      Arnaud Patard <arnaud.patard@rtp-net.org>
9992 S:      Odd Fixes
9993 F:      drivers/staging/xgifb/
9994
9995 HFI1 DRIVER
9996 M:      Mike Marciniszyn <infinipath@intel.com>
9997 L:      linux-rdma@vger.kernel.org
9998 S:      Supported
9999 F:      drivers/staging/rdma/hfi1
10000
10001 STARFIRE/DURALAN NETWORK DRIVER
10002 M:      Ion Badulescu <ionut@badula.org>
10003 S:      Odd Fixes
10004 F:      drivers/net/ethernet/adaptec/starfire*
10005
10006 SUN3/3X
10007 M:      Sam Creasey <sammy@sammy.net>
10008 W:      http://sammy.net/sun3/
10009 S:      Maintained
10010 F:      arch/m68k/kernel/*sun3*
10011 F:      arch/m68k/sun3*/
10012 F:      arch/m68k/include/asm/sun3*
10013 F:      drivers/net/ethernet/i825xx/sun3*
10014
10015 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
10016 M:      Hans de Goede <hdegoede@redhat.com>
10017 L:      linux-input@vger.kernel.org
10018 S:      Maintained
10019 F:      Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
10020 F:      drivers/input/keyboard/sun4i-lradc-keys.c
10021
10022 SUNDANCE NETWORK DRIVER
10023 M:      Denis Kirjanov <kda@linux-powerpc.org>
10024 L:      netdev@vger.kernel.org
10025 S:      Maintained
10026 F:      drivers/net/ethernet/dlink/sundance.c
10027
10028 SUPERH
10029 L:      linux-sh@vger.kernel.org
10030 Q:      http://patchwork.kernel.org/project/linux-sh/list/
10031 S:      Orphan
10032 F:      Documentation/sh/
10033 F:      arch/sh/
10034 F:      drivers/sh/
10035
10036 SUSPEND TO RAM
10037 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
10038 M:      Len Brown <len.brown@intel.com>
10039 M:      Pavel Machek <pavel@ucw.cz>
10040 L:      linux-pm@vger.kernel.org
10041 S:      Supported
10042 F:      Documentation/power/
10043 F:      arch/x86/kernel/acpi/
10044 F:      drivers/base/power/
10045 F:      kernel/power/
10046 F:      include/linux/suspend.h
10047 F:      include/linux/freezer.h
10048 F:      include/linux/pm.h
10049
10050 SVGA HANDLING
10051 M:      Martin Mares <mj@ucw.cz>
10052 L:      linux-video@atrey.karlin.mff.cuni.cz
10053 S:      Maintained
10054 F:      Documentation/svga.txt
10055 F:      arch/x86/boot/video*
10056
10057 SWIOTLB SUBSYSTEM
10058 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10059 L:      linux-kernel@vger.kernel.org
10060 S:      Supported
10061 F:      lib/swiotlb.c
10062 F:      arch/*/kernel/pci-swiotlb.c
10063 F:      include/linux/swiotlb.h
10064
10065 SWITCHDEV
10066 M:      Jiri Pirko <jiri@resnulli.us>
10067 L:      netdev@vger.kernel.org
10068 S:      Supported
10069 F:      net/switchdev/
10070 F:      include/net/switchdev.h
10071
10072 SYNOPSYS ARC ARCHITECTURE
10073 M:      Vineet Gupta <vgupta@synopsys.com>
10074 S:      Supported
10075 F:      arch/arc/
10076 F:      Documentation/devicetree/bindings/arc/*
10077 F:      drivers/tty/serial/arc_uart.c
10078 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
10079
10080 SYNOPSYS ARC SDP platform support
10081 M:      Alexey Brodkin <abrodkin@synopsys.com>
10082 S:      Supported
10083 F:      arch/arc/plat-axs10x
10084 F:      arch/arc/boot/dts/ax*
10085 F:      Documentation/devicetree/bindings/arc/axs10*
10086
10087 SYSTEM CONFIGURATION (SYSCON)
10088 M:      Lee Jones <lee.jones@linaro.org>
10089 M:      Arnd Bergmann <arnd@arndb.de>
10090 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
10091 S:      Supported
10092 F:      drivers/mfd/syscon.c
10093
10094 SYSV FILESYSTEM
10095 M:      Christoph Hellwig <hch@infradead.org>
10096 S:      Maintained
10097 F:      Documentation/filesystems/sysv-fs.txt
10098 F:      fs/sysv/
10099 F:      include/linux/sysv_fs.h
10100
10101 TARGET SUBSYSTEM
10102 M:      "Nicholas A. Bellinger" <nab@linux-iscsi.org>
10103 L:      linux-scsi@vger.kernel.org
10104 L:      target-devel@vger.kernel.org
10105 W:      http://www.linux-iscsi.org
10106 W:      http://groups.google.com/group/linux-iscsi-target-dev
10107 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10108 S:      Supported
10109 F:      drivers/target/
10110 F:      include/target/
10111 F:      Documentation/target/
10112
10113 TASKSTATS STATISTICS INTERFACE
10114 M:      Balbir Singh <bsingharora@gmail.com>
10115 S:      Maintained
10116 F:      Documentation/accounting/taskstats*
10117 F:      include/linux/taskstats*
10118 F:      kernel/taskstats.c
10119
10120 TC CLASSIFIER
10121 M:      Jamal Hadi Salim <jhs@mojatatu.com>
10122 L:      netdev@vger.kernel.org
10123 S:      Maintained
10124 F:      include/net/pkt_cls.h
10125 F:      include/uapi/linux/pkt_cls.h
10126 F:      net/sched/
10127
10128 TCP LOW PRIORITY MODULE
10129 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
10130 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
10131 W:      http://tcp-lp-mod.sourceforge.net/
10132 S:      Maintained
10133 F:      net/ipv4/tcp_lp.c
10134
10135 TDA10071 MEDIA DRIVER
10136 M:      Antti Palosaari <crope@iki.fi>
10137 L:      linux-media@vger.kernel.org
10138 W:      http://linuxtv.org/
10139 W:      http://palosaari.fi/linux/
10140 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10141 T:      git git://linuxtv.org/anttip/media_tree.git
10142 S:      Maintained
10143 F:      drivers/media/dvb-frontends/tda10071*
10144
10145 TDA18212 MEDIA DRIVER
10146 M:      Antti Palosaari <crope@iki.fi>
10147 L:      linux-media@vger.kernel.org
10148 W:      http://linuxtv.org/
10149 W:      http://palosaari.fi/linux/
10150 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10151 T:      git git://linuxtv.org/anttip/media_tree.git
10152 S:      Maintained
10153 F:      drivers/media/tuners/tda18212*
10154
10155 TDA18218 MEDIA DRIVER
10156 M:      Antti Palosaari <crope@iki.fi>
10157 L:      linux-media@vger.kernel.org
10158 W:      http://linuxtv.org/
10159 W:      http://palosaari.fi/linux/
10160 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10161 T:      git git://linuxtv.org/anttip/media_tree.git
10162 S:      Maintained
10163 F:      drivers/media/tuners/tda18218*
10164
10165 TDA18271 MEDIA DRIVER
10166 M:      Michael Krufky <mkrufky@linuxtv.org>
10167 L:      linux-media@vger.kernel.org
10168 W:      http://linuxtv.org/
10169 W:      http://github.com/mkrufky
10170 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10171 T:      git git://linuxtv.org/mkrufky/tuners.git
10172 S:      Maintained
10173 F:      drivers/media/tuners/tda18271*
10174
10175 TDA827x MEDIA DRIVER
10176 M:      Michael Krufky <mkrufky@linuxtv.org>
10177 L:      linux-media@vger.kernel.org
10178 W:      http://linuxtv.org/
10179 W:      http://github.com/mkrufky
10180 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10181 T:      git git://linuxtv.org/mkrufky/tuners.git
10182 S:      Maintained
10183 F:      drivers/media/tuners/tda8290.*
10184
10185 TDA8290 MEDIA DRIVER
10186 M:      Michael Krufky <mkrufky@linuxtv.org>
10187 L:      linux-media@vger.kernel.org
10188 W:      http://linuxtv.org/
10189 W:      http://github.com/mkrufky
10190 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10191 T:      git git://linuxtv.org/mkrufky/tuners.git
10192 S:      Maintained
10193 F:      drivers/media/tuners/tda8290.*
10194
10195 TDA9840 MEDIA DRIVER
10196 M:      Hans Verkuil <hverkuil@xs4all.nl>
10197 L:      linux-media@vger.kernel.org
10198 T:      git git://linuxtv.org/media_tree.git
10199 W:      http://linuxtv.org
10200 S:      Maintained
10201 F:      drivers/media/i2c/tda9840*
10202
10203 TEA5761 TUNER DRIVER
10204 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10205 L:      linux-media@vger.kernel.org
10206 W:      http://linuxtv.org
10207 T:      git git://linuxtv.org/media_tree.git
10208 S:      Odd fixes
10209 F:      drivers/media/tuners/tea5761.*
10210
10211 TEA5767 TUNER DRIVER
10212 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10213 L:      linux-media@vger.kernel.org
10214 W:      http://linuxtv.org
10215 T:      git git://linuxtv.org/media_tree.git
10216 S:      Maintained
10217 F:      drivers/media/tuners/tea5767.*
10218
10219 TEA6415C MEDIA DRIVER
10220 M:      Hans Verkuil <hverkuil@xs4all.nl>
10221 L:      linux-media@vger.kernel.org
10222 T:      git git://linuxtv.org/media_tree.git
10223 W:      http://linuxtv.org
10224 S:      Maintained
10225 F:      drivers/media/i2c/tea6415c*
10226
10227 TEA6420 MEDIA DRIVER
10228 M:      Hans Verkuil <hverkuil@xs4all.nl>
10229 L:      linux-media@vger.kernel.org
10230 T:      git git://linuxtv.org/media_tree.git
10231 W:      http://linuxtv.org
10232 S:      Maintained
10233 F:      drivers/media/i2c/tea6420*
10234
10235 TEAM DRIVER
10236 M:      Jiri Pirko <jiri@resnulli.us>
10237 L:      netdev@vger.kernel.org
10238 S:      Supported
10239 F:      drivers/net/team/
10240 F:      include/linux/if_team.h
10241 F:      include/uapi/linux/if_team.h
10242
10243 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
10244 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
10245 S:      Maintained
10246 F:      arch/x86/platform/ts5500/
10247
10248 TECHNOTREND USB IR RECEIVER
10249 M:      Sean Young <sean@mess.org>
10250 L:      linux-media@vger.kernel.org
10251 S:      Maintained
10252 F:      drivers/media/rc/ttusbir.c
10253
10254 TEGRA ARCHITECTURE SUPPORT
10255 M:      Stephen Warren <swarren@wwwdotorg.org>
10256 M:      Thierry Reding <thierry.reding@gmail.com>
10257 M:      Alexandre Courbot <gnurou@gmail.com>
10258 L:      linux-tegra@vger.kernel.org
10259 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
10260 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
10261 S:      Supported
10262 N:      [^a-z]tegra
10263
10264 TEGRA CLOCK DRIVER
10265 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
10266 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
10267 S:      Supported
10268 F:      drivers/clk/tegra/
10269
10270 TEGRA DMA DRIVER
10271 M:      Laxman Dewangan <ldewangan@nvidia.com>
10272 S:      Supported
10273 F:      drivers/dma/tegra20-apb-dma.c
10274
10275 TEGRA I2C DRIVER
10276 M:      Laxman Dewangan <ldewangan@nvidia.com>
10277 S:      Supported
10278 F:      drivers/i2c/busses/i2c-tegra.c
10279
10280 TEGRA IOMMU DRIVERS
10281 M:      Hiroshi Doyu <hdoyu@nvidia.com>
10282 S:      Supported
10283 F:      drivers/iommu/tegra*
10284
10285 TEGRA KBC DRIVER
10286 M:      Rakesh Iyer <riyer@nvidia.com>
10287 M:      Laxman Dewangan <ldewangan@nvidia.com>
10288 S:      Supported
10289 F:      drivers/input/keyboard/tegra-kbc.c
10290
10291 TEGRA PWM DRIVER
10292 M:      Thierry Reding <thierry.reding@gmail.com>
10293 S:      Supported
10294 F:      drivers/pwm/pwm-tegra.c
10295
10296 TEGRA SERIAL DRIVER
10297 M:      Laxman Dewangan <ldewangan@nvidia.com>
10298 S:      Supported
10299 F:      drivers/tty/serial/serial-tegra.c
10300
10301 TEGRA SPI DRIVER
10302 M:      Laxman Dewangan <ldewangan@nvidia.com>
10303 S:      Supported
10304 F:      drivers/spi/spi-tegra*
10305
10306 TEHUTI ETHERNET DRIVER
10307 M:      Andy Gospodarek <andy@greyhouse.net>
10308 L:      netdev@vger.kernel.org
10309 S:      Supported
10310 F:      drivers/net/ethernet/tehuti/*
10311
10312 Telecom Clock Driver for MCPL0010
10313 M:      Mark Gross <mark.gross@intel.com>
10314 S:      Supported
10315 F:      drivers/char/tlclk.c
10316
10317 TENSILICA XTENSA PORT (xtensa)
10318 M:      Chris Zankel <chris@zankel.net>
10319 M:      Max Filippov <jcmvbkbc@gmail.com>
10320 L:      linux-xtensa@linux-xtensa.org
10321 S:      Maintained
10322 F:      arch/xtensa/
10323 F:      drivers/irqchip/irq-xtensa-*
10324
10325 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
10326 M:      Hans Verkuil <hverkuil@xs4all.nl>
10327 L:      linux-media@vger.kernel.org
10328 T:      git git://linuxtv.org/media_tree.git
10329 W:      http://linuxtv.org
10330 S:      Maintained
10331 F:      drivers/media/radio/radio-raremono.c
10332
10333 THERMAL
10334 M:      Zhang Rui <rui.zhang@intel.com>
10335 M:      Eduardo Valentin <edubezval@gmail.com>
10336 L:      linux-pm@vger.kernel.org
10337 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
10338 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
10339 Q:      https://patchwork.kernel.org/project/linux-pm/list/
10340 S:      Supported
10341 F:      drivers/thermal/
10342 F:      include/linux/thermal.h
10343 F:      include/uapi/linux/thermal.h
10344 F:      include/linux/cpu_cooling.h
10345 F:      Documentation/devicetree/bindings/thermal/
10346
10347 THERMAL/CPU_COOLING
10348 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
10349 M:      Viresh Kumar <viresh.kumar@linaro.org>
10350 M:      Javi Merino <javi.merino@arm.com>
10351 L:      linux-pm@vger.kernel.org
10352 S:      Supported
10353 F:      Documentation/thermal/cpu-cooling-api.txt
10354 F:      drivers/thermal/cpu_cooling.c
10355 F:      include/linux/cpu_cooling.h
10356
10357 THINGM BLINK(1) USB RGB LED DRIVER
10358 M:      Vivien Didelot <vivien.didelot@savoirfairelinux.com>
10359 S:      Maintained
10360 F:      drivers/hid/hid-thingm.c
10361
10362 THINKPAD ACPI EXTRAS DRIVER
10363 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
10364 L:      ibm-acpi-devel@lists.sourceforge.net
10365 L:      platform-driver-x86@vger.kernel.org
10366 W:      http://ibm-acpi.sourceforge.net
10367 W:      http://thinkwiki.org/wiki/Ibm-acpi
10368 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
10369 S:      Maintained
10370 F:      drivers/platform/x86/thinkpad_acpi.c
10371
10372 TI BANDGAP AND THERMAL DRIVER
10373 M:      Eduardo Valentin <edubezval@gmail.com>
10374 L:      linux-pm@vger.kernel.org
10375 L:      linux-omap@vger.kernel.org
10376 S:      Maintained
10377 F:      drivers/thermal/ti-soc-thermal/
10378
10379 TI CDCE706 CLOCK DRIVER
10380 M:      Max Filippov <jcmvbkbc@gmail.com>
10381 S:      Maintained
10382 F:      drivers/clk/clk-cdce706.c
10383
10384 TI CLOCK DRIVER
10385 M:      Tero Kristo <t-kristo@ti.com>
10386 L:      linux-omap@vger.kernel.org
10387 S:      Maintained
10388 F:      drivers/clk/ti/
10389 F:      include/linux/clk/ti.h
10390
10391 TI FLASH MEDIA INTERFACE DRIVER
10392 M:      Alex Dubov <oakad@yahoo.com>
10393 S:      Maintained
10394 F:      drivers/misc/tifm*
10395 F:      drivers/mmc/host/tifm_sd.c
10396 F:      include/linux/tifm.h
10397
10398 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
10399 M:      Santosh Shilimkar <ssantosh@kernel.org>
10400 L:      linux-kernel@vger.kernel.org
10401 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10402 S:      Maintained
10403 F:      drivers/soc/ti/*
10404 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
10405
10406
10407 TI LM49xxx FAMILY ASoC CODEC DRIVERS
10408 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
10409 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
10410 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10411 S:      Maintained
10412 F:      sound/soc/codecs/lm49453*
10413 F:      sound/soc/codecs/isabelle*
10414
10415 TI LP855x BACKLIGHT DRIVER
10416 M:      Milo Kim <milo.kim@ti.com>
10417 S:      Maintained
10418 F:      Documentation/backlight/lp855x-driver.txt
10419 F:      drivers/video/backlight/lp855x_bl.c
10420 F:      include/linux/platform_data/lp855x.h
10421
10422 TI LP8727 CHARGER DRIVER
10423 M:      Milo Kim <milo.kim@ti.com>
10424 S:      Maintained
10425 F:      drivers/power/lp8727_charger.c
10426 F:      include/linux/platform_data/lp8727.h
10427
10428 TI LP8788 MFD DRIVER
10429 M:      Milo Kim <milo.kim@ti.com>
10430 S:      Maintained
10431 F:      drivers/iio/adc/lp8788_adc.c
10432 F:      drivers/leds/leds-lp8788.c
10433 F:      drivers/mfd/lp8788*.c
10434 F:      drivers/power/lp8788-charger.c
10435 F:      drivers/regulator/lp8788-*.c
10436 F:      include/linux/mfd/lp8788*.h
10437
10438 TI NETCP ETHERNET DRIVER
10439 M:      Wingman Kwok <w-kwok2@ti.com>
10440 M:      Murali Karicheri <m-karicheri2@ti.com>
10441 L:      netdev@vger.kernel.org
10442 S:      Maintained
10443 F:      drivers/net/ethernet/ti/netcp*
10444
10445 TI TAS571X FAMILY ASoC CODEC DRIVER
10446 M:      Kevin Cernekee <cernekee@chromium.org>
10447 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10448 S:      Odd Fixes
10449 F:      sound/soc/codecs/tas571x*
10450
10451 TI TWL4030 SERIES SOC CODEC DRIVER
10452 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
10453 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10454 S:      Maintained
10455 F:      sound/soc/codecs/twl4030*
10456
10457 TI WILINK WIRELESS DRIVERS
10458 L:      linux-wireless@vger.kernel.org
10459 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
10460 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
10461 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
10462 S:      Orphan
10463 F:      drivers/net/wireless/ti/
10464 F:      include/linux/wl12xx.h
10465
10466 TIPC NETWORK LAYER
10467 M:      Jon Maloy <jon.maloy@ericsson.com>
10468 M:      Ying Xue <ying.xue@windriver.com>
10469 L:      netdev@vger.kernel.org (core kernel code)
10470 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
10471 W:      http://tipc.sourceforge.net/
10472 S:      Maintained
10473 F:      include/uapi/linux/tipc*.h
10474 F:      net/tipc/
10475
10476 TILE ARCHITECTURE
10477 M:      Chris Metcalf <cmetcalf@ezchip.com>
10478 W:      http://www.ezchip.com/scm/
10479 S:      Supported
10480 F:      arch/tile/
10481 F:      drivers/char/tile-srom.c
10482 F:      drivers/edac/tile_edac.c
10483 F:      drivers/net/ethernet/tile/
10484 F:      drivers/rtc/rtc-tile.c
10485 F:      drivers/tty/hvc/hvc_tile.c
10486 F:      drivers/tty/serial/tilegx.c
10487 F:      drivers/usb/host/*-tilegx.c
10488 F:      include/linux/usb/tilegx.h
10489
10490 TLAN NETWORK DRIVER
10491 M:      Samuel Chessman <chessman@tux.org>
10492 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
10493 W:      http://sourceforge.net/projects/tlan/
10494 S:      Maintained
10495 F:      Documentation/networking/tlan.txt
10496 F:      drivers/net/ethernet/ti/tlan.*
10497
10498 TOMOYO SECURITY MODULE
10499 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
10500 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
10501 L:      tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
10502 L:      tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
10503 L:      tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
10504 L:      tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
10505 W:      http://tomoyo.sourceforge.jp/
10506 T:      quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
10507 S:      Maintained
10508 F:      security/tomoyo/
10509
10510 TOPSTAR LAPTOP EXTRAS DRIVER
10511 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
10512 L:      platform-driver-x86@vger.kernel.org
10513 S:      Maintained
10514 F:      drivers/platform/x86/topstar-laptop.c
10515
10516 TOSHIBA ACPI EXTRAS DRIVER
10517 M:      Azael Avalos <coproscefalo@gmail.com>
10518 L:      platform-driver-x86@vger.kernel.org
10519 S:      Maintained
10520 F:      drivers/platform/x86/toshiba_acpi.c
10521
10522 TOSHIBA BLUETOOTH DRIVER
10523 M:      Azael Avalos <coproscefalo@gmail.com>
10524 L:      platform-driver-x86@vger.kernel.org
10525 S:      Maintained
10526 F:      drivers/platform/x86/toshiba_bluetooth.c
10527
10528 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
10529 M:      Azael Avalos <coproscefalo@gmail.com>
10530 L:      platform-driver-x86@vger.kernel.org
10531 S:      Maintained
10532 F:      drivers/platform/x86/toshiba_haps.c
10533
10534 TOSHIBA SMM DRIVER
10535 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
10536 W:      http://www.buzzard.org.uk/toshiba/
10537 S:      Maintained
10538 F:      drivers/char/toshiba.c
10539 F:      include/linux/toshiba.h
10540 F:      include/uapi/linux/toshiba.h
10541
10542 TOSHIBA TC358743 DRIVER
10543 M:      Mats Randgaard <matrandg@cisco.com>
10544 L:      linux-media@vger.kernel.org
10545 S:      Maintained
10546 F:      drivers/media/i2c/tc358743*
10547 F:      include/media/tc358743.h
10548
10549 TMIO MMC DRIVER
10550 M:      Ian Molton <ian@mnementh.co.uk>
10551 L:      linux-mmc@vger.kernel.org
10552 S:      Maintained
10553 F:      drivers/mmc/host/tmio_mmc*
10554 F:      drivers/mmc/host/sh_mobile_sdhi.c
10555 F:      include/linux/mmc/tmio.h
10556 F:      include/linux/mmc/sh_mobile_sdhi.h
10557
10558 TMP401 HARDWARE MONITOR DRIVER
10559 M:      Guenter Roeck <linux@roeck-us.net>
10560 L:      lm-sensors@lm-sensors.org
10561 S:      Maintained
10562 F:      Documentation/hwmon/tmp401
10563 F:      drivers/hwmon/tmp401.c
10564
10565 TMPFS (SHMEM FILESYSTEM)
10566 M:      Hugh Dickins <hughd@google.com>
10567 L:      linux-mm@kvack.org
10568 S:      Maintained
10569 F:      include/linux/shmem_fs.h
10570 F:      mm/shmem.c
10571
10572 TM6000 VIDEO4LINUX DRIVER
10573 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10574 L:      linux-media@vger.kernel.org
10575 W:      http://linuxtv.org
10576 T:      git git://linuxtv.org/media_tree.git
10577 S:      Odd fixes
10578 F:      drivers/media/usb/tm6000/
10579
10580 TW68 VIDEO4LINUX DRIVER
10581 M:      Hans Verkuil <hverkuil@xs4all.nl>
10582 L:      linux-media@vger.kernel.org
10583 T:      git git://linuxtv.org/media_tree.git
10584 W:      http://linuxtv.org
10585 S:      Odd Fixes
10586 F:      drivers/media/pci/tw68/
10587
10588 TPM DEVICE DRIVER
10589 M:      Peter Huewe <peterhuewe@gmx.de>
10590 M:      Marcel Selhorst <tpmdd@selhorst.net>
10591 R:      Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
10592 W:      http://tpmdd.sourceforge.net
10593 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
10594 Q:      git git://github.com/PeterHuewe/linux-tpmdd.git
10595 T:      https://github.com/PeterHuewe/linux-tpmdd
10596 S:      Maintained
10597 F:      drivers/char/tpm/
10598
10599 TPM IBM_VTPM DEVICE DRIVER
10600 M:      Ashley Lai <ashleydlai@gmail.com>
10601 W:      http://tpmdd.sourceforge.net
10602 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
10603 S:      Maintained
10604 F:      drivers/char/tpm/tpm_ibmvtpm*
10605
10606 TRACING
10607 M:      Steven Rostedt <rostedt@goodmis.org>
10608 M:      Ingo Molnar <mingo@redhat.com>
10609 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
10610 S:      Maintained
10611 F:      Documentation/trace/ftrace.txt
10612 F:      arch/*/*/*/ftrace.h
10613 F:      arch/*/kernel/ftrace.c
10614 F:      include/*/ftrace.h
10615 F:      include/linux/trace*.h
10616 F:      include/trace/
10617 F:      kernel/trace/
10618 F:      tools/testing/selftests/ftrace/
10619
10620 TRIVIAL PATCHES
10621 M:      Jiri Kosina <trivial@kernel.org>
10622 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
10623 S:      Maintained
10624 K:      ^Subject:.*(?i)trivial
10625
10626 TTY LAYER
10627 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10628 M:      Jiri Slaby <jslaby@suse.com>
10629 S:      Supported
10630 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
10631 F:      Documentation/serial/
10632 F:      drivers/tty/
10633 F:      drivers/tty/serial/serial_core.c
10634 F:      include/linux/serial_core.h
10635 F:      include/linux/serial.h
10636 F:      include/linux/tty.h
10637 F:      include/uapi/linux/serial_core.h
10638 F:      include/uapi/linux/serial.h
10639 F:      include/uapi/linux/tty.h
10640
10641 TUA9001 MEDIA DRIVER
10642 M:      Antti Palosaari <crope@iki.fi>
10643 L:      linux-media@vger.kernel.org
10644 W:      http://linuxtv.org/
10645 W:      http://palosaari.fi/linux/
10646 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10647 T:      git git://linuxtv.org/anttip/media_tree.git
10648 S:      Maintained
10649 F:      drivers/media/tuners/tua9001*
10650
10651 TULIP NETWORK DRIVERS
10652 M:      Grant Grundler <grundler@parisc-linux.org>
10653 L:      netdev@vger.kernel.org
10654 S:      Maintained
10655 F:      drivers/net/ethernet/dec/tulip/
10656
10657 TUN/TAP driver
10658 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
10659 W:      http://vtun.sourceforge.net/tun
10660 S:      Maintained
10661 F:      Documentation/networking/tuntap.txt
10662 F:      arch/um/os-Linux/drivers/
10663
10664 TURBOCHANNEL SUBSYSTEM
10665 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
10666 M:      Ralf Baechle <ralf@linux-mips.org>
10667 L:      linux-mips@linux-mips.org
10668 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
10669 S:      Maintained
10670 F:      drivers/tc/
10671 F:      include/linux/tc.h
10672
10673 U14-34F SCSI DRIVER
10674 M:      Dario Ballabio <ballabio_dario@emc.com>
10675 L:      linux-scsi@vger.kernel.org
10676 S:      Maintained
10677 F:      drivers/scsi/u14-34f.c
10678
10679 UBI FILE SYSTEM (UBIFS)
10680 M:      Artem Bityutskiy <dedekind1@gmail.com>
10681 M:      Adrian Hunter <adrian.hunter@intel.com>
10682 L:      linux-mtd@lists.infradead.org
10683 T:      git git://git.infradead.org/ubifs-2.6.git
10684 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
10685 S:      Maintained
10686 F:      Documentation/filesystems/ubifs.txt
10687 F:      fs/ubifs/
10688
10689 UCLINUX (M68KNOMMU AND COLDFIRE)
10690 M:      Greg Ungerer <gerg@uclinux.org>
10691 W:      http://www.uclinux.org/
10692 L:      linux-m68k@lists.linux-m68k.org
10693 L:      uclinux-dev@uclinux.org  (subscribers-only)
10694 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
10695 S:      Maintained
10696 F:      arch/m68k/coldfire/
10697 F:      arch/m68k/68*/
10698 F:      arch/m68k/*/*_no.*
10699 F:      arch/m68k/include/asm/*_no.*
10700
10701 UDF FILESYSTEM
10702 M:      Jan Kara <jack@suse.com>
10703 S:      Maintained
10704 F:      Documentation/filesystems/udf.txt
10705 F:      fs/udf/
10706
10707 UFS FILESYSTEM
10708 M:      Evgeniy Dushistov <dushistov@mail.ru>
10709 S:      Maintained
10710 F:      Documentation/filesystems/ufs.txt
10711 F:      fs/ufs/
10712
10713 UHID USERSPACE HID IO DRIVER:
10714 M:      David Herrmann <dh.herrmann@googlemail.com>
10715 L:      linux-input@vger.kernel.org
10716 S:      Maintained
10717 F:      drivers/hid/uhid.c
10718 F:      include/uapi/linux/uhid.h
10719
10720 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
10721 L:      linux-usb@vger.kernel.org
10722 S:      Orphan
10723 F:      drivers/uwb/
10724 F:      include/linux/uwb.h
10725 F:      include/linux/uwb/
10726
10727 UNICORE32 ARCHITECTURE:
10728 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
10729 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
10730 S:      Maintained
10731 T:      git git://github.com/gxt/linux.git
10732 F:      arch/unicore32/
10733
10734 UNIFDEF
10735 M:      Tony Finch <dot@dotat.at>
10736 W:      http://dotat.at/prog/unifdef
10737 S:      Maintained
10738 F:      scripts/unifdef.c
10739
10740 UNIFORM CDROM DRIVER
10741 M:      Jens Axboe <axboe@kernel.dk>
10742 W:      http://www.kernel.dk
10743 S:      Maintained
10744 F:      Documentation/cdrom/
10745 F:      drivers/cdrom/cdrom.c
10746 F:      include/linux/cdrom.h
10747 F:      include/uapi/linux/cdrom.h
10748
10749 UNISYS S-PAR DRIVERS
10750 M:      Benjamin Romer <benjamin.romer@unisys.com>
10751 M:      David Kershner <david.kershner@unisys.com>
10752 L:      sparmaintainer@unisys.com (Unisys internal)
10753 S:      Supported
10754 F:      drivers/staging/unisys/
10755
10756 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
10757 M:      Vinayak Holikatti <vinholikatti@gmail.com>
10758 L:      linux-scsi@vger.kernel.org
10759 S:      Supported
10760 F:      Documentation/scsi/ufs.txt
10761 F:      drivers/scsi/ufs/
10762
10763 UNSORTED BLOCK IMAGES (UBI)
10764 M:      Artem Bityutskiy <dedekind1@gmail.com>
10765 M:      Richard Weinberger <richard@nod.at>
10766 W:      http://www.linux-mtd.infradead.org/
10767 L:      linux-mtd@lists.infradead.org
10768 T:      git git://git.infradead.org/ubifs-2.6.git
10769 S:      Supported
10770 F:      drivers/mtd/ubi/
10771 F:      include/linux/mtd/ubi.h
10772 F:      include/uapi/mtd/ubi-user.h
10773
10774 USB ACM DRIVER
10775 M:      Oliver Neukum <oliver@neukum.org>
10776 L:      linux-usb@vger.kernel.org
10777 S:      Maintained
10778 F:      Documentation/usb/acm.txt
10779 F:      drivers/usb/class/cdc-acm.*
10780
10781 USB AR5523 WIRELESS DRIVER
10782 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
10783 L:      linux-wireless@vger.kernel.org
10784 S:      Maintained
10785 F:      drivers/net/wireless/ath/ar5523/
10786
10787 USB ATTACHED SCSI
10788 M:      Hans de Goede <hdegoede@redhat.com>
10789 M:      Gerd Hoffmann <kraxel@redhat.com>
10790 L:      linux-usb@vger.kernel.org
10791 L:      linux-scsi@vger.kernel.org
10792 S:      Maintained
10793 F:      drivers/usb/storage/uas.c
10794
10795 USB CDC ETHERNET DRIVER
10796 M:      Oliver Neukum <oliver@neukum.org>
10797 L:      linux-usb@vger.kernel.org
10798 S:      Maintained
10799 F:      drivers/net/usb/cdc_*.c
10800 F:      include/uapi/linux/usb/cdc.h
10801
10802 USB CHAOSKEY DRIVER
10803 M:      Keith Packard <keithp@keithp.com>
10804 L:      linux-usb@vger.kernel.org
10805 S:      Maintained
10806 F:      drivers/usb/misc/chaoskey.c
10807
10808 USB CYPRESS C67X00 DRIVER
10809 M:      Peter Korsgaard <jacmet@sunsite.dk>
10810 L:      linux-usb@vger.kernel.org
10811 S:      Maintained
10812 F:      drivers/usb/c67x00/
10813
10814 USB DAVICOM DM9601 DRIVER
10815 M:      Peter Korsgaard <jacmet@sunsite.dk>
10816 L:      netdev@vger.kernel.org
10817 W:      http://www.linux-usb.org/usbnet
10818 S:      Maintained
10819 F:      drivers/net/usb/dm9601.c
10820
10821 USB DIAMOND RIO500 DRIVER
10822 M:      Cesar Miquel <miquel@df.uba.ar>
10823 L:      rio500-users@lists.sourceforge.net
10824 W:      http://rio500.sourceforge.net
10825 S:      Maintained
10826 F:      drivers/usb/misc/rio500*
10827
10828 USB EHCI DRIVER
10829 M:      Alan Stern <stern@rowland.harvard.edu>
10830 L:      linux-usb@vger.kernel.org
10831 S:      Maintained
10832 F:      Documentation/usb/ehci.txt
10833 F:      drivers/usb/host/ehci*
10834
10835 USB GADGET/PERIPHERAL SUBSYSTEM
10836 M:      Felipe Balbi <balbi@ti.com>
10837 L:      linux-usb@vger.kernel.org
10838 W:      http://www.linux-usb.org/gadget
10839 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
10840 S:      Maintained
10841 F:      drivers/usb/gadget/
10842 F:      include/linux/usb/gadget*
10843
10844 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
10845 M:      Jiri Kosina <jikos@kernel.org>
10846 L:      linux-usb@vger.kernel.org
10847 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
10848 S:      Maintained
10849 F:      Documentation/hid/hiddev.txt
10850 F:      drivers/hid/usbhid/
10851
10852 USB ISP116X DRIVER
10853 M:      Olav Kongas <ok@artecdesign.ee>
10854 L:      linux-usb@vger.kernel.org
10855 S:      Maintained
10856 F:      drivers/usb/host/isp116x*
10857 F:      include/linux/usb/isp116x.h
10858
10859 USB MASS STORAGE DRIVER
10860 M:      Matthew Dharm <mdharm-usb@one-eyed-alien.net>
10861 L:      linux-usb@vger.kernel.org
10862 L:      usb-storage@lists.one-eyed-alien.net
10863 S:      Maintained
10864 W:      http://www.one-eyed-alien.net/~mdharm/linux-usb/
10865 F:      drivers/usb/storage/
10866
10867 USB MIDI DRIVER
10868 M:      Clemens Ladisch <clemens@ladisch.de>
10869 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10870 T:      git git://git.alsa-project.org/alsa-kernel.git
10871 S:      Maintained
10872 F:      sound/usb/midi.*
10873
10874 USB NETWORKING DRIVERS
10875 L:      linux-usb@vger.kernel.org
10876 S:      Odd Fixes
10877 F:      drivers/net/usb/
10878
10879 USB OHCI DRIVER
10880 M:      Alan Stern <stern@rowland.harvard.edu>
10881 L:      linux-usb@vger.kernel.org
10882 S:      Maintained
10883 F:      Documentation/usb/ohci.txt
10884 F:      drivers/usb/host/ohci*
10885
10886 USB OTG FSM (Finite State Machine)
10887 M:      Peter Chen <Peter.Chen@freescale.com>
10888 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
10889 L:      linux-usb@vger.kernel.org
10890 S:      Maintained
10891 F:      drivers/usb/common/usb-otg-fsm.c
10892
10893 USB OVER IP DRIVER
10894 M:      Valentina Manea <valentina.manea.m@gmail.com>
10895 M:      Shuah Khan <shuah.kh@samsung.com>
10896 L:      linux-usb@vger.kernel.org
10897 S:      Maintained
10898 F:      drivers/usb/usbip/
10899 F:      tools/usb/usbip/
10900
10901 USB PEGASUS DRIVER
10902 M:      Petko Manolov <petkan@nucleusys.com>
10903 L:      linux-usb@vger.kernel.org
10904 L:      netdev@vger.kernel.org
10905 T:      git git://github.com/petkan/pegasus.git
10906 W:      https://github.com/petkan/pegasus
10907 S:      Maintained
10908 F:      drivers/net/usb/pegasus.*
10909
10910 USB PHY LAYER
10911 M:      Felipe Balbi <balbi@ti.com>
10912 L:      linux-usb@vger.kernel.org
10913 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
10914 S:      Maintained
10915 F:      drivers/usb/phy/
10916
10917 USB PRINTER DRIVER (usblp)
10918 M:      Pete Zaitcev <zaitcev@redhat.com>
10919 L:      linux-usb@vger.kernel.org
10920 S:      Supported
10921 F:      drivers/usb/class/usblp.c
10922
10923 USB RTL8150 DRIVER
10924 M:      Petko Manolov <petkan@nucleusys.com>
10925 L:      linux-usb@vger.kernel.org
10926 L:      netdev@vger.kernel.org
10927 T:      git git://github.com/petkan/rtl8150.git
10928 W:      https://github.com/petkan/rtl8150
10929 S:      Maintained
10930 F:      drivers/net/usb/rtl8150.c
10931
10932 USB SERIAL SUBSYSTEM
10933 M:      Johan Hovold <johan@kernel.org>
10934 L:      linux-usb@vger.kernel.org
10935 S:      Maintained
10936 F:      Documentation/usb/usb-serial.txt
10937 F:      drivers/usb/serial/
10938 F:      include/linux/usb/serial.h
10939
10940 USB SMSC75XX ETHERNET DRIVER
10941 M:      Steve Glendinning <steve.glendinning@shawell.net>
10942 L:      netdev@vger.kernel.org
10943 S:      Maintained
10944 F:      drivers/net/usb/smsc75xx.*
10945
10946 USB SMSC95XX ETHERNET DRIVER
10947 M:      Steve Glendinning <steve.glendinning@shawell.net>
10948 L:      netdev@vger.kernel.org
10949 S:      Maintained
10950 F:      drivers/net/usb/smsc95xx.*
10951
10952 USB SUBSYSTEM
10953 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10954 L:      linux-usb@vger.kernel.org
10955 W:      http://www.linux-usb.org
10956 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
10957 S:      Supported
10958 F:      Documentation/usb/
10959 F:      drivers/usb/
10960 F:      include/linux/usb.h
10961 F:      include/linux/usb/
10962
10963 USB UHCI DRIVER
10964 M:      Alan Stern <stern@rowland.harvard.edu>
10965 L:      linux-usb@vger.kernel.org
10966 S:      Maintained
10967 F:      drivers/usb/host/uhci*
10968
10969 USB "USBNET" DRIVER FRAMEWORK
10970 M:      Oliver Neukum <oneukum@suse.com>
10971 L:      netdev@vger.kernel.org
10972 W:      http://www.linux-usb.org/usbnet
10973 S:      Maintained
10974 F:      drivers/net/usb/usbnet.c
10975 F:      include/linux/usb/usbnet.h
10976
10977 USB VIDEO CLASS
10978 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10979 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
10980 L:      linux-media@vger.kernel.org
10981 T:      git git://linuxtv.org/media_tree.git
10982 W:      http://www.ideasonboard.org/uvc/
10983 S:      Maintained
10984 F:      drivers/media/usb/uvc/
10985 F:      include/uapi/linux/uvcvideo.h
10986
10987 USB VISION DRIVER
10988 M:      Hans Verkuil <hverkuil@xs4all.nl>
10989 L:      linux-media@vger.kernel.org
10990 T:      git git://linuxtv.org/media_tree.git
10991 W:      http://linuxtv.org
10992 S:      Odd Fixes
10993 F:      drivers/media/usb/usbvision/
10994
10995 USB WEBCAM GADGET
10996 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10997 L:      linux-usb@vger.kernel.org
10998 S:      Maintained
10999 F:      drivers/usb/gadget/function/*uvc*
11000 F:      drivers/usb/gadget/legacy/webcam.c
11001
11002 USB WIRELESS RNDIS DRIVER (rndis_wlan)
11003 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
11004 L:      linux-wireless@vger.kernel.org
11005 S:      Maintained
11006 F:      drivers/net/wireless/rndis_wlan.c
11007
11008 USB XHCI DRIVER
11009 M:      Mathias Nyman <mathias.nyman@intel.com>
11010 L:      linux-usb@vger.kernel.org
11011 S:      Supported
11012 F:      drivers/usb/host/xhci*
11013 F:      drivers/usb/host/pci-quirks*
11014
11015 USB ZD1201 DRIVER
11016 L:      linux-wireless@vger.kernel.org
11017 W:      http://linux-lc100020.sourceforge.net
11018 S:      Orphan
11019 F:      drivers/net/wireless/zd1201.*
11020
11021 USB ZR364XX DRIVER
11022 M:      Antoine Jacquet <royale@zerezo.com>
11023 L:      linux-usb@vger.kernel.org
11024 L:      linux-media@vger.kernel.org
11025 T:      git git://linuxtv.org/media_tree.git
11026 W:      http://royale.zerezo.com/zr364xx/
11027 S:      Maintained
11028 F:      Documentation/video4linux/zr364xx.txt
11029 F:      drivers/media/usb/zr364xx/
11030
11031 ULPI BUS
11032 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
11033 L:      linux-usb@vger.kernel.org
11034 S:      Maintained
11035 F:      drivers/usb/common/ulpi.c
11036 F:      include/linux/ulpi/
11037
11038 USER-MODE LINUX (UML)
11039 M:      Jeff Dike <jdike@addtoit.com>
11040 M:      Richard Weinberger <richard@nod.at>
11041 L:      user-mode-linux-devel@lists.sourceforge.net
11042 L:      user-mode-linux-user@lists.sourceforge.net
11043 W:      http://user-mode-linux.sourceforge.net
11044 S:      Maintained
11045 F:      Documentation/virtual/uml/
11046 F:      arch/um/
11047 F:      arch/x86/um/
11048 F:      fs/hostfs/
11049 F:      fs/hppfs/
11050
11051 USERSPACE I/O (UIO)
11052 M:      "Hans J. Koch" <hjk@hansjkoch.de>
11053 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11054 S:      Maintained
11055 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
11056 F:      Documentation/DocBook/uio-howto.tmpl
11057 F:      drivers/uio/
11058 F:      include/linux/uio*.h
11059
11060 UTIL-LINUX PACKAGE
11061 M:      Karel Zak <kzak@redhat.com>
11062 L:      util-linux@vger.kernel.org
11063 W:      http://en.wikipedia.org/wiki/Util-linux
11064 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
11065 S:      Maintained
11066
11067 UVESAFB DRIVER
11068 M:      Michal Januszewski <spock@gentoo.org>
11069 L:      linux-fbdev@vger.kernel.org
11070 W:      http://dev.gentoo.org/~spock/projects/uvesafb/
11071 S:      Maintained
11072 F:      Documentation/fb/uvesafb.txt
11073 F:      drivers/video/fbdev/uvesafb.*
11074
11075 VFAT/FAT/MSDOS FILESYSTEM
11076 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
11077 S:      Maintained
11078 F:      Documentation/filesystems/vfat.txt
11079 F:      fs/fat/
11080
11081 VFIO DRIVER
11082 M:      Alex Williamson <alex.williamson@redhat.com>
11083 L:      kvm@vger.kernel.org
11084 S:      Maintained
11085 F:      Documentation/vfio.txt
11086 F:      drivers/vfio/
11087 F:      include/linux/vfio.h
11088 F:      include/uapi/linux/vfio.h
11089
11090 VFIO PLATFORM DRIVER
11091 M:      Baptiste Reynal <b.reynal@virtualopensystems.com>
11092 L:      kvm@vger.kernel.org
11093 S:      Maintained
11094 F:      drivers/vfio/platform/
11095
11096 VIDEOBUF2 FRAMEWORK
11097 M:      Pawel Osciak <pawel@osciak.com>
11098 M:      Marek Szyprowski <m.szyprowski@samsung.com>
11099 M:      Kyungmin Park <kyungmin.park@samsung.com>
11100 L:      linux-media@vger.kernel.org
11101 S:      Maintained
11102 F:      drivers/media/v4l2-core/videobuf2-*
11103 F:      include/media/videobuf2-*
11104
11105 VIRTIO CONSOLE DRIVER
11106 M:      Amit Shah <amit.shah@redhat.com>
11107 L:      virtualization@lists.linux-foundation.org
11108 S:      Maintained
11109 F:      drivers/char/virtio_console.c
11110 F:      include/linux/virtio_console.h
11111 F:      include/uapi/linux/virtio_console.h
11112
11113 VIRTIO CORE, NET AND BLOCK DRIVERS
11114 M:      "Michael S. Tsirkin" <mst@redhat.com>
11115 L:      virtualization@lists.linux-foundation.org
11116 S:      Maintained
11117 F:      drivers/virtio/
11118 F:      tools/virtio/
11119 F:      drivers/net/virtio_net.c
11120 F:      drivers/block/virtio_blk.c
11121 F:      include/linux/virtio_*.h
11122 F:      include/uapi/linux/virtio_*.h
11123
11124 VIRTIO DRIVERS FOR S390
11125 M:      Christian Borntraeger <borntraeger@de.ibm.com>
11126 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
11127 L:      linux-s390@vger.kernel.org
11128 L:      virtualization@lists.linux-foundation.org
11129 L:      kvm@vger.kernel.org
11130 S:      Supported
11131 F:      drivers/s390/virtio/
11132
11133 VIRTIO GPU DRIVER
11134 M:      David Airlie <airlied@linux.ie>
11135 M:      Gerd Hoffmann <kraxel@redhat.com>
11136 L:      dri-devel@lists.freedesktop.org
11137 L:      virtualization@lists.linux-foundation.org
11138 S:      Maintained
11139 F:      drivers/gpu/drm/virtio/
11140 F:      include/uapi/linux/virtio_gpu.h
11141
11142 VIRTIO HOST (VHOST)
11143 M:      "Michael S. Tsirkin" <mst@redhat.com>
11144 L:      kvm@vger.kernel.org
11145 L:      virtualization@lists.linux-foundation.org
11146 L:      netdev@vger.kernel.org
11147 S:      Maintained
11148 F:      drivers/vhost/
11149 F:      include/uapi/linux/vhost.h
11150
11151 VIRTIO INPUT DRIVER
11152 M:      Gerd Hoffmann <kraxel@redhat.com>
11153 S:      Maintained
11154 F:      drivers/virtio/virtio_input.c
11155 F:      include/uapi/linux/virtio_input.h
11156
11157 VIA RHINE NETWORK DRIVER
11158 S:      Orphan
11159 F:      drivers/net/ethernet/via/via-rhine.c
11160
11161 VIA SD/MMC CARD CONTROLLER DRIVER
11162 M:      Bruce Chang <brucechang@via.com.tw>
11163 M:      Harald Welte <HaraldWelte@viatech.com>
11164 S:      Maintained
11165 F:      drivers/mmc/host/via-sdmmc.c
11166
11167 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
11168 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
11169 L:      linux-fbdev@vger.kernel.org
11170 S:      Maintained
11171 F:      include/linux/via-core.h
11172 F:      include/linux/via-gpio.h
11173 F:      include/linux/via_i2c.h
11174 F:      drivers/video/fbdev/via/
11175
11176 VIA VELOCITY NETWORK DRIVER
11177 M:      Francois Romieu <romieu@fr.zoreil.com>
11178 L:      netdev@vger.kernel.org
11179 S:      Maintained
11180 F:      drivers/net/ethernet/via/via-velocity.*
11181
11182 VIVID VIRTUAL VIDEO DRIVER
11183 M:      Hans Verkuil <hverkuil@xs4all.nl>
11184 L:      linux-media@vger.kernel.org
11185 T:      git git://linuxtv.org/media_tree.git
11186 W:      http://linuxtv.org
11187 S:      Maintained
11188 F:      drivers/media/platform/vivid/*
11189
11190 VLAN (802.1Q)
11191 M:      Patrick McHardy <kaber@trash.net>
11192 L:      netdev@vger.kernel.org
11193 S:      Maintained
11194 F:      drivers/net/macvlan.c
11195 F:      include/linux/if_*vlan.h
11196 F:      net/8021q/
11197
11198 VLYNQ BUS
11199 M:      Florian Fainelli <florian@openwrt.org>
11200 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
11201 S:      Maintained
11202 F:      drivers/vlynq/vlynq.c
11203 F:      include/linux/vlynq.h
11204
11205 VME SUBSYSTEM
11206 M:      Martyn Welch <martyn@welchs.me.uk>
11207 M:      Manohar Vanga <manohar.vanga@gmail.com>
11208 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11209 L:      devel@driverdev.osuosl.org
11210 S:      Maintained
11211 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
11212 F:      Documentation/vme_api.txt
11213 F:      drivers/staging/vme/
11214 F:      drivers/vme/
11215 F:      include/linux/vme*
11216
11217 VMWARE HYPERVISOR INTERFACE
11218 M:      Alok Kataria <akataria@vmware.com>
11219 L:      virtualization@lists.linux-foundation.org
11220 S:      Supported
11221 F:      arch/x86/kernel/cpu/vmware.c
11222
11223 VMWARE BALLOON DRIVER
11224 M:      Xavier Deguillard <xdeguillard@vmware.com>
11225 M:      Philip Moltmann <moltmann@vmware.com>
11226 M:      "VMware, Inc." <pv-drivers@vmware.com>
11227 L:      linux-kernel@vger.kernel.org
11228 S:      Maintained
11229 F:      drivers/misc/vmw_balloon.c
11230
11231 VMWARE VMMOUSE SUBDRIVER
11232 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
11233 M:      "VMware, Inc." <pv-drivers@vmware.com>
11234 L:      linux-input@vger.kernel.org
11235 S:      Maintained
11236 F:      drivers/input/mouse/vmmouse.c
11237 F:      drivers/input/mouse/vmmouse.h
11238
11239 VMWARE VMXNET3 ETHERNET DRIVER
11240 M:      Shrikrishna Khare <skhare@vmware.com>
11241 M:      "VMware, Inc." <pv-drivers@vmware.com>
11242 L:      netdev@vger.kernel.org
11243 S:      Maintained
11244 F:      drivers/net/vmxnet3/
11245
11246 VMware PVSCSI driver
11247 M:      Arvind Kumar <arvindkumar@vmware.com>
11248 M:      VMware PV-Drivers <pv-drivers@vmware.com>
11249 L:      linux-scsi@vger.kernel.org
11250 S:      Maintained
11251 F:      drivers/scsi/vmw_pvscsi.c
11252 F:      drivers/scsi/vmw_pvscsi.h
11253
11254 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
11255 M:      Liam Girdwood <lgirdwood@gmail.com>
11256 M:      Mark Brown <broonie@kernel.org>
11257 L:      linux-kernel@vger.kernel.org
11258 W:      http://www.slimlogic.co.uk/?p=48
11259 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
11260 S:      Supported
11261 F:      drivers/regulator/
11262 F:      include/linux/regulator/
11263
11264 VRF
11265 M:      David Ahern <dsa@cumulusnetworks.com>
11266 M:      Shrijeet Mukherjee <shm@cumulusnetworks.com>
11267 L:      netdev@vger.kernel.org
11268 S:      Maintained
11269 F:      drivers/net/vrf.c
11270 F:      include/net/vrf.h
11271 F:      Documentation/networking/vrf.txt
11272
11273 VT1211 HARDWARE MONITOR DRIVER
11274 M:      Juerg Haefliger <juergh@gmail.com>
11275 L:      lm-sensors@lm-sensors.org
11276 S:      Maintained
11277 F:      Documentation/hwmon/vt1211
11278 F:      drivers/hwmon/vt1211.c
11279
11280 VT8231 HARDWARE MONITOR DRIVER
11281 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
11282 L:      lm-sensors@lm-sensors.org
11283 S:      Maintained
11284 F:      drivers/hwmon/vt8231.c
11285
11286 VUB300 USB to SDIO/SD/MMC bridge chip
11287 M:      Tony Olech <tony.olech@elandigitalsystems.com>
11288 L:      linux-mmc@vger.kernel.org
11289 L:      linux-usb@vger.kernel.org
11290 S:      Supported
11291 F:      drivers/mmc/host/vub300.c
11292
11293 W1 DALLAS'S 1-WIRE BUS
11294 M:      Evgeniy Polyakov <zbr@ioremap.net>
11295 S:      Maintained
11296 F:      Documentation/w1/
11297 F:      drivers/w1/
11298
11299 W83791D HARDWARE MONITORING DRIVER
11300 M:      Marc Hulsman <m.hulsman@tudelft.nl>
11301 L:      lm-sensors@lm-sensors.org
11302 S:      Maintained
11303 F:      Documentation/hwmon/w83791d
11304 F:      drivers/hwmon/w83791d.c
11305
11306 W83793 HARDWARE MONITORING DRIVER
11307 M:      Rudolf Marek <r.marek@assembler.cz>
11308 L:      lm-sensors@lm-sensors.org
11309 S:      Maintained
11310 F:      Documentation/hwmon/w83793
11311 F:      drivers/hwmon/w83793.c
11312
11313 W83795 HARDWARE MONITORING DRIVER
11314 M:      Jean Delvare <jdelvare@suse.com>
11315 L:      lm-sensors@lm-sensors.org
11316 S:      Maintained
11317 F:      drivers/hwmon/w83795.c
11318
11319 W83L51xD SD/MMC CARD INTERFACE DRIVER
11320 M:      Pierre Ossman <pierre@ossman.eu>
11321 S:      Maintained
11322 F:      drivers/mmc/host/wbsd.*
11323
11324 WACOM PROTOCOL 4 SERIAL TABLETS
11325 M:      Julian Squires <julian@cipht.net>
11326 M:      Hans de Goede <hdegoede@redhat.com>
11327 L:      linux-input@vger.kernel.org
11328 S:      Maintained
11329 F:      drivers/input/tablet/wacom_serial4.c
11330
11331 WATCHDOG DEVICE DRIVERS
11332 M:      Wim Van Sebroeck <wim@iguana.be>
11333 L:      linux-watchdog@vger.kernel.org
11334 W:      http://www.linux-watchdog.org/
11335 T:      git git://www.linux-watchdog.org/linux-watchdog.git
11336 S:      Maintained
11337 F:      Documentation/watchdog/
11338 F:      drivers/watchdog/
11339 F:      include/linux/watchdog.h
11340 F:      include/uapi/linux/watchdog.h
11341
11342 WD7000 SCSI DRIVER
11343 M:      Miroslav Zagorac <zaga@fly.cc.fer.hr>
11344 L:      linux-scsi@vger.kernel.org
11345 S:      Maintained
11346 F:      drivers/scsi/wd7000.c
11347
11348 WIIMOTE HID DRIVER
11349 M:      David Herrmann <dh.herrmann@googlemail.com>
11350 L:      linux-input@vger.kernel.org
11351 S:      Maintained
11352 F:      drivers/hid/hid-wiimote*
11353
11354 WINBOND CIR DRIVER
11355 M:      David Härdeman <david@hardeman.nu>
11356 S:      Maintained
11357 F:      drivers/media/rc/winbond-cir.c
11358
11359 WIMAX STACK
11360 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
11361 M:      linux-wimax@intel.com
11362 L:      wimax@linuxwimax.org (subscribers-only)
11363 S:      Supported
11364 W:      http://linuxwimax.org
11365 F:      Documentation/wimax/README.wimax
11366 F:      include/linux/wimax/debug.h
11367 F:      include/net/wimax.h
11368 F:      include/uapi/linux/wimax.h
11369 F:      net/wimax/
11370
11371 WISTRON LAPTOP BUTTON DRIVER
11372 M:      Miloslav Trmac <mitr@volny.cz>
11373 S:      Maintained
11374 F:      drivers/input/misc/wistron_btns.c
11375
11376 WL3501 WIRELESS PCMCIA CARD DRIVER
11377 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
11378 L:      linux-wireless@vger.kernel.org
11379 W:      http://oops.ghostprotocols.net:81/blog
11380 S:      Maintained
11381 F:      drivers/net/wireless/wl3501*
11382
11383 WM97XX TOUCHSCREEN DRIVERS
11384 M:      Mark Brown <broonie@kernel.org>
11385 M:      Liam Girdwood <lrg@slimlogic.co.uk>
11386 L:      linux-input@vger.kernel.org
11387 W:      https://github.com/CirrusLogic/linux-drivers/wiki
11388 S:      Supported
11389 F:      drivers/input/touchscreen/*wm97*
11390 F:      include/linux/wm97xx.h
11391
11392 WOLFSON MICROELECTRONICS DRIVERS
11393 L:      patches@opensource.wolfsonmicro.com
11394 T:      git https://github.com/CirrusLogic/linux-drivers.git
11395 W:      https://github.com/CirrusLogic/linux-drivers/wiki
11396 S:      Supported
11397 F:      Documentation/hwmon/wm83??
11398 F:      arch/arm/mach-s3c64xx/mach-crag6410*
11399 F:      drivers/clk/clk-wm83*.c
11400 F:      drivers/extcon/extcon-arizona.c
11401 F:      drivers/leds/leds-wm83*.c
11402 F:      drivers/gpio/gpio-*wm*.c
11403 F:      drivers/gpio/gpio-arizona.c
11404 F:      drivers/hwmon/wm83??-hwmon.c
11405 F:      drivers/input/misc/wm831x-on.c
11406 F:      drivers/input/touchscreen/wm831x-ts.c
11407 F:      drivers/input/touchscreen/wm97*.c
11408 F:      drivers/mfd/arizona*
11409 F:      drivers/mfd/wm*.c
11410 F:      drivers/power/wm83*.c
11411 F:      drivers/rtc/rtc-wm83*.c
11412 F:      drivers/regulator/wm8*.c
11413 F:      drivers/video/backlight/wm83*_bl.c
11414 F:      drivers/watchdog/wm83*_wdt.c
11415 F:      include/linux/mfd/arizona/
11416 F:      include/linux/mfd/wm831x/
11417 F:      include/linux/mfd/wm8350/
11418 F:      include/linux/mfd/wm8400*
11419 F:      include/linux/wm97xx.h
11420 F:      include/sound/wm????.h
11421 F:      sound/soc/codecs/arizona.?
11422 F:      sound/soc/codecs/wm*
11423
11424 WORKQUEUE
11425 M:      Tejun Heo <tj@kernel.org>
11426 R:      Lai Jiangshan <jiangshanlai@gmail.com>
11427 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
11428 S:      Maintained
11429 F:      include/linux/workqueue.h
11430 F:      kernel/workqueue.c
11431 F:      Documentation/workqueue.txt
11432
11433 X.25 NETWORK LAYER
11434 M:      Andrew Hendry <andrew.hendry@gmail.com>
11435 L:      linux-x25@vger.kernel.org
11436 S:      Odd Fixes
11437 F:      Documentation/networking/x25*
11438 F:      include/net/x25*
11439 F:      net/x25/
11440
11441 X86 ARCHITECTURE (32-BIT AND 64-BIT)
11442 M:      Thomas Gleixner <tglx@linutronix.de>
11443 M:      Ingo Molnar <mingo@redhat.com>
11444 M:      "H. Peter Anvin" <hpa@zytor.com>
11445 M:      x86@kernel.org
11446 L:      linux-kernel@vger.kernel.org
11447 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
11448 S:      Maintained
11449 F:      Documentation/x86/
11450 F:      arch/x86/
11451
11452 X86 PLATFORM DRIVERS
11453 M:      Darren Hart <dvhart@infradead.org>
11454 L:      platform-driver-x86@vger.kernel.org
11455 T:      git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git
11456 S:      Maintained
11457 F:      drivers/platform/x86/
11458
11459 X86 MCE INFRASTRUCTURE
11460 M:      Tony Luck <tony.luck@intel.com>
11461 M:      Borislav Petkov <bp@alien8.de>
11462 L:      linux-edac@vger.kernel.org
11463 S:      Maintained
11464 F:      arch/x86/kernel/cpu/mcheck/*
11465
11466 X86 VDSO
11467 M:      Andy Lutomirski <luto@amacapital.net>
11468 L:      linux-kernel@vger.kernel.org
11469 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
11470 S:      Maintained
11471 F:      arch/x86/entry/vdso/
11472
11473 XC2028/3028 TUNER DRIVER
11474 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
11475 L:      linux-media@vger.kernel.org
11476 W:      http://linuxtv.org
11477 T:      git git://linuxtv.org/media_tree.git
11478 S:      Maintained
11479 F:      drivers/media/tuners/tuner-xc2028.*
11480
11481 XEN HYPERVISOR INTERFACE
11482 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11483 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
11484 M:      David Vrabel <david.vrabel@citrix.com>
11485 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11486 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
11487 S:      Supported
11488 F:      arch/x86/xen/
11489 F:      drivers/*/xen-*front.c
11490 F:      drivers/xen/
11491 F:      arch/x86/include/asm/xen/
11492 F:      include/xen/
11493 F:      include/uapi/xen/
11494
11495 XEN HYPERVISOR ARM
11496 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
11497 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11498 S:      Supported
11499 F:      arch/arm/xen/
11500 F:      arch/arm/include/asm/xen/
11501
11502 XEN HYPERVISOR ARM64
11503 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
11504 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11505 S:      Supported
11506 F:      arch/arm64/xen/
11507 F:      arch/arm64/include/asm/xen/
11508
11509 XEN NETWORK BACKEND DRIVER
11510 M:      Ian Campbell <ian.campbell@citrix.com>
11511 M:      Wei Liu <wei.liu2@citrix.com>
11512 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11513 L:      netdev@vger.kernel.org
11514 S:      Supported
11515 F:      drivers/net/xen-netback/*
11516
11517 XEN PCI SUBSYSTEM
11518 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11519 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11520 S:      Supported
11521 F:      arch/x86/pci/*xen*
11522 F:      drivers/pci/*xen*
11523
11524 XEN BLOCK SUBSYSTEM
11525 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11526 M:      Roger Pau MonnĂ© <roger.pau@citrix.com>
11527 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11528 S:      Supported
11529 F:      drivers/block/xen-blkback/*
11530 F:      drivers/block/xen*
11531
11532 XEN PVSCSI DRIVERS
11533 M:      Juergen Gross <jgross@suse.com>
11534 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11535 L:      linux-scsi@vger.kernel.org
11536 S:      Supported
11537 F:      drivers/scsi/xen-scsifront.c
11538 F:      drivers/xen/xen-scsiback.c
11539 F:      include/xen/interface/io/vscsiif.h
11540
11541 XEN SWIOTLB SUBSYSTEM
11542 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11543 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11544 S:      Supported
11545 F:      arch/x86/xen/*swiotlb*
11546 F:      drivers/xen/*swiotlb*
11547
11548 XFS FILESYSTEM
11549 P:      Silicon Graphics Inc
11550 M:      Dave Chinner <david@fromorbit.com>
11551 M:      xfs@oss.sgi.com
11552 L:      xfs@oss.sgi.com
11553 W:      http://oss.sgi.com/projects/xfs
11554 T:      git git://oss.sgi.com/xfs/xfs.git
11555 S:      Supported
11556 F:      Documentation/filesystems/xfs.txt
11557 F:      fs/xfs/
11558
11559 XILINX AXI ETHERNET DRIVER
11560 M:      Anirudha Sarangi <anirudh@xilinx.com>
11561 M:      John Linn <John.Linn@xilinx.com>
11562 S:      Maintained
11563 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
11564
11565 XILINX UARTLITE SERIAL DRIVER
11566 M:      Peter Korsgaard <jacmet@sunsite.dk>
11567 L:      linux-serial@vger.kernel.org
11568 S:      Maintained
11569 F:      drivers/tty/serial/uartlite.c
11570
11571 XILINX VIDEO IP CORES
11572 M:      Hyun Kwon <hyun.kwon@xilinx.com>
11573 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11574 L:      linux-media@vger.kernel.org
11575 T:      git git://linuxtv.org/media_tree.git
11576 S:      Supported
11577 F:      Documentation/devicetree/bindings/media/xilinx/
11578 F:      drivers/media/platform/xilinx/
11579 F:      include/uapi/linux/xilinx-v4l2-controls.h
11580
11581 XILLYBUS DRIVER
11582 M:      Eli Billauer <eli.billauer@gmail.com>
11583 L:      linux-kernel@vger.kernel.org
11584 S:      Supported
11585 F:      drivers/char/xillybus/
11586
11587 XTENSA XTFPGA PLATFORM SUPPORT
11588 M:      Max Filippov <jcmvbkbc@gmail.com>
11589 L:      linux-xtensa@linux-xtensa.org
11590 S:      Maintained
11591 F:      drivers/spi/spi-xtensa-xtfpga.c
11592 F:      sound/soc/xtensa/xtfpga-i2s.c
11593
11594 YAM DRIVER FOR AX.25
11595 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
11596 L:      linux-hams@vger.kernel.org
11597 S:      Maintained
11598 F:      drivers/net/hamradio/yam*
11599 F:      include/linux/yam.h
11600
11601 YEALINK PHONE DRIVER
11602 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
11603 L:      usbb2k-api-dev@nongnu.org
11604 S:      Maintained
11605 F:      Documentation/input/yealink.txt
11606 F:      drivers/input/misc/yealink.*
11607
11608 Z8530 DRIVER FOR AX.25
11609 M:      Joerg Reuter <jreuter@yaina.de>
11610 W:      http://yaina.de/jreuter/
11611 W:      http://www.qsl.net/dl1bke/
11612 L:      linux-hams@vger.kernel.org
11613 S:      Maintained
11614 F:      Documentation/networking/z8530drv.txt
11615 F:      drivers/net/hamradio/*scc.c
11616 F:      drivers/net/hamradio/z8530.h
11617
11618 ZBUD COMPRESSED PAGE ALLOCATOR
11619 M:      Seth Jennings <sjennings@variantweb.net>
11620 L:      linux-mm@kvack.org
11621 S:      Maintained
11622 F:      mm/zbud.c
11623 F:      include/linux/zbud.h
11624
11625 ZD1211RW WIRELESS DRIVER
11626 M:      Daniel Drake <dsd@gentoo.org>
11627 M:      Ulrich Kunitz <kune@deine-taler.de>
11628 W:      http://zd1211.ath.cx/wiki/DriverRewrite
11629 L:      linux-wireless@vger.kernel.org
11630 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
11631 S:      Maintained
11632 F:      drivers/net/wireless/zd1211rw/
11633
11634 ZPOOL COMPRESSED PAGE STORAGE API
11635 M:      Dan Streetman <ddstreet@ieee.org>
11636 L:      linux-mm@kvack.org
11637 S:      Maintained
11638 F:      mm/zpool.c
11639 F:      include/linux/zpool.h
11640
11641 ZR36067 VIDEO FOR LINUX DRIVER
11642 L:      mjpeg-users@lists.sourceforge.net
11643 L:      linux-media@vger.kernel.org
11644 W:      http://mjpeg.sourceforge.net/driver-zoran/
11645 T:      hg http://linuxtv.org/hg/v4l-dvb
11646 S:      Odd Fixes
11647 F:      drivers/media/pci/zoran/
11648
11649 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
11650 M:      Minchan Kim <minchan@kernel.org>
11651 M:      Nitin Gupta <ngupta@vflare.org>
11652 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
11653 L:      linux-kernel@vger.kernel.org
11654 S:      Maintained
11655 F:      drivers/block/zram/
11656 F:      Documentation/blockdev/zram.txt
11657
11658 ZS DECSTATION Z85C30 SERIAL DRIVER
11659 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
11660 S:      Maintained
11661 F:      drivers/tty/serial/zs.*
11662
11663 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
11664 M:      Minchan Kim <minchan@kernel.org>
11665 M:      Nitin Gupta <ngupta@vflare.org>
11666 L:      linux-mm@kvack.org
11667 S:      Maintained
11668 F:      mm/zsmalloc.c
11669 F:      include/linux/zsmalloc.h
11670 F:      Documentation/vm/zsmalloc.txt
11671
11672 ZSWAP COMPRESSED SWAP CACHING
11673 M:      Seth Jennings <sjennings@variantweb.net>
11674 L:      linux-mm@kvack.org
11675 S:      Maintained
11676 F:      mm/zswap.c
11677
11678 THE REST
11679 M:      Linus Torvalds <torvalds@linux-foundation.org>
11680 L:      linux-kernel@vger.kernel.org
11681 Q:      http://patchwork.kernel.org/project/LKML/list/
11682 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
11683 S:      Buried alive in reporters
11684 F:      *
11685 F:      */