]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - MAINTAINERS
Merge tag '4.4-scsi-mkp' into misc
[karo-tx-linux.git] / MAINTAINERS
1
2
3         List of maintainers and how to submit kernel changes
4
5 Please try to follow the guidelines below.  This will make things
6 easier on the maintainers.  Not all of these guidelines matter for every
7 trivial patch so apply some common sense.
8
9 1.      Always _test_ your changes, however small, on at least 4 or
10         5 people, preferably many more.
11
12 2.      Try to release a few ALPHA test versions to the net. Announce
13         them onto the kernel channel and await results. This is especially
14         important for device drivers, because often that's the only way
15         you will find things like the fact version 3 firmware needs
16         a magic fix you didn't know about, or some clown changed the
17         chips on a board and not its name.  (Don't laugh!  Look at the
18         SMC etherpower for that.)
19
20 3.      Make sure your changes compile correctly in multiple
21         configurations. In particular check that changes work both as a
22         module and built into the kernel.
23
24 4.      When you are happy with a change make it generally available for
25         testing and await feedback.
26
27 5.      Make a patch available to the relevant maintainer in the list. Use
28         'diff -u' to make the patch easy to merge. Be prepared to get your
29         changes sent back with seemingly silly requests about formatting
30         and variable names.  These aren't as silly as they seem. One
31         job the maintainers (and especially Linus) do is to keep things
32         looking the same. Sometimes this means that the clever hack in
33         your driver to get around a problem actually needs to become a
34         generalized kernel feature ready for next time.
35
36         PLEASE check your patch with the automated style checker
37         (scripts/checkpatch.pl) to catch trivial style violations.
38         See Documentation/CodingStyle for guidance here.
39
40         PLEASE CC: the maintainers and mailing lists that are generated
41         by scripts/get_maintainer.pl.  The results returned by the
42         script will be best if you have git installed and are making
43         your changes in a branch derived from Linus' latest git tree.
44         See Documentation/SubmittingPatches for details.
45
46         PLEASE try to include any credit lines you want added with the
47         patch. It avoids people being missed off by mistake and makes
48         it easier to know who wants adding and who doesn't.
49
50         PLEASE document known bugs. If it doesn't work for everything
51         or does something very odd once a month document it.
52
53         PLEASE remember that submissions must be made under the terms
54         of the Linux Foundation certificate of contribution and should
55         include a Signed-off-by: line.  The current version of this
56         "Developer's Certificate of Origin" (DCO) is listed in the file
57         Documentation/SubmittingPatches.
58
59 6.      Make sure you have the right to send any changes you make. If you
60         do changes at work you may find your employer owns the patch
61         not you.
62
63 7.      When sending security related changes or reports to a maintainer
64         please Cc: security@kernel.org, especially if the maintainer
65         does not respond.
66
67 8.      Happy hacking.
68
69 Descriptions of section entries:
70
71         P: Person (obsolete)
72         M: Mail patches to: FullName <address@domain>
73         R: Designated reviewer: FullName <address@domain>
74            These reviewers should be CCed on patches.
75         L: Mailing list that is relevant to this area
76         W: Web-page with status/info
77         Q: Patchwork web based patch tracking system site
78         T: SCM tree type and location.
79            Type is one of: git, hg, quilt, stgit, topgit
80         S: Status, one of the following:
81            Supported:   Someone is actually paid to look after this.
82            Maintained:  Someone actually looks after it.
83            Odd Fixes:   It has a maintainer but they don't have time to do
84                         much other than throw the odd patch in. See below..
85            Orphan:      No current maintainer [but maybe you could take the
86                         role as you write your new code].
87            Obsolete:    Old code. Something tagged obsolete generally means
88                         it has been replaced by a better system and you
89                         should be using that.
90         F: Files and directories with wildcard patterns.
91            A trailing slash includes all files and subdirectory files.
92            F:   drivers/net/    all files in and below drivers/net
93            F:   drivers/net/*   all files in drivers/net, but not below
94            F:   */net/*         all files in "any top level directory"/net
95            One pattern per line.  Multiple F: lines acceptable.
96         N: Files and directories with regex patterns.
97            N:   [^a-z]tegra     all files whose path contains the word tegra
98            One pattern per line.  Multiple N: lines acceptable.
99            scripts/get_maintainer.pl has different behavior for files that
100            match F: pattern and matches of N: patterns.  By default,
101            get_maintainer will not look at git log history when an F: pattern
102            match occurs.  When an N: match occurs, git log history is used
103            to also notify the people that have git commit signatures.
104         X: Files and directories that are NOT maintained, same rules as F:
105            Files exclusions are tested before file matches.
106            Can be useful for excluding a specific subdirectory, for instance:
107            F:   net/
108            X:   net/ipv6/
109            matches all files in and below net excluding net/ipv6/
110         K: Keyword perl extended regex pattern to match content in a
111            patch or file.  For instance:
112            K: of_get_profile
113               matches patches or files that contain "of_get_profile"
114            K: \b(printk|pr_(info|err))\b
115               matches patches or files that contain one or more of the words
116               printk, pr_info or pr_err
117            One regex pattern per line.  Multiple K: lines acceptable.
118
119 Note: For the hard of thinking, this list is meant to remain in alphabetical
120 order. If you could add yourselves to it in alphabetical order that would be
121 so much easier [Ed]
122
123 Maintainers List (try to look for most precise areas first)
124
125                 -----------------------------------
126
127 3C59X NETWORK DRIVER
128 M:      Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
129 L:      netdev@vger.kernel.org
130 S:      Maintained
131 F:      Documentation/networking/vortex.txt
132 F:      drivers/net/ethernet/3com/3c59x.c
133
134 3CR990 NETWORK DRIVER
135 M:      David Dillow <dave@thedillows.org>
136 L:      netdev@vger.kernel.org
137 S:      Maintained
138 F:      drivers/net/ethernet/3com/typhoon*
139
140 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
141 M:      Adam Radford <linuxraid@lsi.com>
142 L:      linux-scsi@vger.kernel.org
143 W:      http://www.lsi.com
144 S:      Supported
145 F:      drivers/scsi/3w-*
146
147 53C700 AND 53C700-66 SCSI DRIVER
148 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
149 L:      linux-scsi@vger.kernel.org
150 S:      Maintained
151 F:      drivers/scsi/53c700*
152
153 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
154 M:      Alexander Aring <alex.aring@gmail.com>
155 M:      Jukka Rissanen <jukka.rissanen@linux.intel.com>
156 L:      linux-bluetooth@vger.kernel.org
157 L:      linux-wpan@vger.kernel.org
158 S:      Maintained
159 F:      net/6lowpan/
160 F:      include/net/6lowpan.h
161 F:      Documentation/networking/6lowpan.txt
162
163 6PACK NETWORK DRIVER FOR AX.25
164 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
165 L:      linux-hams@vger.kernel.org
166 S:      Maintained
167 F:      drivers/net/hamradio/6pack.c
168
169 8169 10/100/1000 GIGABIT ETHERNET DRIVER
170 M:      Realtek linux nic maintainers <nic_swsd@realtek.com>
171 L:      netdev@vger.kernel.org
172 S:      Maintained
173 F:      drivers/net/ethernet/realtek/r8169.c
174
175 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
176 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
177 L:      linux-serial@vger.kernel.org
178 W:      http://serial.sourceforge.net
179 S:      Maintained
180 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
181 F:      drivers/tty/serial/8250*
182 F:      include/linux/serial_8250.h
183
184 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
185 L:      netdev@vger.kernel.org
186 S:      Orphan / Obsolete
187 F:      drivers/net/ethernet/8390/
188
189 9P FILE SYSTEM
190 M:      Eric Van Hensbergen <ericvh@gmail.com>
191 M:      Ron Minnich <rminnich@sandia.gov>
192 M:      Latchesar Ionkov <lucho@ionkov.net>
193 L:      v9fs-developer@lists.sourceforge.net
194 W:      http://swik.net/v9fs
195 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
196 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
197 S:      Maintained
198 F:      Documentation/filesystems/9p.txt
199 F:      fs/9p/
200 F:      net/9p/
201 F:      include/net/9p/
202 F:      include/uapi/linux/virtio_9p.h
203 F:      include/trace/events/9p.h
204
205
206 A8293 MEDIA DRIVER
207 M:      Antti Palosaari <crope@iki.fi>
208 L:      linux-media@vger.kernel.org
209 W:      http://linuxtv.org/
210 W:      http://palosaari.fi/linux/
211 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
212 T:      git git://linuxtv.org/anttip/media_tree.git
213 S:      Maintained
214 F:      drivers/media/dvb-frontends/a8293*
215
216 AACRAID SCSI RAID DRIVER
217 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
218 L:      linux-scsi@vger.kernel.org
219 W:      http://www.adaptec.com/
220 S:      Supported
221 F:      Documentation/scsi/aacraid.txt
222 F:      drivers/scsi/aacraid/
223
224 ABI/API
225 L:      linux-api@vger.kernel.org
226 F:      Documentation/ABI/
227 F:      include/linux/syscalls.h
228 F:      include/uapi/
229 F:      kernel/sys_ni.c
230
231 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
232 M:      Hans de Goede <hdegoede@redhat.com>
233 L:      lm-sensors@lm-sensors.org
234 S:      Maintained
235 F:      drivers/hwmon/abituguru.c
236
237 ABIT UGURU 3 HARDWARE MONITOR DRIVER
238 M:      Alistair John Strachan <alistair@devzero.co.uk>
239 L:      lm-sensors@lm-sensors.org
240 S:      Maintained
241 F:      drivers/hwmon/abituguru3.c
242
243 ACENIC DRIVER
244 M:      Jes Sorensen <jes@trained-monkey.org>
245 L:      linux-acenic@sunsite.dk
246 S:      Maintained
247 F:      drivers/net/ethernet/alteon/acenic*
248
249 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
250 M:      Peter Feuerer <peter@piie.net>
251 L:      platform-driver-x86@vger.kernel.org
252 W:      http://piie.net/?section=acerhdf
253 S:      Maintained
254 F:      drivers/platform/x86/acerhdf.c
255
256 ACER WMI LAPTOP EXTRAS
257 M:      "Lee, Chun-Yi" <jlee@suse.com>
258 L:      platform-driver-x86@vger.kernel.org
259 S:      Maintained
260 F:      drivers/platform/x86/acer-wmi.c
261
262 ACPI
263 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
264 M:      Len Brown <lenb@kernel.org>
265 L:      linux-acpi@vger.kernel.org
266 W:      https://01.org/linux-acpi
267 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
268 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
269 S:      Supported
270 F:      drivers/acpi/
271 F:      drivers/pnp/pnpacpi/
272 F:      include/linux/acpi.h
273 F:      include/acpi/
274 F:      Documentation/acpi/
275 F:      Documentation/ABI/testing/sysfs-bus-acpi
276 F:      drivers/pci/*acpi*
277 F:      drivers/pci/*/*acpi*
278 F:      drivers/pci/*/*/*acpi*
279 F:      tools/power/acpi/
280
281 ACPI COMPONENT ARCHITECTURE (ACPICA)
282 M:      Robert Moore <robert.moore@intel.com>
283 M:      Lv Zheng <lv.zheng@intel.com>
284 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
285 L:      linux-acpi@vger.kernel.org
286 L:      devel@acpica.org
287 W:      https://acpica.org/
288 W:      https://github.com/acpica/acpica/
289 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
290 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
291 S:      Supported
292 F:      drivers/acpi/acpica/
293 F:      include/acpi/
294 F:      tools/power/acpi/
295
296 ACPI FAN DRIVER
297 M:      Zhang Rui <rui.zhang@intel.com>
298 L:      linux-acpi@vger.kernel.org
299 W:      https://01.org/linux-acpi
300 S:      Supported
301 F:      drivers/acpi/fan.c
302
303 ACPI THERMAL DRIVER
304 M:      Zhang Rui <rui.zhang@intel.com>
305 L:      linux-acpi@vger.kernel.org
306 W:      https://01.org/linux-acpi
307 S:      Supported
308 F:      drivers/acpi/*thermal*
309
310 ACPI VIDEO DRIVER
311 M:      Zhang Rui <rui.zhang@intel.com>
312 L:      linux-acpi@vger.kernel.org
313 W:      https://01.org/linux-acpi
314 S:      Supported
315 F:      drivers/acpi/video.c
316
317 ACPI WMI DRIVER
318 L:      platform-driver-x86@vger.kernel.org
319 S:      Orphan
320 F:      drivers/platform/x86/wmi.c
321
322 AD1889 ALSA SOUND DRIVER
323 M:      Thibaut Varene <T-Bone@parisc-linux.org>
324 W:      http://wiki.parisc-linux.org/AD1889
325 L:      linux-parisc@vger.kernel.org
326 S:      Maintained
327 F:      sound/pci/ad1889.*
328
329 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
330 M:      Michael Hennerich <michael.hennerich@analog.com>
331 W:      http://wiki.analog.com/AD5254
332 W:      http://ez.analog.com/community/linux-device-drivers
333 S:      Supported
334 F:      drivers/misc/ad525x_dpot.c
335
336 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
337 M:      Michael Hennerich <michael.hennerich@analog.com>
338 W:      http://wiki.analog.com/AD5398
339 W:      http://ez.analog.com/community/linux-device-drivers
340 S:      Supported
341 F:      drivers/regulator/ad5398.c
342
343 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
344 M:      Michael Hennerich <michael.hennerich@analog.com>
345 W:      http://wiki.analog.com/AD7142
346 W:      http://ez.analog.com/community/linux-device-drivers
347 S:      Supported
348 F:      drivers/input/misc/ad714x.c
349
350 AD7877 TOUCHSCREEN DRIVER
351 M:      Michael Hennerich <michael.hennerich@analog.com>
352 W:      http://wiki.analog.com/AD7877
353 W:      http://ez.analog.com/community/linux-device-drivers
354 S:      Supported
355 F:      drivers/input/touchscreen/ad7877.c
356
357 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
358 M:      Michael Hennerich <michael.hennerich@analog.com>
359 W:      http://wiki.analog.com/AD7879
360 W:      http://ez.analog.com/community/linux-device-drivers
361 S:      Supported
362 F:      drivers/input/touchscreen/ad7879.c
363
364 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
365 M:      Jiri Kosina <jikos@kernel.org>
366 S:      Maintained
367
368 ADM1025 HARDWARE MONITOR DRIVER
369 M:      Jean Delvare <jdelvare@suse.com>
370 L:      lm-sensors@lm-sensors.org
371 S:      Maintained
372 F:      Documentation/hwmon/adm1025
373 F:      drivers/hwmon/adm1025.c
374
375 ADM1029 HARDWARE MONITOR DRIVER
376 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
377 L:      lm-sensors@lm-sensors.org
378 S:      Maintained
379 F:      drivers/hwmon/adm1029.c
380
381 ADM8211 WIRELESS DRIVER
382 L:      linux-wireless@vger.kernel.org
383 W:      http://wireless.kernel.org/
384 S:      Orphan
385 F:      drivers/net/wireless/adm8211.*
386
387 ADP1653 FLASH CONTROLLER DRIVER
388 M:      Sakari Ailus <sakari.ailus@iki.fi>
389 L:      linux-media@vger.kernel.org
390 S:      Maintained
391 F:      drivers/media/i2c/adp1653.c
392 F:      include/media/adp1653.h
393
394 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
395 M:      Michael Hennerich <michael.hennerich@analog.com>
396 W:      http://wiki.analog.com/ADP5520
397 W:      http://ez.analog.com/community/linux-device-drivers
398 S:      Supported
399 F:      drivers/mfd/adp5520.c
400 F:      drivers/video/backlight/adp5520_bl.c
401 F:      drivers/leds/leds-adp5520.c
402 F:      drivers/gpio/gpio-adp5520.c
403 F:      drivers/input/keyboard/adp5520-keys.c
404
405 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
406 M:      Michael Hennerich <michael.hennerich@analog.com>
407 W:      http://wiki.analog.com/ADP5588
408 W:      http://ez.analog.com/community/linux-device-drivers
409 S:      Supported
410 F:      drivers/input/keyboard/adp5588-keys.c
411 F:      drivers/gpio/gpio-adp5588.c
412
413 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
414 M:      Michael Hennerich <michael.hennerich@analog.com>
415 W:      http://wiki.analog.com/ADP8860
416 W:      http://ez.analog.com/community/linux-device-drivers
417 S:      Supported
418 F:      drivers/video/backlight/adp8860_bl.c
419
420 ADS1015 HARDWARE MONITOR DRIVER
421 M:      Dirk Eibach <eibach@gdsys.de>
422 L:      lm-sensors@lm-sensors.org
423 S:      Maintained
424 F:      Documentation/hwmon/ads1015
425 F:      drivers/hwmon/ads1015.c
426 F:      include/linux/i2c/ads1015.h
427
428 ADT746X FAN DRIVER
429 M:      Colin Leroy <colin@colino.net>
430 S:      Maintained
431 F:      drivers/macintosh/therm_adt746x.c
432
433 ADT7475 HARDWARE MONITOR DRIVER
434 M:      Jean Delvare <jdelvare@suse.com>
435 L:      lm-sensors@lm-sensors.org
436 S:      Maintained
437 F:      Documentation/hwmon/adt7475
438 F:      drivers/hwmon/adt7475.c
439
440 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
441 M:      Michael Hennerich <michael.hennerich@analog.com>
442 W:      http://wiki.analog.com/ADXL345
443 W:      http://ez.analog.com/community/linux-device-drivers
444 S:      Supported
445 F:      drivers/input/misc/adxl34x.c
446
447 ADVANSYS SCSI DRIVER
448 M:      Matthew Wilcox <matthew@wil.cx>
449 M:      Hannes Reinecke <hare@suse.com>
450 L:      linux-scsi@vger.kernel.org
451 S:      Maintained
452 F:      Documentation/scsi/advansys.txt
453 F:      drivers/scsi/advansys.c
454
455 AEDSP16 DRIVER
456 M:      Riccardo Facchetti <fizban@tin.it>
457 S:      Maintained
458 F:      sound/oss/aedsp16.c
459
460 AF9013 MEDIA DRIVER
461 M:      Antti Palosaari <crope@iki.fi>
462 L:      linux-media@vger.kernel.org
463 W:      http://linuxtv.org/
464 W:      http://palosaari.fi/linux/
465 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
466 T:      git git://linuxtv.org/anttip/media_tree.git
467 S:      Maintained
468 F:      drivers/media/dvb-frontends/af9013*
469
470 AF9033 MEDIA DRIVER
471 M:      Antti Palosaari <crope@iki.fi>
472 L:      linux-media@vger.kernel.org
473 W:      http://linuxtv.org/
474 W:      http://palosaari.fi/linux/
475 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
476 T:      git git://linuxtv.org/anttip/media_tree.git
477 S:      Maintained
478 F:      drivers/media/dvb-frontends/af9033*
479
480 AFFS FILE SYSTEM
481 L:      linux-fsdevel@vger.kernel.org
482 S:      Orphan
483 F:      Documentation/filesystems/affs.txt
484 F:      fs/affs/
485
486 AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
487 M:      David Howells <dhowells@redhat.com>
488 L:      linux-afs@lists.infradead.org
489 S:      Supported
490 F:      fs/afs/
491 F:      include/net/af_rxrpc.h
492 F:      net/rxrpc/af_rxrpc.c
493
494 AGPGART DRIVER
495 M:      David Airlie <airlied@linux.ie>
496 T:      git git://people.freedesktop.org/~airlied/linux (part of drm maint)
497 S:      Maintained
498 F:      drivers/char/agp/
499 F:      include/linux/agp*
500 F:      include/uapi/linux/agp*
501
502 AHA152X SCSI DRIVER
503 M:      "Juergen E. Fischer" <fischer@norbit.de>
504 L:      linux-scsi@vger.kernel.org
505 S:      Maintained
506 F:      drivers/scsi/aha152x*
507 F:      drivers/scsi/pcmcia/aha152x*
508
509 AIC7XXX / AIC79XX SCSI DRIVER
510 M:      Hannes Reinecke <hare@suse.com>
511 L:      linux-scsi@vger.kernel.org
512 S:      Maintained
513 F:      drivers/scsi/aic7xxx/
514
515 AIMSLAB FM RADIO RECEIVER DRIVER
516 M:      Hans Verkuil <hverkuil@xs4all.nl>
517 L:      linux-media@vger.kernel.org
518 T:      git git://linuxtv.org/media_tree.git
519 W:      http://linuxtv.org
520 S:      Maintained
521 F:      drivers/media/radio/radio-aimslab*
522
523 AIO
524 M:      Benjamin LaHaise <bcrl@kvack.org>
525 L:      linux-aio@kvack.org
526 S:      Supported
527 F:      fs/aio.c
528 F:      include/linux/*aio*.h
529
530 AIRSPY MEDIA DRIVER
531 M:      Antti Palosaari <crope@iki.fi>
532 L:      linux-media@vger.kernel.org
533 W:      http://linuxtv.org/
534 W:      http://palosaari.fi/linux/
535 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
536 T:      git git://linuxtv.org/anttip/media_tree.git
537 S:      Maintained
538 F:      drivers/media/usb/airspy/
539
540 ALCATEL SPEEDTOUCH USB DRIVER
541 M:      Duncan Sands <duncan.sands@free.fr>
542 L:      linux-usb@vger.kernel.org
543 W:      http://www.linux-usb.org/SpeedTouch/
544 S:      Maintained
545 F:      drivers/usb/atm/speedtch.c
546 F:      drivers/usb/atm/usbatm.c
547
548 ALCHEMY AU1XX0 MMC DRIVER
549 M:      Manuel Lauss <manuel.lauss@gmail.com>
550 S:      Maintained
551 F:      drivers/mmc/host/au1xmmc.c
552
553 ALI1563 I2C DRIVER
554 M:      Rudolf Marek <r.marek@assembler.cz>
555 L:      linux-i2c@vger.kernel.org
556 S:      Maintained
557 F:      Documentation/i2c/busses/i2c-ali1563
558 F:      drivers/i2c/busses/i2c-ali1563.c
559
560 ALLWINNER SECURITY SYSTEM
561 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
562 L:      linux-crypto@vger.kernel.org
563 S:      Maintained
564 F:      drivers/crypto/sunxi-ss/
565
566 ALPHA PORT
567 M:      Richard Henderson <rth@twiddle.net>
568 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
569 M:      Matt Turner <mattst88@gmail.com>
570 S:      Odd Fixes
571 L:      linux-alpha@vger.kernel.org
572 F:      arch/alpha/
573
574 ALTERA MAILBOX DRIVER
575 M:      Ley Foon Tan <lftan@altera.com>
576 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
577 S:      Maintained
578 F:      drivers/mailbox/mailbox-altera.c
579
580 ALTERA PIO DRIVER
581 M:      Tien Hock Loh <thloh@altera.com>
582 L:      linux-gpio@vger.kernel.org
583 S:      Maintained
584 F:      drivers/gpio/gpio-altera.c
585
586 ALTERA TRIPLE SPEED ETHERNET DRIVER
587 M:      Vince Bridgers <vbridger@opensource.altera.com>
588 L:      netdev@vger.kernel.org
589 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
590 S:      Maintained
591 F:      drivers/net/ethernet/altera/
592
593 ALTERA UART/JTAG UART SERIAL DRIVERS
594 M:      Tobias Klauser <tklauser@distanz.ch>
595 L:      linux-serial@vger.kernel.org
596 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
597 S:      Maintained
598 F:      drivers/tty/serial/altera_uart.c
599 F:      drivers/tty/serial/altera_jtaguart.c
600 F:      include/linux/altera_uart.h
601 F:      include/linux/altera_jtaguart.h
602
603 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
604 M:      Tom Lendacky <thomas.lendacky@amd.com>
605 L:      linux-crypto@vger.kernel.org
606 S:      Supported
607 F:      drivers/crypto/ccp/
608 F:      include/linux/ccp.h
609
610 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
611 M:      Andreas Herrmann <herrmann.der.user@googlemail.com>
612 L:      lm-sensors@lm-sensors.org
613 S:      Maintained
614 F:      Documentation/hwmon/fam15h_power
615 F:      drivers/hwmon/fam15h_power.c
616
617 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
618 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 ARM MFM AND FLOPPY DRIVERS
812 M:      Ian Molton <spyro@f2s.com>
813 S:      Maintained
814 F:      arch/arm/lib/floppydma.S
815 F:      arch/arm/include/asm/floppy.h
816
817 ARM PMU PROFILING AND DEBUGGING
818 M:      Will Deacon <will.deacon@arm.com>
819 S:      Maintained
820 F:      arch/arm/kernel/perf_*
821 F:      arch/arm/oprofile/common.c
822 F:      arch/arm/kernel/hw_breakpoint.c
823 F:      arch/arm/include/asm/hw_breakpoint.h
824 F:      arch/arm/include/asm/perf_event.h
825 F:      drivers/perf/arm_pmu.c
826 F:      include/linux/perf/arm_pmu.h
827
828 ARM PORT
829 M:      Russell King <linux@arm.linux.org.uk>
830 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
831 W:      http://www.arm.linux.org.uk/
832 S:      Maintained
833 F:      arch/arm/
834
835 ARM SUB-ARCHITECTURES
836 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
837 S:      Maintained
838 F:      arch/arm/mach-*/
839 F:      arch/arm/plat-*/
840 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
841
842 ARM PRIMECELL AACI PL041 DRIVER
843 M:      Russell King <linux@arm.linux.org.uk>
844 S:      Maintained
845 F:      sound/arm/aaci.*
846
847 ARM PRIMECELL CLCD PL110 DRIVER
848 M:      Russell King <linux@arm.linux.org.uk>
849 S:      Maintained
850 F:      drivers/video/fbdev/amba-clcd.*
851
852 ARM PRIMECELL KMI PL050 DRIVER
853 M:      Russell King <linux@arm.linux.org.uk>
854 S:      Maintained
855 F:      drivers/input/serio/ambakmi.*
856 F:      include/linux/amba/kmi.h
857
858 ARM PRIMECELL MMCI PL180/1 DRIVER
859 M:      Russell King <linux@arm.linux.org.uk>
860 S:      Maintained
861 F:      drivers/mmc/host/mmci.*
862 F:      include/linux/amba/mmci.h
863
864 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
865 M:      Russell King <linux@arm.linux.org.uk>
866 S:      Maintained
867 F:      drivers/tty/serial/amba-pl01*.c
868 F:      include/linux/amba/serial.h
869
870 ARM PRIMECELL BUS SUPPORT
871 M:      Russell King <linux@arm.linux.org.uk>
872 S:      Maintained
873 F:      drivers/amba/
874 F:      include/linux/amba/bus.h
875
876 ARM/ADS SPHERE MACHINE SUPPORT
877 M:      Lennert Buytenhek <kernel@wantstofly.org>
878 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
879 S:      Maintained
880
881 ARM/AFEB9260 MACHINE SUPPORT
882 M:      Sergey Lapin <slapin@ossfans.org>
883 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
884 S:      Maintained
885
886 ARM/AJECO 1ARM MACHINE SUPPORT
887 M:      Lennert Buytenhek <kernel@wantstofly.org>
888 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
889 S:      Maintained
890
891 ARM/Allwinner A1X SoC support
892 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
893 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
894 S:      Maintained
895 N:      sun[x4567]i
896
897 ARM/Allwinner SoC Clock Support
898 M:      Emilio LĂ³pez <emilio@elopez.com.ar>
899 S:      Maintained
900 F:      drivers/clk/sunxi/
901
902 ARM/Amlogic MesonX SoC support
903 M:      Carlo Caione <carlo@caione.org>
904 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
905 S:      Maintained
906 F:      drivers/media/rc/meson-ir.c
907 N:      meson[x68]
908
909 ARM/Annapurna Labs ALPINE ARCHITECTURE
910 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
911 S:      Maintained
912 F:      arch/arm/mach-alpine/
913
914 ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES
915 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
916 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
917 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
918 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
919 W:      http://www.linux4sam.org
920 S:      Supported
921 F:      arch/arm/mach-at91/
922 F:      include/soc/at91/
923 F:      arch/arm/boot/dts/at91*.dts
924 F:      arch/arm/boot/dts/at91*.dtsi
925 F:      arch/arm/boot/dts/sama*.dts
926 F:      arch/arm/boot/dts/sama*.dtsi
927 F:      arch/arm/include/debug/at91.S
928
929 ARM/ATMEL AT91 Clock Support
930 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
931 S:      Maintained
932 F:      drivers/clk/at91
933
934 ARM/CALXEDA HIGHBANK ARCHITECTURE
935 M:      Rob Herring <robh@kernel.org>
936 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
937 S:      Maintained
938 F:      arch/arm/mach-highbank/
939
940 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
941 M:      Krzysztof Halasa <khalasa@piap.pl>
942 S:      Maintained
943 F:      arch/arm/mach-cns3xxx/
944
945 ARM/CAVIUM THUNDER NETWORK DRIVER
946 M:      Sunil Goutham <sgoutham@cavium.com>
947 M:      Robert Richter <rric@kernel.org>
948 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
949 S:      Supported
950 F:      drivers/net/ethernet/cavium/thunder/
951
952 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
953 M:      Alexander Shiyan <shc_work@mail.ru>
954 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
955 S:      Odd Fixes
956 N:      clps711x
957
958 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
959 M:      Hartley Sweeten <hsweeten@visionengravers.com>
960 M:      Ryan Mallon <rmallon@gmail.com>
961 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
962 S:      Maintained
963 F:      arch/arm/mach-ep93xx/
964 F:      arch/arm/mach-ep93xx/include/mach/
965
966 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
967 M:      Lennert Buytenhek <kernel@wantstofly.org>
968 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
969 S:      Maintained
970
971 ARM/CLKDEV SUPPORT
972 M:      Russell King <linux@arm.linux.org.uk>
973 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
974 S:      Maintained
975 F:      arch/arm/include/asm/clkdev.h
976 F:      drivers/clk/clkdev.c
977
978 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
979 M:      Mike Rapoport <mike@compulab.co.il>
980 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
981 S:      Maintained
982
983 ARM/CONTEC MICRO9 MACHINE SUPPORT
984 M:      Hubert Feurstein <hubert.feurstein@contec.at>
985 S:      Maintained
986 F:      arch/arm/mach-ep93xx/micro9.c
987
988 ARM/CORESIGHT FRAMEWORK AND DRIVERS
989 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
990 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
991 S:      Maintained
992 F:      drivers/hwtracing/coresight/*
993 F:      Documentation/trace/coresight.txt
994 F:      Documentation/devicetree/bindings/arm/coresight.txt
995 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
996
997 ARM/CORGI MACHINE SUPPORT
998 M:      Richard Purdie <rpurdie@rpsys.net>
999 S:      Maintained
1000
1001 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1002 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1003 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1004 T:      git git://github.com/ulli-kroll/linux.git
1005 S:      Maintained
1006 F:      arch/arm/mach-gemini/
1007 F:      drivers/rtc/rtc-gemini.c
1008
1009 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1010 M:      Barry Song <baohua@kernel.org>
1011 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1012 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1013 S:      Maintained
1014 F:      arch/arm/mach-prima2/
1015 F:      drivers/clk/sirf/
1016 F:      drivers/clocksource/timer-prima2.c
1017 F:      drivers/clocksource/timer-atlas7.c
1018 N:      [^a-z]sirf
1019
1020 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1021 M:      Baruch Siach <baruch@tkos.co.il>
1022 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1023 S:      Maintained
1024 F:      arch/arm/boot/dts/cx92755*
1025 N:      digicolor
1026
1027 ARM/EBSA110 MACHINE SUPPORT
1028 M:      Russell King <linux@arm.linux.org.uk>
1029 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1030 W:      http://www.arm.linux.org.uk/
1031 S:      Maintained
1032 F:      arch/arm/mach-ebsa110/
1033 F:      drivers/net/ethernet/amd/am79c961a.*
1034
1035 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1036 M:      Uwe Kleine-König <kernel@pengutronix.de>
1037 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1038 S:      Maintained
1039 N:      efm32
1040
1041 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1042 M:      Daniel Ribeiro <drwyrm@gmail.com>
1043 M:      Stefan Schmidt <stefan@openezx.org>
1044 M:      Harald Welte <laforge@openezx.org>
1045 L:      openezx-devel@lists.openezx.org (moderated for non-subscribers)
1046 W:      http://www.openezx.org/
1047 S:      Maintained
1048 T:      topgit git://git.openezx.org/openezx.git
1049 F:      arch/arm/mach-pxa/ezx.c
1050
1051 ARM/FARADAY FA526 PORT
1052 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1053 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1054 S:      Maintained
1055 T:      git git://git.berlios.de/gemini-board
1056 F:      arch/arm/mm/*-fa*
1057
1058 ARM/FOOTBRIDGE ARCHITECTURE
1059 M:      Russell King <linux@arm.linux.org.uk>
1060 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1061 W:      http://www.arm.linux.org.uk/
1062 S:      Maintained
1063 F:      arch/arm/include/asm/hardware/dec21285.h
1064 F:      arch/arm/mach-footbridge/
1065
1066 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1067 M:      Shawn Guo <shawnguo@kernel.org>
1068 M:      Sascha Hauer <kernel@pengutronix.de>
1069 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1070 S:      Maintained
1071 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1072 F:      arch/arm/mach-imx/
1073 F:      arch/arm/mach-mxs/
1074 F:      arch/arm/boot/dts/imx*
1075 F:      arch/arm/configs/imx*_defconfig
1076 F:      drivers/clk/imx/
1077 F:      include/soc/imx/
1078
1079 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1080 M:      Shawn Guo <shawnguo@kernel.org>
1081 M:      Sascha Hauer <kernel@pengutronix.de>
1082 R:      Stefan Agner <stefan@agner.ch>
1083 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1084 S:      Maintained
1085 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1086 F:      arch/arm/mach-imx/*vf610*
1087 F:      arch/arm/boot/dts/vf*
1088
1089 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1090 M:      Lennert Buytenhek <kernel@wantstofly.org>
1091 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1092 S:      Maintained
1093
1094 ARM/GUMSTIX MACHINE SUPPORT
1095 M:      Steve Sakoman <sakoman@gmail.com>
1096 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1097 S:      Maintained
1098
1099 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1100 M:      Philipp Zabel <philipp.zabel@gmail.com>
1101 M:      Paul Parsons <lost.distance@yahoo.com>
1102 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1103 S:      Maintained
1104 F:      arch/arm/mach-pxa/hx4700.c
1105 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1106 F:      sound/soc/pxa/hx4700.c
1107
1108 ARM/HISILICON SOC SUPPORT
1109 M:      Wei Xu <xuwei5@hisilicon.com>
1110 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1111 W:      http://www.hisilicon.com
1112 S:      Supported
1113 T:      git git://github.com/hisilicon/linux-hisi.git
1114 F:      arch/arm/mach-hisi/
1115
1116 ARM/HP JORNADA 7XX MACHINE SUPPORT
1117 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1118 W:      www.jlime.com
1119 S:      Maintained
1120 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1121 F:      arch/arm/mach-sa1100/jornada720.c
1122 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1123
1124 ARM/IGEP MACHINE SUPPORT
1125 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1126 M:      Javier Martinez Canillas <javier@dowhile0.org>
1127 L:      linux-omap@vger.kernel.org
1128 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1129 S:      Maintained
1130 F:      arch/arm/boot/dts/omap3-igep*
1131
1132 ARM/INCOME PXA270 SUPPORT
1133 M:      Marek Vasut <marek.vasut@gmail.com>
1134 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1135 S:      Maintained
1136 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1137
1138 ARM/INTEL IOP32X ARM ARCHITECTURE
1139 M:      Lennert Buytenhek <kernel@wantstofly.org>
1140 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1141 S:      Maintained
1142
1143 ARM/INTEL IOP33X ARM ARCHITECTURE
1144 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1145 S:      Orphan
1146
1147 ARM/INTEL IOP13XX ARM ARCHITECTURE
1148 M:      Lennert Buytenhek <kernel@wantstofly.org>
1149 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1150 S:      Maintained
1151
1152 ARM/INTEL IQ81342EX MACHINE SUPPORT
1153 M:      Lennert Buytenhek <kernel@wantstofly.org>
1154 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1155 S:      Maintained
1156
1157 ARM/INTEL IXDP2850 MACHINE SUPPORT
1158 M:      Lennert Buytenhek <kernel@wantstofly.org>
1159 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1160 S:      Maintained
1161
1162 ARM/INTEL IXP4XX ARM ARCHITECTURE
1163 M:      Imre Kaloz <kaloz@openwrt.org>
1164 M:      Krzysztof Halasa <khalasa@piap.pl>
1165 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1166 S:      Maintained
1167 F:      arch/arm/mach-ixp4xx/
1168
1169 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1170 M:      Jonathan Cameron <jic23@cam.ac.uk>
1171 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1172 S:      Maintained
1173 F:      arch/arm/mach-pxa/stargate2.c
1174 F:      drivers/pcmcia/pxa2xx_stargate2.c
1175
1176 ARM/INTEL XSC3 (MANZANO) ARM CORE
1177 M:      Lennert Buytenhek <kernel@wantstofly.org>
1178 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1179 S:      Maintained
1180
1181 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1182 M:      Lennert Buytenhek <kernel@wantstofly.org>
1183 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1184 S:      Maintained
1185
1186 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
1187 M:      Santosh Shilimkar <ssantosh@kernel.org>
1188 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1189 S:      Maintained
1190 F:      arch/arm/mach-keystone/
1191 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
1192
1193 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
1194 M:      Santosh Shilimkar <ssantosh@kernel.org>
1195 L:      linux-kernel@vger.kernel.org
1196 S:      Maintained
1197 F:      drivers/clk/keystone/
1198
1199 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
1200 M:      Santosh Shilimkar <ssantosh@kernel.org>
1201 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1202 L:      linux-kernel@vger.kernel.org
1203 S:      Maintained
1204 F:      drivers/clocksource/timer-keystone.c
1205
1206 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
1207 M:      Santosh Shilimkar <ssantosh@kernel.org>
1208 L:      linux-kernel@vger.kernel.org
1209 S:      Maintained
1210 F:      drivers/power/reset/keystone-reset.c
1211
1212 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
1213 M:      Santosh Shilimkar <ssantosh@kernel.org>
1214 L:      linux-kernel@vger.kernel.org
1215 S:      Maintained
1216 F:      drivers/memory/*emif*
1217
1218 ARM/LOGICPD PXA270 MACHINE SUPPORT
1219 M:      Lennert Buytenhek <kernel@wantstofly.org>
1220 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1221 S:      Maintained
1222
1223 ARM/LPC18XX ARCHITECTURE
1224 M:      Joachim Eastwood <manabian@gmail.com>
1225 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1226 S:      Maintained
1227 N:      lpc18xx
1228
1229 ARM/MAGICIAN MACHINE SUPPORT
1230 M:      Philipp Zabel <philipp.zabel@gmail.com>
1231 S:      Maintained
1232
1233 ARM/Marvell Kirkwood and Armada 370, 375, 38x, XP SOC support
1234 M:      Jason Cooper <jason@lakedaemon.net>
1235 M:      Andrew Lunn <andrew@lunn.ch>
1236 M:      Gregory Clement <gregory.clement@free-electrons.com>
1237 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1238 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1239 S:      Maintained
1240 F:      arch/arm/mach-mvebu/
1241 F:      drivers/rtc/rtc-armada38x.c
1242 F:      arch/arm/boot/dts/armada*
1243 F:      arch/arm/boot/dts/kirkwood*
1244
1245
1246 ARM/Marvell Berlin SoC support
1247 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1248 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1249 S:      Maintained
1250 F:      arch/arm/mach-berlin/
1251 F:      arch/arm/boot/dts/berlin*
1252
1253
1254 ARM/Marvell Dove/MV78xx0/Orion SOC support
1255 M:      Jason Cooper <jason@lakedaemon.net>
1256 M:      Andrew Lunn <andrew@lunn.ch>
1257 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1258 M:      Gregory Clement <gregory.clement@free-electrons.com>
1259 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1260 S:      Maintained
1261 F:      arch/arm/mach-dove/
1262 F:      arch/arm/mach-mv78xx0/
1263 F:      arch/arm/mach-orion5x/
1264 F:      arch/arm/plat-orion/
1265 F:      arch/arm/boot/dts/dove*
1266 F:      arch/arm/boot/dts/orion5x*
1267
1268
1269 ARM/Orion SoC/Technologic Systems TS-78xx platform support
1270 M:      Alexander Clouter <alex@digriz.org.uk>
1271 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1272 W:      http://www.digriz.org.uk/ts78xx/kernel
1273 S:      Maintained
1274 F:      arch/arm/mach-orion5x/ts78xx-*
1275
1276 ARM/Mediatek RTC DRIVER
1277 M:      Eddie Huang <eddie.huang@mediatek.com>
1278 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1279 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1280 S:      Maintained
1281 F:      drivers/rtc/rtc-mt6397.c
1282
1283 ARM/Mediatek SoC support
1284 M:      Matthias Brugger <matthias.bgg@gmail.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:      arch/arm/boot/dts/mt6*
1289 F:      arch/arm/boot/dts/mt8*
1290 F:      arch/arm/mach-mediatek/
1291 N:      mtk
1292 K:      mediatek
1293
1294 ARM/MICREL KS8695 ARCHITECTURE
1295 M:      Greg Ungerer <gerg@uclinux.org>
1296 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1297 F:      arch/arm/mach-ks8695/
1298 S:      Odd Fixes
1299
1300 ARM/MIOA701 MACHINE SUPPORT
1301 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1302 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1303 F:      arch/arm/mach-pxa/mioa701.c
1304 S:      Maintained
1305
1306 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1307 M:      Michael Petchkovsky <mkpetch@internode.on.net>
1308 S:      Maintained
1309
1310 ARM/NOMADIK ARCHITECTURE
1311 M:      Alessandro Rubini <rubini@unipv.it>
1312 M:      Linus Walleij <linus.walleij@linaro.org>
1313 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1314 S:      Maintained
1315 F:      arch/arm/mach-nomadik/
1316 F:      drivers/pinctrl/nomadik/
1317 F:      drivers/i2c/busses/i2c-nomadik.c
1318 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
1319
1320 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
1321 M:      Nelson Castillo <arhuaco@freaks-unidos.net>
1322 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
1323 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
1324 S:      Supported
1325
1326 ARM/TOSA MACHINE SUPPORT
1327 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1328 M:      Dirk Opfer <dirk@opfer-online.de>
1329 S:      Maintained
1330
1331 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
1332 M:      Marek Vasut <marek.vasut@gmail.com>
1333 L:      linux-arm-kernel@lists.infradead.org
1334 W:      http://hackndev.com
1335 S:      Maintained
1336 F:      arch/arm/mach-pxa/include/mach/palmtx.h
1337 F:      arch/arm/mach-pxa/palmtx.c
1338 F:      arch/arm/mach-pxa/include/mach/palmt5.h
1339 F:      arch/arm/mach-pxa/palmt5.c
1340 F:      arch/arm/mach-pxa/include/mach/palmld.h
1341 F:      arch/arm/mach-pxa/palmld.c
1342 F:      arch/arm/mach-pxa/include/mach/palmte2.h
1343 F:      arch/arm/mach-pxa/palmte2.c
1344 F:      arch/arm/mach-pxa/include/mach/palmtc.h
1345 F:      arch/arm/mach-pxa/palmtc.c
1346
1347 ARM/PALM TREO SUPPORT
1348 M:      Tomas Cech <sleep_walker@suse.com>
1349 L:      linux-arm-kernel@lists.infradead.org
1350 W:      http://hackndev.com
1351 S:      Maintained
1352 F:      arch/arm/mach-pxa/include/mach/palmtreo.h
1353 F:      arch/arm/mach-pxa/palmtreo.c
1354
1355 ARM/PALMZ72 SUPPORT
1356 M:      Sergey Lapin <slapin@ossfans.org>
1357 L:      linux-arm-kernel@lists.infradead.org
1358 W:      http://hackndev.com
1359 S:      Maintained
1360 F:      arch/arm/mach-pxa/include/mach/palmz72.h
1361 F:      arch/arm/mach-pxa/palmz72.c
1362
1363 ARM/PLEB SUPPORT
1364 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
1365 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1366 S:      Maintained
1367
1368 ARM/PT DIGITAL BOARD PORT
1369 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
1370 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1371 W:      http://www.arm.linux.org.uk/
1372 S:      Maintained
1373
1374 ARM/QUALCOMM SUPPORT
1375 M:      Kumar Gala <galak@codeaurora.org>
1376 M:      Andy Gross <agross@codeaurora.org>
1377 M:      David Brown <davidb@codeaurora.org>
1378 L:      linux-arm-msm@vger.kernel.org
1379 L:      linux-soc@vger.kernel.org
1380 S:      Maintained
1381 F:      arch/arm/mach-qcom/
1382 F:      drivers/soc/qcom/
1383 F:      drivers/tty/serial/msm_serial.h
1384 F:      drivers/tty/serial/msm_serial.c
1385 F:      drivers/*/pm8???-*
1386 F:      drivers/mfd/ssbi.c
1387 F:      drivers/firmware/qcom_scm.c
1388 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git
1389
1390 ARM/RADISYS ENP2611 MACHINE SUPPORT
1391 M:      Lennert Buytenhek <kernel@wantstofly.org>
1392 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1393 S:      Maintained
1394
1395 ARM/RISCPC ARCHITECTURE
1396 M:      Russell King <linux@arm.linux.org.uk>
1397 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1398 W:      http://www.arm.linux.org.uk/
1399 S:      Maintained
1400 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
1401 F:      arch/arm/include/asm/hardware/ioc.h
1402 F:      arch/arm/include/asm/hardware/iomd.h
1403 F:      arch/arm/include/asm/hardware/memc.h
1404 F:      arch/arm/mach-rpc/
1405 F:      drivers/net/ethernet/8390/etherh.c
1406 F:      drivers/net/ethernet/i825xx/ether1*
1407 F:      drivers/net/ethernet/seeq/ether3*
1408 F:      drivers/scsi/arm/
1409
1410 ARM/Rockchip SoC support
1411 M:      Heiko Stuebner <heiko@sntech.de>
1412 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1413 L:      linux-rockchip@lists.infradead.org
1414 S:      Maintained
1415 F:      arch/arm/boot/dts/rk3*
1416 F:      arch/arm/mach-rockchip/
1417 F:      drivers/clk/rockchip/
1418 F:      drivers/i2c/busses/i2c-rk3x.c
1419 F:      drivers/*/*rockchip*
1420 F:      drivers/*/*/*rockchip*
1421 F:      sound/soc/rockchip/
1422 N:      rockchip
1423
1424 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
1425 M:      Kukjin Kim <kgene@kernel.org>
1426 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
1427 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1428 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1429 S:      Maintained
1430 F:      arch/arm/boot/dts/s3c*
1431 F:      arch/arm/boot/dts/exynos*
1432 F:      arch/arm64/boot/dts/exynos/
1433 F:      arch/arm/plat-samsung/
1434 F:      arch/arm/mach-s3c24*/
1435 F:      arch/arm/mach-s3c64xx/
1436 F:      arch/arm/mach-s5p*/
1437 F:      arch/arm/mach-exynos*/
1438 F:      drivers/*/*s3c2410*
1439 F:      drivers/*/*/*s3c2410*
1440 F:      drivers/spi/spi-s3c*
1441 F:      sound/soc/samsung/*
1442 N:      exynos
1443
1444 ARM/SAMSUNG MOBILE MACHINE SUPPORT
1445 M:      Kyungmin Park <kyungmin.park@samsung.com>
1446 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1447 S:      Maintained
1448 F:      arch/arm/mach-s5pv210/
1449
1450 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1451 M:      Kyungmin Park <kyungmin.park@samsung.com>
1452 M:      Kamil Debski <k.debski@samsung.com>
1453 L:      linux-arm-kernel@lists.infradead.org
1454 L:      linux-media@vger.kernel.org
1455 S:      Maintained
1456 F:      drivers/media/platform/s5p-g2d/
1457
1458 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1459 M:      Kyungmin Park <kyungmin.park@samsung.com>
1460 M:      Kamil Debski <k.debski@samsung.com>
1461 M:      Jeongtae Park <jtp.park@samsung.com>
1462 L:      linux-arm-kernel@lists.infradead.org
1463 L:      linux-media@vger.kernel.org
1464 S:      Maintained
1465 F:      arch/arm/plat-samsung/s5p-dev-mfc.c
1466 F:      drivers/media/platform/s5p-mfc/
1467
1468 ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1469 M:      Kyungmin Park <kyungmin.park@samsung.com>
1470 M:      Tomasz Stanislawski <t.stanislaws@samsung.com>
1471 L:      linux-arm-kernel@lists.infradead.org
1472 L:      linux-media@vger.kernel.org
1473 S:      Maintained
1474 F:      drivers/media/platform/s5p-tv/
1475
1476 ARM/SHMOBILE ARM ARCHITECTURE
1477 M:      Simon Horman <horms@verge.net.au>
1478 M:      Magnus Damm <magnus.damm@gmail.com>
1479 L:      linux-sh@vger.kernel.org
1480 W:      http://oss.renesas.com
1481 Q:      http://patchwork.kernel.org/project/linux-sh/list/
1482 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1483 S:      Supported
1484 F:      arch/arm/boot/dts/emev2*
1485 F:      arch/arm/boot/dts/r7s*
1486 F:      arch/arm/boot/dts/r8a*
1487 F:      arch/arm/boot/dts/sh*
1488 F:      arch/arm/configs/bockw_defconfig
1489 F:      arch/arm/configs/marzen_defconfig
1490 F:      arch/arm/configs/shmobile_defconfig
1491 F:      arch/arm/include/debug/renesas-scif.S
1492 F:      arch/arm/mach-shmobile/
1493 F:      drivers/sh/
1494
1495 ARM/SOCFPGA ARCHITECTURE
1496 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1497 S:      Maintained
1498 F:      arch/arm/mach-socfpga/
1499 F:      arch/arm/boot/dts/socfpga*
1500 F:      arch/arm/configs/socfpga_defconfig
1501 W:      http://www.rocketboards.org
1502 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
1503
1504 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1505 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1506 S:      Maintained
1507 F:      drivers/clk/socfpga/
1508
1509 ARM/SOCFPGA EDAC SUPPORT
1510 M:      Thor Thayer <tthayer@opensource.altera.com>
1511 S:      Maintained
1512 F:      drivers/edac/altera_edac.
1513
1514 ARM/STI ARCHITECTURE
1515 M:      Srinivas Kandagatla <srinivas.kandagatla@gmail.com>
1516 M:      Maxime Coquelin <maxime.coquelin@st.com>
1517 M:      Patrice Chotard <patrice.chotard@st.com>
1518 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1519 L:      kernel@stlinux.com
1520 W:      http://www.stlinux.com
1521 S:      Maintained
1522 F:      arch/arm/mach-sti/
1523 F:      arch/arm/boot/dts/sti*
1524 F:      drivers/clocksource/arm_global_timer.c
1525 F:      drivers/clocksource/clksrc_st_lpc.c
1526 F:      drivers/i2c/busses/i2c-st.c
1527 F:      drivers/media/rc/st_rc.c
1528 F:      drivers/media/platform/sti/c8sectpfe/
1529 F:      drivers/mmc/host/sdhci-st.c
1530 F:      drivers/phy/phy-miphy28lp.c
1531 F:      drivers/phy/phy-miphy365x.c
1532 F:      drivers/phy/phy-stih407-usb.c
1533 F:      drivers/phy/phy-stih41x-usb.c
1534 F:      drivers/pinctrl/pinctrl-st.c
1535 F:      drivers/reset/sti/
1536 F:      drivers/rtc/rtc-st-lpc.c
1537 F:      drivers/tty/serial/st-asc.c
1538 F:      drivers/usb/dwc3/dwc3-st.c
1539 F:      drivers/usb/host/ehci-st.c
1540 F:      drivers/usb/host/ohci-st.c
1541 F:      drivers/watchdog/st_lpc_wdt.c
1542 F:      drivers/ata/ahci_st.c
1543
1544 ARM/STM32 ARCHITECTURE
1545 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
1546 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1547 S:      Maintained
1548 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git
1549 N:      stm32
1550 F:      drivers/clocksource/armv7m_systick.c
1551
1552 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
1553 M:      Lennert Buytenhek <kernel@wantstofly.org>
1554 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1555 S:      Maintained
1556
1557 ARM/TETON BGA MACHINE SUPPORT
1558 M:      "Mark F. Brown" <mark.brown314@gmail.com>
1559 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1560 S:      Maintained
1561
1562 ARM/THECUS N2100 MACHINE SUPPORT
1563 M:      Lennert Buytenhek <kernel@wantstofly.org>
1564 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1565 S:      Maintained
1566
1567 ARM/NUVOTON W90X900 ARM ARCHITECTURE
1568 M:      Wan ZongShun <mcuos.com@gmail.com>
1569 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1570 W:      http://www.mcuos.com
1571 S:      Maintained
1572 F:      arch/arm/mach-w90x900/
1573 F:      drivers/input/keyboard/w90p910_keypad.c
1574 F:      drivers/input/touchscreen/w90p910_ts.c
1575 F:      drivers/watchdog/nuc900_wdt.c
1576 F:      drivers/net/ethernet/nuvoton/w90p910_ether.c
1577 F:      drivers/mtd/nand/nuc900_nand.c
1578 F:      drivers/rtc/rtc-nuc900.c
1579 F:      drivers/spi/spi-nuc900.c
1580 F:      drivers/usb/host/ehci-w90x900.c
1581 F:      drivers/video/fbdev/nuc900fb.c
1582
1583 ARM/U300 MACHINE SUPPORT
1584 M:      Linus Walleij <linus.walleij@linaro.org>
1585 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1586 S:      Supported
1587 F:      arch/arm/mach-u300/
1588 F:      drivers/clocksource/timer-u300.c
1589 F:      drivers/i2c/busses/i2c-stu300.c
1590 F:      drivers/rtc/rtc-coh901331.c
1591 F:      drivers/watchdog/coh901327_wdt.c
1592 F:      drivers/dma/coh901318*
1593 F:      drivers/mfd/ab3100*
1594 F:      drivers/rtc/rtc-ab3100.c
1595 F:      drivers/rtc/rtc-coh901331.c
1596 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1597
1598 ARM/UNIPHIER ARCHITECTURE
1599 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
1600 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1601 S:      Maintained
1602 F:      arch/arm/boot/dts/uniphier*
1603 F:      arch/arm/mach-uniphier/
1604 F:      drivers/pinctrl/uniphier/
1605 F:      drivers/tty/serial/8250/8250_uniphier.c
1606 N:      uniphier
1607
1608 ARM/Ux500 ARM ARCHITECTURE
1609 M:      Linus Walleij <linus.walleij@linaro.org>
1610 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1611 S:      Maintained
1612 F:      arch/arm/mach-ux500/
1613 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
1614 F:      drivers/dma/ste_dma40*
1615 F:      drivers/hwspinlock/u8500_hsem.c
1616 F:      drivers/mfd/abx500*
1617 F:      drivers/mfd/ab8500*
1618 F:      drivers/mfd/dbx500*
1619 F:      drivers/mfd/db8500*
1620 F:      drivers/pinctrl/nomadik/pinctrl-ab*
1621 F:      drivers/pinctrl/nomadik/pinctrl-nomadik*
1622 F:      drivers/rtc/rtc-ab8500.c
1623 F:      drivers/rtc/rtc-pl031.c
1624 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1625
1626 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
1627 M:      Ulf Hansson <ulf.hansson@linaro.org>
1628 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1629 T:      git git://git.linaro.org/people/ulfh/clk.git
1630 S:      Maintained
1631 F:      drivers/clk/ux500/
1632 F:      include/linux/platform_data/clk-ux500.h
1633
1634 ARM/VERSATILE EXPRESS PLATFORM
1635 M:      Liviu Dudau <liviu.dudau@arm.com>
1636 M:      Sudeep Holla <sudeep.holla@arm.com>
1637 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
1638 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1639 S:      Maintained
1640 F:      arch/arm/boot/dts/vexpress*
1641 F:      arch/arm64/boot/dts/arm/vexpress*
1642 F:      arch/arm/mach-vexpress/
1643 F:      */*/vexpress*
1644 F:      */*/*/vexpress*
1645 F:      drivers/clk/versatile/clk-vexpress-osc.c
1646 F:      drivers/clocksource/versatile.c
1647
1648 ARM/VFP SUPPORT
1649 M:      Russell King <linux@arm.linux.org.uk>
1650 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1651 W:      http://www.arm.linux.org.uk/
1652 S:      Maintained
1653 F:      arch/arm/vfp/
1654
1655 ARM/VOIPAC PXA270 SUPPORT
1656 M:      Marek Vasut <marek.vasut@gmail.com>
1657 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1658 S:      Maintained
1659 F:      arch/arm/mach-pxa/vpac270.c
1660 F:      arch/arm/mach-pxa/include/mach/vpac270.h
1661
1662 ARM/VT8500 ARM ARCHITECTURE
1663 M:      Tony Prisk <linux@prisktech.co.nz>
1664 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1665 S:      Maintained
1666 F:      arch/arm/mach-vt8500/
1667 F:      drivers/clocksource/vt8500_timer.c
1668 F:      drivers/i2c/busses/i2c-wmt.c
1669 F:      drivers/mmc/host/wmt-sdmmc.c
1670 F:      drivers/pwm/pwm-vt8500.c
1671 F:      drivers/rtc/rtc-vt8500.c
1672 F:      drivers/tty/serial/vt8500_serial.c
1673 F:      drivers/usb/host/ehci-platform.c
1674 F:      drivers/usb/host/uhci-platform.c
1675 F:      drivers/video/fbdev/vt8500lcdfb.*
1676 F:      drivers/video/fbdev/wm8505fb*
1677 F:      drivers/video/fbdev/wmt_ge_rops.*
1678
1679 ARM/ZIPIT Z2 SUPPORT
1680 M:      Marek Vasut <marek.vasut@gmail.com>
1681 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1682 S:      Maintained
1683 F:      arch/arm/mach-pxa/z2.c
1684 F:      arch/arm/mach-pxa/include/mach/z2.h
1685
1686 ARM/ZTE ARCHITECTURE
1687 M:      Jun Nie <jun.nie@linaro.org>
1688 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1689 S:      Maintained
1690 F:      arch/arm/mach-zx/
1691 F:      drivers/clk/zte/
1692 F:      Documentation/devicetree/bindings/arm/zte.txt
1693 F:      Documentation/devicetree/bindings/clock/zx296702-clk.txt
1694
1695 ARM/ZYNQ ARCHITECTURE
1696 M:      Michal Simek <michal.simek@xilinx.com>
1697 R:      Sören Brinkmann <soren.brinkmann@xilinx.com>
1698 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1699 W:      http://wiki.xilinx.com
1700 T:      git https://github.com/Xilinx/linux-xlnx.git
1701 S:      Supported
1702 F:      arch/arm/mach-zynq/
1703 F:      drivers/cpuidle/cpuidle-zynq.c
1704 F:      drivers/block/xsysace.c
1705 N:      zynq
1706 N:      xilinx
1707 F:      drivers/clocksource/cadence_ttc_timer.c
1708 F:      drivers/i2c/busses/i2c-cadence.c
1709 F:      drivers/mmc/host/sdhci-of-arasan.c
1710 F:      drivers/edac/synopsys_edac.c
1711
1712 ARM SMMU DRIVERS
1713 M:      Will Deacon <will.deacon@arm.com>
1714 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1715 S:      Maintained
1716 F:      drivers/iommu/arm-smmu.c
1717 F:      drivers/iommu/arm-smmu-v3.c
1718 F:      drivers/iommu/io-pgtable-arm.c
1719
1720 ARM64 PORT (AARCH64 ARCHITECTURE)
1721 M:      Catalin Marinas <catalin.marinas@arm.com>
1722 M:      Will Deacon <will.deacon@arm.com>
1723 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1724 S:      Maintained
1725 F:      arch/arm64/
1726 F:      Documentation/arm64/
1727
1728 AS3645A LED FLASH CONTROLLER DRIVER
1729 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1730 L:      linux-media@vger.kernel.org
1731 T:      git git://linuxtv.org/media_tree.git
1732 S:      Maintained
1733 F:      drivers/media/i2c/as3645a.c
1734 F:      include/media/as3645a.h
1735
1736 ASC7621 HARDWARE MONITOR DRIVER
1737 M:      George Joseph <george.joseph@fairview5.com>
1738 L:      lm-sensors@lm-sensors.org
1739 S:      Maintained
1740 F:      Documentation/hwmon/asc7621
1741 F:      drivers/hwmon/asc7621.c
1742
1743 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
1744 M:      Corentin Chary <corentin.chary@gmail.com>
1745 L:      acpi4asus-user@lists.sourceforge.net
1746 L:      platform-driver-x86@vger.kernel.org
1747 W:      http://acpi4asus.sf.net
1748 S:      Maintained
1749 F:      drivers/platform/x86/asus*.c
1750 F:      drivers/platform/x86/eeepc*.c
1751
1752 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
1753 R:      Dan Williams <dan.j.williams@intel.com>
1754 W:      http://sourceforge.net/projects/xscaleiop
1755 S:      Odd fixes
1756 F:      Documentation/crypto/async-tx-api.txt
1757 F:      crypto/async_tx/
1758 F:      drivers/dma/
1759 F:      include/linux/dmaengine.h
1760 F:      include/linux/async_tx.h
1761
1762 AT24 EEPROM DRIVER
1763 M:      Wolfram Sang <wsa@the-dreams.de>
1764 L:      linux-i2c@vger.kernel.org
1765 S:      Maintained
1766 F:      drivers/misc/eeprom/at24.c
1767 F:      include/linux/platform_data/at24.h
1768
1769 ATA OVER ETHERNET (AOE) DRIVER
1770 M:      "Ed L. Cashin" <ed.cashin@acm.org>
1771 W:      http://www.openaoe.org/
1772 S:      Supported
1773 F:      Documentation/aoe/
1774 F:      drivers/block/aoe/
1775
1776 ATHEROS ATH GENERIC UTILITIES
1777 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1778 L:      linux-wireless@vger.kernel.org
1779 S:      Supported
1780 F:      drivers/net/wireless/ath/*
1781
1782 ATHEROS ATH5K WIRELESS DRIVER
1783 M:      Jiri Slaby <jirislaby@gmail.com>
1784 M:      Nick Kossifidis <mickflemm@gmail.com>
1785 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1786 L:      linux-wireless@vger.kernel.org
1787 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
1788 S:      Maintained
1789 F:      drivers/net/wireless/ath/ath5k/
1790
1791 ATHEROS ATH6KL WIRELESS DRIVER
1792 M:      Kalle Valo <kvalo@qca.qualcomm.com>
1793 L:      linux-wireless@vger.kernel.org
1794 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
1795 T:      git git://github.com/kvalo/ath.git
1796 S:      Supported
1797 F:      drivers/net/wireless/ath/ath6kl/
1798
1799 WILOCITY WIL6210 WIRELESS DRIVER
1800 M:      Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com>
1801 L:      linux-wireless@vger.kernel.org
1802 L:      wil6210@qca.qualcomm.com
1803 S:      Supported
1804 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
1805 F:      drivers/net/wireless/ath/wil6210/
1806 F:      include/uapi/linux/wil6210_uapi.h
1807
1808 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1809 M:      Christian Lamparter <chunkeey@googlemail.com>
1810 L:      linux-wireless@vger.kernel.org
1811 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
1812 S:      Maintained
1813 F:      drivers/net/wireless/ath/carl9170/
1814
1815 ATK0110 HWMON DRIVER
1816 M:      Luca Tettamanti <kronos.it@gmail.com>
1817 L:      lm-sensors@lm-sensors.org
1818 S:      Maintained
1819 F:      drivers/hwmon/asus_atk0110.c
1820
1821 ATI_REMOTE2 DRIVER
1822 M:      Ville Syrjala <syrjala@sci.fi>
1823 S:      Maintained
1824 F:      drivers/input/misc/ati_remote2.c
1825
1826 ATLX ETHERNET DRIVERS
1827 M:      Jay Cliburn <jcliburn@gmail.com>
1828 M:      Chris Snook <chris.snook@gmail.com>
1829 L:      netdev@vger.kernel.org
1830 W:      http://sourceforge.net/projects/atl1
1831 W:      http://atl1.sourceforge.net
1832 S:      Maintained
1833 F:      drivers/net/ethernet/atheros/
1834
1835 ATM
1836 M:      Chas Williams <3chas3@gmail.com>
1837 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
1838 L:      netdev@vger.kernel.org
1839 W:      http://linux-atm.sourceforge.net
1840 S:      Maintained
1841 F:      drivers/atm/
1842 F:      include/linux/atm*
1843 F:      include/uapi/linux/atm*
1844
1845 ATMEL AT91 / AT32 MCI DRIVER
1846 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1847 S:      Maintained
1848 F:      drivers/mmc/host/atmel-mci.c
1849 F:      drivers/mmc/host/atmel-mci-regs.h
1850
1851 ATMEL AT91 / AT32 SERIAL DRIVER
1852 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1853 S:      Supported
1854 F:      drivers/tty/serial/atmel_serial.c
1855
1856 ATMEL Audio ALSA driver
1857 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1858 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1859 S:      Supported
1860 F:      sound/soc/atmel
1861
1862 ATMEL DMA DRIVER
1863 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1864 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1865 S:      Supported
1866 F:      drivers/dma/at_hdmac.c
1867 F:      drivers/dma/at_hdmac_regs.h
1868 F:      include/linux/platform_data/dma-atmel.h
1869
1870 ATMEL XDMA DRIVER
1871 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1872 L:      linux-arm-kernel@lists.infradead.org
1873 L:      dmaengine@vger.kernel.org
1874 S:      Supported
1875 F:      drivers/dma/at_xdmac.c
1876
1877 ATMEL I2C DRIVER
1878 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1879 L:      linux-i2c@vger.kernel.org
1880 S:      Supported
1881 F:      drivers/i2c/busses/i2c-at91.c
1882
1883 ATMEL ISI DRIVER
1884 M:      Josh Wu <josh.wu@atmel.com>
1885 L:      linux-media@vger.kernel.org
1886 S:      Supported
1887 F:      drivers/media/platform/soc_camera/atmel-isi.c
1888 F:      include/media/atmel-isi.h
1889
1890 ATMEL LCDFB DRIVER
1891 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1892 L:      linux-fbdev@vger.kernel.org
1893 S:      Maintained
1894 F:      drivers/video/fbdev/atmel_lcdfb.c
1895 F:      include/video/atmel_lcdc.h
1896
1897 ATMEL MACB ETHERNET DRIVER
1898 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1899 S:      Supported
1900 F:      drivers/net/ethernet/cadence/
1901
1902 ATMEL NAND DRIVER
1903 M:      Josh Wu <josh.wu@atmel.com>
1904 L:      linux-mtd@lists.infradead.org
1905 S:      Supported
1906 F:      drivers/mtd/nand/atmel_nand*
1907
1908 ATMEL SDMMC DRIVER
1909 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1910 L:      linux-mmc@vger.kernel.org
1911 S:      Supported
1912 F:      drivers/mmc/host/sdhci-of-at91.c
1913
1914 ATMEL SPI DRIVER
1915 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1916 S:      Supported
1917 F:      drivers/spi/spi-atmel.*
1918
1919 ATMEL SSC DRIVER
1920 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1921 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1922 S:      Supported
1923 F:      drivers/misc/atmel-ssc.c
1924 F:      include/linux/atmel-ssc.h
1925
1926 ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1927 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1928 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1929 S:      Supported
1930 F:      drivers/misc/atmel_tclib.c
1931 F:      drivers/clocksource/tcb_clksrc.c
1932
1933 ATMEL USBA UDC DRIVER
1934 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1935 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1936 S:      Supported
1937 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
1938
1939 ATMEL WIRELESS DRIVER
1940 M:      Simon Kelley <simon@thekelleys.org.uk>
1941 L:      linux-wireless@vger.kernel.org
1942 W:      http://www.thekelleys.org.uk/atmel
1943 W:      http://atmelwlandriver.sourceforge.net/
1944 S:      Maintained
1945 F:      drivers/net/wireless/atmel*
1946
1947 ATMEL MAXTOUCH DRIVER
1948 M:      Nick Dyer <nick.dyer@itdev.co.uk>
1949 T:      git git://github.com/atmel-maxtouch/linux.git
1950 S:      Supported
1951 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
1952 F:      drivers/input/touchscreen/atmel_mxt_ts.c
1953 F:      include/linux/platform_data/atmel_mxt_ts.h
1954
1955 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
1956 M:      Bradley Grove <linuxdrivers@attotech.com>
1957 L:      linux-scsi@vger.kernel.org
1958 W:      http://www.attotech.com
1959 S:      Supported
1960 F:      drivers/scsi/esas2r
1961
1962 ATUSB IEEE 802.15.4 RADIO DRIVER
1963 M:      Stefan Schmidt <stefan@osg.samsung.com>
1964 L:      linux-wpan@vger.kernel.org
1965 S:      Maintained
1966 F:      drivers/net/ieee802154/atusb.c
1967 F:      drivers/net/ieee802154/atusb.h
1968 F:      drivers/net/ieee802154/at86rf230.h
1969
1970 AUDIT SUBSYSTEM
1971 M:      Paul Moore <paul@paul-moore.com>
1972 M:      Eric Paris <eparis@redhat.com>
1973 L:      linux-audit@redhat.com (moderated for non-subscribers)
1974 W:      http://people.redhat.com/sgrubb/audit/
1975 T:      git git://git.infradead.org/users/pcmoore/audit
1976 S:      Maintained
1977 F:      include/linux/audit.h
1978 F:      include/uapi/linux/audit.h
1979 F:      kernel/audit*
1980
1981 AUXILIARY DISPLAY DRIVERS
1982 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
1983 W:      http://miguelojeda.es/auxdisplay.htm
1984 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
1985 S:      Maintained
1986 F:      drivers/auxdisplay/
1987 F:      include/linux/cfag12864b.h
1988
1989 AVR32 ARCHITECTURE
1990 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
1991 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
1992 W:      http://www.atmel.com/products/AVR32/
1993 W:      http://mirror.egtvedt.no/avr32linux.org/
1994 W:      http://avrfreaks.net/
1995 S:      Maintained
1996 F:      arch/avr32/
1997
1998 AVR32/AT32AP MACHINE SUPPORT
1999 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
2000 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
2001 S:      Maintained
2002 F:      arch/avr32/mach-at32ap/
2003
2004 AX.25 NETWORK LAYER
2005 M:      Ralf Baechle <ralf@linux-mips.org>
2006 L:      linux-hams@vger.kernel.org
2007 W:      http://www.linux-ax25.org/
2008 S:      Maintained
2009 F:      include/uapi/linux/ax25.h
2010 F:      include/net/ax25.h
2011 F:      net/ax25/
2012
2013 AZ6007 DVB DRIVER
2014 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2015 L:      linux-media@vger.kernel.org
2016 W:      http://linuxtv.org
2017 T:      git git://linuxtv.org/media_tree.git
2018 S:      Maintained
2019 F:      drivers/media/usb/dvb-usb-v2/az6007.c
2020
2021 AZTECH FM RADIO RECEIVER DRIVER
2022 M:      Hans Verkuil <hverkuil@xs4all.nl>
2023 L:      linux-media@vger.kernel.org
2024 T:      git git://linuxtv.org/media_tree.git
2025 W:      http://linuxtv.org
2026 S:      Maintained
2027 F:      drivers/media/radio/radio-aztech*
2028
2029 B43 WIRELESS DRIVER
2030 L:      linux-wireless@vger.kernel.org
2031 L:      b43-dev@lists.infradead.org
2032 W:      http://wireless.kernel.org/en/users/Drivers/b43
2033 S:      Odd Fixes
2034 F:      drivers/net/wireless/b43/
2035
2036 B43LEGACY WIRELESS DRIVER
2037 M:      Larry Finger <Larry.Finger@lwfinger.net>
2038 L:      linux-wireless@vger.kernel.org
2039 L:      b43-dev@lists.infradead.org
2040 W:      http://wireless.kernel.org/en/users/Drivers/b43
2041 S:      Maintained
2042 F:      drivers/net/wireless/b43legacy/
2043
2044 BACKLIGHT CLASS/SUBSYSTEM
2045 M:      Jingoo Han <jingoohan1@gmail.com>
2046 M:      Lee Jones <lee.jones@linaro.org>
2047 S:      Maintained
2048 F:      drivers/video/backlight/
2049 F:      include/linux/backlight.h
2050
2051 BATMAN ADVANCED
2052 M:      Marek Lindner <mareklindner@neomailbox.ch>
2053 M:      Simon Wunderlich <sw@simonwunderlich.de>
2054 M:      Antonio Quartulli <antonio@meshcoding.com>
2055 L:      b.a.t.m.a.n@lists.open-mesh.org
2056 W:      http://www.open-mesh.org/
2057 S:      Maintained
2058 F:      net/batman-adv/
2059
2060 BAYCOM/HDLCDRV DRIVERS FOR AX.25
2061 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
2062 L:      linux-hams@vger.kernel.org
2063 W:      http://www.baycom.org/~tom/ham/ham.html
2064 S:      Maintained
2065 F:      drivers/net/hamradio/baycom*
2066
2067 BCACHE (BLOCK LAYER CACHE)
2068 M:      Kent Overstreet <kent.overstreet@gmail.com>
2069 L:      linux-bcache@vger.kernel.org
2070 W:      http://bcache.evilpiepirate.org
2071 S:      Maintained
2072 F:      drivers/md/bcache/
2073
2074 BDISP ST MEDIA DRIVER
2075 M:      Fabien Dessenne <fabien.dessenne@st.com>
2076 L:      linux-media@vger.kernel.org
2077 T:      git git://linuxtv.org/media_tree.git
2078 W:      http://linuxtv.org
2079 S:      Supported
2080 F:      drivers/media/platform/sti/bdisp
2081
2082 BEFS FILE SYSTEM
2083 S:      Orphan
2084 F:      Documentation/filesystems/befs.txt
2085 F:      fs/befs/
2086
2087 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
2088 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
2089 L:      netdev@vger.kernel.org
2090 S:      Maintained
2091 F:      drivers/net/ethernet/ec_bhf.c
2092
2093 BFS FILE SYSTEM
2094 M:      "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
2095 S:      Maintained
2096 F:      Documentation/filesystems/bfs.txt
2097 F:      fs/bfs/
2098 F:      include/uapi/linux/bfs_fs.h
2099
2100 BLACKFIN ARCHITECTURE
2101 M:      Steven Miao <realmz6@gmail.com>
2102 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2103 T:      git git://git.code.sf.net/p/adi-linux/code
2104 W:      http://blackfin.uclinux.org
2105 S:      Supported
2106 F:      arch/blackfin/
2107
2108 BLACKFIN EMAC DRIVER
2109 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2110 W:      http://blackfin.uclinux.org
2111 S:      Supported
2112 F:      drivers/net/ethernet/adi/
2113
2114 BLACKFIN RTC 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/rtc/rtc-bfin.c
2119
2120 BLACKFIN SDH DRIVER
2121 M:      Sonic Zhang <sonic.zhang@analog.com>
2122 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2123 W:      http://blackfin.uclinux.org
2124 S:      Supported
2125 F:      drivers/mmc/host/bfin_sdh.c
2126
2127 BLACKFIN SERIAL DRIVER
2128 M:      Sonic Zhang <sonic.zhang@analog.com>
2129 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2130 W:      http://blackfin.uclinux.org
2131 S:      Supported
2132 F:      drivers/tty/serial/bfin_uart.c
2133
2134 BLACKFIN WATCHDOG DRIVER
2135 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2136 W:      http://blackfin.uclinux.org
2137 S:      Supported
2138 F:      drivers/watchdog/bfin_wdt.c
2139
2140 BLACKFIN I2C TWI DRIVER
2141 M:      Sonic Zhang <sonic.zhang@analog.com>
2142 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2143 W:      http://blackfin.uclinux.org/
2144 S:      Supported
2145 F:      drivers/i2c/busses/i2c-bfin-twi.c
2146
2147 BLACKFIN MEDIA DRIVER
2148 M:      Scott Jiang <scott.jiang.linux@gmail.com>
2149 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2150 W:      http://blackfin.uclinux.org/
2151 S:      Supported
2152 F:      drivers/media/platform/blackfin/
2153 F:      drivers/media/i2c/adv7183*
2154 F:      drivers/media/i2c/vs6624*
2155
2156 BLINKM RGB LED DRIVER
2157 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
2158 S:      Maintained
2159 F:      drivers/leds/leds-blinkm.c
2160
2161 BLOCK LAYER
2162 M:      Jens Axboe <axboe@kernel.dk>
2163 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
2164 S:      Maintained
2165 F:      block/
2166 F:      kernel/trace/blktrace.c
2167
2168 BLOCK2MTD DRIVER
2169 M:      Joern Engel <joern@lazybastard.org>
2170 L:      linux-mtd@lists.infradead.org
2171 S:      Maintained
2172 F:      drivers/mtd/devices/block2mtd.c
2173
2174 BLUETOOTH DRIVERS
2175 M:      Marcel Holtmann <marcel@holtmann.org>
2176 M:      Gustavo Padovan <gustavo@padovan.org>
2177 M:      Johan Hedberg <johan.hedberg@gmail.com>
2178 L:      linux-bluetooth@vger.kernel.org
2179 W:      http://www.bluez.org/
2180 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2181 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2182 S:      Maintained
2183 F:      drivers/bluetooth/
2184
2185 BLUETOOTH SUBSYSTEM
2186 M:      Marcel Holtmann <marcel@holtmann.org>
2187 M:      Gustavo Padovan <gustavo@padovan.org>
2188 M:      Johan Hedberg <johan.hedberg@gmail.com>
2189 L:      linux-bluetooth@vger.kernel.org
2190 W:      http://www.bluez.org/
2191 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2192 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2193 S:      Maintained
2194 F:      net/bluetooth/
2195 F:      include/net/bluetooth/
2196
2197 BONDING DRIVER
2198 M:      Jay Vosburgh <j.vosburgh@gmail.com>
2199 M:      Veaceslav Falico <vfalico@gmail.com>
2200 M:      Andy Gospodarek <gospo@cumulusnetworks.com>
2201 L:      netdev@vger.kernel.org
2202 W:      http://sourceforge.net/projects/bonding/
2203 S:      Supported
2204 F:      drivers/net/bonding/
2205 F:      include/uapi/linux/if_bonding.h
2206
2207 BPF (Safe dynamic programs and tools)
2208 M:      Alexei Starovoitov <ast@kernel.org>
2209 L:      netdev@vger.kernel.org
2210 L:      linux-kernel@vger.kernel.org
2211 S:      Supported
2212 F:      kernel/bpf/
2213
2214 BROADCOM B44 10/100 ETHERNET DRIVER
2215 M:      Gary Zambrano <zambrano@broadcom.com>
2216 L:      netdev@vger.kernel.org
2217 S:      Supported
2218 F:      drivers/net/ethernet/broadcom/b44.*
2219
2220 BROADCOM GENET ETHERNET DRIVER
2221 M:      Florian Fainelli <f.fainelli@gmail.com>
2222 L:      netdev@vger.kernel.org
2223 S:      Supported
2224 F:      drivers/net/ethernet/broadcom/genet/
2225
2226 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
2227 M:      Sony Chacko <sony.chacko@qlogic.com>
2228 M:      Dept-HSGLinuxNICDev@qlogic.com
2229 L:      netdev@vger.kernel.org
2230 S:      Supported
2231 F:      drivers/net/ethernet/broadcom/bnx2.*
2232 F:      drivers/net/ethernet/broadcom/bnx2_*
2233
2234 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
2235 M:      Ariel Elior <ariel.elior@qlogic.com>
2236 L:      netdev@vger.kernel.org
2237 S:      Supported
2238 F:      drivers/net/ethernet/broadcom/bnx2x/
2239
2240 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
2241 M:      Florian Fainelli <f.fainelli@gmail.com>
2242 M:      Ray Jui <rjui@broadcom.com>
2243 M:      Scott Branden <sbranden@broadcom.com>
2244 L:      bcm-kernel-feedback-list@broadcom.com
2245 T:      git git://github.com/broadcom/mach-bcm
2246 S:      Maintained
2247 F:      arch/arm/mach-bcm/
2248 F:      arch/arm/boot/dts/bcm113*
2249 F:      arch/arm/boot/dts/bcm216*
2250 F:      arch/arm/boot/dts/bcm281*
2251 F:      arch/arm/configs/bcm_defconfig
2252 F:      drivers/mmc/host/sdhci-bcm-kona.c
2253 F:      drivers/clocksource/bcm_kona_timer.c
2254
2255 BROADCOM BCM2835 ARM ARCHITECTURE
2256 M:      Stephen Warren <swarren@wwwdotorg.org>
2257 M:      Lee Jones <lee@kernel.org>
2258 M:      Eric Anholt <eric@anholt.net>
2259 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
2260 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2261 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rpi/linux-rpi.git
2262 S:      Maintained
2263 N:      bcm2835
2264
2265 BROADCOM BCM33XX MIPS ARCHITECTURE
2266 M:      Kevin Cernekee <cernekee@gmail.com>
2267 L:      linux-mips@linux-mips.org
2268 S:      Maintained
2269 F:      arch/mips/bcm3384/*
2270 F:      arch/mips/include/asm/mach-bcm3384/*
2271 F:      arch/mips/kernel/*bmips*
2272
2273 BROADCOM BCM47XX MIPS ARCHITECTURE
2274 M:      Hauke Mehrtens <hauke@hauke-m.de>
2275 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2276 L:      linux-mips@linux-mips.org
2277 S:      Maintained
2278 F:      arch/mips/bcm47xx/*
2279 F:      arch/mips/include/asm/mach-bcm47xx/*
2280
2281 BROADCOM BCM5301X ARM ARCHITECTURE
2282 M:      Hauke Mehrtens <hauke@hauke-m.de>
2283 L:      linux-arm-kernel@lists.infradead.org
2284 S:      Maintained
2285 F:      arch/arm/mach-bcm/bcm_5301x.c
2286 F:      arch/arm/boot/dts/bcm5301x.dtsi
2287 F:      arch/arm/boot/dts/bcm470*
2288
2289 BROADCOM BCM63XX ARM ARCHITECTURE
2290 M:      Florian Fainelli <f.fainelli@gmail.com>
2291 L:      linux-arm-kernel@lists.infradead.org
2292 T:      git git://github.com/broadcom/arm-bcm63xx.git
2293 S:      Maintained
2294 F:      arch/arm/mach-bcm/bcm63xx.c
2295 F:      arch/arm/include/debug/bcm63xx.S
2296
2297 BROADCOM BCM63XX/BCM33XX UDC DRIVER
2298 M:      Kevin Cernekee <cernekee@gmail.com>
2299 L:      linux-usb@vger.kernel.org
2300 S:      Maintained
2301 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
2302
2303 BROADCOM BCM7XXX ARM ARCHITECTURE
2304 M:      Brian Norris <computersforpeace@gmail.com>
2305 M:      Gregory Fong <gregory.0xf0@gmail.com>
2306 M:      Florian Fainelli <f.fainelli@gmail.com>
2307 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2308 T:      git git://github.com/broadcom/stblinux.git
2309 S:      Maintained
2310 F:      arch/arm/mach-bcm/*brcmstb*
2311 F:      arch/arm/boot/dts/bcm7*.dts*
2312 F:      drivers/bus/brcmstb_gisb.c
2313 N:      brcmstb
2314
2315 BROADCOM BMIPS MIPS ARCHITECTURE
2316 M:      Kevin Cernekee <cernekee@gmail.com>
2317 M:      Florian Fainelli <f.fainelli@gmail.com>
2318 L:      linux-mips@linux-mips.org
2319 T:      git git://github.com/broadcom/stblinux.git
2320 S:      Maintained
2321 F:      arch/mips/bmips/*
2322 F:      arch/mips/include/asm/mach-bmips/*
2323 F:      arch/mips/kernel/*bmips*
2324 F:      arch/mips/boot/dts/brcm/bcm*.dts*
2325 F:      drivers/irqchip/irq-bcm7*
2326 F:      drivers/irqchip/irq-brcmstb*
2327
2328 BROADCOM TG3 GIGABIT ETHERNET DRIVER
2329 M:      Prashant Sreedharan <prashant@broadcom.com>
2330 M:      Michael Chan <mchan@broadcom.com>
2331 L:      netdev@vger.kernel.org
2332 S:      Supported
2333 F:      drivers/net/ethernet/broadcom/tg3.*
2334
2335 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2336 M:      Brett Rudley <brudley@broadcom.com>
2337 M:      Arend van Spriel <arend@broadcom.com>
2338 M:      Franky (Zhenhui) Lin <frankyl@broadcom.com>
2339 M:      Hante Meuleman <meuleman@broadcom.com>
2340 L:      linux-wireless@vger.kernel.org
2341 L:      brcm80211-dev-list@broadcom.com
2342 S:      Supported
2343 F:      drivers/net/wireless/brcm80211/
2344
2345 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
2346 M:      QLogic-Storage-Upstream@qlogic.com
2347 L:      linux-scsi@vger.kernel.org
2348 S:      Supported
2349 F:      drivers/scsi/bnx2fc/
2350
2351 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
2352 M:      QLogic-Storage-Upstream@qlogic.com
2353 L:      linux-scsi@vger.kernel.org
2354 S:      Supported
2355 F:      drivers/scsi/bnx2i/
2356
2357 BROADCOM CYGNUS/IPROC ARM ARCHITECTURE
2358 M:      Ray Jui <rjui@broadcom.com>
2359 M:      Scott Branden <sbranden@broadcom.com>
2360 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2361 L:      bcm-kernel-feedback-list@broadcom.com
2362 T:      git git://github.com/broadcom/cygnus-linux.git
2363 S:      Maintained
2364 N:      iproc
2365 N:      cygnus
2366 N:      bcm9113*
2367 N:      bcm9583*
2368 N:      bcm583*
2369 N:      bcm113*
2370
2371 BROADCOM BRCMSTB GPIO DRIVER
2372 M:      Gregory Fong <gregory.0xf0@gmail.com>
2373 L:      bcm-kernel-feedback-list@broadcom.com>
2374 S:      Supported
2375 F:      drivers/gpio/gpio-brcmstb.c
2376 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
2377
2378 BROADCOM KONA GPIO DRIVER
2379 M:      Ray Jui <rjui@broadcom.com>
2380 L:      bcm-kernel-feedback-list@broadcom.com
2381 S:      Supported
2382 F:      drivers/gpio/gpio-bcm-kona.c
2383 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
2384
2385 BROADCOM NVRAM DRIVER
2386 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2387 L:      linux-mips@linux-mips.org
2388 S:      Maintained
2389 F:      drivers/firmware/broadcom/*
2390
2391 BROADCOM STB NAND FLASH DRIVER
2392 M:      Brian Norris <computersforpeace@gmail.com>
2393 L:      linux-mtd@lists.infradead.org
2394 S:      Maintained
2395 F:      drivers/mtd/nand/brcmnand/
2396
2397 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2398 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2399 L:      linux-wireless@vger.kernel.org
2400 S:      Maintained
2401 F:      drivers/bcma/
2402 F:      include/linux/bcma/
2403
2404 BROADCOM SYSTEMPORT ETHERNET DRIVER
2405 M:      Florian Fainelli <f.fainelli@gmail.com>
2406 L:      netdev@vger.kernel.org
2407 S:      Supported
2408 F:      drivers/net/ethernet/broadcom/bcmsysport.*
2409
2410 BROCADE BFA FC SCSI DRIVER
2411 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
2412 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
2413 L:      linux-scsi@vger.kernel.org
2414 S:      Supported
2415 F:      drivers/scsi/bfa/
2416
2417 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
2418 M:      Rasesh Mody <rasesh.mody@qlogic.com>
2419 L:      netdev@vger.kernel.org
2420 S:      Supported
2421 F:      drivers/net/ethernet/brocade/bna/
2422
2423 BSG (block layer generic sg v4 driver)
2424 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
2425 L:      linux-scsi@vger.kernel.org
2426 S:      Supported
2427 F:      block/bsg.c
2428 F:      include/linux/bsg.h
2429 F:      include/uapi/linux/bsg.h
2430
2431 BT87X AUDIO DRIVER
2432 M:      Clemens Ladisch <clemens@ladisch.de>
2433 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2434 T:      git git://git.alsa-project.org/alsa-kernel.git
2435 S:      Maintained
2436 F:      Documentation/sound/alsa/Bt87x.txt
2437 F:      sound/pci/bt87x.c
2438
2439 BT8XXGPIO DRIVER
2440 M:      Michael Buesch <m@bues.ch>
2441 W:      http://bu3sch.de/btgpio.php
2442 S:      Maintained
2443 F:      drivers/gpio/gpio-bt8xx.c
2444
2445 BTRFS FILE SYSTEM
2446 M:      Chris Mason <clm@fb.com>
2447 M:      Josef Bacik <jbacik@fb.com>
2448 M:      David Sterba <dsterba@suse.com>
2449 L:      linux-btrfs@vger.kernel.org
2450 W:      http://btrfs.wiki.kernel.org/
2451 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
2452 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
2453 S:      Maintained
2454 F:      Documentation/filesystems/btrfs.txt
2455 F:      fs/btrfs/
2456
2457 BTTV VIDEO4LINUX DRIVER
2458 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2459 L:      linux-media@vger.kernel.org
2460 W:      http://linuxtv.org
2461 T:      git git://linuxtv.org/media_tree.git
2462 S:      Odd fixes
2463 F:      Documentation/video4linux/bttv/
2464 F:      drivers/media/pci/bt8xx/bttv*
2465
2466 BUSLOGIC SCSI DRIVER
2467 M:      Khalid Aziz <khalid@gonehiking.org>
2468 L:      linux-scsi@vger.kernel.org
2469 S:      Maintained
2470 F:      drivers/scsi/BusLogic.*
2471 F:      drivers/scsi/FlashPoint.*
2472
2473 C-MEDIA CMI8788 DRIVER
2474 M:      Clemens Ladisch <clemens@ladisch.de>
2475 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2476 T:      git git://git.alsa-project.org/alsa-kernel.git
2477 S:      Maintained
2478 F:      sound/pci/oxygen/
2479
2480 C6X ARCHITECTURE
2481 M:      Mark Salter <msalter@redhat.com>
2482 M:      Aurelien Jacquiot <a-jacquiot@ti.com>
2483 L:      linux-c6x-dev@linux-c6x.org
2484 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
2485 S:      Maintained
2486 F:      arch/c6x/
2487
2488 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
2489 M:      David Howells <dhowells@redhat.com>
2490 L:      linux-cachefs@redhat.com
2491 S:      Supported
2492 F:      Documentation/filesystems/caching/cachefiles.txt
2493 F:      fs/cachefiles/
2494
2495 CADET FM/AM RADIO RECEIVER DRIVER
2496 M:      Hans Verkuil <hverkuil@xs4all.nl>
2497 L:      linux-media@vger.kernel.org
2498 T:      git git://linuxtv.org/media_tree.git
2499 W:      http://linuxtv.org
2500 S:      Maintained
2501 F:      drivers/media/radio/radio-cadet*
2502
2503 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
2504 M:      Jonathan Corbet <corbet@lwn.net>
2505 L:      linux-media@vger.kernel.org
2506 T:      git git://linuxtv.org/media_tree.git
2507 S:      Maintained
2508 F:      Documentation/video4linux/cafe_ccic
2509 F:      drivers/media/platform/marvell-ccic/
2510
2511 CAIF NETWORK LAYER
2512 M:      Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
2513 L:      netdev@vger.kernel.org
2514 S:      Supported
2515 F:      Documentation/networking/caif/
2516 F:      drivers/net/caif/
2517 F:      include/uapi/linux/caif/
2518 F:      include/net/caif/
2519 F:      net/caif/
2520
2521 CALGARY x86-64 IOMMU
2522 M:      Muli Ben-Yehuda <muli@il.ibm.com>
2523 M:      "Jon D. Mason" <jdmason@kudzu.us>
2524 L:      discuss@x86-64.org
2525 S:      Maintained
2526 F:      arch/x86/kernel/pci-calgary_64.c
2527 F:      arch/x86/kernel/tce_64.c
2528 F:      arch/x86/include/asm/calgary.h
2529 F:      arch/x86/include/asm/tce.h
2530
2531 CAN NETWORK LAYER
2532 M:      Oliver Hartkopp <socketcan@hartkopp.net>
2533 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2534 L:      linux-can@vger.kernel.org
2535 W:      https://github.com/linux-can
2536 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2537 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2538 S:      Maintained
2539 F:      Documentation/networking/can.txt
2540 F:      net/can/
2541 F:      include/linux/can/core.h
2542 F:      include/uapi/linux/can.h
2543 F:      include/uapi/linux/can/bcm.h
2544 F:      include/uapi/linux/can/raw.h
2545 F:      include/uapi/linux/can/gw.h
2546
2547 CAN NETWORK DRIVERS
2548 M:      Wolfgang Grandegger <wg@grandegger.com>
2549 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2550 L:      linux-can@vger.kernel.org
2551 W:      https://github.com/linux-can
2552 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2553 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2554 S:      Maintained
2555 F:      drivers/net/can/
2556 F:      include/linux/can/dev.h
2557 F:      include/linux/can/platform/
2558 F:      include/uapi/linux/can/error.h
2559 F:      include/uapi/linux/can/netlink.h
2560
2561 CAPABILITIES
2562 M:      Serge Hallyn <serge.hallyn@canonical.com>
2563 L:      linux-security-module@vger.kernel.org
2564 S:      Supported
2565 F:      include/linux/capability.h
2566 F:      include/uapi/linux/capability.h
2567 F:      security/commoncap.c
2568 F:      kernel/capability.c
2569
2570 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
2571 M:      Kevin Tsai <ktsai@capellamicro.com>
2572 S:      Maintained
2573 F:      drivers/iio/light/cm*
2574 F:      Documentation/devicetree/bindings/i2c/trivial-devices.txt
2575
2576 CAVIUM LIQUIDIO NETWORK DRIVER
2577 M:     Derek Chickles <derek.chickles@caviumnetworks.com>
2578 M:     Satanand Burla <satananda.burla@caviumnetworks.com>
2579 M:     Felix Manlunas <felix.manlunas@caviumnetworks.com>
2580 M:     Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com>
2581 L:     netdev@vger.kernel.org
2582 W:     http://www.cavium.com
2583 S:     Supported
2584 F:     drivers/net/ethernet/cavium/liquidio/
2585
2586 CC2520 IEEE-802.15.4 RADIO DRIVER
2587 M:      Varka Bhadram <varkabhadram@gmail.com>
2588 L:      linux-wpan@vger.kernel.org
2589 S:      Maintained
2590 F:      drivers/net/ieee802154/cc2520.c
2591 F:      include/linux/spi/cc2520.h
2592 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
2593
2594 CELL BROADBAND ENGINE ARCHITECTURE
2595 M:      Arnd Bergmann <arnd@arndb.de>
2596 L:      linuxppc-dev@lists.ozlabs.org
2597 W:      http://www.ibm.com/developerworks/power/cell/
2598 S:      Supported
2599 F:      arch/powerpc/include/asm/cell*.h
2600 F:      arch/powerpc/include/asm/spu*.h
2601 F:      arch/powerpc/include/uapi/asm/spu*.h
2602 F:      arch/powerpc/oprofile/*cell*
2603 F:      arch/powerpc/platforms/cell/
2604
2605 CEPH COMMON CODE (LIBCEPH)
2606 M:      Ilya Dryomov <idryomov@gmail.com>
2607 M:      "Yan, Zheng" <zyan@redhat.com>
2608 M:      Sage Weil <sage@redhat.com>
2609 L:      ceph-devel@vger.kernel.org
2610 W:      http://ceph.com/
2611 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2612 T:      git git://github.com/ceph/ceph-client.git
2613 S:      Supported
2614 F:      net/ceph/
2615 F:      include/linux/ceph/
2616 F:      include/linux/crush/
2617
2618 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
2619 M:      "Yan, Zheng" <zyan@redhat.com>
2620 M:      Sage Weil <sage@redhat.com>
2621 M:      Ilya Dryomov <idryomov@gmail.com>
2622 L:      ceph-devel@vger.kernel.org
2623 W:      http://ceph.com/
2624 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2625 T:      git git://github.com/ceph/ceph-client.git
2626 S:      Supported
2627 F:      Documentation/filesystems/ceph.txt
2628 F:      fs/ceph/
2629
2630 CERTIFICATE HANDLING:
2631 M:      David Howells <dhowells@redhat.com>
2632 M:      David Woodhouse <dwmw2@infradead.org>
2633 L:      keyrings@linux-nfs.org
2634 S:      Maintained
2635 F:      Documentation/module-signing.txt
2636 F:      certs/
2637 F:      scripts/extract-cert.c
2638
2639 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
2640 L:      linux-usb@vger.kernel.org
2641 S:      Orphan
2642 F:      Documentation/usb/WUSB-Design-overview.txt
2643 F:      Documentation/usb/wusb-cbaf
2644 F:      drivers/usb/host/hwa-hc.c
2645 F:      drivers/usb/host/whci/
2646 F:      drivers/usb/wusbcore/
2647 F:      include/linux/usb/wusb*
2648
2649 CFAG12864B LCD DRIVER
2650 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2651 W:      http://miguelojeda.es/auxdisplay.htm
2652 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2653 S:      Maintained
2654 F:      drivers/auxdisplay/cfag12864b.c
2655 F:      include/linux/cfag12864b.h
2656
2657 CFAG12864BFB LCD FRAMEBUFFER DRIVER
2658 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2659 W:      http://miguelojeda.es/auxdisplay.htm
2660 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2661 S:      Maintained
2662 F:      drivers/auxdisplay/cfag12864bfb.c
2663 F:      include/linux/cfag12864b.h
2664
2665 CFG80211 and NL80211
2666 M:      Johannes Berg <johannes@sipsolutions.net>
2667 L:      linux-wireless@vger.kernel.org
2668 W:      http://wireless.kernel.org/
2669 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2670 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
2671 S:      Maintained
2672 F:      include/uapi/linux/nl80211.h
2673 F:      include/net/cfg80211.h
2674 F:      net/wireless/*
2675 X:      net/wireless/wext*
2676
2677 CHAR and MISC DRIVERS
2678 M:      Arnd Bergmann <arnd@arndb.de>
2679 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2680 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
2681 S:      Supported
2682 F:      drivers/char/*
2683 F:      drivers/misc/*
2684 F:      include/linux/miscdevice.h
2685
2686 CHECKPATCH
2687 M:      Andy Whitcroft <apw@canonical.com>
2688 M:      Joe Perches <joe@perches.com>
2689 S:      Maintained
2690 F:      scripts/checkpatch.pl
2691
2692 CHINESE DOCUMENTATION
2693 M:      Harry Wei <harryxiyou@gmail.com>
2694 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
2695 L:      linux-kernel@zh-kernel.org (moderated for non-subscribers)
2696 S:      Maintained
2697 F:      Documentation/zh_CN/
2698
2699 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
2700 M:      Peter Chen <Peter.Chen@freescale.com>
2701 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
2702 L:      linux-usb@vger.kernel.org
2703 S:      Maintained
2704 F:      drivers/usb/chipidea/
2705
2706 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
2707 M:      Hans de Goede <hdegoede@redhat.com>
2708 L:      linux-input@vger.kernel.org
2709 S:      Maintained
2710 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
2711 F:      drivers/input/touchscreen/chipone_icn8318.c
2712
2713 CHROME HARDWARE PLATFORM SUPPORT
2714 M:      Olof Johansson <olof@lixom.net>
2715 S:      Maintained
2716 F:      drivers/platform/chrome/
2717
2718 CISCO VIC ETHERNET NIC DRIVER
2719 M:      Christian Benvenuti <benve@cisco.com>
2720 M:      Sujith Sankar <ssujith@cisco.com>
2721 M:      Govindarajulu Varadarajan <_govind@gmx.com>
2722 M:      Neel Patel <neepatel@cisco.com>
2723 S:      Supported
2724 F:      drivers/net/ethernet/cisco/enic/
2725
2726 CISCO VIC LOW LATENCY NIC DRIVER
2727 M:      Upinder Malhi <umalhi@cisco.com>
2728 S:      Supported
2729 F:      drivers/infiniband/hw/usnic
2730
2731 CIRRUS LOGIC EP93XX ETHERNET DRIVER
2732 M:      Hartley Sweeten <hsweeten@visionengravers.com>
2733 L:      netdev@vger.kernel.org
2734 S:      Maintained
2735 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
2736
2737 CIRRUS LOGIC AUDIO CODEC DRIVERS
2738 M:      Brian Austin <brian.austin@cirrus.com>
2739 M:      Paul Handrigan <Paul.Handrigan@cirrus.com>
2740 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2741 S:      Maintained
2742 F:      sound/soc/codecs/cs*
2743
2744 CLEANCACHE API
2745 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2746 L:      linux-kernel@vger.kernel.org
2747 S:      Maintained
2748 F:      mm/cleancache.c
2749 F:      include/linux/cleancache.h
2750
2751 CLK API
2752 M:      Russell King <linux@arm.linux.org.uk>
2753 L:      linux-clk@vger.kernel.org
2754 S:      Maintained
2755 F:      include/linux/clk.h
2756
2757 CLOCKSOURCE, CLOCKEVENT DRIVERS
2758 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2759 M:      Thomas Gleixner <tglx@linutronix.de>
2760 L:      linux-kernel@vger.kernel.org
2761 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
2762 S:      Supported
2763 F:      drivers/clocksource
2764
2765 CISCO FCOE HBA DRIVER
2766 M:      Hiral Patel <hiralpat@cisco.com>
2767 M:      Suma Ramars <sramars@cisco.com>
2768 M:      Brian Uchino <buchino@cisco.com>
2769 L:      linux-scsi@vger.kernel.org
2770 S:      Supported
2771 F:      drivers/scsi/fnic/
2772
2773 CISCO SCSI HBA DRIVER
2774 M:      Narsimhulu Musini <nmusini@cisco.com>
2775 M:      Sesidhar Baddela <sebaddel@cisco.com>
2776 L:      linux-scsi@vger.kernel.org
2777 S:      Supported
2778 F:      drivers/scsi/snic/
2779
2780 CMPC ACPI DRIVER
2781 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2782 M:      Daniel Oliveira Nascimento <don@syst.com.br>
2783 L:      platform-driver-x86@vger.kernel.org
2784 S:      Supported
2785 F:      drivers/platform/x86/classmate-laptop.c
2786
2787 COBALT MEDIA DRIVER
2788 M:      Hans Verkuil <hans.verkuil@cisco.com>
2789 L:      linux-media@vger.kernel.org
2790 T:      git git://linuxtv.org/media_tree.git
2791 W:      http://linuxtv.org
2792 S:      Supported
2793 F:      drivers/media/pci/cobalt/
2794
2795 COCCINELLE/Semantic Patches (SmPL)
2796 M:      Julia Lawall <Julia.Lawall@lip6.fr>
2797 M:      Gilles Muller <Gilles.Muller@lip6.fr>
2798 M:      Nicolas Palix <nicolas.palix@imag.fr>
2799 M:      Michal Marek <mmarek@suse.com>
2800 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
2801 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
2802 W:      http://coccinelle.lip6.fr/
2803 S:      Supported
2804 F:      Documentation/coccinelle.txt
2805 F:      scripts/coccinelle/
2806 F:      scripts/coccicheck
2807
2808 CODA FILE SYSTEM
2809 M:      Jan Harkes <jaharkes@cs.cmu.edu>
2810 M:      coda@cs.cmu.edu
2811 L:      codalist@coda.cs.cmu.edu
2812 W:      http://www.coda.cs.cmu.edu/
2813 S:      Maintained
2814 F:      Documentation/filesystems/coda.txt
2815 F:      fs/coda/
2816 F:      include/linux/coda*.h
2817 F:      include/uapi/linux/coda*.h
2818
2819 CODA V4L2 MEM2MEM DRIVER
2820 M:      Philipp Zabel <p.zabel@pengutronix.de>
2821 L:      linux-media@vger.kernel.org
2822 S:      Maintained
2823 F:      Documentation/devicetree/bindings/media/coda.txt
2824 F:      drivers/media/platform/coda/
2825
2826 COMMON CLK FRAMEWORK
2827 M:      Michael Turquette <mturquette@baylibre.com>
2828 M:      Stephen Boyd <sboyd@codeaurora.org>
2829 L:      linux-clk@vger.kernel.org
2830 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
2831 S:      Maintained
2832 F:      drivers/clk/
2833 X:      drivers/clk/clkdev.c
2834 F:      include/linux/clk-pr*
2835 F:      include/linux/clk/
2836
2837 COMMON INTERNET FILE SYSTEM (CIFS)
2838 M:      Steve French <sfrench@samba.org>
2839 L:      linux-cifs@vger.kernel.org
2840 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
2841 W:      http://linux-cifs.samba.org/
2842 T:      git git://git.samba.org/sfrench/cifs-2.6.git
2843 S:      Supported
2844 F:      Documentation/filesystems/cifs/
2845 F:      fs/cifs/
2846
2847 COMPACTPCI HOTPLUG CORE
2848 M:      Scott Murray <scott@spiteful.org>
2849 L:      linux-pci@vger.kernel.org
2850 S:      Maintained
2851 F:      drivers/pci/hotplug/cpci_hotplug*
2852
2853 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
2854 M:      Scott Murray <scott@spiteful.org>
2855 L:      linux-pci@vger.kernel.org
2856 S:      Maintained
2857 F:      drivers/pci/hotplug/cpcihp_zt5550.*
2858
2859 COMPACTPCI HOTPLUG GENERIC DRIVER
2860 M:      Scott Murray <scott@spiteful.org>
2861 L:      linux-pci@vger.kernel.org
2862 S:      Maintained
2863 F:      drivers/pci/hotplug/cpcihp_generic.c
2864
2865 COMPAL LAPTOP SUPPORT
2866 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
2867 L:      platform-driver-x86@vger.kernel.org
2868 S:      Maintained
2869 F:      drivers/platform/x86/compal-laptop.c
2870
2871 CONEXANT ACCESSRUNNER USB DRIVER
2872 M:      Simon Arlott <cxacru@fire.lp0.eu>
2873 L:      accessrunner-general@lists.sourceforge.net
2874 W:      http://accessrunner.sourceforge.net/
2875 S:      Maintained
2876 F:      drivers/usb/atm/cxacru.c
2877
2878 CONFIGFS
2879 M:      Joel Becker <jlbec@evilplan.org>
2880 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
2881 S:      Supported
2882 F:      fs/configfs/
2883 F:      include/linux/configfs.h
2884
2885 CONNECTOR
2886 M:      Evgeniy Polyakov <zbr@ioremap.net>
2887 L:      netdev@vger.kernel.org
2888 S:      Maintained
2889 F:      drivers/connector/
2890
2891 CONTROL GROUP (CGROUP)
2892 M:      Tejun Heo <tj@kernel.org>
2893 M:      Li Zefan <lizefan@huawei.com>
2894 M:      Johannes Weiner <hannes@cmpxchg.org>
2895 L:      cgroups@vger.kernel.org
2896 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
2897 S:      Maintained
2898 F:      Documentation/cgroups/
2899 F:      include/linux/cgroup*
2900 F:      kernel/cgroup*
2901
2902 CONTROL GROUP - CPUSET
2903 M:      Li Zefan <lizefan@huawei.com>
2904 L:      cgroups@vger.kernel.org
2905 W:      http://www.bullopensource.org/cpuset/
2906 W:      http://oss.sgi.com/projects/cpusets/
2907 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
2908 S:      Maintained
2909 F:      Documentation/cgroups/cpusets.txt
2910 F:      include/linux/cpuset.h
2911 F:      kernel/cpuset.c
2912
2913 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
2914 M:      Johannes Weiner <hannes@cmpxchg.org>
2915 M:      Michal Hocko <mhocko@kernel.org>
2916 L:      cgroups@vger.kernel.org
2917 L:      linux-mm@kvack.org
2918 S:      Maintained
2919 F:      mm/memcontrol.c
2920 F:      mm/swap_cgroup.c
2921
2922 CORETEMP HARDWARE MONITORING DRIVER
2923 M:      Fenghua Yu <fenghua.yu@intel.com>
2924 L:      lm-sensors@lm-sensors.org
2925 S:      Maintained
2926 F:      Documentation/hwmon/coretemp
2927 F:      drivers/hwmon/coretemp.c
2928
2929 COSA/SRP SYNC SERIAL DRIVER
2930 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
2931 W:      http://www.fi.muni.cz/~kas/cosa/
2932 S:      Maintained
2933 F:      drivers/net/wan/cosa*
2934
2935 CPMAC ETHERNET DRIVER
2936 M:      Florian Fainelli <florian@openwrt.org>
2937 L:      netdev@vger.kernel.org
2938 S:      Maintained
2939 F:      drivers/net/ethernet/ti/cpmac.c
2940
2941 CPU FREQUENCY DRIVERS
2942 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
2943 M:      Viresh Kumar <viresh.kumar@linaro.org>
2944 L:      linux-pm@vger.kernel.org
2945 S:      Maintained
2946 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2947 T:      git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
2948 F:      drivers/cpufreq/
2949 F:      include/linux/cpufreq.h
2950
2951 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
2952 M:      Viresh Kumar <viresh.kumar@linaro.org>
2953 M:      Sudeep Holla <sudeep.holla@arm.com>
2954 L:      linux-pm@vger.kernel.org
2955 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
2956 S:      Maintained
2957 F:      drivers/cpufreq/arm_big_little.h
2958 F:      drivers/cpufreq/arm_big_little.c
2959 F:      drivers/cpufreq/arm_big_little_dt.c
2960
2961 CPUIDLE DRIVER - ARM BIG LITTLE
2962 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2963 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2964 L:      linux-pm@vger.kernel.org
2965 L:      linux-arm-kernel@lists.infradead.org
2966 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2967 S:      Maintained
2968 F:      drivers/cpuidle/cpuidle-big_little.c
2969
2970 CPUIDLE DRIVER - ARM EXYNOS
2971 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
2972 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2973 M:      Kukjin Kim <kgene@kernel.org>
2974 L:      linux-pm@vger.kernel.org
2975 L:      linux-samsung-soc@vger.kernel.org
2976 S:      Supported
2977 F:      drivers/cpuidle/cpuidle-exynos.c
2978 F:      arch/arm/mach-exynos/pm.c
2979
2980 CPUIDLE DRIVERS
2981 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
2982 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2983 L:      linux-pm@vger.kernel.org
2984 S:      Maintained
2985 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2986 F:      drivers/cpuidle/*
2987 F:      include/linux/cpuidle.h
2988
2989 CPUID/MSR DRIVER
2990 M:      "H. Peter Anvin" <hpa@zytor.com>
2991 S:      Maintained
2992 F:      arch/x86/kernel/cpuid.c
2993 F:      arch/x86/kernel/msr.c
2994
2995 CPU POWER MONITORING SUBSYSTEM
2996 M:      Thomas Renninger <trenn@suse.com>
2997 L:      linux-pm@vger.kernel.org
2998 S:      Maintained
2999 F:      tools/power/cpupower/
3000
3001 CRAMFS FILESYSTEM
3002 W:      http://sourceforge.net/projects/cramfs/
3003 S:      Orphan / Obsolete
3004 F:      Documentation/filesystems/cramfs.txt
3005 F:      fs/cramfs/
3006
3007 CRIS PORT
3008 M:      Mikael Starvik <starvik@axis.com>
3009 M:      Jesper Nilsson <jesper.nilsson@axis.com>
3010 L:      linux-cris-kernel@axis.com
3011 W:      http://developer.axis.com
3012 S:      Maintained
3013 F:      arch/cris/
3014 F:      drivers/tty/serial/crisv10.*
3015
3016 CRYPTO API
3017 M:      Herbert Xu <herbert@gondor.apana.org.au>
3018 M:      "David S. Miller" <davem@davemloft.net>
3019 L:      linux-crypto@vger.kernel.org
3020 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
3021 S:      Maintained
3022 F:      Documentation/crypto/
3023 F:      Documentation/DocBook/crypto-API.tmpl
3024 F:      arch/*/crypto/
3025 F:      crypto/
3026 F:      drivers/crypto/
3027 F:      include/crypto/
3028
3029 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
3030 M:      Neil Horman <nhorman@tuxdriver.com>
3031 L:      linux-crypto@vger.kernel.org
3032 S:      Maintained
3033 F:      crypto/ansi_cprng.c
3034 F:      crypto/rng.c
3035
3036 CS5535 Audio ALSA driver
3037 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
3038 S:      Maintained
3039 F:      sound/pci/cs5535audio/
3040
3041 CW1200 WLAN driver
3042 M:      Solomon Peachy <pizza@shaftnet.org>
3043 S:      Maintained
3044 F:      drivers/net/wireless/cw1200/
3045
3046 CX18 VIDEO4LINUX DRIVER
3047 M:      Andy Walls <awalls@md.metrocast.net>
3048 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
3049 L:      linux-media@vger.kernel.org
3050 T:      git git://linuxtv.org/media_tree.git
3051 W:      http://linuxtv.org
3052 W:      http://www.ivtvdriver.org/index.php/Cx18
3053 S:      Maintained
3054 F:      Documentation/video4linux/cx18.txt
3055 F:      drivers/media/pci/cx18/
3056 F:      include/uapi/linux/ivtv*
3057
3058 CX2341X MPEG ENCODER HELPER MODULE
3059 M:      Hans Verkuil <hverkuil@xs4all.nl>
3060 L:      linux-media@vger.kernel.org
3061 T:      git git://linuxtv.org/media_tree.git
3062 W:      http://linuxtv.org
3063 S:      Maintained
3064 F:      drivers/media/common/cx2341x*
3065 F:      include/media/cx2341x*
3066
3067 CX24120 MEDIA DRIVER
3068 M:      Jemma Denson <jdenson@gmail.com>
3069 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
3070 L:      linux-media@vger.kernel.org
3071 W:      http://linuxtv.org/
3072 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3073 S:      Maintained
3074 F:      drivers/media/dvb-frontends/cx24120*
3075
3076 CX88 VIDEO4LINUX DRIVER
3077 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3078 L:      linux-media@vger.kernel.org
3079 W:      http://linuxtv.org
3080 T:      git git://linuxtv.org/media_tree.git
3081 S:      Odd fixes
3082 F:      Documentation/video4linux/cx88/
3083 F:      drivers/media/pci/cx88/
3084
3085 CXD2820R MEDIA DRIVER
3086 M:      Antti Palosaari <crope@iki.fi>
3087 L:      linux-media@vger.kernel.org
3088 W:      http://linuxtv.org/
3089 W:      http://palosaari.fi/linux/
3090 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3091 T:      git git://linuxtv.org/anttip/media_tree.git
3092 S:      Maintained
3093 F:      drivers/media/dvb-frontends/cxd2820r*
3094
3095 CXGB3 ETHERNET DRIVER (CXGB3)
3096 M:      Santosh Raspatur <santosh@chelsio.com>
3097 L:      netdev@vger.kernel.org
3098 W:      http://www.chelsio.com
3099 S:      Supported
3100 F:      drivers/net/ethernet/chelsio/cxgb3/
3101
3102 CXGB3 ISCSI DRIVER (CXGB3I)
3103 M:      Karen Xie <kxie@chelsio.com>
3104 L:      linux-scsi@vger.kernel.org
3105 W:      http://www.chelsio.com
3106 S:      Supported
3107 F:      drivers/scsi/cxgbi/cxgb3i
3108
3109 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
3110 M:      Steve Wise <swise@chelsio.com>
3111 L:      linux-rdma@vger.kernel.org
3112 W:      http://www.openfabrics.org
3113 S:      Supported
3114 F:      drivers/infiniband/hw/cxgb3/
3115
3116 CXGB4 ETHERNET DRIVER (CXGB4)
3117 M:      Hariprasad S <hariprasad@chelsio.com>
3118 L:      netdev@vger.kernel.org
3119 W:      http://www.chelsio.com
3120 S:      Supported
3121 F:      drivers/net/ethernet/chelsio/cxgb4/
3122
3123 CXGB4 ISCSI DRIVER (CXGB4I)
3124 M:      Karen Xie <kxie@chelsio.com>
3125 L:      linux-scsi@vger.kernel.org
3126 W:      http://www.chelsio.com
3127 S:      Supported
3128 F:      drivers/scsi/cxgbi/cxgb4i
3129
3130 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
3131 M:      Steve Wise <swise@chelsio.com>
3132 L:      linux-rdma@vger.kernel.org
3133 W:      http://www.openfabrics.org
3134 S:      Supported
3135 F:      drivers/infiniband/hw/cxgb4/
3136
3137 CXGB4VF ETHERNET DRIVER (CXGB4VF)
3138 M:      Casey Leedom <leedom@chelsio.com>
3139 L:      netdev@vger.kernel.org
3140 W:      http://www.chelsio.com
3141 S:      Supported
3142 F:      drivers/net/ethernet/chelsio/cxgb4vf/
3143
3144 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
3145 M:      Ian Munsie <imunsie@au1.ibm.com>
3146 M:      Michael Neuling <mikey@neuling.org>
3147 L:      linuxppc-dev@lists.ozlabs.org
3148 S:      Supported
3149 F:      drivers/misc/cxl/
3150 F:      include/misc/cxl*
3151 F:      include/uapi/misc/cxl.h
3152 F:      Documentation/powerpc/cxl.txt
3153 F:      Documentation/powerpc/cxl.txt
3154 F:      Documentation/ABI/testing/sysfs-class-cxl
3155
3156 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
3157 M:      Manoj N. Kumar <manoj@linux.vnet.ibm.com>
3158 M:      Matthew R. Ochs <mrochs@linux.vnet.ibm.com>
3159 L:      linux-scsi@vger.kernel.org
3160 S:      Supported
3161 F:      drivers/scsi/cxlflash/
3162 F:      include/uapi/scsi/cxlflash_ioctls.h
3163 F:      Documentation/powerpc/cxlflash.txt
3164
3165 STMMAC ETHERNET DRIVER
3166 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
3167 L:      netdev@vger.kernel.org
3168 W:      http://www.stlinux.com
3169 S:      Supported
3170 F:      drivers/net/ethernet/stmicro/stmmac/
3171
3172 CYBERPRO FB DRIVER
3173 M:      Russell King <linux@arm.linux.org.uk>
3174 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3175 W:      http://www.arm.linux.org.uk/
3176 S:      Maintained
3177 F:      drivers/video/fbdev/cyber2000fb.*
3178
3179 CYCLADES ASYNC MUX DRIVER
3180 W:      http://www.cyclades.com/
3181 S:      Orphan
3182 F:      drivers/tty/cyclades.c
3183 F:      include/linux/cyclades.h
3184 F:      include/uapi/linux/cyclades.h
3185
3186 CYCLADES PC300 DRIVER
3187 W:      http://www.cyclades.com/
3188 S:      Orphan
3189 F:      drivers/net/wan/pc300*
3190
3191 CYPRESS_FIRMWARE MEDIA DRIVER
3192 M:      Antti Palosaari <crope@iki.fi>
3193 L:      linux-media@vger.kernel.org
3194 W:      http://linuxtv.org/
3195 W:      http://palosaari.fi/linux/
3196 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3197 T:      git git://linuxtv.org/anttip/media_tree.git
3198 S:      Maintained
3199 F:      drivers/media/common/cypress_firmware*
3200
3201 CYTTSP TOUCHSCREEN DRIVER
3202 M:      Ferruh Yigit <fery@cypress.com>
3203 L:      linux-input@vger.kernel.org
3204 S:      Supported
3205 F:      drivers/input/touchscreen/cyttsp*
3206 F:      include/linux/input/cyttsp.h
3207
3208 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
3209 M:      Joshua Kinard <kumba@gentoo.org>
3210 S:      Maintained
3211 F:      drivers/rtc/rtc-ds1685.c
3212 F:      include/linux/rtc/ds1685.h
3213
3214 DAMA SLAVE for AX.25
3215 M:      Joerg Reuter <jreuter@yaina.de>
3216 W:      http://yaina.de/jreuter/
3217 W:      http://www.qsl.net/dl1bke/
3218 L:      linux-hams@vger.kernel.org
3219 S:      Maintained
3220 F:      net/ax25/af_ax25.c
3221 F:      net/ax25/ax25_dev.c
3222 F:      net/ax25/ax25_ds_*
3223 F:      net/ax25/ax25_in.c
3224 F:      net/ax25/ax25_out.c
3225 F:      net/ax25/ax25_timer.c
3226 F:      net/ax25/sysctl_net_ax25.c
3227
3228 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
3229 L:      netdev@vger.kernel.org
3230 S:      Orphan
3231 F:      Documentation/networking/dmfe.txt
3232 F:      drivers/net/ethernet/dec/tulip/dmfe.c
3233
3234 DC390/AM53C974 SCSI driver
3235 M:      Hannes Reinecke <hare@suse.com>
3236 L:      linux-scsi@vger.kernel.org
3237 S:      Maintained
3238 F:      drivers/scsi/am53c974.c
3239
3240 DC395x SCSI driver
3241 M:      Oliver Neukum <oliver@neukum.org>
3242 M:      Ali Akcaagac <aliakc@web.de>
3243 M:      Jamie Lenehan <lenehan@twibble.org>
3244 L:      dc395x@twibble.org
3245 W:      http://twibble.org/dist/dc395x/
3246 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
3247 S:      Maintained
3248 F:      Documentation/scsi/dc395x.txt
3249 F:      drivers/scsi/dc395x.*
3250
3251 DCCP PROTOCOL
3252 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
3253 L:      dccp@vger.kernel.org
3254 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
3255 S:      Maintained
3256 F:      include/linux/dccp.h
3257 F:      include/uapi/linux/dccp.h
3258 F:      include/linux/tfrc.h
3259 F:      net/dccp/
3260
3261 DECnet NETWORK LAYER
3262 W:      http://linux-decnet.sourceforge.net
3263 L:      linux-decnet-user@lists.sourceforge.net
3264 S:      Orphan
3265 F:      Documentation/networking/decnet.txt
3266 F:      net/decnet/
3267
3268 DECSTATION PLATFORM SUPPORT
3269 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3270 L:      linux-mips@linux-mips.org
3271 W:      http://www.linux-mips.org/wiki/DECstation
3272 S:      Maintained
3273 F:      arch/mips/dec/
3274 F:      arch/mips/include/asm/dec/
3275 F:      arch/mips/include/asm/mach-dec/
3276
3277 DEFXX FDDI NETWORK DRIVER
3278 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3279 S:      Maintained
3280 F:      drivers/net/fddi/defxx.*
3281
3282 DELL LAPTOP DRIVER
3283 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3284 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3285 L:      platform-driver-x86@vger.kernel.org
3286 S:      Maintained
3287 F:      drivers/platform/x86/dell-laptop.c
3288
3289 DELL LAPTOP RBTN DRIVER
3290 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3291 S:      Maintained
3292 F:      drivers/platform/x86/dell-rbtn.*
3293
3294 DELL LAPTOP FREEFALL DRIVER
3295 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3296 S:      Maintained
3297 F:      drivers/platform/x86/dell-smo8800.c
3298
3299 DELL LAPTOP SMM DRIVER
3300 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3301 S:      Maintained
3302 F:      drivers/hwmon/dell-smm-hwmon.c
3303 F:      include/uapi/linux/i8k.h
3304
3305 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
3306 M:      Doug Warzecha <Douglas_Warzecha@dell.com>
3307 S:      Maintained
3308 F:      Documentation/dcdbas.txt
3309 F:      drivers/firmware/dcdbas.*
3310
3311 DELL WMI EXTRAS DRIVER
3312 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3313 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3314 S:      Maintained
3315 F:      drivers/platform/x86/dell-wmi.c
3316
3317 DESIGNWARE USB2 DRD IP DRIVER
3318 M:      John Youn <johnyoun@synopsys.com>
3319 L:      linux-usb@vger.kernel.org
3320 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3321 S:      Maintained
3322 F:      drivers/usb/dwc2/
3323
3324 DESIGNWARE USB3 DRD IP DRIVER
3325 M:      Felipe Balbi <balbi@ti.com>
3326 L:      linux-usb@vger.kernel.org
3327 L:      linux-omap@vger.kernel.org
3328 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3329 S:      Maintained
3330 F:      drivers/usb/dwc3/
3331
3332 DEVICE COREDUMP (DEV_COREDUMP)
3333 M:      Johannes Berg <johannes@sipsolutions.net>
3334 L:      linux-kernel@vger.kernel.org
3335 S:      Maintained
3336 F:      drivers/base/devcoredump.c
3337 F:      include/linux/devcoredump.h
3338
3339 DEVICE FREQUENCY (DEVFREQ)
3340 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
3341 M:      Kyungmin Park <kyungmin.park@samsung.com>
3342 L:      linux-pm@vger.kernel.org
3343 S:      Maintained
3344 F:      drivers/devfreq/
3345
3346 DEVICE NUMBER REGISTRY
3347 M:      Torben Mathiasen <device@lanana.org>
3348 W:      http://lanana.org/docs/device-list/index.html
3349 S:      Maintained
3350
3351 DEVICE-MAPPER  (LVM)
3352 M:      Alasdair Kergon <agk@redhat.com>
3353 M:      Mike Snitzer <snitzer@redhat.com>
3354 M:      dm-devel@redhat.com
3355 L:      dm-devel@redhat.com
3356 W:      http://sources.redhat.com/dm
3357 Q:      http://patchwork.kernel.org/project/dm-devel/list/
3358 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
3359 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
3360 S:      Maintained
3361 F:      Documentation/device-mapper/
3362 F:      drivers/md/dm*
3363 F:      drivers/md/persistent-data/
3364 F:      include/linux/device-mapper.h
3365 F:      include/linux/dm-*.h
3366 F:      include/uapi/linux/dm-*.h
3367
3368 DIALOG SEMICONDUCTOR DRIVERS
3369 M:      Support Opensource <support.opensource@diasemi.com>
3370 W:      http://www.dialog-semiconductor.com/products
3371 S:      Supported
3372 F:      Documentation/hwmon/da90??
3373 F:      drivers/gpio/gpio-da90??.c
3374 F:      drivers/hwmon/da90??-hwmon.c
3375 F:      drivers/iio/adc/da91??-*.c
3376 F:      drivers/input/misc/da90??_onkey.c
3377 F:      drivers/input/touchscreen/da9052_tsi.c
3378 F:      drivers/leds/leds-da90??.c
3379 F:      drivers/mfd/da903x.c
3380 F:      drivers/mfd/da90??-*.c
3381 F:      drivers/mfd/da91??-*.c
3382 F:      drivers/power/da9052-battery.c
3383 F:      drivers/power/da91??-*.c
3384 F:      drivers/regulator/da903x.c
3385 F:      drivers/regulator/da9???-regulator.[ch]
3386 F:      drivers/rtc/rtc-da90??.c
3387 F:      drivers/video/backlight/da90??_bl.c
3388 F:      drivers/watchdog/da90??_wdt.c
3389 F:      include/linux/mfd/da903x.h
3390 F:      include/linux/mfd/da9052/
3391 F:      include/linux/mfd/da9055/
3392 F:      include/linux/mfd/da9063/
3393 F:      include/linux/mfd/da9150/
3394 F:      include/sound/da[79]*.h
3395 F:      sound/soc/codecs/da[79]*.[ch]
3396
3397 DIGI NEO AND CLASSIC PCI PRODUCTS
3398 M:      Lidza Louina <lidza.louina@gmail.com>
3399 M:      Mark Hounschell <markh@compro.net>
3400 L:      driverdev-devel@linuxdriverproject.org
3401 S:      Maintained
3402 F:      drivers/staging/dgnc/
3403
3404 DIGI EPCA PCI PRODUCTS
3405 M:      Lidza Louina <lidza.louina@gmail.com>
3406 M:      Mark Hounschell <markh@compro.net>
3407 M:      Daeseok Youn <daeseok.youn@gmail.com>
3408 L:      driverdev-devel@linuxdriverproject.org
3409 S:      Maintained
3410 F:      drivers/staging/dgap/
3411
3412 DIOLAN U2C-12 I2C DRIVER
3413 M:      Guenter Roeck <linux@roeck-us.net>
3414 L:      linux-i2c@vger.kernel.org
3415 S:      Maintained
3416 F:      drivers/i2c/busses/i2c-diolan-u2c.c
3417
3418 DIRECT ACCESS (DAX)
3419 M:      Matthew Wilcox <willy@linux.intel.com>
3420 L:      linux-fsdevel@vger.kernel.org
3421 S:      Supported
3422 F:      fs/dax.c
3423
3424 DIRECTORY NOTIFICATION (DNOTIFY)
3425 M:      Eric Paris <eparis@parisplace.org>
3426 S:      Maintained
3427 F:      Documentation/filesystems/dnotify.txt
3428 F:      fs/notify/dnotify/
3429 F:      include/linux/dnotify.h
3430
3431 DISK GEOMETRY AND PARTITION HANDLING
3432 M:      Andries Brouwer <aeb@cwi.nl>
3433 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
3434 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
3435 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
3436 S:      Maintained
3437
3438 DISKQUOTA
3439 M:      Jan Kara <jack@suse.com>
3440 S:      Maintained
3441 F:      Documentation/filesystems/quota.txt
3442 F:      fs/quota/
3443 F:      include/linux/quota*.h
3444 F:      include/uapi/linux/quota*.h
3445
3446 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
3447 M:      Bernie Thompson <bernie@plugable.com>
3448 L:      linux-fbdev@vger.kernel.org
3449 S:      Maintained
3450 W:      http://plugable.com/category/projects/udlfb/
3451 F:      drivers/video/fbdev/udlfb.c
3452 F:      include/video/udlfb.h
3453 F:      Documentation/fb/udlfb.txt
3454
3455 DISTRIBUTED LOCK MANAGER (DLM)
3456 M:      Christine Caulfield <ccaulfie@redhat.com>
3457 M:      David Teigland <teigland@redhat.com>
3458 L:      cluster-devel@redhat.com
3459 W:      http://sources.redhat.com/cluster/
3460 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
3461 S:      Supported
3462 F:      fs/dlm/
3463
3464 DMA BUFFER SHARING FRAMEWORK
3465 M:      Sumit Semwal <sumit.semwal@linaro.org>
3466 S:      Maintained
3467 L:      linux-media@vger.kernel.org
3468 L:      dri-devel@lists.freedesktop.org
3469 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
3470 F:      drivers/dma-buf/
3471 F:      include/linux/dma-buf*
3472 F:      include/linux/reservation.h
3473 F:      include/linux/*fence.h
3474 F:      Documentation/dma-buf-sharing.txt
3475 T:      git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
3476
3477 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
3478 M:      Vinod Koul <vinod.koul@intel.com>
3479 L:      dmaengine@vger.kernel.org
3480 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
3481 S:      Maintained
3482 F:      drivers/dma/
3483 F:      include/linux/dmaengine.h
3484 F:      Documentation/dmaengine/
3485 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
3486
3487 DME1737 HARDWARE MONITOR DRIVER
3488 M:      Juerg Haefliger <juergh@gmail.com>
3489 L:      lm-sensors@lm-sensors.org
3490 S:      Maintained
3491 F:      Documentation/hwmon/dme1737
3492 F:      drivers/hwmon/dme1737.c
3493
3494 DMI/SMBIOS SUPPORT
3495 M:      Jean Delvare <jdelvare@suse.com>
3496 S:      Maintained
3497 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
3498 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
3499 F:      drivers/firmware/dmi-id.c
3500 F:      drivers/firmware/dmi_scan.c
3501 F:      include/linux/dmi.h
3502
3503 DOCUMENTATION
3504 M:      Jonathan Corbet <corbet@lwn.net>
3505 L:      linux-doc@vger.kernel.org
3506 S:      Maintained
3507 F:      Documentation/
3508 X:      Documentation/ABI/
3509 X:      Documentation/devicetree/
3510 X:      Documentation/acpi
3511 X:      Documentation/power
3512 X:      Documentation/spi
3513 X:      Documentation/DocBook/media
3514 T:      git git://git.lwn.net/linux-2.6.git docs-next
3515
3516 DOUBLETALK DRIVER
3517 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
3518 L:      blinux-list@redhat.com
3519 S:      Maintained
3520 F:      drivers/char/dtlk.c
3521 F:      include/linux/dtlk.h
3522
3523 DPT_I2O SCSI RAID DRIVER
3524 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
3525 L:      linux-scsi@vger.kernel.org
3526 W:      http://www.adaptec.com/
3527 S:      Maintained
3528 F:      drivers/scsi/dpt*
3529 F:      drivers/scsi/dpt/
3530
3531 DRBD DRIVER
3532 P:      Philipp Reisner
3533 P:      Lars Ellenberg
3534 M:      drbd-dev@lists.linbit.com
3535 L:      drbd-user@lists.linbit.com
3536 W:      http://www.drbd.org
3537 T:      git git://git.drbd.org/linux-2.6-drbd.git drbd
3538 T:      git git://git.drbd.org/drbd-8.3.git
3539 S:      Supported
3540 F:      drivers/block/drbd/
3541 F:      lib/lru_cache.c
3542 F:      Documentation/blockdev/drbd/
3543
3544 DRIVER CORE, KOBJECTS, DEBUGFS, KERNFS AND SYSFS
3545 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3546 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
3547 S:      Supported
3548 F:      Documentation/kobject.txt
3549 F:      drivers/base/
3550 F:      fs/debugfs/
3551 F:      fs/kernfs/
3552 F:      fs/sysfs/
3553 F:      include/linux/debugfs.h
3554 F:      include/linux/kobj*
3555 F:      lib/kobj*
3556
3557 DRM DRIVERS
3558 M:      David Airlie <airlied@linux.ie>
3559 L:      dri-devel@lists.freedesktop.org
3560 T:      git git://people.freedesktop.org/~airlied/linux
3561 S:      Maintained
3562 F:      drivers/gpu/drm/
3563 F:      drivers/gpu/vga/
3564 F:      include/drm/
3565 F:      include/uapi/drm/
3566
3567 RADEON DRM DRIVERS
3568 M:      Alex Deucher <alexander.deucher@amd.com>
3569 M:      Christian König <christian.koenig@amd.com>
3570 L:      dri-devel@lists.freedesktop.org
3571 T:      git git://people.freedesktop.org/~agd5f/linux
3572 S:      Supported
3573 F:      drivers/gpu/drm/radeon/
3574 F:      include/uapi/drm/radeon*
3575
3576 DRM PANEL DRIVERS
3577 M:      Thierry Reding <thierry.reding@gmail.com>
3578 L:      dri-devel@lists.freedesktop.org
3579 T:      git git://anongit.freedesktop.org/tegra/linux.git
3580 S:      Maintained
3581 F:      drivers/gpu/drm/drm_panel.c
3582 F:      drivers/gpu/drm/panel/
3583 F:      include/drm/drm_panel.h
3584 F:      Documentation/devicetree/bindings/panel/
3585
3586 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
3587 M:      Daniel Vetter <daniel.vetter@intel.com>
3588 M:      Jani Nikula <jani.nikula@linux.intel.com>
3589 L:      intel-gfx@lists.freedesktop.org
3590 L:      dri-devel@lists.freedesktop.org
3591 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
3592 T:      git git://anongit.freedesktop.org/drm-intel
3593 S:      Supported
3594 F:      drivers/gpu/drm/i915/
3595 F:      include/drm/i915*
3596 F:      include/uapi/drm/i915*
3597
3598 DRM DRIVERS FOR EXYNOS
3599 M:      Inki Dae <inki.dae@samsung.com>
3600 M:      Joonyoung Shim <jy0922.shim@samsung.com>
3601 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
3602 M:      Kyungmin Park <kyungmin.park@samsung.com>
3603 L:      dri-devel@lists.freedesktop.org
3604 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
3605 S:      Supported
3606 F:      drivers/gpu/drm/exynos/
3607 F:      include/drm/exynos*
3608 F:      include/uapi/drm/exynos*
3609
3610 DRM DRIVERS FOR FREESCALE DCU
3611 M:      Jianwei Wang <jianwei.wang.chn@gmail.com>
3612 M:      Alison Wang <alison.wang@freescale.com>
3613 L:      dri-devel@lists.freedesktop.org
3614 S:      Supported
3615 F:      drivers/gpu/drm/fsl-dcu/
3616 F:      Documentation/devicetree/bindings/video/fsl,dcu.txt
3617 F:      Documentation/devicetree/bindings/panel/nec,nl4827hc19_05b.txt
3618
3619 DRM DRIVERS FOR FREESCALE IMX
3620 M:      Philipp Zabel <p.zabel@pengutronix.de>
3621 L:      dri-devel@lists.freedesktop.org
3622 S:      Maintained
3623 F:      drivers/gpu/drm/imx/
3624 F:      Documentation/devicetree/bindings/drm/imx/
3625
3626 DRM DRIVERS FOR NVIDIA TEGRA
3627 M:      Thierry Reding <thierry.reding@gmail.com>
3628 M:      Terje Bergström <tbergstrom@nvidia.com>
3629 L:      dri-devel@lists.freedesktop.org
3630 L:      linux-tegra@vger.kernel.org
3631 T:      git git://anongit.freedesktop.org/tegra/linux.git
3632 S:      Supported
3633 F:      drivers/gpu/drm/tegra/
3634 F:      drivers/gpu/host1x/
3635 F:      include/linux/host1x.h
3636 F:      include/uapi/drm/tegra_drm.h
3637 F:      Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt
3638
3639 DRM DRIVERS FOR RENESAS
3640 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
3641 L:      dri-devel@lists.freedesktop.org
3642 L:      linux-sh@vger.kernel.org
3643 T:      git git://people.freedesktop.org/~airlied/linux
3644 S:      Supported
3645 F:      drivers/gpu/drm/rcar-du/
3646 F:      drivers/gpu/drm/shmobile/
3647 F:      include/linux/platform_data/shmob_drm.h
3648
3649 DRM DRIVERS FOR ROCKCHIP
3650 M:      Mark Yao <mark.yao@rock-chips.com>
3651 L:      dri-devel@lists.freedesktop.org
3652 S:      Maintained
3653 F:      drivers/gpu/drm/rockchip/
3654 F:      Documentation/devicetree/bindings/video/rockchip*
3655
3656 DRM DRIVERS FOR STI
3657 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
3658 M:      Vincent Abriou <vincent.abriou@st.com>
3659 L:      dri-devel@lists.freedesktop.org
3660 T:      git http://git.linaro.org/people/benjamin.gaignard/kernel.git
3661 S:      Maintained
3662 F:      drivers/gpu/drm/sti
3663 F:      Documentation/devicetree/bindings/gpu/st,stih4xx.txt
3664
3665 DSBR100 USB FM RADIO DRIVER
3666 M:      Alexey Klimov <klimov.linux@gmail.com>
3667 L:      linux-media@vger.kernel.org
3668 T:      git git://linuxtv.org/media_tree.git
3669 S:      Maintained
3670 F:      drivers/media/radio/dsbr100.c
3671
3672 DSCC4 DRIVER
3673 M:      Francois Romieu <romieu@fr.zoreil.com>
3674 L:      netdev@vger.kernel.org
3675 S:      Maintained
3676 F:      drivers/net/wan/dscc4.c
3677
3678 DT3155 MEDIA DRIVER
3679 M:      Hans Verkuil <hverkuil@xs4all.nl>
3680 L:      linux-media@vger.kernel.org
3681 T:      git git://linuxtv.org/media_tree.git
3682 W:      http://linuxtv.org
3683 S:      Odd Fixes
3684 F:      drivers/media/pci/dt3155/
3685
3686 DVB_USB_AF9015 MEDIA DRIVER
3687 M:      Antti Palosaari <crope@iki.fi>
3688 L:      linux-media@vger.kernel.org
3689 W:      http://linuxtv.org/
3690 W:      http://palosaari.fi/linux/
3691 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3692 T:      git git://linuxtv.org/anttip/media_tree.git
3693 S:      Maintained
3694 F:      drivers/media/usb/dvb-usb-v2/af9015*
3695
3696 DVB_USB_AF9035 MEDIA DRIVER
3697 M:      Antti Palosaari <crope@iki.fi>
3698 L:      linux-media@vger.kernel.org
3699 W:      http://linuxtv.org/
3700 W:      http://palosaari.fi/linux/
3701 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3702 T:      git git://linuxtv.org/anttip/media_tree.git
3703 S:      Maintained
3704 F:      drivers/media/usb/dvb-usb-v2/af9035*
3705
3706 DVB_USB_ANYSEE MEDIA DRIVER
3707 M:      Antti Palosaari <crope@iki.fi>
3708 L:      linux-media@vger.kernel.org
3709 W:      http://linuxtv.org/
3710 W:      http://palosaari.fi/linux/
3711 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3712 T:      git git://linuxtv.org/anttip/media_tree.git
3713 S:      Maintained
3714 F:      drivers/media/usb/dvb-usb-v2/anysee*
3715
3716 DVB_USB_AU6610 MEDIA DRIVER
3717 M:      Antti Palosaari <crope@iki.fi>
3718 L:      linux-media@vger.kernel.org
3719 W:      http://linuxtv.org/
3720 W:      http://palosaari.fi/linux/
3721 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3722 T:      git git://linuxtv.org/anttip/media_tree.git
3723 S:      Maintained
3724 F:      drivers/media/usb/dvb-usb-v2/au6610*
3725
3726 DVB_USB_CE6230 MEDIA DRIVER
3727 M:      Antti Palosaari <crope@iki.fi>
3728 L:      linux-media@vger.kernel.org
3729 W:      http://linuxtv.org/
3730 W:      http://palosaari.fi/linux/
3731 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3732 T:      git git://linuxtv.org/anttip/media_tree.git
3733 S:      Maintained
3734 F:      drivers/media/usb/dvb-usb-v2/ce6230*
3735
3736 DVB_USB_CXUSB MEDIA DRIVER
3737 M:      Michael Krufky <mkrufky@linuxtv.org>
3738 L:      linux-media@vger.kernel.org
3739 W:      http://linuxtv.org/
3740 W:      http://github.com/mkrufky
3741 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3742 T:      git git://linuxtv.org/media_tree.git
3743 S:      Maintained
3744 F:      drivers/media/usb/dvb-usb/cxusb*
3745
3746 DVB_USB_EC168 MEDIA DRIVER
3747 M:      Antti Palosaari <crope@iki.fi>
3748 L:      linux-media@vger.kernel.org
3749 W:      http://linuxtv.org/
3750 W:      http://palosaari.fi/linux/
3751 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3752 T:      git git://linuxtv.org/anttip/media_tree.git
3753 S:      Maintained
3754 F:      drivers/media/usb/dvb-usb-v2/ec168*
3755
3756 DVB_USB_GL861 MEDIA DRIVER
3757 M:      Antti Palosaari <crope@iki.fi>
3758 L:      linux-media@vger.kernel.org
3759 W:      http://linuxtv.org/
3760 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3761 T:      git git://linuxtv.org/anttip/media_tree.git
3762 S:      Maintained
3763 F:      drivers/media/usb/dvb-usb-v2/gl861*
3764
3765 DVB_USB_MXL111SF MEDIA DRIVER
3766 M:      Michael Krufky <mkrufky@linuxtv.org>
3767 L:      linux-media@vger.kernel.org
3768 W:      http://linuxtv.org/
3769 W:      http://github.com/mkrufky
3770 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3771 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
3772 S:      Maintained
3773 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
3774
3775 DVB_USB_RTL28XXU MEDIA DRIVER
3776 M:      Antti Palosaari <crope@iki.fi>
3777 L:      linux-media@vger.kernel.org
3778 W:      http://linuxtv.org/
3779 W:      http://palosaari.fi/linux/
3780 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3781 T:      git git://linuxtv.org/anttip/media_tree.git
3782 S:      Maintained
3783 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
3784
3785 DVB_USB_V2 MEDIA DRIVER
3786 M:      Antti Palosaari <crope@iki.fi>
3787 L:      linux-media@vger.kernel.org
3788 W:      http://linuxtv.org/
3789 W:      http://palosaari.fi/linux/
3790 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3791 T:      git git://linuxtv.org/anttip/media_tree.git
3792 S:      Maintained
3793 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
3794 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
3795
3796 DYNAMIC DEBUG
3797 M:      Jason Baron <jbaron@akamai.com>
3798 S:      Maintained
3799 F:      lib/dynamic_debug.c
3800 F:      include/linux/dynamic_debug.h
3801
3802 DZ DECSTATION DZ11 SERIAL DRIVER
3803 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3804 S:      Maintained
3805 F:      drivers/tty/serial/dz.*
3806
3807 E3X0 POWER BUTTON DRIVER
3808 M:      Moritz Fischer <moritz.fischer@ettus.com>
3809 L:      usrp-users@lists.ettus.com
3810 W:      http://www.ettus.com
3811 S:      Supported
3812 F:      drivers/input/misc/e3x0-button.c
3813 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
3814
3815 E4000 MEDIA DRIVER
3816 M:      Antti Palosaari <crope@iki.fi>
3817 L:      linux-media@vger.kernel.org
3818 W:      http://linuxtv.org/
3819 W:      http://palosaari.fi/linux/
3820 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3821 T:      git git://linuxtv.org/anttip/media_tree.git
3822 S:      Maintained
3823 F:      drivers/media/tuners/e4000*
3824
3825 EATA ISA/EISA/PCI SCSI DRIVER
3826 M:      Dario Ballabio <ballabio_dario@emc.com>
3827 L:      linux-scsi@vger.kernel.org
3828 S:      Maintained
3829 F:      drivers/scsi/eata.c
3830
3831 EC100 MEDIA DRIVER
3832 M:      Antti Palosaari <crope@iki.fi>
3833 L:      linux-media@vger.kernel.org
3834 W:      http://linuxtv.org/
3835 W:      http://palosaari.fi/linux/
3836 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3837 T:      git git://linuxtv.org/anttip/media_tree.git
3838 S:      Maintained
3839 F:      drivers/media/dvb-frontends/ec100*
3840
3841 ECRYPT FILE SYSTEM
3842 M:      Tyler Hicks <tyhicks@canonical.com>
3843 L:      ecryptfs@vger.kernel.org
3844 W:      http://ecryptfs.org
3845 W:      https://launchpad.net/ecryptfs
3846 S:      Supported
3847 F:      Documentation/filesystems/ecryptfs.txt
3848 F:      fs/ecryptfs/
3849
3850 EDAC-CORE
3851 M:      Doug Thompson <dougthompson@xmission.com>
3852 M:      Borislav Petkov <bp@alien8.de>
3853 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3854 L:      linux-edac@vger.kernel.org
3855 W:      bluesmoke.sourceforge.net
3856 T:      git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git#for-next
3857 T:      git://git.kernel.org/pub/linux/kernel/git/mchehab/linux-edac.git#linux_next
3858 S:      Supported
3859 F:      Documentation/edac.txt
3860 F:      drivers/edac/
3861 F:      include/linux/edac.h
3862
3863 EDAC-AMD64
3864 M:      Doug Thompson <dougthompson@xmission.com>
3865 M:      Borislav Petkov <bp@alien8.de>
3866 L:      linux-edac@vger.kernel.org
3867 W:      bluesmoke.sourceforge.net
3868 S:      Maintained
3869 F:      drivers/edac/amd64_edac*
3870
3871 EDAC-CALXEDA
3872 M:      Doug Thompson <dougthompson@xmission.com>
3873 M:      Robert Richter <rric@kernel.org>
3874 L:      linux-edac@vger.kernel.org
3875 W:      bluesmoke.sourceforge.net
3876 S:      Maintained
3877 F:      drivers/edac/highbank*
3878
3879 EDAC-CAVIUM
3880 M:      Ralf Baechle <ralf@linux-mips.org>
3881 M:      David Daney <david.daney@cavium.com>
3882 L:      linux-edac@vger.kernel.org
3883 L:      linux-mips@linux-mips.org
3884 W:      bluesmoke.sourceforge.net
3885 S:      Supported
3886 F:      drivers/edac/octeon_edac*
3887
3888 EDAC-E752X
3889 M:      Mark Gross <mark.gross@intel.com>
3890 M:      Doug Thompson <dougthompson@xmission.com>
3891 L:      linux-edac@vger.kernel.org
3892 W:      bluesmoke.sourceforge.net
3893 S:      Maintained
3894 F:      drivers/edac/e752x_edac.c
3895
3896 EDAC-E7XXX
3897 M:      Doug Thompson <dougthompson@xmission.com>
3898 L:      linux-edac@vger.kernel.org
3899 W:      bluesmoke.sourceforge.net
3900 S:      Maintained
3901 F:      drivers/edac/e7xxx_edac.c
3902
3903 EDAC-GHES
3904 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3905 L:      linux-edac@vger.kernel.org
3906 W:      bluesmoke.sourceforge.net
3907 S:      Maintained
3908 F:      drivers/edac/ghes_edac.c
3909
3910 EDAC-I82443BXGX
3911 M:      Tim Small <tim@buttersideup.com>
3912 L:      linux-edac@vger.kernel.org
3913 W:      bluesmoke.sourceforge.net
3914 S:      Maintained
3915 F:      drivers/edac/i82443bxgx_edac.c
3916
3917 EDAC-I3000
3918 M:      Jason Uhlenkott <juhlenko@akamai.com>
3919 L:      linux-edac@vger.kernel.org
3920 W:      bluesmoke.sourceforge.net
3921 S:      Maintained
3922 F:      drivers/edac/i3000_edac.c
3923
3924 EDAC-I5000
3925 M:      Doug Thompson <dougthompson@xmission.com>
3926 L:      linux-edac@vger.kernel.org
3927 W:      bluesmoke.sourceforge.net
3928 S:      Maintained
3929 F:      drivers/edac/i5000_edac.c
3930
3931 EDAC-I5400
3932 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3933 L:      linux-edac@vger.kernel.org
3934 W:      bluesmoke.sourceforge.net
3935 S:      Maintained
3936 F:      drivers/edac/i5400_edac.c
3937
3938 EDAC-I7300
3939 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3940 L:      linux-edac@vger.kernel.org
3941 W:      bluesmoke.sourceforge.net
3942 S:      Maintained
3943 F:      drivers/edac/i7300_edac.c
3944
3945 EDAC-I7CORE
3946 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3947 L:      linux-edac@vger.kernel.org
3948 W:      bluesmoke.sourceforge.net
3949 S:      Maintained
3950 F:      drivers/edac/i7core_edac.c
3951
3952 EDAC-I82975X
3953 M:      Ranganathan Desikan <ravi@jetztechnologies.com>
3954 M:      "Arvind R." <arvino55@gmail.com>
3955 L:      linux-edac@vger.kernel.org
3956 W:      bluesmoke.sourceforge.net
3957 S:      Maintained
3958 F:      drivers/edac/i82975x_edac.c
3959
3960 EDAC-IE31200
3961 M:      Jason Baron <jbaron@akamai.com>
3962 L:      linux-edac@vger.kernel.org
3963 W:      bluesmoke.sourceforge.net
3964 S:      Maintained
3965 F:      drivers/edac/ie31200_edac.c
3966
3967 EDAC-MPC85XX
3968 M:      Johannes Thumshirn <morbidrsa@gmail.com>
3969 L:      linux-edac@vger.kernel.org
3970 W:      bluesmoke.sourceforge.net
3971 S:      Maintained
3972 F:      drivers/edac/mpc85xx_edac.[ch]
3973
3974 EDAC-PASEMI
3975 M:      Egor Martovetsky <egor@pasemi.com>
3976 L:      linux-edac@vger.kernel.org
3977 W:      bluesmoke.sourceforge.net
3978 S:      Maintained
3979 F:      drivers/edac/pasemi_edac.c
3980
3981 EDAC-R82600
3982 M:      Tim Small <tim@buttersideup.com>
3983 L:      linux-edac@vger.kernel.org
3984 W:      bluesmoke.sourceforge.net
3985 S:      Maintained
3986 F:      drivers/edac/r82600_edac.c
3987
3988 EDAC-SBRIDGE
3989 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3990 L:      linux-edac@vger.kernel.org
3991 W:      bluesmoke.sourceforge.net
3992 S:      Maintained
3993 F:      drivers/edac/sb_edac.c
3994
3995 EDAC-XGENE
3996 APPLIED MICRO (APM) X-GENE SOC EDAC
3997 M:     Loc Ho <lho@apm.com>
3998 S:     Supported
3999 F:     drivers/edac/xgene_edac.c
4000 F:     Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
4001
4002 EDIROL UA-101/UA-1000 DRIVER
4003 M:      Clemens Ladisch <clemens@ladisch.de>
4004 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4005 T:      git git://git.alsa-project.org/alsa-kernel.git
4006 S:      Maintained
4007 F:      sound/usb/misc/ua101.c
4008
4009 EXTENSIBLE FIRMWARE INTERFACE (EFI)
4010 M:      Matt Fleming <matt.fleming@intel.com>
4011 L:      linux-efi@vger.kernel.org
4012 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4013 S:      Maintained
4014 F:      Documentation/efi-stub.txt
4015 F:      arch/ia64/kernel/efi.c
4016 F:      arch/x86/boot/compressed/eboot.[ch]
4017 F:      arch/x86/include/asm/efi.h
4018 F:      arch/x86/platform/efi/*
4019 F:      drivers/firmware/efi/*
4020 F:      include/linux/efi*.h
4021
4022 EFI VARIABLE FILESYSTEM
4023 M:      Matthew Garrett <matthew.garrett@nebula.com>
4024 M:      Jeremy Kerr <jk@ozlabs.org>
4025 M:      Matt Fleming <matt.fleming@intel.com>
4026 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4027 L:      linux-efi@vger.kernel.org
4028 S:      Maintained
4029 F:      fs/efivarfs/
4030
4031 EFIFB FRAMEBUFFER DRIVER
4032 L:      linux-fbdev@vger.kernel.org
4033 M:      Peter Jones <pjones@redhat.com>
4034 S:      Maintained
4035 F:      drivers/video/fbdev/efifb.c
4036
4037 EFS FILESYSTEM
4038 W:      http://aeschi.ch.eu.org/efs/
4039 S:      Orphan
4040 F:      fs/efs/
4041
4042 EHCA (IBM GX bus InfiniBand adapter) DRIVER
4043 M:      Hoang-Nam Nguyen <hnguyen@de.ibm.com>
4044 M:      Christoph Raisch <raisch@de.ibm.com>
4045 L:      linux-rdma@vger.kernel.org
4046 S:      Supported
4047 F:      drivers/infiniband/hw/ehca/
4048
4049 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
4050 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
4051 L:      netdev@vger.kernel.org
4052 S:      Maintained
4053 F:      drivers/net/ethernet/ibm/ehea/
4054
4055 EM28XX VIDEO4LINUX DRIVER
4056 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4057 L:      linux-media@vger.kernel.org
4058 W:      http://linuxtv.org
4059 T:      git git://linuxtv.org/media_tree.git
4060 S:      Maintained
4061 F:      drivers/media/usb/em28xx/
4062
4063 EMBEDDED LINUX
4064 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
4065 M:      Matt Mackall <mpm@selenic.com>
4066 M:      David Woodhouse <dwmw2@infradead.org>
4067 L:      linux-embedded@vger.kernel.org
4068 S:      Maintained
4069
4070 EMULEX/AVAGO LPFC FC/FCOE SCSI DRIVER
4071 M:      James Smart <james.smart@avagotech.com>
4072 M:      Dick Kennedy <dick.kennedy@avagotech.com>
4073 L:      linux-scsi@vger.kernel.org
4074 W:      http://www.avagotech.com
4075 S:      Supported
4076 F:      drivers/scsi/lpfc/
4077
4078 ENE CB710 FLASH CARD READER DRIVER
4079 M:      MichaÅ‚ MirosÅ‚aw <mirq-linux@rere.qmqm.pl>
4080 S:      Maintained
4081 F:      drivers/misc/cb710/
4082 F:      drivers/mmc/host/cb710-mmc.*
4083 F:      include/linux/cb710.h
4084
4085 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
4086 M:      Maxim Levitsky <maximlevitsky@gmail.com>
4087 S:      Maintained
4088 F:      drivers/media/rc/ene_ir.*
4089
4090 ENHANCED ERROR HANDLING (EEH)
4091 M:      Gavin Shan <shangw@linux.vnet.ibm.com>
4092 L:      linuxppc-dev@lists.ozlabs.org
4093 S:      Supported
4094 F:      Documentation/powerpc/eeh-pci-error-recovery.txt
4095 F:      arch/powerpc/kernel/eeh*.c
4096
4097 EPSON S1D13XXX FRAMEBUFFER DRIVER
4098 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
4099 S:      Maintained
4100 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
4101 F:      drivers/video/fbdev/s1d13xxxfb.c
4102 F:      include/video/s1d13xxxfb.h
4103
4104 ET131X NETWORK DRIVER
4105 M:      Mark Einon <mark.einon@gmail.com>
4106 S:      Odd Fixes
4107 F:      drivers/net/ethernet/agere/
4108
4109 ETHERNET BRIDGE
4110 M:      Stephen Hemminger <stephen@networkplumber.org>
4111 L:      bridge@lists.linux-foundation.org
4112 L:      netdev@vger.kernel.org
4113 W:      http://www.linuxfoundation.org/en/Net:Bridge
4114 S:      Maintained
4115 F:      include/linux/netfilter_bridge/
4116 F:      net/bridge/
4117
4118 ETHERNET PHY LIBRARY
4119 M:      Florian Fainelli <f.fainelli@gmail.com>
4120 L:      netdev@vger.kernel.org
4121 S:      Maintained
4122 F:      include/linux/phy.h
4123 F:      include/linux/phy_fixed.h
4124 F:      drivers/net/phy/
4125 F:      Documentation/networking/phy.txt
4126 F:      drivers/of/of_mdio.c
4127 F:      drivers/of/of_net.c
4128
4129 EXT2 FILE SYSTEM
4130 M:      Jan Kara <jack@suse.com>
4131 L:      linux-ext4@vger.kernel.org
4132 S:      Maintained
4133 F:      Documentation/filesystems/ext2.txt
4134 F:      fs/ext2/
4135 F:      include/linux/ext2*
4136
4137 EXT4 FILE SYSTEM
4138 M:      "Theodore Ts'o" <tytso@mit.edu>
4139 M:      Andreas Dilger <adilger.kernel@dilger.ca>
4140 L:      linux-ext4@vger.kernel.org
4141 W:      http://ext4.wiki.kernel.org
4142 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
4143 S:      Maintained
4144 F:      Documentation/filesystems/ext4.txt
4145 F:      fs/ext4/
4146
4147 Extended Verification Module (EVM)
4148 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
4149 L:      linux-ima-devel@lists.sourceforge.net
4150 L:      linux-security-module@vger.kernel.org
4151 S:      Supported
4152 F:      security/integrity/evm/
4153
4154 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
4155 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
4156 M:      Chanwoo Choi <cw00.choi@samsung.com>
4157 L:      linux-kernel@vger.kernel.org
4158 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
4159 S:      Maintained
4160 F:      drivers/extcon/
4161 F:      Documentation/extcon/
4162
4163 EXYNOS DP DRIVER
4164 M:      Jingoo Han <jingoohan1@gmail.com>
4165 L:      dri-devel@lists.freedesktop.org
4166 S:      Maintained
4167 F:      drivers/gpu/drm/exynos/exynos_dp*
4168
4169 EXYNOS MIPI DISPLAY DRIVERS
4170 M:      Inki Dae <inki.dae@samsung.com>
4171 M:      Donghwa Lee <dh09.lee@samsung.com>
4172 M:      Kyungmin Park <kyungmin.park@samsung.com>
4173 L:      linux-fbdev@vger.kernel.org
4174 S:      Maintained
4175 F:      drivers/video/fbdev/exynos/exynos_mipi*
4176 F:      include/video/exynos_mipi*
4177
4178 F71805F HARDWARE MONITORING DRIVER
4179 M:      Jean Delvare <jdelvare@suse.com>
4180 L:      lm-sensors@lm-sensors.org
4181 S:      Maintained
4182 F:      Documentation/hwmon/f71805f
4183 F:      drivers/hwmon/f71805f.c
4184
4185 FC0011 TUNER DRIVER
4186 M:      Michael Buesch <m@bues.ch>
4187 L:      linux-media@vger.kernel.org
4188 S:      Maintained
4189 F:      drivers/media/tuners/fc0011.h
4190 F:      drivers/media/tuners/fc0011.c
4191
4192 FC2580 MEDIA DRIVER
4193 M:      Antti Palosaari <crope@iki.fi>
4194 L:      linux-media@vger.kernel.org
4195 W:      http://linuxtv.org/
4196 W:      http://palosaari.fi/linux/
4197 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4198 T:      git git://linuxtv.org/anttip/media_tree.git
4199 S:      Maintained
4200 F:      drivers/media/tuners/fc2580*
4201
4202 FANOTIFY
4203 M:      Eric Paris <eparis@redhat.com>
4204 S:      Maintained
4205 F:      fs/notify/fanotify/
4206 F:      include/linux/fanotify.h
4207 F:      include/uapi/linux/fanotify.h
4208
4209 FARSYNC SYNCHRONOUS DRIVER
4210 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
4211 W:      http://www.farsite.co.uk/
4212 S:      Supported
4213 F:      drivers/net/wan/farsync.*
4214
4215 FAULT INJECTION SUPPORT
4216 M:      Akinobu Mita <akinobu.mita@gmail.com>
4217 S:      Supported
4218 F:      Documentation/fault-injection/
4219 F:      lib/fault-inject.c
4220
4221 FBTFT Framebuffer drivers
4222 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
4223 M:      Noralf Trønnes <noralf@tronnes.org>
4224 S:      Maintained
4225 F:      drivers/staging/fbtft/
4226
4227 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
4228 M:      Vasu Dev <vasu.dev@intel.com>
4229 L:      fcoe-devel@open-fcoe.org
4230 W:      www.Open-FCoE.org
4231 S:      Supported
4232 F:      drivers/scsi/libfc/
4233 F:      drivers/scsi/fcoe/
4234 F:      include/scsi/fc/
4235 F:      include/scsi/libfc.h
4236 F:      include/scsi/libfcoe.h
4237 F:      include/uapi/scsi/fc/
4238
4239 FILE LOCKING (flock() and fcntl()/lockf())
4240 M:      Jeff Layton <jlayton@poochiereds.net>
4241 M:      "J. Bruce Fields" <bfields@fieldses.org>
4242 L:      linux-fsdevel@vger.kernel.org
4243 S:      Maintained
4244 F:      include/linux/fcntl.h
4245 F:      include/linux/fs.h
4246 F:      include/uapi/linux/fcntl.h
4247 F:      include/uapi/linux/fs.h
4248 F:      fs/fcntl.c
4249 F:      fs/locks.c
4250
4251 FILESYSTEMS (VFS and infrastructure)
4252 M:      Alexander Viro <viro@zeniv.linux.org.uk>
4253 L:      linux-fsdevel@vger.kernel.org
4254 S:      Maintained
4255 F:      fs/*
4256
4257 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
4258 M:      Riku Voipio <riku.voipio@iki.fi>
4259 L:      lm-sensors@lm-sensors.org
4260 S:      Maintained
4261 F:      drivers/hwmon/f75375s.c
4262 F:      include/linux/f75375s.h
4263
4264 FIREWIRE AUDIO DRIVERS
4265 M:      Clemens Ladisch <clemens@ladisch.de>
4266 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4267 T:      git git://git.alsa-project.org/alsa-kernel.git
4268 S:      Maintained
4269 F:      sound/firewire/
4270
4271 FIREWIRE MEDIA DRIVERS (firedtv)
4272 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4273 L:      linux-media@vger.kernel.org
4274 L:      linux1394-devel@lists.sourceforge.net
4275 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
4276 S:      Maintained
4277 F:      drivers/media/firewire/
4278
4279 FIREWIRE SBP-2 TARGET
4280 M:      Chris Boot <bootc@bootc.net>
4281 L:      linux-scsi@vger.kernel.org
4282 L:      target-devel@vger.kernel.org
4283 L:      linux1394-devel@lists.sourceforge.net
4284 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
4285 S:      Maintained
4286 F:      drivers/target/sbp/
4287
4288 FIREWIRE SUBSYSTEM
4289 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4290 L:      linux1394-devel@lists.sourceforge.net
4291 W:      http://ieee1394.wiki.kernel.org/
4292 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
4293 S:      Maintained
4294 F:      drivers/firewire/
4295 F:      include/linux/firewire.h
4296 F:      include/uapi/linux/firewire*.h
4297 F:      tools/firewire/
4298
4299 FIRMWARE LOADER (request_firmware)
4300 M:      Ming Lei <ming.lei@canonical.com>
4301 L:      linux-kernel@vger.kernel.org
4302 S:      Maintained
4303 F:      Documentation/firmware_class/
4304 F:      drivers/base/firmware*.c
4305 F:      include/linux/firmware.h
4306
4307 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
4308 M:      Joshua Morris <josh.h.morris@us.ibm.com>
4309 M:      Philip Kelleher <pjk1939@linux.vnet.ibm.com>
4310 S:      Maintained
4311 F:      drivers/block/rsxx/
4312
4313 FLOPPY DRIVER
4314 M:      Jiri Kosina <jikos@kernel.org>
4315 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
4316 S:      Odd fixes
4317 F:      drivers/block/floppy.c
4318
4319 FMC SUBSYSTEM
4320 M:      Alessandro Rubini <rubini@gnudd.com>
4321 W:      http://www.ohwr.org/projects/fmc-bus
4322 S:      Supported
4323 F:      drivers/fmc/
4324 F:      include/linux/fmc*.h
4325 F:      include/linux/ipmi-fru.h
4326 K:      fmc_d.*register
4327
4328 FPU EMULATOR
4329 M:      Bill Metzenthen <billm@melbpc.org.au>
4330 W:      http://floatingpoint.sourceforge.net/emulator/index.html
4331 S:      Maintained
4332 F:      arch/x86/math-emu/
4333
4334 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
4335 L:      netdev@vger.kernel.org
4336 S:      Orphan
4337 F:      drivers/net/wan/dlci.c
4338 F:      drivers/net/wan/sdla.c
4339
4340 FRAMEBUFFER LAYER
4341 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
4342 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
4343 L:      linux-fbdev@vger.kernel.org
4344 W:      http://linux-fbdev.sourceforge.net/
4345 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
4346 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git
4347 S:      Maintained
4348 F:      Documentation/fb/
4349 F:      Documentation/devicetree/bindings/fb/
4350 F:      drivers/video/
4351 F:      include/video/
4352 F:      include/linux/fb.h
4353 F:      include/uapi/video/
4354 F:      include/uapi/linux/fb.h
4355
4356 FREESCALE DIU FRAMEBUFFER DRIVER
4357 M:      Timur Tabi <timur@tabi.org>
4358 L:      linux-fbdev@vger.kernel.org
4359 S:      Maintained
4360 F:      drivers/video/fbdev/fsl-diu-fb.*
4361
4362 FREESCALE DMA DRIVER
4363 M:      Li Yang <leoli@freescale.com>
4364 M:      Zhang Wei <zw@zh-kernel.org>
4365 L:      linuxppc-dev@lists.ozlabs.org
4366 S:      Maintained
4367 F:      drivers/dma/fsldma.*
4368
4369 FREESCALE I2C CPM DRIVER
4370 M:      Jochen Friedrich <jochen@scram.de>
4371 L:      linuxppc-dev@lists.ozlabs.org
4372 L:      linux-i2c@vger.kernel.org
4373 S:      Maintained
4374 F:      drivers/i2c/busses/i2c-cpm.c
4375
4376 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
4377 M:      Sascha Hauer <kernel@pengutronix.de>
4378 L:      linux-fbdev@vger.kernel.org
4379 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4380 S:      Maintained
4381 F:      include/linux/platform_data/video-imxfb.h
4382 F:      drivers/video/fbdev/imxfb.c
4383
4384 FREESCALE QUAD SPI DRIVER
4385 M:      Han Xu <han.xu@freescale.com>
4386 L:      linux-mtd@lists.infradead.org
4387 S:      Maintained
4388 F:      drivers/mtd/spi-nor/fsl-quadspi.c
4389
4390 FREESCALE SOC FS_ENET DRIVER
4391 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
4392 M:      Vitaly Bordug <vbordug@ru.mvista.com>
4393 L:      linuxppc-dev@lists.ozlabs.org
4394 L:      netdev@vger.kernel.org
4395 S:      Maintained
4396 F:      drivers/net/ethernet/freescale/fs_enet/
4397 F:      include/linux/fs_enet_pd.h
4398
4399 FREESCALE QUICC ENGINE LIBRARY
4400 L:      linuxppc-dev@lists.ozlabs.org
4401 S:      Orphan
4402 F:      arch/powerpc/sysdev/qe_lib/
4403 F:      arch/powerpc/include/asm/*qe.h
4404
4405 FREESCALE USB PERIPHERAL DRIVERS
4406 M:      Li Yang <leoli@freescale.com>
4407 L:      linux-usb@vger.kernel.org
4408 L:      linuxppc-dev@lists.ozlabs.org
4409 S:      Maintained
4410 F:      drivers/usb/gadget/udc/fsl*
4411
4412 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
4413 M:      Li Yang <leoli@freescale.com>
4414 L:      netdev@vger.kernel.org
4415 L:      linuxppc-dev@lists.ozlabs.org
4416 S:      Maintained
4417 F:      drivers/net/ethernet/freescale/ucc_geth*
4418
4419 FREESCALE QUICC ENGINE UCC UART DRIVER
4420 M:      Timur Tabi <timur@tabi.org>
4421 L:      linuxppc-dev@lists.ozlabs.org
4422 S:      Maintained
4423 F:      drivers/tty/serial/ucc_uart.c
4424
4425 FREESCALE SOC SOUND DRIVERS
4426 M:      Timur Tabi <timur@tabi.org>
4427 M:      Nicolin Chen <nicoleotsuka@gmail.com>
4428 M:      Xiubo Li <Xiubo.Lee@gmail.com>
4429 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4430 L:      linuxppc-dev@lists.ozlabs.org
4431 S:      Maintained
4432 F:      sound/soc/fsl/fsl*
4433 F:      sound/soc/fsl/imx*
4434 F:      sound/soc/fsl/mpc8610_hpcd.c
4435
4436 FREESCALE QORIQ MANAGEMENT COMPLEX DRIVER
4437 M:      "J. German Rivera" <German.Rivera@freescale.com>
4438 L:      linux-kernel@vger.kernel.org
4439 S:      Maintained
4440 F:      drivers/staging/fsl-mc/
4441
4442 FREEVXFS FILESYSTEM
4443 M:      Christoph Hellwig <hch@infradead.org>
4444 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
4445 S:      Maintained
4446 F:      fs/freevxfs/
4447
4448 FREEZER
4449 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4450 M:      Pavel Machek <pavel@ucw.cz>
4451 L:      linux-pm@vger.kernel.org
4452 S:      Supported
4453 F:      Documentation/power/freezing-of-tasks.txt
4454 F:      include/linux/freezer.h
4455 F:      kernel/freezer.c
4456
4457 FRONTSWAP API
4458 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4459 L:      linux-kernel@vger.kernel.org
4460 S:      Maintained
4461 F:      mm/frontswap.c
4462 F:      include/linux/frontswap.h
4463
4464 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
4465 M:      David Howells <dhowells@redhat.com>
4466 L:      linux-cachefs@redhat.com
4467 S:      Supported
4468 F:      Documentation/filesystems/caching/
4469 F:      fs/fscache/
4470 F:      include/linux/fscache*.h
4471
4472 F2FS FILE SYSTEM
4473 M:      Jaegeuk Kim <jaegeuk@kernel.org>
4474 M:      Changman Lee <cm224.lee@samsung.com>
4475 R:      Chao Yu <chao2.yu@samsung.com>
4476 L:      linux-f2fs-devel@lists.sourceforge.net
4477 W:      http://en.wikipedia.org/wiki/F2FS
4478 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
4479 S:      Maintained
4480 F:      Documentation/filesystems/f2fs.txt
4481 F:      Documentation/ABI/testing/sysfs-fs-f2fs
4482 F:      fs/f2fs/
4483 F:      include/linux/f2fs_fs.h
4484 F:      include/trace/events/f2fs.h
4485
4486 FUJITSU FR-V (FRV) PORT
4487 M:      David Howells <dhowells@redhat.com>
4488 S:      Maintained
4489 F:      arch/frv/
4490
4491 FUJITSU LAPTOP EXTRAS
4492 M:      Jonathan Woithe <jwoithe@just42.net>
4493 L:      platform-driver-x86@vger.kernel.org
4494 S:      Maintained
4495 F:      drivers/platform/x86/fujitsu-laptop.c
4496
4497 FUJITSU M-5MO LS CAMERA ISP DRIVER
4498 M:      Kyungmin Park <kyungmin.park@samsung.com>
4499 M:      Heungjun Kim <riverful.kim@samsung.com>
4500 L:      linux-media@vger.kernel.org
4501 S:      Maintained
4502 F:      drivers/media/i2c/m5mols/
4503 F:      include/media/m5mols.h
4504
4505 FUJITSU TABLET EXTRAS
4506 M:      Robert Gerlach <khnz@gmx.de>
4507 L:      platform-driver-x86@vger.kernel.org
4508 S:      Maintained
4509 F:      drivers/platform/x86/fujitsu-tablet.c
4510
4511 FUSE: FILESYSTEM IN USERSPACE
4512 M:      Miklos Szeredi <miklos@szeredi.hu>
4513 L:      fuse-devel@lists.sourceforge.net
4514 W:      http://fuse.sourceforge.net/
4515 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
4516 S:      Maintained
4517 F:      fs/fuse/
4518 F:      include/uapi/linux/fuse.h
4519 F:      Documentation/filesystems/fuse.txt
4520
4521 FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
4522 M:      Rik Faith <faith@cs.unc.edu>
4523 L:      linux-scsi@vger.kernel.org
4524 S:      Odd Fixes (e.g., new signatures)
4525 F:      drivers/scsi/fdomain.*
4526
4527 GCOV BASED KERNEL PROFILING
4528 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
4529 S:      Maintained
4530 F:      kernel/gcov/
4531 F:      Documentation/gcov.txt
4532
4533 GDT SCSI DISK ARRAY CONTROLLER DRIVER
4534 M:      Achim Leubner <achim_leubner@adaptec.com>
4535 L:      linux-scsi@vger.kernel.org
4536 W:      http://www.icp-vortex.com/
4537 S:      Supported
4538 F:      drivers/scsi/gdt*
4539
4540 GDB KERNEL DEBUGGING HELPER SCRIPTS
4541 M:      Jan Kiszka <jan.kiszka@siemens.com>
4542 S:      Supported
4543 F:      scripts/gdb/
4544
4545 GEMTEK FM RADIO RECEIVER DRIVER
4546 M:      Hans Verkuil <hverkuil@xs4all.nl>
4547 L:      linux-media@vger.kernel.org
4548 T:      git git://linuxtv.org/media_tree.git
4549 W:      http://linuxtv.org
4550 S:      Maintained
4551 F:      drivers/media/radio/radio-gemtek*
4552
4553 GENERIC GPIO I2C DRIVER
4554 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
4555 S:      Supported
4556 F:      drivers/i2c/busses/i2c-gpio.c
4557 F:      include/linux/i2c-gpio.h
4558
4559 GENERIC GPIO I2C MULTIPLEXER DRIVER
4560 M:      Peter Korsgaard <peter.korsgaard@barco.com>
4561 L:      linux-i2c@vger.kernel.org
4562 S:      Supported
4563 F:      drivers/i2c/muxes/i2c-mux-gpio.c
4564 F:      include/linux/i2c-mux-gpio.h
4565 F:      Documentation/i2c/muxes/i2c-mux-gpio
4566
4567 GENERIC HDLC (WAN) DRIVERS
4568 M:      Krzysztof Halasa <khc@pm.waw.pl>
4569 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
4570 S:      Maintained
4571 F:      drivers/net/wan/c101.c
4572 F:      drivers/net/wan/hd6457*
4573 F:      drivers/net/wan/hdlc*
4574 F:      drivers/net/wan/n2.c
4575 F:      drivers/net/wan/pc300too.c
4576 F:      drivers/net/wan/pci200syn.c
4577 F:      drivers/net/wan/wanxl*
4578
4579 GENERIC INCLUDE/ASM HEADER FILES
4580 M:      Arnd Bergmann <arnd@arndb.de>
4581 L:      linux-arch@vger.kernel.org
4582 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
4583 S:      Maintained
4584 F:      include/asm-generic/
4585 F:      include/uapi/asm-generic/
4586
4587 GENERIC PHY FRAMEWORK
4588 M:      Kishon Vijay Abraham I <kishon@ti.com>
4589 L:      linux-kernel@vger.kernel.org
4590 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
4591 S:      Supported
4592 F:      drivers/phy/
4593 F:      include/linux/phy/
4594
4595 GENERIC PM DOMAINS
4596 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4597 M:      Kevin Hilman <khilman@kernel.org>
4598 M:      Ulf Hansson <ulf.hansson@linaro.org>
4599 L:      linux-pm@vger.kernel.org
4600 S:      Supported
4601 F:      drivers/base/power/domain*.c
4602 F:      include/linux/pm_domain.h
4603
4604 GENERIC UIO DRIVER FOR PCI DEVICES
4605 M:      "Michael S. Tsirkin" <mst@redhat.com>
4606 L:      kvm@vger.kernel.org
4607 S:      Supported
4608 F:      drivers/uio/uio_pci_generic.c
4609
4610 GET_MAINTAINER SCRIPT
4611 M:      Joe Perches <joe@perches.com>
4612 S:      Maintained
4613 F:      scripts/get_maintainer.pl
4614
4615 GFS2 FILE SYSTEM
4616 M:      Steven Whitehouse <swhiteho@redhat.com>
4617 M:      Bob Peterson <rpeterso@redhat.com>
4618 L:      cluster-devel@redhat.com
4619 W:      http://sources.redhat.com/cluster/
4620 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
4621 S:      Supported
4622 F:      Documentation/filesystems/gfs2*.txt
4623 F:      fs/gfs2/
4624 F:      include/uapi/linux/gfs2_ondisk.h
4625
4626 GIGASET ISDN DRIVERS
4627 M:      Paul Bolle <pebolle@tiscali.nl>
4628 L:      gigaset307x-common@lists.sourceforge.net
4629 W:      http://gigaset307x.sourceforge.net/
4630 S:      Odd Fixes
4631 F:      Documentation/isdn/README.gigaset
4632 F:      drivers/isdn/gigaset/
4633 F:      include/uapi/linux/gigaset_dev.h
4634
4635 GO7007 MPEG CODEC
4636 M:      Hans Verkuil <hans.verkuil@cisco.com>
4637 L:      linux-media@vger.kernel.org
4638 S:      Maintained
4639 F:      drivers/media/usb/go7007/
4640
4641 GOODIX TOUCHSCREEN
4642 M:      Bastien Nocera <hadess@hadess.net>
4643 L:      linux-input@vger.kernel.org
4644 S:      Maintained
4645 F:      drivers/input/touchscreen/goodix.c
4646
4647 GPIO SUBSYSTEM
4648 M:      Linus Walleij <linus.walleij@linaro.org>
4649 M:      Alexandre Courbot <gnurou@gmail.com>
4650 L:      linux-gpio@vger.kernel.org
4651 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
4652 S:      Maintained
4653 F:      Documentation/gpio/
4654 F:      drivers/gpio/
4655 F:      include/linux/gpio/
4656 F:      include/linux/gpio.h
4657 F:      include/asm-generic/gpio.h
4658
4659 GRE DEMULTIPLEXER DRIVER
4660 M:      Dmitry Kozlov <xeb@mail.ru>
4661 L:      netdev@vger.kernel.org
4662 S:      Maintained
4663 F:      net/ipv4/gre_demux.c
4664 F:      net/ipv4/gre_offload.c
4665 F:      include/net/gre.h
4666
4667 GRETH 10/100/1G Ethernet MAC device driver
4668 M:      Kristoffer Glembo <kristoffer@gaisler.com>
4669 L:      netdev@vger.kernel.org
4670 S:      Maintained
4671 F:      drivers/net/ethernet/aeroflex/
4672
4673 GSPCA FINEPIX SUBDRIVER
4674 M:      Frank Zago <frank@zago.net>
4675 L:      linux-media@vger.kernel.org
4676 T:      git git://linuxtv.org/media_tree.git
4677 S:      Maintained
4678 F:      drivers/media/usb/gspca/finepix.c
4679
4680 GSPCA GL860 SUBDRIVER
4681 M:      Olivier Lorin <o.lorin@laposte.net>
4682 L:      linux-media@vger.kernel.org
4683 T:      git git://linuxtv.org/media_tree.git
4684 S:      Maintained
4685 F:      drivers/media/usb/gspca/gl860/
4686
4687 GSPCA M5602 SUBDRIVER
4688 M:      Erik Andren <erik.andren@gmail.com>
4689 L:      linux-media@vger.kernel.org
4690 T:      git git://linuxtv.org/media_tree.git
4691 S:      Maintained
4692 F:      drivers/media/usb/gspca/m5602/
4693
4694 GSPCA PAC207 SONIXB SUBDRIVER
4695 M:      Hans de Goede <hdegoede@redhat.com>
4696 L:      linux-media@vger.kernel.org
4697 T:      git git://linuxtv.org/media_tree.git
4698 S:      Maintained
4699 F:      drivers/media/usb/gspca/pac207.c
4700
4701 GSPCA SN9C20X SUBDRIVER
4702 M:      Brian Johnson <brijohn@gmail.com>
4703 L:      linux-media@vger.kernel.org
4704 T:      git git://linuxtv.org/media_tree.git
4705 S:      Maintained
4706 F:      drivers/media/usb/gspca/sn9c20x.c
4707
4708 GSPCA T613 SUBDRIVER
4709 M:      Leandro Costantino <lcostantino@gmail.com>
4710 L:      linux-media@vger.kernel.org
4711 T:      git git://linuxtv.org/media_tree.git
4712 S:      Maintained
4713 F:      drivers/media/usb/gspca/t613.c
4714
4715 GSPCA USB WEBCAM DRIVER
4716 M:      Hans de Goede <hdegoede@redhat.com>
4717 L:      linux-media@vger.kernel.org
4718 T:      git git://linuxtv.org/media_tree.git
4719 S:      Maintained
4720 F:      drivers/media/usb/gspca/
4721
4722 GUID PARTITION TABLE (GPT)
4723 M:      Davidlohr Bueso <dave@stgolabs.net>
4724 L:      linux-efi@vger.kernel.org
4725 S:      Maintained
4726 F:      block/partitions/efi.*
4727
4728 STK1160 USB VIDEO CAPTURE DRIVER
4729 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
4730 L:      linux-media@vger.kernel.org
4731 T:      git git://linuxtv.org/media_tree.git
4732 S:      Maintained
4733 F:      drivers/media/usb/stk1160/
4734
4735 H8/300 ARCHITECTURE
4736 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
4737 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
4738 W:      http://uclinux-h8.sourceforge.jp
4739 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
4740 S:      Maintained
4741 F:      arch/h8300/
4742 F:      drivers/clocksource/h8300_*.c
4743 F:      drivers/clk/h8300/
4744 F:      drivers/irqchip/irq-renesas-h8*.c
4745
4746 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
4747 M:      Frank Seidel <frank@f-seidel.de>
4748 L:      platform-driver-x86@vger.kernel.org
4749 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
4750 S:      Maintained
4751 F:      drivers/platform/x86/hdaps.c
4752
4753 HDPVR USB VIDEO ENCODER DRIVER
4754 M:      Hans Verkuil <hverkuil@xs4all.nl>
4755 L:      linux-media@vger.kernel.org
4756 T:      git git://linuxtv.org/media_tree.git
4757 W:      http://linuxtv.org
4758 S:      Odd Fixes
4759 F:      drivers/media/usb/hdpvr/
4760
4761 HWPOISON MEMORY FAILURE HANDLING
4762 M:      Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
4763 L:      linux-mm@kvack.org
4764 S:      Maintained
4765 F:      mm/memory-failure.c
4766 F:      mm/hwpoison-inject.c
4767
4768 HYPERVISOR VIRTUAL CONSOLE DRIVER
4769 L:      linuxppc-dev@lists.ozlabs.org
4770 S:      Odd Fixes
4771 F:      drivers/tty/hvc/
4772
4773 HACKRF MEDIA DRIVER
4774 M:      Antti Palosaari <crope@iki.fi>
4775 L:      linux-media@vger.kernel.org
4776 W:      http://linuxtv.org/
4777 W:      http://palosaari.fi/linux/
4778 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4779 T:      git git://linuxtv.org/anttip/media_tree.git
4780 S:      Maintained
4781 F:      drivers/media/usb/hackrf/
4782
4783 HARDWARE MONITORING
4784 M:      Jean Delvare <jdelvare@suse.com>
4785 M:      Guenter Roeck <linux@roeck-us.net>
4786 L:      lm-sensors@lm-sensors.org
4787 W:      http://www.lm-sensors.org/
4788 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/
4789 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
4790 S:      Maintained
4791 F:      Documentation/hwmon/
4792 F:      drivers/hwmon/
4793 F:      include/linux/hwmon*.h
4794
4795 HARDWARE RANDOM NUMBER GENERATOR CORE
4796 M:      Matt Mackall <mpm@selenic.com>
4797 M:      Herbert Xu <herbert@gondor.apana.org.au>
4798 L:      linux-crypto@vger.kernel.org
4799 S:      Odd fixes
4800 F:      Documentation/hw_random.txt
4801 F:      drivers/char/hw_random/
4802 F:      include/linux/hw_random.h
4803
4804 HARDWARE SPINLOCK CORE
4805 M:      Ohad Ben-Cohen <ohad@wizery.com>
4806 S:      Maintained
4807 F:      Documentation/hwspinlock.txt
4808 F:      drivers/hwspinlock/hwspinlock_*
4809 F:      include/linux/hwspinlock.h
4810
4811 HARMONY SOUND DRIVER
4812 L:      linux-parisc@vger.kernel.org
4813 S:      Maintained
4814 F:      sound/parisc/harmony.*
4815
4816 HD29L2 MEDIA DRIVER
4817 M:      Antti Palosaari <crope@iki.fi>
4818 L:      linux-media@vger.kernel.org
4819 W:      http://linuxtv.org/
4820 W:      http://palosaari.fi/linux/
4821 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4822 T:      git git://linuxtv.org/anttip/media_tree.git
4823 S:      Maintained
4824 F:      drivers/media/dvb-frontends/hd29l2*
4825
4826 HEWLETT-PACKARD SMART2 RAID DRIVER
4827 L:      iss_storagedev@hp.com
4828 S:      Orphan
4829 F:      Documentation/blockdev/cpqarray.txt
4830 F:      drivers/block/cpqarray.*
4831
4832 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
4833 M:      Don Brace <don.brace@pmcs.com>
4834 L:      iss_storagedev@hp.com
4835 L:      storagedev@pmcs.com
4836 L:      linux-scsi@vger.kernel.org
4837 S:      Supported
4838 F:      Documentation/scsi/hpsa.txt
4839 F:      drivers/scsi/hpsa*.[ch]
4840 F:      include/linux/cciss*.h
4841 F:      include/uapi/linux/cciss*.h
4842
4843 HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
4844 M:      Don Brace <don.brace@pmcs.com>
4845 L:      iss_storagedev@hp.com
4846 L:      storagedev@pmcs.com
4847 L:      linux-scsi@vger.kernel.org
4848 S:      Supported
4849 F:      Documentation/blockdev/cciss.txt
4850 F:      drivers/block/cciss*
4851 F:      include/linux/cciss_ioctl.h
4852 F:      include/uapi/linux/cciss_ioctl.h
4853
4854 HFS FILESYSTEM
4855 L:      linux-fsdevel@vger.kernel.org
4856 S:      Orphan
4857 F:      Documentation/filesystems/hfs.txt
4858 F:      fs/hfs/
4859
4860 HFSPLUS FILESYSTEM
4861 L:      linux-fsdevel@vger.kernel.org
4862 S:      Orphan
4863 F:      Documentation/filesystems/hfsplus.txt
4864 F:      fs/hfsplus/
4865
4866 HGA FRAMEBUFFER DRIVER
4867 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
4868 L:      linux-nvidia@lists.surfsouth.com
4869 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
4870 S:      Maintained
4871 F:      drivers/video/fbdev/hgafb.c
4872
4873 HIBERNATION (aka Software Suspend, aka swsusp)
4874 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4875 M:      Pavel Machek <pavel@ucw.cz>
4876 L:      linux-pm@vger.kernel.org
4877 S:      Supported
4878 F:      arch/x86/power/
4879 F:      drivers/base/power/
4880 F:      kernel/power/
4881 F:      include/linux/suspend.h
4882 F:      include/linux/freezer.h
4883 F:      include/linux/pm.h
4884 F:      arch/*/include/asm/suspend*.h
4885
4886 HID CORE LAYER
4887 M:      Jiri Kosina <jikos@kernel.org>
4888 L:      linux-input@vger.kernel.org
4889 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
4890 S:      Maintained
4891 F:      drivers/hid/
4892 F:      include/linux/hid*
4893 F:      include/uapi/linux/hid*
4894
4895 HID SENSOR HUB DRIVERS
4896 M:      Jiri Kosina <jikos@kernel.org>
4897 M:      Jonathan Cameron <jic23@kernel.org>
4898 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
4899 L:      linux-input@vger.kernel.org
4900 L:      linux-iio@vger.kernel.org
4901 S:      Maintained
4902 F:      Documentation/hid/hid-sensor*
4903 F:      drivers/hid/hid-sensor-*
4904 F:      drivers/iio/*/hid-*
4905 F:      include/linux/hid-sensor-*
4906
4907 HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
4908 M:      Thomas Gleixner <tglx@linutronix.de>
4909 L:      linux-kernel@vger.kernel.org
4910 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4911 S:      Maintained
4912 F:      Documentation/timers/
4913 F:      kernel/time/hrtimer.c
4914 F:      kernel/time/clockevents.c
4915 F:      kernel/time/tick*.*
4916 F:      kernel/time/timer_*.c
4917 F:      include/linux/clockchips.h
4918 F:      include/linux/hrtimer.h
4919
4920 HIGH-SPEED SCC DRIVER FOR AX.25
4921 L:      linux-hams@vger.kernel.org
4922 S:      Orphan
4923 F:      drivers/net/hamradio/dmascc.c
4924 F:      drivers/net/hamradio/scc.c
4925
4926 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
4927 M:      HighPoint Linux Team <linux@highpoint-tech.com>
4928 W:      http://www.highpoint-tech.com
4929 S:      Supported
4930 F:      Documentation/scsi/hptiop.txt
4931 F:      drivers/scsi/hptiop.c
4932
4933 HIPPI
4934 M:      Jes Sorensen <jes@trained-monkey.org>
4935 L:      linux-hippi@sunsite.dk
4936 S:      Maintained
4937 F:      include/linux/hippidevice.h
4938 F:      include/uapi/linux/if_hippi.h
4939 F:      net/802/hippi.c
4940 F:      drivers/net/hippi/
4941
4942 HOST AP DRIVER
4943 M:      Jouni Malinen <j@w1.fi>
4944 L:      hostap@shmoo.com (subscribers-only)
4945 L:      linux-wireless@vger.kernel.org
4946 W:      http://hostap.epitest.fi/
4947 S:      Maintained
4948 F:      drivers/net/wireless/hostap/
4949
4950 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
4951 L:      platform-driver-x86@vger.kernel.org
4952 S:      Orphan
4953 F:      drivers/platform/x86/tc1100-wmi.c
4954
4955 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
4956 M:      Jaroslav Kysela <perex@perex.cz>
4957 S:      Maintained
4958 F:      drivers/net/ethernet/hp/hp100.*
4959
4960 HPET:   High Precision Event Timers driver
4961 M:      Clemens Ladisch <clemens@ladisch.de>
4962 S:      Maintained
4963 F:      Documentation/timers/hpet.txt
4964 F:      drivers/char/hpet.c
4965 F:      include/linux/hpet.h
4966 F:      include/uapi/linux/hpet.h
4967
4968 HPET:   x86
4969 S:      Orphan
4970 F:      arch/x86/kernel/hpet.c
4971 F:      arch/x86/include/asm/hpet.h
4972
4973 HPFS FILESYSTEM
4974 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
4975 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
4976 S:      Maintained
4977 F:      fs/hpfs/
4978
4979 HSI SUBSYSTEM
4980 M:      Sebastian Reichel <sre@kernel.org>
4981 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
4982 S:      Maintained
4983 F:      Documentation/ABI/testing/sysfs-bus-hsi
4984 F:      Documentation/hsi.txt
4985 F:      drivers/hsi/
4986 F:      include/linux/hsi/
4987 F:      include/uapi/linux/hsi/
4988
4989 HSO 3G MODEM DRIVER
4990 M:      Jan Dumon <j.dumon@option.com>
4991 W:      http://www.pharscape.org
4992 S:      Maintained
4993 F:      drivers/net/usb/hso.c
4994
4995 HSR NETWORK PROTOCOL
4996 M:      Arvid Brodin <arvid.brodin@alten.se>
4997 L:      netdev@vger.kernel.org
4998 S:      Maintained
4999 F:      net/hsr/
5000
5001 HTCPEN TOUCHSCREEN DRIVER
5002 M:      Pau Oliva Fora <pof@eslack.org>
5003 L:      linux-input@vger.kernel.org
5004 S:      Maintained
5005 F:      drivers/input/touchscreen/htcpen.c
5006
5007 HUGETLB FILESYSTEM
5008 M:      Nadia Yvette Chambers <nyc@holomorphy.com>
5009 S:      Maintained
5010 F:      fs/hugetlbfs/
5011
5012 Hyper-V CORE AND DRIVERS
5013 M:      "K. Y. Srinivasan" <kys@microsoft.com>
5014 M:      Haiyang Zhang <haiyangz@microsoft.com>
5015 L:      devel@linuxdriverproject.org
5016 S:      Maintained
5017 F:      arch/x86/include/asm/mshyperv.h
5018 F:      arch/x86/include/uapi/asm/hyperv.h
5019 F:      arch/x86/kernel/cpu/mshyperv.c
5020 F:      drivers/hid/hid-hyperv.c
5021 F:      drivers/hv/
5022 F:      drivers/input/serio/hyperv-keyboard.c
5023 F:      drivers/net/hyperv/
5024 F:      drivers/scsi/storvsc_drv.c
5025 F:      drivers/video/fbdev/hyperv_fb.c
5026 F:      include/linux/hyperv.h
5027 F:      tools/hv/
5028 F:      Documentation/ABI/stable/sysfs-bus-vmbus
5029
5030 I2C OVER PARALLEL PORT
5031 M:      Jean Delvare <jdelvare@suse.com>
5032 L:      linux-i2c@vger.kernel.org
5033 S:      Maintained
5034 F:      Documentation/i2c/busses/i2c-parport
5035 F:      Documentation/i2c/busses/i2c-parport-light
5036 F:      drivers/i2c/busses/i2c-parport.c
5037 F:      drivers/i2c/busses/i2c-parport-light.c
5038
5039 I2C/SMBUS CONTROLLER DRIVERS FOR PC
5040 M:      Jean Delvare <jdelvare@suse.com>
5041 L:      linux-i2c@vger.kernel.org
5042 S:      Maintained
5043 F:      Documentation/i2c/busses/i2c-ali1535
5044 F:      Documentation/i2c/busses/i2c-ali1563
5045 F:      Documentation/i2c/busses/i2c-ali15x3
5046 F:      Documentation/i2c/busses/i2c-amd756
5047 F:      Documentation/i2c/busses/i2c-amd8111
5048 F:      Documentation/i2c/busses/i2c-i801
5049 F:      Documentation/i2c/busses/i2c-nforce2
5050 F:      Documentation/i2c/busses/i2c-piix4
5051 F:      Documentation/i2c/busses/i2c-sis5595
5052 F:      Documentation/i2c/busses/i2c-sis630
5053 F:      Documentation/i2c/busses/i2c-sis96x
5054 F:      Documentation/i2c/busses/i2c-via
5055 F:      Documentation/i2c/busses/i2c-viapro
5056 F:      drivers/i2c/busses/i2c-ali1535.c
5057 F:      drivers/i2c/busses/i2c-ali1563.c
5058 F:      drivers/i2c/busses/i2c-ali15x3.c
5059 F:      drivers/i2c/busses/i2c-amd756.c
5060 F:      drivers/i2c/busses/i2c-amd756-s4882.c
5061 F:      drivers/i2c/busses/i2c-amd8111.c
5062 F:      drivers/i2c/busses/i2c-i801.c
5063 F:      drivers/i2c/busses/i2c-isch.c
5064 F:      drivers/i2c/busses/i2c-nforce2.c
5065 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
5066 F:      drivers/i2c/busses/i2c-piix4.c
5067 F:      drivers/i2c/busses/i2c-sis5595.c
5068 F:      drivers/i2c/busses/i2c-sis630.c
5069 F:      drivers/i2c/busses/i2c-sis96x.c
5070 F:      drivers/i2c/busses/i2c-via.c
5071 F:      drivers/i2c/busses/i2c-viapro.c
5072
5073 I2C/SMBUS ISMT DRIVER
5074 M:      Seth Heasley <seth.heasley@intel.com>
5075 M:      Neil Horman <nhorman@tuxdriver.com>
5076 L:      linux-i2c@vger.kernel.org
5077 F:      drivers/i2c/busses/i2c-ismt.c
5078 F:      Documentation/i2c/busses/i2c-ismt
5079
5080 I2C/SMBUS STUB DRIVER
5081 M:      Jean Delvare <jdelvare@suse.com>
5082 L:      linux-i2c@vger.kernel.org
5083 S:      Maintained
5084 F:      drivers/i2c/i2c-stub.c
5085
5086 I2C SUBSYSTEM
5087 M:      Wolfram Sang <wsa@the-dreams.de>
5088 L:      linux-i2c@vger.kernel.org
5089 W:      https://i2c.wiki.kernel.org/
5090 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
5091 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
5092 S:      Maintained
5093 F:      Documentation/devicetree/bindings/i2c/
5094 F:      Documentation/i2c/
5095 F:      drivers/i2c/
5096 F:      include/linux/i2c.h
5097 F:      include/linux/i2c-*.h
5098 F:      include/uapi/linux/i2c.h
5099 F:      include/uapi/linux/i2c-*.h
5100
5101 I2C ACPI SUPPORT
5102 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
5103 L:      linux-i2c@vger.kernel.org
5104 L:      linux-acpi@vger.kernel.org
5105 S:      Maintained
5106
5107 I2C-TAOS-EVM DRIVER
5108 M:      Jean Delvare <jdelvare@suse.com>
5109 L:      linux-i2c@vger.kernel.org
5110 S:      Maintained
5111 F:      Documentation/i2c/busses/i2c-taos-evm
5112 F:      drivers/i2c/busses/i2c-taos-evm.c
5113
5114 I2C-TINY-USB DRIVER
5115 M:      Till Harbaum <till@harbaum.org>
5116 L:      linux-i2c@vger.kernel.org
5117 W:      http://www.harbaum.org/till/i2c_tiny_usb
5118 S:      Maintained
5119 F:      drivers/i2c/busses/i2c-tiny-usb.c
5120
5121 i386 BOOT CODE
5122 M:      "H. Peter Anvin" <hpa@zytor.com>
5123 S:      Maintained
5124 F:      arch/x86/boot/
5125
5126 i386 SETUP CODE / CPU ERRATA WORKAROUNDS
5127 M:      "H. Peter Anvin" <hpa@zytor.com>
5128 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
5129 S:      Maintained
5130
5131 IA64 (Itanium) PLATFORM
5132 M:      Tony Luck <tony.luck@intel.com>
5133 M:      Fenghua Yu <fenghua.yu@intel.com>
5134 L:      linux-ia64@vger.kernel.org
5135 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
5136 S:      Maintained
5137 F:      arch/ia64/
5138
5139 IBM Power VMX Cryptographic instructions
5140 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5141 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5142 L:      linux-crypto@vger.kernel.org
5143 S:      Supported
5144 F:      drivers/crypto/vmx/Makefile
5145 F:      drivers/crypto/vmx/Kconfig
5146 F:      drivers/crypto/vmx/vmx.c
5147 F:      drivers/crypto/vmx/aes*
5148 F:      drivers/crypto/vmx/ghash*
5149 F:      drivers/crypto/vmx/ppc-xlate.pl
5150
5151 IBM Power in-Nest Crypto Acceleration
5152 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5153 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5154 L:      linux-crypto@vger.kernel.org
5155 S:      Supported
5156 F:      drivers/crypto/nx/Makefile
5157 F:      drivers/crypto/nx/Kconfig
5158 F:      drivers/crypto/nx/nx-aes*
5159 F:      drivers/crypto/nx/nx-sha*
5160 F:      drivers/crypto/nx/nx.*
5161 F:      drivers/crypto/nx/nx_csbcpb.h
5162 F:      drivers/crypto/nx/nx_debugfs.h
5163
5164 IBM Power 842 compression accelerator
5165 M:      Dan Streetman <ddstreet@ieee.org>
5166 S:      Supported
5167 F:      drivers/crypto/nx/Makefile
5168 F:      drivers/crypto/nx/Kconfig
5169 F:      drivers/crypto/nx/nx-842*
5170 F:      include/linux/sw842.h
5171 F:      crypto/842.c
5172 F:      lib/842/
5173
5174 IBM Power Linux RAID adapter
5175 M:      Brian King <brking@us.ibm.com>
5176 S:      Supported
5177 F:      drivers/scsi/ipr.*
5178
5179 IBM Power Virtual Ethernet Device Driver
5180 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
5181 L:      netdev@vger.kernel.org
5182 S:      Supported
5183 F:      drivers/net/ethernet/ibm/ibmveth.*
5184
5185 IBM Power Virtual SCSI Device Drivers
5186 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5187 L:      linux-scsi@vger.kernel.org
5188 S:      Supported
5189 F:      drivers/scsi/ibmvscsi/ibmvscsi*
5190 F:      drivers/scsi/ibmvscsi/viosrp.h
5191
5192 IBM Power Virtual FC Device Drivers
5193 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5194 L:      linux-scsi@vger.kernel.org
5195 S:      Supported
5196 F:      drivers/scsi/ibmvscsi/ibmvfc*
5197
5198 IBM ServeRAID RAID DRIVER
5199 S:      Orphan
5200 F:      drivers/scsi/ips.*
5201
5202 ICH LPC AND GPIO DRIVER
5203 M:      Peter Tyser <ptyser@xes-inc.com>
5204 S:      Maintained
5205 F:      drivers/mfd/lpc_ich.c
5206 F:      drivers/gpio/gpio-ich.c
5207
5208 IDE SUBSYSTEM
5209 M:      "David S. Miller" <davem@davemloft.net>
5210 L:      linux-ide@vger.kernel.org
5211 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
5212 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
5213 S:      Maintained
5214 F:      Documentation/ide/
5215 F:      drivers/ide/
5216 F:      include/linux/ide.h
5217
5218 IDEAPAD LAPTOP EXTRAS DRIVER
5219 M:      Ike Panhc <ike.pan@canonical.com>
5220 L:      platform-driver-x86@vger.kernel.org
5221 W:      http://launchpad.net/ideapad-laptop
5222 S:      Maintained
5223 F:      drivers/platform/x86/ideapad-laptop.c
5224
5225 IDEAPAD LAPTOP SLIDEBAR DRIVER
5226 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
5227 L:      linux-input@vger.kernel.org
5228 W:      https://github.com/o2genum/ideapad-slidebar
5229 S:      Maintained
5230 F:      drivers/input/misc/ideapad_slidebar.c
5231
5232 IDE/ATAPI DRIVERS
5233 M:      Borislav Petkov <bp@alien8.de>
5234 L:      linux-ide@vger.kernel.org
5235 S:      Maintained
5236 F:      Documentation/cdrom/ide-cd
5237 F:      drivers/ide/ide-cd*
5238
5239 IDLE-I7300
5240 M:      Andy Henroid <andrew.d.henroid@intel.com>
5241 L:      linux-pm@vger.kernel.org
5242 S:      Supported
5243 F:      drivers/idle/i7300_idle.c
5244
5245 IEEE 802.15.4 SUBSYSTEM
5246 M:      Alexander Aring <alex.aring@gmail.com>
5247 L:      linux-wpan@vger.kernel.org
5248 W:      https://github.com/linux-wpan
5249 T:      git git://github.com/linux-wpan/linux-wpan-next.git
5250 S:      Maintained
5251 F:      net/ieee802154/
5252 F:      net/mac802154/
5253 F:      drivers/net/ieee802154/
5254 F:      include/linux/nl802154.h
5255 F:      include/linux/ieee802154.h
5256 F:      include/net/nl802154.h
5257 F:      include/net/mac802154.h
5258 F:      include/net/af_ieee802154.h
5259 F:      include/net/cfg802154.h
5260 F:      include/net/ieee802154_netdev.h
5261 F:      Documentation/networking/ieee802154.txt
5262
5263 IGORPLUG-USB IR RECEIVER
5264 M:      Sean Young <sean@mess.org>
5265 L:      linux-media@vger.kernel.org
5266 S:      Maintained
5267 F:      drivers/media/rc/igorplugusb.c
5268
5269 IGUANAWORKS USB IR TRANSCEIVER
5270 M:      Sean Young <sean@mess.org>
5271 L:      linux-media@vger.kernel.org
5272 S:      Maintained
5273 F:      drivers/media/rc/iguanair.c
5274
5275 IIO SUBSYSTEM AND DRIVERS
5276 M:      Jonathan Cameron <jic23@kernel.org>
5277 R:      Hartmut Knaack <knaack.h@gmx.de>
5278 R:      Lars-Peter Clausen <lars@metafoo.de>
5279 R:      Peter Meerwald <pmeerw@pmeerw.net>
5280 L:      linux-iio@vger.kernel.org
5281 S:      Maintained
5282 F:      drivers/iio/
5283 F:      drivers/staging/iio/
5284 F:      include/linux/iio/
5285 F:      tools/iio/
5286
5287 IKANOS/ADI EAGLE ADSL USB DRIVER
5288 M:      Matthieu Castet <castet.matthieu@free.fr>
5289 M:      Stanislaw Gruszka <stf_xl@wp.pl>
5290 S:      Maintained
5291 F:      drivers/usb/atm/ueagle-atm.c
5292
5293 INA209 HARDWARE MONITOR DRIVER
5294 M:      Guenter Roeck <linux@roeck-us.net>
5295 L:      lm-sensors@lm-sensors.org
5296 S:      Maintained
5297 F:      Documentation/hwmon/ina209
5298 F:      Documentation/devicetree/bindings/i2c/ina209.txt
5299 F:      drivers/hwmon/ina209.c
5300
5301 INA2XX HARDWARE MONITOR DRIVER
5302 M:      Guenter Roeck <linux@roeck-us.net>
5303 L:      lm-sensors@lm-sensors.org
5304 S:      Maintained
5305 F:      Documentation/hwmon/ina2xx
5306 F:      drivers/hwmon/ina2xx.c
5307 F:      include/linux/platform_data/ina2xx.h
5308
5309 INDUSTRY PACK SUBSYSTEM (IPACK)
5310 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
5311 M:      Jens Taprogge <jens.taprogge@taprogge.org>
5312 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5313 L:      industrypack-devel@lists.sourceforge.net
5314 W:      http://industrypack.sourceforge.net
5315 S:      Maintained
5316 F:      drivers/ipack/
5317
5318 INGENIC JZ4780 DMA Driver
5319 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
5320 S:      Maintained
5321 F:      drivers/dma/dma-jz4780.c
5322
5323 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
5324 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
5325 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
5326 L:      linux-ima-devel@lists.sourceforge.net
5327 L:      linux-ima-user@lists.sourceforge.net
5328 L:      linux-security-module@vger.kernel.org
5329 S:      Supported
5330 F:      security/integrity/ima/
5331
5332 IMGTEC IR DECODER DRIVER
5333 M:      James Hogan <james.hogan@imgtec.com>
5334 S:      Maintained
5335 F:      drivers/media/rc/img-ir/
5336
5337 IMS TWINTURBO FRAMEBUFFER DRIVER
5338 L:      linux-fbdev@vger.kernel.org
5339 S:      Orphan
5340 F:      drivers/video/fbdev/imsttfb.c
5341
5342 INFINIBAND SUBSYSTEM
5343 M:      Doug Ledford <dledford@redhat.com>
5344 M:      Sean Hefty <sean.hefty@intel.com>
5345 M:      Hal Rosenstock <hal.rosenstock@gmail.com>
5346 L:      linux-rdma@vger.kernel.org
5347 W:      http://www.openfabrics.org/
5348 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5349 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git
5350 S:      Supported
5351 F:      Documentation/infiniband/
5352 F:      drivers/infiniband/
5353 F:      drivers/staging/rdma/
5354 F:      include/uapi/linux/if_infiniband.h
5355 F:      include/uapi/rdma/
5356 F:      include/rdma/
5357
5358 INOTIFY
5359 M:      John McCutchan <john@johnmccutchan.com>
5360 M:      Robert Love <rlove@rlove.org>
5361 M:      Eric Paris <eparis@parisplace.org>
5362 S:      Maintained
5363 F:      Documentation/filesystems/inotify.txt
5364 F:      fs/notify/inotify/
5365 F:      include/linux/inotify.h
5366 F:      include/uapi/linux/inotify.h
5367
5368 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
5369 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
5370 L:      linux-input@vger.kernel.org
5371 Q:      http://patchwork.kernel.org/project/linux-input/list/
5372 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
5373 S:      Maintained
5374 F:      drivers/input/
5375 F:      include/linux/input.h
5376 F:      include/uapi/linux/input.h
5377 F:      include/linux/input/
5378
5379 INPUT MULTITOUCH (MT) PROTOCOL
5380 M:      Henrik Rydberg <rydberg@bitmath.org>
5381 L:      linux-input@vger.kernel.org
5382 S:      Odd fixes
5383 F:      Documentation/input/multi-touch-protocol.txt
5384 F:      drivers/input/input-mt.c
5385 K:      \b(ABS|SYN)_MT_
5386
5387 INTEL ASoC BDW/HSW DRIVERS
5388 M:      Jie Yang <yang.jie@linux.intel.com>
5389 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5390 S:      Supported
5391 F:      sound/soc/intel/common/sst-dsp*
5392 F:      sound/soc/intel/common/sst-firmware.c
5393 F:      sound/soc/intel/boards/broadwell.c
5394 F:      sound/soc/intel/haswell/
5395
5396 INTEL C600 SERIES SAS CONTROLLER DRIVER
5397 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
5398 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
5399 L:      linux-scsi@vger.kernel.org
5400 T:      git git://git.code.sf.net/p/intel-sas/isci
5401 S:      Supported
5402 F:      drivers/scsi/isci/
5403
5404 INTEL IDLE DRIVER
5405 M:      Len Brown <lenb@kernel.org>
5406 L:      linux-pm@vger.kernel.org
5407 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
5408 S:      Supported
5409 F:      drivers/idle/intel_idle.c
5410
5411 INTEL PSTATE DRIVER
5412 M:      Kristen Carlson Accardi <kristen@linux.intel.com>
5413 L:      linux-pm@vger.kernel.org
5414 S:      Supported
5415 F:      drivers/cpufreq/intel_pstate.c
5416
5417 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
5418 M:      Maik Broemme <mbroemme@plusserver.de>
5419 L:      linux-fbdev@vger.kernel.org
5420 S:      Maintained
5421 F:      Documentation/fb/intelfb.txt
5422 F:      drivers/video/fbdev/intelfb/
5423
5424 INTEL 810/815 FRAMEBUFFER DRIVER
5425 M:      Antonino Daplas <adaplas@gmail.com>
5426 L:      linux-fbdev@vger.kernel.org
5427 S:      Maintained
5428 F:      drivers/video/fbdev/i810/
5429
5430 INTEL MENLOW THERMAL DRIVER
5431 M:      Sujith Thomas <sujith.thomas@intel.com>
5432 L:      platform-driver-x86@vger.kernel.org
5433 W:      https://01.org/linux-acpi
5434 S:      Supported
5435 F:      drivers/platform/x86/intel_menlow.c
5436
5437 INTEL IA32 MICROCODE UPDATE SUPPORT
5438 M:      Borislav Petkov <bp@alien8.de>
5439 S:      Maintained
5440 F:      arch/x86/kernel/cpu/microcode/core*
5441 F:      arch/x86/kernel/cpu/microcode/intel*
5442
5443 INTEL I/OAT DMA DRIVER
5444 M:      Dave Jiang <dave.jiang@intel.com>
5445 R:      Dan Williams <dan.j.williams@intel.com>
5446 L:      dmaengine@vger.kernel.org
5447 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5448 S:      Supported
5449 F:      drivers/dma/ioat*
5450
5451 INTEL IOMMU (VT-d)
5452 M:      David Woodhouse <dwmw2@infradead.org>
5453 L:      iommu@lists.linux-foundation.org
5454 T:      git git://git.infradead.org/iommu-2.6.git
5455 S:      Supported
5456 F:      drivers/iommu/intel-iommu.c
5457 F:      include/linux/intel-iommu.h
5458
5459 INTEL IOP-ADMA DMA DRIVER
5460 R:      Dan Williams <dan.j.williams@intel.com>
5461 S:      Odd fixes
5462 F:      drivers/dma/iop-adma.c
5463
5464 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
5465 M:      Krzysztof Halasa <khalasa@piap.pl>
5466 S:      Maintained
5467 F:      arch/arm/mach-ixp4xx/include/mach/qmgr.h
5468 F:      arch/arm/mach-ixp4xx/include/mach/npe.h
5469 F:      arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
5470 F:      arch/arm/mach-ixp4xx/ixp4xx_npe.c
5471 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
5472 F:      drivers/net/wan/ixp4xx_hss.c
5473
5474 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
5475 M:      Deepak Saxena <dsaxena@plexity.net>
5476 S:      Maintained
5477 F:      drivers/char/hw_random/ixp4xx-rng.c
5478
5479 INTEL ETHERNET DRIVERS
5480 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
5481 R:      Jesse Brandeburg <jesse.brandeburg@intel.com>
5482 R:      Shannon Nelson <shannon.nelson@intel.com>
5483 R:      Carolyn Wyborny <carolyn.wyborny@intel.com>
5484 R:      Don Skidmore <donald.c.skidmore@intel.com>
5485 R:      Matthew Vick <matthew.vick@intel.com>
5486 R:      John Ronciak <john.ronciak@intel.com>
5487 R:      Mitch Williams <mitch.a.williams@intel.com>
5488 L:      intel-wired-lan@lists.osuosl.org
5489 W:      http://www.intel.com/support/feedback.htm
5490 W:      http://e1000.sourceforge.net/
5491 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
5492 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
5493 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
5494 S:      Supported
5495 F:      Documentation/networking/e100.txt
5496 F:      Documentation/networking/e1000.txt
5497 F:      Documentation/networking/e1000e.txt
5498 F:      Documentation/networking/igb.txt
5499 F:      Documentation/networking/igbvf.txt
5500 F:      Documentation/networking/ixgb.txt
5501 F:      Documentation/networking/ixgbe.txt
5502 F:      Documentation/networking/ixgbevf.txt
5503 F:      Documentation/networking/i40e.txt
5504 F:      Documentation/networking/i40evf.txt
5505 F:      drivers/net/ethernet/intel/
5506 F:      drivers/net/ethernet/intel/*/
5507
5508 INTEL-MID GPIO DRIVER
5509 M:      David Cohen <david.a.cohen@linux.intel.com>
5510 L:      linux-gpio@vger.kernel.org
5511 S:      Maintained
5512 F:      drivers/gpio/gpio-intel-mid.c
5513
5514 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
5515 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
5516 L:      linux-wireless@vger.kernel.org
5517 S:      Maintained
5518 F:      Documentation/networking/README.ipw2100
5519 F:      Documentation/networking/README.ipw2200
5520 F:      drivers/net/wireless/ipw2x00/
5521
5522 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
5523 M:      Richard L Maliszewski <richard.l.maliszewski@intel.com>
5524 M:      Gang Wei <gang.wei@intel.com>
5525 M:      Shane Wang <shane.wang@intel.com>
5526 L:      tboot-devel@lists.sourceforge.net
5527 W:      http://tboot.sourceforge.net
5528 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
5529 S:      Supported
5530 F:      Documentation/intel_txt.txt
5531 F:      include/linux/tboot.h
5532 F:      arch/x86/kernel/tboot.c
5533
5534 INTEL WIRELESS WIMAX CONNECTION 2400
5535 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
5536 M:      linux-wimax@intel.com
5537 L:      wimax@linuxwimax.org (subscribers-only)
5538 S:      Supported
5539 W:      http://linuxwimax.org
5540 F:      Documentation/wimax/README.i2400m
5541 F:      drivers/net/wimax/i2400m/
5542 F:      include/uapi/linux/wimax/i2400m.h
5543
5544 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
5545 M:      Stanislaw Gruszka <sgruszka@redhat.com>
5546 L:      linux-wireless@vger.kernel.org
5547 S:      Supported
5548 F:      drivers/net/wireless/iwlegacy/
5549
5550 INTEL WIRELESS WIFI LINK (iwlwifi)
5551 M:      Johannes Berg <johannes.berg@intel.com>
5552 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
5553 M:      Intel Linux Wireless <ilw@linux.intel.com>
5554 L:      linux-wireless@vger.kernel.org
5555 W:      http://intellinuxwireless.org
5556 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
5557 S:      Supported
5558 F:      drivers/net/wireless/iwlwifi/
5559
5560 INTEL MANAGEMENT ENGINE (mei)
5561 M:      Tomas Winkler <tomas.winkler@intel.com>
5562 L:      linux-kernel@vger.kernel.org
5563 S:      Supported
5564 F:      include/uapi/linux/mei.h
5565 F:      include/linux/mei_cl_bus.h
5566 F:      drivers/misc/mei/*
5567 F:      Documentation/misc-devices/mei/*
5568
5569 INTEL PMC IPC DRIVER
5570 M:      Zha Qipeng<qipeng.zha@intel.com>
5571 L:      platform-driver-x86@vger.kernel.org
5572 S:      Maintained
5573 F:      drivers/platform/x86/intel_pmc_ipc.c
5574 F:      arch/x86/include/asm/intel_pmc_ipc.h
5575
5576 IOC3 ETHERNET DRIVER
5577 M:      Ralf Baechle <ralf@linux-mips.org>
5578 L:      linux-mips@linux-mips.org
5579 S:      Maintained
5580 F:      drivers/net/ethernet/sgi/ioc3-eth.c
5581
5582 IOC3 SERIAL DRIVER
5583 M:      Pat Gefre <pfg@sgi.com>
5584 L:      linux-serial@vger.kernel.org
5585 S:      Maintained
5586 F:      drivers/tty/serial/ioc3_serial.c
5587
5588 IOMMU DRIVERS
5589 M:      Joerg Roedel <joro@8bytes.org>
5590 L:      iommu@lists.linux-foundation.org
5591 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
5592 S:      Maintained
5593 F:      drivers/iommu/
5594
5595 IP MASQUERADING
5596 M:      Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
5597 S:      Maintained
5598 F:      net/ipv4/netfilter/ipt_MASQUERADE.c
5599
5600 IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
5601 M:      Francois Romieu <romieu@fr.zoreil.com>
5602 M:      Sorbica Shieh <sorbica@icplus.com.tw>
5603 L:      netdev@vger.kernel.org
5604 S:      Maintained
5605 F:      drivers/net/ethernet/icplus/ipg.*
5606
5607 IPATH DRIVER
5608 M:      Mike Marciniszyn <infinipath@intel.com>
5609 L:      linux-rdma@vger.kernel.org
5610 S:      Maintained
5611 F:      drivers/staging/rdma/ipath/
5612
5613 IPMI SUBSYSTEM
5614 M:      Corey Minyard <minyard@acm.org>
5615 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
5616 W:      http://openipmi.sourceforge.net/
5617 S:      Supported
5618 F:      Documentation/IPMI.txt
5619 F:      drivers/char/ipmi/
5620 F:      include/linux/ipmi*
5621 F:      include/uapi/linux/ipmi*
5622
5623 QCOM AUDIO (ASoC) DRIVERS
5624 M:      Patrick Lai <plai@codeaurora.org>
5625 M:      Banajit Goswami <bgoswami@codeaurora.org>
5626 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5627 S:      Supported
5628 F:      sound/soc/qcom/
5629
5630 IPS SCSI RAID DRIVER
5631 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
5632 L:      linux-scsi@vger.kernel.org
5633 W:      http://www.adaptec.com/
5634 S:      Maintained
5635 F:      drivers/scsi/ips*
5636
5637 IPVS
5638 M:      Wensong Zhang <wensong@linux-vs.org>
5639 M:      Simon Horman <horms@verge.net.au>
5640 M:      Julian Anastasov <ja@ssi.bg>
5641 L:      netdev@vger.kernel.org
5642 L:      lvs-devel@vger.kernel.org
5643 S:      Maintained
5644 F:      Documentation/networking/ipvs-sysctl.txt
5645 F:      include/net/ip_vs.h
5646 F:      include/uapi/linux/ip_vs.h
5647 F:      net/netfilter/ipvs/
5648
5649 IPWIRELESS DRIVER
5650 M:      Jiri Kosina <jikos@kernel.org>
5651 M:      David Sterba <dsterba@suse.com>
5652 S:      Odd Fixes
5653 F:      drivers/tty/ipwireless/
5654
5655 IPX NETWORK LAYER
5656 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
5657 L:      netdev@vger.kernel.org
5658 S:      Maintained
5659 F:      include/net/ipx.h
5660 F:      include/uapi/linux/ipx.h
5661 F:      net/ipx/
5662
5663 IRDA SUBSYSTEM
5664 M:      Samuel Ortiz <samuel@sortiz.org>
5665 L:      irda-users@lists.sourceforge.net (subscribers-only)
5666 L:      netdev@vger.kernel.org
5667 W:      http://irda.sourceforge.net/
5668 S:      Maintained
5669 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
5670 F:      Documentation/networking/irda.txt
5671 F:      drivers/net/irda/
5672 F:      include/net/irda/
5673 F:      net/irda/
5674
5675 IRQ SUBSYSTEM
5676 M:      Thomas Gleixner <tglx@linutronix.de>
5677 L:      linux-kernel@vger.kernel.org
5678 S:      Maintained
5679 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5680 F:      kernel/irq/
5681
5682 IRQCHIP DRIVERS
5683 M:      Thomas Gleixner <tglx@linutronix.de>
5684 M:      Jason Cooper <jason@lakedaemon.net>
5685 M:      Marc Zyngier <marc.zyngier@arm.com>
5686 L:      linux-kernel@vger.kernel.org
5687 S:      Maintained
5688 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5689 T:      git git://git.infradead.org/users/jcooper/linux.git irqchip/core
5690 F:      Documentation/devicetree/bindings/interrupt-controller/
5691 F:      drivers/irqchip/
5692
5693 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
5694 M:      Jiang Liu <jiang.liu@linux.intel.com>
5695 M:      Marc Zyngier <marc.zyngier@arm.com>
5696 S:      Maintained
5697 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5698 F:      Documentation/IRQ-domain.txt
5699 F:      include/linux/irqdomain.h
5700 F:      kernel/irq/irqdomain.c
5701 F:      kernel/irq/msi.c
5702
5703 ISAPNP
5704 M:      Jaroslav Kysela <perex@perex.cz>
5705 S:      Maintained
5706 F:      Documentation/isapnp.txt
5707 F:      drivers/pnp/isapnp/
5708 F:      include/linux/isapnp.h
5709
5710 ISA RADIO MODULE
5711 M:      Hans Verkuil <hverkuil@xs4all.nl>
5712 L:      linux-media@vger.kernel.org
5713 T:      git git://linuxtv.org/media_tree.git
5714 W:      http://linuxtv.org
5715 S:      Maintained
5716 F:      drivers/media/radio/radio-isa*
5717
5718 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
5719 M:      Peter Jones <pjones@redhat.com>
5720 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
5721 S:      Maintained
5722 F:      drivers/firmware/iscsi_ibft*
5723
5724 ISCSI
5725 M:      Mike Christie <michaelc@cs.wisc.edu>
5726 L:      open-iscsi@googlegroups.com
5727 W:      www.open-iscsi.org
5728 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
5729 S:      Maintained
5730 F:      drivers/scsi/*iscsi*
5731 F:      include/scsi/*iscsi*
5732
5733 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
5734 M:      Or Gerlitz <ogerlitz@mellanox.com>
5735 M:      Sagi Grimberg <sagig@mellanox.com>
5736 M:      Roi Dayan <roid@mellanox.com>
5737 L:      linux-rdma@vger.kernel.org
5738 S:      Supported
5739 W:      http://www.openfabrics.org
5740 W:      www.open-iscsi.org
5741 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5742 F:      drivers/infiniband/ulp/iser/
5743
5744 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
5745 M:      Sagi Grimberg <sagig@mellanox.com>
5746 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
5747 L:      linux-rdma@vger.kernel.org
5748 L:      target-devel@vger.kernel.org
5749 S:      Supported
5750 W:      http://www.linux-iscsi.org
5751 F:      drivers/infiniband/ulp/isert
5752
5753 ISDN SUBSYSTEM
5754 M:      Karsten Keil <isdn@linux-pingi.de>
5755 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5756 L:      netdev@vger.kernel.org
5757 W:      http://www.isdn4linux.de
5758 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
5759 S:      Maintained
5760 F:      Documentation/isdn/
5761 F:      drivers/isdn/
5762 F:      include/linux/isdn.h
5763 F:      include/linux/isdn/
5764 F:      include/uapi/linux/isdn.h
5765 F:      include/uapi/linux/isdn/
5766
5767 ISDN SUBSYSTEM (Eicon active card driver)
5768 M:      Armin Schindler <mac@melware.de>
5769 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5770 W:      http://www.melware.de
5771 S:      Maintained
5772 F:      drivers/isdn/hardware/eicon/
5773
5774 IT87 HARDWARE MONITORING DRIVER
5775 M:      Jean Delvare <jdelvare@suse.com>
5776 L:      lm-sensors@lm-sensors.org
5777 S:      Maintained
5778 F:      Documentation/hwmon/it87
5779 F:      drivers/hwmon/it87.c
5780
5781 IT913X MEDIA DRIVER
5782 M:      Antti Palosaari <crope@iki.fi>
5783 L:      linux-media@vger.kernel.org
5784 W:      http://linuxtv.org/
5785 W:      http://palosaari.fi/linux/
5786 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5787 T:      git git://linuxtv.org/anttip/media_tree.git
5788 S:      Maintained
5789 F:      drivers/media/tuners/it913x*
5790
5791 IVTV VIDEO4LINUX DRIVER
5792 M:      Andy Walls <awalls@md.metrocast.net>
5793 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
5794 L:      linux-media@vger.kernel.org
5795 T:      git git://linuxtv.org/media_tree.git
5796 W:      http://www.ivtvdriver.org
5797 S:      Maintained
5798 F:      Documentation/video4linux/*.ivtv
5799 F:      drivers/media/pci/ivtv/
5800 F:      include/uapi/linux/ivtv*
5801
5802 IX2505V MEDIA DRIVER
5803 M:      Malcolm Priestley <tvboxspy@gmail.com>
5804 L:      linux-media@vger.kernel.org
5805 W:      http://linuxtv.org/
5806 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5807 S:      Maintained
5808 F:      drivers/media/dvb-frontends/ix2505v*
5809
5810 JC42.4 TEMPERATURE SENSOR DRIVER
5811 M:      Guenter Roeck <linux@roeck-us.net>
5812 L:      lm-sensors@lm-sensors.org
5813 S:      Maintained
5814 F:      drivers/hwmon/jc42.c
5815 F:      Documentation/hwmon/jc42
5816
5817 JFS FILESYSTEM
5818 M:      Dave Kleikamp <shaggy@kernel.org>
5819 L:      jfs-discussion@lists.sourceforge.net
5820 W:      http://jfs.sourceforge.net/
5821 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
5822 S:      Maintained
5823 F:      Documentation/filesystems/jfs.txt
5824 F:      fs/jfs/
5825
5826 JME NETWORK DRIVER
5827 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
5828 L:      netdev@vger.kernel.org
5829 S:      Maintained
5830 F:      drivers/net/ethernet/jme.*
5831
5832 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
5833 M:      David Woodhouse <dwmw2@infradead.org>
5834 L:      linux-mtd@lists.infradead.org
5835 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
5836 S:      Maintained
5837 F:      fs/jffs2/
5838 F:      include/uapi/linux/jffs2.h
5839
5840 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
5841 M:      "Theodore Ts'o" <tytso@mit.edu>
5842 M:      Jan Kara <jack@suse.com>
5843 L:      linux-ext4@vger.kernel.org
5844 S:      Maintained
5845 F:      fs/jbd2/
5846 F:      include/linux/jbd2.h
5847
5848 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
5849 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
5850 L:      linux-media@vger.kernel.org
5851 S:      Maintained
5852 F:      drivers/media/platform/rcar_jpu.c
5853
5854 JSM Neo PCI based serial card
5855 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
5856 L:      linux-serial@vger.kernel.org
5857 S:      Maintained
5858 F:      drivers/tty/serial/jsm/
5859
5860 K10TEMP HARDWARE MONITORING DRIVER
5861 M:      Clemens Ladisch <clemens@ladisch.de>
5862 L:      lm-sensors@lm-sensors.org
5863 S:      Maintained
5864 F:      Documentation/hwmon/k10temp
5865 F:      drivers/hwmon/k10temp.c
5866
5867 K8TEMP HARDWARE MONITORING DRIVER
5868 M:      Rudolf Marek <r.marek@assembler.cz>
5869 L:      lm-sensors@lm-sensors.org
5870 S:      Maintained
5871 F:      Documentation/hwmon/k8temp
5872 F:      drivers/hwmon/k8temp.c
5873
5874 KCONFIG
5875 M:      "Yann E. MORIN" <yann.morin.1998@free.fr>
5876 L:      linux-kbuild@vger.kernel.org
5877 T:      git git://gitorious.org/linux-kconfig/linux-kconfig
5878 S:      Maintained
5879 F:      Documentation/kbuild/kconfig-language.txt
5880 F:      scripts/kconfig/
5881
5882 KDUMP
5883 M:      Vivek Goyal <vgoyal@redhat.com>
5884 M:      Haren Myneni <hbabu@us.ibm.com>
5885 L:      kexec@lists.infradead.org
5886 W:      http://lse.sourceforge.net/kdump/
5887 S:      Maintained
5888 F:      Documentation/kdump/
5889
5890 KEENE FM RADIO TRANSMITTER DRIVER
5891 M:      Hans Verkuil <hverkuil@xs4all.nl>
5892 L:      linux-media@vger.kernel.org
5893 T:      git git://linuxtv.org/media_tree.git
5894 W:      http://linuxtv.org
5895 S:      Maintained
5896 F:      drivers/media/radio/radio-keene*
5897
5898 KERNEL AUTOMOUNTER v4 (AUTOFS4)
5899 M:      Ian Kent <raven@themaw.net>
5900 L:      autofs@vger.kernel.org
5901 S:      Maintained
5902 F:      fs/autofs4/
5903
5904 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
5905 M:      Michal Marek <mmarek@suse.com>
5906 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
5907 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
5908 L:      linux-kbuild@vger.kernel.org
5909 S:      Maintained
5910 F:      Documentation/kbuild/
5911 F:      Makefile
5912 F:      scripts/Makefile.*
5913 F:      scripts/basic/
5914 F:      scripts/mk*
5915 F:      scripts/package/
5916
5917 KERNEL JANITORS
5918 L:      kernel-janitors@vger.kernel.org
5919 W:      http://kernelnewbies.org/KernelJanitors
5920 S:      Odd Fixes
5921
5922 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
5923 M:      "J. Bruce Fields" <bfields@fieldses.org>
5924 M:      Jeff Layton <jlayton@poochiereds.net>
5925 L:      linux-nfs@vger.kernel.org
5926 W:      http://nfs.sourceforge.net/
5927 S:      Supported
5928 F:      fs/nfsd/
5929 F:      include/uapi/linux/nfsd/
5930 F:      fs/lockd/
5931 F:      fs/nfs_common/
5932 F:      net/sunrpc/
5933 F:      include/linux/lockd/
5934 F:      include/linux/sunrpc/
5935 F:      include/uapi/linux/sunrpc/
5936
5937 KERNEL SELFTEST FRAMEWORK
5938 M:      Shuah Khan <shuahkh@osg.samsung.com>
5939 L:      linux-api@vger.kernel.org
5940 T:      git git://git.kernel.org/pub/scm/shuah/linux-kselftest
5941 S:      Maintained
5942 F:      tools/testing/selftests
5943
5944 KERNEL VIRTUAL MACHINE (KVM)
5945 M:      Gleb Natapov <gleb@kernel.org>
5946 M:      Paolo Bonzini <pbonzini@redhat.com>
5947 L:      kvm@vger.kernel.org
5948 W:      http://www.linux-kvm.org
5949 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
5950 S:      Supported
5951 F:      Documentation/*/kvm*.txt
5952 F:      Documentation/virtual/kvm/
5953 F:      arch/*/kvm/
5954 F:      arch/x86/kernel/kvm.c
5955 F:      arch/x86/kernel/kvmclock.c
5956 F:      arch/*/include/asm/kvm*
5957 F:      include/linux/kvm*
5958 F:      include/uapi/linux/kvm*
5959 F:      virt/kvm/
5960
5961 KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
5962 M:      Joerg Roedel <joro@8bytes.org>
5963 L:      kvm@vger.kernel.org
5964 W:      http://kvm.qumranet.com
5965 S:      Maintained
5966 F:      arch/x86/include/asm/svm.h
5967 F:      arch/x86/kvm/svm.c
5968
5969 KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
5970 M:      Alexander Graf <agraf@suse.com>
5971 L:      kvm-ppc@vger.kernel.org
5972 W:      http://kvm.qumranet.com
5973 T:      git git://github.com/agraf/linux-2.6.git
5974 S:      Supported
5975 F:      arch/powerpc/include/asm/kvm*
5976 F:      arch/powerpc/kvm/
5977
5978 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
5979 M:      Christian Borntraeger <borntraeger@de.ibm.com>
5980 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
5981 L:      linux-s390@vger.kernel.org
5982 W:      http://www.ibm.com/developerworks/linux/linux390/
5983 S:      Supported
5984 F:      Documentation/s390/kvm.txt
5985 F:      arch/s390/include/asm/kvm*
5986 F:      arch/s390/kvm/
5987
5988 KERNEL VIRTUAL MACHINE (KVM) FOR ARM
5989 M:      Christoffer Dall <christoffer.dall@linaro.org>
5990 M:      Marc Zyngier <marc.zyngier@arm.com>
5991 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5992 L:      kvmarm@lists.cs.columbia.edu
5993 W:      http://systems.cs.columbia.edu/projects/kvm-arm
5994 S:      Supported
5995 F:      arch/arm/include/uapi/asm/kvm*
5996 F:      arch/arm/include/asm/kvm*
5997 F:      arch/arm/kvm/
5998 F:      virt/kvm/arm/
5999 F:      include/kvm/arm_*
6000
6001 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
6002 M:      Christoffer Dall <christoffer.dall@linaro.org>
6003 M:      Marc Zyngier <marc.zyngier@arm.com>
6004 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6005 L:      kvmarm@lists.cs.columbia.edu
6006 S:      Maintained
6007 F:      arch/arm64/include/uapi/asm/kvm*
6008 F:      arch/arm64/include/asm/kvm*
6009 F:      arch/arm64/kvm/
6010
6011 KEXEC
6012 M:      Eric Biederman <ebiederm@xmission.com>
6013 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
6014 L:      kexec@lists.infradead.org
6015 S:      Maintained
6016 F:      include/linux/kexec.h
6017 F:      include/uapi/linux/kexec.h
6018 F:      kernel/kexec.c
6019
6020 KEYS/KEYRINGS:
6021 M:      David Howells <dhowells@redhat.com>
6022 L:      keyrings@vger.kernel.org
6023 S:      Maintained
6024 F:      Documentation/security/keys.txt
6025 F:      include/linux/key.h
6026 F:      include/linux/key-type.h
6027 F:      include/keys/
6028 F:      security/keys/
6029
6030 KEYS-TRUSTED
6031 M:      David Safford <safford@us.ibm.com>
6032 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6033 L:      linux-security-module@vger.kernel.org
6034 L:      keyrings@vger.kernel.org
6035 S:      Supported
6036 F:      Documentation/security/keys-trusted-encrypted.txt
6037 F:      include/keys/trusted-type.h
6038 F:      security/keys/trusted.c
6039 F:      security/keys/trusted.h
6040
6041 KEYS-ENCRYPTED
6042 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6043 M:      David Safford <safford@us.ibm.com>
6044 L:      linux-security-module@vger.kernel.org
6045 L:      keyrings@vger.kernel.org
6046 S:      Supported
6047 F:      Documentation/security/keys-trusted-encrypted.txt
6048 F:      include/keys/encrypted-type.h
6049 F:      security/keys/encrypted-keys/
6050
6051 KGDB / KDB /debug_core
6052 M:      Jason Wessel <jason.wessel@windriver.com>
6053 W:      http://kgdb.wiki.kernel.org/
6054 L:      kgdb-bugreport@lists.sourceforge.net
6055 S:      Maintained
6056 F:      Documentation/DocBook/kgdb.tmpl
6057 F:      drivers/misc/kgdbts.c
6058 F:      drivers/tty/serial/kgdboc.c
6059 F:      include/linux/kdb.h
6060 F:      include/linux/kgdb.h
6061 F:      kernel/debug/
6062
6063 KMEMCHECK
6064 M:      Vegard Nossum <vegardno@ifi.uio.no>
6065 M:      Pekka Enberg <penberg@kernel.org>
6066 S:      Maintained
6067 F:      Documentation/kmemcheck.txt
6068 F:      arch/x86/include/asm/kmemcheck.h
6069 F:      arch/x86/mm/kmemcheck/
6070 F:      include/linux/kmemcheck.h
6071 F:      mm/kmemcheck.c
6072
6073 KMEMLEAK
6074 M:      Catalin Marinas <catalin.marinas@arm.com>
6075 S:      Maintained
6076 F:      Documentation/kmemleak.txt
6077 F:      include/linux/kmemleak.h
6078 F:      mm/kmemleak.c
6079 F:      mm/kmemleak-test.c
6080
6081 KPROBES
6082 M:      Ananth N Mavinakayanahalli <ananth@in.ibm.com>
6083 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
6084 M:      "David S. Miller" <davem@davemloft.net>
6085 M:      Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
6086 S:      Maintained
6087 F:      Documentation/kprobes.txt
6088 F:      include/linux/kprobes.h
6089 F:      kernel/kprobes.c
6090
6091 KS0108 LCD CONTROLLER DRIVER
6092 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
6093 W:      http://miguelojeda.es/auxdisplay.htm
6094 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
6095 S:      Maintained
6096 F:      Documentation/auxdisplay/ks0108
6097 F:      drivers/auxdisplay/ks0108.c
6098 F:      include/linux/ks0108.h
6099
6100 LAPB module
6101 L:      linux-x25@vger.kernel.org
6102 S:      Orphan
6103 F:      Documentation/networking/lapb-module.txt
6104 F:      include/*/lapb.h
6105 F:      net/lapb/
6106
6107 LASI 53c700 driver for PARISC
6108 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
6109 L:      linux-scsi@vger.kernel.org
6110 S:      Maintained
6111 F:      Documentation/scsi/53c700.txt
6112 F:      drivers/scsi/53c700*
6113
6114 LED SUBSYSTEM
6115 M:      Richard Purdie <rpurdie@rpsys.net>
6116 M:      Jacek Anaszewski <j.anaszewski@samsung.com>
6117 L:      linux-leds@vger.kernel.org
6118 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
6119 S:      Maintained
6120 F:      drivers/leds/
6121 F:      include/linux/leds.h
6122
6123 LEGACY EEPROM DRIVER
6124 M:      Jean Delvare <jdelvare@suse.com>
6125 S:      Maintained
6126 F:      Documentation/misc-devices/eeprom
6127 F:      drivers/misc/eeprom/eeprom.c
6128
6129 LEGO USB Tower driver
6130 M:      Juergen Stuber <starblue@users.sourceforge.net>
6131 L:      legousb-devel@lists.sourceforge.net
6132 W:      http://legousb.sourceforge.net/
6133 S:      Maintained
6134 F:      drivers/usb/misc/legousbtower.c
6135
6136 LG2160 MEDIA DRIVER
6137 M:      Michael Krufky <mkrufky@linuxtv.org>
6138 L:      linux-media@vger.kernel.org
6139 W:      http://linuxtv.org/
6140 W:      http://github.com/mkrufky
6141 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6142 T:      git git://linuxtv.org/mkrufky/tuners.git
6143 S:      Maintained
6144 F:      drivers/media/dvb-frontends/lg2160.*
6145
6146 LGDT3305 MEDIA DRIVER
6147 M:      Michael Krufky <mkrufky@linuxtv.org>
6148 L:      linux-media@vger.kernel.org
6149 W:      http://linuxtv.org/
6150 W:      http://github.com/mkrufky
6151 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6152 T:      git git://linuxtv.org/mkrufky/tuners.git
6153 S:      Maintained
6154 F:      drivers/media/dvb-frontends/lgdt3305.*
6155
6156 LGUEST
6157 M:      Rusty Russell <rusty@rustcorp.com.au>
6158 L:      lguest@lists.ozlabs.org
6159 W:      http://lguest.ozlabs.org/
6160 S:      Odd Fixes
6161 F:      arch/x86/include/asm/lguest*.h
6162 F:      arch/x86/lguest/
6163 F:      drivers/lguest/
6164 F:      include/linux/lguest*.h
6165 F:      tools/lguest/
6166
6167 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
6168 M:      Tejun Heo <tj@kernel.org>
6169 L:      linux-ide@vger.kernel.org
6170 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6171 S:      Maintained
6172 F:      drivers/ata/
6173 F:      include/linux/ata.h
6174 F:      include/linux/libata.h
6175
6176 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
6177 M:      Viresh Kumar <vireshk@kernel.org>
6178 L:      linux-ide@vger.kernel.org
6179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6180 S:      Maintained
6181 F:      include/linux/pata_arasan_cf_data.h
6182 F:      drivers/ata/pata_arasan_cf.c
6183
6184 LIBATA PATA DRIVERS
6185 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6186 M:      Tejun Heo <tj@kernel.org>
6187 L:      linux-ide@vger.kernel.org
6188 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6189 S:      Maintained
6190 F:      drivers/ata/pata_*.c
6191 F:      drivers/ata/ata_generic.c
6192
6193 LIBATA SATA AHCI PLATFORM devices support
6194 M:      Hans de Goede <hdegoede@redhat.com>
6195 M:      Tejun Heo <tj@kernel.org>
6196 L:      linux-ide@vger.kernel.org
6197 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6198 S:      Maintained
6199 F:      drivers/ata/ahci_platform.c
6200 F:      drivers/ata/libahci_platform.c
6201 F:      include/linux/ahci_platform.h
6202
6203 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
6204 M:      Mikael Pettersson <mikpelinux@gmail.com>
6205 L:      linux-ide@vger.kernel.org
6206 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6207 S:      Maintained
6208 F:      drivers/ata/sata_promise.*
6209
6210 LIBLOCKDEP
6211 M:      Sasha Levin <sasha.levin@oracle.com>
6212 S:      Maintained
6213 F:      tools/lib/lockdep/
6214
6215 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
6216 M:      Dan Williams <dan.j.williams@intel.com>
6217 L:      linux-nvdimm@lists.01.org
6218 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6219 S:      Supported
6220 F:      drivers/nvdimm/*
6221 F:      include/linux/nd.h
6222 F:      include/linux/libnvdimm.h
6223 F:      include/uapi/linux/ndctl.h
6224
6225 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
6226 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6227 L:      linux-nvdimm@lists.01.org
6228 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6229 S:      Supported
6230 F:      drivers/nvdimm/blk.c
6231 F:      drivers/nvdimm/region_devs.c
6232 F:      drivers/acpi/nfit*
6233
6234 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
6235 M:      Vishal Verma <vishal.l.verma@intel.com>
6236 L:      linux-nvdimm@lists.01.org
6237 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6238 S:      Supported
6239 F:      drivers/nvdimm/btt*
6240
6241 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
6242 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6243 L:      linux-nvdimm@lists.01.org
6244 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6245 S:      Supported
6246 F:      drivers/nvdimm/pmem.c
6247 F:      include/linux/pmem.h
6248 F:      arch/*/include/asm/pmem.h
6249
6250 LINUX FOR IBM pSERIES (RS/6000)
6251 M:      Paul Mackerras <paulus@au.ibm.com>
6252 W:      http://www.ibm.com/linux/ltc/projects/ppc
6253 S:      Supported
6254 F:      arch/powerpc/boot/rs6000.h
6255
6256 LINUX FOR POWERPC (32-BIT AND 64-BIT)
6257 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6258 M:      Paul Mackerras <paulus@samba.org>
6259 M:      Michael Ellerman <mpe@ellerman.id.au>
6260 W:      http://www.penguinppc.org/
6261 L:      linuxppc-dev@lists.ozlabs.org
6262 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
6263 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
6264 S:      Supported
6265 F:      Documentation/powerpc/
6266 F:      arch/powerpc/
6267
6268 LINUX FOR POWER MACINTOSH
6269 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6270 W:      http://www.penguinppc.org/
6271 L:      linuxppc-dev@lists.ozlabs.org
6272 S:      Maintained
6273 F:      arch/powerpc/platforms/powermac/
6274 F:      drivers/macintosh/
6275
6276 LINUX FOR POWERPC EMBEDDED MPC5XXX
6277 M:      Anatolij Gustschin <agust@denx.de>
6278 L:      linuxppc-dev@lists.ozlabs.org
6279 T:      git git://git.denx.de/linux-denx-agust.git
6280 S:      Maintained
6281 F:      arch/powerpc/platforms/512x/
6282 F:      arch/powerpc/platforms/52xx/
6283
6284 LINUX FOR POWERPC EMBEDDED PPC4XX
6285 M:      Alistair Popple <alistair@popple.id.au>
6286 M:      Matt Porter <mporter@kernel.crashing.org>
6287 W:      http://www.penguinppc.org/
6288 L:      linuxppc-dev@lists.ozlabs.org
6289 S:      Maintained
6290 F:      arch/powerpc/platforms/40x/
6291 F:      arch/powerpc/platforms/44x/
6292
6293 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
6294 L:      linuxppc-dev@lists.ozlabs.org
6295 S:      Orphan
6296 F:      arch/powerpc/*/*virtex*
6297 F:      arch/powerpc/*/*/*virtex*
6298
6299 LINUX FOR POWERPC EMBEDDED PPC8XX
6300 M:      Vitaly Bordug <vitb@kernel.crashing.org>
6301 W:      http://www.penguinppc.org/
6302 L:      linuxppc-dev@lists.ozlabs.org
6303 S:      Maintained
6304 F:      arch/powerpc/platforms/8xx/
6305
6306 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
6307 M:      Scott Wood <scottwood@freescale.com>
6308 M:      Kumar Gala <galak@kernel.crashing.org>
6309 W:      http://www.penguinppc.org/
6310 L:      linuxppc-dev@lists.ozlabs.org
6311 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
6312 S:      Maintained
6313 F:      arch/powerpc/platforms/83xx/
6314 F:      arch/powerpc/platforms/85xx/
6315
6316 LINUX FOR POWERPC PA SEMI PWRFICIENT
6317 M:      Olof Johansson <olof@lixom.net>
6318 L:      linuxppc-dev@lists.ozlabs.org
6319 S:      Maintained
6320 F:      arch/powerpc/platforms/pasemi/
6321 F:      drivers/*/*pasemi*
6322 F:      drivers/*/*/*pasemi*
6323
6324 LINUX SECURITY MODULE (LSM) FRAMEWORK
6325 M:      Chris Wright <chrisw@sous-sol.org>
6326 L:      linux-security-module@vger.kernel.org
6327 S:      Supported
6328
6329 LIS3LV02D ACCELEROMETER DRIVER
6330 M:      Eric Piel <eric.piel@tremplin-utc.net>
6331 S:      Maintained
6332 F:      Documentation/misc-devices/lis3lv02d
6333 F:      drivers/misc/lis3lv02d/
6334 F:      drivers/platform/x86/hp_accel.c
6335
6336 LIVE PATCHING
6337 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6338 M:      Seth Jennings <sjenning@redhat.com>
6339 M:      Jiri Kosina <jikos@kernel.org>
6340 M:      Vojtech Pavlik <vojtech@suse.com>
6341 S:      Maintained
6342 F:      kernel/livepatch/
6343 F:      include/linux/livepatch.h
6344 F:      arch/x86/include/asm/livepatch.h
6345 F:      arch/x86/kernel/livepatch.c
6346 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
6347 F:      samples/livepatch/
6348 L:      live-patching@vger.kernel.org
6349 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
6350
6351 LLC (802.2)
6352 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
6353 S:      Maintained
6354 F:      include/linux/llc.h
6355 F:      include/uapi/linux/llc.h
6356 F:      include/net/llc*
6357 F:      net/llc/
6358
6359 LM73 HARDWARE MONITOR DRIVER
6360 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
6361 L:      lm-sensors@lm-sensors.org
6362 S:      Maintained
6363 F:      drivers/hwmon/lm73.c
6364
6365 LM78 HARDWARE MONITOR DRIVER
6366 M:      Jean Delvare <jdelvare@suse.com>
6367 L:      lm-sensors@lm-sensors.org
6368 S:      Maintained
6369 F:      Documentation/hwmon/lm78
6370 F:      drivers/hwmon/lm78.c
6371
6372 LM83 HARDWARE MONITOR DRIVER
6373 M:      Jean Delvare <jdelvare@suse.com>
6374 L:      lm-sensors@lm-sensors.org
6375 S:      Maintained
6376 F:      Documentation/hwmon/lm83
6377 F:      drivers/hwmon/lm83.c
6378
6379 LM90 HARDWARE MONITOR DRIVER
6380 M:      Jean Delvare <jdelvare@suse.com>
6381 L:      lm-sensors@lm-sensors.org
6382 S:      Maintained
6383 F:      Documentation/hwmon/lm90
6384 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
6385 F:      drivers/hwmon/lm90.c
6386
6387 LM95234 HARDWARE MONITOR DRIVER
6388 M:      Guenter Roeck <linux@roeck-us.net>
6389 L:      lm-sensors@lm-sensors.org
6390 S:      Maintained
6391 F:      Documentation/hwmon/lm95234
6392 F:      drivers/hwmon/lm95234.c
6393
6394 LME2510 MEDIA DRIVER
6395 M:      Malcolm Priestley <tvboxspy@gmail.com>
6396 L:      linux-media@vger.kernel.org
6397 W:      http://linuxtv.org/
6398 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6399 S:      Maintained
6400 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
6401
6402 LOCKDEP AND LOCKSTAT
6403 M:      Peter Zijlstra <peterz@infradead.org>
6404 M:      Ingo Molnar <mingo@redhat.com>
6405 L:      linux-kernel@vger.kernel.org
6406 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
6407 S:      Maintained
6408 F:      Documentation/locking/lockdep*.txt
6409 F:      Documentation/locking/lockstat.txt
6410 F:      include/linux/lockdep.h
6411 F:      kernel/locking/
6412
6413 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
6414 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
6415 L:      linux-ntfs-dev@lists.sourceforge.net
6416 W:      http://www.linux-ntfs.org/content/view/19/37/
6417 S:      Maintained
6418 F:      Documentation/ldm.txt
6419 F:      block/partitions/ldm.*
6420
6421 LogFS
6422 M:      Joern Engel <joern@logfs.org>
6423 M:      Prasad Joshi <prasadjoshi.linux@gmail.com>
6424 L:      logfs@logfs.org
6425 W:      logfs.org
6426 S:      Maintained
6427 F:      fs/logfs/
6428
6429 LPC32XX MACHINE SUPPORT
6430 M:      Roland Stigge <stigge@antcom.de>
6431 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6432 S:      Maintained
6433 F:      arch/arm/mach-lpc32xx/
6434
6435 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
6436 M:      Nagalakshmi Nandigama <nagalakshmi.nandigama@avagotech.com>
6437 M:      Praveen Krishnamoorthy <praveen.krishnamoorthy@avagotech.com>
6438 M:      Sreekanth Reddy <sreekanth.reddy@avagotech.com>
6439 M:      Abhijit Mahajan <abhijit.mahajan@avagotech.com>
6440 L:      MPT-FusionLinux.pdl@avagotech.com
6441 L:      linux-scsi@vger.kernel.org
6442 W:      http://www.lsilogic.com/support
6443 S:      Supported
6444 F:      drivers/message/fusion/
6445 F:      drivers/scsi/mpt2sas/
6446 F:      drivers/scsi/mpt3sas/
6447
6448 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
6449 M:      Matthew Wilcox <matthew@wil.cx>
6450 L:      linux-scsi@vger.kernel.org
6451 S:      Maintained
6452 F:      drivers/scsi/sym53c8xx_2/
6453
6454 LTC4261 HARDWARE MONITOR DRIVER
6455 M:      Guenter Roeck <linux@roeck-us.net>
6456 L:      lm-sensors@lm-sensors.org
6457 S:      Maintained
6458 F:      Documentation/hwmon/ltc4261
6459 F:      drivers/hwmon/ltc4261.c
6460
6461 LTP (Linux Test Project)
6462 M:      Mike Frysinger <vapier@gentoo.org>
6463 M:      Cyril Hrubis <chrubis@suse.cz>
6464 M:      Wanlong Gao <gaowanlong@cn.fujitsu.com>
6465 M:      Jan Stancek <jstancek@redhat.com>
6466 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
6467 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
6468 L:      ltp-list@lists.sourceforge.net (subscribers-only)
6469 W:      http://linux-test-project.github.io/
6470 T:      git git://github.com/linux-test-project/ltp.git
6471 S:      Maintained
6472
6473 M32R ARCHITECTURE
6474 W:      http://www.linux-m32r.org/
6475 S:      Orphan
6476 F:      arch/m32r/
6477
6478 M68K ARCHITECTURE
6479 M:      Geert Uytterhoeven <geert@linux-m68k.org>
6480 L:      linux-m68k@lists.linux-m68k.org
6481 W:      http://www.linux-m68k.org/
6482 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
6483 S:      Maintained
6484 F:      arch/m68k/
6485 F:      drivers/zorro/
6486
6487 M68K ON APPLE MACINTOSH
6488 M:      Joshua Thompson <funaho@jurai.org>
6489 W:      http://www.mac.linux-m68k.org/
6490 L:      linux-m68k@lists.linux-m68k.org
6491 S:      Maintained
6492 F:      arch/m68k/mac/
6493
6494 M68K ON HP9000/300
6495 M:      Philip Blundell <philb@gnu.org>
6496 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
6497 S:      Maintained
6498 F:      arch/m68k/hp300/
6499
6500 M88DS3103 MEDIA DRIVER
6501 M:      Antti Palosaari <crope@iki.fi>
6502 L:      linux-media@vger.kernel.org
6503 W:      http://linuxtv.org/
6504 W:      http://palosaari.fi/linux/
6505 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6506 T:      git git://linuxtv.org/anttip/media_tree.git
6507 S:      Maintained
6508 F:      drivers/media/dvb-frontends/m88ds3103*
6509
6510 M88RS2000 MEDIA DRIVER
6511 M:      Malcolm Priestley <tvboxspy@gmail.com>
6512 L:      linux-media@vger.kernel.org
6513 W:      http://linuxtv.org/
6514 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6515 S:      Maintained
6516 F:      drivers/media/dvb-frontends/m88rs2000*
6517
6518 MA901 MASTERKIT USB FM RADIO DRIVER
6519 M:      Alexey Klimov <klimov.linux@gmail.com>
6520 L:      linux-media@vger.kernel.org
6521 T:      git git://linuxtv.org/media_tree.git
6522 S:      Maintained
6523 F:      drivers/media/radio/radio-ma901.c
6524
6525 MAC80211
6526 M:      Johannes Berg <johannes@sipsolutions.net>
6527 L:      linux-wireless@vger.kernel.org
6528 W:      http://wireless.kernel.org/
6529 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6530 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
6531 S:      Maintained
6532 F:      Documentation/networking/mac80211-injection.txt
6533 F:      include/net/mac80211.h
6534 F:      net/mac80211/
6535
6536 MACVLAN DRIVER
6537 M:      Patrick McHardy <kaber@trash.net>
6538 L:      netdev@vger.kernel.org
6539 S:      Maintained
6540 F:      drivers/net/macvlan.c
6541 F:      include/linux/if_macvlan.h
6542
6543 MAILBOX API
6544 M:      Jassi Brar <jassisinghbrar@gmail.com>
6545 L:      linux-kernel@vger.kernel.org
6546 S:      Maintained
6547 F:      drivers/mailbox/
6548 F:      include/linux/mailbox_client.h
6549 F:      include/linux/mailbox_controller.h
6550
6551 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
6552 M:      Michael Kerrisk <mtk.manpages@gmail.com>
6553 W:      http://www.kernel.org/doc/man-pages
6554 L:      linux-man@vger.kernel.org
6555 S:      Maintained
6556
6557 MARVELL ARMADA DRM SUPPORT
6558 M:      Russell King <rmk+kernel@arm.linux.org.uk>
6559 S:      Maintained
6560 F:      drivers/gpu/drm/armada/
6561
6562 MARVELL 88E6352 DSA support
6563 M:      Guenter Roeck <linux@roeck-us.net>
6564 S:      Maintained
6565 F:      drivers/net/dsa/mv88e6352.c
6566
6567 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
6568 M:      Mirko Lindner <mlindner@marvell.com>
6569 M:      Stephen Hemminger <stephen@networkplumber.org>
6570 L:      netdev@vger.kernel.org
6571 S:      Maintained
6572 F:      drivers/net/ethernet/marvell/sk*
6573
6574 MARVELL LIBERTAS WIRELESS DRIVER
6575 L:      libertas-dev@lists.infradead.org
6576 S:      Orphan
6577 F:      drivers/net/wireless/libertas/
6578
6579 MARVELL MV643XX ETHERNET DRIVER
6580 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
6581 L:      netdev@vger.kernel.org
6582 S:      Maintained
6583 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
6584 F:      include/linux/mv643xx.h
6585
6586 MARVELL MVNETA ETHERNET DRIVER
6587 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
6588 L:      netdev@vger.kernel.org
6589 S:      Maintained
6590 F:      drivers/net/ethernet/marvell/mvneta.*
6591
6592 MARVELL MWIFIEX WIRELESS DRIVER
6593 M:      Amitkumar Karwar <akarwar@marvell.com>
6594 M:      Nishant Sarmukadam <nishants@marvell.com>
6595 L:      linux-wireless@vger.kernel.org
6596 S:      Maintained
6597 F:      drivers/net/wireless/mwifiex/
6598
6599 MARVELL MWL8K WIRELESS DRIVER
6600 M:      Lennert Buytenhek <buytenh@wantstofly.org>
6601 L:      linux-wireless@vger.kernel.org
6602 S:      Odd Fixes
6603 F:      drivers/net/wireless/mwl8k.c
6604
6605 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
6606 M:      Nicolas Pitre <nico@fluxnic.net>
6607 S:      Odd Fixes
6608 F:      drivers/mmc/host/mvsdio.*
6609
6610 MATROX FRAMEBUFFER DRIVER
6611 L:      linux-fbdev@vger.kernel.org
6612 S:      Orphan
6613 F:      drivers/video/fbdev/matrox/matroxfb_*
6614 F:      include/uapi/linux/matroxfb.h
6615
6616 MAX16065 HARDWARE MONITOR DRIVER
6617 M:      Guenter Roeck <linux@roeck-us.net>
6618 L:      lm-sensors@lm-sensors.org
6619 S:      Maintained
6620 F:      Documentation/hwmon/max16065
6621 F:      drivers/hwmon/max16065.c
6622
6623 MAX20751 HARDWARE MONITOR DRIVER
6624 M:      Guenter Roeck <linux@roeck-us.net>
6625 L:      lm-sensors@lm-sensors.org
6626 S:      Maintained
6627 F:      Documentation/hwmon/max20751
6628 F:      drivers/hwmon/max20751.c
6629
6630 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6631 M:      "Hans J. Koch" <hjk@hansjkoch.de>
6632 L:      lm-sensors@lm-sensors.org
6633 S:      Maintained
6634 F:      Documentation/hwmon/max6650
6635 F:      drivers/hwmon/max6650.c
6636
6637 MAX6697 HARDWARE MONITOR DRIVER
6638 M:      Guenter Roeck <linux@roeck-us.net>
6639 L:      lm-sensors@lm-sensors.org
6640 S:      Maintained
6641 F:      Documentation/hwmon/max6697
6642 F:      Documentation/devicetree/bindings/i2c/max6697.txt
6643 F:      drivers/hwmon/max6697.c
6644 F:      include/linux/platform_data/max6697.h
6645
6646 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
6647 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6648 L:      linux-pm@vger.kernel.org
6649 S:      Supported
6650 F:      drivers/power/max14577_charger.c
6651 F:      drivers/power/max77693_charger.c
6652
6653 MAXIM MAX77802 MULTIFUNCTION PMIC DEVICE DRIVERS
6654 M:      Javier Martinez Canillas <javier@osg.samsung.com>
6655 L:      linux-kernel@vger.kernel.org
6656 S:      Supported
6657 F:      drivers/*/*max77802.c
6658 F:      Documentation/devicetree/bindings/*/*max77802.txt
6659 F:      include/dt-bindings/*/*max77802.h
6660
6661 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
6662 M:      Chanwoo Choi <cw00.choi@samsung.com>
6663 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6664 L:      linux-kernel@vger.kernel.org
6665 S:      Supported
6666 F:      drivers/*/max14577.c
6667 F:      drivers/*/max77686.c
6668 F:      drivers/*/max77693.c
6669 F:      drivers/extcon/extcon-max14577.c
6670 F:      drivers/extcon/extcon-max77693.c
6671 F:      drivers/rtc/rtc-max77686.c
6672 F:      drivers/clk/clk-max77686.c
6673 F:      Documentation/devicetree/bindings/mfd/max14577.txt
6674 F:      Documentation/devicetree/bindings/*/max77686.txt
6675 F:      Documentation/devicetree/bindings/mfd/max77693.txt
6676 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
6677 F:      include/linux/mfd/max14577*.h
6678 F:      include/linux/mfd/max77686*.h
6679 F:      include/linux/mfd/max77693*.h
6680
6681 MAXIRADIO FM RADIO RECEIVER DRIVER
6682 M:      Hans Verkuil <hverkuil@xs4all.nl>
6683 L:      linux-media@vger.kernel.org
6684 T:      git git://linuxtv.org/media_tree.git
6685 W:      http://linuxtv.org
6686 S:      Maintained
6687 F:      drivers/media/radio/radio-maxiradio*
6688
6689 MEDIA DRIVERS FOR RENESAS - VSP1
6690 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6691 L:      linux-media@vger.kernel.org
6692 L:      linux-sh@vger.kernel.org
6693 T:      git git://linuxtv.org/media_tree.git
6694 S:      Supported
6695 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
6696 F:      drivers/media/platform/vsp1/
6697
6698 MEDIA DRIVERS FOR ASCOT2E
6699 M:      Sergey Kozlov <serjk@netup.ru>
6700 L:      linux-media@vger.kernel.org
6701 W:      http://linuxtv.org
6702 W:      http://netup.tv/
6703 T:      git git://linuxtv.org/media_tree.git
6704 S:      Supported
6705 F:      drivers/media/dvb-frontends/ascot2e*
6706
6707 MEDIA DRIVERS FOR CXD2841ER
6708 M:      Sergey Kozlov <serjk@netup.ru>
6709 L:      linux-media@vger.kernel.org
6710 W:      http://linuxtv.org/
6711 W:      http://netup.tv/
6712 T:      git git://linuxtv.org/media_tree.git
6713 S:      Supported
6714 F:      drivers/media/dvb-frontends/cxd2841er*
6715
6716 MEDIA DRIVERS FOR HORUS3A
6717 M:      Sergey Kozlov <serjk@netup.ru>
6718 L:      linux-media@vger.kernel.org
6719 W:      http://linuxtv.org/
6720 W:      http://netup.tv/
6721 T:      git git://linuxtv.org/media_tree.git
6722 S:      Supported
6723 F:      drivers/media/dvb-frontends/horus3a*
6724
6725 MEDIA DRIVERS FOR LNBH25
6726 M:      Sergey Kozlov <serjk@netup.ru>
6727 L:      linux-media@vger.kernel.org
6728 W:      http://linuxtv.org/
6729 W:      http://netup.tv/
6730 T:      git git://linuxtv.org/media_tree.git
6731 S:      Supported
6732 F:      drivers/media/dvb-frontends/lnbh25*
6733
6734 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
6735 M:      Sergey Kozlov <serjk@netup.ru>
6736 L:      linux-media@vger.kernel.org
6737 W:      http://linuxtv.org/
6738 W:      http://netup.tv/
6739 T:      git git://linuxtv.org/media_tree.git
6740 S:      Supported
6741 F:      drivers/media/pci/netup_unidvb/*
6742
6743 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
6744 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
6745 P:      LinuxTV.org Project
6746 L:      linux-media@vger.kernel.org
6747 W:      http://linuxtv.org
6748 Q:      http://patchwork.kernel.org/project/linux-media/list/
6749 T:      git git://linuxtv.org/media_tree.git
6750 S:      Maintained
6751 F:      Documentation/dvb/
6752 F:      Documentation/video4linux/
6753 F:      Documentation/DocBook/media/
6754 F:      drivers/media/
6755 F:      drivers/staging/media/
6756 F:      include/media/
6757 F:      include/uapi/linux/dvb/
6758 F:      include/uapi/linux/videodev2.h
6759 F:      include/uapi/linux/media.h
6760 F:      include/uapi/linux/v4l2-*
6761 F:      include/uapi/linux/meye.h
6762 F:      include/uapi/linux/ivtv*
6763 F:      include/uapi/linux/uvcvideo.h
6764
6765 MEDIATEK MT7601U WIRELESS LAN DRIVER
6766 M:      Jakub Kicinski <kubakici@wp.pl>
6767 L:      linux-wireless@vger.kernel.org
6768 S:      Maintained
6769 F:      drivers/net/wireless/mediatek/mt7601u/
6770
6771 MEGARAID SCSI/SAS DRIVERS
6772 M:      Kashyap Desai <kashyap.desai@avagotech.com>
6773 M:      Sumit Saxena <sumit.saxena@avagotech.com>
6774 M:      Uday Lingala <uday.lingala@avagotech.com>
6775 L:      megaraidlinux.pdl@avagotech.com
6776 L:      linux-scsi@vger.kernel.org
6777 W:      http://www.lsi.com
6778 S:      Maintained
6779 F:      Documentation/scsi/megaraid.txt
6780 F:      drivers/scsi/megaraid.*
6781 F:      drivers/scsi/megaraid/
6782
6783 MELLANOX ETHERNET DRIVER (mlx4_en)
6784 M:      Amir Vadai <amirv@mellanox.com>
6785 M:      Ido Shamay <idos@mellanox.com>
6786 L:      netdev@vger.kernel.org
6787 S:      Supported
6788 W:      http://www.mellanox.com
6789 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6790 F:      drivers/net/ethernet/mellanox/mlx4/en_*
6791
6792 MELLANOX ETHERNET SWITCH DRIVERS
6793 M:      Jiri Pirko <jiri@mellanox.com>
6794 M:      Ido Schimmel <idosch@mellanox.com>
6795 L:      netdev@vger.kernel.org
6796 S:      Supported
6797 W:      http://www.mellanox.com
6798 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6799 F:      drivers/net/ethernet/mellanox/mlxsw/
6800
6801 MEMBARRIER SUPPORT
6802 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
6803 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
6804 L:      linux-kernel@vger.kernel.org
6805 S:      Supported
6806 F:      kernel/membarrier.c
6807 F:      include/uapi/linux/membarrier.h
6808
6809 MEMORY MANAGEMENT
6810 L:      linux-mm@kvack.org
6811 W:      http://www.linux-mm.org
6812 S:      Maintained
6813 F:      include/linux/mm.h
6814 F:      include/linux/gfp.h
6815 F:      include/linux/mmzone.h
6816 F:      include/linux/memory_hotplug.h
6817 F:      include/linux/vmalloc.h
6818 F:      mm/
6819
6820 MEMORY TECHNOLOGY DEVICES (MTD)
6821 M:      David Woodhouse <dwmw2@infradead.org>
6822 M:      Brian Norris <computersforpeace@gmail.com>
6823 L:      linux-mtd@lists.infradead.org
6824 W:      http://www.linux-mtd.infradead.org/
6825 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
6826 T:      git git://git.infradead.org/linux-mtd.git
6827 T:      git git://git.infradead.org/l2-mtd.git
6828 S:      Maintained
6829 F:      drivers/mtd/
6830 F:      include/linux/mtd/
6831 F:      include/uapi/mtd/
6832
6833 MEN A21 WATCHDOG DRIVER
6834 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6835 L:      linux-watchdog@vger.kernel.org
6836 S:      Maintained
6837 F:      drivers/watchdog/mena21_wdt.c
6838
6839 MEN CHAMELEON BUS (mcb)
6840 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6841 S:      Maintained
6842 F:      drivers/mcb/
6843 F:      include/linux/mcb.h
6844 F:      Documentation/men-chameleon-bus.txt
6845
6846 MEN F21BMC (Board Management Controller)
6847 M:      Andreas Werner <andreas.werner@men.de>
6848 S:      Supported
6849 F:      drivers/mfd/menf21bmc.c
6850 F:      drivers/watchdog/menf21bmc_wdt.c
6851 F:      drivers/leds/leds-menf21bmc.c
6852 F:      drivers/hwmon/menf21bmc_hwmon.c
6853 F:      Documentation/hwmon/menf21bmc
6854
6855 METAG ARCHITECTURE
6856 M:      James Hogan <james.hogan@imgtec.com>
6857 L:      linux-metag@vger.kernel.org
6858 S:      Supported
6859 F:      arch/metag/
6860 F:      Documentation/metag/
6861 F:      Documentation/devicetree/bindings/metag/
6862 F:      drivers/clocksource/metag_generic.c
6863 F:      drivers/irqchip/irq-metag.c
6864 F:      drivers/irqchip/irq-metag-ext.c
6865 F:      drivers/tty/metag_da.c
6866
6867 MICROBLAZE ARCHITECTURE
6868 M:      Michal Simek <monstr@monstr.eu>
6869 W:      http://www.monstr.eu/fdt/
6870 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
6871 S:      Supported
6872 F:      arch/microblaze/
6873
6874 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
6875 M:      Chen Yu <yu.c.chen@intel.com>
6876 L:      platform-driver-x86@vger.kernel.org
6877 S:      Supported
6878 F:      drivers/platform/x86/surfacepro3_button.c
6879
6880 MICROTEK X6 SCANNER
6881 M:      Oliver Neukum <oliver@neukum.org>
6882 S:      Maintained
6883 F:      drivers/usb/image/microtek.*
6884
6885 MIPS
6886 M:      Ralf Baechle <ralf@linux-mips.org>
6887 L:      linux-mips@linux-mips.org
6888 W:      http://www.linux-mips.org/
6889 T:      git git://git.linux-mips.org/pub/scm/ralf/linux.git
6890 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
6891 S:      Supported
6892 F:      Documentation/mips/
6893 F:      arch/mips/
6894
6895 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
6896 M:      Hans Verkuil <hverkuil@xs4all.nl>
6897 L:      linux-media@vger.kernel.org
6898 T:      git git://linuxtv.org/media_tree.git
6899 W:      http://linuxtv.org
6900 S:      Odd Fixes
6901 F:      drivers/media/radio/radio-miropcm20*
6902
6903 Mellanox MLX5 core VPI driver
6904 M:      Eli Cohen <eli@mellanox.com>
6905 L:      netdev@vger.kernel.org
6906 L:      linux-rdma@vger.kernel.org
6907 W:      http://www.mellanox.com
6908 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6909 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
6910 T:      git git://openfabrics.org/~eli/connect-ib.git
6911 S:      Supported
6912 F:      drivers/net/ethernet/mellanox/mlx5/core/
6913 F:      include/linux/mlx5/
6914
6915 Mellanox MLX5 IB driver
6916 M:      Eli Cohen <eli@mellanox.com>
6917 L:      linux-rdma@vger.kernel.org
6918 W:      http://www.mellanox.com
6919 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
6920 T:      git git://openfabrics.org/~eli/connect-ib.git
6921 S:      Supported
6922 F:      include/linux/mlx5/
6923 F:      drivers/infiniband/hw/mlx5/
6924
6925 MN88472 MEDIA DRIVER
6926 M:      Antti Palosaari <crope@iki.fi>
6927 L:      linux-media@vger.kernel.org
6928 W:      http://linuxtv.org/
6929 W:      http://palosaari.fi/linux/
6930 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6931 T:      git git://linuxtv.org/anttip/media_tree.git
6932 S:      Maintained
6933 F:      drivers/staging/media/mn88472/
6934 F:      drivers/media/dvb-frontends/mn88472.h
6935
6936 MN88473 MEDIA DRIVER
6937 M:      Antti Palosaari <crope@iki.fi>
6938 L:      linux-media@vger.kernel.org
6939 W:      http://linuxtv.org/
6940 W:      http://palosaari.fi/linux/
6941 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6942 T:      git git://linuxtv.org/anttip/media_tree.git
6943 S:      Maintained
6944 F:      drivers/staging/media/mn88473/
6945 F:      drivers/media/dvb-frontends/mn88473.h
6946
6947 MODULE SUPPORT
6948 M:      Rusty Russell <rusty@rustcorp.com.au>
6949 S:      Maintained
6950 F:      include/linux/module.h
6951 F:      kernel/module.c
6952
6953 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
6954 W:      http://popies.net/meye/
6955 S:      Orphan
6956 F:      Documentation/video4linux/meye.txt
6957 F:      drivers/media/pci/meye/
6958 F:      include/uapi/linux/meye.h
6959
6960 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
6961 M:      Jiri Slaby <jirislaby@gmail.com>
6962 S:      Maintained
6963 F:      Documentation/serial/moxa-smartio
6964 F:      drivers/tty/mxser.*
6965
6966 MR800 AVERMEDIA USB FM RADIO DRIVER
6967 M:      Alexey Klimov <klimov.linux@gmail.com>
6968 L:      linux-media@vger.kernel.org
6969 T:      git git://linuxtv.org/media_tree.git
6970 S:      Maintained
6971 F:      drivers/media/radio/radio-mr800.c
6972
6973 MRF24J40 IEEE 802.15.4 RADIO DRIVER
6974 M:      Alan Ott <alan@signal11.us>
6975 L:      linux-wpan@vger.kernel.org
6976 S:      Maintained
6977 F:      drivers/net/ieee802154/mrf24j40.c
6978
6979 MSI LAPTOP SUPPORT
6980 M:      "Lee, Chun-Yi" <jlee@suse.com>
6981 L:      platform-driver-x86@vger.kernel.org
6982 S:      Maintained
6983 F:      drivers/platform/x86/msi-laptop.c
6984
6985 MSI WMI SUPPORT
6986 L:      platform-driver-x86@vger.kernel.org
6987 S:      Orphan
6988 F:      drivers/platform/x86/msi-wmi.c
6989
6990 MSI001 MEDIA DRIVER
6991 M:      Antti Palosaari <crope@iki.fi>
6992 L:      linux-media@vger.kernel.org
6993 W:      http://linuxtv.org/
6994 W:      http://palosaari.fi/linux/
6995 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6996 T:      git git://linuxtv.org/anttip/media_tree.git
6997 S:      Maintained
6998 F:      drivers/media/tuners/msi001*
6999
7000 MSI2500 MEDIA DRIVER
7001 M:      Antti Palosaari <crope@iki.fi>
7002 L:      linux-media@vger.kernel.org
7003 W:      http://linuxtv.org/
7004 W:      http://palosaari.fi/linux/
7005 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7006 T:      git git://linuxtv.org/anttip/media_tree.git
7007 S:      Maintained
7008 F:      drivers/media/usb/msi2500/
7009
7010 MSYSTEMS DISKONCHIP G3 MTD DRIVER
7011 M:      Robert Jarzmik <robert.jarzmik@free.fr>
7012 L:      linux-mtd@lists.infradead.org
7013 S:      Maintained
7014 F:      drivers/mtd/devices/docg3*
7015
7016 MT9M032 APTINA SENSOR DRIVER
7017 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7018 L:      linux-media@vger.kernel.org
7019 T:      git git://linuxtv.org/media_tree.git
7020 S:      Maintained
7021 F:      drivers/media/i2c/mt9m032.c
7022 F:      include/media/mt9m032.h
7023
7024 MT9P031 APTINA CAMERA SENSOR
7025 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7026 L:      linux-media@vger.kernel.org
7027 T:      git git://linuxtv.org/media_tree.git
7028 S:      Maintained
7029 F:      drivers/media/i2c/mt9p031.c
7030 F:      include/media/mt9p031.h
7031
7032 MT9T001 APTINA CAMERA SENSOR
7033 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7034 L:      linux-media@vger.kernel.org
7035 T:      git git://linuxtv.org/media_tree.git
7036 S:      Maintained
7037 F:      drivers/media/i2c/mt9t001.c
7038 F:      include/media/mt9t001.h
7039
7040 MT9V032 APTINA CAMERA SENSOR
7041 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7042 L:      linux-media@vger.kernel.org
7043 T:      git git://linuxtv.org/media_tree.git
7044 S:      Maintained
7045 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
7046 F:      drivers/media/i2c/mt9v032.c
7047 F:      include/media/mt9v032.h
7048
7049 MULTIFUNCTION DEVICES (MFD)
7050 M:      Samuel Ortiz <sameo@linux.intel.com>
7051 M:      Lee Jones <lee.jones@linaro.org>
7052 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
7053 S:      Supported
7054 F:      drivers/mfd/
7055 F:      include/linux/mfd/
7056
7057 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
7058 M:      Ulf Hansson <ulf.hansson@linaro.org>
7059 L:      linux-mmc@vger.kernel.org
7060 T:      git git://git.linaro.org/people/ulf.hansson/mmc.git
7061 S:      Maintained
7062 F:      drivers/mmc/
7063 F:      include/linux/mmc/
7064 F:      include/uapi/linux/mmc/
7065
7066 MULTIMEDIA CARD (MMC) ETC. OVER SPI
7067 S:      Orphan
7068 F:      drivers/mmc/host/mmc_spi.c
7069 F:      include/linux/spi/mmc_spi.h
7070
7071 MULTISOUND SOUND DRIVER
7072 M:      Andrew Veliath <andrewtv@usa.net>
7073 S:      Maintained
7074 F:      Documentation/sound/oss/MultiSound
7075 F:      sound/oss/msnd*
7076
7077 MULTITECH MULTIPORT CARD (ISICOM)
7078 S:      Orphan
7079 F:      drivers/tty/isicom.c
7080 F:      include/linux/isicom.h
7081
7082 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
7083 M:      Felipe Balbi <balbi@ti.com>
7084 L:      linux-usb@vger.kernel.org
7085 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7086 S:      Maintained
7087 F:      drivers/usb/musb/
7088
7089 MXL5007T MEDIA DRIVER
7090 M:      Michael Krufky <mkrufky@linuxtv.org>
7091 L:      linux-media@vger.kernel.org
7092 W:      http://linuxtv.org/
7093 W:      http://github.com/mkrufky
7094 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7095 T:      git git://linuxtv.org/mkrufky/tuners.git
7096 S:      Maintained
7097 F:      drivers/media/tuners/mxl5007t.*
7098
7099 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
7100 M:      Hyong-Youb Kim <hykim@myri.com>
7101 L:      netdev@vger.kernel.org
7102 W:      https://www.myricom.com/support/downloads/myri10ge.html
7103 S:      Supported
7104 F:      drivers/net/ethernet/myricom/myri10ge/
7105
7106 NATSEMI ETHERNET DRIVER (DP8381x)
7107 S:      Orphan
7108 F:      drivers/net/ethernet/natsemi/natsemi.c
7109
7110 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
7111 M:      Daniel Mack <zonque@gmail.com>
7112 S:      Maintained
7113 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7114 W:      http://www.native-instruments.com
7115 F:      sound/usb/caiaq/
7116
7117 NCP FILESYSTEM
7118 M:      Petr Vandrovec <petr@vandrovec.name>
7119 S:      Odd Fixes
7120 F:      fs/ncpfs/
7121
7122 NCR 5380 SCSI DRIVERS
7123 M:      Finn Thain <fthain@telegraphics.com.au>
7124 M:      Michael Schmitz <schmitzmic@gmail.com>
7125 L:      linux-scsi@vger.kernel.org
7126 S:      Maintained
7127 F:      Documentation/scsi/g_NCR5380.txt
7128 F:      drivers/scsi/NCR5380.*
7129 F:      drivers/scsi/arm/cumana_1.c
7130 F:      drivers/scsi/arm/oak.c
7131 F:      drivers/scsi/atari_NCR5380.c
7132 F:      drivers/scsi/atari_scsi.*
7133 F:      drivers/scsi/dmx3191d.c
7134 F:      drivers/scsi/dtc.*
7135 F:      drivers/scsi/g_NCR5380.*
7136 F:      drivers/scsi/g_NCR5380_mmio.c
7137 F:      drivers/scsi/mac_scsi.*
7138 F:      drivers/scsi/pas16.*
7139 F:      drivers/scsi/sun3_scsi.*
7140 F:      drivers/scsi/sun3_scsi_vme.c
7141 F:      drivers/scsi/t128.*
7142
7143 NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
7144 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
7145 L:      linux-scsi@vger.kernel.org
7146 S:      Maintained
7147 F:      drivers/scsi/NCR_D700.*
7148
7149 NCT6775 HARDWARE MONITOR DRIVER
7150 M:      Guenter Roeck <linux@roeck-us.net>
7151 L:      lm-sensors@lm-sensors.org
7152 S:      Maintained
7153 F:      Documentation/hwmon/nct6775
7154 F:      drivers/hwmon/nct6775.c
7155
7156 NETEFFECT IWARP RNIC DRIVER (IW_NES)
7157 M:      Faisal Latif <faisal.latif@intel.com>
7158 L:      linux-rdma@vger.kernel.org
7159 W:      http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
7160 S:      Supported
7161 F:      drivers/infiniband/hw/nes/
7162
7163 NETEM NETWORK EMULATOR
7164 M:      Stephen Hemminger <stephen@networkplumber.org>
7165 L:      netem@lists.linux-foundation.org
7166 S:      Maintained
7167 F:      net/sched/sch_netem.c
7168
7169 NETERION 10GbE DRIVERS (s2io/vxge)
7170 M:      Jon Mason <jdmason@kudzu.us>
7171 L:      netdev@vger.kernel.org
7172 S:      Supported
7173 F:      Documentation/networking/s2io.txt
7174 F:      Documentation/networking/vxge.txt
7175 F:      drivers/net/ethernet/neterion/
7176
7177 NETFILTER ({IP,IP6,ARP,EB,NF}TABLES)
7178 M:      Pablo Neira Ayuso <pablo@netfilter.org>
7179 M:      Patrick McHardy <kaber@trash.net>
7180 M:      Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
7181 L:      netfilter-devel@vger.kernel.org
7182 L:      coreteam@netfilter.org
7183 W:      http://www.netfilter.org/
7184 W:      http://www.iptables.org/
7185 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
7186 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
7187 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
7188 S:      Supported
7189 F:      include/linux/netfilter*
7190 F:      include/linux/netfilter/
7191 F:      include/net/netfilter/
7192 F:      include/uapi/linux/netfilter*
7193 F:      include/uapi/linux/netfilter/
7194 F:      net/*/netfilter.c
7195 F:      net/*/netfilter/
7196 F:      net/netfilter/
7197 F:      net/bridge/br_netfilter*.c
7198
7199 NETLABEL
7200 M:      Paul Moore <paul@paul-moore.com>
7201 W:      http://netlabel.sf.net
7202 L:      netdev@vger.kernel.org
7203 S:      Maintained
7204 F:      Documentation/netlabel/
7205 F:      include/net/netlabel.h
7206 F:      net/netlabel/
7207
7208 NETROM NETWORK LAYER
7209 M:      Ralf Baechle <ralf@linux-mips.org>
7210 L:      linux-hams@vger.kernel.org
7211 W:      http://www.linux-ax25.org/
7212 S:      Maintained
7213 F:      include/net/netrom.h
7214 F:      include/uapi/linux/netrom.h
7215 F:      net/netrom/
7216
7217 NETWORK BLOCK DEVICE (NBD)
7218 M:      Markus Pargmann <mpa@pengutronix.de>
7219 S:      Maintained
7220 L:      nbd-general@lists.sourceforge.net
7221 T:      git git://git.pengutronix.de/git/mpa/linux-nbd.git
7222 F:      Documentation/blockdev/nbd.txt
7223 F:      drivers/block/nbd.c
7224 F:      include/uapi/linux/nbd.h
7225
7226 NETWORK DROP MONITOR
7227 M:      Neil Horman <nhorman@tuxdriver.com>
7228 L:      netdev@vger.kernel.org
7229 S:      Maintained
7230 W:      https://fedorahosted.org/dropwatch/
7231 F:      net/core/drop_monitor.c
7232
7233 NETWORKING [GENERAL]
7234 M:      "David S. Miller" <davem@davemloft.net>
7235 L:      netdev@vger.kernel.org
7236 W:      http://www.linuxfoundation.org/en/Net
7237 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7238 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7239 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7240 S:      Maintained
7241 F:      net/
7242 F:      include/net/
7243 F:      include/linux/in.h
7244 F:      include/linux/net.h
7245 F:      include/linux/netdevice.h
7246 F:      include/uapi/linux/in.h
7247 F:      include/uapi/linux/net.h
7248 F:      include/uapi/linux/netdevice.h
7249 F:      include/uapi/linux/net_namespace.h
7250 F:      tools/net/
7251 F:      tools/testing/selftests/net/
7252 F:      lib/random32.c
7253 F:      lib/test_bpf.c
7254
7255 NETWORKING [IPv4/IPv6]
7256 M:      "David S. Miller" <davem@davemloft.net>
7257 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
7258 M:      James Morris <jmorris@namei.org>
7259 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
7260 M:      Patrick McHardy <kaber@trash.net>
7261 L:      netdev@vger.kernel.org
7262 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7263 S:      Maintained
7264 F:      net/ipv4/
7265 F:      net/ipv6/
7266 F:      include/net/ip*
7267 F:      arch/x86/net/*
7268
7269 NETWORKING [IPSEC]
7270 M:      Steffen Klassert <steffen.klassert@secunet.com>
7271 M:      Herbert Xu <herbert@gondor.apana.org.au>
7272 M:      "David S. Miller" <davem@davemloft.net>
7273 L:      netdev@vger.kernel.org
7274 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
7275 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
7276 S:      Maintained
7277 F:      net/core/flow.c
7278 F:      net/xfrm/
7279 F:      net/key/
7280 F:      net/ipv4/xfrm*
7281 F:      net/ipv4/esp4.c
7282 F:      net/ipv4/ah4.c
7283 F:      net/ipv4/ipcomp.c
7284 F:      net/ipv4/ip_vti.c
7285 F:      net/ipv6/xfrm*
7286 F:      net/ipv6/esp6.c
7287 F:      net/ipv6/ah6.c
7288 F:      net/ipv6/ipcomp6.c
7289 F:      net/ipv6/ip6_vti.c
7290 F:      include/uapi/linux/xfrm.h
7291 F:      include/net/xfrm.h
7292
7293 NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
7294 M:      Paul Moore <paul@paul-moore.com>
7295 L:      netdev@vger.kernel.org
7296 S:      Maintained
7297
7298 NETWORKING [WIRELESS]
7299 L:      linux-wireless@vger.kernel.org
7300 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7301
7302 NETWORKING DRIVERS
7303 L:      netdev@vger.kernel.org
7304 W:      http://www.linuxfoundation.org/en/Net
7305 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7306 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7307 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7308 S:      Odd Fixes
7309 F:      drivers/net/
7310 F:      include/linux/if_*
7311 F:      include/linux/netdevice.h
7312 F:      include/linux/arcdevice.h
7313 F:      include/linux/etherdevice.h
7314 F:      include/linux/fcdevice.h
7315 F:      include/linux/fddidevice.h
7316 F:      include/linux/hippidevice.h
7317 F:      include/linux/inetdevice.h
7318 F:      include/uapi/linux/if_*
7319 F:      include/uapi/linux/netdevice.h
7320
7321 NETWORKING DRIVERS (WIRELESS)
7322 M:      Kalle Valo <kvalo@codeaurora.org>
7323 L:      linux-wireless@vger.kernel.org
7324 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7325 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git/
7326 S:      Maintained
7327 F:      drivers/net/wireless/
7328
7329 NETXEN (1/10) GbE SUPPORT
7330 M:      Manish Chopra <manish.chopra@qlogic.com>
7331 M:      Sony Chacko <sony.chacko@qlogic.com>
7332 M:      Rajesh Borundia <rajesh.borundia@qlogic.com>
7333 L:      netdev@vger.kernel.org
7334 W:      http://www.qlogic.com
7335 S:      Supported
7336 F:      drivers/net/ethernet/qlogic/netxen/
7337
7338 NFC SUBSYSTEM
7339 M:      Lauro Ramos Venancio <lauro.venancio@openbossa.org>
7340 M:      Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
7341 M:      Samuel Ortiz <sameo@linux.intel.com>
7342 L:      linux-wireless@vger.kernel.org
7343 L:      linux-nfc@lists.01.org (subscribers-only)
7344 S:      Supported
7345 F:      net/nfc/
7346 F:      include/net/nfc/
7347 F:      include/uapi/linux/nfc.h
7348 F:      drivers/nfc/
7349 F:      include/linux/platform_data/pn544.h
7350 F:      Documentation/devicetree/bindings/net/nfc/
7351
7352 NFS, SUNRPC, AND LOCKD CLIENTS
7353 M:      Trond Myklebust <trond.myklebust@primarydata.com>
7354 M:      Anna Schumaker <anna.schumaker@netapp.com>
7355 L:      linux-nfs@vger.kernel.org
7356 W:      http://client.linux-nfs.org
7357 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
7358 S:      Maintained
7359 F:      fs/lockd/
7360 F:      fs/nfs/
7361 F:      fs/nfs_common/
7362 F:      net/sunrpc/
7363 F:      include/linux/lockd/
7364 F:      include/linux/nfs*
7365 F:      include/linux/sunrpc/
7366 F:      include/uapi/linux/nfs*
7367 F:      include/uapi/linux/sunrpc/
7368
7369 NILFS2 FILESYSTEM
7370 M:      Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
7371 L:      linux-nilfs@vger.kernel.org
7372 W:      http://nilfs.sourceforge.net/
7373 T:      git git://github.com/konis/nilfs2.git
7374 S:      Supported
7375 F:      Documentation/filesystems/nilfs2.txt
7376 F:      fs/nilfs2/
7377 F:      include/linux/nilfs2_fs.h
7378
7379 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
7380 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7381 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7382 S:      Maintained
7383 F:      Documentation/scsi/NinjaSCSI.txt
7384 F:      drivers/scsi/pcmcia/nsp_*
7385
7386 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
7387 M:      GOTO Masanori <gotom@debian.or.jp>
7388 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7389 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7390 S:      Maintained
7391 F:      Documentation/scsi/NinjaSCSI.txt
7392 F:      drivers/scsi/nsp32*
7393
7394 NIOS2 ARCHITECTURE
7395 M:      Ley Foon Tan <lftan@altera.com>
7396 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
7397 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
7398 S:      Maintained
7399 F:      arch/nios2/
7400
7401 NOKIA N900 POWER SUPPLY DRIVERS
7402 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
7403 S:      Maintained
7404 F:      include/linux/power/bq2415x_charger.h
7405 F:      include/linux/power/bq27x00_battery.h
7406 F:      include/linux/power/isp1704_charger.h
7407 F:      drivers/power/bq2415x_charger.c
7408 F:      drivers/power/bq27x00_battery.c
7409 F:      drivers/power/isp1704_charger.c
7410 F:      drivers/power/rx51_battery.c
7411
7412 NTB DRIVER CORE
7413 M:      Jon Mason <jdmason@kudzu.us>
7414 M:      Dave Jiang <dave.jiang@intel.com>
7415 M:      Allen Hubbe <Allen.Hubbe@emc.com>
7416 L:      linux-ntb@googlegroups.com
7417 S:      Supported
7418 W:      https://github.com/jonmason/ntb/wiki
7419 T:      git git://github.com/jonmason/ntb.git
7420 F:      drivers/ntb/
7421 F:      drivers/net/ntb_netdev.c
7422 F:      include/linux/ntb.h
7423 F:      include/linux/ntb_transport.h
7424
7425 NTB INTEL DRIVER
7426 M:      Jon Mason <jdmason@kudzu.us>
7427 M:      Dave Jiang <dave.jiang@intel.com>
7428 L:      linux-ntb@googlegroups.com
7429 S:      Supported
7430 W:      https://github.com/jonmason/ntb/wiki
7431 T:      git git://github.com/jonmason/ntb.git
7432 F:      drivers/ntb/hw/intel/
7433
7434 NTFS FILESYSTEM
7435 M:      Anton Altaparmakov <anton@tuxera.com>
7436 L:      linux-ntfs-dev@lists.sourceforge.net
7437 W:      http://www.tuxera.com/
7438 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
7439 S:      Supported
7440 F:      Documentation/filesystems/ntfs.txt
7441 F:      fs/ntfs/
7442
7443 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
7444 M:      Antonino Daplas <adaplas@gmail.com>
7445 L:      linux-fbdev@vger.kernel.org
7446 S:      Maintained
7447 F:      drivers/video/fbdev/riva/
7448 F:      drivers/video/fbdev/nvidia/
7449
7450 NVM EXPRESS DRIVER
7451 M:      Matthew Wilcox <willy@linux.intel.com>
7452 L:      linux-nvme@lists.infradead.org
7453 T:      git git://git.infradead.org/users/willy/linux-nvme.git
7454 S:      Supported
7455 F:      drivers/block/nvme*
7456 F:      include/linux/nvme.h
7457
7458 NVMEM FRAMEWORK
7459 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
7460 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
7461 S:      Maintained
7462 F:      drivers/nvmem/
7463 F:      Documentation/devicetree/bindings/nvmem/
7464 F:      include/linux/nvmem-consumer.h
7465 F:      include/linux/nvmem-provider.h
7466
7467 NXP-NCI NFC DRIVER
7468 M:      ClĂ©ment Perrochaud <clement.perrochaud@effinnov.com>
7469 R:      Charles Gorand <charles.gorand@effinnov.com>
7470 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
7471 S:      Supported
7472 F:      drivers/nfc/nxp-nci
7473
7474 NXP TDA998X DRM DRIVER
7475 M:      Russell King <rmk+kernel@arm.linux.org.uk>
7476 S:      Supported
7477 F:      drivers/gpu/drm/i2c/tda998x_drv.c
7478 F:      include/drm/i2c/tda998x.h
7479
7480 NXP TFA9879 DRIVER
7481 M:      Peter Rosin <peda@axentia.se>
7482 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7483 S:      Maintained
7484 F:      sound/soc/codecs/tfa9879*
7485
7486 OMAP SUPPORT
7487 M:      Tony Lindgren <tony@atomide.com>
7488 L:      linux-omap@vger.kernel.org
7489 W:      http://www.muru.com/linux/omap/
7490 W:      http://linux.omap.com/
7491 Q:      http://patchwork.kernel.org/project/linux-omap/list/
7492 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
7493 S:      Maintained
7494 F:      arch/arm/*omap*/
7495 F:      arch/arm/configs/omap1_defconfig
7496 F:      arch/arm/configs/omap2plus_defconfig
7497 F:      drivers/i2c/busses/i2c-omap.c
7498 F:      drivers/irqchip/irq-omap-intc.c
7499 F:      drivers/mfd/*omap*.c
7500 F:      drivers/mfd/menelaus.c
7501 F:      drivers/mfd/palmas.c
7502 F:      drivers/mfd/tps65217.c
7503 F:      drivers/mfd/tps65218.c
7504 F:      drivers/mfd/tps65910.c
7505 F:      drivers/mfd/twl-core.[ch]
7506 F:      drivers/mfd/twl4030*.c
7507 F:      drivers/mfd/twl6030*.c
7508 F:      drivers/mfd/twl6040*.c
7509 F:      drivers/regulator/palmas-regulator*.c
7510 F:      drivers/regulator/pbias-regulator.c
7511 F:      drivers/regulator/tps65217-regulator.c
7512 F:      drivers/regulator/tps65218-regulator.c
7513 F:      drivers/regulator/tps65910-regulator.c
7514 F:      drivers/regulator/twl-regulator.c
7515 F:      include/linux/i2c-omap.h
7516
7517 OMAP DEVICE TREE SUPPORT
7518 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7519 M:      Tony Lindgren <tony@atomide.com>
7520 L:      linux-omap@vger.kernel.org
7521 L:      devicetree@vger.kernel.org
7522 S:      Maintained
7523 F:      arch/arm/boot/dts/*omap*
7524 F:      arch/arm/boot/dts/*am3*
7525 F:      arch/arm/boot/dts/*am4*
7526 F:      arch/arm/boot/dts/*am5*
7527 F:      arch/arm/boot/dts/*dra7*
7528
7529 OMAP CLOCK FRAMEWORK SUPPORT
7530 M:      Paul Walmsley <paul@pwsan.com>
7531 L:      linux-omap@vger.kernel.org
7532 S:      Maintained
7533 F:      arch/arm/*omap*/*clock*
7534
7535 OMAP POWER MANAGEMENT SUPPORT
7536 M:      Kevin Hilman <khilman@deeprootsystems.com>
7537 L:      linux-omap@vger.kernel.org
7538 S:      Maintained
7539 F:      arch/arm/*omap*/*pm*
7540 F:      drivers/cpufreq/omap-cpufreq.c
7541
7542 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
7543 M:      Rajendra Nayak <rnayak@ti.com>
7544 M:      Paul Walmsley <paul@pwsan.com>
7545 L:      linux-omap@vger.kernel.org
7546 S:      Maintained
7547 F:      arch/arm/mach-omap2/prm*
7548
7549 OMAP AUDIO SUPPORT
7550 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
7551 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
7552 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7553 L:      linux-omap@vger.kernel.org
7554 S:      Maintained
7555 F:      sound/soc/omap/
7556
7557 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
7558 M:      Roger Quadros <rogerq@ti.com>
7559 M:      Tony Lindgren <tony@atomide.com>
7560 L:      linux-omap@vger.kernel.org
7561 S:      Maintained
7562 F:      drivers/memory/omap-gpmc.c
7563 F:      arch/arm/mach-omap2/*gpmc*
7564
7565 OMAP FRAMEBUFFER SUPPORT
7566 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
7567 L:      linux-fbdev@vger.kernel.org
7568 L:      linux-omap@vger.kernel.org
7569 S:      Maintained
7570 F:      drivers/video/fbdev/omap/
7571
7572 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
7573 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
7574 L:      linux-omap@vger.kernel.org
7575 L:      linux-fbdev@vger.kernel.org
7576 S:      Maintained
7577 F:      drivers/video/fbdev/omap2/
7578 F:      Documentation/arm/OMAP/DSS
7579
7580 OMAP HARDWARE SPINLOCK SUPPORT
7581 M:      Ohad Ben-Cohen <ohad@wizery.com>
7582 L:      linux-omap@vger.kernel.org
7583 S:      Maintained
7584 F:      drivers/hwspinlock/omap_hwspinlock.c
7585
7586 OMAP MMC SUPPORT
7587 M:      Jarkko Lavinen <jarkko.lavinen@nokia.com>
7588 L:      linux-omap@vger.kernel.org
7589 S:      Maintained
7590 F:      drivers/mmc/host/omap.c
7591
7592 OMAP HS MMC SUPPORT
7593 L:      linux-mmc@vger.kernel.org
7594 L:      linux-omap@vger.kernel.org
7595 S:      Orphan
7596 F:      drivers/mmc/host/omap_hsmmc.c
7597
7598 OMAP RANDOM NUMBER GENERATOR SUPPORT
7599 M:      Deepak Saxena <dsaxena@plexity.net>
7600 S:      Maintained
7601 F:      drivers/char/hw_random/omap-rng.c
7602
7603 OMAP HWMOD SUPPORT
7604 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7605 M:      Paul Walmsley <paul@pwsan.com>
7606 L:      linux-omap@vger.kernel.org
7607 S:      Maintained
7608 F:      arch/arm/mach-omap2/omap_hwmod.*
7609
7610 OMAP HWMOD DATA
7611 M:      Paul Walmsley <paul@pwsan.com>
7612 L:      linux-omap@vger.kernel.org
7613 S:      Maintained
7614 F:      arch/arm/mach-omap2/omap_hwmod*data*
7615
7616 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
7617 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7618 L:      linux-omap@vger.kernel.org
7619 S:      Maintained
7620 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
7621
7622 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
7623 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7624 L:      linux-media@vger.kernel.org
7625 S:      Maintained
7626 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
7627 F:      drivers/media/platform/omap3isp/
7628 F:      drivers/staging/media/omap4iss/
7629
7630 OMAP USB SUPPORT
7631 M:      Felipe Balbi <balbi@ti.com>
7632 L:      linux-usb@vger.kernel.org
7633 L:      linux-omap@vger.kernel.org
7634 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7635 S:      Maintained
7636 F:      drivers/usb/*/*omap*
7637 F:      arch/arm/*omap*/usb*
7638
7639 OMAP GPIO DRIVER
7640 M:      Javier Martinez Canillas <javier@dowhile0.org>
7641 M:      Santosh Shilimkar <ssantosh@kernel.org>
7642 M:      Kevin Hilman <khilman@deeprootsystems.com>
7643 L:      linux-omap@vger.kernel.org
7644 S:      Maintained
7645 F:      drivers/gpio/gpio-omap.c
7646
7647 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
7648 M:      Mark Jackson <mpfj@newflow.co.uk>
7649 L:      linux-omap@vger.kernel.org
7650 S:      Maintained
7651 F:      arch/arm/boot/dts/am335x-nano.dts
7652
7653 OMFS FILESYSTEM
7654 M:      Bob Copeland <me@bobcopeland.com>
7655 L:      linux-karma-devel@lists.sourceforge.net
7656 S:      Maintained
7657 F:      Documentation/filesystems/omfs.txt
7658 F:      fs/omfs/
7659
7660 OMNIKEY CARDMAN 4000 DRIVER
7661 M:      Harald Welte <laforge@gnumonks.org>
7662 S:      Maintained
7663 F:      drivers/char/pcmcia/cm4000_cs.c
7664 F:      include/linux/cm4000_cs.h
7665 F:      include/uapi/linux/cm4000_cs.h
7666
7667 OMNIKEY CARDMAN 4040 DRIVER
7668 M:      Harald Welte <laforge@gnumonks.org>
7669 S:      Maintained
7670 F:      drivers/char/pcmcia/cm4040_cs.*
7671
7672 OMNIVISION OV7670 SENSOR DRIVER
7673 M:      Jonathan Corbet <corbet@lwn.net>
7674 L:      linux-media@vger.kernel.org
7675 T:      git git://linuxtv.org/media_tree.git
7676 S:      Maintained
7677 F:      drivers/media/i2c/ov7670.c
7678
7679 ONENAND FLASH DRIVER
7680 M:      Kyungmin Park <kyungmin.park@samsung.com>
7681 L:      linux-mtd@lists.infradead.org
7682 S:      Maintained
7683 F:      drivers/mtd/onenand/
7684 F:      include/linux/mtd/onenand*.h
7685
7686 ONSTREAM SCSI TAPE DRIVER
7687 M:      Willem Riede <osst@riede.org>
7688 L:      osst-users@lists.sourceforge.net
7689 L:      linux-scsi@vger.kernel.org
7690 S:      Maintained
7691 F:      Documentation/scsi/osst.txt
7692 F:      drivers/scsi/osst.*
7693 F:      drivers/scsi/osst_*.h
7694 F:      drivers/scsi/st.h
7695
7696 OPENCORES I2C BUS DRIVER
7697 M:      Peter Korsgaard <jacmet@sunsite.dk>
7698 L:      linux-i2c@vger.kernel.org
7699 S:      Maintained
7700 F:      Documentation/i2c/busses/i2c-ocores
7701 F:      drivers/i2c/busses/i2c-ocores.c
7702
7703 OPEN FIRMWARE AND FLATTENED DEVICE TREE
7704 M:      Rob Herring <robh+dt@kernel.org>
7705 M:      Frank Rowand <frowand.list@gmail.com>
7706 M:      Grant Likely <grant.likely@linaro.org>
7707 L:      devicetree@vger.kernel.org
7708 W:      http://www.devicetree.org/
7709 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/glikely/linux.git
7710 S:      Maintained
7711 F:      drivers/of/
7712 F:      include/linux/of*.h
7713 F:      scripts/dtc/
7714
7715 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
7716 M:      Rob Herring <robh+dt@kernel.org>
7717 M:      Pawel Moll <pawel.moll@arm.com>
7718 M:      Mark Rutland <mark.rutland@arm.com>
7719 M:      Ian Campbell <ijc+devicetree@hellion.org.uk>
7720 M:      Kumar Gala <galak@codeaurora.org>
7721 L:      devicetree@vger.kernel.org
7722 S:      Maintained
7723 F:      Documentation/devicetree/
7724 F:      arch/*/boot/dts/
7725 F:      include/dt-bindings/
7726
7727 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
7728 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
7729 L:      devicetree@vger.kernel.org
7730 S:      Maintained
7731 F:      Documentation/devicetree/dynamic-resolution-notes.txt
7732 F:      Documentation/devicetree/overlay-notes.txt
7733 F:      drivers/of/overlay.c
7734 F:      drivers/of/resolver.c
7735
7736 OPENRISC ARCHITECTURE
7737 M:      Jonas Bonn <jonas@southpole.se>
7738 W:      http://openrisc.net
7739 L:      linux@lists.openrisc.net (moderated for non-subscribers)
7740 S:      Maintained
7741 T:      git git://openrisc.net/~jonas/linux
7742 F:      arch/openrisc/
7743
7744 OPENVSWITCH
7745 M:      Pravin Shelar <pshelar@nicira.com>
7746 L:      netdev@vger.kernel.org
7747 L:      dev@openvswitch.org
7748 W:      http://openvswitch.org
7749 S:      Maintained
7750 F:      net/openvswitch/
7751 F:      include/uapi/linux/openvswitch.h
7752
7753 OPL4 DRIVER
7754 M:      Clemens Ladisch <clemens@ladisch.de>
7755 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7756 T:      git git://git.alsa-project.org/alsa-kernel.git
7757 S:      Maintained
7758 F:      sound/drivers/opl4/
7759
7760 OPROFILE
7761 M:      Robert Richter <rric@kernel.org>
7762 L:      oprofile-list@lists.sf.net
7763 S:      Maintained
7764 F:      arch/*/include/asm/oprofile*.h
7765 F:      arch/*/oprofile/
7766 F:      drivers/oprofile/
7767 F:      include/linux/oprofile.h
7768
7769 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
7770 M:      Mark Fasheh <mfasheh@suse.com>
7771 M:      Joel Becker <jlbec@evilplan.org>
7772 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
7773 W:      http://ocfs2.wiki.kernel.org
7774 S:      Supported
7775 F:      Documentation/filesystems/ocfs2.txt
7776 F:      Documentation/filesystems/dlmfs.txt
7777 F:      fs/ocfs2/
7778
7779 ORINOCO DRIVER
7780 L:      linux-wireless@vger.kernel.org
7781 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
7782 W:      http://www.nongnu.org/orinoco/
7783 S:      Orphan
7784 F:      drivers/net/wireless/orinoco/
7785
7786 OSD LIBRARY and FILESYSTEM
7787 M:      Boaz Harrosh <ooo@electrozaur.com>
7788 M:      Benny Halevy <bhalevy@primarydata.com>
7789 L:      osd-dev@open-osd.org
7790 W:      http://open-osd.org
7791 T:      git git://git.open-osd.org/open-osd.git
7792 S:      Maintained
7793 F:      drivers/scsi/osd/
7794 F:      include/scsi/osd_*
7795 F:      fs/exofs/
7796
7797 OVERLAY FILESYSTEM
7798 M:      Miklos Szeredi <miklos@szeredi.hu>
7799 L:      linux-unionfs@vger.kernel.org
7800 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
7801 S:      Supported
7802 F:      fs/overlayfs/
7803 F:      Documentation/filesystems/overlayfs.txt
7804
7805 P54 WIRELESS DRIVER
7806 M:      Christian Lamparter <chunkeey@googlemail.com>
7807 L:      linux-wireless@vger.kernel.org
7808 W:      http://wireless.kernel.org/en/users/Drivers/p54
7809 S:      Maintained
7810 F:      drivers/net/wireless/p54/
7811
7812 PA SEMI ETHERNET DRIVER
7813 M:      Olof Johansson <olof@lixom.net>
7814 L:      netdev@vger.kernel.org
7815 S:      Maintained
7816 F:      drivers/net/ethernet/pasemi/*
7817
7818 PA SEMI SMBUS DRIVER
7819 M:      Olof Johansson <olof@lixom.net>
7820 L:      linux-i2c@vger.kernel.org
7821 S:      Maintained
7822 F:      drivers/i2c/busses/i2c-pasemi.c
7823
7824 PADATA PARALLEL EXECUTION MECHANISM
7825 M:      Steffen Klassert <steffen.klassert@secunet.com>
7826 L:      linux-crypto@vger.kernel.org
7827 S:      Maintained
7828 F:      kernel/padata.c
7829 F:      include/linux/padata.h
7830 F:      Documentation/padata.txt
7831
7832 PANASONIC LAPTOP ACPI EXTRAS DRIVER
7833 M:      Harald Welte <laforge@gnumonks.org>
7834 L:      platform-driver-x86@vger.kernel.org
7835 S:      Maintained
7836 F:      drivers/platform/x86/panasonic-laptop.c
7837
7838 PANASONIC MN10300/AM33/AM34 PORT
7839 M:      David Howells <dhowells@redhat.com>
7840 M:      Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
7841 L:      linux-am33-list@redhat.com (moderated for non-subscribers)
7842 W:      ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
7843 S:      Maintained
7844 F:      Documentation/mn10300/
7845 F:      arch/mn10300/
7846
7847 PARALLEL PORT SUBSYSTEM
7848 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
7849 M:      Sudip Mukherjee <sudip@vectorindia.org>
7850 L:      linux-parport@lists.infradead.org (subscribers-only)
7851 S:      Maintained
7852 F:      drivers/parport/
7853 F:      include/linux/parport*.h
7854 F:      drivers/char/ppdev.c
7855 F:      include/uapi/linux/ppdev.h
7856 F:      Documentation/parport*.txt
7857
7858 PARAVIRT_OPS INTERFACE
7859 M:      Jeremy Fitzhardinge <jeremy@goop.org>
7860 M:      Chris Wright <chrisw@sous-sol.org>
7861 M:      Alok Kataria <akataria@vmware.com>
7862 M:      Rusty Russell <rusty@rustcorp.com.au>
7863 L:      virtualization@lists.linux-foundation.org
7864 S:      Supported
7865 F:      Documentation/virtual/paravirt_ops.txt
7866 F:      arch/*/kernel/paravirt*
7867 F:      arch/*/include/asm/paravirt.h
7868
7869 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
7870 M:      Tim Waugh <tim@cyberelk.net>
7871 L:      linux-parport@lists.infradead.org (subscribers-only)
7872 S:      Maintained
7873 F:      Documentation/blockdev/paride.txt
7874 F:      drivers/block/paride/
7875
7876 PARISC ARCHITECTURE
7877 M:      "James E.J. Bottomley" <jejb@parisc-linux.org>
7878 M:      Helge Deller <deller@gmx.de>
7879 L:      linux-parisc@vger.kernel.org
7880 W:      http://www.parisc-linux.org/
7881 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
7882 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
7883 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
7884 S:      Maintained
7885 F:      arch/parisc/
7886 F:      Documentation/parisc/
7887 F:      drivers/parisc/
7888 F:      drivers/char/agp/parisc-agp.c
7889 F:      drivers/input/serio/gscps2.c
7890 F:      drivers/parport/parport_gsc.*
7891 F:      drivers/tty/serial/8250/8250_gsc.c
7892 F:      drivers/video/fbdev/sti*
7893 F:      drivers/video/console/sti*
7894 F:      drivers/video/logo/logo_parisc*
7895
7896 PC87360 HARDWARE MONITORING DRIVER
7897 M:      Jim Cromie <jim.cromie@gmail.com>
7898 L:      lm-sensors@lm-sensors.org
7899 S:      Maintained
7900 F:      Documentation/hwmon/pc87360
7901 F:      drivers/hwmon/pc87360.c
7902
7903 PC8736x GPIO DRIVER
7904 M:      Jim Cromie <jim.cromie@gmail.com>
7905 S:      Maintained
7906 F:      drivers/char/pc8736x_gpio.c
7907
7908 PC87427 HARDWARE MONITORING DRIVER
7909 M:      Jean Delvare <jdelvare@suse.com>
7910 L:      lm-sensors@lm-sensors.org
7911 S:      Maintained
7912 F:      Documentation/hwmon/pc87427
7913 F:      drivers/hwmon/pc87427.c
7914
7915 PCA9532 LED DRIVER
7916 M:      Riku Voipio <riku.voipio@iki.fi>
7917 S:      Maintained
7918 F:      drivers/leds/leds-pca9532.c
7919 F:      include/linux/leds-pca9532.h
7920
7921 PCA9541 I2C BUS MASTER SELECTOR DRIVER
7922 M:      Guenter Roeck <linux@roeck-us.net>
7923 L:      linux-i2c@vger.kernel.org
7924 S:      Maintained
7925 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
7926
7927 PCDP - PRIMARY CONSOLE AND DEBUG PORT
7928 M:      Khalid Aziz <khalid@gonehiking.org>
7929 S:      Maintained
7930 F:      drivers/firmware/pcdp.*
7931
7932 PCI ERROR RECOVERY
7933 M:      Linas Vepstas <linasvepstas@gmail.com>
7934 L:      linux-pci@vger.kernel.org
7935 S:      Supported
7936 F:      Documentation/PCI/pci-error-recovery.txt
7937
7938 PCI SUBSYSTEM
7939 M:      Bjorn Helgaas <bhelgaas@google.com>
7940 L:      linux-pci@vger.kernel.org
7941 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
7942 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
7943 S:      Supported
7944 F:      Documentation/PCI/
7945 F:      drivers/pci/
7946 F:      include/linux/pci*
7947 F:      arch/x86/pci/
7948 F:      arch/x86/kernel/quirks.c
7949
7950 PCI DRIVER FOR ARM VERSATILE PLATFORM
7951 M:      Rob Herring <robh@kernel.org>
7952 L:      linux-pci@vger.kernel.org
7953 L:      linux-arm-kernel@lists.infradead.org
7954 S:      Maintained
7955 F:      Documentation/devicetree/bindings/pci/versatile.txt
7956 F:      drivers/pci/host/pci-versatile.c
7957
7958 PCI DRIVER FOR APPLIEDMICRO XGENE
7959 M:      Tanmay Inamdar <tinamdar@apm.com>
7960 L:      linux-pci@vger.kernel.org
7961 L:      linux-arm-kernel@lists.infradead.org
7962 S:      Maintained
7963 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
7964 F:      drivers/pci/host/pci-xgene.c
7965
7966 PCI DRIVER FOR FREESCALE LAYERSCAPE
7967 M:      Minghuan Lian <minghuan.Lian@freescale.com>
7968 M:      Mingkai Hu <mingkai.hu@freescale.com>
7969 M:      Roy Zang <tie-fei.zang@freescale.com>
7970 L:      linuxppc-dev@lists.ozlabs.org
7971 L:      linux-pci@vger.kernel.org
7972 L:      linux-arm-kernel@lists.infradead.org
7973 S:      Maintained
7974 F:      drivers/pci/host/*layerscape*
7975
7976 PCI DRIVER FOR IMX6
7977 M:      Richard Zhu <Richard.Zhu@freescale.com>
7978 M:      Lucas Stach <l.stach@pengutronix.de>
7979 L:      linux-pci@vger.kernel.org
7980 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7981 S:      Maintained
7982 F:      drivers/pci/host/*imx6*
7983
7984 PCI DRIVER FOR TI KEYSTONE
7985 M:      Murali Karicheri <m-karicheri2@ti.com>
7986 L:      linux-pci@vger.kernel.org
7987 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7988 S:      Maintained
7989 F:      drivers/pci/host/*keystone*
7990
7991 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
7992 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7993 M:      Jason Cooper <jason@lakedaemon.net>
7994 L:      linux-pci@vger.kernel.org
7995 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7996 S:      Maintained
7997 F:      drivers/pci/host/*mvebu*
7998
7999 PCI DRIVER FOR NVIDIA TEGRA
8000 M:      Thierry Reding <thierry.reding@gmail.com>
8001 L:      linux-tegra@vger.kernel.org
8002 L:      linux-pci@vger.kernel.org
8003 S:      Supported
8004 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
8005 F:      drivers/pci/host/pci-tegra.c
8006
8007 PCI DRIVER FOR TI DRA7XX
8008 M:      Kishon Vijay Abraham I <kishon@ti.com>
8009 L:      linux-omap@vger.kernel.org
8010 L:      linux-pci@vger.kernel.org
8011 S:      Supported
8012 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
8013 F:      drivers/pci/host/pci-dra7xx.c
8014
8015 PCI DRIVER FOR RENESAS R-CAR
8016 M:      Simon Horman <horms@verge.net.au>
8017 L:      linux-pci@vger.kernel.org
8018 L:      linux-sh@vger.kernel.org
8019 S:      Maintained
8020 F:      drivers/pci/host/*rcar*
8021
8022 PCI DRIVER FOR SAMSUNG EXYNOS
8023 M:      Jingoo Han <jingoohan1@gmail.com>
8024 L:      linux-pci@vger.kernel.org
8025 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8026 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8027 S:      Maintained
8028 F:      drivers/pci/host/pci-exynos.c
8029
8030 PCI DRIVER FOR SYNOPSIS DESIGNWARE
8031 M:      Jingoo Han <jingoohan1@gmail.com>
8032 M:      Pratyush Anand <pratyush.anand@gmail.com>
8033 L:      linux-pci@vger.kernel.org
8034 S:      Maintained
8035 F:      drivers/pci/host/*designware*
8036
8037 PCI DRIVER FOR GENERIC OF HOSTS
8038 M:      Will Deacon <will.deacon@arm.com>
8039 L:      linux-pci@vger.kernel.org
8040 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8041 S:      Maintained
8042 F:      Documentation/devicetree/bindings/pci/host-generic-pci.txt
8043 F:      drivers/pci/host/pci-host-generic.c
8044
8045 PCIE DRIVER FOR ST SPEAR13XX
8046 M:      Pratyush Anand <pratyush.anand@gmail.com>
8047 L:      linux-pci@vger.kernel.org
8048 S:      Maintained
8049 F:      drivers/pci/host/*spear*
8050
8051 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
8052 M:      Duc Dang <dhdang@apm.com>
8053 L:      linux-pci@vger.kernel.org
8054 L:      linux-arm-kernel@lists.infradead.org
8055 S:      Maintained
8056 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
8057 F:      drivers/pci/host/pci-xgene-msi.c
8058
8059 PCMCIA SUBSYSTEM
8060 P:      Linux PCMCIA Team
8061 L:      linux-pcmcia@lists.infradead.org
8062 W:      http://lists.infradead.org/mailman/listinfo/linux-pcmcia
8063 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
8064 S:      Maintained
8065 F:      Documentation/pcmcia/
8066 F:      drivers/pcmcia/
8067 F:      include/pcmcia/
8068
8069 PCNET32 NETWORK DRIVER
8070 M:      Don Fry <pcnet32@frontier.com>
8071 L:      netdev@vger.kernel.org
8072 S:      Maintained
8073 F:      drivers/net/ethernet/amd/pcnet32.c
8074
8075 PCRYPT PARALLEL CRYPTO ENGINE
8076 M:      Steffen Klassert <steffen.klassert@secunet.com>
8077 L:      linux-crypto@vger.kernel.org
8078 S:      Maintained
8079 F:      crypto/pcrypt.c
8080 F:      include/crypto/pcrypt.h
8081
8082 PER-CPU MEMORY ALLOCATOR
8083 M:      Tejun Heo <tj@kernel.org>
8084 M:      Christoph Lameter <cl@linux-foundation.org>
8085 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
8086 S:      Maintained
8087 F:      include/linux/percpu*.h
8088 F:      mm/percpu*.c
8089 F:      arch/*/include/asm/percpu.h
8090
8091 PER-TASK DELAY ACCOUNTING
8092 M:      Balbir Singh <bsingharora@gmail.com>
8093 S:      Maintained
8094 F:      include/linux/delayacct.h
8095 F:      kernel/delayacct.c
8096
8097 PERFORMANCE EVENTS SUBSYSTEM
8098 M:      Peter Zijlstra <a.p.zijlstra@chello.nl>
8099 M:      Ingo Molnar <mingo@redhat.com>
8100 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
8101 L:      linux-kernel@vger.kernel.org
8102 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
8103 S:      Supported
8104 F:      kernel/events/*
8105 F:      include/linux/perf_event.h
8106 F:      include/uapi/linux/perf_event.h
8107 F:      arch/*/kernel/perf_event*.c
8108 F:      arch/*/kernel/*/perf_event*.c
8109 F:      arch/*/kernel/*/*/perf_event*.c
8110 F:      arch/*/include/asm/perf_event.h
8111 F:      arch/*/kernel/perf_callchain.c
8112 F:      tools/perf/
8113
8114 PERSONALITY HANDLING
8115 M:      Christoph Hellwig <hch@infradead.org>
8116 L:      linux-abi-devel@lists.sourceforge.net
8117 S:      Maintained
8118 F:      include/linux/personality.h
8119 F:      include/uapi/linux/personality.h
8120
8121 PHONET PROTOCOL
8122 M:      Remi Denis-Courmont <courmisch@gmail.com>
8123 S:      Supported
8124 F:      Documentation/networking/phonet.txt
8125 F:      include/linux/phonet.h
8126 F:      include/net/phonet/
8127 F:      include/uapi/linux/phonet.h
8128 F:      net/phonet/
8129
8130 PHRAM MTD DRIVER
8131 M:      Joern Engel <joern@lazybastard.org>
8132 L:      linux-mtd@lists.infradead.org
8133 S:      Maintained
8134 F:      drivers/mtd/devices/phram.c
8135
8136 PICOLCD HID DRIVER
8137 M:      Bruno PrĂ©mont <bonbons@linux-vserver.org>
8138 L:      linux-input@vger.kernel.org
8139 S:      Maintained
8140 F:      drivers/hid/hid-picolcd*
8141
8142 PICOXCELL SUPPORT
8143 M:      Jamie Iles <jamie@jamieiles.com>
8144 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8145 T:      git git://github.com/jamieiles/linux-2.6-ji.git
8146 S:      Supported
8147 F:      arch/arm/boot/dts/picoxcell*
8148 F:      arch/arm/mach-picoxcell/
8149 F:      drivers/crypto/picoxcell*
8150
8151 PIN CONTROL SUBSYSTEM
8152 M:      Linus Walleij <linus.walleij@linaro.org>
8153 L:      linux-gpio@vger.kernel.org
8154 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
8155 S:      Maintained
8156 F:      drivers/pinctrl/
8157 F:      include/linux/pinctrl/
8158
8159 PIN CONTROLLER - ATMEL AT91
8160 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
8161 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8162 S:      Maintained
8163 F:      drivers/pinctrl/pinctrl-at91.*
8164
8165 PIN CONTROLLER - INTEL
8166 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8167 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
8168 S:      Maintained
8169 F:      drivers/pinctrl/intel/
8170
8171 PIN CONTROLLER - RENESAS
8172 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8173 L:      linux-sh@vger.kernel.org
8174 S:      Maintained
8175 F:      drivers/pinctrl/sh-pfc/
8176
8177 PIN CONTROLLER - SAMSUNG
8178 M:      Tomasz Figa <tomasz.figa@gmail.com>
8179 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8180 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8181 S:      Maintained
8182 F:      drivers/pinctrl/samsung/
8183
8184 PIN CONTROLLER - ST SPEAR
8185 M:      Viresh Kumar <vireshk@kernel.org>
8186 L:      spear-devel@list.st.com
8187 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8188 W:      http://www.st.com/spear
8189 S:      Maintained
8190 F:      drivers/pinctrl/spear/
8191
8192 PKTCDVD DRIVER
8193 M:      Jiri Kosina <jikos@kernel.org>
8194 S:      Maintained
8195 F:      drivers/block/pktcdvd.c
8196 F:      include/linux/pktcdvd.h
8197 F:      include/uapi/linux/pktcdvd.h
8198
8199 PKUNITY SOC DRIVERS
8200 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
8201 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
8202 S:      Maintained
8203 T:      git git://github.com/gxt/linux.git
8204 F:      drivers/input/serio/i8042-unicore32io.h
8205 F:      drivers/i2c/busses/i2c-puv3.c
8206 F:      drivers/video/fbdev/fb-puv3.c
8207 F:      drivers/rtc/rtc-puv3.c
8208
8209 PMBUS HARDWARE MONITORING DRIVERS
8210 M:      Guenter Roeck <linux@roeck-us.net>
8211 L:      lm-sensors@lm-sensors.org
8212 W:      http://www.lm-sensors.org/
8213 W:      http://www.roeck-us.net/linux/drivers/
8214 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8215 S:      Maintained
8216 F:      Documentation/hwmon/pmbus
8217 F:      drivers/hwmon/pmbus/
8218 F:      include/linux/i2c/pmbus.h
8219
8220 PMC SIERRA MaxRAID DRIVER
8221 L:      linux-scsi@vger.kernel.org
8222 W:      http://www.pmc-sierra.com/
8223 S:      Orphan
8224 F:      drivers/scsi/pmcraid.*
8225
8226 PMC SIERRA PM8001 DRIVER
8227 M:      Jack Wang <jinpu.wang@profitbricks.com>
8228 M:      lindar_liu@usish.com
8229 L:      pmchba@pmcs.com
8230 L:      linux-scsi@vger.kernel.org
8231 S:      Supported
8232 F:      drivers/scsi/pm8001/
8233
8234 POSIX CLOCKS and TIMERS
8235 M:      Thomas Gleixner <tglx@linutronix.de>
8236 L:      linux-kernel@vger.kernel.org
8237 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8238 S:      Maintained
8239 F:      fs/timerfd.c
8240 F:      include/linux/timer*
8241 F:      kernel/time/*timer*
8242
8243 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
8244 M:      Sebastian Reichel <sre@kernel.org>
8245 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
8246 M:      David Woodhouse <dwmw2@infradead.org>
8247 L:      linux-pm@vger.kernel.org
8248 T:      git git://git.infradead.org/battery-2.6.git
8249 S:      Maintained
8250 F:      include/linux/power_supply.h
8251 F:      drivers/power/
8252 X:      drivers/power/avs/
8253
8254 POWER STATE COORDINATION INTERFACE (PSCI)
8255 M:      Mark Rutland <mark.rutland@arm.com>
8256 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
8257 L:      linux-arm-kernel@lists.infradead.org
8258 S:      Maintained
8259 F:      drivers/firmware/psci.c
8260 F:      include/linux/psci.h
8261 F:      include/uapi/linux/psci.h
8262
8263 PNP SUPPORT
8264 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
8265 S:      Maintained
8266 F:      drivers/pnp/
8267
8268 PNXxxxx I2C DRIVER
8269 M:      Vitaly Wool <vitalywool@gmail.com>
8270 L:      linux-i2c@vger.kernel.org
8271 S:      Maintained
8272 F:      drivers/i2c/busses/i2c-pnx.c
8273
8274 PPP PROTOCOL DRIVERS AND COMPRESSORS
8275 M:      Paul Mackerras <paulus@samba.org>
8276 L:      linux-ppp@vger.kernel.org
8277 S:      Maintained
8278 F:      drivers/net/ppp/ppp_*
8279
8280 PPP OVER ATM (RFC 2364)
8281 M:      Mitchell Blank Jr <mitch@sfgoth.com>
8282 S:      Maintained
8283 F:      net/atm/pppoatm.c
8284 F:      include/uapi/linux/atmppp.h
8285
8286 PPP OVER ETHERNET
8287 M:      Michal Ostrowski <mostrows@earthlink.net>
8288 S:      Maintained
8289 F:      drivers/net/ppp/pppoe.c
8290 F:      drivers/net/ppp/pppox.c
8291
8292 PPP OVER L2TP
8293 M:      James Chapman <jchapman@katalix.com>
8294 S:      Maintained
8295 F:      net/l2tp/l2tp_ppp.c
8296 F:      include/linux/if_pppol2tp.h
8297 F:      include/uapi/linux/if_pppol2tp.h
8298
8299 PPS SUPPORT
8300 M:      Rodolfo Giometti <giometti@enneenne.com>
8301 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
8302 L:      linuxpps@ml.enneenne.com (subscribers-only)
8303 S:      Maintained
8304 F:      Documentation/pps/
8305 F:      drivers/pps/
8306 F:      include/linux/pps*.h
8307
8308 PPTP DRIVER
8309 M:      Dmitry Kozlov <xeb@mail.ru>
8310 L:      netdev@vger.kernel.org
8311 S:      Maintained
8312 F:      drivers/net/ppp/pptp.c
8313 W:      http://sourceforge.net/projects/accel-pptp
8314
8315 PREEMPTIBLE KERNEL
8316 M:      Robert Love <rml@tech9.net>
8317 L:      kpreempt-tech@lists.sourceforge.net
8318 W:      ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
8319 S:      Supported
8320 F:      Documentation/preempt-locking.txt
8321 F:      include/linux/preempt.h
8322
8323 PRISM54 WIRELESS DRIVER
8324 M:      "Luis R. Rodriguez" <mcgrof@gmail.com>
8325 L:      linux-wireless@vger.kernel.org
8326 W:      http://wireless.kernel.org/en/users/Drivers/p54
8327 S:      Obsolete
8328 F:      drivers/net/wireless/prism54/
8329
8330 PS3 NETWORK SUPPORT
8331 M:      Geoff Levand <geoff@infradead.org>
8332 L:      netdev@vger.kernel.org
8333 L:      linuxppc-dev@lists.ozlabs.org
8334 S:      Maintained
8335 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
8336
8337 PS3 PLATFORM SUPPORT
8338 M:      Geoff Levand <geoff@infradead.org>
8339 L:      linuxppc-dev@lists.ozlabs.org
8340 S:      Maintained
8341 F:      arch/powerpc/boot/ps3*
8342 F:      arch/powerpc/include/asm/lv1call.h
8343 F:      arch/powerpc/include/asm/ps3*.h
8344 F:      arch/powerpc/platforms/ps3/
8345 F:      drivers/*/ps3*
8346 F:      drivers/ps3/
8347 F:      drivers/rtc/rtc-ps3.c
8348 F:      drivers/usb/host/*ps3.c
8349 F:      sound/ppc/snd_ps3*
8350
8351 PS3VRAM DRIVER
8352 M:      Jim Paris <jim@jtan.com>
8353 M:      Geoff Levand <geoff@infradead.org>
8354 L:      linuxppc-dev@lists.ozlabs.org
8355 S:      Maintained
8356 F:      drivers/block/ps3vram.c
8357
8358 PSTORE FILESYSTEM
8359 M:      Anton Vorontsov <anton@enomsg.org>
8360 M:      Colin Cross <ccross@android.com>
8361 M:      Kees Cook <keescook@chromium.org>
8362 M:      Tony Luck <tony.luck@intel.com>
8363 S:      Maintained
8364 T:      git git://git.infradead.org/users/cbou/linux-pstore.git
8365 F:      fs/pstore/
8366 F:      include/linux/pstore*
8367 F:      drivers/firmware/efi/efi-pstore.c
8368 F:      drivers/acpi/apei/erst.c
8369
8370 PTP HARDWARE CLOCK SUPPORT
8371 M:      Richard Cochran <richardcochran@gmail.com>
8372 L:      netdev@vger.kernel.org
8373 S:      Maintained
8374 W:      http://linuxptp.sourceforge.net/
8375 F:      Documentation/ABI/testing/sysfs-ptp
8376 F:      Documentation/ptp/*
8377 F:      drivers/net/ethernet/freescale/gianfar_ptp.c
8378 F:      drivers/net/phy/dp83640*
8379 F:      drivers/ptp/*
8380 F:      include/linux/ptp_cl*
8381
8382 PTRACE SUPPORT
8383 M:      Roland McGrath <roland@hack.frob.com>
8384 M:      Oleg Nesterov <oleg@redhat.com>
8385 S:      Maintained
8386 F:      include/asm-generic/syscall.h
8387 F:      include/linux/ptrace.h
8388 F:      include/linux/regset.h
8389 F:      include/linux/tracehook.h
8390 F:      include/uapi/linux/ptrace.h
8391 F:      kernel/ptrace.c
8392
8393 PVRUSB2 VIDEO4LINUX DRIVER
8394 M:      Mike Isely <isely@pobox.com>
8395 L:      pvrusb2@isely.net       (subscribers-only)
8396 L:      linux-media@vger.kernel.org
8397 W:      http://www.isely.net/pvrusb2/
8398 T:      git git://linuxtv.org/media_tree.git
8399 S:      Maintained
8400 F:      Documentation/video4linux/README.pvrusb2
8401 F:      drivers/media/usb/pvrusb2/
8402
8403 PWC WEBCAM DRIVER
8404 M:      Hans de Goede <hdegoede@redhat.com>
8405 L:      linux-media@vger.kernel.org
8406 T:      git git://linuxtv.org/media_tree.git
8407 S:      Maintained
8408 F:      drivers/media/usb/pwc/*
8409
8410 PWM FAN DRIVER
8411 M:      Kamil Debski <k.debski@samsung.com>
8412 L:      lm-sensors@lm-sensors.org
8413 S:      Supported
8414 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
8415 F:      Documentation/hwmon/pwm-fan
8416 F:      drivers/hwmon/pwm-fan.c
8417
8418 PWM SUBSYSTEM
8419 M:      Thierry Reding <thierry.reding@gmail.com>
8420 L:      linux-pwm@vger.kernel.org
8421 S:      Maintained
8422 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
8423 F:      Documentation/pwm.txt
8424 F:      Documentation/devicetree/bindings/pwm/
8425 F:      include/linux/pwm.h
8426 F:      drivers/pwm/
8427 F:      drivers/video/backlight/pwm_bl.c
8428 F:      include/linux/pwm_backlight.h
8429
8430 PXA2xx/PXA3xx SUPPORT
8431 M:      Daniel Mack <daniel@zonque.org>
8432 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
8433 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8434 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8435 T:      git git://github.com/hzhuang1/linux.git
8436 T:      git git://github.com/rjarzmik/linux.git
8437 S:      Maintained
8438 F:      arch/arm/mach-pxa/
8439 F:      drivers/dma/pxa*
8440 F:      drivers/pcmcia/pxa2xx*
8441 F:      drivers/spi/spi-pxa2xx*
8442 F:      drivers/usb/gadget/udc/pxa2*
8443 F:      include/sound/pxa2xx-lib.h
8444 F:      sound/arm/pxa*
8445 F:      sound/soc/pxa/
8446
8447 PXA3xx NAND FLASH DRIVER
8448 M:      Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
8449 L:      linux-mtd@lists.infradead.org
8450 S:      Maintained
8451 F:      drivers/mtd/nand/pxa3xx_nand.c
8452
8453 MMP SUPPORT
8454 M:      Eric Miao <eric.y.miao@gmail.com>
8455 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
8456 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8457 T:      git git://github.com/hzhuang1/linux.git
8458 T:      git git://git.linaro.org/people/ycmiao/pxa-linux.git
8459 S:      Maintained
8460 F:      arch/arm/mach-mmp/
8461
8462 PXA MMCI DRIVER
8463 S:      Orphan
8464
8465 PXA RTC DRIVER
8466 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8467 L:      rtc-linux@googlegroups.com
8468 S:      Maintained
8469
8470 QAT DRIVER
8471 M:      Tadeusz Struk <tadeusz.struk@intel.com>
8472 L:      qat-linux@intel.com
8473 S:      Supported
8474 F:      drivers/crypto/qat/
8475
8476 QIB DRIVER
8477 M:      Mike Marciniszyn <infinipath@intel.com>
8478 L:      linux-rdma@vger.kernel.org
8479 S:      Supported
8480 F:      drivers/infiniband/hw/qib/
8481
8482 QLOGIC QLA1280 SCSI DRIVER
8483 M:      Michael Reed <mdr@sgi.com>
8484 L:      linux-scsi@vger.kernel.org
8485 S:      Maintained
8486 F:      drivers/scsi/qla1280.[ch]
8487
8488 QLOGIC QLA2XXX FC-SCSI DRIVER
8489 M:      qla2xxx-upstream@qlogic.com
8490 L:      linux-scsi@vger.kernel.org
8491 S:      Supported
8492 F:      Documentation/scsi/LICENSE.qla2xxx
8493 F:      drivers/scsi/qla2xxx/
8494
8495 QLOGIC QLA4XXX iSCSI DRIVER
8496 M:      QLogic-Storage-Upstream@qlogic.com
8497 L:      linux-scsi@vger.kernel.org
8498 S:      Supported
8499 F:      Documentation/scsi/LICENSE.qla4xxx
8500 F:      drivers/scsi/qla4xxx/
8501
8502 QLOGIC QLA3XXX NETWORK DRIVER
8503 M:      Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
8504 M:      Ron Mercer <ron.mercer@qlogic.com>
8505 M:      linux-driver@qlogic.com
8506 L:      netdev@vger.kernel.org
8507 S:      Supported
8508 F:      Documentation/networking/LICENSE.qla3xxx
8509 F:      drivers/net/ethernet/qlogic/qla3xxx.*
8510
8511 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
8512 M:      Shahed Shaikh <shahed.shaikh@qlogic.com>
8513 M:      Dept-GELinuxNICDev@qlogic.com
8514 L:      netdev@vger.kernel.org
8515 S:      Supported
8516 F:      drivers/net/ethernet/qlogic/qlcnic/
8517
8518 QLOGIC QLGE 10Gb ETHERNET DRIVER
8519 M:      Harish Patil <harish.patil@qlogic.com>
8520 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
8521 M:      Dept-GELinuxNICDev@qlogic.com
8522 M:      linux-driver@qlogic.com
8523 L:      netdev@vger.kernel.org
8524 S:      Supported
8525 F:      drivers/net/ethernet/qlogic/qlge/
8526
8527 QNX4 FILESYSTEM
8528 M:      Anders Larsen <al@alarsen.net>
8529 W:      http://www.alarsen.net/linux/qnx4fs/
8530 S:      Maintained
8531 F:      fs/qnx4/
8532 F:      include/uapi/linux/qnx4_fs.h
8533 F:      include/uapi/linux/qnxtypes.h
8534
8535 QT1010 MEDIA DRIVER
8536 M:      Antti Palosaari <crope@iki.fi>
8537 L:      linux-media@vger.kernel.org
8538 W:      http://linuxtv.org/
8539 W:      http://palosaari.fi/linux/
8540 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8541 T:      git git://linuxtv.org/anttip/media_tree.git
8542 S:      Maintained
8543 F:      drivers/media/tuners/qt1010*
8544
8545 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
8546 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
8547 L:      linux-wireless@vger.kernel.org
8548 L:      ath9k-devel@lists.ath9k.org
8549 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
8550 S:      Supported
8551 F:      drivers/net/wireless/ath/ath9k/
8552
8553 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
8554 M:      Kalle Valo <kvalo@qca.qualcomm.com>
8555 L:      ath10k@lists.infradead.org
8556 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
8557 T:      git git://github.com/kvalo/ath.git
8558 S:      Supported
8559 F:      drivers/net/wireless/ath/ath10k/
8560
8561 QUALCOMM HEXAGON ARCHITECTURE
8562 M:      Richard Kuo <rkuo@codeaurora.org>
8563 L:      linux-hexagon@vger.kernel.org
8564 S:      Supported
8565 F:      arch/hexagon/
8566
8567 QUALCOMM WCN36XX WIRELESS DRIVER
8568 M:      Eugene Krasnikov <k.eugene.e@gmail.com>
8569 L:      wcn36xx@lists.infradead.org
8570 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
8571 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
8572 S:      Supported
8573 F:      drivers/net/wireless/ath/wcn36xx/
8574
8575 RADOS BLOCK DEVICE (RBD)
8576 M:      Ilya Dryomov <idryomov@gmail.com>
8577 M:      Sage Weil <sage@redhat.com>
8578 M:      Alex Elder <elder@kernel.org>
8579 L:      ceph-devel@vger.kernel.org
8580 W:      http://ceph.com/
8581 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
8582 T:      git git://github.com/ceph/ceph-client.git
8583 S:      Supported
8584 F:      Documentation/ABI/testing/sysfs-bus-rbd
8585 F:      drivers/block/rbd.c
8586 F:      drivers/block/rbd_types.h
8587
8588 RADEON FRAMEBUFFER DISPLAY DRIVER
8589 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
8590 L:      linux-fbdev@vger.kernel.org
8591 S:      Maintained
8592 F:      drivers/video/fbdev/aty/radeon*
8593 F:      include/uapi/linux/radeonfb.h
8594
8595 RADIOSHARK RADIO DRIVER
8596 M:      Hans de Goede <hdegoede@redhat.com>
8597 L:      linux-media@vger.kernel.org
8598 T:      git git://linuxtv.org/media_tree.git
8599 S:      Maintained
8600 F:      drivers/media/radio/radio-shark.c
8601
8602 RADIOSHARK2 RADIO DRIVER
8603 M:      Hans de Goede <hdegoede@redhat.com>
8604 L:      linux-media@vger.kernel.org
8605 T:      git git://linuxtv.org/media_tree.git
8606 S:      Maintained
8607 F:      drivers/media/radio/radio-shark2.c
8608 F:      drivers/media/radio/radio-tea5777.c
8609
8610 RAGE128 FRAMEBUFFER DISPLAY DRIVER
8611 M:      Paul Mackerras <paulus@samba.org>
8612 L:      linux-fbdev@vger.kernel.org
8613 S:      Maintained
8614 F:      drivers/video/fbdev/aty/aty128fb.c
8615
8616 RALINK RT2X00 WIRELESS LAN DRIVER
8617 P:      rt2x00 project
8618 M:      Stanislaw Gruszka <sgruszka@redhat.com>
8619 M:      Helmut Schaa <helmut.schaa@googlemail.com>
8620 L:      linux-wireless@vger.kernel.org
8621 S:      Maintained
8622 F:      drivers/net/wireless/rt2x00/
8623
8624 RAMDISK RAM BLOCK DEVICE DRIVER
8625 M:      Jens Axboe <axboe@kernel.dk>
8626 S:      Maintained
8627 F:      Documentation/blockdev/ramdisk.txt
8628 F:      drivers/block/brd.c
8629
8630 RANDOM NUMBER DRIVER
8631 M:      "Theodore Ts'o" <tytso@mit.edu>
8632 S:      Maintained
8633 F:      drivers/char/random.c
8634
8635 RAPIDIO SUBSYSTEM
8636 M:      Matt Porter <mporter@kernel.crashing.org>
8637 M:      Alexandre Bounine <alexandre.bounine@idt.com>
8638 S:      Maintained
8639 F:      drivers/rapidio/
8640
8641 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
8642 L:      linux-wireless@vger.kernel.org
8643 S:      Orphan
8644 F:      drivers/net/wireless/ray*
8645
8646 RCUTORTURE MODULE
8647 M:      Josh Triplett <josh@joshtriplett.org>
8648 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8649 L:      linux-kernel@vger.kernel.org
8650 S:      Supported
8651 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8652 F:      Documentation/RCU/torture.txt
8653 F:      kernel/rcu/rcutorture.c
8654
8655 RCUTORTURE TEST FRAMEWORK
8656 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8657 M:      Josh Triplett <josh@joshtriplett.org>
8658 R:      Steven Rostedt <rostedt@goodmis.org>
8659 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8660 R:      Lai Jiangshan <jiangshanlai@gmail.com>
8661 L:      linux-kernel@vger.kernel.org
8662 S:      Supported
8663 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8664 F:      tools/testing/selftests/rcutorture
8665
8666 RDC R-321X SoC
8667 M:      Florian Fainelli <florian@openwrt.org>
8668 S:      Maintained
8669
8670 RDC R6040 FAST ETHERNET DRIVER
8671 M:      Florian Fainelli <florian@openwrt.org>
8672 L:      netdev@vger.kernel.org
8673 S:      Maintained
8674 F:      drivers/net/ethernet/rdc/r6040.c
8675
8676 RDS - RELIABLE DATAGRAM SOCKETS
8677 M:      Chien Yen <chien.yen@oracle.com>
8678 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
8679 S:      Supported
8680 F:      net/rds/
8681
8682 READ-COPY UPDATE (RCU)
8683 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8684 M:      Josh Triplett <josh@joshtriplett.org>
8685 R:      Steven Rostedt <rostedt@goodmis.org>
8686 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8687 R:      Lai Jiangshan <jiangshanlai@gmail.com>
8688 L:      linux-kernel@vger.kernel.org
8689 W:      http://www.rdrop.com/users/paulmck/RCU/
8690 S:      Supported
8691 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8692 F:      Documentation/RCU/
8693 X:      Documentation/RCU/torture.txt
8694 F:      include/linux/rcu*
8695 X:      include/linux/srcu.h
8696 F:      kernel/rcu/
8697 X:      kernel/torture.c
8698
8699 REAL TIME CLOCK (RTC) SUBSYSTEM
8700 M:      Alessandro Zummo <a.zummo@towertech.it>
8701 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
8702 L:      rtc-linux@googlegroups.com
8703 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
8704 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
8705 S:      Maintained
8706 F:      Documentation/rtc.txt
8707 F:      drivers/rtc/
8708 F:      include/linux/rtc.h
8709 F:      include/uapi/linux/rtc.h
8710
8711 REALTEK AUDIO CODECS
8712 M:      Bard Liao <bardliao@realtek.com>
8713 M:      Oder Chiou <oder_chiou@realtek.com>
8714 S:      Maintained
8715 F:      sound/soc/codecs/rt*
8716 F:      include/sound/rt*.h
8717
8718 REISERFS FILE SYSTEM
8719 L:      reiserfs-devel@vger.kernel.org
8720 S:      Supported
8721 F:      fs/reiserfs/
8722
8723 REGISTER MAP ABSTRACTION
8724 M:      Mark Brown <broonie@kernel.org>
8725 L:      linux-kernel@vger.kernel.org
8726 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
8727 S:      Supported
8728 F:      drivers/base/regmap/
8729 F:      include/linux/regmap.h
8730
8731 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
8732 M:      Ohad Ben-Cohen <ohad@wizery.com>
8733 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
8734 S:      Maintained
8735 F:      drivers/remoteproc/
8736 F:      Documentation/remoteproc.txt
8737 F:      include/linux/remoteproc.h
8738
8739 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
8740 M:      Ohad Ben-Cohen <ohad@wizery.com>
8741 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
8742 S:      Maintained
8743 F:      drivers/rpmsg/
8744 F:      Documentation/rpmsg.txt
8745 F:      include/linux/rpmsg.h
8746
8747 RESET CONTROLLER FRAMEWORK
8748 M:      Philipp Zabel <p.zabel@pengutronix.de>
8749 S:      Maintained
8750 F:      drivers/reset/
8751 F:      Documentation/devicetree/bindings/reset/
8752 F:      include/dt-bindings/reset/
8753 F:      include/linux/reset.h
8754 F:      include/linux/reset-controller.h
8755
8756 RFKILL
8757 M:      Johannes Berg <johannes@sipsolutions.net>
8758 L:      linux-wireless@vger.kernel.org
8759 W:      http://wireless.kernel.org/
8760 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
8761 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
8762 S:      Maintained
8763 F:      Documentation/rfkill.txt
8764 F:      net/rfkill/
8765
8766 RHASHTABLE
8767 M:      Thomas Graf <tgraf@suug.ch>
8768 L:      netdev@vger.kernel.org
8769 S:      Maintained
8770 F:      lib/rhashtable.c
8771 F:      include/linux/rhashtable.h
8772
8773 RICOH SMARTMEDIA/XD DRIVER
8774 M:      Maxim Levitsky <maximlevitsky@gmail.com>
8775 S:      Maintained
8776 F:      drivers/mtd/nand/r852.c
8777 F:      drivers/mtd/nand/r852.h
8778
8779 RICOH R5C592 MEMORYSTICK DRIVER
8780 M:      Maxim Levitsky <maximlevitsky@gmail.com>
8781 S:      Maintained
8782 F:      drivers/memstick/host/r592.*
8783
8784 ROCCAT DRIVERS
8785 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
8786 W:      http://sourceforge.net/projects/roccat/
8787 S:      Maintained
8788 F:      drivers/hid/hid-roccat*
8789 F:      include/linux/hid-roccat*
8790 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
8791
8792 ROCKER DRIVER
8793 M:      Jiri Pirko <jiri@resnulli.us>
8794 M:      Scott Feldman <sfeldma@gmail.com>
8795 L:      netdev@vger.kernel.org
8796 S:      Supported
8797 F:      drivers/net/ethernet/rocker/
8798
8799 ROCKETPORT DRIVER
8800 P:      Comtrol Corp.
8801 W:      http://www.comtrol.com
8802 S:      Maintained
8803 F:      Documentation/serial/rocket.txt
8804 F:      drivers/tty/rocket*
8805
8806 ROCKETPORT EXPRESS/INFINITY DRIVER
8807 M:      Kevin Cernekee <cernekee@gmail.com>
8808 L:      linux-serial@vger.kernel.org
8809 S:      Odd Fixes
8810 F:      drivers/tty/serial/rp2.*
8811
8812 ROSE NETWORK LAYER
8813 M:      Ralf Baechle <ralf@linux-mips.org>
8814 L:      linux-hams@vger.kernel.org
8815 W:      http://www.linux-ax25.org/
8816 S:      Maintained
8817 F:      include/net/rose.h
8818 F:      include/uapi/linux/rose.h
8819 F:      net/rose/
8820
8821 RTL2830 MEDIA DRIVER
8822 M:      Antti Palosaari <crope@iki.fi>
8823 L:      linux-media@vger.kernel.org
8824 W:      http://linuxtv.org/
8825 W:      http://palosaari.fi/linux/
8826 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8827 T:      git git://linuxtv.org/anttip/media_tree.git
8828 S:      Maintained
8829 F:      drivers/media/dvb-frontends/rtl2830*
8830
8831 RTL2832 MEDIA DRIVER
8832 M:      Antti Palosaari <crope@iki.fi>
8833 L:      linux-media@vger.kernel.org
8834 W:      http://linuxtv.org/
8835 W:      http://palosaari.fi/linux/
8836 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8837 T:      git git://linuxtv.org/anttip/media_tree.git
8838 S:      Maintained
8839 F:      drivers/media/dvb-frontends/rtl2832*
8840
8841 RTL2832_SDR MEDIA DRIVER
8842 M:      Antti Palosaari <crope@iki.fi>
8843 L:      linux-media@vger.kernel.org
8844 W:      http://linuxtv.org/
8845 W:      http://palosaari.fi/linux/
8846 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8847 T:      git git://linuxtv.org/anttip/media_tree.git
8848 S:      Maintained
8849 F:      drivers/media/dvb-frontends/rtl2832_sdr*
8850
8851 RTL8180 WIRELESS DRIVER
8852 L:      linux-wireless@vger.kernel.org
8853 W:      http://wireless.kernel.org/
8854 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8855 S:      Orphan
8856 F:      drivers/net/wireless/rtl818x/rtl8180/
8857
8858 RTL8187 WIRELESS DRIVER
8859 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
8860 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
8861 M:      Larry Finger <Larry.Finger@lwfinger.net>
8862 L:      linux-wireless@vger.kernel.org
8863 W:      http://wireless.kernel.org/
8864 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8865 S:      Maintained
8866 F:      drivers/net/wireless/rtl818x/rtl8187/
8867
8868 RTL8192CE WIRELESS DRIVER
8869 M:      Larry Finger <Larry.Finger@lwfinger.net>
8870 M:      Chaoming Li <chaoming_li@realsil.com.cn>
8871 L:      linux-wireless@vger.kernel.org
8872 W:      http://wireless.kernel.org/
8873 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8874 S:      Maintained
8875 F:      drivers/net/wireless/rtlwifi/
8876 F:      drivers/net/wireless/rtlwifi/rtl8192ce/
8877
8878 S3 SAVAGE FRAMEBUFFER DRIVER
8879 M:      Antonino Daplas <adaplas@gmail.com>
8880 L:      linux-fbdev@vger.kernel.org
8881 S:      Maintained
8882 F:      drivers/video/fbdev/savage/
8883
8884 S390
8885 M:      Martin Schwidefsky <schwidefsky@de.ibm.com>
8886 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
8887 L:      linux-s390@vger.kernel.org
8888 W:      http://www.ibm.com/developerworks/linux/linux390/
8889 S:      Supported
8890 F:      arch/s390/
8891 F:      drivers/s390/
8892 F:      Documentation/s390/
8893 F:      Documentation/DocBook/s390*
8894
8895 S390 COMMON I/O LAYER
8896 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
8897 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
8898 L:      linux-s390@vger.kernel.org
8899 W:      http://www.ibm.com/developerworks/linux/linux390/
8900 S:      Supported
8901 F:      drivers/s390/cio/
8902
8903 S390 DASD DRIVER
8904 M:      Stefan Weinhuber <wein@de.ibm.com>
8905 M:      Stefan Haberland <stefan.haberland@de.ibm.com>
8906 L:      linux-s390@vger.kernel.org
8907 W:      http://www.ibm.com/developerworks/linux/linux390/
8908 S:      Supported
8909 F:      drivers/s390/block/dasd*
8910 F:      block/partitions/ibm.c
8911
8912 S390 NETWORK DRIVERS
8913 M:      Ursula Braun <ursula.braun@de.ibm.com>
8914 L:      linux-s390@vger.kernel.org
8915 W:      http://www.ibm.com/developerworks/linux/linux390/
8916 S:      Supported
8917 F:      drivers/s390/net/
8918
8919 S390 PCI SUBSYSTEM
8920 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
8921 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
8922 L:      linux-s390@vger.kernel.org
8923 W:      http://www.ibm.com/developerworks/linux/linux390/
8924 S:      Supported
8925 F:      arch/s390/pci/
8926 F:      drivers/pci/hotplug/s390_pci_hpc.c
8927
8928 S390 ZCRYPT DRIVER
8929 M:      Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
8930 L:      linux-s390@vger.kernel.org
8931 W:      http://www.ibm.com/developerworks/linux/linux390/
8932 S:      Supported
8933 F:      drivers/s390/crypto/
8934
8935 S390 ZFCP DRIVER
8936 M:      Steffen Maier <maier@linux.vnet.ibm.com>
8937 L:      linux-s390@vger.kernel.org
8938 W:      http://www.ibm.com/developerworks/linux/linux390/
8939 S:      Supported
8940 F:      drivers/s390/scsi/zfcp_*
8941
8942 S390 IUCV NETWORK LAYER
8943 M:      Ursula Braun <ursula.braun@de.ibm.com>
8944 L:      linux-s390@vger.kernel.org
8945 W:      http://www.ibm.com/developerworks/linux/linux390/
8946 S:      Supported
8947 F:      drivers/s390/net/*iucv*
8948 F:      include/net/iucv/
8949 F:      net/iucv/
8950
8951 S3C24XX SD/MMC Driver
8952 M:      Ben Dooks <ben-linux@fluff.org>
8953 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8954 S:      Supported
8955 F:      drivers/mmc/host/s3cmci.*
8956
8957 SAA6588 RDS RECEIVER DRIVER
8958 M:      Hans Verkuil <hverkuil@xs4all.nl>
8959 L:      linux-media@vger.kernel.org
8960 T:      git git://linuxtv.org/media_tree.git
8961 W:      http://linuxtv.org
8962 S:      Odd Fixes
8963 F:      drivers/media/i2c/saa6588*
8964
8965 SAA7134 VIDEO4LINUX DRIVER
8966 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
8967 L:      linux-media@vger.kernel.org
8968 W:      http://linuxtv.org
8969 T:      git git://linuxtv.org/media_tree.git
8970 S:      Odd fixes
8971 F:      Documentation/video4linux/*.saa7134
8972 F:      drivers/media/pci/saa7134/
8973
8974 SAA7146 VIDEO4LINUX-2 DRIVER
8975 M:      Hans Verkuil <hverkuil@xs4all.nl>
8976 L:      linux-media@vger.kernel.org
8977 T:      git git://linuxtv.org/media_tree.git
8978 S:      Maintained
8979 F:      drivers/media/common/saa7146/
8980 F:      drivers/media/pci/saa7146/
8981 F:      include/media/saa7146*
8982
8983 SAMSUNG LAPTOP DRIVER
8984 M:      Corentin Chary <corentin.chary@gmail.com>
8985 L:      platform-driver-x86@vger.kernel.org
8986 S:      Maintained
8987 F:      drivers/platform/x86/samsung-laptop.c
8988
8989 SAMSUNG AUDIO (ASoC) DRIVERS
8990 M:      Sangbeom Kim <sbkim73@samsung.com>
8991 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8992 S:      Supported
8993 F:      sound/soc/samsung/
8994
8995 SAMSUNG FRAMEBUFFER DRIVER
8996 M:      Jingoo Han <jingoohan1@gmail.com>
8997 L:      linux-fbdev@vger.kernel.org
8998 S:      Maintained
8999 F:      drivers/video/fbdev/s3c-fb.c
9000
9001 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
9002 M:      Sangbeom Kim <sbkim73@samsung.com>
9003 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
9004 L:      linux-kernel@vger.kernel.org
9005 L:      linux-samsung-soc@vger.kernel.org
9006 S:      Supported
9007 F:      drivers/mfd/sec*.c
9008 F:      drivers/regulator/s2m*.c
9009 F:      drivers/regulator/s5m*.c
9010 F:      drivers/clk/clk-s2mps11.c
9011 F:      drivers/rtc/rtc-s5m.c
9012 F:      include/linux/mfd/samsung/
9013 F:      Documentation/devicetree/bindings/regulator/s5m8767-regulator.txt
9014 F:      Documentation/devicetree/bindings/mfd/s2mp*.txt
9015
9016 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
9017 M:      Kyungmin Park <kyungmin.park@samsung.com>
9018 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
9019 L:      linux-media@vger.kernel.org
9020 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
9021 S:      Supported
9022 F:      drivers/media/platform/exynos4-is/
9023
9024 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
9025 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
9026 L:      linux-media@vger.kernel.org
9027 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9028 S:      Maintained
9029 F:      drivers/media/platform/s3c-camif/
9030 F:      include/media/s3c_camif.h
9031
9032 SAMSUNG S5C73M3 CAMERA DRIVER
9033 M:      Kyungmin Park <kyungmin.park@samsung.com>
9034 M:      Andrzej Hajda <a.hajda@samsung.com>
9035 L:      linux-media@vger.kernel.org
9036 S:      Supported
9037 F:      drivers/media/i2c/s5c73m3/*
9038
9039 SAMSUNG S5K5BAF CAMERA DRIVER
9040 M:      Kyungmin Park <kyungmin.park@samsung.com>
9041 M:      Andrzej Hajda <a.hajda@samsung.com>
9042 L:      linux-media@vger.kernel.org
9043 S:      Supported
9044 F:      drivers/media/i2c/s5k5baf.c
9045
9046 SAMSUNG S3FWRN5 NFC DRIVER
9047 M:      Robert Baldyga <r.baldyga@samsung.com>
9048 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
9049 S:      Supported
9050 F:      drivers/nfc/s3fwrn5
9051
9052 SAMSUNG SOC CLOCK DRIVERS
9053 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
9054 M:      Tomasz Figa <tomasz.figa@gmail.com>
9055 S:      Supported
9056 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9057 F:      drivers/clk/samsung/
9058
9059 SAMSUNG SXGBE DRIVERS
9060 M:      Byungho An <bh74.an@samsung.com>
9061 M:      Girish K S <ks.giri@samsung.com>
9062 M:      Vipul Pandya <vipul.pandya@samsung.com>
9063 S:      Supported
9064 L:      netdev@vger.kernel.org
9065 F:      drivers/net/ethernet/samsung/sxgbe/
9066
9067 SAMSUNG THERMAL DRIVER
9068 M:      Lukasz Majewski <l.majewski@samsung.com>
9069 L:      linux-pm@vger.kernel.org
9070 L:      linux-samsung-soc@vger.kernel.org
9071 S:      Supported
9072 T:      https://github.com/lmajewski/linux-samsung-thermal.git
9073 F:      drivers/thermal/samsung/
9074
9075 SAMSUNG USB2 PHY DRIVER
9076 M:      Kamil Debski <k.debski@samsung.com>
9077 L:      linux-kernel@vger.kernel.org
9078 S:      Supported
9079 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
9080 F:      Documentation/phy/samsung-usb2.txt
9081 F:      drivers/phy/phy-exynos4210-usb2.c
9082 F:      drivers/phy/phy-exynos4x12-usb2.c
9083 F:      drivers/phy/phy-exynos5250-usb2.c
9084 F:      drivers/phy/phy-s5pv210-usb2.c
9085 F:      drivers/phy/phy-samsung-usb2.c
9086 F:      drivers/phy/phy-samsung-usb2.h
9087
9088 SERIAL DRIVERS
9089 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9090 L:      linux-serial@vger.kernel.org
9091 S:      Maintained
9092 F:      drivers/tty/serial/
9093
9094 SYNOPSYS DESIGNWARE DMAC DRIVER
9095 M:      Viresh Kumar <vireshk@kernel.org>
9096 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9097 S:      Maintained
9098 F:      include/linux/dma/dw.h
9099 F:      include/linux/platform_data/dma-dw.h
9100 F:      drivers/dma/dw/
9101
9102 SYNOPSYS DESIGNWARE ETHERNET QOS 4.10a driver
9103 M: Lars Persson <lars.persson@axis.com>
9104 L: netdev@vger.kernel.org
9105 S: Supported
9106 F: Documentation/devicetree/bindings/net/snps,dwc-qos-ethernet.txt
9107 F: drivers/net/ethernet/synopsys/dwc_eth_qos.c
9108
9109 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
9110 M:      Seungwon Jeon <tgih.jun@samsung.com>
9111 M:      Jaehoon Chung <jh80.chung@samsung.com>
9112 L:      linux-mmc@vger.kernel.org
9113 S:      Maintained
9114 F:      include/linux/mmc/dw_mmc.h
9115 F:      drivers/mmc/host/dw_mmc*
9116
9117 THUNDERBOLT DRIVER
9118 M:      Andreas Noever <andreas.noever@gmail.com>
9119 S:      Maintained
9120 F:      drivers/thunderbolt/
9121
9122 TIMEKEEPING, CLOCKSOURCE CORE, NTP
9123 M:      John Stultz <john.stultz@linaro.org>
9124 M:      Thomas Gleixner <tglx@linutronix.de>
9125 L:      linux-kernel@vger.kernel.org
9126 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
9127 S:      Supported
9128 F:      include/linux/clocksource.h
9129 F:      include/linux/time.h
9130 F:      include/linux/timex.h
9131 F:      include/uapi/linux/time.h
9132 F:      include/uapi/linux/timex.h
9133 F:      kernel/time/clocksource.c
9134 F:      kernel/time/time*.c
9135 F:      kernel/time/ntp.c
9136 F:      tools/testing/selftests/timers/
9137
9138 SC1200 WDT DRIVER
9139 M:      Zwane Mwaikambo <zwanem@gmail.com>
9140 S:      Maintained
9141 F:      drivers/watchdog/sc1200wdt.c
9142
9143 SCHEDULER
9144 M:      Ingo Molnar <mingo@redhat.com>
9145 M:      Peter Zijlstra <peterz@infradead.org>
9146 L:      linux-kernel@vger.kernel.org
9147 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
9148 S:      Maintained
9149 F:      kernel/sched/
9150 F:      include/linux/sched.h
9151 F:      include/uapi/linux/sched.h
9152 F:      include/linux/wait.h
9153
9154 SCORE ARCHITECTURE
9155 M:      Chen Liqin <liqin.linux@gmail.com>
9156 M:      Lennox Wu <lennox.wu@gmail.com>
9157 W:      http://www.sunplus.com
9158 S:      Supported
9159 F:      arch/score/
9160
9161 SCSI CDROM DRIVER
9162 M:      Jens Axboe <axboe@kernel.dk>
9163 L:      linux-scsi@vger.kernel.org
9164 W:      http://www.kernel.dk
9165 S:      Maintained
9166 F:      drivers/scsi/sr*
9167
9168 SCSI RDMA PROTOCOL (SRP) INITIATOR
9169 M:      Bart Van Assche <bart.vanassche@sandisk.com>
9170 L:      linux-rdma@vger.kernel.org
9171 S:      Supported
9172 W:      http://www.openfabrics.org
9173 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9174 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
9175 F:      drivers/infiniband/ulp/srp/
9176 F:      include/scsi/srp.h
9177
9178 SCSI SG DRIVER
9179 M:      Doug Gilbert <dgilbert@interlog.com>
9180 L:      linux-scsi@vger.kernel.org
9181 W:      http://sg.danny.cz/sg
9182 S:      Maintained
9183 F:      Documentation/scsi/scsi-generic.txt
9184 F:      drivers/scsi/sg.c
9185 F:      include/scsi/sg.h
9186
9187 SCSI SUBSYSTEM
9188 M:      "James E.J. Bottomley" <JBottomley@odin.com>
9189 L:      linux-scsi@vger.kernel.org
9190 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
9191 S:      Maintained
9192 F:      drivers/scsi/
9193 F:      include/scsi/
9194
9195 SCSI TAPE DRIVER
9196 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
9197 L:      linux-scsi@vger.kernel.org
9198 S:      Maintained
9199 F:      Documentation/scsi/st.txt
9200 F:      drivers/scsi/st.*
9201 F:      drivers/scsi/st_*.h
9202
9203 SCTP PROTOCOL
9204 M:      Vlad Yasevich <vyasevich@gmail.com>
9205 M:      Neil Horman <nhorman@tuxdriver.com>
9206 L:      linux-sctp@vger.kernel.org
9207 W:      http://lksctp.sourceforge.net
9208 S:      Maintained
9209 F:      Documentation/networking/sctp.txt
9210 F:      include/linux/sctp.h
9211 F:      include/uapi/linux/sctp.h
9212 F:      include/net/sctp/
9213 F:      net/sctp/
9214
9215 SCx200 CPU SUPPORT
9216 M:      Jim Cromie <jim.cromie@gmail.com>
9217 S:      Odd Fixes
9218 F:      Documentation/i2c/busses/scx200_acb
9219 F:      arch/x86/platform/scx200/
9220 F:      drivers/watchdog/scx200_wdt.c
9221 F:      drivers/i2c/busses/scx200*
9222 F:      drivers/mtd/maps/scx200_docflash.c
9223 F:      include/linux/scx200.h
9224
9225 SCx200 GPIO DRIVER
9226 M:      Jim Cromie <jim.cromie@gmail.com>
9227 S:      Maintained
9228 F:      drivers/char/scx200_gpio.c
9229 F:      include/linux/scx200_gpio.h
9230
9231 SCx200 HRT CLOCKSOURCE DRIVER
9232 M:      Jim Cromie <jim.cromie@gmail.com>
9233 S:      Maintained
9234 F:      drivers/clocksource/scx200_hrt.c
9235
9236 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
9237 M:      Sascha Sommer <saschasommer@freenet.de>
9238 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
9239 S:      Maintained
9240 F:      drivers/mmc/host/sdricoh_cs.c
9241
9242 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
9243 L:      linux-mmc@vger.kernel.org
9244 S:      Orphan
9245 F:      drivers/mmc/host/sdhci.*
9246 F:      drivers/mmc/host/sdhci-pltfm.[ch]
9247
9248 SECURE COMPUTING
9249 M:      Kees Cook <keescook@chromium.org>
9250 R:      Andy Lutomirski <luto@amacapital.net>
9251 R:      Will Drewry <wad@chromium.org>
9252 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
9253 S:      Supported
9254 F:      kernel/seccomp.c
9255 F:      include/uapi/linux/seccomp.h
9256 F:      include/linux/seccomp.h
9257 F:      tools/testing/selftests/seccomp/*
9258 K:      \bsecure_computing
9259 K:      \bTIF_SECCOMP\b
9260
9261 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
9262 M:      Ben Dooks <ben-linux@fluff.org>
9263 M:      Jaehoon Chung <jh80.chung@samsung.com>
9264 L:      linux-mmc@vger.kernel.org
9265 S:      Maintained
9266 F:      drivers/mmc/host/sdhci-s3c*
9267
9268 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
9269 M:      Viresh Kumar <vireshk@kernel.org>
9270 L:      spear-devel@list.st.com
9271 L:      linux-mmc@vger.kernel.org
9272 S:      Maintained
9273 F:      drivers/mmc/host/sdhci-spear.c
9274
9275 SECURITY SUBSYSTEM
9276 M:      James Morris <james.l.morris@oracle.com>
9277 M:      "Serge E. Hallyn" <serge@hallyn.com>
9278 L:      linux-security-module@vger.kernel.org (suggested Cc:)
9279 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
9280 W:      http://kernsec.org/
9281 S:      Supported
9282 F:      security/
9283
9284 SECURITY CONTACT
9285 M:      Security Officers <security@kernel.org>
9286 S:      Supported
9287
9288 SELINUX SECURITY MODULE
9289 M:      Paul Moore <paul@paul-moore.com>
9290 M:      Stephen Smalley <sds@tycho.nsa.gov>
9291 M:      Eric Paris <eparis@parisplace.org>
9292 L:      selinux@tycho.nsa.gov (moderated for non-subscribers)
9293 W:      http://selinuxproject.org
9294 T:      git git://git.infradead.org/users/pcmoore/selinux
9295 S:      Supported
9296 F:      include/linux/selinux*
9297 F:      security/selinux/
9298 F:      scripts/selinux/
9299
9300 APPARMOR SECURITY MODULE
9301 M:      John Johansen <john.johansen@canonical.com>
9302 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
9303 W:      apparmor.wiki.kernel.org
9304 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
9305 S:      Supported
9306 F:      security/apparmor/
9307
9308 YAMA SECURITY MODULE
9309 M:      Kees Cook <keescook@chromium.org>
9310 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
9311 S:      Supported
9312 F:      security/yama/
9313
9314 SENSABLE PHANTOM
9315 M:      Jiri Slaby <jirislaby@gmail.com>
9316 S:      Maintained
9317 F:      drivers/misc/phantom.c
9318 F:      include/uapi/linux/phantom.h
9319
9320 SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
9321 M:      Jayamohan Kallickal <jayamohan.kallickal@avagotech.com>
9322 M:      Ketan Mukadam <ketan.mukadam@avagotech.com>
9323 M:      John Soni Jose <sony.john@avagotech.com>
9324 L:      linux-scsi@vger.kernel.org
9325 W:      http://www.avagotech.com
9326 S:      Supported
9327 F:      drivers/scsi/be2iscsi/
9328
9329 Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER
9330 M:      Sathya Perla <sathya.perla@avagotech.com>
9331 M:      Ajit Khaparde <ajit.khaparde@avagotech.com>
9332 M:      Padmanabh Ratnakar <padmanabh.ratnakar@avagotech.com>
9333 M:      Sriharsha Basavapatna <sriharsha.basavapatna@avagotech.com>
9334 L:      netdev@vger.kernel.org
9335 W:      http://www.emulex.com
9336 S:      Supported
9337 F:      drivers/net/ethernet/emulex/benet/
9338
9339 EMULEX ONECONNECT ROCE DRIVER
9340 M:      Selvin Xavier <selvin.xavier@avagotech.com>
9341 M:      Devesh Sharma <devesh.sharma@avagotech.com>
9342 M:      Mitesh Ahuja <mitesh.ahuja@avagotech.com>
9343 L:      linux-rdma@vger.kernel.org
9344 W:      http://www.emulex.com
9345 S:      Supported
9346 F:      drivers/infiniband/hw/ocrdma/
9347
9348 SFC NETWORK DRIVER
9349 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
9350 M:      Shradha Shah <sshah@solarflare.com>
9351 L:      netdev@vger.kernel.org
9352 S:      Supported
9353 F:      drivers/net/ethernet/sfc/
9354
9355 SGI GRU DRIVER
9356 M:      Dimitri Sivanich <sivanich@sgi.com>
9357 S:      Maintained
9358 F:      drivers/misc/sgi-gru/
9359
9360 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
9361 M:      Pat Gefre <pfg@sgi.com>
9362 L:      linux-ia64@vger.kernel.org
9363 S:      Supported
9364 F:      Documentation/ia64/serial.txt
9365 F:      drivers/tty/serial/ioc?_serial.c
9366 F:      include/linux/ioc?.h
9367
9368 SGI XP/XPC/XPNET DRIVER
9369 M:      Cliff Whickman <cpw@sgi.com>
9370 M:      Robin Holt <robinmholt@gmail.com>
9371 S:      Maintained
9372 F:      drivers/misc/sgi-xp/
9373
9374 SI2157 MEDIA DRIVER
9375 M:      Antti Palosaari <crope@iki.fi>
9376 L:      linux-media@vger.kernel.org
9377 W:      http://linuxtv.org/
9378 W:      http://palosaari.fi/linux/
9379 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9380 T:      git git://linuxtv.org/anttip/media_tree.git
9381 S:      Maintained
9382 F:      drivers/media/tuners/si2157*
9383
9384 SI2168 MEDIA DRIVER
9385 M:      Antti Palosaari <crope@iki.fi>
9386 L:      linux-media@vger.kernel.org
9387 W:      http://linuxtv.org/
9388 W:      http://palosaari.fi/linux/
9389 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9390 T:      git git://linuxtv.org/anttip/media_tree.git
9391 S:      Maintained
9392 F:      drivers/media/dvb-frontends/si2168*
9393
9394 SI470X FM RADIO RECEIVER I2C DRIVER
9395 M:      Hans Verkuil <hverkuil@xs4all.nl>
9396 L:      linux-media@vger.kernel.org
9397 T:      git git://linuxtv.org/media_tree.git
9398 W:      http://linuxtv.org
9399 S:      Odd Fixes
9400 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
9401
9402 SI470X FM RADIO RECEIVER USB DRIVER
9403 M:      Hans Verkuil <hverkuil@xs4all.nl>
9404 L:      linux-media@vger.kernel.org
9405 T:      git git://linuxtv.org/media_tree.git
9406 W:      http://linuxtv.org
9407 S:      Maintained
9408 F:      drivers/media/radio/si470x/radio-si470x-common.c
9409 F:      drivers/media/radio/si470x/radio-si470x.h
9410 F:      drivers/media/radio/si470x/radio-si470x-usb.c
9411
9412 SI4713 FM RADIO TRANSMITTER I2C DRIVER
9413 M:      Eduardo Valentin <edubezval@gmail.com>
9414 L:      linux-media@vger.kernel.org
9415 T:      git git://linuxtv.org/media_tree.git
9416 W:      http://linuxtv.org
9417 S:      Odd Fixes
9418 F:      drivers/media/radio/si4713/si4713.?
9419
9420 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
9421 M:      Eduardo Valentin <edubezval@gmail.com>
9422 L:      linux-media@vger.kernel.org
9423 T:      git git://linuxtv.org/media_tree.git
9424 W:      http://linuxtv.org
9425 S:      Odd Fixes
9426 F:      drivers/media/radio/si4713/radio-platform-si4713.c
9427
9428 SI4713 FM RADIO TRANSMITTER USB DRIVER
9429 M:      Hans Verkuil <hverkuil@xs4all.nl>
9430 L:      linux-media@vger.kernel.org
9431 T:      git git://linuxtv.org/media_tree.git
9432 W:      http://linuxtv.org
9433 S:      Maintained
9434 F:      drivers/media/radio/si4713/radio-usb-si4713.c
9435
9436 SIANO DVB DRIVER
9437 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9438 L:      linux-media@vger.kernel.org
9439 W:      http://linuxtv.org
9440 T:      git git://linuxtv.org/media_tree.git
9441 S:      Odd fixes
9442 F:      drivers/media/common/siano/
9443 F:      drivers/media/usb/siano/
9444 F:      drivers/media/usb/siano/
9445 F:      drivers/media/mmc/siano/
9446
9447 SIMPLEFB FB DRIVER
9448 M:      Hans de Goede <hdegoede@redhat.com>
9449 L:      linux-fbdev@vger.kernel.org
9450 S:      Maintained
9451 F:      Documentation/devicetree/bindings/video/simple-framebuffer.txt
9452 F:      drivers/video/fbdev/simplefb.c
9453 F:      include/linux/platform_data/simplefb.h
9454
9455 SH_VEU V4L2 MEM2MEM DRIVER
9456 L:      linux-media@vger.kernel.org
9457 S:      Orphan
9458 F:      drivers/media/platform/sh_veu.c
9459
9460 SH_VOU V4L2 OUTPUT DRIVER
9461 L:      linux-media@vger.kernel.org
9462 S:      Orphan
9463 F:      drivers/media/platform/sh_vou.c
9464 F:      include/media/sh_vou.h
9465
9466 SIMPLE FIRMWARE INTERFACE (SFI)
9467 M:      Len Brown <lenb@kernel.org>
9468 L:      sfi-devel@simplefirmware.org
9469 W:      http://simplefirmware.org/
9470 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
9471 S:      Supported
9472 F:      arch/x86/platform/sfi/
9473 F:      drivers/sfi/
9474 F:      include/linux/sfi*.h
9475
9476 SIMTEC EB110ATX (Chalice CATS)
9477 P:      Ben Dooks
9478 P:      Vincent Sanders <vince@simtec.co.uk>
9479 M:      Simtec Linux Team <linux@simtec.co.uk>
9480 W:      http://www.simtec.co.uk/products/EB110ATX/
9481 S:      Supported
9482
9483 SIMTEC EB2410ITX (BAST)
9484 P:      Ben Dooks
9485 P:      Vincent Sanders <vince@simtec.co.uk>
9486 M:      Simtec Linux Team <linux@simtec.co.uk>
9487 W:      http://www.simtec.co.uk/products/EB2410ITX/
9488 S:      Supported
9489 F:      arch/arm/mach-s3c24xx/mach-bast.c
9490 F:      arch/arm/mach-s3c24xx/bast-ide.c
9491 F:      arch/arm/mach-s3c24xx/bast-irq.c
9492
9493 TI DAVINCI MACHINE SUPPORT
9494 M:      Sekhar Nori <nsekhar@ti.com>
9495 M:      Kevin Hilman <khilman@deeprootsystems.com>
9496 T:      git git://gitorious.org/linux-davinci/linux-davinci.git
9497 Q:      http://patchwork.kernel.org/project/linux-davinci/list/
9498 S:      Supported
9499 F:      arch/arm/mach-davinci/
9500 F:      drivers/i2c/busses/i2c-davinci.c
9501
9502 TI DAVINCI SERIES MEDIA DRIVER
9503 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9504 L:      linux-media@vger.kernel.org
9505 W:      http://linuxtv.org/
9506 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9507 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9508 S:      Maintained
9509 F:      drivers/media/platform/davinci/
9510 F:      include/media/davinci/
9511
9512 TI AM437X VPFE DRIVER
9513 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9514 L:      linux-media@vger.kernel.org
9515 W:      http://linuxtv.org/
9516 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9517 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9518 S:      Maintained
9519 F:      drivers/media/platform/am437x/
9520
9521 OV2659 OMNIVISION SENSOR DRIVER
9522 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9523 L:      linux-media@vger.kernel.org
9524 W:      http://linuxtv.org/
9525 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9526 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9527 S:      Maintained
9528 F:      drivers/media/i2c/ov2659.c
9529 F:      include/media/ov2659.h
9530
9531 SILICON MOTION SM712 FRAME BUFFER DRIVER
9532 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
9533 M:      Teddy Wang <teddy.wang@siliconmotion.com>
9534 M:      Sudip Mukherjee <sudip@vectorindia.org>
9535 L:      linux-fbdev@vger.kernel.org
9536 S:      Maintained
9537 F:      drivers/video/fbdev/sm712*
9538 F:      Documentation/fb/sm712fb.txt
9539
9540 SIS 190 ETHERNET DRIVER
9541 M:      Francois Romieu <romieu@fr.zoreil.com>
9542 L:      netdev@vger.kernel.org
9543 S:      Maintained
9544 F:      drivers/net/ethernet/sis/sis190.c
9545
9546 SIS 900/7016 FAST ETHERNET DRIVER
9547 M:      Daniele Venzano <venza@brownhat.org>
9548 W:      http://www.brownhat.org/sis900.html
9549 L:      netdev@vger.kernel.org
9550 S:      Maintained
9551 F:      drivers/net/ethernet/sis/sis900.*
9552
9553 SIS FRAMEBUFFER DRIVER
9554 M:      Thomas Winischhofer <thomas@winischhofer.net>
9555 W:      http://www.winischhofer.net/linuxsisvga.shtml
9556 S:      Maintained
9557 F:      Documentation/fb/sisfb.txt
9558 F:      drivers/video/fbdev/sis/
9559 F:      include/video/sisfb.h
9560
9561 SIS USB2VGA DRIVER
9562 M:      Thomas Winischhofer <thomas@winischhofer.net>
9563 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
9564 S:      Maintained
9565 F:      drivers/usb/misc/sisusbvga/
9566
9567 SLAB ALLOCATOR
9568 M:      Christoph Lameter <cl@linux.com>
9569 M:      Pekka Enberg <penberg@kernel.org>
9570 M:      David Rientjes <rientjes@google.com>
9571 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
9572 M:      Andrew Morton <akpm@linux-foundation.org>
9573 L:      linux-mm@kvack.org
9574 S:      Maintained
9575 F:      include/linux/sl?b*.h
9576 F:      mm/sl?b*
9577
9578 SLEEPABLE READ-COPY UPDATE (SRCU)
9579 M:      Lai Jiangshan <jiangshanlai@gmail.com>
9580 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9581 M:      Josh Triplett <josh@joshtriplett.org>
9582 R:      Steven Rostedt <rostedt@goodmis.org>
9583 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9584 L:      linux-kernel@vger.kernel.org
9585 W:      http://www.rdrop.com/users/paulmck/RCU/
9586 S:      Supported
9587 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9588 F:      include/linux/srcu.h
9589 F:      kernel/rcu/srcu.c
9590
9591 SMACK SECURITY MODULE
9592 M:      Casey Schaufler <casey@schaufler-ca.com>
9593 L:      linux-security-module@vger.kernel.org
9594 W:      http://schaufler-ca.com
9595 T:      git git://git.gitorious.org/smack-next/kernel.git
9596 S:      Maintained
9597 F:      Documentation/security/Smack.txt
9598 F:      security/smack/
9599
9600 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
9601 M:      Kevin Hilman <khilman@kernel.org>
9602 M:      Nishanth Menon <nm@ti.com>
9603 S:      Maintained
9604 F:      drivers/power/avs/
9605 F:      include/linux/power/smartreflex.h
9606 L:      linux-pm@vger.kernel.org
9607
9608 SMC91x ETHERNET DRIVER
9609 M:      Nicolas Pitre <nico@fluxnic.net>
9610 S:      Odd Fixes
9611 F:      drivers/net/ethernet/smsc/smc91x.*
9612
9613 SMIA AND SMIA++ IMAGE SENSOR DRIVER
9614 M:      Sakari Ailus <sakari.ailus@iki.fi>
9615 L:      linux-media@vger.kernel.org
9616 S:      Maintained
9617 F:      drivers/media/i2c/smiapp/
9618 F:      include/media/smiapp.h
9619 F:      drivers/media/i2c/smiapp-pll.c
9620 F:      drivers/media/i2c/smiapp-pll.h
9621 F:      include/uapi/linux/smiapp.h
9622 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
9623
9624 SMM665 HARDWARE MONITOR DRIVER
9625 M:      Guenter Roeck <linux@roeck-us.net>
9626 L:      lm-sensors@lm-sensors.org
9627 S:      Maintained
9628 F:      Documentation/hwmon/smm665
9629 F:      drivers/hwmon/smm665.c
9630
9631 SMSC EMC2103 HARDWARE MONITOR DRIVER
9632 M:      Steve Glendinning <steve.glendinning@shawell.net>
9633 L:      lm-sensors@lm-sensors.org
9634 S:      Maintained
9635 F:      Documentation/hwmon/emc2103
9636 F:      drivers/hwmon/emc2103.c
9637
9638 SMSC SCH5627 HARDWARE MONITOR DRIVER
9639 M:      Hans de Goede <hdegoede@redhat.com>
9640 L:      lm-sensors@lm-sensors.org
9641 S:      Supported
9642 F:      Documentation/hwmon/sch5627
9643 F:      drivers/hwmon/sch5627.c
9644
9645 SMSC47B397 HARDWARE MONITOR DRIVER
9646 M:      Jean Delvare <jdelvare@suse.com>
9647 L:      lm-sensors@lm-sensors.org
9648 S:      Maintained
9649 F:      Documentation/hwmon/smsc47b397
9650 F:      drivers/hwmon/smsc47b397.c
9651
9652 SMSC911x ETHERNET DRIVER
9653 M:      Steve Glendinning <steve.glendinning@shawell.net>
9654 L:      netdev@vger.kernel.org
9655 S:      Maintained
9656 F:      include/linux/smsc911x.h
9657 F:      drivers/net/ethernet/smsc/smsc911x.*
9658
9659 SMSC9420 PCI ETHERNET DRIVER
9660 M:      Steve Glendinning <steve.glendinning@shawell.net>
9661 L:      netdev@vger.kernel.org
9662 S:      Maintained
9663 F:      drivers/net/ethernet/smsc/smsc9420.*
9664
9665 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
9666 M:      Steve Glendinning <steve.glendinning@shawell.net>
9667 L:      linux-fbdev@vger.kernel.org
9668 S:      Maintained
9669 F:      drivers/video/fbdev/smscufx.c
9670
9671 SOC-CAMERA V4L2 SUBSYSTEM
9672 M:      Guennadi Liakhovetski <g.liakhovetski@gmx.de>
9673 L:      linux-media@vger.kernel.org
9674 T:      git git://linuxtv.org/media_tree.git
9675 S:      Maintained
9676 F:      include/media/soc*
9677 F:      drivers/media/i2c/soc_camera/
9678 F:      drivers/media/platform/soc_camera/
9679
9680 SOEKRIS NET48XX LED SUPPORT
9681 M:      Chris Boot <bootc@bootc.net>
9682 S:      Maintained
9683 F:      drivers/leds/leds-net48xx.c
9684
9685 SOFTLOGIC 6x10 MPEG CODEC
9686 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
9687 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
9688 M:      Andrey Utkin <andrey.krieger.utkin@gmail.com>
9689 M:      Ismael Luceno <ismael@iodev.co.uk>
9690 L:      linux-media@vger.kernel.org
9691 S:      Supported
9692 F:      drivers/media/pci/solo6x10/
9693
9694 SOFTWARE RAID (Multiple Disks) SUPPORT
9695 M:      Neil Brown <neilb@suse.com>
9696 L:      linux-raid@vger.kernel.org
9697 S:      Supported
9698 F:      drivers/md/
9699 F:      include/linux/raid/
9700 F:      include/uapi/linux/raid/
9701
9702 SONIC NETWORK DRIVER
9703 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
9704 L:      netdev@vger.kernel.org
9705 S:      Maintained
9706 F:      drivers/net/ethernet/natsemi/sonic.*
9707
9708 SONICS SILICON BACKPLANE DRIVER (SSB)
9709 M:      Michael Buesch <m@bues.ch>
9710 L:      netdev@vger.kernel.org
9711 S:      Maintained
9712 F:      drivers/ssb/
9713 F:      include/linux/ssb/
9714
9715 SONY VAIO CONTROL DEVICE DRIVER
9716 M:      Mattia Dongili <malattia@linux.it>
9717 L:      platform-driver-x86@vger.kernel.org
9718 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
9719 S:      Maintained
9720 F:      Documentation/laptops/sony-laptop.txt
9721 F:      drivers/char/sonypi.c
9722 F:      drivers/platform/x86/sony-laptop.c
9723 F:      include/linux/sony-laptop.h
9724
9725 SONY MEMORYSTICK CARD SUPPORT
9726 M:      Alex Dubov <oakad@yahoo.com>
9727 W:      http://tifmxx.berlios.de/
9728 S:      Maintained
9729 F:      drivers/memstick/host/tifm_ms.c
9730
9731 SONY MEMORYSTICK STANDARD SUPPORT
9732 M:      Maxim Levitsky <maximlevitsky@gmail.com>
9733 S:      Maintained
9734 F:      drivers/memstick/core/ms_block.*
9735
9736 SOUND
9737 M:      Jaroslav Kysela <perex@perex.cz>
9738 M:      Takashi Iwai <tiwai@suse.com>
9739 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9740 W:      http://www.alsa-project.org/
9741 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
9742 T:      git git://git.alsa-project.org/alsa-kernel.git
9743 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
9744 S:      Maintained
9745 F:      Documentation/sound/
9746 F:      include/sound/
9747 F:      include/uapi/sound/
9748 F:      sound/
9749
9750 SOUND - COMPRESSED AUDIO
9751 M:      Vinod Koul <vinod.koul@intel.com>
9752 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9753 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
9754 S:      Supported
9755 F:      Documentation/sound/alsa/compress_offload.txt
9756 F:      include/sound/compress_driver.h
9757 F:      include/uapi/sound/compress_*
9758 F:      sound/core/compress_offload.c
9759 F:      sound/soc/soc-compress.c
9760
9761 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
9762 M:      Liam Girdwood <lgirdwood@gmail.com>
9763 M:      Mark Brown <broonie@kernel.org>
9764 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
9765 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9766 W:      http://alsa-project.org/main/index.php/ASoC
9767 S:      Supported
9768 F:      Documentation/sound/alsa/soc/
9769 F:      sound/soc/
9770 F:      include/sound/soc*
9771
9772 SOUND - DMAENGINE HELPERS
9773 M:      Lars-Peter Clausen <lars@metafoo.de>
9774 S:      Supported
9775 F:      include/sound/dmaengine_pcm.h
9776 F:      sound/core/pcm_dmaengine.c
9777 F:      sound/soc/soc-generic-dmaengine-pcm.c
9778
9779 SP2 MEDIA DRIVER
9780 M:      Olli Salonen <olli.salonen@iki.fi>
9781 L:      linux-media@vger.kernel.org
9782 W:      http://linuxtv.org/
9783 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9784 S:      Maintained
9785 F:      drivers/media/dvb-frontends/sp2*
9786
9787 SPARC + UltraSPARC (sparc/sparc64)
9788 M:      "David S. Miller" <davem@davemloft.net>
9789 L:      sparclinux@vger.kernel.org
9790 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
9791 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
9792 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
9793 S:      Maintained
9794 F:      arch/sparc/
9795 F:      drivers/sbus/
9796
9797 SPARC SERIAL DRIVERS
9798 M:      "David S. Miller" <davem@davemloft.net>
9799 L:      sparclinux@vger.kernel.org
9800 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
9801 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
9802 S:      Maintained
9803 F:      include/linux/sunserialcore.h
9804 F:      drivers/tty/serial/suncore.c
9805 F:      drivers/tty/serial/sunhv.c
9806 F:      drivers/tty/serial/sunsab.c
9807 F:      drivers/tty/serial/sunsab.h
9808 F:      drivers/tty/serial/sunsu.c
9809 F:      drivers/tty/serial/sunzilog.c
9810 F:      drivers/tty/serial/sunzilog.h
9811
9812 SPARSE CHECKER
9813 M:      "Christopher Li" <sparse@chrisli.org>
9814 L:      linux-sparse@vger.kernel.org
9815 W:      https://sparse.wiki.kernel.org/
9816 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
9817 T:      git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
9818 S:      Maintained
9819 F:      include/linux/compiler.h
9820
9821 SPEAR PLATFORM SUPPORT
9822 M:      Viresh Kumar <vireshk@kernel.org>
9823 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
9824 L:      spear-devel@list.st.com
9825 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9826 W:      http://www.st.com/spear
9827 S:      Maintained
9828 F:      arch/arm/mach-spear/
9829
9830 SPEAR CLOCK FRAMEWORK SUPPORT
9831 M:      Viresh Kumar <vireshk@kernel.org>
9832 L:      spear-devel@list.st.com
9833 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9834 W:      http://www.st.com/spear
9835 S:      Maintained
9836 F:      drivers/clk/spear/
9837
9838 SPI SUBSYSTEM
9839 M:      Mark Brown <broonie@kernel.org>
9840 L:      linux-spi@vger.kernel.org
9841 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
9842 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
9843 S:      Maintained
9844 F:      Documentation/spi/
9845 F:      drivers/spi/
9846 F:      include/linux/spi/
9847 F:      include/uapi/linux/spi/
9848
9849 SPIDERNET NETWORK DRIVER for CELL
9850 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
9851 L:      netdev@vger.kernel.org
9852 S:      Supported
9853 F:      Documentation/networking/spider_net.txt
9854 F:      drivers/net/ethernet/toshiba/spider_net*
9855
9856 SPU FILE SYSTEM
9857 M:      Jeremy Kerr <jk@ozlabs.org>
9858 L:      linuxppc-dev@lists.ozlabs.org
9859 W:      http://www.ibm.com/developerworks/power/cell/
9860 S:      Supported
9861 F:      Documentation/filesystems/spufs.txt
9862 F:      arch/powerpc/platforms/cell/spufs/
9863
9864 SQUASHFS FILE SYSTEM
9865 M:      Phillip Lougher <phillip@squashfs.org.uk>
9866 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
9867 W:      http://squashfs.org.uk
9868 S:      Maintained
9869 F:      Documentation/filesystems/squashfs.txt
9870 F:      fs/squashfs/
9871
9872 SRM (Alpha) environment access
9873 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
9874 S:      Maintained
9875 F:      arch/alpha/kernel/srm_env.c
9876
9877 STABLE BRANCH
9878 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9879 L:      stable@vger.kernel.org
9880 S:      Supported
9881 F:      Documentation/stable_kernel_rules.txt
9882
9883 STAGING SUBSYSTEM
9884 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9885 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
9886 L:      devel@driverdev.osuosl.org
9887 S:      Supported
9888 F:      drivers/staging/
9889
9890 STAGING - COMEDI
9891 M:      Ian Abbott <abbotti@mev.co.uk>
9892 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
9893 S:      Odd Fixes
9894 F:      drivers/staging/comedi/
9895
9896 STAGING - FLARION FT1000 DRIVERS
9897 M:      Marek Belisko <marek.belisko@gmail.com>
9898 S:      Odd Fixes
9899 F:      drivers/staging/ft1000/
9900
9901 STAGING - INDUSTRIAL IO
9902 M:      Jonathan Cameron <jic23@kernel.org>
9903 L:      linux-iio@vger.kernel.org
9904 S:      Odd Fixes
9905 F:      drivers/staging/iio/
9906
9907 STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
9908 M:      Jarod Wilson <jarod@wilsonet.com>
9909 W:      http://www.lirc.org/
9910 S:      Odd Fixes
9911 F:      drivers/staging/media/lirc/
9912
9913 STAGING - LUSTRE PARALLEL FILESYSTEM
9914 M:      Oleg Drokin <oleg.drokin@intel.com>
9915 M:      Andreas Dilger <andreas.dilger@intel.com>
9916 L:      HPDD-discuss@lists.01.org (moderated for non-subscribers)
9917 W:      http://lustre.opensfs.org/
9918 S:      Maintained
9919 F:      drivers/staging/lustre
9920
9921 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
9922 M:      Julian Andres Klode <jak@jak-linux.org>
9923 M:      Marc Dietrich <marvin24@gmx.de>
9924 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
9925 L:      linux-tegra@vger.kernel.org
9926 S:      Maintained
9927 F:      drivers/staging/nvec/
9928
9929 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
9930 M:      Jens Frederich <jfrederich@gmail.com>
9931 M:      Daniel Drake <dsd@laptop.org>
9932 M:      Jon Nettleton <jon.nettleton@gmail.com>
9933 W:      http://wiki.laptop.org/go/DCON
9934 S:      Maintained
9935 F:      drivers/staging/olpc_dcon/
9936
9937 STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
9938 M:      Willy Tarreau <willy@meta-x.org>
9939 S:      Odd Fixes
9940 F:      drivers/staging/panel/
9941
9942 STAGING - REALTEK RTL8712U DRIVERS
9943 M:      Larry Finger <Larry.Finger@lwfinger.net>
9944 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
9945 S:      Odd Fixes
9946 F:      drivers/staging/rtl8712/
9947
9948 STAGING - REALTEK RTL8723U WIRELESS DRIVER
9949 M:      Larry Finger <Larry.Finger@lwfinger.net>
9950 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
9951 L:      linux-wireless@vger.kernel.org
9952 S:      Maintained
9953 F:      drivers/staging/rtl8723au/
9954
9955 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
9956 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
9957 M:      Teddy Wang <teddy.wang@siliconmotion.com>
9958 M:      Sudip Mukherjee <sudip@vectorindia.org>
9959 L:      linux-fbdev@vger.kernel.org
9960 S:      Maintained
9961 F:      drivers/staging/sm750fb/
9962
9963 STAGING - SLICOSS
9964 M:      Lior Dotan <liodot@gmail.com>
9965 M:      Christopher Harrer <charrer@alacritech.com>
9966 S:      Odd Fixes
9967 F:      drivers/staging/slicoss/
9968
9969 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
9970 M:      William Hubbs <w.d.hubbs@gmail.com>
9971 M:      Chris Brannon <chris@the-brannons.com>
9972 M:      Kirk Reiser <kirk@reisers.ca>
9973 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
9974 L:      speakup@linux-speakup.org
9975 W:      http://www.linux-speakup.org/
9976 S:      Odd Fixes
9977 F:      drivers/staging/speakup/
9978
9979 STAGING - VIA VT665X DRIVERS
9980 M:      Forest Bond <forest@alittletooquiet.net>
9981 S:      Odd Fixes
9982 F:      drivers/staging/vt665?/
9983
9984 STAGING - WILC1000 WIFI DRIVER
9985 M:      Johnny Kim <johnny.kim@atmel.com>
9986 M:      Rachel Kim <rachel.kim@atmel.com>
9987 M:      Dean Lee <dean.lee@atmel.com>
9988 M:      Chris Park <chris.park@atmel.com>
9989 L:      linux-wireless@vger.kernel.org
9990 S:      Supported
9991 F:      drivers/staging/wilc1000/
9992
9993 STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
9994 M:      Arnaud Patard <arnaud.patard@rtp-net.org>
9995 S:      Odd Fixes
9996 F:      drivers/staging/xgifb/
9997
9998 HFI1 DRIVER
9999 M:      Mike Marciniszyn <infinipath@intel.com>
10000 L:      linux-rdma@vger.kernel.org
10001 S:      Supported
10002 F:      drivers/staging/rdma/hfi1
10003
10004 STARFIRE/DURALAN NETWORK DRIVER
10005 M:      Ion Badulescu <ionut@badula.org>
10006 S:      Odd Fixes
10007 F:      drivers/net/ethernet/adaptec/starfire*
10008
10009 SUN3/3X
10010 M:      Sam Creasey <sammy@sammy.net>
10011 W:      http://sammy.net/sun3/
10012 S:      Maintained
10013 F:      arch/m68k/kernel/*sun3*
10014 F:      arch/m68k/sun3*/
10015 F:      arch/m68k/include/asm/sun3*
10016 F:      drivers/net/ethernet/i825xx/sun3*
10017
10018 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
10019 M:      Hans de Goede <hdegoede@redhat.com>
10020 L:      linux-input@vger.kernel.org
10021 S:      Maintained
10022 F:      Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
10023 F:      drivers/input/keyboard/sun4i-lradc-keys.c
10024
10025 SUNDANCE NETWORK DRIVER
10026 M:      Denis Kirjanov <kda@linux-powerpc.org>
10027 L:      netdev@vger.kernel.org
10028 S:      Maintained
10029 F:      drivers/net/ethernet/dlink/sundance.c
10030
10031 SUPERH
10032 L:      linux-sh@vger.kernel.org
10033 Q:      http://patchwork.kernel.org/project/linux-sh/list/
10034 S:      Orphan
10035 F:      Documentation/sh/
10036 F:      arch/sh/
10037 F:      drivers/sh/
10038
10039 SUSPEND TO RAM
10040 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
10041 M:      Len Brown <len.brown@intel.com>
10042 M:      Pavel Machek <pavel@ucw.cz>
10043 L:      linux-pm@vger.kernel.org
10044 S:      Supported
10045 F:      Documentation/power/
10046 F:      arch/x86/kernel/acpi/
10047 F:      drivers/base/power/
10048 F:      kernel/power/
10049 F:      include/linux/suspend.h
10050 F:      include/linux/freezer.h
10051 F:      include/linux/pm.h
10052
10053 SVGA HANDLING
10054 M:      Martin Mares <mj@ucw.cz>
10055 L:      linux-video@atrey.karlin.mff.cuni.cz
10056 S:      Maintained
10057 F:      Documentation/svga.txt
10058 F:      arch/x86/boot/video*
10059
10060 SWIOTLB SUBSYSTEM
10061 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10062 L:      linux-kernel@vger.kernel.org
10063 S:      Supported
10064 F:      lib/swiotlb.c
10065 F:      arch/*/kernel/pci-swiotlb.c
10066 F:      include/linux/swiotlb.h
10067
10068 SWITCHDEV
10069 M:      Jiri Pirko <jiri@resnulli.us>
10070 L:      netdev@vger.kernel.org
10071 S:      Supported
10072 F:      net/switchdev/
10073 F:      include/net/switchdev.h
10074
10075 SYNOPSYS ARC ARCHITECTURE
10076 M:      Vineet Gupta <vgupta@synopsys.com>
10077 S:      Supported
10078 F:      arch/arc/
10079 F:      Documentation/devicetree/bindings/arc/*
10080 F:      drivers/tty/serial/arc_uart.c
10081 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
10082
10083 SYNOPSYS ARC SDP platform support
10084 M:      Alexey Brodkin <abrodkin@synopsys.com>
10085 S:      Supported
10086 F:      arch/arc/plat-axs10x
10087 F:      arch/arc/boot/dts/ax*
10088 F:      Documentation/devicetree/bindings/arc/axs10*
10089
10090 SYSTEM CONFIGURATION (SYSCON)
10091 M:      Lee Jones <lee.jones@linaro.org>
10092 M:      Arnd Bergmann <arnd@arndb.de>
10093 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
10094 S:      Supported
10095 F:      drivers/mfd/syscon.c
10096
10097 SYSV FILESYSTEM
10098 M:      Christoph Hellwig <hch@infradead.org>
10099 S:      Maintained
10100 F:      Documentation/filesystems/sysv-fs.txt
10101 F:      fs/sysv/
10102 F:      include/linux/sysv_fs.h
10103
10104 TARGET SUBSYSTEM
10105 M:      "Nicholas A. Bellinger" <nab@linux-iscsi.org>
10106 L:      linux-scsi@vger.kernel.org
10107 L:      target-devel@vger.kernel.org
10108 W:      http://www.linux-iscsi.org
10109 W:      http://groups.google.com/group/linux-iscsi-target-dev
10110 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10111 S:      Supported
10112 F:      drivers/target/
10113 F:      include/target/
10114 F:      Documentation/target/
10115
10116 TASKSTATS STATISTICS INTERFACE
10117 M:      Balbir Singh <bsingharora@gmail.com>
10118 S:      Maintained
10119 F:      Documentation/accounting/taskstats*
10120 F:      include/linux/taskstats*
10121 F:      kernel/taskstats.c
10122
10123 TC CLASSIFIER
10124 M:      Jamal Hadi Salim <jhs@mojatatu.com>
10125 L:      netdev@vger.kernel.org
10126 S:      Maintained
10127 F:      include/net/pkt_cls.h
10128 F:      include/uapi/linux/pkt_cls.h
10129 F:      net/sched/
10130
10131 TCP LOW PRIORITY MODULE
10132 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
10133 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
10134 W:      http://tcp-lp-mod.sourceforge.net/
10135 S:      Maintained
10136 F:      net/ipv4/tcp_lp.c
10137
10138 TDA10071 MEDIA DRIVER
10139 M:      Antti Palosaari <crope@iki.fi>
10140 L:      linux-media@vger.kernel.org
10141 W:      http://linuxtv.org/
10142 W:      http://palosaari.fi/linux/
10143 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10144 T:      git git://linuxtv.org/anttip/media_tree.git
10145 S:      Maintained
10146 F:      drivers/media/dvb-frontends/tda10071*
10147
10148 TDA18212 MEDIA DRIVER
10149 M:      Antti Palosaari <crope@iki.fi>
10150 L:      linux-media@vger.kernel.org
10151 W:      http://linuxtv.org/
10152 W:      http://palosaari.fi/linux/
10153 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10154 T:      git git://linuxtv.org/anttip/media_tree.git
10155 S:      Maintained
10156 F:      drivers/media/tuners/tda18212*
10157
10158 TDA18218 MEDIA DRIVER
10159 M:      Antti Palosaari <crope@iki.fi>
10160 L:      linux-media@vger.kernel.org
10161 W:      http://linuxtv.org/
10162 W:      http://palosaari.fi/linux/
10163 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10164 T:      git git://linuxtv.org/anttip/media_tree.git
10165 S:      Maintained
10166 F:      drivers/media/tuners/tda18218*
10167
10168 TDA18271 MEDIA DRIVER
10169 M:      Michael Krufky <mkrufky@linuxtv.org>
10170 L:      linux-media@vger.kernel.org
10171 W:      http://linuxtv.org/
10172 W:      http://github.com/mkrufky
10173 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10174 T:      git git://linuxtv.org/mkrufky/tuners.git
10175 S:      Maintained
10176 F:      drivers/media/tuners/tda18271*
10177
10178 TDA827x MEDIA DRIVER
10179 M:      Michael Krufky <mkrufky@linuxtv.org>
10180 L:      linux-media@vger.kernel.org
10181 W:      http://linuxtv.org/
10182 W:      http://github.com/mkrufky
10183 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10184 T:      git git://linuxtv.org/mkrufky/tuners.git
10185 S:      Maintained
10186 F:      drivers/media/tuners/tda8290.*
10187
10188 TDA8290 MEDIA DRIVER
10189 M:      Michael Krufky <mkrufky@linuxtv.org>
10190 L:      linux-media@vger.kernel.org
10191 W:      http://linuxtv.org/
10192 W:      http://github.com/mkrufky
10193 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10194 T:      git git://linuxtv.org/mkrufky/tuners.git
10195 S:      Maintained
10196 F:      drivers/media/tuners/tda8290.*
10197
10198 TDA9840 MEDIA DRIVER
10199 M:      Hans Verkuil <hverkuil@xs4all.nl>
10200 L:      linux-media@vger.kernel.org
10201 T:      git git://linuxtv.org/media_tree.git
10202 W:      http://linuxtv.org
10203 S:      Maintained
10204 F:      drivers/media/i2c/tda9840*
10205
10206 TEA5761 TUNER DRIVER
10207 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10208 L:      linux-media@vger.kernel.org
10209 W:      http://linuxtv.org
10210 T:      git git://linuxtv.org/media_tree.git
10211 S:      Odd fixes
10212 F:      drivers/media/tuners/tea5761.*
10213
10214 TEA5767 TUNER DRIVER
10215 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10216 L:      linux-media@vger.kernel.org
10217 W:      http://linuxtv.org
10218 T:      git git://linuxtv.org/media_tree.git
10219 S:      Maintained
10220 F:      drivers/media/tuners/tea5767.*
10221
10222 TEA6415C MEDIA DRIVER
10223 M:      Hans Verkuil <hverkuil@xs4all.nl>
10224 L:      linux-media@vger.kernel.org
10225 T:      git git://linuxtv.org/media_tree.git
10226 W:      http://linuxtv.org
10227 S:      Maintained
10228 F:      drivers/media/i2c/tea6415c*
10229
10230 TEA6420 MEDIA DRIVER
10231 M:      Hans Verkuil <hverkuil@xs4all.nl>
10232 L:      linux-media@vger.kernel.org
10233 T:      git git://linuxtv.org/media_tree.git
10234 W:      http://linuxtv.org
10235 S:      Maintained
10236 F:      drivers/media/i2c/tea6420*
10237
10238 TEAM DRIVER
10239 M:      Jiri Pirko <jiri@resnulli.us>
10240 L:      netdev@vger.kernel.org
10241 S:      Supported
10242 F:      drivers/net/team/
10243 F:      include/linux/if_team.h
10244 F:      include/uapi/linux/if_team.h
10245
10246 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
10247 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
10248 S:      Maintained
10249 F:      arch/x86/platform/ts5500/
10250
10251 TECHNOTREND USB IR RECEIVER
10252 M:      Sean Young <sean@mess.org>
10253 L:      linux-media@vger.kernel.org
10254 S:      Maintained
10255 F:      drivers/media/rc/ttusbir.c
10256
10257 TEGRA ARCHITECTURE SUPPORT
10258 M:      Stephen Warren <swarren@wwwdotorg.org>
10259 M:      Thierry Reding <thierry.reding@gmail.com>
10260 M:      Alexandre Courbot <gnurou@gmail.com>
10261 L:      linux-tegra@vger.kernel.org
10262 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
10263 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
10264 S:      Supported
10265 N:      [^a-z]tegra
10266
10267 TEGRA CLOCK DRIVER
10268 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
10269 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
10270 S:      Supported
10271 F:      drivers/clk/tegra/
10272
10273 TEGRA DMA DRIVER
10274 M:      Laxman Dewangan <ldewangan@nvidia.com>
10275 S:      Supported
10276 F:      drivers/dma/tegra20-apb-dma.c
10277
10278 TEGRA I2C DRIVER
10279 M:      Laxman Dewangan <ldewangan@nvidia.com>
10280 S:      Supported
10281 F:      drivers/i2c/busses/i2c-tegra.c
10282
10283 TEGRA IOMMU DRIVERS
10284 M:      Hiroshi Doyu <hdoyu@nvidia.com>
10285 S:      Supported
10286 F:      drivers/iommu/tegra*
10287
10288 TEGRA KBC DRIVER
10289 M:      Rakesh Iyer <riyer@nvidia.com>
10290 M:      Laxman Dewangan <ldewangan@nvidia.com>
10291 S:      Supported
10292 F:      drivers/input/keyboard/tegra-kbc.c
10293
10294 TEGRA PWM DRIVER
10295 M:      Thierry Reding <thierry.reding@gmail.com>
10296 S:      Supported
10297 F:      drivers/pwm/pwm-tegra.c
10298
10299 TEGRA SERIAL DRIVER
10300 M:      Laxman Dewangan <ldewangan@nvidia.com>
10301 S:      Supported
10302 F:      drivers/tty/serial/serial-tegra.c
10303
10304 TEGRA SPI DRIVER
10305 M:      Laxman Dewangan <ldewangan@nvidia.com>
10306 S:      Supported
10307 F:      drivers/spi/spi-tegra*
10308
10309 TEHUTI ETHERNET DRIVER
10310 M:      Andy Gospodarek <andy@greyhouse.net>
10311 L:      netdev@vger.kernel.org
10312 S:      Supported
10313 F:      drivers/net/ethernet/tehuti/*
10314
10315 Telecom Clock Driver for MCPL0010
10316 M:      Mark Gross <mark.gross@intel.com>
10317 S:      Supported
10318 F:      drivers/char/tlclk.c
10319
10320 TENSILICA XTENSA PORT (xtensa)
10321 M:      Chris Zankel <chris@zankel.net>
10322 M:      Max Filippov <jcmvbkbc@gmail.com>
10323 L:      linux-xtensa@linux-xtensa.org
10324 S:      Maintained
10325 F:      arch/xtensa/
10326 F:      drivers/irqchip/irq-xtensa-*
10327
10328 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
10329 M:      Hans Verkuil <hverkuil@xs4all.nl>
10330 L:      linux-media@vger.kernel.org
10331 T:      git git://linuxtv.org/media_tree.git
10332 W:      http://linuxtv.org
10333 S:      Maintained
10334 F:      drivers/media/radio/radio-raremono.c
10335
10336 THERMAL
10337 M:      Zhang Rui <rui.zhang@intel.com>
10338 M:      Eduardo Valentin <edubezval@gmail.com>
10339 L:      linux-pm@vger.kernel.org
10340 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
10341 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
10342 Q:      https://patchwork.kernel.org/project/linux-pm/list/
10343 S:      Supported
10344 F:      drivers/thermal/
10345 F:      include/linux/thermal.h
10346 F:      include/uapi/linux/thermal.h
10347 F:      include/linux/cpu_cooling.h
10348 F:      Documentation/devicetree/bindings/thermal/
10349
10350 THINGM BLINK(1) USB RGB LED DRIVER
10351 M:      Vivien Didelot <vivien.didelot@savoirfairelinux.com>
10352 S:      Maintained
10353 F:      drivers/hid/hid-thingm.c
10354
10355 THINKPAD ACPI EXTRAS DRIVER
10356 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
10357 L:      ibm-acpi-devel@lists.sourceforge.net
10358 L:      platform-driver-x86@vger.kernel.org
10359 W:      http://ibm-acpi.sourceforge.net
10360 W:      http://thinkwiki.org/wiki/Ibm-acpi
10361 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
10362 S:      Maintained
10363 F:      drivers/platform/x86/thinkpad_acpi.c
10364
10365 TI BANDGAP AND THERMAL DRIVER
10366 M:      Eduardo Valentin <edubezval@gmail.com>
10367 L:      linux-pm@vger.kernel.org
10368 L:      linux-omap@vger.kernel.org
10369 S:      Maintained
10370 F:      drivers/thermal/ti-soc-thermal/
10371
10372 TI CDCE706 CLOCK DRIVER
10373 M:      Max Filippov <jcmvbkbc@gmail.com>
10374 S:      Maintained
10375 F:      drivers/clk/clk-cdce706.c
10376
10377 TI CLOCK DRIVER
10378 M:      Tero Kristo <t-kristo@ti.com>
10379 L:      linux-omap@vger.kernel.org
10380 S:      Maintained
10381 F:      drivers/clk/ti/
10382 F:      include/linux/clk/ti.h
10383
10384 TI FLASH MEDIA INTERFACE DRIVER
10385 M:      Alex Dubov <oakad@yahoo.com>
10386 S:      Maintained
10387 F:      drivers/misc/tifm*
10388 F:      drivers/mmc/host/tifm_sd.c
10389 F:      include/linux/tifm.h
10390
10391 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
10392 M:      Santosh Shilimkar <ssantosh@kernel.org>
10393 L:      linux-kernel@vger.kernel.org
10394 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10395 S:      Maintained
10396 F:      drivers/soc/ti/*
10397 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
10398
10399
10400 TI LM49xxx FAMILY ASoC CODEC DRIVERS
10401 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
10402 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
10403 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10404 S:      Maintained
10405 F:      sound/soc/codecs/lm49453*
10406 F:      sound/soc/codecs/isabelle*
10407
10408 TI LP855x BACKLIGHT DRIVER
10409 M:      Milo Kim <milo.kim@ti.com>
10410 S:      Maintained
10411 F:      Documentation/backlight/lp855x-driver.txt
10412 F:      drivers/video/backlight/lp855x_bl.c
10413 F:      include/linux/platform_data/lp855x.h
10414
10415 TI LP8727 CHARGER DRIVER
10416 M:      Milo Kim <milo.kim@ti.com>
10417 S:      Maintained
10418 F:      drivers/power/lp8727_charger.c
10419 F:      include/linux/platform_data/lp8727.h
10420
10421 TI LP8788 MFD DRIVER
10422 M:      Milo Kim <milo.kim@ti.com>
10423 S:      Maintained
10424 F:      drivers/iio/adc/lp8788_adc.c
10425 F:      drivers/leds/leds-lp8788.c
10426 F:      drivers/mfd/lp8788*.c
10427 F:      drivers/power/lp8788-charger.c
10428 F:      drivers/regulator/lp8788-*.c
10429 F:      include/linux/mfd/lp8788*.h
10430
10431 TI NETCP ETHERNET DRIVER
10432 M:      Wingman Kwok <w-kwok2@ti.com>
10433 M:      Murali Karicheri <m-karicheri2@ti.com>
10434 L:      netdev@vger.kernel.org
10435 S:      Maintained
10436 F:      drivers/net/ethernet/ti/netcp*
10437
10438 TI TAS571X FAMILY ASoC CODEC DRIVER
10439 M:      Kevin Cernekee <cernekee@chromium.org>
10440 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10441 S:      Odd Fixes
10442 F:      sound/soc/codecs/tas571x*
10443
10444 TI TWL4030 SERIES SOC CODEC DRIVER
10445 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
10446 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10447 S:      Maintained
10448 F:      sound/soc/codecs/twl4030*
10449
10450 TI WILINK WIRELESS DRIVERS
10451 L:      linux-wireless@vger.kernel.org
10452 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
10453 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
10454 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
10455 S:      Orphan
10456 F:      drivers/net/wireless/ti/
10457 F:      include/linux/wl12xx.h
10458
10459 TIPC NETWORK LAYER
10460 M:      Jon Maloy <jon.maloy@ericsson.com>
10461 M:      Ying Xue <ying.xue@windriver.com>
10462 L:      netdev@vger.kernel.org (core kernel code)
10463 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
10464 W:      http://tipc.sourceforge.net/
10465 S:      Maintained
10466 F:      include/uapi/linux/tipc*.h
10467 F:      net/tipc/
10468
10469 TILE ARCHITECTURE
10470 M:      Chris Metcalf <cmetcalf@ezchip.com>
10471 W:      http://www.ezchip.com/scm/
10472 S:      Supported
10473 F:      arch/tile/
10474 F:      drivers/char/tile-srom.c
10475 F:      drivers/edac/tile_edac.c
10476 F:      drivers/net/ethernet/tile/
10477 F:      drivers/rtc/rtc-tile.c
10478 F:      drivers/tty/hvc/hvc_tile.c
10479 F:      drivers/tty/serial/tilegx.c
10480 F:      drivers/usb/host/*-tilegx.c
10481 F:      include/linux/usb/tilegx.h
10482
10483 TLAN NETWORK DRIVER
10484 M:      Samuel Chessman <chessman@tux.org>
10485 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
10486 W:      http://sourceforge.net/projects/tlan/
10487 S:      Maintained
10488 F:      Documentation/networking/tlan.txt
10489 F:      drivers/net/ethernet/ti/tlan.*
10490
10491 TOMOYO SECURITY MODULE
10492 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
10493 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
10494 L:      tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
10495 L:      tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
10496 L:      tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
10497 L:      tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
10498 W:      http://tomoyo.sourceforge.jp/
10499 T:      quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
10500 S:      Maintained
10501 F:      security/tomoyo/
10502
10503 TOPSTAR LAPTOP EXTRAS DRIVER
10504 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
10505 L:      platform-driver-x86@vger.kernel.org
10506 S:      Maintained
10507 F:      drivers/platform/x86/topstar-laptop.c
10508
10509 TOSHIBA ACPI EXTRAS DRIVER
10510 M:      Azael Avalos <coproscefalo@gmail.com>
10511 L:      platform-driver-x86@vger.kernel.org
10512 S:      Maintained
10513 F:      drivers/platform/x86/toshiba_acpi.c
10514
10515 TOSHIBA BLUETOOTH DRIVER
10516 M:      Azael Avalos <coproscefalo@gmail.com>
10517 L:      platform-driver-x86@vger.kernel.org
10518 S:      Maintained
10519 F:      drivers/platform/x86/toshiba_bluetooth.c
10520
10521 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
10522 M:      Azael Avalos <coproscefalo@gmail.com>
10523 L:      platform-driver-x86@vger.kernel.org
10524 S:      Maintained
10525 F:      drivers/platform/x86/toshiba_haps.c
10526
10527 TOSHIBA SMM DRIVER
10528 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
10529 W:      http://www.buzzard.org.uk/toshiba/
10530 S:      Maintained
10531 F:      drivers/char/toshiba.c
10532 F:      include/linux/toshiba.h
10533 F:      include/uapi/linux/toshiba.h
10534
10535 TOSHIBA TC358743 DRIVER
10536 M:      Mats Randgaard <matrandg@cisco.com>
10537 L:      linux-media@vger.kernel.org
10538 S:      Maintained
10539 F:      drivers/media/i2c/tc358743*
10540 F:      include/media/tc358743.h
10541
10542 TMIO MMC DRIVER
10543 M:      Ian Molton <ian@mnementh.co.uk>
10544 L:      linux-mmc@vger.kernel.org
10545 S:      Maintained
10546 F:      drivers/mmc/host/tmio_mmc*
10547 F:      drivers/mmc/host/sh_mobile_sdhi.c
10548 F:      include/linux/mmc/tmio.h
10549 F:      include/linux/mmc/sh_mobile_sdhi.h
10550
10551 TMP401 HARDWARE MONITOR DRIVER
10552 M:      Guenter Roeck <linux@roeck-us.net>
10553 L:      lm-sensors@lm-sensors.org
10554 S:      Maintained
10555 F:      Documentation/hwmon/tmp401
10556 F:      drivers/hwmon/tmp401.c
10557
10558 TMPFS (SHMEM FILESYSTEM)
10559 M:      Hugh Dickins <hughd@google.com>
10560 L:      linux-mm@kvack.org
10561 S:      Maintained
10562 F:      include/linux/shmem_fs.h
10563 F:      mm/shmem.c
10564
10565 TM6000 VIDEO4LINUX DRIVER
10566 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10567 L:      linux-media@vger.kernel.org
10568 W:      http://linuxtv.org
10569 T:      git git://linuxtv.org/media_tree.git
10570 S:      Odd fixes
10571 F:      drivers/media/usb/tm6000/
10572
10573 TW68 VIDEO4LINUX DRIVER
10574 M:      Hans Verkuil <hverkuil@xs4all.nl>
10575 L:      linux-media@vger.kernel.org
10576 T:      git git://linuxtv.org/media_tree.git
10577 W:      http://linuxtv.org
10578 S:      Odd Fixes
10579 F:      drivers/media/pci/tw68/
10580
10581 TPM DEVICE DRIVER
10582 M:      Peter Huewe <peterhuewe@gmx.de>
10583 M:      Marcel Selhorst <tpmdd@selhorst.net>
10584 R:      Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
10585 W:      http://tpmdd.sourceforge.net
10586 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
10587 Q:      git git://github.com/PeterHuewe/linux-tpmdd.git
10588 T:      https://github.com/PeterHuewe/linux-tpmdd
10589 S:      Maintained
10590 F:      drivers/char/tpm/
10591
10592 TPM IBM_VTPM DEVICE DRIVER
10593 M:      Ashley Lai <ashleydlai@gmail.com>
10594 W:      http://tpmdd.sourceforge.net
10595 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
10596 S:      Maintained
10597 F:      drivers/char/tpm/tpm_ibmvtpm*
10598
10599 TRACING
10600 M:      Steven Rostedt <rostedt@goodmis.org>
10601 M:      Ingo Molnar <mingo@redhat.com>
10602 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
10603 S:      Maintained
10604 F:      Documentation/trace/ftrace.txt
10605 F:      arch/*/*/*/ftrace.h
10606 F:      arch/*/kernel/ftrace.c
10607 F:      include/*/ftrace.h
10608 F:      include/linux/trace*.h
10609 F:      include/trace/
10610 F:      kernel/trace/
10611 F:      tools/testing/selftests/ftrace/
10612
10613 TRIVIAL PATCHES
10614 M:      Jiri Kosina <trivial@kernel.org>
10615 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
10616 S:      Maintained
10617 K:      ^Subject:.*(?i)trivial
10618
10619 TTY LAYER
10620 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10621 M:      Jiri Slaby <jslaby@suse.com>
10622 S:      Supported
10623 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
10624 F:      Documentation/serial/
10625 F:      drivers/tty/
10626 F:      drivers/tty/serial/serial_core.c
10627 F:      include/linux/serial_core.h
10628 F:      include/linux/serial.h
10629 F:      include/linux/tty.h
10630 F:      include/uapi/linux/serial_core.h
10631 F:      include/uapi/linux/serial.h
10632 F:      include/uapi/linux/tty.h
10633
10634 TUA9001 MEDIA DRIVER
10635 M:      Antti Palosaari <crope@iki.fi>
10636 L:      linux-media@vger.kernel.org
10637 W:      http://linuxtv.org/
10638 W:      http://palosaari.fi/linux/
10639 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10640 T:      git git://linuxtv.org/anttip/media_tree.git
10641 S:      Maintained
10642 F:      drivers/media/tuners/tua9001*
10643
10644 TULIP NETWORK DRIVERS
10645 M:      Grant Grundler <grundler@parisc-linux.org>
10646 L:      netdev@vger.kernel.org
10647 S:      Maintained
10648 F:      drivers/net/ethernet/dec/tulip/
10649
10650 TUN/TAP driver
10651 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
10652 W:      http://vtun.sourceforge.net/tun
10653 S:      Maintained
10654 F:      Documentation/networking/tuntap.txt
10655 F:      arch/um/os-Linux/drivers/
10656
10657 TURBOCHANNEL SUBSYSTEM
10658 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
10659 M:      Ralf Baechle <ralf@linux-mips.org>
10660 L:      linux-mips@linux-mips.org
10661 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
10662 S:      Maintained
10663 F:      drivers/tc/
10664 F:      include/linux/tc.h
10665
10666 U14-34F SCSI DRIVER
10667 M:      Dario Ballabio <ballabio_dario@emc.com>
10668 L:      linux-scsi@vger.kernel.org
10669 S:      Maintained
10670 F:      drivers/scsi/u14-34f.c
10671
10672 UBI FILE SYSTEM (UBIFS)
10673 M:      Artem Bityutskiy <dedekind1@gmail.com>
10674 M:      Adrian Hunter <adrian.hunter@intel.com>
10675 L:      linux-mtd@lists.infradead.org
10676 T:      git git://git.infradead.org/ubifs-2.6.git
10677 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
10678 S:      Maintained
10679 F:      Documentation/filesystems/ubifs.txt
10680 F:      fs/ubifs/
10681
10682 UCLINUX (M68KNOMMU AND COLDFIRE)
10683 M:      Greg Ungerer <gerg@uclinux.org>
10684 W:      http://www.uclinux.org/
10685 L:      linux-m68k@lists.linux-m68k.org
10686 L:      uclinux-dev@uclinux.org  (subscribers-only)
10687 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
10688 S:      Maintained
10689 F:      arch/m68k/coldfire/
10690 F:      arch/m68k/68*/
10691 F:      arch/m68k/*/*_no.*
10692 F:      arch/m68k/include/asm/*_no.*
10693
10694 UDF FILESYSTEM
10695 M:      Jan Kara <jack@suse.com>
10696 S:      Maintained
10697 F:      Documentation/filesystems/udf.txt
10698 F:      fs/udf/
10699
10700 UFS FILESYSTEM
10701 M:      Evgeniy Dushistov <dushistov@mail.ru>
10702 S:      Maintained
10703 F:      Documentation/filesystems/ufs.txt
10704 F:      fs/ufs/
10705
10706 UHID USERSPACE HID IO DRIVER:
10707 M:      David Herrmann <dh.herrmann@googlemail.com>
10708 L:      linux-input@vger.kernel.org
10709 S:      Maintained
10710 F:      drivers/hid/uhid.c
10711 F:      include/uapi/linux/uhid.h
10712
10713 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
10714 L:      linux-usb@vger.kernel.org
10715 S:      Orphan
10716 F:      drivers/uwb/
10717 F:      include/linux/uwb.h
10718 F:      include/linux/uwb/
10719
10720 UNICORE32 ARCHITECTURE:
10721 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
10722 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
10723 S:      Maintained
10724 T:      git git://github.com/gxt/linux.git
10725 F:      arch/unicore32/
10726
10727 UNIFDEF
10728 M:      Tony Finch <dot@dotat.at>
10729 W:      http://dotat.at/prog/unifdef
10730 S:      Maintained
10731 F:      scripts/unifdef.c
10732
10733 UNIFORM CDROM DRIVER
10734 M:      Jens Axboe <axboe@kernel.dk>
10735 W:      http://www.kernel.dk
10736 S:      Maintained
10737 F:      Documentation/cdrom/
10738 F:      drivers/cdrom/cdrom.c
10739 F:      include/linux/cdrom.h
10740 F:      include/uapi/linux/cdrom.h
10741
10742 UNISYS S-PAR DRIVERS
10743 M:      Benjamin Romer <benjamin.romer@unisys.com>
10744 M:      David Kershner <david.kershner@unisys.com>
10745 L:      sparmaintainer@unisys.com (Unisys internal)
10746 S:      Supported
10747 F:      drivers/staging/unisys/
10748
10749 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
10750 M:      Vinayak Holikatti <vinholikatti@gmail.com>
10751 L:      linux-scsi@vger.kernel.org
10752 S:      Supported
10753 F:      Documentation/scsi/ufs.txt
10754 F:      drivers/scsi/ufs/
10755
10756 UNSORTED BLOCK IMAGES (UBI)
10757 M:      Artem Bityutskiy <dedekind1@gmail.com>
10758 M:      Richard Weinberger <richard@nod.at>
10759 W:      http://www.linux-mtd.infradead.org/
10760 L:      linux-mtd@lists.infradead.org
10761 T:      git git://git.infradead.org/ubifs-2.6.git
10762 S:      Supported
10763 F:      drivers/mtd/ubi/
10764 F:      include/linux/mtd/ubi.h
10765 F:      include/uapi/mtd/ubi-user.h
10766
10767 USB ACM DRIVER
10768 M:      Oliver Neukum <oliver@neukum.org>
10769 L:      linux-usb@vger.kernel.org
10770 S:      Maintained
10771 F:      Documentation/usb/acm.txt
10772 F:      drivers/usb/class/cdc-acm.*
10773
10774 USB AR5523 WIRELESS DRIVER
10775 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
10776 L:      linux-wireless@vger.kernel.org
10777 S:      Maintained
10778 F:      drivers/net/wireless/ath/ar5523/
10779
10780 USB ATTACHED SCSI
10781 M:      Hans de Goede <hdegoede@redhat.com>
10782 M:      Gerd Hoffmann <kraxel@redhat.com>
10783 L:      linux-usb@vger.kernel.org
10784 L:      linux-scsi@vger.kernel.org
10785 S:      Maintained
10786 F:      drivers/usb/storage/uas.c
10787
10788 USB CDC ETHERNET DRIVER
10789 M:      Oliver Neukum <oliver@neukum.org>
10790 L:      linux-usb@vger.kernel.org
10791 S:      Maintained
10792 F:      drivers/net/usb/cdc_*.c
10793 F:      include/uapi/linux/usb/cdc.h
10794
10795 USB CHAOSKEY DRIVER
10796 M:      Keith Packard <keithp@keithp.com>
10797 L:      linux-usb@vger.kernel.org
10798 S:      Maintained
10799 F:      drivers/usb/misc/chaoskey.c
10800
10801 USB CYPRESS C67X00 DRIVER
10802 M:      Peter Korsgaard <jacmet@sunsite.dk>
10803 L:      linux-usb@vger.kernel.org
10804 S:      Maintained
10805 F:      drivers/usb/c67x00/
10806
10807 USB DAVICOM DM9601 DRIVER
10808 M:      Peter Korsgaard <jacmet@sunsite.dk>
10809 L:      netdev@vger.kernel.org
10810 W:      http://www.linux-usb.org/usbnet
10811 S:      Maintained
10812 F:      drivers/net/usb/dm9601.c
10813
10814 USB DIAMOND RIO500 DRIVER
10815 M:      Cesar Miquel <miquel@df.uba.ar>
10816 L:      rio500-users@lists.sourceforge.net
10817 W:      http://rio500.sourceforge.net
10818 S:      Maintained
10819 F:      drivers/usb/misc/rio500*
10820
10821 USB EHCI DRIVER
10822 M:      Alan Stern <stern@rowland.harvard.edu>
10823 L:      linux-usb@vger.kernel.org
10824 S:      Maintained
10825 F:      Documentation/usb/ehci.txt
10826 F:      drivers/usb/host/ehci*
10827
10828 USB GADGET/PERIPHERAL SUBSYSTEM
10829 M:      Felipe Balbi <balbi@ti.com>
10830 L:      linux-usb@vger.kernel.org
10831 W:      http://www.linux-usb.org/gadget
10832 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
10833 S:      Maintained
10834 F:      drivers/usb/gadget/
10835 F:      include/linux/usb/gadget*
10836
10837 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
10838 M:      Jiri Kosina <jikos@kernel.org>
10839 L:      linux-usb@vger.kernel.org
10840 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
10841 S:      Maintained
10842 F:      Documentation/hid/hiddev.txt
10843 F:      drivers/hid/usbhid/
10844
10845 USB ISP116X DRIVER
10846 M:      Olav Kongas <ok@artecdesign.ee>
10847 L:      linux-usb@vger.kernel.org
10848 S:      Maintained
10849 F:      drivers/usb/host/isp116x*
10850 F:      include/linux/usb/isp116x.h
10851
10852 USB MASS STORAGE DRIVER
10853 M:      Matthew Dharm <mdharm-usb@one-eyed-alien.net>
10854 L:      linux-usb@vger.kernel.org
10855 L:      usb-storage@lists.one-eyed-alien.net
10856 S:      Maintained
10857 W:      http://www.one-eyed-alien.net/~mdharm/linux-usb/
10858 F:      drivers/usb/storage/
10859
10860 USB MIDI DRIVER
10861 M:      Clemens Ladisch <clemens@ladisch.de>
10862 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10863 T:      git git://git.alsa-project.org/alsa-kernel.git
10864 S:      Maintained
10865 F:      sound/usb/midi.*
10866
10867 USB NETWORKING DRIVERS
10868 L:      linux-usb@vger.kernel.org
10869 S:      Odd Fixes
10870 F:      drivers/net/usb/
10871
10872 USB OHCI DRIVER
10873 M:      Alan Stern <stern@rowland.harvard.edu>
10874 L:      linux-usb@vger.kernel.org
10875 S:      Maintained
10876 F:      Documentation/usb/ohci.txt
10877 F:      drivers/usb/host/ohci*
10878
10879 USB OTG FSM (Finite State Machine)
10880 M:      Peter Chen <Peter.Chen@freescale.com>
10881 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
10882 L:      linux-usb@vger.kernel.org
10883 S:      Maintained
10884 F:      drivers/usb/common/usb-otg-fsm.c
10885
10886 USB OVER IP DRIVER
10887 M:      Valentina Manea <valentina.manea.m@gmail.com>
10888 M:      Shuah Khan <shuah.kh@samsung.com>
10889 L:      linux-usb@vger.kernel.org
10890 S:      Maintained
10891 F:      drivers/usb/usbip/
10892 F:      tools/usb/usbip/
10893
10894 USB PEGASUS DRIVER
10895 M:      Petko Manolov <petkan@nucleusys.com>
10896 L:      linux-usb@vger.kernel.org
10897 L:      netdev@vger.kernel.org
10898 T:      git git://github.com/petkan/pegasus.git
10899 W:      https://github.com/petkan/pegasus
10900 S:      Maintained
10901 F:      drivers/net/usb/pegasus.*
10902
10903 USB PHY LAYER
10904 M:      Felipe Balbi <balbi@ti.com>
10905 L:      linux-usb@vger.kernel.org
10906 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
10907 S:      Maintained
10908 F:      drivers/usb/phy/
10909
10910 USB PRINTER DRIVER (usblp)
10911 M:      Pete Zaitcev <zaitcev@redhat.com>
10912 L:      linux-usb@vger.kernel.org
10913 S:      Supported
10914 F:      drivers/usb/class/usblp.c
10915
10916 USB RTL8150 DRIVER
10917 M:      Petko Manolov <petkan@nucleusys.com>
10918 L:      linux-usb@vger.kernel.org
10919 L:      netdev@vger.kernel.org
10920 T:      git git://github.com/petkan/rtl8150.git
10921 W:      https://github.com/petkan/rtl8150
10922 S:      Maintained
10923 F:      drivers/net/usb/rtl8150.c
10924
10925 USB SERIAL SUBSYSTEM
10926 M:      Johan Hovold <johan@kernel.org>
10927 L:      linux-usb@vger.kernel.org
10928 S:      Maintained
10929 F:      Documentation/usb/usb-serial.txt
10930 F:      drivers/usb/serial/
10931 F:      include/linux/usb/serial.h
10932
10933 USB SMSC75XX ETHERNET DRIVER
10934 M:      Steve Glendinning <steve.glendinning@shawell.net>
10935 L:      netdev@vger.kernel.org
10936 S:      Maintained
10937 F:      drivers/net/usb/smsc75xx.*
10938
10939 USB SMSC95XX ETHERNET DRIVER
10940 M:      Steve Glendinning <steve.glendinning@shawell.net>
10941 L:      netdev@vger.kernel.org
10942 S:      Maintained
10943 F:      drivers/net/usb/smsc95xx.*
10944
10945 USB SUBSYSTEM
10946 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10947 L:      linux-usb@vger.kernel.org
10948 W:      http://www.linux-usb.org
10949 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
10950 S:      Supported
10951 F:      Documentation/usb/
10952 F:      drivers/usb/
10953 F:      include/linux/usb.h
10954 F:      include/linux/usb/
10955
10956 USB UHCI DRIVER
10957 M:      Alan Stern <stern@rowland.harvard.edu>
10958 L:      linux-usb@vger.kernel.org
10959 S:      Maintained
10960 F:      drivers/usb/host/uhci*
10961
10962 USB "USBNET" DRIVER FRAMEWORK
10963 M:      Oliver Neukum <oneukum@suse.com>
10964 L:      netdev@vger.kernel.org
10965 W:      http://www.linux-usb.org/usbnet
10966 S:      Maintained
10967 F:      drivers/net/usb/usbnet.c
10968 F:      include/linux/usb/usbnet.h
10969
10970 USB VIDEO CLASS
10971 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10972 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
10973 L:      linux-media@vger.kernel.org
10974 T:      git git://linuxtv.org/media_tree.git
10975 W:      http://www.ideasonboard.org/uvc/
10976 S:      Maintained
10977 F:      drivers/media/usb/uvc/
10978 F:      include/uapi/linux/uvcvideo.h
10979
10980 USB VISION DRIVER
10981 M:      Hans Verkuil <hverkuil@xs4all.nl>
10982 L:      linux-media@vger.kernel.org
10983 T:      git git://linuxtv.org/media_tree.git
10984 W:      http://linuxtv.org
10985 S:      Odd Fixes
10986 F:      drivers/media/usb/usbvision/
10987
10988 USB WEBCAM GADGET
10989 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10990 L:      linux-usb@vger.kernel.org
10991 S:      Maintained
10992 F:      drivers/usb/gadget/function/*uvc*
10993 F:      drivers/usb/gadget/legacy/webcam.c
10994
10995 USB WIRELESS RNDIS DRIVER (rndis_wlan)
10996 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
10997 L:      linux-wireless@vger.kernel.org
10998 S:      Maintained
10999 F:      drivers/net/wireless/rndis_wlan.c
11000
11001 USB XHCI DRIVER
11002 M:      Mathias Nyman <mathias.nyman@intel.com>
11003 L:      linux-usb@vger.kernel.org
11004 S:      Supported
11005 F:      drivers/usb/host/xhci*
11006 F:      drivers/usb/host/pci-quirks*
11007
11008 USB ZD1201 DRIVER
11009 L:      linux-wireless@vger.kernel.org
11010 W:      http://linux-lc100020.sourceforge.net
11011 S:      Orphan
11012 F:      drivers/net/wireless/zd1201.*
11013
11014 USB ZR364XX DRIVER
11015 M:      Antoine Jacquet <royale@zerezo.com>
11016 L:      linux-usb@vger.kernel.org
11017 L:      linux-media@vger.kernel.org
11018 T:      git git://linuxtv.org/media_tree.git
11019 W:      http://royale.zerezo.com/zr364xx/
11020 S:      Maintained
11021 F:      Documentation/video4linux/zr364xx.txt
11022 F:      drivers/media/usb/zr364xx/
11023
11024 ULPI BUS
11025 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
11026 L:      linux-usb@vger.kernel.org
11027 S:      Maintained
11028 F:      drivers/usb/common/ulpi.c
11029 F:      include/linux/ulpi/
11030
11031 USER-MODE LINUX (UML)
11032 M:      Jeff Dike <jdike@addtoit.com>
11033 M:      Richard Weinberger <richard@nod.at>
11034 L:      user-mode-linux-devel@lists.sourceforge.net
11035 L:      user-mode-linux-user@lists.sourceforge.net
11036 W:      http://user-mode-linux.sourceforge.net
11037 S:      Maintained
11038 F:      Documentation/virtual/uml/
11039 F:      arch/um/
11040 F:      arch/x86/um/
11041 F:      fs/hostfs/
11042 F:      fs/hppfs/
11043
11044 USERSPACE I/O (UIO)
11045 M:      "Hans J. Koch" <hjk@hansjkoch.de>
11046 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11047 S:      Maintained
11048 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
11049 F:      Documentation/DocBook/uio-howto.tmpl
11050 F:      drivers/uio/
11051 F:      include/linux/uio*.h
11052
11053 UTIL-LINUX PACKAGE
11054 M:      Karel Zak <kzak@redhat.com>
11055 L:      util-linux@vger.kernel.org
11056 W:      http://en.wikipedia.org/wiki/Util-linux
11057 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
11058 S:      Maintained
11059
11060 UVESAFB DRIVER
11061 M:      Michal Januszewski <spock@gentoo.org>
11062 L:      linux-fbdev@vger.kernel.org
11063 W:      http://dev.gentoo.org/~spock/projects/uvesafb/
11064 S:      Maintained
11065 F:      Documentation/fb/uvesafb.txt
11066 F:      drivers/video/fbdev/uvesafb.*
11067
11068 VFAT/FAT/MSDOS FILESYSTEM
11069 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
11070 S:      Maintained
11071 F:      Documentation/filesystems/vfat.txt
11072 F:      fs/fat/
11073
11074 VFIO DRIVER
11075 M:      Alex Williamson <alex.williamson@redhat.com>
11076 L:      kvm@vger.kernel.org
11077 S:      Maintained
11078 F:      Documentation/vfio.txt
11079 F:      drivers/vfio/
11080 F:      include/linux/vfio.h
11081 F:      include/uapi/linux/vfio.h
11082
11083 VFIO PLATFORM DRIVER
11084 M:      Baptiste Reynal <b.reynal@virtualopensystems.com>
11085 L:      kvm@vger.kernel.org
11086 S:      Maintained
11087 F:      drivers/vfio/platform/
11088
11089 VIDEOBUF2 FRAMEWORK
11090 M:      Pawel Osciak <pawel@osciak.com>
11091 M:      Marek Szyprowski <m.szyprowski@samsung.com>
11092 M:      Kyungmin Park <kyungmin.park@samsung.com>
11093 L:      linux-media@vger.kernel.org
11094 S:      Maintained
11095 F:      drivers/media/v4l2-core/videobuf2-*
11096 F:      include/media/videobuf2-*
11097
11098 VIRTIO CONSOLE DRIVER
11099 M:      Amit Shah <amit.shah@redhat.com>
11100 L:      virtualization@lists.linux-foundation.org
11101 S:      Maintained
11102 F:      drivers/char/virtio_console.c
11103 F:      include/linux/virtio_console.h
11104 F:      include/uapi/linux/virtio_console.h
11105
11106 VIRTIO CORE, NET AND BLOCK DRIVERS
11107 M:      "Michael S. Tsirkin" <mst@redhat.com>
11108 L:      virtualization@lists.linux-foundation.org
11109 S:      Maintained
11110 F:      drivers/virtio/
11111 F:      tools/virtio/
11112 F:      drivers/net/virtio_net.c
11113 F:      drivers/block/virtio_blk.c
11114 F:      include/linux/virtio_*.h
11115 F:      include/uapi/linux/virtio_*.h
11116
11117 VIRTIO DRIVERS FOR S390
11118 M:      Christian Borntraeger <borntraeger@de.ibm.com>
11119 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
11120 L:      linux-s390@vger.kernel.org
11121 L:      virtualization@lists.linux-foundation.org
11122 L:      kvm@vger.kernel.org
11123 S:      Supported
11124 F:      drivers/s390/virtio/
11125
11126 VIRTIO GPU DRIVER
11127 M:      David Airlie <airlied@linux.ie>
11128 M:      Gerd Hoffmann <kraxel@redhat.com>
11129 L:      dri-devel@lists.freedesktop.org
11130 L:      virtualization@lists.linux-foundation.org
11131 S:      Maintained
11132 F:      drivers/gpu/drm/virtio/
11133 F:      include/uapi/linux/virtio_gpu.h
11134
11135 VIRTIO HOST (VHOST)
11136 M:      "Michael S. Tsirkin" <mst@redhat.com>
11137 L:      kvm@vger.kernel.org
11138 L:      virtualization@lists.linux-foundation.org
11139 L:      netdev@vger.kernel.org
11140 S:      Maintained
11141 F:      drivers/vhost/
11142 F:      include/uapi/linux/vhost.h
11143
11144 VIRTIO INPUT DRIVER
11145 M:      Gerd Hoffmann <kraxel@redhat.com>
11146 S:      Maintained
11147 F:      drivers/virtio/virtio_input.c
11148 F:      include/uapi/linux/virtio_input.h
11149
11150 VIA RHINE NETWORK DRIVER
11151 S:      Orphan
11152 F:      drivers/net/ethernet/via/via-rhine.c
11153
11154 VIA SD/MMC CARD CONTROLLER DRIVER
11155 M:      Bruce Chang <brucechang@via.com.tw>
11156 M:      Harald Welte <HaraldWelte@viatech.com>
11157 S:      Maintained
11158 F:      drivers/mmc/host/via-sdmmc.c
11159
11160 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
11161 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
11162 L:      linux-fbdev@vger.kernel.org
11163 S:      Maintained
11164 F:      include/linux/via-core.h
11165 F:      include/linux/via-gpio.h
11166 F:      include/linux/via_i2c.h
11167 F:      drivers/video/fbdev/via/
11168
11169 VIA VELOCITY NETWORK DRIVER
11170 M:      Francois Romieu <romieu@fr.zoreil.com>
11171 L:      netdev@vger.kernel.org
11172 S:      Maintained
11173 F:      drivers/net/ethernet/via/via-velocity.*
11174
11175 VIVID VIRTUAL VIDEO DRIVER
11176 M:      Hans Verkuil <hverkuil@xs4all.nl>
11177 L:      linux-media@vger.kernel.org
11178 T:      git git://linuxtv.org/media_tree.git
11179 W:      http://linuxtv.org
11180 S:      Maintained
11181 F:      drivers/media/platform/vivid/*
11182
11183 VLAN (802.1Q)
11184 M:      Patrick McHardy <kaber@trash.net>
11185 L:      netdev@vger.kernel.org
11186 S:      Maintained
11187 F:      drivers/net/macvlan.c
11188 F:      include/linux/if_*vlan.h
11189 F:      net/8021q/
11190
11191 VLYNQ BUS
11192 M:      Florian Fainelli <florian@openwrt.org>
11193 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
11194 S:      Maintained
11195 F:      drivers/vlynq/vlynq.c
11196 F:      include/linux/vlynq.h
11197
11198 VME SUBSYSTEM
11199 M:      Martyn Welch <martyn.welch@ge.com>
11200 M:      Manohar Vanga <manohar.vanga@gmail.com>
11201 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11202 L:      devel@driverdev.osuosl.org
11203 S:      Maintained
11204 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
11205 F:      Documentation/vme_api.txt
11206 F:      drivers/staging/vme/
11207 F:      drivers/vme/
11208 F:      include/linux/vme*
11209
11210 VMWARE HYPERVISOR INTERFACE
11211 M:      Alok Kataria <akataria@vmware.com>
11212 L:      virtualization@lists.linux-foundation.org
11213 S:      Supported
11214 F:      arch/x86/kernel/cpu/vmware.c
11215
11216 VMWARE BALLOON DRIVER
11217 M:      Xavier Deguillard <xdeguillard@vmware.com>
11218 M:      Philip Moltmann <moltmann@vmware.com>
11219 M:      "VMware, Inc." <pv-drivers@vmware.com>
11220 L:      linux-kernel@vger.kernel.org
11221 S:      Maintained
11222 F:      drivers/misc/vmw_balloon.c
11223
11224 VMWARE VMMOUSE SUBDRIVER
11225 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
11226 M:      "VMware, Inc." <pv-drivers@vmware.com>
11227 L:      linux-input@vger.kernel.org
11228 S:      Maintained
11229 F:      drivers/input/mouse/vmmouse.c
11230 F:      drivers/input/mouse/vmmouse.h
11231
11232 VMWARE VMXNET3 ETHERNET DRIVER
11233 M:      Shrikrishna Khare <skhare@vmware.com>
11234 M:      "VMware, Inc." <pv-drivers@vmware.com>
11235 L:      netdev@vger.kernel.org
11236 S:      Maintained
11237 F:      drivers/net/vmxnet3/
11238
11239 VMware PVSCSI driver
11240 M:      Arvind Kumar <arvindkumar@vmware.com>
11241 M:      VMware PV-Drivers <pv-drivers@vmware.com>
11242 L:      linux-scsi@vger.kernel.org
11243 S:      Maintained
11244 F:      drivers/scsi/vmw_pvscsi.c
11245 F:      drivers/scsi/vmw_pvscsi.h
11246
11247 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
11248 M:      Liam Girdwood <lgirdwood@gmail.com>
11249 M:      Mark Brown <broonie@kernel.org>
11250 L:      linux-kernel@vger.kernel.org
11251 W:      http://opensource.wolfsonmicro.com/node/15
11252 W:      http://www.slimlogic.co.uk/?p=48
11253 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
11254 S:      Supported
11255 F:      drivers/regulator/
11256 F:      include/linux/regulator/
11257
11258 VRF
11259 M:      David Ahern <dsa@cumulusnetworks.com>
11260 M:      Shrijeet Mukherjee <shm@cumulusnetworks.com>
11261 L:      netdev@vger.kernel.org
11262 S:      Maintained
11263 F:      drivers/net/vrf.c
11264 F:      include/net/vrf.h
11265
11266 VT1211 HARDWARE MONITOR DRIVER
11267 M:      Juerg Haefliger <juergh@gmail.com>
11268 L:      lm-sensors@lm-sensors.org
11269 S:      Maintained
11270 F:      Documentation/hwmon/vt1211
11271 F:      drivers/hwmon/vt1211.c
11272
11273 VT8231 HARDWARE MONITOR DRIVER
11274 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
11275 L:      lm-sensors@lm-sensors.org
11276 S:      Maintained
11277 F:      drivers/hwmon/vt8231.c
11278
11279 VUB300 USB to SDIO/SD/MMC bridge chip
11280 M:      Tony Olech <tony.olech@elandigitalsystems.com>
11281 L:      linux-mmc@vger.kernel.org
11282 L:      linux-usb@vger.kernel.org
11283 S:      Supported
11284 F:      drivers/mmc/host/vub300.c
11285
11286 W1 DALLAS'S 1-WIRE BUS
11287 M:      Evgeniy Polyakov <zbr@ioremap.net>
11288 S:      Maintained
11289 F:      Documentation/w1/
11290 F:      drivers/w1/
11291
11292 W83791D HARDWARE MONITORING DRIVER
11293 M:      Marc Hulsman <m.hulsman@tudelft.nl>
11294 L:      lm-sensors@lm-sensors.org
11295 S:      Maintained
11296 F:      Documentation/hwmon/w83791d
11297 F:      drivers/hwmon/w83791d.c
11298
11299 W83793 HARDWARE MONITORING DRIVER
11300 M:      Rudolf Marek <r.marek@assembler.cz>
11301 L:      lm-sensors@lm-sensors.org
11302 S:      Maintained
11303 F:      Documentation/hwmon/w83793
11304 F:      drivers/hwmon/w83793.c
11305
11306 W83795 HARDWARE MONITORING DRIVER
11307 M:      Jean Delvare <jdelvare@suse.com>
11308 L:      lm-sensors@lm-sensors.org
11309 S:      Maintained
11310 F:      drivers/hwmon/w83795.c
11311
11312 W83L51xD SD/MMC CARD INTERFACE DRIVER
11313 M:      Pierre Ossman <pierre@ossman.eu>
11314 S:      Maintained
11315 F:      drivers/mmc/host/wbsd.*
11316
11317 WACOM PROTOCOL 4 SERIAL TABLETS
11318 M:      Julian Squires <julian@cipht.net>
11319 M:      Hans de Goede <hdegoede@redhat.com>
11320 L:      linux-input@vger.kernel.org
11321 S:      Maintained
11322 F:      drivers/input/tablet/wacom_serial4.c
11323
11324 WATCHDOG DEVICE DRIVERS
11325 M:      Wim Van Sebroeck <wim@iguana.be>
11326 L:      linux-watchdog@vger.kernel.org
11327 W:      http://www.linux-watchdog.org/
11328 T:      git git://www.linux-watchdog.org/linux-watchdog.git
11329 S:      Maintained
11330 F:      Documentation/watchdog/
11331 F:      drivers/watchdog/
11332 F:      include/linux/watchdog.h
11333 F:      include/uapi/linux/watchdog.h
11334
11335 WD7000 SCSI DRIVER
11336 M:      Miroslav Zagorac <zaga@fly.cc.fer.hr>
11337 L:      linux-scsi@vger.kernel.org
11338 S:      Maintained
11339 F:      drivers/scsi/wd7000.c
11340
11341 WIIMOTE HID DRIVER
11342 M:      David Herrmann <dh.herrmann@googlemail.com>
11343 L:      linux-input@vger.kernel.org
11344 S:      Maintained
11345 F:      drivers/hid/hid-wiimote*
11346
11347 WINBOND CIR DRIVER
11348 M:      David Härdeman <david@hardeman.nu>
11349 S:      Maintained
11350 F:      drivers/media/rc/winbond-cir.c
11351
11352 WIMAX STACK
11353 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
11354 M:      linux-wimax@intel.com
11355 L:      wimax@linuxwimax.org (subscribers-only)
11356 S:      Supported
11357 W:      http://linuxwimax.org
11358 F:      Documentation/wimax/README.wimax
11359 F:      include/linux/wimax/debug.h
11360 F:      include/net/wimax.h
11361 F:      include/uapi/linux/wimax.h
11362 F:      net/wimax/
11363
11364 WISTRON LAPTOP BUTTON DRIVER
11365 M:      Miloslav Trmac <mitr@volny.cz>
11366 S:      Maintained
11367 F:      drivers/input/misc/wistron_btns.c
11368
11369 WL3501 WIRELESS PCMCIA CARD DRIVER
11370 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
11371 L:      linux-wireless@vger.kernel.org
11372 W:      http://oops.ghostprotocols.net:81/blog
11373 S:      Maintained
11374 F:      drivers/net/wireless/wl3501*
11375
11376 WM97XX TOUCHSCREEN DRIVERS
11377 M:      Mark Brown <broonie@kernel.org>
11378 M:      Liam Girdwood <lrg@slimlogic.co.uk>
11379 L:      linux-input@vger.kernel.org
11380 T:      git git://opensource.wolfsonmicro.com/linux-2.6-touch
11381 W:      http://opensource.wolfsonmicro.com/node/7
11382 S:      Supported
11383 F:      drivers/input/touchscreen/*wm97*
11384 F:      include/linux/wm97xx.h
11385
11386 WOLFSON MICROELECTRONICS DRIVERS
11387 L:      patches@opensource.wolfsonmicro.com
11388 T:      git git://opensource.wolfsonmicro.com/linux-2.6-asoc
11389 T:      git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
11390 W:      http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
11391 S:      Supported
11392 F:      Documentation/hwmon/wm83??
11393 F:      arch/arm/mach-s3c64xx/mach-crag6410*
11394 F:      drivers/clk/clk-wm83*.c
11395 F:      drivers/extcon/extcon-arizona.c
11396 F:      drivers/leds/leds-wm83*.c
11397 F:      drivers/gpio/gpio-*wm*.c
11398 F:      drivers/gpio/gpio-arizona.c
11399 F:      drivers/hwmon/wm83??-hwmon.c
11400 F:      drivers/input/misc/wm831x-on.c
11401 F:      drivers/input/touchscreen/wm831x-ts.c
11402 F:      drivers/input/touchscreen/wm97*.c
11403 F:      drivers/mfd/arizona*
11404 F:      drivers/mfd/wm*.c
11405 F:      drivers/power/wm83*.c
11406 F:      drivers/rtc/rtc-wm83*.c
11407 F:      drivers/regulator/wm8*.c
11408 F:      drivers/video/backlight/wm83*_bl.c
11409 F:      drivers/watchdog/wm83*_wdt.c
11410 F:      include/linux/mfd/arizona/
11411 F:      include/linux/mfd/wm831x/
11412 F:      include/linux/mfd/wm8350/
11413 F:      include/linux/mfd/wm8400*
11414 F:      include/linux/wm97xx.h
11415 F:      include/sound/wm????.h
11416 F:      sound/soc/codecs/arizona.?
11417 F:      sound/soc/codecs/wm*
11418
11419 WORKQUEUE
11420 M:      Tejun Heo <tj@kernel.org>
11421 R:      Lai Jiangshan <jiangshanlai@gmail.com>
11422 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
11423 S:      Maintained
11424 F:      include/linux/workqueue.h
11425 F:      kernel/workqueue.c
11426 F:      Documentation/workqueue.txt
11427
11428 X.25 NETWORK LAYER
11429 M:      Andrew Hendry <andrew.hendry@gmail.com>
11430 L:      linux-x25@vger.kernel.org
11431 S:      Odd Fixes
11432 F:      Documentation/networking/x25*
11433 F:      include/net/x25*
11434 F:      net/x25/
11435
11436 X86 ARCHITECTURE (32-BIT AND 64-BIT)
11437 M:      Thomas Gleixner <tglx@linutronix.de>
11438 M:      Ingo Molnar <mingo@redhat.com>
11439 M:      "H. Peter Anvin" <hpa@zytor.com>
11440 M:      x86@kernel.org
11441 L:      linux-kernel@vger.kernel.org
11442 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
11443 S:      Maintained
11444 F:      Documentation/x86/
11445 F:      arch/x86/
11446
11447 X86 PLATFORM DRIVERS
11448 M:      Darren Hart <dvhart@infradead.org>
11449 L:      platform-driver-x86@vger.kernel.org
11450 T:      git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git
11451 S:      Maintained
11452 F:      drivers/platform/x86/
11453
11454 X86 MCE INFRASTRUCTURE
11455 M:      Tony Luck <tony.luck@intel.com>
11456 M:      Borislav Petkov <bp@alien8.de>
11457 L:      linux-edac@vger.kernel.org
11458 S:      Maintained
11459 F:      arch/x86/kernel/cpu/mcheck/*
11460
11461 X86 VDSO
11462 M:      Andy Lutomirski <luto@amacapital.net>
11463 L:      linux-kernel@vger.kernel.org
11464 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
11465 S:      Maintained
11466 F:      arch/x86/entry/vdso/
11467
11468 XC2028/3028 TUNER DRIVER
11469 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
11470 L:      linux-media@vger.kernel.org
11471 W:      http://linuxtv.org
11472 T:      git git://linuxtv.org/media_tree.git
11473 S:      Maintained
11474 F:      drivers/media/tuners/tuner-xc2028.*
11475
11476 XEN HYPERVISOR INTERFACE
11477 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11478 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
11479 M:      David Vrabel <david.vrabel@citrix.com>
11480 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11481 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
11482 S:      Supported
11483 F:      arch/x86/xen/
11484 F:      drivers/*/xen-*front.c
11485 F:      drivers/xen/
11486 F:      arch/x86/include/asm/xen/
11487 F:      include/xen/
11488 F:      include/uapi/xen/
11489
11490 XEN HYPERVISOR ARM
11491 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
11492 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11493 S:      Supported
11494 F:      arch/arm/xen/
11495 F:      arch/arm/include/asm/xen/
11496
11497 XEN HYPERVISOR ARM64
11498 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
11499 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11500 S:      Supported
11501 F:      arch/arm64/xen/
11502 F:      arch/arm64/include/asm/xen/
11503
11504 XEN NETWORK BACKEND DRIVER
11505 M:      Ian Campbell <ian.campbell@citrix.com>
11506 M:      Wei Liu <wei.liu2@citrix.com>
11507 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11508 L:      netdev@vger.kernel.org
11509 S:      Supported
11510 F:      drivers/net/xen-netback/*
11511
11512 XEN PCI SUBSYSTEM
11513 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11514 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11515 S:      Supported
11516 F:      arch/x86/pci/*xen*
11517 F:      drivers/pci/*xen*
11518
11519 XEN BLOCK SUBSYSTEM
11520 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11521 M:      Roger Pau MonnĂ© <roger.pau@citrix.com>
11522 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11523 S:      Supported
11524 F:      drivers/block/xen-blkback/*
11525 F:      drivers/block/xen*
11526
11527 XEN PVSCSI DRIVERS
11528 M:      Juergen Gross <jgross@suse.com>
11529 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11530 L:      linux-scsi@vger.kernel.org
11531 S:      Supported
11532 F:      drivers/scsi/xen-scsifront.c
11533 F:      drivers/xen/xen-scsiback.c
11534 F:      include/xen/interface/io/vscsiif.h
11535
11536 XEN SWIOTLB SUBSYSTEM
11537 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11538 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11539 S:      Supported
11540 F:      arch/x86/xen/*swiotlb*
11541 F:      drivers/xen/*swiotlb*
11542
11543 XFS FILESYSTEM
11544 P:      Silicon Graphics Inc
11545 M:      Dave Chinner <david@fromorbit.com>
11546 M:      xfs@oss.sgi.com
11547 L:      xfs@oss.sgi.com
11548 W:      http://oss.sgi.com/projects/xfs
11549 T:      git git://oss.sgi.com/xfs/xfs.git
11550 S:      Supported
11551 F:      Documentation/filesystems/xfs.txt
11552 F:      fs/xfs/
11553
11554 XILINX AXI ETHERNET DRIVER
11555 M:      Anirudha Sarangi <anirudh@xilinx.com>
11556 M:      John Linn <John.Linn@xilinx.com>
11557 S:      Maintained
11558 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
11559
11560 XILINX UARTLITE SERIAL DRIVER
11561 M:      Peter Korsgaard <jacmet@sunsite.dk>
11562 L:      linux-serial@vger.kernel.org
11563 S:      Maintained
11564 F:      drivers/tty/serial/uartlite.c
11565
11566 XILINX VIDEO IP CORES
11567 M:      Hyun Kwon <hyun.kwon@xilinx.com>
11568 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11569 L:      linux-media@vger.kernel.org
11570 T:      git git://linuxtv.org/media_tree.git
11571 S:      Supported
11572 F:      Documentation/devicetree/bindings/media/xilinx/
11573 F:      drivers/media/platform/xilinx/
11574 F:      include/uapi/linux/xilinx-v4l2-controls.h
11575
11576 XILLYBUS DRIVER
11577 M:      Eli Billauer <eli.billauer@gmail.com>
11578 L:      linux-kernel@vger.kernel.org
11579 S:      Supported
11580 F:      drivers/char/xillybus/
11581
11582 XTENSA XTFPGA PLATFORM SUPPORT
11583 M:      Max Filippov <jcmvbkbc@gmail.com>
11584 L:      linux-xtensa@linux-xtensa.org
11585 S:      Maintained
11586 F:      drivers/spi/spi-xtensa-xtfpga.c
11587 F:      sound/soc/xtensa/xtfpga-i2s.c
11588
11589 YAM DRIVER FOR AX.25
11590 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
11591 L:      linux-hams@vger.kernel.org
11592 S:      Maintained
11593 F:      drivers/net/hamradio/yam*
11594 F:      include/linux/yam.h
11595
11596 YEALINK PHONE DRIVER
11597 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
11598 L:      usbb2k-api-dev@nongnu.org
11599 S:      Maintained
11600 F:      Documentation/input/yealink.txt
11601 F:      drivers/input/misc/yealink.*
11602
11603 Z8530 DRIVER FOR AX.25
11604 M:      Joerg Reuter <jreuter@yaina.de>
11605 W:      http://yaina.de/jreuter/
11606 W:      http://www.qsl.net/dl1bke/
11607 L:      linux-hams@vger.kernel.org
11608 S:      Maintained
11609 F:      Documentation/networking/z8530drv.txt
11610 F:      drivers/net/hamradio/*scc.c
11611 F:      drivers/net/hamradio/z8530.h
11612
11613 ZBUD COMPRESSED PAGE ALLOCATOR
11614 M:      Seth Jennings <sjennings@variantweb.net>
11615 L:      linux-mm@kvack.org
11616 S:      Maintained
11617 F:      mm/zbud.c
11618 F:      include/linux/zbud.h
11619
11620 ZD1211RW WIRELESS DRIVER
11621 M:      Daniel Drake <dsd@gentoo.org>
11622 M:      Ulrich Kunitz <kune@deine-taler.de>
11623 W:      http://zd1211.ath.cx/wiki/DriverRewrite
11624 L:      linux-wireless@vger.kernel.org
11625 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
11626 S:      Maintained
11627 F:      drivers/net/wireless/zd1211rw/
11628
11629 ZPOOL COMPRESSED PAGE STORAGE API
11630 M:      Dan Streetman <ddstreet@ieee.org>
11631 L:      linux-mm@kvack.org
11632 S:      Maintained
11633 F:      mm/zpool.c
11634 F:      include/linux/zpool.h
11635
11636 ZR36067 VIDEO FOR LINUX DRIVER
11637 L:      mjpeg-users@lists.sourceforge.net
11638 L:      linux-media@vger.kernel.org
11639 W:      http://mjpeg.sourceforge.net/driver-zoran/
11640 T:      hg http://linuxtv.org/hg/v4l-dvb
11641 S:      Odd Fixes
11642 F:      drivers/media/pci/zoran/
11643
11644 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
11645 M:      Minchan Kim <minchan@kernel.org>
11646 M:      Nitin Gupta <ngupta@vflare.org>
11647 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
11648 L:      linux-kernel@vger.kernel.org
11649 S:      Maintained
11650 F:      drivers/block/zram/
11651 F:      Documentation/blockdev/zram.txt
11652
11653 ZS DECSTATION Z85C30 SERIAL DRIVER
11654 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
11655 S:      Maintained
11656 F:      drivers/tty/serial/zs.*
11657
11658 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
11659 M:      Minchan Kim <minchan@kernel.org>
11660 M:      Nitin Gupta <ngupta@vflare.org>
11661 L:      linux-mm@kvack.org
11662 S:      Maintained
11663 F:      mm/zsmalloc.c
11664 F:      include/linux/zsmalloc.h
11665 F:      Documentation/vm/zsmalloc.txt
11666
11667 ZSWAP COMPRESSED SWAP CACHING
11668 M:      Seth Jennings <sjennings@variantweb.net>
11669 L:      linux-mm@kvack.org
11670 S:      Maintained
11671 F:      mm/zswap.c
11672
11673 THE REST
11674 M:      Linus Torvalds <torvalds@linux-foundation.org>
11675 L:      linux-kernel@vger.kernel.org
11676 Q:      http://patchwork.kernel.org/project/LKML/list/
11677 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
11678 S:      Buried alive in reporters
11679 F:      *
11680 F:      */