0d9d6b1a9424d4516bb15bebfebd9d74c8013488
[firefly-linux-kernel-4.4.55.git] / MAINTAINERS
1
2
3         List of maintainers and how to submit kernel changes
4
5 Please try to follow the guidelines below.  This will make things
6 easier on the maintainers.  Not all of these guidelines matter for every
7 trivial patch so apply some common sense.
8
9 1.      Always _test_ your changes, however small, on at least 4 or
10         5 people, preferably many more.
11
12 2.      Try to release a few ALPHA test versions to the net. Announce
13         them onto the kernel channel and await results. This is especially
14         important for device drivers, because often that's the only way
15         you will find things like the fact version 3 firmware needs
16         a magic fix you didn't know about, or some clown changed the
17         chips on a board and not its name.  (Don't laugh!  Look at the
18         SMC etherpower for that.)
19
20 3.      Make sure your changes compile correctly in multiple
21         configurations. In particular check that changes work both as a
22         module and built into the kernel.
23
24 4.      When you are happy with a change make it generally available for
25         testing and await feedback.
26
27 5.      Make a patch available to the relevant maintainer in the list. Use
28         'diff -u' to make the patch easy to merge. Be prepared to get your
29         changes sent back with seemingly silly requests about formatting
30         and variable names.  These aren't as silly as they seem. One
31         job the maintainers (and especially Linus) do is to keep things
32         looking the same. Sometimes this means that the clever hack in
33         your driver to get around a problem actually needs to become a
34         generalized kernel feature ready for next time.
35
36         PLEASE check your patch with the automated style checker
37         (scripts/checkpatch.pl) to catch trivial style violations.
38         See Documentation/CodingStyle for guidance here.
39
40         PLEASE CC: the maintainers and mailing lists that are generated
41         by scripts/get_maintainer.pl.  The results returned by the
42         script will be best if you have git installed and are making
43         your changes in a branch derived from Linus' latest git tree.
44         See Documentation/SubmittingPatches for details.
45
46         PLEASE try to include any credit lines you want added with the
47         patch. It avoids people being missed off by mistake and makes
48         it easier to know who wants adding and who doesn't.
49
50         PLEASE document known bugs. If it doesn't work for everything
51         or does something very odd once a month document it.
52
53         PLEASE remember that submissions must be made under the terms
54         of the Linux Foundation certificate of contribution and should
55         include a Signed-off-by: line.  The current version of this
56         "Developer's Certificate of Origin" (DCO) is listed in the file
57         Documentation/SubmittingPatches.
58
59 6.      Make sure you have the right to send any changes you make. If you
60         do changes at work you may find your employer owns the patch
61         not you.
62
63 7.      When sending security related changes or reports to a maintainer
64         please Cc: security@kernel.org, especially if the maintainer
65         does not respond.
66
67 8.      Happy hacking.
68
69 Descriptions of section entries:
70
71         P: Person (obsolete)
72         M: Mail patches to: FullName <address@domain>
73         R: Designated reviewer: FullName <address@domain>
74            These reviewers should be CCed on patches.
75         L: Mailing list that is relevant to this area
76         W: Web-page with status/info
77         Q: Patchwork web based patch tracking system site
78         T: SCM tree type and location.
79            Type is one of: git, hg, quilt, stgit, topgit
80         S: Status, one of the following:
81            Supported:   Someone is actually paid to look after this.
82            Maintained:  Someone actually looks after it.
83            Odd Fixes:   It has a maintainer but they don't have time to do
84                         much other than throw the odd patch in. See below..
85            Orphan:      No current maintainer [but maybe you could take the
86                         role as you write your new code].
87            Obsolete:    Old code. Something tagged obsolete generally means
88                         it has been replaced by a better system and you
89                         should be using that.
90         F: Files and directories with wildcard patterns.
91            A trailing slash includes all files and subdirectory files.
92            F:   drivers/net/    all files in and below drivers/net
93            F:   drivers/net/*   all files in drivers/net, but not below
94            F:   */net/*         all files in "any top level directory"/net
95            One pattern per line.  Multiple F: lines acceptable.
96         N: Files and directories with regex patterns.
97            N:   [^a-z]tegra     all files whose path contains the word tegra
98            One pattern per line.  Multiple N: lines acceptable.
99            scripts/get_maintainer.pl has different behavior for files that
100            match F: pattern and matches of N: patterns.  By default,
101            get_maintainer will not look at git log history when an F: pattern
102            match occurs.  When an N: match occurs, git log history is used
103            to also notify the people that have git commit signatures.
104         X: Files and directories that are NOT maintained, same rules as F:
105            Files exclusions are tested before file matches.
106            Can be useful for excluding a specific subdirectory, for instance:
107            F:   net/
108            X:   net/ipv6/
109            matches all files in and below net excluding net/ipv6/
110         K: Keyword perl extended regex pattern to match content in a
111            patch or file.  For instance:
112            K: of_get_profile
113               matches patches or files that contain "of_get_profile"
114            K: \b(printk|pr_(info|err))\b
115               matches patches or files that contain one or more of the words
116               printk, pr_info or pr_err
117            One regex pattern per line.  Multiple K: lines acceptable.
118
119 Note: For the hard of thinking, this list is meant to remain in alphabetical
120 order. If you could add yourselves to it in alphabetical order that would be
121 so much easier [Ed]
122
123 Maintainers List (try to look for most precise areas first)
124
125                 -----------------------------------
126
127 3C59X NETWORK DRIVER
128 M:      Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
129 L:      netdev@vger.kernel.org
130 S:      Maintained
131 F:      Documentation/networking/vortex.txt
132 F:      drivers/net/ethernet/3com/3c59x.c
133
134 3CR990 NETWORK DRIVER
135 M:      David Dillow <dave@thedillows.org>
136 L:      netdev@vger.kernel.org
137 S:      Maintained
138 F:      drivers/net/ethernet/3com/typhoon*
139
140 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
141 M:      Adam Radford <linuxraid@lsi.com>
142 L:      linux-scsi@vger.kernel.org
143 W:      http://www.lsi.com
144 S:      Supported
145 F:      drivers/scsi/3w-*
146
147 53C700 AND 53C700-66 SCSI DRIVER
148 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
149 L:      linux-scsi@vger.kernel.org
150 S:      Maintained
151 F:      drivers/scsi/53c700*
152
153 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
154 M:      Alexander Aring <alex.aring@gmail.com>
155 M:      Jukka Rissanen <jukka.rissanen@linux.intel.com>
156 L:      linux-bluetooth@vger.kernel.org
157 L:      linux-wpan@vger.kernel.org
158 S:      Maintained
159 F:      net/6lowpan/
160 F:      include/net/6lowpan.h
161 F:      Documentation/networking/6lowpan.txt
162
163 6PACK NETWORK DRIVER FOR AX.25
164 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
165 L:      linux-hams@vger.kernel.org
166 S:      Maintained
167 F:      drivers/net/hamradio/6pack.c
168
169 8169 10/100/1000 GIGABIT ETHERNET DRIVER
170 M:      Realtek linux nic maintainers <nic_swsd@realtek.com>
171 L:      netdev@vger.kernel.org
172 S:      Maintained
173 F:      drivers/net/ethernet/realtek/r8169.c
174
175 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
176 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
177 L:      linux-serial@vger.kernel.org
178 W:      http://serial.sourceforge.net
179 S:      Maintained
180 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
181 F:      drivers/tty/serial/8250*
182 F:      include/linux/serial_8250.h
183
184 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
185 L:      netdev@vger.kernel.org
186 S:      Orphan / Obsolete
187 F:      drivers/net/ethernet/8390/
188
189 9P FILE SYSTEM
190 M:      Eric Van Hensbergen <ericvh@gmail.com>
191 M:      Ron Minnich <rminnich@sandia.gov>
192 M:      Latchesar Ionkov <lucho@ionkov.net>
193 L:      v9fs-developer@lists.sourceforge.net
194 W:      http://swik.net/v9fs
195 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
196 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
197 S:      Maintained
198 F:      Documentation/filesystems/9p.txt
199 F:      fs/9p/
200 F:      net/9p/
201 F:      include/net/9p/
202 F:      include/uapi/linux/virtio_9p.h
203 F:      include/trace/events/9p.h
204
205
206 A8293 MEDIA DRIVER
207 M:      Antti Palosaari <crope@iki.fi>
208 L:      linux-media@vger.kernel.org
209 W:      http://linuxtv.org/
210 W:      http://palosaari.fi/linux/
211 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
212 T:      git git://linuxtv.org/anttip/media_tree.git
213 S:      Maintained
214 F:      drivers/media/dvb-frontends/a8293*
215
216 AACRAID SCSI RAID DRIVER
217 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
218 L:      linux-scsi@vger.kernel.org
219 W:      http://www.adaptec.com/
220 S:      Supported
221 F:      Documentation/scsi/aacraid.txt
222 F:      drivers/scsi/aacraid/
223
224 ABI/API
225 L:      linux-api@vger.kernel.org
226 F:      Documentation/ABI/
227 F:      include/linux/syscalls.h
228 F:      include/uapi/
229 F:      kernel/sys_ni.c
230
231 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
232 M:      Hans de Goede <hdegoede@redhat.com>
233 L:      lm-sensors@lm-sensors.org
234 S:      Maintained
235 F:      drivers/hwmon/abituguru.c
236
237 ABIT UGURU 3 HARDWARE MONITOR DRIVER
238 M:      Alistair John Strachan <alistair@devzero.co.uk>
239 L:      lm-sensors@lm-sensors.org
240 S:      Maintained
241 F:      drivers/hwmon/abituguru3.c
242
243 ACENIC DRIVER
244 M:      Jes Sorensen <jes@trained-monkey.org>
245 L:      linux-acenic@sunsite.dk
246 S:      Maintained
247 F:      drivers/net/ethernet/alteon/acenic*
248
249 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
250 M:      Peter Feuerer <peter@piie.net>
251 L:      platform-driver-x86@vger.kernel.org
252 W:      http://piie.net/?section=acerhdf
253 S:      Maintained
254 F:      drivers/platform/x86/acerhdf.c
255
256 ACER WMI LAPTOP EXTRAS
257 M:      "Lee, Chun-Yi" <jlee@suse.com>
258 L:      platform-driver-x86@vger.kernel.org
259 S:      Maintained
260 F:      drivers/platform/x86/acer-wmi.c
261
262 ACPI
263 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
264 M:      Len Brown <lenb@kernel.org>
265 L:      linux-acpi@vger.kernel.org
266 W:      https://01.org/linux-acpi
267 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
268 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
269 S:      Supported
270 F:      drivers/acpi/
271 F:      drivers/pnp/pnpacpi/
272 F:      include/linux/acpi.h
273 F:      include/acpi/
274 F:      Documentation/acpi/
275 F:      Documentation/ABI/testing/sysfs-bus-acpi
276 F:      drivers/pci/*acpi*
277 F:      drivers/pci/*/*acpi*
278 F:      drivers/pci/*/*/*acpi*
279 F:      tools/power/acpi/
280
281 ACPI COMPONENT ARCHITECTURE (ACPICA)
282 M:      Robert Moore <robert.moore@intel.com>
283 M:      Lv Zheng <lv.zheng@intel.com>
284 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
285 L:      linux-acpi@vger.kernel.org
286 L:      devel@acpica.org
287 W:      https://acpica.org/
288 W:      https://github.com/acpica/acpica/
289 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
290 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
291 S:      Supported
292 F:      drivers/acpi/acpica/
293 F:      include/acpi/
294 F:      tools/power/acpi/
295
296 ACPI FAN DRIVER
297 M:      Zhang Rui <rui.zhang@intel.com>
298 L:      linux-acpi@vger.kernel.org
299 W:      https://01.org/linux-acpi
300 S:      Supported
301 F:      drivers/acpi/fan.c
302
303 ACPI THERMAL DRIVER
304 M:      Zhang Rui <rui.zhang@intel.com>
305 L:      linux-acpi@vger.kernel.org
306 W:      https://01.org/linux-acpi
307 S:      Supported
308 F:      drivers/acpi/*thermal*
309
310 ACPI VIDEO DRIVER
311 M:      Zhang Rui <rui.zhang@intel.com>
312 L:      linux-acpi@vger.kernel.org
313 W:      https://01.org/linux-acpi
314 S:      Supported
315 F:      drivers/acpi/video.c
316
317 ACPI WMI DRIVER
318 L:      platform-driver-x86@vger.kernel.org
319 S:      Orphan
320 F:      drivers/platform/x86/wmi.c
321
322 AD1889 ALSA SOUND DRIVER
323 M:      Thibaut Varene <T-Bone@parisc-linux.org>
324 W:      http://wiki.parisc-linux.org/AD1889
325 L:      linux-parisc@vger.kernel.org
326 S:      Maintained
327 F:      sound/pci/ad1889.*
328
329 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
330 M:      Michael Hennerich <michael.hennerich@analog.com>
331 W:      http://wiki.analog.com/AD5254
332 W:      http://ez.analog.com/community/linux-device-drivers
333 S:      Supported
334 F:      drivers/misc/ad525x_dpot.c
335
336 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
337 M:      Michael Hennerich <michael.hennerich@analog.com>
338 W:      http://wiki.analog.com/AD5398
339 W:      http://ez.analog.com/community/linux-device-drivers
340 S:      Supported
341 F:      drivers/regulator/ad5398.c
342
343 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
344 M:      Michael Hennerich <michael.hennerich@analog.com>
345 W:      http://wiki.analog.com/AD7142
346 W:      http://ez.analog.com/community/linux-device-drivers
347 S:      Supported
348 F:      drivers/input/misc/ad714x.c
349
350 AD7877 TOUCHSCREEN DRIVER
351 M:      Michael Hennerich <michael.hennerich@analog.com>
352 W:      http://wiki.analog.com/AD7877
353 W:      http://ez.analog.com/community/linux-device-drivers
354 S:      Supported
355 F:      drivers/input/touchscreen/ad7877.c
356
357 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
358 M:      Michael Hennerich <michael.hennerich@analog.com>
359 W:      http://wiki.analog.com/AD7879
360 W:      http://ez.analog.com/community/linux-device-drivers
361 S:      Supported
362 F:      drivers/input/touchscreen/ad7879.c
363
364 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
365 M:      Jiri Kosina <jikos@kernel.org>
366 S:      Maintained
367
368 ADM1025 HARDWARE MONITOR DRIVER
369 M:      Jean Delvare <jdelvare@suse.com>
370 L:      lm-sensors@lm-sensors.org
371 S:      Maintained
372 F:      Documentation/hwmon/adm1025
373 F:      drivers/hwmon/adm1025.c
374
375 ADM1029 HARDWARE MONITOR DRIVER
376 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
377 L:      lm-sensors@lm-sensors.org
378 S:      Maintained
379 F:      drivers/hwmon/adm1029.c
380
381 ADM8211 WIRELESS DRIVER
382 L:      linux-wireless@vger.kernel.org
383 W:      http://wireless.kernel.org/
384 S:      Orphan
385 F:      drivers/net/wireless/adm8211.*
386
387 ADP1653 FLASH CONTROLLER DRIVER
388 M:      Sakari Ailus <sakari.ailus@iki.fi>
389 L:      linux-media@vger.kernel.org
390 S:      Maintained
391 F:      drivers/media/i2c/adp1653.c
392 F:      include/media/adp1653.h
393
394 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
395 M:      Michael Hennerich <michael.hennerich@analog.com>
396 W:      http://wiki.analog.com/ADP5520
397 W:      http://ez.analog.com/community/linux-device-drivers
398 S:      Supported
399 F:      drivers/mfd/adp5520.c
400 F:      drivers/video/backlight/adp5520_bl.c
401 F:      drivers/leds/leds-adp5520.c
402 F:      drivers/gpio/gpio-adp5520.c
403 F:      drivers/input/keyboard/adp5520-keys.c
404
405 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
406 M:      Michael Hennerich <michael.hennerich@analog.com>
407 W:      http://wiki.analog.com/ADP5588
408 W:      http://ez.analog.com/community/linux-device-drivers
409 S:      Supported
410 F:      drivers/input/keyboard/adp5588-keys.c
411 F:      drivers/gpio/gpio-adp5588.c
412
413 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
414 M:      Michael Hennerich <michael.hennerich@analog.com>
415 W:      http://wiki.analog.com/ADP8860
416 W:      http://ez.analog.com/community/linux-device-drivers
417 S:      Supported
418 F:      drivers/video/backlight/adp8860_bl.c
419
420 ADS1015 HARDWARE MONITOR DRIVER
421 M:      Dirk Eibach <eibach@gdsys.de>
422 L:      lm-sensors@lm-sensors.org
423 S:      Maintained
424 F:      Documentation/hwmon/ads1015
425 F:      drivers/hwmon/ads1015.c
426 F:      include/linux/i2c/ads1015.h
427
428 ADT746X FAN DRIVER
429 M:      Colin Leroy <colin@colino.net>
430 S:      Maintained
431 F:      drivers/macintosh/therm_adt746x.c
432
433 ADT7475 HARDWARE MONITOR DRIVER
434 M:      Jean Delvare <jdelvare@suse.com>
435 L:      lm-sensors@lm-sensors.org
436 S:      Maintained
437 F:      Documentation/hwmon/adt7475
438 F:      drivers/hwmon/adt7475.c
439
440 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
441 M:      Michael Hennerich <michael.hennerich@analog.com>
442 W:      http://wiki.analog.com/ADXL345
443 W:      http://ez.analog.com/community/linux-device-drivers
444 S:      Supported
445 F:      drivers/input/misc/adxl34x.c
446
447 ADVANSYS SCSI DRIVER
448 M:      Matthew Wilcox <matthew@wil.cx>
449 M:      Hannes Reinecke <hare@suse.com>
450 L:      linux-scsi@vger.kernel.org
451 S:      Maintained
452 F:      Documentation/scsi/advansys.txt
453 F:      drivers/scsi/advansys.c
454
455 AEDSP16 DRIVER
456 M:      Riccardo Facchetti <fizban@tin.it>
457 S:      Maintained
458 F:      sound/oss/aedsp16.c
459
460 AF9013 MEDIA DRIVER
461 M:      Antti Palosaari <crope@iki.fi>
462 L:      linux-media@vger.kernel.org
463 W:      http://linuxtv.org/
464 W:      http://palosaari.fi/linux/
465 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
466 T:      git git://linuxtv.org/anttip/media_tree.git
467 S:      Maintained
468 F:      drivers/media/dvb-frontends/af9013*
469
470 AF9033 MEDIA DRIVER
471 M:      Antti Palosaari <crope@iki.fi>
472 L:      linux-media@vger.kernel.org
473 W:      http://linuxtv.org/
474 W:      http://palosaari.fi/linux/
475 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
476 T:      git git://linuxtv.org/anttip/media_tree.git
477 S:      Maintained
478 F:      drivers/media/dvb-frontends/af9033*
479
480 AFFS FILE SYSTEM
481 L:      linux-fsdevel@vger.kernel.org
482 S:      Orphan
483 F:      Documentation/filesystems/affs.txt
484 F:      fs/affs/
485
486 AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
487 M:      David Howells <dhowells@redhat.com>
488 L:      linux-afs@lists.infradead.org
489 S:      Supported
490 F:      fs/afs/
491 F:      include/net/af_rxrpc.h
492 F:      net/rxrpc/af_rxrpc.c
493
494 AGPGART DRIVER
495 M:      David Airlie <airlied@linux.ie>
496 T:      git git://people.freedesktop.org/~airlied/linux (part of drm maint)
497 S:      Maintained
498 F:      drivers/char/agp/
499 F:      include/linux/agp*
500 F:      include/uapi/linux/agp*
501
502 AHA152X SCSI DRIVER
503 M:      "Juergen E. Fischer" <fischer@norbit.de>
504 L:      linux-scsi@vger.kernel.org
505 S:      Maintained
506 F:      drivers/scsi/aha152x*
507 F:      drivers/scsi/pcmcia/aha152x*
508
509 AIC7XXX / AIC79XX SCSI DRIVER
510 M:      Hannes Reinecke <hare@suse.com>
511 L:      linux-scsi@vger.kernel.org
512 S:      Maintained
513 F:      drivers/scsi/aic7xxx/
514
515 AIMSLAB FM RADIO RECEIVER DRIVER
516 M:      Hans Verkuil <hverkuil@xs4all.nl>
517 L:      linux-media@vger.kernel.org
518 T:      git git://linuxtv.org/media_tree.git
519 W:      http://linuxtv.org
520 S:      Maintained
521 F:      drivers/media/radio/radio-aimslab*
522
523 AIO
524 M:      Benjamin LaHaise <bcrl@kvack.org>
525 L:      linux-aio@kvack.org
526 S:      Supported
527 F:      fs/aio.c
528 F:      include/linux/*aio*.h
529
530 AIRSPY MEDIA DRIVER
531 M:      Antti Palosaari <crope@iki.fi>
532 L:      linux-media@vger.kernel.org
533 W:      http://linuxtv.org/
534 W:      http://palosaari.fi/linux/
535 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
536 T:      git git://linuxtv.org/anttip/media_tree.git
537 S:      Maintained
538 F:      drivers/media/usb/airspy/
539
540 ALCATEL SPEEDTOUCH USB DRIVER
541 M:      Duncan Sands <duncan.sands@free.fr>
542 L:      linux-usb@vger.kernel.org
543 W:      http://www.linux-usb.org/SpeedTouch/
544 S:      Maintained
545 F:      drivers/usb/atm/speedtch.c
546 F:      drivers/usb/atm/usbatm.c
547
548 ALCHEMY AU1XX0 MMC DRIVER
549 M:      Manuel Lauss <manuel.lauss@gmail.com>
550 S:      Maintained
551 F:      drivers/mmc/host/au1xmmc.c
552
553 ALI1563 I2C DRIVER
554 M:      Rudolf Marek <r.marek@assembler.cz>
555 L:      linux-i2c@vger.kernel.org
556 S:      Maintained
557 F:      Documentation/i2c/busses/i2c-ali1563
558 F:      drivers/i2c/busses/i2c-ali1563.c
559
560 ALLWINNER SECURITY SYSTEM
561 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
562 L:      linux-crypto@vger.kernel.org
563 S:      Maintained
564 F:      drivers/crypto/sunxi-ss/
565
566 ALPHA PORT
567 M:      Richard Henderson <rth@twiddle.net>
568 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
569 M:      Matt Turner <mattst88@gmail.com>
570 S:      Odd Fixes
571 L:      linux-alpha@vger.kernel.org
572 F:      arch/alpha/
573
574 ALTERA MAILBOX DRIVER
575 M:      Ley Foon Tan <lftan@altera.com>
576 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
577 S:      Maintained
578 F:      drivers/mailbox/mailbox-altera.c
579
580 ALTERA PIO DRIVER
581 M:      Tien Hock Loh <thloh@altera.com>
582 L:      linux-gpio@vger.kernel.org
583 S:      Maintained
584 F:      drivers/gpio/gpio-altera.c
585
586 ALTERA TRIPLE SPEED ETHERNET DRIVER
587 M:      Vince Bridgers <vbridger@opensource.altera.com>
588 L:      netdev@vger.kernel.org
589 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
590 S:      Maintained
591 F:      drivers/net/ethernet/altera/
592
593 ALTERA UART/JTAG UART SERIAL DRIVERS
594 M:      Tobias Klauser <tklauser@distanz.ch>
595 L:      linux-serial@vger.kernel.org
596 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
597 S:      Maintained
598 F:      drivers/tty/serial/altera_uart.c
599 F:      drivers/tty/serial/altera_jtaguart.c
600 F:      include/linux/altera_uart.h
601 F:      include/linux/altera_jtaguart.h
602
603 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
604 M:      Tom Lendacky <thomas.lendacky@amd.com>
605 L:      linux-crypto@vger.kernel.org
606 S:      Supported
607 F:      drivers/crypto/ccp/
608 F:      include/linux/ccp.h
609
610 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
611 M:      Andreas Herrmann <herrmann.der.user@googlemail.com>
612 L:      lm-sensors@lm-sensors.org
613 S:      Maintained
614 F:      Documentation/hwmon/fam15h_power
615 F:      drivers/hwmon/fam15h_power.c
616
617 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
618 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
619 S:      Orphan
620 F:      drivers/usb/gadget/udc/amd5536udc.*
621
622 AMD GEODE PROCESSOR/CHIPSET SUPPORT
623 P:      Andres Salomon <dilinger@queued.net>
624 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
625 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
626 S:      Supported
627 F:      drivers/char/hw_random/geode-rng.c
628 F:      drivers/crypto/geode*
629 F:      drivers/video/fbdev/geode/
630 F:      arch/x86/include/asm/geode.h
631
632 AMD IOMMU (AMD-VI)
633 M:      Joerg Roedel <joro@8bytes.org>
634 L:      iommu@lists.linux-foundation.org
635 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
636 S:      Maintained
637 F:      drivers/iommu/amd_iommu*.[ch]
638 F:      include/linux/amd-iommu.h
639
640 AMD KFD
641 M:      Oded Gabbay <oded.gabbay@gmail.com>
642 L:      dri-devel@lists.freedesktop.org
643 T:      git git://people.freedesktop.org/~gabbayo/linux.git
644 S:      Supported
645 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c
646 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
647 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
648 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
649 F:      drivers/gpu/drm/amd/amdkfd/
650 F:      drivers/gpu/drm/amd/include/cik_structs.h
651 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
652 F:      drivers/gpu/drm/amd/include/vi_structs.h
653 F:      drivers/gpu/drm/radeon/radeon_kfd.c
654 F:      drivers/gpu/drm/radeon/radeon_kfd.h
655 F:      include/uapi/linux/kfd_ioctl.h
656
657 AMD MICROCODE UPDATE SUPPORT
658 M:      Borislav Petkov <bp@alien8.de>
659 S:      Maintained
660 F:      arch/x86/kernel/cpu/microcode/amd*
661
662 AMD XGBE DRIVER
663 M:      Tom Lendacky <thomas.lendacky@amd.com>
664 L:      netdev@vger.kernel.org
665 S:      Supported
666 F:      drivers/net/ethernet/amd/xgbe/
667
668 AMS (Apple Motion Sensor) DRIVER
669 M:      Michael Hanselmann <linux-kernel@hansmi.ch>
670 S:      Supported
671 F:      drivers/macintosh/ams/
672
673 AMSO1100 RNIC DRIVER
674 M:      Tom Tucker <tom@opengridcomputing.com>
675 M:      Steve Wise <swise@opengridcomputing.com>
676 L:      linux-rdma@vger.kernel.org
677 S:      Maintained
678 F:      drivers/infiniband/hw/amso1100/
679
680 ANALOG DEVICES INC AD9389B DRIVER
681 M:      Hans Verkuil <hans.verkuil@cisco.com>
682 L:      linux-media@vger.kernel.org
683 S:      Maintained
684 F:      drivers/media/i2c/ad9389b*
685
686 ANALOG DEVICES INC ADV7180 DRIVER
687 M:      Lars-Peter Clausen <lars@metafoo.de>
688 L:      linux-media@vger.kernel.org
689 W:      http://ez.analog.com/community/linux-device-drivers
690 S:      Supported
691 F:      drivers/media/i2c/adv7180.c
692
693 ANALOG DEVICES INC ADV7511 DRIVER
694 M:      Hans Verkuil <hans.verkuil@cisco.com>
695 L:      linux-media@vger.kernel.org
696 S:      Maintained
697 F:      drivers/media/i2c/adv7511*
698
699 ANALOG DEVICES INC ADV7604 DRIVER
700 M:      Hans Verkuil <hans.verkuil@cisco.com>
701 L:      linux-media@vger.kernel.org
702 S:      Maintained
703 F:      drivers/media/i2c/adv7604*
704
705 ANALOG DEVICES INC ADV7842 DRIVER
706 M:      Hans Verkuil <hans.verkuil@cisco.com>
707 L:      linux-media@vger.kernel.org
708 S:      Maintained
709 F:      drivers/media/i2c/adv7842*
710
711 ANALOG DEVICES INC ASOC CODEC DRIVERS
712 M:      Lars-Peter Clausen <lars@metafoo.de>
713 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
714 W:      http://wiki.analog.com/
715 W:      http://ez.analog.com/community/linux-device-drivers
716 S:      Supported
717 F:      sound/soc/codecs/adau*
718 F:      sound/soc/codecs/adav*
719 F:      sound/soc/codecs/ad1*
720 F:      sound/soc/codecs/ad7*
721 F:      sound/soc/codecs/ssm*
722 F:      sound/soc/codecs/sigmadsp.*
723
724 ANALOG DEVICES INC ASOC DRIVERS
725 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
726 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
727 W:      http://blackfin.uclinux.org/
728 S:      Supported
729 F:      sound/soc/blackfin/*
730
731 ANALOG DEVICES INC IIO DRIVERS
732 M:      Lars-Peter Clausen <lars@metafoo.de>
733 M:      Michael Hennerich <Michael.Hennerich@analog.com>
734 W:      http://wiki.analog.com/
735 W:      http://ez.analog.com/community/linux-device-drivers
736 S:      Supported
737 F:      drivers/iio/*/ad*
738 X:      drivers/iio/*/adjd*
739 F:      drivers/staging/iio/*/ad*
740 F:      staging/iio/trigger/iio-trig-bfin-timer.c
741
742 ANALOG DEVICES INC DMA DRIVERS
743 M:      Lars-Peter Clausen <lars@metafoo.de>
744 W:      http://ez.analog.com/community/linux-device-drivers
745 S:      Supported
746 F:      drivers/dma/dma-axi-dmac.c
747
748 ANDROID DRIVERS
749 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
750 M:      Arve HjønnevĂ¥g <arve@android.com>
751 M:      Riley Andrews <riandrews@android.com>
752 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
753 L:      devel@driverdev.osuosl.org
754 S:      Supported
755 F:      drivers/android/
756 F:      drivers/staging/android/
757
758 AOA (Apple Onboard Audio) ALSA DRIVER
759 M:      Johannes Berg <johannes@sipsolutions.net>
760 L:      linuxppc-dev@lists.ozlabs.org
761 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
762 S:      Maintained
763 F:      sound/aoa/
764
765 APM DRIVER
766 M:      Jiri Kosina <jikos@kernel.org>
767 S:      Odd fixes
768 F:      arch/x86/kernel/apm_32.c
769 F:      include/linux/apm_bios.h
770 F:      include/uapi/linux/apm_bios.h
771 F:      drivers/char/apm-emulation.c
772
773 APPLE BCM5974 MULTITOUCH DRIVER
774 M:      Henrik Rydberg <rydberg@bitmath.org>
775 L:      linux-input@vger.kernel.org
776 S:      Odd fixes
777 F:      drivers/input/mouse/bcm5974.c
778
779 APPLE SMC DRIVER
780 M:      Henrik Rydberg <rydberg@bitmath.org>
781 L:      lm-sensors@lm-sensors.org
782 S:      Odd fixes
783 F:      drivers/hwmon/applesmc.c
784
785 APPLETALK NETWORK LAYER
786 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
787 S:      Maintained
788 F:      drivers/net/appletalk/
789 F:      net/appletalk/
790
791 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
792 M:      Iyappan Subramanian <isubramanian@apm.com>
793 M:      Keyur Chudgar <kchudgar@apm.com>
794 S:      Supported
795 F:      drivers/net/ethernet/apm/xgene/
796 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
797
798 APTINA CAMERA SENSOR PLL
799 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
800 L:      linux-media@vger.kernel.org
801 S:      Maintained
802 F:      drivers/media/i2c/aptina-pll.*
803
804 ARC FRAMEBUFFER DRIVER
805 M:      Jaya Kumar <jayalk@intworks.biz>
806 S:      Maintained
807 F:      drivers/video/fbdev/arcfb.c
808 F:      drivers/video/fbdev/core/fb_defio.c
809
810 ARCNET NETWORK LAYER
811 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
812 L:      netdev@vger.kernel.org
813 S:      Maintained
814 F:      drivers/net/arcnet/
815 F:      include/uapi/linux/if_arcnet.h
816
817 ARM MFM AND FLOPPY DRIVERS
818 M:      Ian Molton <spyro@f2s.com>
819 S:      Maintained
820 F:      arch/arm/lib/floppydma.S
821 F:      arch/arm/include/asm/floppy.h
822
823 ARM PMU PROFILING AND DEBUGGING
824 M:      Will Deacon <will.deacon@arm.com>
825 S:      Maintained
826 F:      arch/arm/kernel/perf_*
827 F:      arch/arm/oprofile/common.c
828 F:      arch/arm/kernel/hw_breakpoint.c
829 F:      arch/arm/include/asm/hw_breakpoint.h
830 F:      arch/arm/include/asm/perf_event.h
831 F:      drivers/perf/arm_pmu.c
832 F:      include/linux/perf/arm_pmu.h
833
834 ARM PORT
835 M:      Russell King <linux@arm.linux.org.uk>
836 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
837 W:      http://www.arm.linux.org.uk/
838 S:      Maintained
839 F:      arch/arm/
840
841 ARM SUB-ARCHITECTURES
842 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
843 S:      Maintained
844 F:      arch/arm/mach-*/
845 F:      arch/arm/plat-*/
846 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
847
848 ARM PRIMECELL AACI PL041 DRIVER
849 M:      Russell King <linux@arm.linux.org.uk>
850 S:      Maintained
851 F:      sound/arm/aaci.*
852
853 ARM PRIMECELL CLCD PL110 DRIVER
854 M:      Russell King <linux@arm.linux.org.uk>
855 S:      Maintained
856 F:      drivers/video/fbdev/amba-clcd.*
857
858 ARM PRIMECELL KMI PL050 DRIVER
859 M:      Russell King <linux@arm.linux.org.uk>
860 S:      Maintained
861 F:      drivers/input/serio/ambakmi.*
862 F:      include/linux/amba/kmi.h
863
864 ARM PRIMECELL MMCI PL180/1 DRIVER
865 M:      Russell King <linux@arm.linux.org.uk>
866 S:      Maintained
867 F:      drivers/mmc/host/mmci.*
868 F:      include/linux/amba/mmci.h
869
870 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
871 M:      Russell King <linux@arm.linux.org.uk>
872 S:      Maintained
873 F:      drivers/tty/serial/amba-pl01*.c
874 F:      include/linux/amba/serial.h
875
876 ARM PRIMECELL BUS SUPPORT
877 M:      Russell King <linux@arm.linux.org.uk>
878 S:      Maintained
879 F:      drivers/amba/
880 F:      include/linux/amba/bus.h
881
882 ARM/ADS SPHERE MACHINE SUPPORT
883 M:      Lennert Buytenhek <kernel@wantstofly.org>
884 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
885 S:      Maintained
886
887 ARM/AFEB9260 MACHINE SUPPORT
888 M:      Sergey Lapin <slapin@ossfans.org>
889 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
890 S:      Maintained
891
892 ARM/AJECO 1ARM MACHINE SUPPORT
893 M:      Lennert Buytenhek <kernel@wantstofly.org>
894 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
895 S:      Maintained
896
897 ARM/Allwinner A1X SoC support
898 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
899 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
900 S:      Maintained
901 N:      sun[x4567]i
902
903 ARM/Allwinner SoC Clock Support
904 M:      Emilio LĂ³pez <emilio@elopez.com.ar>
905 S:      Maintained
906 F:      drivers/clk/sunxi/
907
908 ARM/Amlogic MesonX SoC support
909 M:      Carlo Caione <carlo@caione.org>
910 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
911 S:      Maintained
912 F:      drivers/media/rc/meson-ir.c
913 N:      meson[x68]
914
915 ARM/Annapurna Labs ALPINE ARCHITECTURE
916 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
917 S:      Maintained
918 F:      arch/arm/mach-alpine/
919
920 ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES
921 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
922 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
923 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
924 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
925 W:      http://www.linux4sam.org
926 S:      Supported
927 F:      arch/arm/mach-at91/
928 F:      include/soc/at91/
929 F:      arch/arm/boot/dts/at91*.dts
930 F:      arch/arm/boot/dts/at91*.dtsi
931 F:      arch/arm/boot/dts/sama*.dts
932 F:      arch/arm/boot/dts/sama*.dtsi
933 F:      arch/arm/include/debug/at91.S
934
935 ARM/ATMEL AT91 Clock Support
936 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
937 S:      Maintained
938 F:      drivers/clk/at91
939
940 ARM/CALXEDA HIGHBANK ARCHITECTURE
941 M:      Rob Herring <robh@kernel.org>
942 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
943 S:      Maintained
944 F:      arch/arm/mach-highbank/
945
946 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
947 M:      Krzysztof Halasa <khalasa@piap.pl>
948 S:      Maintained
949 F:      arch/arm/mach-cns3xxx/
950
951 ARM/CAVIUM THUNDER NETWORK DRIVER
952 M:      Sunil Goutham <sgoutham@cavium.com>
953 M:      Robert Richter <rric@kernel.org>
954 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
955 S:      Supported
956 F:      drivers/net/ethernet/cavium/thunder/
957
958 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
959 M:      Alexander Shiyan <shc_work@mail.ru>
960 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
961 S:      Odd Fixes
962 N:      clps711x
963
964 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
965 M:      Hartley Sweeten <hsweeten@visionengravers.com>
966 M:      Ryan Mallon <rmallon@gmail.com>
967 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
968 S:      Maintained
969 F:      arch/arm/mach-ep93xx/
970 F:      arch/arm/mach-ep93xx/include/mach/
971
972 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
973 M:      Lennert Buytenhek <kernel@wantstofly.org>
974 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
975 S:      Maintained
976
977 ARM/CLKDEV SUPPORT
978 M:      Russell King <linux@arm.linux.org.uk>
979 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
980 S:      Maintained
981 F:      arch/arm/include/asm/clkdev.h
982 F:      drivers/clk/clkdev.c
983
984 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
985 M:      Mike Rapoport <mike@compulab.co.il>
986 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
987 S:      Maintained
988
989 ARM/CONTEC MICRO9 MACHINE SUPPORT
990 M:      Hubert Feurstein <hubert.feurstein@contec.at>
991 S:      Maintained
992 F:      arch/arm/mach-ep93xx/micro9.c
993
994 ARM/CORESIGHT FRAMEWORK AND DRIVERS
995 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
996 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
997 S:      Maintained
998 F:      drivers/hwtracing/coresight/*
999 F:      Documentation/trace/coresight.txt
1000 F:      Documentation/devicetree/bindings/arm/coresight.txt
1001 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1002
1003 ARM/CORGI MACHINE SUPPORT
1004 M:      Richard Purdie <rpurdie@rpsys.net>
1005 S:      Maintained
1006
1007 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1008 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1009 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1010 T:      git git://github.com/ulli-kroll/linux.git
1011 S:      Maintained
1012 F:      arch/arm/mach-gemini/
1013 F:      drivers/rtc/rtc-gemini.c
1014
1015 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1016 M:      Barry Song <baohua@kernel.org>
1017 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1018 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1019 S:      Maintained
1020 F:      arch/arm/mach-prima2/
1021 F:      drivers/clk/sirf/
1022 F:      drivers/clocksource/timer-prima2.c
1023 F:      drivers/clocksource/timer-atlas7.c
1024 N:      [^a-z]sirf
1025
1026 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1027 M:      Baruch Siach <baruch@tkos.co.il>
1028 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1029 S:      Maintained
1030 F:      arch/arm/boot/dts/cx92755*
1031 N:      digicolor
1032
1033 ARM/EBSA110 MACHINE SUPPORT
1034 M:      Russell King <linux@arm.linux.org.uk>
1035 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1036 W:      http://www.arm.linux.org.uk/
1037 S:      Maintained
1038 F:      arch/arm/mach-ebsa110/
1039 F:      drivers/net/ethernet/amd/am79c961a.*
1040
1041 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1042 M:      Uwe Kleine-König <kernel@pengutronix.de>
1043 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1044 S:      Maintained
1045 N:      efm32
1046
1047 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1048 M:      Daniel Ribeiro <drwyrm@gmail.com>
1049 M:      Stefan Schmidt <stefan@openezx.org>
1050 M:      Harald Welte <laforge@openezx.org>
1051 L:      openezx-devel@lists.openezx.org (moderated for non-subscribers)
1052 W:      http://www.openezx.org/
1053 S:      Maintained
1054 T:      topgit git://git.openezx.org/openezx.git
1055 F:      arch/arm/mach-pxa/ezx.c
1056
1057 ARM/FARADAY FA526 PORT
1058 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1059 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1060 S:      Maintained
1061 T:      git git://git.berlios.de/gemini-board
1062 F:      arch/arm/mm/*-fa*
1063
1064 ARM/FOOTBRIDGE ARCHITECTURE
1065 M:      Russell King <linux@arm.linux.org.uk>
1066 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1067 W:      http://www.arm.linux.org.uk/
1068 S:      Maintained
1069 F:      arch/arm/include/asm/hardware/dec21285.h
1070 F:      arch/arm/mach-footbridge/
1071
1072 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1073 M:      Shawn Guo <shawnguo@kernel.org>
1074 M:      Sascha Hauer <kernel@pengutronix.de>
1075 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1076 S:      Maintained
1077 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1078 F:      arch/arm/mach-imx/
1079 F:      arch/arm/mach-mxs/
1080 F:      arch/arm/boot/dts/imx*
1081 F:      arch/arm/configs/imx*_defconfig
1082 F:      drivers/clk/imx/
1083 F:      include/soc/imx/
1084
1085 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1086 M:      Shawn Guo <shawnguo@kernel.org>
1087 M:      Sascha Hauer <kernel@pengutronix.de>
1088 R:      Stefan Agner <stefan@agner.ch>
1089 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1090 S:      Maintained
1091 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1092 F:      arch/arm/mach-imx/*vf610*
1093 F:      arch/arm/boot/dts/vf*
1094
1095 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1096 M:      Lennert Buytenhek <kernel@wantstofly.org>
1097 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1098 S:      Maintained
1099
1100 ARM/GUMSTIX MACHINE SUPPORT
1101 M:      Steve Sakoman <sakoman@gmail.com>
1102 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1103 S:      Maintained
1104
1105 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1106 M:      Philipp Zabel <philipp.zabel@gmail.com>
1107 M:      Paul Parsons <lost.distance@yahoo.com>
1108 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1109 S:      Maintained
1110 F:      arch/arm/mach-pxa/hx4700.c
1111 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1112 F:      sound/soc/pxa/hx4700.c
1113
1114 ARM/HISILICON SOC SUPPORT
1115 M:      Wei Xu <xuwei5@hisilicon.com>
1116 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1117 W:      http://www.hisilicon.com
1118 S:      Supported
1119 T:      git git://github.com/hisilicon/linux-hisi.git
1120 F:      arch/arm/mach-hisi/
1121
1122 ARM/HP JORNADA 7XX MACHINE SUPPORT
1123 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1124 W:      www.jlime.com
1125 S:      Maintained
1126 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1127 F:      arch/arm/mach-sa1100/jornada720.c
1128 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1129
1130 ARM/IGEP MACHINE SUPPORT
1131 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1132 M:      Javier Martinez Canillas <javier@dowhile0.org>
1133 L:      linux-omap@vger.kernel.org
1134 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1135 S:      Maintained
1136 F:      arch/arm/boot/dts/omap3-igep*
1137
1138 ARM/INCOME PXA270 SUPPORT
1139 M:      Marek Vasut <marek.vasut@gmail.com>
1140 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1141 S:      Maintained
1142 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1143
1144 ARM/INTEL IOP32X ARM ARCHITECTURE
1145 M:      Lennert Buytenhek <kernel@wantstofly.org>
1146 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1147 S:      Maintained
1148
1149 ARM/INTEL IOP33X ARM ARCHITECTURE
1150 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1151 S:      Orphan
1152
1153 ARM/INTEL IOP13XX ARM ARCHITECTURE
1154 M:      Lennert Buytenhek <kernel@wantstofly.org>
1155 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1156 S:      Maintained
1157
1158 ARM/INTEL IQ81342EX MACHINE SUPPORT
1159 M:      Lennert Buytenhek <kernel@wantstofly.org>
1160 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1161 S:      Maintained
1162
1163 ARM/INTEL IXDP2850 MACHINE SUPPORT
1164 M:      Lennert Buytenhek <kernel@wantstofly.org>
1165 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1166 S:      Maintained
1167
1168 ARM/INTEL IXP4XX ARM ARCHITECTURE
1169 M:      Imre Kaloz <kaloz@openwrt.org>
1170 M:      Krzysztof Halasa <khalasa@piap.pl>
1171 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1172 S:      Maintained
1173 F:      arch/arm/mach-ixp4xx/
1174
1175 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1176 M:      Jonathan Cameron <jic23@cam.ac.uk>
1177 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1178 S:      Maintained
1179 F:      arch/arm/mach-pxa/stargate2.c
1180 F:      drivers/pcmcia/pxa2xx_stargate2.c
1181
1182 ARM/INTEL XSC3 (MANZANO) ARM CORE
1183 M:      Lennert Buytenhek <kernel@wantstofly.org>
1184 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1185 S:      Maintained
1186
1187 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1188 M:      Lennert Buytenhek <kernel@wantstofly.org>
1189 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1190 S:      Maintained
1191
1192 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
1193 M:      Santosh Shilimkar <ssantosh@kernel.org>
1194 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1195 S:      Maintained
1196 F:      arch/arm/mach-keystone/
1197 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
1198
1199 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
1200 M:      Santosh Shilimkar <ssantosh@kernel.org>
1201 L:      linux-kernel@vger.kernel.org
1202 S:      Maintained
1203 F:      drivers/clk/keystone/
1204
1205 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
1206 M:      Santosh Shilimkar <ssantosh@kernel.org>
1207 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1208 L:      linux-kernel@vger.kernel.org
1209 S:      Maintained
1210 F:      drivers/clocksource/timer-keystone.c
1211
1212 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
1213 M:      Santosh Shilimkar <ssantosh@kernel.org>
1214 L:      linux-kernel@vger.kernel.org
1215 S:      Maintained
1216 F:      drivers/power/reset/keystone-reset.c
1217
1218 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
1219 M:      Santosh Shilimkar <ssantosh@kernel.org>
1220 L:      linux-kernel@vger.kernel.org
1221 S:      Maintained
1222 F:      drivers/memory/*emif*
1223
1224 ARM/LOGICPD PXA270 MACHINE SUPPORT
1225 M:      Lennert Buytenhek <kernel@wantstofly.org>
1226 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1227 S:      Maintained
1228
1229 ARM/LPC18XX ARCHITECTURE
1230 M:      Joachim Eastwood <manabian@gmail.com>
1231 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1232 S:      Maintained
1233 F:      arch/arm/boot/dts/lpc43*
1234 F:      drivers/clk/nxp/clk-lpc18xx*
1235 F:      drivers/clocksource/time-lpc32xx.c
1236 F:      drivers/i2c/busses/i2c-lpc2k.c
1237 F:      drivers/memory/pl172.c
1238 F:      drivers/mtd/spi-nor/nxp-spifi.c
1239 F:      drivers/rtc/rtc-lpc24xx.c
1240 N:      lpc18xx
1241
1242 ARM/MAGICIAN MACHINE SUPPORT
1243 M:      Philipp Zabel <philipp.zabel@gmail.com>
1244 S:      Maintained
1245
1246 ARM/Marvell Kirkwood and Armada 370, 375, 38x, XP SOC support
1247 M:      Jason Cooper <jason@lakedaemon.net>
1248 M:      Andrew Lunn <andrew@lunn.ch>
1249 M:      Gregory Clement <gregory.clement@free-electrons.com>
1250 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1251 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1252 S:      Maintained
1253 F:      arch/arm/mach-mvebu/
1254 F:      drivers/rtc/rtc-armada38x.c
1255 F:      arch/arm/boot/dts/armada*
1256 F:      arch/arm/boot/dts/kirkwood*
1257
1258
1259 ARM/Marvell Berlin SoC support
1260 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1261 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1262 S:      Maintained
1263 F:      arch/arm/mach-berlin/
1264 F:      arch/arm/boot/dts/berlin*
1265
1266
1267 ARM/Marvell Dove/MV78xx0/Orion SOC support
1268 M:      Jason Cooper <jason@lakedaemon.net>
1269 M:      Andrew Lunn <andrew@lunn.ch>
1270 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1271 M:      Gregory Clement <gregory.clement@free-electrons.com>
1272 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1273 S:      Maintained
1274 F:      arch/arm/mach-dove/
1275 F:      arch/arm/mach-mv78xx0/
1276 F:      arch/arm/mach-orion5x/
1277 F:      arch/arm/plat-orion/
1278 F:      arch/arm/boot/dts/dove*
1279 F:      arch/arm/boot/dts/orion5x*
1280
1281
1282 ARM/Orion SoC/Technologic Systems TS-78xx platform support
1283 M:      Alexander Clouter <alex@digriz.org.uk>
1284 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1285 W:      http://www.digriz.org.uk/ts78xx/kernel
1286 S:      Maintained
1287 F:      arch/arm/mach-orion5x/ts78xx-*
1288
1289 ARM/Mediatek RTC DRIVER
1290 M:      Eddie Huang <eddie.huang@mediatek.com>
1291 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1292 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1293 S:      Maintained
1294 F:      drivers/rtc/rtc-mt6397.c
1295
1296 ARM/Mediatek SoC support
1297 M:      Matthias Brugger <matthias.bgg@gmail.com>
1298 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1299 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1300 S:      Maintained
1301 F:      arch/arm/boot/dts/mt6*
1302 F:      arch/arm/boot/dts/mt8*
1303 F:      arch/arm/mach-mediatek/
1304 N:      mtk
1305 K:      mediatek
1306
1307 ARM/MICREL KS8695 ARCHITECTURE
1308 M:      Greg Ungerer <gerg@uclinux.org>
1309 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1310 F:      arch/arm/mach-ks8695/
1311 S:      Odd Fixes
1312
1313 ARM/MIOA701 MACHINE SUPPORT
1314 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1315 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1316 F:      arch/arm/mach-pxa/mioa701.c
1317 S:      Maintained
1318
1319 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1320 M:      Michael Petchkovsky <mkpetch@internode.on.net>
1321 S:      Maintained
1322
1323 ARM/NOMADIK ARCHITECTURE
1324 M:      Alessandro Rubini <rubini@unipv.it>
1325 M:      Linus Walleij <linus.walleij@linaro.org>
1326 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1327 S:      Maintained
1328 F:      arch/arm/mach-nomadik/
1329 F:      drivers/pinctrl/nomadik/
1330 F:      drivers/i2c/busses/i2c-nomadik.c
1331 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
1332
1333 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
1334 M:      Nelson Castillo <arhuaco@freaks-unidos.net>
1335 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
1336 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
1337 S:      Supported
1338
1339 ARM/TOSA MACHINE SUPPORT
1340 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1341 M:      Dirk Opfer <dirk@opfer-online.de>
1342 S:      Maintained
1343
1344 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
1345 M:      Marek Vasut <marek.vasut@gmail.com>
1346 L:      linux-arm-kernel@lists.infradead.org
1347 W:      http://hackndev.com
1348 S:      Maintained
1349 F:      arch/arm/mach-pxa/include/mach/palmtx.h
1350 F:      arch/arm/mach-pxa/palmtx.c
1351 F:      arch/arm/mach-pxa/include/mach/palmt5.h
1352 F:      arch/arm/mach-pxa/palmt5.c
1353 F:      arch/arm/mach-pxa/include/mach/palmld.h
1354 F:      arch/arm/mach-pxa/palmld.c
1355 F:      arch/arm/mach-pxa/include/mach/palmte2.h
1356 F:      arch/arm/mach-pxa/palmte2.c
1357 F:      arch/arm/mach-pxa/include/mach/palmtc.h
1358 F:      arch/arm/mach-pxa/palmtc.c
1359
1360 ARM/PALM TREO SUPPORT
1361 M:      Tomas Cech <sleep_walker@suse.com>
1362 L:      linux-arm-kernel@lists.infradead.org
1363 W:      http://hackndev.com
1364 S:      Maintained
1365 F:      arch/arm/mach-pxa/include/mach/palmtreo.h
1366 F:      arch/arm/mach-pxa/palmtreo.c
1367
1368 ARM/PALMZ72 SUPPORT
1369 M:      Sergey Lapin <slapin@ossfans.org>
1370 L:      linux-arm-kernel@lists.infradead.org
1371 W:      http://hackndev.com
1372 S:      Maintained
1373 F:      arch/arm/mach-pxa/include/mach/palmz72.h
1374 F:      arch/arm/mach-pxa/palmz72.c
1375
1376 ARM/PLEB SUPPORT
1377 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
1378 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1379 S:      Maintained
1380
1381 ARM/PT DIGITAL BOARD PORT
1382 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
1383 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1384 W:      http://www.arm.linux.org.uk/
1385 S:      Maintained
1386
1387 ARM/QUALCOMM SUPPORT
1388 M:      Kumar Gala <galak@codeaurora.org>
1389 M:      Andy Gross <agross@codeaurora.org>
1390 M:      David Brown <davidb@codeaurora.org>
1391 L:      linux-arm-msm@vger.kernel.org
1392 L:      linux-soc@vger.kernel.org
1393 S:      Maintained
1394 F:      arch/arm/mach-qcom/
1395 F:      drivers/soc/qcom/
1396 F:      drivers/tty/serial/msm_serial.h
1397 F:      drivers/tty/serial/msm_serial.c
1398 F:      drivers/*/pm8???-*
1399 F:      drivers/mfd/ssbi.c
1400 F:      drivers/firmware/qcom_scm.c
1401 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git
1402
1403 ARM/RADISYS ENP2611 MACHINE SUPPORT
1404 M:      Lennert Buytenhek <kernel@wantstofly.org>
1405 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1406 S:      Maintained
1407
1408 ARM/RISCPC ARCHITECTURE
1409 M:      Russell King <linux@arm.linux.org.uk>
1410 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1411 W:      http://www.arm.linux.org.uk/
1412 S:      Maintained
1413 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
1414 F:      arch/arm/include/asm/hardware/ioc.h
1415 F:      arch/arm/include/asm/hardware/iomd.h
1416 F:      arch/arm/include/asm/hardware/memc.h
1417 F:      arch/arm/mach-rpc/
1418 F:      drivers/net/ethernet/8390/etherh.c
1419 F:      drivers/net/ethernet/i825xx/ether1*
1420 F:      drivers/net/ethernet/seeq/ether3*
1421 F:      drivers/scsi/arm/
1422
1423 ARM/Rockchip SoC support
1424 M:      Heiko Stuebner <heiko@sntech.de>
1425 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1426 L:      linux-rockchip@lists.infradead.org
1427 S:      Maintained
1428 F:      arch/arm/boot/dts/rk3*
1429 F:      arch/arm/mach-rockchip/
1430 F:      drivers/clk/rockchip/
1431 F:      drivers/i2c/busses/i2c-rk3x.c
1432 F:      drivers/*/*rockchip*
1433 F:      drivers/*/*/*rockchip*
1434 F:      sound/soc/rockchip/
1435 N:      rockchip
1436
1437 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
1438 M:      Kukjin Kim <kgene@kernel.org>
1439 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
1440 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1441 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1442 S:      Maintained
1443 F:      arch/arm/boot/dts/s3c*
1444 F:      arch/arm/boot/dts/exynos*
1445 F:      arch/arm64/boot/dts/exynos/
1446 F:      arch/arm/plat-samsung/
1447 F:      arch/arm/mach-s3c24*/
1448 F:      arch/arm/mach-s3c64xx/
1449 F:      arch/arm/mach-s5p*/
1450 F:      arch/arm/mach-exynos*/
1451 F:      drivers/*/*s3c2410*
1452 F:      drivers/*/*/*s3c2410*
1453 F:      drivers/spi/spi-s3c*
1454 F:      sound/soc/samsung/*
1455 N:      exynos
1456
1457 ARM/SAMSUNG MOBILE MACHINE SUPPORT
1458 M:      Kyungmin Park <kyungmin.park@samsung.com>
1459 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1460 S:      Maintained
1461 F:      arch/arm/mach-s5pv210/
1462
1463 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1464 M:      Kyungmin Park <kyungmin.park@samsung.com>
1465 M:      Kamil Debski <k.debski@samsung.com>
1466 L:      linux-arm-kernel@lists.infradead.org
1467 L:      linux-media@vger.kernel.org
1468 S:      Maintained
1469 F:      drivers/media/platform/s5p-g2d/
1470
1471 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1472 M:      Kyungmin Park <kyungmin.park@samsung.com>
1473 M:      Kamil Debski <k.debski@samsung.com>
1474 M:      Jeongtae Park <jtp.park@samsung.com>
1475 L:      linux-arm-kernel@lists.infradead.org
1476 L:      linux-media@vger.kernel.org
1477 S:      Maintained
1478 F:      arch/arm/plat-samsung/s5p-dev-mfc.c
1479 F:      drivers/media/platform/s5p-mfc/
1480
1481 ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1482 M:      Kyungmin Park <kyungmin.park@samsung.com>
1483 M:      Tomasz Stanislawski <t.stanislaws@samsung.com>
1484 L:      linux-arm-kernel@lists.infradead.org
1485 L:      linux-media@vger.kernel.org
1486 S:      Maintained
1487 F:      drivers/media/platform/s5p-tv/
1488
1489 ARM/SHMOBILE ARM ARCHITECTURE
1490 M:      Simon Horman <horms@verge.net.au>
1491 M:      Magnus Damm <magnus.damm@gmail.com>
1492 L:      linux-sh@vger.kernel.org
1493 W:      http://oss.renesas.com
1494 Q:      http://patchwork.kernel.org/project/linux-sh/list/
1495 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1496 S:      Supported
1497 F:      arch/arm/boot/dts/emev2*
1498 F:      arch/arm/boot/dts/r7s*
1499 F:      arch/arm/boot/dts/r8a*
1500 F:      arch/arm/boot/dts/sh*
1501 F:      arch/arm/configs/bockw_defconfig
1502 F:      arch/arm/configs/marzen_defconfig
1503 F:      arch/arm/configs/shmobile_defconfig
1504 F:      arch/arm/include/debug/renesas-scif.S
1505 F:      arch/arm/mach-shmobile/
1506 F:      drivers/sh/
1507
1508 ARM/SOCFPGA ARCHITECTURE
1509 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1510 S:      Maintained
1511 F:      arch/arm/mach-socfpga/
1512 F:      arch/arm/boot/dts/socfpga*
1513 F:      arch/arm/configs/socfpga_defconfig
1514 W:      http://www.rocketboards.org
1515 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
1516
1517 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1518 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1519 S:      Maintained
1520 F:      drivers/clk/socfpga/
1521
1522 ARM/SOCFPGA EDAC SUPPORT
1523 M:      Thor Thayer <tthayer@opensource.altera.com>
1524 S:      Maintained
1525 F:      drivers/edac/altera_edac.
1526
1527 ARM/STI ARCHITECTURE
1528 M:      Srinivas Kandagatla <srinivas.kandagatla@gmail.com>
1529 M:      Maxime Coquelin <maxime.coquelin@st.com>
1530 M:      Patrice Chotard <patrice.chotard@st.com>
1531 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1532 L:      kernel@stlinux.com
1533 W:      http://www.stlinux.com
1534 S:      Maintained
1535 F:      arch/arm/mach-sti/
1536 F:      arch/arm/boot/dts/sti*
1537 F:      drivers/clocksource/arm_global_timer.c
1538 F:      drivers/clocksource/clksrc_st_lpc.c
1539 F:      drivers/i2c/busses/i2c-st.c
1540 F:      drivers/media/rc/st_rc.c
1541 F:      drivers/media/platform/sti/c8sectpfe/
1542 F:      drivers/mmc/host/sdhci-st.c
1543 F:      drivers/phy/phy-miphy28lp.c
1544 F:      drivers/phy/phy-miphy365x.c
1545 F:      drivers/phy/phy-stih407-usb.c
1546 F:      drivers/phy/phy-stih41x-usb.c
1547 F:      drivers/pinctrl/pinctrl-st.c
1548 F:      drivers/reset/sti/
1549 F:      drivers/rtc/rtc-st-lpc.c
1550 F:      drivers/tty/serial/st-asc.c
1551 F:      drivers/usb/dwc3/dwc3-st.c
1552 F:      drivers/usb/host/ehci-st.c
1553 F:      drivers/usb/host/ohci-st.c
1554 F:      drivers/watchdog/st_lpc_wdt.c
1555 F:      drivers/ata/ahci_st.c
1556
1557 ARM/STM32 ARCHITECTURE
1558 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
1559 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1560 S:      Maintained
1561 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git
1562 N:      stm32
1563 F:      drivers/clocksource/armv7m_systick.c
1564
1565 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
1566 M:      Lennert Buytenhek <kernel@wantstofly.org>
1567 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1568 S:      Maintained
1569
1570 ARM/TETON BGA MACHINE SUPPORT
1571 M:      "Mark F. Brown" <mark.brown314@gmail.com>
1572 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1573 S:      Maintained
1574
1575 ARM/THECUS N2100 MACHINE SUPPORT
1576 M:      Lennert Buytenhek <kernel@wantstofly.org>
1577 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1578 S:      Maintained
1579
1580 ARM/NUVOTON W90X900 ARM ARCHITECTURE
1581 M:      Wan ZongShun <mcuos.com@gmail.com>
1582 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1583 W:      http://www.mcuos.com
1584 S:      Maintained
1585 F:      arch/arm/mach-w90x900/
1586 F:      drivers/input/keyboard/w90p910_keypad.c
1587 F:      drivers/input/touchscreen/w90p910_ts.c
1588 F:      drivers/watchdog/nuc900_wdt.c
1589 F:      drivers/net/ethernet/nuvoton/w90p910_ether.c
1590 F:      drivers/mtd/nand/nuc900_nand.c
1591 F:      drivers/rtc/rtc-nuc900.c
1592 F:      drivers/spi/spi-nuc900.c
1593 F:      drivers/usb/host/ehci-w90x900.c
1594 F:      drivers/video/fbdev/nuc900fb.c
1595
1596 ARM/U300 MACHINE SUPPORT
1597 M:      Linus Walleij <linus.walleij@linaro.org>
1598 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1599 S:      Supported
1600 F:      arch/arm/mach-u300/
1601 F:      drivers/clocksource/timer-u300.c
1602 F:      drivers/i2c/busses/i2c-stu300.c
1603 F:      drivers/rtc/rtc-coh901331.c
1604 F:      drivers/watchdog/coh901327_wdt.c
1605 F:      drivers/dma/coh901318*
1606 F:      drivers/mfd/ab3100*
1607 F:      drivers/rtc/rtc-ab3100.c
1608 F:      drivers/rtc/rtc-coh901331.c
1609 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1610
1611 ARM/UNIPHIER ARCHITECTURE
1612 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
1613 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1614 S:      Maintained
1615 F:      arch/arm/boot/dts/uniphier*
1616 F:      arch/arm/mach-uniphier/
1617 F:      drivers/pinctrl/uniphier/
1618 F:      drivers/tty/serial/8250/8250_uniphier.c
1619 N:      uniphier
1620
1621 ARM/Ux500 ARM ARCHITECTURE
1622 M:      Linus Walleij <linus.walleij@linaro.org>
1623 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1624 S:      Maintained
1625 F:      arch/arm/mach-ux500/
1626 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
1627 F:      drivers/dma/ste_dma40*
1628 F:      drivers/hwspinlock/u8500_hsem.c
1629 F:      drivers/mfd/abx500*
1630 F:      drivers/mfd/ab8500*
1631 F:      drivers/mfd/dbx500*
1632 F:      drivers/mfd/db8500*
1633 F:      drivers/pinctrl/nomadik/pinctrl-ab*
1634 F:      drivers/pinctrl/nomadik/pinctrl-nomadik*
1635 F:      drivers/rtc/rtc-ab8500.c
1636 F:      drivers/rtc/rtc-pl031.c
1637 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1638
1639 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
1640 M:      Ulf Hansson <ulf.hansson@linaro.org>
1641 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1642 T:      git git://git.linaro.org/people/ulfh/clk.git
1643 S:      Maintained
1644 F:      drivers/clk/ux500/
1645 F:      include/linux/platform_data/clk-ux500.h
1646
1647 ARM/VERSATILE EXPRESS PLATFORM
1648 M:      Liviu Dudau <liviu.dudau@arm.com>
1649 M:      Sudeep Holla <sudeep.holla@arm.com>
1650 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
1651 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1652 S:      Maintained
1653 F:      arch/arm/boot/dts/vexpress*
1654 F:      arch/arm64/boot/dts/arm/vexpress*
1655 F:      arch/arm/mach-vexpress/
1656 F:      */*/vexpress*
1657 F:      */*/*/vexpress*
1658 F:      drivers/clk/versatile/clk-vexpress-osc.c
1659 F:      drivers/clocksource/versatile.c
1660
1661 ARM/VFP SUPPORT
1662 M:      Russell King <linux@arm.linux.org.uk>
1663 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1664 W:      http://www.arm.linux.org.uk/
1665 S:      Maintained
1666 F:      arch/arm/vfp/
1667
1668 ARM/VOIPAC PXA270 SUPPORT
1669 M:      Marek Vasut <marek.vasut@gmail.com>
1670 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1671 S:      Maintained
1672 F:      arch/arm/mach-pxa/vpac270.c
1673 F:      arch/arm/mach-pxa/include/mach/vpac270.h
1674
1675 ARM/VT8500 ARM ARCHITECTURE
1676 M:      Tony Prisk <linux@prisktech.co.nz>
1677 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1678 S:      Maintained
1679 F:      arch/arm/mach-vt8500/
1680 F:      drivers/clocksource/vt8500_timer.c
1681 F:      drivers/i2c/busses/i2c-wmt.c
1682 F:      drivers/mmc/host/wmt-sdmmc.c
1683 F:      drivers/pwm/pwm-vt8500.c
1684 F:      drivers/rtc/rtc-vt8500.c
1685 F:      drivers/tty/serial/vt8500_serial.c
1686 F:      drivers/usb/host/ehci-platform.c
1687 F:      drivers/usb/host/uhci-platform.c
1688 F:      drivers/video/fbdev/vt8500lcdfb.*
1689 F:      drivers/video/fbdev/wm8505fb*
1690 F:      drivers/video/fbdev/wmt_ge_rops.*
1691
1692 ARM/ZIPIT Z2 SUPPORT
1693 M:      Marek Vasut <marek.vasut@gmail.com>
1694 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1695 S:      Maintained
1696 F:      arch/arm/mach-pxa/z2.c
1697 F:      arch/arm/mach-pxa/include/mach/z2.h
1698
1699 ARM/ZTE ARCHITECTURE
1700 M:      Jun Nie <jun.nie@linaro.org>
1701 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1702 S:      Maintained
1703 F:      arch/arm/mach-zx/
1704 F:      drivers/clk/zte/
1705 F:      Documentation/devicetree/bindings/arm/zte.txt
1706 F:      Documentation/devicetree/bindings/clock/zx296702-clk.txt
1707
1708 ARM/ZYNQ ARCHITECTURE
1709 M:      Michal Simek <michal.simek@xilinx.com>
1710 R:      Sören Brinkmann <soren.brinkmann@xilinx.com>
1711 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1712 W:      http://wiki.xilinx.com
1713 T:      git https://github.com/Xilinx/linux-xlnx.git
1714 S:      Supported
1715 F:      arch/arm/mach-zynq/
1716 F:      drivers/cpuidle/cpuidle-zynq.c
1717 F:      drivers/block/xsysace.c
1718 N:      zynq
1719 N:      xilinx
1720 F:      drivers/clocksource/cadence_ttc_timer.c
1721 F:      drivers/i2c/busses/i2c-cadence.c
1722 F:      drivers/mmc/host/sdhci-of-arasan.c
1723 F:      drivers/edac/synopsys_edac.c
1724
1725 ARM SMMU DRIVERS
1726 M:      Will Deacon <will.deacon@arm.com>
1727 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1728 S:      Maintained
1729 F:      drivers/iommu/arm-smmu.c
1730 F:      drivers/iommu/arm-smmu-v3.c
1731 F:      drivers/iommu/io-pgtable-arm.c
1732
1733 ARM64 PORT (AARCH64 ARCHITECTURE)
1734 M:      Catalin Marinas <catalin.marinas@arm.com>
1735 M:      Will Deacon <will.deacon@arm.com>
1736 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1737 S:      Maintained
1738 F:      arch/arm64/
1739 F:      Documentation/arm64/
1740
1741 AS3645A LED FLASH CONTROLLER DRIVER
1742 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1743 L:      linux-media@vger.kernel.org
1744 T:      git git://linuxtv.org/media_tree.git
1745 S:      Maintained
1746 F:      drivers/media/i2c/as3645a.c
1747 F:      include/media/as3645a.h
1748
1749 ASC7621 HARDWARE MONITOR DRIVER
1750 M:      George Joseph <george.joseph@fairview5.com>
1751 L:      lm-sensors@lm-sensors.org
1752 S:      Maintained
1753 F:      Documentation/hwmon/asc7621
1754 F:      drivers/hwmon/asc7621.c
1755
1756 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
1757 M:      Corentin Chary <corentin.chary@gmail.com>
1758 L:      acpi4asus-user@lists.sourceforge.net
1759 L:      platform-driver-x86@vger.kernel.org
1760 W:      http://acpi4asus.sf.net
1761 S:      Maintained
1762 F:      drivers/platform/x86/asus*.c
1763 F:      drivers/platform/x86/eeepc*.c
1764
1765 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
1766 R:      Dan Williams <dan.j.williams@intel.com>
1767 W:      http://sourceforge.net/projects/xscaleiop
1768 S:      Odd fixes
1769 F:      Documentation/crypto/async-tx-api.txt
1770 F:      crypto/async_tx/
1771 F:      drivers/dma/
1772 F:      include/linux/dmaengine.h
1773 F:      include/linux/async_tx.h
1774
1775 AT24 EEPROM DRIVER
1776 M:      Wolfram Sang <wsa@the-dreams.de>
1777 L:      linux-i2c@vger.kernel.org
1778 S:      Maintained
1779 F:      drivers/misc/eeprom/at24.c
1780 F:      include/linux/platform_data/at24.h
1781
1782 ATA OVER ETHERNET (AOE) DRIVER
1783 M:      "Ed L. Cashin" <ed.cashin@acm.org>
1784 W:      http://www.openaoe.org/
1785 S:      Supported
1786 F:      Documentation/aoe/
1787 F:      drivers/block/aoe/
1788
1789 ATHEROS ATH GENERIC UTILITIES
1790 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1791 L:      linux-wireless@vger.kernel.org
1792 S:      Supported
1793 F:      drivers/net/wireless/ath/*
1794
1795 ATHEROS ATH5K WIRELESS DRIVER
1796 M:      Jiri Slaby <jirislaby@gmail.com>
1797 M:      Nick Kossifidis <mickflemm@gmail.com>
1798 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1799 L:      linux-wireless@vger.kernel.org
1800 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
1801 S:      Maintained
1802 F:      drivers/net/wireless/ath/ath5k/
1803
1804 ATHEROS ATH6KL WIRELESS DRIVER
1805 M:      Kalle Valo <kvalo@qca.qualcomm.com>
1806 L:      linux-wireless@vger.kernel.org
1807 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
1808 T:      git git://github.com/kvalo/ath.git
1809 S:      Supported
1810 F:      drivers/net/wireless/ath/ath6kl/
1811
1812 WILOCITY WIL6210 WIRELESS DRIVER
1813 M:      Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com>
1814 L:      linux-wireless@vger.kernel.org
1815 L:      wil6210@qca.qualcomm.com
1816 S:      Supported
1817 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
1818 F:      drivers/net/wireless/ath/wil6210/
1819 F:      include/uapi/linux/wil6210_uapi.h
1820
1821 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1822 M:      Christian Lamparter <chunkeey@googlemail.com>
1823 L:      linux-wireless@vger.kernel.org
1824 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
1825 S:      Maintained
1826 F:      drivers/net/wireless/ath/carl9170/
1827
1828 ATK0110 HWMON DRIVER
1829 M:      Luca Tettamanti <kronos.it@gmail.com>
1830 L:      lm-sensors@lm-sensors.org
1831 S:      Maintained
1832 F:      drivers/hwmon/asus_atk0110.c
1833
1834 ATI_REMOTE2 DRIVER
1835 M:      Ville Syrjala <syrjala@sci.fi>
1836 S:      Maintained
1837 F:      drivers/input/misc/ati_remote2.c
1838
1839 ATLX ETHERNET DRIVERS
1840 M:      Jay Cliburn <jcliburn@gmail.com>
1841 M:      Chris Snook <chris.snook@gmail.com>
1842 L:      netdev@vger.kernel.org
1843 W:      http://sourceforge.net/projects/atl1
1844 W:      http://atl1.sourceforge.net
1845 S:      Maintained
1846 F:      drivers/net/ethernet/atheros/
1847
1848 ATM
1849 M:      Chas Williams <3chas3@gmail.com>
1850 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
1851 L:      netdev@vger.kernel.org
1852 W:      http://linux-atm.sourceforge.net
1853 S:      Maintained
1854 F:      drivers/atm/
1855 F:      include/linux/atm*
1856 F:      include/uapi/linux/atm*
1857
1858 ATMEL AT91 / AT32 MCI DRIVER
1859 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1860 S:      Maintained
1861 F:      drivers/mmc/host/atmel-mci.c
1862 F:      drivers/mmc/host/atmel-mci-regs.h
1863
1864 ATMEL AT91 / AT32 SERIAL DRIVER
1865 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1866 S:      Supported
1867 F:      drivers/tty/serial/atmel_serial.c
1868
1869 ATMEL Audio ALSA driver
1870 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1871 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1872 S:      Supported
1873 F:      sound/soc/atmel
1874
1875 ATMEL DMA DRIVER
1876 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1877 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1878 S:      Supported
1879 F:      drivers/dma/at_hdmac.c
1880 F:      drivers/dma/at_hdmac_regs.h
1881 F:      include/linux/platform_data/dma-atmel.h
1882
1883 ATMEL XDMA DRIVER
1884 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1885 L:      linux-arm-kernel@lists.infradead.org
1886 L:      dmaengine@vger.kernel.org
1887 S:      Supported
1888 F:      drivers/dma/at_xdmac.c
1889
1890 ATMEL I2C DRIVER
1891 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1892 L:      linux-i2c@vger.kernel.org
1893 S:      Supported
1894 F:      drivers/i2c/busses/i2c-at91.c
1895
1896 ATMEL ISI DRIVER
1897 M:      Josh Wu <josh.wu@atmel.com>
1898 L:      linux-media@vger.kernel.org
1899 S:      Supported
1900 F:      drivers/media/platform/soc_camera/atmel-isi.c
1901 F:      include/media/atmel-isi.h
1902
1903 ATMEL LCDFB DRIVER
1904 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1905 L:      linux-fbdev@vger.kernel.org
1906 S:      Maintained
1907 F:      drivers/video/fbdev/atmel_lcdfb.c
1908 F:      include/video/atmel_lcdc.h
1909
1910 ATMEL MACB ETHERNET DRIVER
1911 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1912 S:      Supported
1913 F:      drivers/net/ethernet/cadence/
1914
1915 ATMEL NAND DRIVER
1916 M:      Josh Wu <josh.wu@atmel.com>
1917 L:      linux-mtd@lists.infradead.org
1918 S:      Supported
1919 F:      drivers/mtd/nand/atmel_nand*
1920
1921 ATMEL SDMMC DRIVER
1922 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1923 L:      linux-mmc@vger.kernel.org
1924 S:      Supported
1925 F:      drivers/mmc/host/sdhci-of-at91.c
1926
1927 ATMEL SPI DRIVER
1928 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1929 S:      Supported
1930 F:      drivers/spi/spi-atmel.*
1931
1932 ATMEL SSC DRIVER
1933 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1934 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1935 S:      Supported
1936 F:      drivers/misc/atmel-ssc.c
1937 F:      include/linux/atmel-ssc.h
1938
1939 ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1940 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1941 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1942 S:      Supported
1943 F:      drivers/misc/atmel_tclib.c
1944 F:      drivers/clocksource/tcb_clksrc.c
1945
1946 ATMEL USBA UDC DRIVER
1947 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1948 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1949 S:      Supported
1950 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
1951
1952 ATMEL WIRELESS DRIVER
1953 M:      Simon Kelley <simon@thekelleys.org.uk>
1954 L:      linux-wireless@vger.kernel.org
1955 W:      http://www.thekelleys.org.uk/atmel
1956 W:      http://atmelwlandriver.sourceforge.net/
1957 S:      Maintained
1958 F:      drivers/net/wireless/atmel*
1959
1960 ATMEL MAXTOUCH DRIVER
1961 M:      Nick Dyer <nick.dyer@itdev.co.uk>
1962 T:      git git://github.com/atmel-maxtouch/linux.git
1963 S:      Supported
1964 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
1965 F:      drivers/input/touchscreen/atmel_mxt_ts.c
1966 F:      include/linux/platform_data/atmel_mxt_ts.h
1967
1968 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
1969 M:      Bradley Grove <linuxdrivers@attotech.com>
1970 L:      linux-scsi@vger.kernel.org
1971 W:      http://www.attotech.com
1972 S:      Supported
1973 F:      drivers/scsi/esas2r
1974
1975 ATUSB IEEE 802.15.4 RADIO DRIVER
1976 M:      Stefan Schmidt <stefan@osg.samsung.com>
1977 L:      linux-wpan@vger.kernel.org
1978 S:      Maintained
1979 F:      drivers/net/ieee802154/atusb.c
1980 F:      drivers/net/ieee802154/atusb.h
1981 F:      drivers/net/ieee802154/at86rf230.h
1982
1983 AUDIT SUBSYSTEM
1984 M:      Paul Moore <paul@paul-moore.com>
1985 M:      Eric Paris <eparis@redhat.com>
1986 L:      linux-audit@redhat.com (moderated for non-subscribers)
1987 W:      http://people.redhat.com/sgrubb/audit/
1988 T:      git git://git.infradead.org/users/pcmoore/audit
1989 S:      Maintained
1990 F:      include/linux/audit.h
1991 F:      include/uapi/linux/audit.h
1992 F:      kernel/audit*
1993
1994 AUXILIARY DISPLAY DRIVERS
1995 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
1996 W:      http://miguelojeda.es/auxdisplay.htm
1997 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
1998 S:      Maintained
1999 F:      drivers/auxdisplay/
2000 F:      include/linux/cfag12864b.h
2001
2002 AVR32 ARCHITECTURE
2003 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
2004 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
2005 W:      http://www.atmel.com/products/AVR32/
2006 W:      http://mirror.egtvedt.no/avr32linux.org/
2007 W:      http://avrfreaks.net/
2008 S:      Maintained
2009 F:      arch/avr32/
2010
2011 AVR32/AT32AP MACHINE SUPPORT
2012 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
2013 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
2014 S:      Maintained
2015 F:      arch/avr32/mach-at32ap/
2016
2017 AX.25 NETWORK LAYER
2018 M:      Ralf Baechle <ralf@linux-mips.org>
2019 L:      linux-hams@vger.kernel.org
2020 W:      http://www.linux-ax25.org/
2021 S:      Maintained
2022 F:      include/uapi/linux/ax25.h
2023 F:      include/net/ax25.h
2024 F:      net/ax25/
2025
2026 AZ6007 DVB DRIVER
2027 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2028 L:      linux-media@vger.kernel.org
2029 W:      http://linuxtv.org
2030 T:      git git://linuxtv.org/media_tree.git
2031 S:      Maintained
2032 F:      drivers/media/usb/dvb-usb-v2/az6007.c
2033
2034 AZTECH FM RADIO RECEIVER DRIVER
2035 M:      Hans Verkuil <hverkuil@xs4all.nl>
2036 L:      linux-media@vger.kernel.org
2037 T:      git git://linuxtv.org/media_tree.git
2038 W:      http://linuxtv.org
2039 S:      Maintained
2040 F:      drivers/media/radio/radio-aztech*
2041
2042 B43 WIRELESS DRIVER
2043 L:      linux-wireless@vger.kernel.org
2044 L:      b43-dev@lists.infradead.org
2045 W:      http://wireless.kernel.org/en/users/Drivers/b43
2046 S:      Odd Fixes
2047 F:      drivers/net/wireless/b43/
2048
2049 B43LEGACY WIRELESS DRIVER
2050 M:      Larry Finger <Larry.Finger@lwfinger.net>
2051 L:      linux-wireless@vger.kernel.org
2052 L:      b43-dev@lists.infradead.org
2053 W:      http://wireless.kernel.org/en/users/Drivers/b43
2054 S:      Maintained
2055 F:      drivers/net/wireless/b43legacy/
2056
2057 BACKLIGHT CLASS/SUBSYSTEM
2058 M:      Jingoo Han <jingoohan1@gmail.com>
2059 M:      Lee Jones <lee.jones@linaro.org>
2060 S:      Maintained
2061 F:      drivers/video/backlight/
2062 F:      include/linux/backlight.h
2063
2064 BATMAN ADVANCED
2065 M:      Marek Lindner <mareklindner@neomailbox.ch>
2066 M:      Simon Wunderlich <sw@simonwunderlich.de>
2067 M:      Antonio Quartulli <antonio@meshcoding.com>
2068 L:      b.a.t.m.a.n@lists.open-mesh.org
2069 W:      http://www.open-mesh.org/
2070 S:      Maintained
2071 F:      net/batman-adv/
2072
2073 BAYCOM/HDLCDRV DRIVERS FOR AX.25
2074 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
2075 L:      linux-hams@vger.kernel.org
2076 W:      http://www.baycom.org/~tom/ham/ham.html
2077 S:      Maintained
2078 F:      drivers/net/hamradio/baycom*
2079
2080 BCACHE (BLOCK LAYER CACHE)
2081 M:      Kent Overstreet <kent.overstreet@gmail.com>
2082 L:      linux-bcache@vger.kernel.org
2083 W:      http://bcache.evilpiepirate.org
2084 S:      Maintained
2085 F:      drivers/md/bcache/
2086
2087 BDISP ST MEDIA DRIVER
2088 M:      Fabien Dessenne <fabien.dessenne@st.com>
2089 L:      linux-media@vger.kernel.org
2090 T:      git git://linuxtv.org/media_tree.git
2091 W:      http://linuxtv.org
2092 S:      Supported
2093 F:      drivers/media/platform/sti/bdisp
2094
2095 BEFS FILE SYSTEM
2096 S:      Orphan
2097 F:      Documentation/filesystems/befs.txt
2098 F:      fs/befs/
2099
2100 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
2101 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
2102 L:      netdev@vger.kernel.org
2103 S:      Maintained
2104 F:      drivers/net/ethernet/ec_bhf.c
2105
2106 BFS FILE SYSTEM
2107 M:      "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
2108 S:      Maintained
2109 F:      Documentation/filesystems/bfs.txt
2110 F:      fs/bfs/
2111 F:      include/uapi/linux/bfs_fs.h
2112
2113 BLACKFIN ARCHITECTURE
2114 M:      Steven Miao <realmz6@gmail.com>
2115 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2116 T:      git git://git.code.sf.net/p/adi-linux/code
2117 W:      http://blackfin.uclinux.org
2118 S:      Supported
2119 F:      arch/blackfin/
2120
2121 BLACKFIN EMAC DRIVER
2122 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2123 W:      http://blackfin.uclinux.org
2124 S:      Supported
2125 F:      drivers/net/ethernet/adi/
2126
2127 BLACKFIN RTC DRIVER
2128 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2129 W:      http://blackfin.uclinux.org
2130 S:      Supported
2131 F:      drivers/rtc/rtc-bfin.c
2132
2133 BLACKFIN SDH DRIVER
2134 M:      Sonic Zhang <sonic.zhang@analog.com>
2135 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2136 W:      http://blackfin.uclinux.org
2137 S:      Supported
2138 F:      drivers/mmc/host/bfin_sdh.c
2139
2140 BLACKFIN SERIAL 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/tty/serial/bfin_uart.c
2146
2147 BLACKFIN WATCHDOG DRIVER
2148 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2149 W:      http://blackfin.uclinux.org
2150 S:      Supported
2151 F:      drivers/watchdog/bfin_wdt.c
2152
2153 BLACKFIN I2C TWI DRIVER
2154 M:      Sonic Zhang <sonic.zhang@analog.com>
2155 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2156 W:      http://blackfin.uclinux.org/
2157 S:      Supported
2158 F:      drivers/i2c/busses/i2c-bfin-twi.c
2159
2160 BLACKFIN MEDIA DRIVER
2161 M:      Scott Jiang <scott.jiang.linux@gmail.com>
2162 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2163 W:      http://blackfin.uclinux.org/
2164 S:      Supported
2165 F:      drivers/media/platform/blackfin/
2166 F:      drivers/media/i2c/adv7183*
2167 F:      drivers/media/i2c/vs6624*
2168
2169 BLINKM RGB LED DRIVER
2170 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
2171 S:      Maintained
2172 F:      drivers/leds/leds-blinkm.c
2173
2174 BLOCK LAYER
2175 M:      Jens Axboe <axboe@kernel.dk>
2176 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
2177 S:      Maintained
2178 F:      block/
2179 F:      kernel/trace/blktrace.c
2180
2181 BLOCK2MTD DRIVER
2182 M:      Joern Engel <joern@lazybastard.org>
2183 L:      linux-mtd@lists.infradead.org
2184 S:      Maintained
2185 F:      drivers/mtd/devices/block2mtd.c
2186
2187 BLUETOOTH DRIVERS
2188 M:      Marcel Holtmann <marcel@holtmann.org>
2189 M:      Gustavo Padovan <gustavo@padovan.org>
2190 M:      Johan Hedberg <johan.hedberg@gmail.com>
2191 L:      linux-bluetooth@vger.kernel.org
2192 W:      http://www.bluez.org/
2193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2195 S:      Maintained
2196 F:      drivers/bluetooth/
2197
2198 BLUETOOTH SUBSYSTEM
2199 M:      Marcel Holtmann <marcel@holtmann.org>
2200 M:      Gustavo Padovan <gustavo@padovan.org>
2201 M:      Johan Hedberg <johan.hedberg@gmail.com>
2202 L:      linux-bluetooth@vger.kernel.org
2203 W:      http://www.bluez.org/
2204 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2205 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2206 S:      Maintained
2207 F:      net/bluetooth/
2208 F:      include/net/bluetooth/
2209
2210 BONDING DRIVER
2211 M:      Jay Vosburgh <j.vosburgh@gmail.com>
2212 M:      Veaceslav Falico <vfalico@gmail.com>
2213 M:      Andy Gospodarek <gospo@cumulusnetworks.com>
2214 L:      netdev@vger.kernel.org
2215 W:      http://sourceforge.net/projects/bonding/
2216 S:      Supported
2217 F:      drivers/net/bonding/
2218 F:      include/uapi/linux/if_bonding.h
2219
2220 BPF (Safe dynamic programs and tools)
2221 M:      Alexei Starovoitov <ast@kernel.org>
2222 L:      netdev@vger.kernel.org
2223 L:      linux-kernel@vger.kernel.org
2224 S:      Supported
2225 F:      kernel/bpf/
2226
2227 BROADCOM B44 10/100 ETHERNET DRIVER
2228 M:      Gary Zambrano <zambrano@broadcom.com>
2229 L:      netdev@vger.kernel.org
2230 S:      Supported
2231 F:      drivers/net/ethernet/broadcom/b44.*
2232
2233 BROADCOM GENET ETHERNET DRIVER
2234 M:      Florian Fainelli <f.fainelli@gmail.com>
2235 L:      netdev@vger.kernel.org
2236 S:      Supported
2237 F:      drivers/net/ethernet/broadcom/genet/
2238
2239 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
2240 M:      Sony Chacko <sony.chacko@qlogic.com>
2241 M:      Dept-HSGLinuxNICDev@qlogic.com
2242 L:      netdev@vger.kernel.org
2243 S:      Supported
2244 F:      drivers/net/ethernet/broadcom/bnx2.*
2245 F:      drivers/net/ethernet/broadcom/bnx2_*
2246
2247 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
2248 M:      Ariel Elior <ariel.elior@qlogic.com>
2249 L:      netdev@vger.kernel.org
2250 S:      Supported
2251 F:      drivers/net/ethernet/broadcom/bnx2x/
2252
2253 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
2254 M:      Florian Fainelli <f.fainelli@gmail.com>
2255 M:      Ray Jui <rjui@broadcom.com>
2256 M:      Scott Branden <sbranden@broadcom.com>
2257 L:      bcm-kernel-feedback-list@broadcom.com
2258 T:      git git://github.com/broadcom/mach-bcm
2259 S:      Maintained
2260 F:      arch/arm/mach-bcm/
2261 F:      arch/arm/boot/dts/bcm113*
2262 F:      arch/arm/boot/dts/bcm216*
2263 F:      arch/arm/boot/dts/bcm281*
2264 F:      arch/arm/configs/bcm_defconfig
2265 F:      drivers/mmc/host/sdhci-bcm-kona.c
2266 F:      drivers/clocksource/bcm_kona_timer.c
2267
2268 BROADCOM BCM2835 ARM ARCHITECTURE
2269 M:      Stephen Warren <swarren@wwwdotorg.org>
2270 M:      Lee Jones <lee@kernel.org>
2271 M:      Eric Anholt <eric@anholt.net>
2272 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
2273 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2274 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rpi/linux-rpi.git
2275 S:      Maintained
2276 N:      bcm2835
2277
2278 BROADCOM BCM33XX MIPS ARCHITECTURE
2279 M:      Kevin Cernekee <cernekee@gmail.com>
2280 L:      linux-mips@linux-mips.org
2281 S:      Maintained
2282 F:      arch/mips/bcm3384/*
2283 F:      arch/mips/include/asm/mach-bcm3384/*
2284 F:      arch/mips/kernel/*bmips*
2285
2286 BROADCOM BCM47XX MIPS ARCHITECTURE
2287 M:      Hauke Mehrtens <hauke@hauke-m.de>
2288 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2289 L:      linux-mips@linux-mips.org
2290 S:      Maintained
2291 F:      arch/mips/bcm47xx/*
2292 F:      arch/mips/include/asm/mach-bcm47xx/*
2293
2294 BROADCOM BCM5301X ARM ARCHITECTURE
2295 M:      Hauke Mehrtens <hauke@hauke-m.de>
2296 L:      linux-arm-kernel@lists.infradead.org
2297 S:      Maintained
2298 F:      arch/arm/mach-bcm/bcm_5301x.c
2299 F:      arch/arm/boot/dts/bcm5301x.dtsi
2300 F:      arch/arm/boot/dts/bcm470*
2301
2302 BROADCOM BCM63XX ARM ARCHITECTURE
2303 M:      Florian Fainelli <f.fainelli@gmail.com>
2304 L:      linux-arm-kernel@lists.infradead.org
2305 T:      git git://github.com/broadcom/arm-bcm63xx.git
2306 S:      Maintained
2307 F:      arch/arm/mach-bcm/bcm63xx.c
2308 F:      arch/arm/include/debug/bcm63xx.S
2309
2310 BROADCOM BCM63XX/BCM33XX UDC DRIVER
2311 M:      Kevin Cernekee <cernekee@gmail.com>
2312 L:      linux-usb@vger.kernel.org
2313 S:      Maintained
2314 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
2315
2316 BROADCOM BCM7XXX ARM ARCHITECTURE
2317 M:      Brian Norris <computersforpeace@gmail.com>
2318 M:      Gregory Fong <gregory.0xf0@gmail.com>
2319 M:      Florian Fainelli <f.fainelli@gmail.com>
2320 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2321 T:      git git://github.com/broadcom/stblinux.git
2322 S:      Maintained
2323 F:      arch/arm/mach-bcm/*brcmstb*
2324 F:      arch/arm/boot/dts/bcm7*.dts*
2325 F:      drivers/bus/brcmstb_gisb.c
2326 N:      brcmstb
2327
2328 BROADCOM BMIPS MIPS ARCHITECTURE
2329 M:      Kevin Cernekee <cernekee@gmail.com>
2330 M:      Florian Fainelli <f.fainelli@gmail.com>
2331 L:      linux-mips@linux-mips.org
2332 T:      git git://github.com/broadcom/stblinux.git
2333 S:      Maintained
2334 F:      arch/mips/bmips/*
2335 F:      arch/mips/include/asm/mach-bmips/*
2336 F:      arch/mips/kernel/*bmips*
2337 F:      arch/mips/boot/dts/brcm/bcm*.dts*
2338 F:      drivers/irqchip/irq-bcm7*
2339 F:      drivers/irqchip/irq-brcmstb*
2340
2341 BROADCOM TG3 GIGABIT ETHERNET DRIVER
2342 M:      Prashant Sreedharan <prashant@broadcom.com>
2343 M:      Michael Chan <mchan@broadcom.com>
2344 L:      netdev@vger.kernel.org
2345 S:      Supported
2346 F:      drivers/net/ethernet/broadcom/tg3.*
2347
2348 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2349 M:      Brett Rudley <brudley@broadcom.com>
2350 M:      Arend van Spriel <arend@broadcom.com>
2351 M:      Franky (Zhenhui) Lin <frankyl@broadcom.com>
2352 M:      Hante Meuleman <meuleman@broadcom.com>
2353 L:      linux-wireless@vger.kernel.org
2354 L:      brcm80211-dev-list@broadcom.com
2355 S:      Supported
2356 F:      drivers/net/wireless/brcm80211/
2357
2358 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
2359 M:      QLogic-Storage-Upstream@qlogic.com
2360 L:      linux-scsi@vger.kernel.org
2361 S:      Supported
2362 F:      drivers/scsi/bnx2fc/
2363
2364 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
2365 M:      QLogic-Storage-Upstream@qlogic.com
2366 L:      linux-scsi@vger.kernel.org
2367 S:      Supported
2368 F:      drivers/scsi/bnx2i/
2369
2370 BROADCOM IPROC ARM ARCHITECTURE
2371 M:      Ray Jui <rjui@broadcom.com>
2372 M:      Scott Branden <sbranden@broadcom.com>
2373 M:      Jon Mason <jonmason@broadcom.com>
2374 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2375 L:      bcm-kernel-feedback-list@broadcom.com
2376 T:      git git://github.com/broadcom/cygnus-linux.git
2377 S:      Maintained
2378 N:      iproc
2379 N:      cygnus
2380 N:      nsp
2381 N:      bcm9113*
2382 N:      bcm9583*
2383 N:      bcm9585*
2384 N:      bcm9586*
2385 N:      bcm988312
2386 N:      bcm113*
2387 N:      bcm583*
2388 N:      bcm585*
2389 N:      bcm586*
2390 N:      bcm88312
2391
2392 BROADCOM BRCMSTB GPIO DRIVER
2393 M:      Gregory Fong <gregory.0xf0@gmail.com>
2394 L:      bcm-kernel-feedback-list@broadcom.com>
2395 S:      Supported
2396 F:      drivers/gpio/gpio-brcmstb.c
2397 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
2398
2399 BROADCOM KONA GPIO DRIVER
2400 M:      Ray Jui <rjui@broadcom.com>
2401 L:      bcm-kernel-feedback-list@broadcom.com
2402 S:      Supported
2403 F:      drivers/gpio/gpio-bcm-kona.c
2404 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
2405
2406 BROADCOM NVRAM DRIVER
2407 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2408 L:      linux-mips@linux-mips.org
2409 S:      Maintained
2410 F:      drivers/firmware/broadcom/*
2411
2412 BROADCOM STB NAND FLASH DRIVER
2413 M:      Brian Norris <computersforpeace@gmail.com>
2414 L:      linux-mtd@lists.infradead.org
2415 S:      Maintained
2416 F:      drivers/mtd/nand/brcmnand/
2417
2418 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2419 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2420 L:      linux-wireless@vger.kernel.org
2421 S:      Maintained
2422 F:      drivers/bcma/
2423 F:      include/linux/bcma/
2424
2425 BROADCOM SYSTEMPORT ETHERNET DRIVER
2426 M:      Florian Fainelli <f.fainelli@gmail.com>
2427 L:      netdev@vger.kernel.org
2428 S:      Supported
2429 F:      drivers/net/ethernet/broadcom/bcmsysport.*
2430
2431 BROCADE BFA FC SCSI DRIVER
2432 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
2433 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
2434 L:      linux-scsi@vger.kernel.org
2435 S:      Supported
2436 F:      drivers/scsi/bfa/
2437
2438 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
2439 M:      Rasesh Mody <rasesh.mody@qlogic.com>
2440 L:      netdev@vger.kernel.org
2441 S:      Supported
2442 F:      drivers/net/ethernet/brocade/bna/
2443
2444 BSG (block layer generic sg v4 driver)
2445 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
2446 L:      linux-scsi@vger.kernel.org
2447 S:      Supported
2448 F:      block/bsg.c
2449 F:      include/linux/bsg.h
2450 F:      include/uapi/linux/bsg.h
2451
2452 BT87X AUDIO DRIVER
2453 M:      Clemens Ladisch <clemens@ladisch.de>
2454 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2455 T:      git git://git.alsa-project.org/alsa-kernel.git
2456 S:      Maintained
2457 F:      Documentation/sound/alsa/Bt87x.txt
2458 F:      sound/pci/bt87x.c
2459
2460 BT8XXGPIO DRIVER
2461 M:      Michael Buesch <m@bues.ch>
2462 W:      http://bu3sch.de/btgpio.php
2463 S:      Maintained
2464 F:      drivers/gpio/gpio-bt8xx.c
2465
2466 BTRFS FILE SYSTEM
2467 M:      Chris Mason <clm@fb.com>
2468 M:      Josef Bacik <jbacik@fb.com>
2469 M:      David Sterba <dsterba@suse.com>
2470 L:      linux-btrfs@vger.kernel.org
2471 W:      http://btrfs.wiki.kernel.org/
2472 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
2473 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
2474 S:      Maintained
2475 F:      Documentation/filesystems/btrfs.txt
2476 F:      fs/btrfs/
2477
2478 BTTV VIDEO4LINUX DRIVER
2479 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2480 L:      linux-media@vger.kernel.org
2481 W:      http://linuxtv.org
2482 T:      git git://linuxtv.org/media_tree.git
2483 S:      Odd fixes
2484 F:      Documentation/video4linux/bttv/
2485 F:      drivers/media/pci/bt8xx/bttv*
2486
2487 BUSLOGIC SCSI DRIVER
2488 M:      Khalid Aziz <khalid@gonehiking.org>
2489 L:      linux-scsi@vger.kernel.org
2490 S:      Maintained
2491 F:      drivers/scsi/BusLogic.*
2492 F:      drivers/scsi/FlashPoint.*
2493
2494 C-MEDIA CMI8788 DRIVER
2495 M:      Clemens Ladisch <clemens@ladisch.de>
2496 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2497 T:      git git://git.alsa-project.org/alsa-kernel.git
2498 S:      Maintained
2499 F:      sound/pci/oxygen/
2500
2501 C6X ARCHITECTURE
2502 M:      Mark Salter <msalter@redhat.com>
2503 M:      Aurelien Jacquiot <a-jacquiot@ti.com>
2504 L:      linux-c6x-dev@linux-c6x.org
2505 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
2506 S:      Maintained
2507 F:      arch/c6x/
2508
2509 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
2510 M:      David Howells <dhowells@redhat.com>
2511 L:      linux-cachefs@redhat.com
2512 S:      Supported
2513 F:      Documentation/filesystems/caching/cachefiles.txt
2514 F:      fs/cachefiles/
2515
2516 CADET FM/AM RADIO RECEIVER DRIVER
2517 M:      Hans Verkuil <hverkuil@xs4all.nl>
2518 L:      linux-media@vger.kernel.org
2519 T:      git git://linuxtv.org/media_tree.git
2520 W:      http://linuxtv.org
2521 S:      Maintained
2522 F:      drivers/media/radio/radio-cadet*
2523
2524 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
2525 M:      Jonathan Corbet <corbet@lwn.net>
2526 L:      linux-media@vger.kernel.org
2527 T:      git git://linuxtv.org/media_tree.git
2528 S:      Maintained
2529 F:      Documentation/video4linux/cafe_ccic
2530 F:      drivers/media/platform/marvell-ccic/
2531
2532 CAIF NETWORK LAYER
2533 M:      Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
2534 L:      netdev@vger.kernel.org
2535 S:      Supported
2536 F:      Documentation/networking/caif/
2537 F:      drivers/net/caif/
2538 F:      include/uapi/linux/caif/
2539 F:      include/net/caif/
2540 F:      net/caif/
2541
2542 CALGARY x86-64 IOMMU
2543 M:      Muli Ben-Yehuda <muli@il.ibm.com>
2544 M:      "Jon D. Mason" <jdmason@kudzu.us>
2545 L:      discuss@x86-64.org
2546 S:      Maintained
2547 F:      arch/x86/kernel/pci-calgary_64.c
2548 F:      arch/x86/kernel/tce_64.c
2549 F:      arch/x86/include/asm/calgary.h
2550 F:      arch/x86/include/asm/tce.h
2551
2552 CAN NETWORK LAYER
2553 M:      Oliver Hartkopp <socketcan@hartkopp.net>
2554 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2555 L:      linux-can@vger.kernel.org
2556 W:      https://github.com/linux-can
2557 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2558 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2559 S:      Maintained
2560 F:      Documentation/networking/can.txt
2561 F:      net/can/
2562 F:      include/linux/can/core.h
2563 F:      include/uapi/linux/can.h
2564 F:      include/uapi/linux/can/bcm.h
2565 F:      include/uapi/linux/can/raw.h
2566 F:      include/uapi/linux/can/gw.h
2567
2568 CAN NETWORK DRIVERS
2569 M:      Wolfgang Grandegger <wg@grandegger.com>
2570 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2571 L:      linux-can@vger.kernel.org
2572 W:      https://github.com/linux-can
2573 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2574 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2575 S:      Maintained
2576 F:      drivers/net/can/
2577 F:      include/linux/can/dev.h
2578 F:      include/linux/can/platform/
2579 F:      include/uapi/linux/can/error.h
2580 F:      include/uapi/linux/can/netlink.h
2581
2582 CAPABILITIES
2583 M:      Serge Hallyn <serge.hallyn@canonical.com>
2584 L:      linux-security-module@vger.kernel.org
2585 S:      Supported
2586 F:      include/linux/capability.h
2587 F:      include/uapi/linux/capability.h
2588 F:      security/commoncap.c
2589 F:      kernel/capability.c
2590
2591 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
2592 M:      Kevin Tsai <ktsai@capellamicro.com>
2593 S:      Maintained
2594 F:      drivers/iio/light/cm*
2595 F:      Documentation/devicetree/bindings/i2c/trivial-devices.txt
2596
2597 CAVIUM LIQUIDIO NETWORK DRIVER
2598 M:     Derek Chickles <derek.chickles@caviumnetworks.com>
2599 M:     Satanand Burla <satananda.burla@caviumnetworks.com>
2600 M:     Felix Manlunas <felix.manlunas@caviumnetworks.com>
2601 M:     Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com>
2602 L:     netdev@vger.kernel.org
2603 W:     http://www.cavium.com
2604 S:     Supported
2605 F:     drivers/net/ethernet/cavium/liquidio/
2606
2607 CC2520 IEEE-802.15.4 RADIO DRIVER
2608 M:      Varka Bhadram <varkabhadram@gmail.com>
2609 L:      linux-wpan@vger.kernel.org
2610 S:      Maintained
2611 F:      drivers/net/ieee802154/cc2520.c
2612 F:      include/linux/spi/cc2520.h
2613 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
2614
2615 CELL BROADBAND ENGINE ARCHITECTURE
2616 M:      Arnd Bergmann <arnd@arndb.de>
2617 L:      linuxppc-dev@lists.ozlabs.org
2618 W:      http://www.ibm.com/developerworks/power/cell/
2619 S:      Supported
2620 F:      arch/powerpc/include/asm/cell*.h
2621 F:      arch/powerpc/include/asm/spu*.h
2622 F:      arch/powerpc/include/uapi/asm/spu*.h
2623 F:      arch/powerpc/oprofile/*cell*
2624 F:      arch/powerpc/platforms/cell/
2625
2626 CEPH COMMON CODE (LIBCEPH)
2627 M:      Ilya Dryomov <idryomov@gmail.com>
2628 M:      "Yan, Zheng" <zyan@redhat.com>
2629 M:      Sage Weil <sage@redhat.com>
2630 L:      ceph-devel@vger.kernel.org
2631 W:      http://ceph.com/
2632 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2633 T:      git git://github.com/ceph/ceph-client.git
2634 S:      Supported
2635 F:      net/ceph/
2636 F:      include/linux/ceph/
2637 F:      include/linux/crush/
2638
2639 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
2640 M:      "Yan, Zheng" <zyan@redhat.com>
2641 M:      Sage Weil <sage@redhat.com>
2642 M:      Ilya Dryomov <idryomov@gmail.com>
2643 L:      ceph-devel@vger.kernel.org
2644 W:      http://ceph.com/
2645 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2646 T:      git git://github.com/ceph/ceph-client.git
2647 S:      Supported
2648 F:      Documentation/filesystems/ceph.txt
2649 F:      fs/ceph/
2650
2651 CERTIFICATE HANDLING:
2652 M:      David Howells <dhowells@redhat.com>
2653 M:      David Woodhouse <dwmw2@infradead.org>
2654 L:      keyrings@linux-nfs.org
2655 S:      Maintained
2656 F:      Documentation/module-signing.txt
2657 F:      certs/
2658 F:      scripts/extract-cert.c
2659
2660 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
2661 L:      linux-usb@vger.kernel.org
2662 S:      Orphan
2663 F:      Documentation/usb/WUSB-Design-overview.txt
2664 F:      Documentation/usb/wusb-cbaf
2665 F:      drivers/usb/host/hwa-hc.c
2666 F:      drivers/usb/host/whci/
2667 F:      drivers/usb/wusbcore/
2668 F:      include/linux/usb/wusb*
2669
2670 CFAG12864B LCD DRIVER
2671 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2672 W:      http://miguelojeda.es/auxdisplay.htm
2673 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2674 S:      Maintained
2675 F:      drivers/auxdisplay/cfag12864b.c
2676 F:      include/linux/cfag12864b.h
2677
2678 CFAG12864BFB LCD FRAMEBUFFER DRIVER
2679 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2680 W:      http://miguelojeda.es/auxdisplay.htm
2681 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2682 S:      Maintained
2683 F:      drivers/auxdisplay/cfag12864bfb.c
2684 F:      include/linux/cfag12864b.h
2685
2686 CFG80211 and NL80211
2687 M:      Johannes Berg <johannes@sipsolutions.net>
2688 L:      linux-wireless@vger.kernel.org
2689 W:      http://wireless.kernel.org/
2690 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2691 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
2692 S:      Maintained
2693 F:      include/uapi/linux/nl80211.h
2694 F:      include/net/cfg80211.h
2695 F:      net/wireless/*
2696 X:      net/wireless/wext*
2697
2698 CHAR and MISC DRIVERS
2699 M:      Arnd Bergmann <arnd@arndb.de>
2700 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2701 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
2702 S:      Supported
2703 F:      drivers/char/*
2704 F:      drivers/misc/*
2705 F:      include/linux/miscdevice.h
2706
2707 CHECKPATCH
2708 M:      Andy Whitcroft <apw@canonical.com>
2709 M:      Joe Perches <joe@perches.com>
2710 S:      Maintained
2711 F:      scripts/checkpatch.pl
2712
2713 CHINESE DOCUMENTATION
2714 M:      Harry Wei <harryxiyou@gmail.com>
2715 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
2716 L:      linux-kernel@zh-kernel.org (moderated for non-subscribers)
2717 S:      Maintained
2718 F:      Documentation/zh_CN/
2719
2720 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
2721 M:      Peter Chen <Peter.Chen@freescale.com>
2722 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
2723 L:      linux-usb@vger.kernel.org
2724 S:      Maintained
2725 F:      drivers/usb/chipidea/
2726
2727 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
2728 M:      Hans de Goede <hdegoede@redhat.com>
2729 L:      linux-input@vger.kernel.org
2730 S:      Maintained
2731 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
2732 F:      drivers/input/touchscreen/chipone_icn8318.c
2733
2734 CHROME HARDWARE PLATFORM SUPPORT
2735 M:      Olof Johansson <olof@lixom.net>
2736 S:      Maintained
2737 F:      drivers/platform/chrome/
2738
2739 CISCO VIC ETHERNET NIC DRIVER
2740 M:      Christian Benvenuti <benve@cisco.com>
2741 M:      Sujith Sankar <ssujith@cisco.com>
2742 M:      Govindarajulu Varadarajan <_govind@gmx.com>
2743 M:      Neel Patel <neepatel@cisco.com>
2744 S:      Supported
2745 F:      drivers/net/ethernet/cisco/enic/
2746
2747 CISCO VIC LOW LATENCY NIC DRIVER
2748 M:      Upinder Malhi <umalhi@cisco.com>
2749 S:      Supported
2750 F:      drivers/infiniband/hw/usnic
2751
2752 CIRRUS LOGIC EP93XX ETHERNET DRIVER
2753 M:      Hartley Sweeten <hsweeten@visionengravers.com>
2754 L:      netdev@vger.kernel.org
2755 S:      Maintained
2756 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
2757
2758 CIRRUS LOGIC AUDIO CODEC DRIVERS
2759 M:      Brian Austin <brian.austin@cirrus.com>
2760 M:      Paul Handrigan <Paul.Handrigan@cirrus.com>
2761 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2762 S:      Maintained
2763 F:      sound/soc/codecs/cs*
2764
2765 CLEANCACHE API
2766 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2767 L:      linux-kernel@vger.kernel.org
2768 S:      Maintained
2769 F:      mm/cleancache.c
2770 F:      include/linux/cleancache.h
2771
2772 CLK API
2773 M:      Russell King <linux@arm.linux.org.uk>
2774 L:      linux-clk@vger.kernel.org
2775 S:      Maintained
2776 F:      include/linux/clk.h
2777
2778 CLOCKSOURCE, CLOCKEVENT DRIVERS
2779 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2780 M:      Thomas Gleixner <tglx@linutronix.de>
2781 L:      linux-kernel@vger.kernel.org
2782 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
2783 S:      Supported
2784 F:      drivers/clocksource
2785
2786 CISCO FCOE HBA DRIVER
2787 M:      Hiral Patel <hiralpat@cisco.com>
2788 M:      Suma Ramars <sramars@cisco.com>
2789 M:      Brian Uchino <buchino@cisco.com>
2790 L:      linux-scsi@vger.kernel.org
2791 S:      Supported
2792 F:      drivers/scsi/fnic/
2793
2794 CISCO SCSI HBA DRIVER
2795 M:      Narsimhulu Musini <nmusini@cisco.com>
2796 M:      Sesidhar Baddela <sebaddel@cisco.com>
2797 L:      linux-scsi@vger.kernel.org
2798 S:      Supported
2799 F:      drivers/scsi/snic/
2800
2801 CMPC ACPI DRIVER
2802 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2803 M:      Daniel Oliveira Nascimento <don@syst.com.br>
2804 L:      platform-driver-x86@vger.kernel.org
2805 S:      Supported
2806 F:      drivers/platform/x86/classmate-laptop.c
2807
2808 COBALT MEDIA DRIVER
2809 M:      Hans Verkuil <hans.verkuil@cisco.com>
2810 L:      linux-media@vger.kernel.org
2811 T:      git git://linuxtv.org/media_tree.git
2812 W:      http://linuxtv.org
2813 S:      Supported
2814 F:      drivers/media/pci/cobalt/
2815
2816 COCCINELLE/Semantic Patches (SmPL)
2817 M:      Julia Lawall <Julia.Lawall@lip6.fr>
2818 M:      Gilles Muller <Gilles.Muller@lip6.fr>
2819 M:      Nicolas Palix <nicolas.palix@imag.fr>
2820 M:      Michal Marek <mmarek@suse.com>
2821 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
2822 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
2823 W:      http://coccinelle.lip6.fr/
2824 S:      Supported
2825 F:      Documentation/coccinelle.txt
2826 F:      scripts/coccinelle/
2827 F:      scripts/coccicheck
2828
2829 CODA FILE SYSTEM
2830 M:      Jan Harkes <jaharkes@cs.cmu.edu>
2831 M:      coda@cs.cmu.edu
2832 L:      codalist@coda.cs.cmu.edu
2833 W:      http://www.coda.cs.cmu.edu/
2834 S:      Maintained
2835 F:      Documentation/filesystems/coda.txt
2836 F:      fs/coda/
2837 F:      include/linux/coda*.h
2838 F:      include/uapi/linux/coda*.h
2839
2840 CODA V4L2 MEM2MEM DRIVER
2841 M:      Philipp Zabel <p.zabel@pengutronix.de>
2842 L:      linux-media@vger.kernel.org
2843 S:      Maintained
2844 F:      Documentation/devicetree/bindings/media/coda.txt
2845 F:      drivers/media/platform/coda/
2846
2847 COMMON CLK FRAMEWORK
2848 M:      Michael Turquette <mturquette@baylibre.com>
2849 M:      Stephen Boyd <sboyd@codeaurora.org>
2850 L:      linux-clk@vger.kernel.org
2851 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
2852 S:      Maintained
2853 F:      drivers/clk/
2854 X:      drivers/clk/clkdev.c
2855 F:      include/linux/clk-pr*
2856 F:      include/linux/clk/
2857
2858 COMMON INTERNET FILE SYSTEM (CIFS)
2859 M:      Steve French <sfrench@samba.org>
2860 L:      linux-cifs@vger.kernel.org
2861 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
2862 W:      http://linux-cifs.samba.org/
2863 T:      git git://git.samba.org/sfrench/cifs-2.6.git
2864 S:      Supported
2865 F:      Documentation/filesystems/cifs/
2866 F:      fs/cifs/
2867
2868 COMPACTPCI HOTPLUG CORE
2869 M:      Scott Murray <scott@spiteful.org>
2870 L:      linux-pci@vger.kernel.org
2871 S:      Maintained
2872 F:      drivers/pci/hotplug/cpci_hotplug*
2873
2874 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
2875 M:      Scott Murray <scott@spiteful.org>
2876 L:      linux-pci@vger.kernel.org
2877 S:      Maintained
2878 F:      drivers/pci/hotplug/cpcihp_zt5550.*
2879
2880 COMPACTPCI HOTPLUG GENERIC DRIVER
2881 M:      Scott Murray <scott@spiteful.org>
2882 L:      linux-pci@vger.kernel.org
2883 S:      Maintained
2884 F:      drivers/pci/hotplug/cpcihp_generic.c
2885
2886 COMPAL LAPTOP SUPPORT
2887 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
2888 L:      platform-driver-x86@vger.kernel.org
2889 S:      Maintained
2890 F:      drivers/platform/x86/compal-laptop.c
2891
2892 CONEXANT ACCESSRUNNER USB DRIVER
2893 M:      Simon Arlott <cxacru@fire.lp0.eu>
2894 L:      accessrunner-general@lists.sourceforge.net
2895 W:      http://accessrunner.sourceforge.net/
2896 S:      Maintained
2897 F:      drivers/usb/atm/cxacru.c
2898
2899 CONFIGFS
2900 M:      Joel Becker <jlbec@evilplan.org>
2901 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
2902 S:      Supported
2903 F:      fs/configfs/
2904 F:      include/linux/configfs.h
2905
2906 CONNECTOR
2907 M:      Evgeniy Polyakov <zbr@ioremap.net>
2908 L:      netdev@vger.kernel.org
2909 S:      Maintained
2910 F:      drivers/connector/
2911
2912 CONTROL GROUP (CGROUP)
2913 M:      Tejun Heo <tj@kernel.org>
2914 M:      Li Zefan <lizefan@huawei.com>
2915 M:      Johannes Weiner <hannes@cmpxchg.org>
2916 L:      cgroups@vger.kernel.org
2917 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
2918 S:      Maintained
2919 F:      Documentation/cgroups/
2920 F:      include/linux/cgroup*
2921 F:      kernel/cgroup*
2922
2923 CONTROL GROUP - CPUSET
2924 M:      Li Zefan <lizefan@huawei.com>
2925 L:      cgroups@vger.kernel.org
2926 W:      http://www.bullopensource.org/cpuset/
2927 W:      http://oss.sgi.com/projects/cpusets/
2928 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
2929 S:      Maintained
2930 F:      Documentation/cgroups/cpusets.txt
2931 F:      include/linux/cpuset.h
2932 F:      kernel/cpuset.c
2933
2934 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
2935 M:      Johannes Weiner <hannes@cmpxchg.org>
2936 M:      Michal Hocko <mhocko@kernel.org>
2937 L:      cgroups@vger.kernel.org
2938 L:      linux-mm@kvack.org
2939 S:      Maintained
2940 F:      mm/memcontrol.c
2941 F:      mm/swap_cgroup.c
2942
2943 CORETEMP HARDWARE MONITORING DRIVER
2944 M:      Fenghua Yu <fenghua.yu@intel.com>
2945 L:      lm-sensors@lm-sensors.org
2946 S:      Maintained
2947 F:      Documentation/hwmon/coretemp
2948 F:      drivers/hwmon/coretemp.c
2949
2950 COSA/SRP SYNC SERIAL DRIVER
2951 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
2952 W:      http://www.fi.muni.cz/~kas/cosa/
2953 S:      Maintained
2954 F:      drivers/net/wan/cosa*
2955
2956 CPMAC ETHERNET DRIVER
2957 M:      Florian Fainelli <florian@openwrt.org>
2958 L:      netdev@vger.kernel.org
2959 S:      Maintained
2960 F:      drivers/net/ethernet/ti/cpmac.c
2961
2962 CPU FREQUENCY DRIVERS
2963 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
2964 M:      Viresh Kumar <viresh.kumar@linaro.org>
2965 L:      linux-pm@vger.kernel.org
2966 S:      Maintained
2967 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2968 T:      git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
2969 F:      drivers/cpufreq/
2970 F:      include/linux/cpufreq.h
2971
2972 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
2973 M:      Viresh Kumar <viresh.kumar@linaro.org>
2974 M:      Sudeep Holla <sudeep.holla@arm.com>
2975 L:      linux-pm@vger.kernel.org
2976 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
2977 S:      Maintained
2978 F:      drivers/cpufreq/arm_big_little.h
2979 F:      drivers/cpufreq/arm_big_little.c
2980 F:      drivers/cpufreq/arm_big_little_dt.c
2981
2982 CPUIDLE DRIVER - ARM BIG LITTLE
2983 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2984 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2985 L:      linux-pm@vger.kernel.org
2986 L:      linux-arm-kernel@lists.infradead.org
2987 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2988 S:      Maintained
2989 F:      drivers/cpuidle/cpuidle-big_little.c
2990
2991 CPUIDLE DRIVER - ARM EXYNOS
2992 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
2993 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2994 M:      Kukjin Kim <kgene@kernel.org>
2995 L:      linux-pm@vger.kernel.org
2996 L:      linux-samsung-soc@vger.kernel.org
2997 S:      Supported
2998 F:      drivers/cpuidle/cpuidle-exynos.c
2999 F:      arch/arm/mach-exynos/pm.c
3000
3001 CPUIDLE DRIVERS
3002 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
3003 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3004 L:      linux-pm@vger.kernel.org
3005 S:      Maintained
3006 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3007 F:      drivers/cpuidle/*
3008 F:      include/linux/cpuidle.h
3009
3010 CPUID/MSR DRIVER
3011 M:      "H. Peter Anvin" <hpa@zytor.com>
3012 S:      Maintained
3013 F:      arch/x86/kernel/cpuid.c
3014 F:      arch/x86/kernel/msr.c
3015
3016 CPU POWER MONITORING SUBSYSTEM
3017 M:      Thomas Renninger <trenn@suse.com>
3018 L:      linux-pm@vger.kernel.org
3019 S:      Maintained
3020 F:      tools/power/cpupower/
3021
3022 CRAMFS FILESYSTEM
3023 W:      http://sourceforge.net/projects/cramfs/
3024 S:      Orphan / Obsolete
3025 F:      Documentation/filesystems/cramfs.txt
3026 F:      fs/cramfs/
3027
3028 CRIS PORT
3029 M:      Mikael Starvik <starvik@axis.com>
3030 M:      Jesper Nilsson <jesper.nilsson@axis.com>
3031 L:      linux-cris-kernel@axis.com
3032 W:      http://developer.axis.com
3033 S:      Maintained
3034 F:      arch/cris/
3035 F:      drivers/tty/serial/crisv10.*
3036
3037 CRYPTO API
3038 M:      Herbert Xu <herbert@gondor.apana.org.au>
3039 M:      "David S. Miller" <davem@davemloft.net>
3040 L:      linux-crypto@vger.kernel.org
3041 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
3042 S:      Maintained
3043 F:      Documentation/crypto/
3044 F:      Documentation/DocBook/crypto-API.tmpl
3045 F:      arch/*/crypto/
3046 F:      crypto/
3047 F:      drivers/crypto/
3048 F:      include/crypto/
3049
3050 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
3051 M:      Neil Horman <nhorman@tuxdriver.com>
3052 L:      linux-crypto@vger.kernel.org
3053 S:      Maintained
3054 F:      crypto/ansi_cprng.c
3055 F:      crypto/rng.c
3056
3057 CS5535 Audio ALSA driver
3058 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
3059 S:      Maintained
3060 F:      sound/pci/cs5535audio/
3061
3062 CW1200 WLAN driver
3063 M:      Solomon Peachy <pizza@shaftnet.org>
3064 S:      Maintained
3065 F:      drivers/net/wireless/cw1200/
3066
3067 CX18 VIDEO4LINUX DRIVER
3068 M:      Andy Walls <awalls@md.metrocast.net>
3069 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
3070 L:      linux-media@vger.kernel.org
3071 T:      git git://linuxtv.org/media_tree.git
3072 W:      http://linuxtv.org
3073 W:      http://www.ivtvdriver.org/index.php/Cx18
3074 S:      Maintained
3075 F:      Documentation/video4linux/cx18.txt
3076 F:      drivers/media/pci/cx18/
3077 F:      include/uapi/linux/ivtv*
3078
3079 CX2341X MPEG ENCODER HELPER MODULE
3080 M:      Hans Verkuil <hverkuil@xs4all.nl>
3081 L:      linux-media@vger.kernel.org
3082 T:      git git://linuxtv.org/media_tree.git
3083 W:      http://linuxtv.org
3084 S:      Maintained
3085 F:      drivers/media/common/cx2341x*
3086 F:      include/media/cx2341x*
3087
3088 CX24120 MEDIA DRIVER
3089 M:      Jemma Denson <jdenson@gmail.com>
3090 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
3091 L:      linux-media@vger.kernel.org
3092 W:      http://linuxtv.org/
3093 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3094 S:      Maintained
3095 F:      drivers/media/dvb-frontends/cx24120*
3096
3097 CX88 VIDEO4LINUX DRIVER
3098 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3099 L:      linux-media@vger.kernel.org
3100 W:      http://linuxtv.org
3101 T:      git git://linuxtv.org/media_tree.git
3102 S:      Odd fixes
3103 F:      Documentation/video4linux/cx88/
3104 F:      drivers/media/pci/cx88/
3105
3106 CXD2820R MEDIA DRIVER
3107 M:      Antti Palosaari <crope@iki.fi>
3108 L:      linux-media@vger.kernel.org
3109 W:      http://linuxtv.org/
3110 W:      http://palosaari.fi/linux/
3111 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3112 T:      git git://linuxtv.org/anttip/media_tree.git
3113 S:      Maintained
3114 F:      drivers/media/dvb-frontends/cxd2820r*
3115
3116 CXGB3 ETHERNET DRIVER (CXGB3)
3117 M:      Santosh Raspatur <santosh@chelsio.com>
3118 L:      netdev@vger.kernel.org
3119 W:      http://www.chelsio.com
3120 S:      Supported
3121 F:      drivers/net/ethernet/chelsio/cxgb3/
3122
3123 CXGB3 ISCSI DRIVER (CXGB3I)
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/cxgb3i
3129
3130 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
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/cxgb3/
3136
3137 CXGB4 ETHERNET DRIVER (CXGB4)
3138 M:      Hariprasad S <hariprasad@chelsio.com>
3139 L:      netdev@vger.kernel.org
3140 W:      http://www.chelsio.com
3141 S:      Supported
3142 F:      drivers/net/ethernet/chelsio/cxgb4/
3143
3144 CXGB4 ISCSI DRIVER (CXGB4I)
3145 M:      Karen Xie <kxie@chelsio.com>
3146 L:      linux-scsi@vger.kernel.org
3147 W:      http://www.chelsio.com
3148 S:      Supported
3149 F:      drivers/scsi/cxgbi/cxgb4i
3150
3151 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
3152 M:      Steve Wise <swise@chelsio.com>
3153 L:      linux-rdma@vger.kernel.org
3154 W:      http://www.openfabrics.org
3155 S:      Supported
3156 F:      drivers/infiniband/hw/cxgb4/
3157
3158 CXGB4VF ETHERNET DRIVER (CXGB4VF)
3159 M:      Casey Leedom <leedom@chelsio.com>
3160 L:      netdev@vger.kernel.org
3161 W:      http://www.chelsio.com
3162 S:      Supported
3163 F:      drivers/net/ethernet/chelsio/cxgb4vf/
3164
3165 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
3166 M:      Ian Munsie <imunsie@au1.ibm.com>
3167 M:      Michael Neuling <mikey@neuling.org>
3168 L:      linuxppc-dev@lists.ozlabs.org
3169 S:      Supported
3170 F:      drivers/misc/cxl/
3171 F:      include/misc/cxl*
3172 F:      include/uapi/misc/cxl.h
3173 F:      Documentation/powerpc/cxl.txt
3174 F:      Documentation/powerpc/cxl.txt
3175 F:      Documentation/ABI/testing/sysfs-class-cxl
3176
3177 STMMAC ETHERNET DRIVER
3178 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
3179 L:      netdev@vger.kernel.org
3180 W:      http://www.stlinux.com
3181 S:      Supported
3182 F:      drivers/net/ethernet/stmicro/stmmac/
3183
3184 CYBERPRO FB DRIVER
3185 M:      Russell King <linux@arm.linux.org.uk>
3186 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3187 W:      http://www.arm.linux.org.uk/
3188 S:      Maintained
3189 F:      drivers/video/fbdev/cyber2000fb.*
3190
3191 CYCLADES ASYNC MUX DRIVER
3192 W:      http://www.cyclades.com/
3193 S:      Orphan
3194 F:      drivers/tty/cyclades.c
3195 F:      include/linux/cyclades.h
3196 F:      include/uapi/linux/cyclades.h
3197
3198 CYCLADES PC300 DRIVER
3199 W:      http://www.cyclades.com/
3200 S:      Orphan
3201 F:      drivers/net/wan/pc300*
3202
3203 CYPRESS_FIRMWARE MEDIA DRIVER
3204 M:      Antti Palosaari <crope@iki.fi>
3205 L:      linux-media@vger.kernel.org
3206 W:      http://linuxtv.org/
3207 W:      http://palosaari.fi/linux/
3208 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3209 T:      git git://linuxtv.org/anttip/media_tree.git
3210 S:      Maintained
3211 F:      drivers/media/common/cypress_firmware*
3212
3213 CYTTSP TOUCHSCREEN DRIVER
3214 M:      Ferruh Yigit <fery@cypress.com>
3215 L:      linux-input@vger.kernel.org
3216 S:      Supported
3217 F:      drivers/input/touchscreen/cyttsp*
3218 F:      include/linux/input/cyttsp.h
3219
3220 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
3221 M:      Joshua Kinard <kumba@gentoo.org>
3222 S:      Maintained
3223 F:      drivers/rtc/rtc-ds1685.c
3224 F:      include/linux/rtc/ds1685.h
3225
3226 DAMA SLAVE for AX.25
3227 M:      Joerg Reuter <jreuter@yaina.de>
3228 W:      http://yaina.de/jreuter/
3229 W:      http://www.qsl.net/dl1bke/
3230 L:      linux-hams@vger.kernel.org
3231 S:      Maintained
3232 F:      net/ax25/af_ax25.c
3233 F:      net/ax25/ax25_dev.c
3234 F:      net/ax25/ax25_ds_*
3235 F:      net/ax25/ax25_in.c
3236 F:      net/ax25/ax25_out.c
3237 F:      net/ax25/ax25_timer.c
3238 F:      net/ax25/sysctl_net_ax25.c
3239
3240 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
3241 L:      netdev@vger.kernel.org
3242 S:      Orphan
3243 F:      Documentation/networking/dmfe.txt
3244 F:      drivers/net/ethernet/dec/tulip/dmfe.c
3245
3246 DC390/AM53C974 SCSI driver
3247 M:      Hannes Reinecke <hare@suse.com>
3248 L:      linux-scsi@vger.kernel.org
3249 S:      Maintained
3250 F:      drivers/scsi/am53c974.c
3251
3252 DC395x SCSI driver
3253 M:      Oliver Neukum <oliver@neukum.org>
3254 M:      Ali Akcaagac <aliakc@web.de>
3255 M:      Jamie Lenehan <lenehan@twibble.org>
3256 L:      dc395x@twibble.org
3257 W:      http://twibble.org/dist/dc395x/
3258 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
3259 S:      Maintained
3260 F:      Documentation/scsi/dc395x.txt
3261 F:      drivers/scsi/dc395x.*
3262
3263 DCCP PROTOCOL
3264 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
3265 L:      dccp@vger.kernel.org
3266 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
3267 S:      Maintained
3268 F:      include/linux/dccp.h
3269 F:      include/uapi/linux/dccp.h
3270 F:      include/linux/tfrc.h
3271 F:      net/dccp/
3272
3273 DECnet NETWORK LAYER
3274 W:      http://linux-decnet.sourceforge.net
3275 L:      linux-decnet-user@lists.sourceforge.net
3276 S:      Orphan
3277 F:      Documentation/networking/decnet.txt
3278 F:      net/decnet/
3279
3280 DECSTATION PLATFORM SUPPORT
3281 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3282 L:      linux-mips@linux-mips.org
3283 W:      http://www.linux-mips.org/wiki/DECstation
3284 S:      Maintained
3285 F:      arch/mips/dec/
3286 F:      arch/mips/include/asm/dec/
3287 F:      arch/mips/include/asm/mach-dec/
3288
3289 DEFXX FDDI NETWORK DRIVER
3290 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3291 S:      Maintained
3292 F:      drivers/net/fddi/defxx.*
3293
3294 DELL LAPTOP DRIVER
3295 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3296 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3297 L:      platform-driver-x86@vger.kernel.org
3298 S:      Maintained
3299 F:      drivers/platform/x86/dell-laptop.c
3300
3301 DELL LAPTOP RBTN DRIVER
3302 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3303 S:      Maintained
3304 F:      drivers/platform/x86/dell-rbtn.*
3305
3306 DELL LAPTOP FREEFALL DRIVER
3307 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3308 S:      Maintained
3309 F:      drivers/platform/x86/dell-smo8800.c
3310
3311 DELL LAPTOP SMM DRIVER
3312 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3313 S:      Maintained
3314 F:      drivers/hwmon/dell-smm-hwmon.c
3315 F:      include/uapi/linux/i8k.h
3316
3317 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
3318 M:      Doug Warzecha <Douglas_Warzecha@dell.com>
3319 S:      Maintained
3320 F:      Documentation/dcdbas.txt
3321 F:      drivers/firmware/dcdbas.*
3322
3323 DELL WMI EXTRAS DRIVER
3324 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3325 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3326 S:      Maintained
3327 F:      drivers/platform/x86/dell-wmi.c
3328
3329 DESIGNWARE USB2 DRD IP DRIVER
3330 M:      John Youn <johnyoun@synopsys.com>
3331 L:      linux-usb@vger.kernel.org
3332 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3333 S:      Maintained
3334 F:      drivers/usb/dwc2/
3335
3336 DESIGNWARE USB3 DRD IP DRIVER
3337 M:      Felipe Balbi <balbi@ti.com>
3338 L:      linux-usb@vger.kernel.org
3339 L:      linux-omap@vger.kernel.org
3340 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3341 S:      Maintained
3342 F:      drivers/usb/dwc3/
3343
3344 DEVICE COREDUMP (DEV_COREDUMP)
3345 M:      Johannes Berg <johannes@sipsolutions.net>
3346 L:      linux-kernel@vger.kernel.org
3347 S:      Maintained
3348 F:      drivers/base/devcoredump.c
3349 F:      include/linux/devcoredump.h
3350
3351 DEVICE FREQUENCY (DEVFREQ)
3352 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
3353 M:      Kyungmin Park <kyungmin.park@samsung.com>
3354 L:      linux-pm@vger.kernel.org
3355 S:      Maintained
3356 F:      drivers/devfreq/
3357
3358 DEVICE NUMBER REGISTRY
3359 M:      Torben Mathiasen <device@lanana.org>
3360 W:      http://lanana.org/docs/device-list/index.html
3361 S:      Maintained
3362
3363 DEVICE-MAPPER  (LVM)
3364 M:      Alasdair Kergon <agk@redhat.com>
3365 M:      Mike Snitzer <snitzer@redhat.com>
3366 M:      dm-devel@redhat.com
3367 L:      dm-devel@redhat.com
3368 W:      http://sources.redhat.com/dm
3369 Q:      http://patchwork.kernel.org/project/dm-devel/list/
3370 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
3371 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
3372 S:      Maintained
3373 F:      Documentation/device-mapper/
3374 F:      drivers/md/dm*
3375 F:      drivers/md/persistent-data/
3376 F:      include/linux/device-mapper.h
3377 F:      include/linux/dm-*.h
3378 F:      include/uapi/linux/dm-*.h
3379
3380 DIALOG SEMICONDUCTOR DRIVERS
3381 M:      Support Opensource <support.opensource@diasemi.com>
3382 W:      http://www.dialog-semiconductor.com/products
3383 S:      Supported
3384 F:      Documentation/hwmon/da90??
3385 F:      drivers/gpio/gpio-da90??.c
3386 F:      drivers/hwmon/da90??-hwmon.c
3387 F:      drivers/iio/adc/da91??-*.c
3388 F:      drivers/input/misc/da90??_onkey.c
3389 F:      drivers/input/touchscreen/da9052_tsi.c
3390 F:      drivers/leds/leds-da90??.c
3391 F:      drivers/mfd/da903x.c
3392 F:      drivers/mfd/da90??-*.c
3393 F:      drivers/mfd/da91??-*.c
3394 F:      drivers/power/da9052-battery.c
3395 F:      drivers/power/da91??-*.c
3396 F:      drivers/regulator/da903x.c
3397 F:      drivers/regulator/da9???-regulator.[ch]
3398 F:      drivers/rtc/rtc-da90??.c
3399 F:      drivers/video/backlight/da90??_bl.c
3400 F:      drivers/watchdog/da90??_wdt.c
3401 F:      include/linux/mfd/da903x.h
3402 F:      include/linux/mfd/da9052/
3403 F:      include/linux/mfd/da9055/
3404 F:      include/linux/mfd/da9063/
3405 F:      include/linux/mfd/da9150/
3406 F:      include/sound/da[79]*.h
3407 F:      sound/soc/codecs/da[79]*.[ch]
3408
3409 DIGI NEO AND CLASSIC PCI PRODUCTS
3410 M:      Lidza Louina <lidza.louina@gmail.com>
3411 M:      Mark Hounschell <markh@compro.net>
3412 L:      driverdev-devel@linuxdriverproject.org
3413 S:      Maintained
3414 F:      drivers/staging/dgnc/
3415
3416 DIGI EPCA PCI PRODUCTS
3417 M:      Lidza Louina <lidza.louina@gmail.com>
3418 M:      Daeseok Youn <daeseok.youn@gmail.com>
3419 L:      driverdev-devel@linuxdriverproject.org
3420 S:      Maintained
3421 F:      drivers/staging/dgap/
3422
3423 DIOLAN U2C-12 I2C DRIVER
3424 M:      Guenter Roeck <linux@roeck-us.net>
3425 L:      linux-i2c@vger.kernel.org
3426 S:      Maintained
3427 F:      drivers/i2c/busses/i2c-diolan-u2c.c
3428
3429 DIRECT ACCESS (DAX)
3430 M:      Matthew Wilcox <willy@linux.intel.com>
3431 L:      linux-fsdevel@vger.kernel.org
3432 S:      Supported
3433 F:      fs/dax.c
3434
3435 DIRECTORY NOTIFICATION (DNOTIFY)
3436 M:      Eric Paris <eparis@parisplace.org>
3437 S:      Maintained
3438 F:      Documentation/filesystems/dnotify.txt
3439 F:      fs/notify/dnotify/
3440 F:      include/linux/dnotify.h
3441
3442 DISK GEOMETRY AND PARTITION HANDLING
3443 M:      Andries Brouwer <aeb@cwi.nl>
3444 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
3445 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
3446 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
3447 S:      Maintained
3448
3449 DISKQUOTA
3450 M:      Jan Kara <jack@suse.com>
3451 S:      Maintained
3452 F:      Documentation/filesystems/quota.txt
3453 F:      fs/quota/
3454 F:      include/linux/quota*.h
3455 F:      include/uapi/linux/quota*.h
3456
3457 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
3458 M:      Bernie Thompson <bernie@plugable.com>
3459 L:      linux-fbdev@vger.kernel.org
3460 S:      Maintained
3461 W:      http://plugable.com/category/projects/udlfb/
3462 F:      drivers/video/fbdev/udlfb.c
3463 F:      include/video/udlfb.h
3464 F:      Documentation/fb/udlfb.txt
3465
3466 DISTRIBUTED LOCK MANAGER (DLM)
3467 M:      Christine Caulfield <ccaulfie@redhat.com>
3468 M:      David Teigland <teigland@redhat.com>
3469 L:      cluster-devel@redhat.com
3470 W:      http://sources.redhat.com/cluster/
3471 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
3472 S:      Supported
3473 F:      fs/dlm/
3474
3475 DMA BUFFER SHARING FRAMEWORK
3476 M:      Sumit Semwal <sumit.semwal@linaro.org>
3477 S:      Maintained
3478 L:      linux-media@vger.kernel.org
3479 L:      dri-devel@lists.freedesktop.org
3480 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
3481 F:      drivers/dma-buf/
3482 F:      include/linux/dma-buf*
3483 F:      include/linux/reservation.h
3484 F:      include/linux/*fence.h
3485 F:      Documentation/dma-buf-sharing.txt
3486 T:      git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
3487
3488 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
3489 M:      Vinod Koul <vinod.koul@intel.com>
3490 L:      dmaengine@vger.kernel.org
3491 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
3492 S:      Maintained
3493 F:      drivers/dma/
3494 F:      include/linux/dmaengine.h
3495 F:      Documentation/dmaengine/
3496 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
3497
3498 DME1737 HARDWARE MONITOR DRIVER
3499 M:      Juerg Haefliger <juergh@gmail.com>
3500 L:      lm-sensors@lm-sensors.org
3501 S:      Maintained
3502 F:      Documentation/hwmon/dme1737
3503 F:      drivers/hwmon/dme1737.c
3504
3505 DMI/SMBIOS SUPPORT
3506 M:      Jean Delvare <jdelvare@suse.com>
3507 S:      Maintained
3508 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
3509 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
3510 F:      drivers/firmware/dmi-id.c
3511 F:      drivers/firmware/dmi_scan.c
3512 F:      include/linux/dmi.h
3513
3514 DOCUMENTATION
3515 M:      Jonathan Corbet <corbet@lwn.net>
3516 L:      linux-doc@vger.kernel.org
3517 S:      Maintained
3518 F:      Documentation/
3519 X:      Documentation/ABI/
3520 X:      Documentation/devicetree/
3521 X:      Documentation/acpi
3522 X:      Documentation/power
3523 X:      Documentation/spi
3524 X:      Documentation/DocBook/media
3525 T:      git git://git.lwn.net/linux-2.6.git docs-next
3526
3527 DOUBLETALK DRIVER
3528 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
3529 L:      blinux-list@redhat.com
3530 S:      Maintained
3531 F:      drivers/char/dtlk.c
3532 F:      include/linux/dtlk.h
3533
3534 DPT_I2O SCSI RAID DRIVER
3535 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
3536 L:      linux-scsi@vger.kernel.org
3537 W:      http://www.adaptec.com/
3538 S:      Maintained
3539 F:      drivers/scsi/dpt*
3540 F:      drivers/scsi/dpt/
3541
3542 DRBD DRIVER
3543 P:      Philipp Reisner
3544 P:      Lars Ellenberg
3545 M:      drbd-dev@lists.linbit.com
3546 L:      drbd-user@lists.linbit.com
3547 W:      http://www.drbd.org
3548 T:      git git://git.drbd.org/linux-2.6-drbd.git drbd
3549 T:      git git://git.drbd.org/drbd-8.3.git
3550 S:      Supported
3551 F:      drivers/block/drbd/
3552 F:      lib/lru_cache.c
3553 F:      Documentation/blockdev/drbd/
3554
3555 DRIVER CORE, KOBJECTS, DEBUGFS, KERNFS AND SYSFS
3556 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3557 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
3558 S:      Supported
3559 F:      Documentation/kobject.txt
3560 F:      drivers/base/
3561 F:      fs/debugfs/
3562 F:      fs/kernfs/
3563 F:      fs/sysfs/
3564 F:      include/linux/debugfs.h
3565 F:      include/linux/kobj*
3566 F:      lib/kobj*
3567
3568 DRM DRIVERS
3569 M:      David Airlie <airlied@linux.ie>
3570 L:      dri-devel@lists.freedesktop.org
3571 T:      git git://people.freedesktop.org/~airlied/linux
3572 S:      Maintained
3573 F:      drivers/gpu/drm/
3574 F:      drivers/gpu/vga/
3575 F:      include/drm/
3576 F:      include/uapi/drm/
3577
3578 RADEON DRM DRIVERS
3579 M:      Alex Deucher <alexander.deucher@amd.com>
3580 M:      Christian König <christian.koenig@amd.com>
3581 L:      dri-devel@lists.freedesktop.org
3582 T:      git git://people.freedesktop.org/~agd5f/linux
3583 S:      Supported
3584 F:      drivers/gpu/drm/radeon/
3585 F:      include/uapi/drm/radeon*
3586
3587 DRM PANEL DRIVERS
3588 M:      Thierry Reding <thierry.reding@gmail.com>
3589 L:      dri-devel@lists.freedesktop.org
3590 T:      git git://anongit.freedesktop.org/tegra/linux.git
3591 S:      Maintained
3592 F:      drivers/gpu/drm/drm_panel.c
3593 F:      drivers/gpu/drm/panel/
3594 F:      include/drm/drm_panel.h
3595 F:      Documentation/devicetree/bindings/panel/
3596
3597 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
3598 M:      Daniel Vetter <daniel.vetter@intel.com>
3599 M:      Jani Nikula <jani.nikula@linux.intel.com>
3600 L:      intel-gfx@lists.freedesktop.org
3601 L:      dri-devel@lists.freedesktop.org
3602 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
3603 T:      git git://anongit.freedesktop.org/drm-intel
3604 S:      Supported
3605 F:      drivers/gpu/drm/i915/
3606 F:      include/drm/i915*
3607 F:      include/uapi/drm/i915*
3608
3609 DRM DRIVERS FOR EXYNOS
3610 M:      Inki Dae <inki.dae@samsung.com>
3611 M:      Joonyoung Shim <jy0922.shim@samsung.com>
3612 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
3613 M:      Kyungmin Park <kyungmin.park@samsung.com>
3614 L:      dri-devel@lists.freedesktop.org
3615 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
3616 S:      Supported
3617 F:      drivers/gpu/drm/exynos/
3618 F:      include/drm/exynos*
3619 F:      include/uapi/drm/exynos*
3620
3621 DRM DRIVERS FOR FREESCALE DCU
3622 M:      Jianwei Wang <jianwei.wang.chn@gmail.com>
3623 M:      Alison Wang <alison.wang@freescale.com>
3624 L:      dri-devel@lists.freedesktop.org
3625 S:      Supported
3626 F:      drivers/gpu/drm/fsl-dcu/
3627 F:      Documentation/devicetree/bindings/video/fsl,dcu.txt
3628 F:      Documentation/devicetree/bindings/panel/nec,nl4827hc19_05b.txt
3629
3630 DRM DRIVERS FOR FREESCALE IMX
3631 M:      Philipp Zabel <p.zabel@pengutronix.de>
3632 L:      dri-devel@lists.freedesktop.org
3633 S:      Maintained
3634 F:      drivers/gpu/drm/imx/
3635 F:      Documentation/devicetree/bindings/drm/imx/
3636
3637 DRM DRIVERS FOR NVIDIA TEGRA
3638 M:      Thierry Reding <thierry.reding@gmail.com>
3639 M:      Terje Bergström <tbergstrom@nvidia.com>
3640 L:      dri-devel@lists.freedesktop.org
3641 L:      linux-tegra@vger.kernel.org
3642 T:      git git://anongit.freedesktop.org/tegra/linux.git
3643 S:      Supported
3644 F:      drivers/gpu/drm/tegra/
3645 F:      drivers/gpu/host1x/
3646 F:      include/linux/host1x.h
3647 F:      include/uapi/drm/tegra_drm.h
3648 F:      Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt
3649
3650 DRM DRIVERS FOR RENESAS
3651 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
3652 L:      dri-devel@lists.freedesktop.org
3653 L:      linux-sh@vger.kernel.org
3654 T:      git git://people.freedesktop.org/~airlied/linux
3655 S:      Supported
3656 F:      drivers/gpu/drm/rcar-du/
3657 F:      drivers/gpu/drm/shmobile/
3658 F:      include/linux/platform_data/shmob_drm.h
3659
3660 DRM DRIVERS FOR ROCKCHIP
3661 M:      Mark Yao <mark.yao@rock-chips.com>
3662 L:      dri-devel@lists.freedesktop.org
3663 S:      Maintained
3664 F:      drivers/gpu/drm/rockchip/
3665 F:      Documentation/devicetree/bindings/video/rockchip*
3666
3667 DRM DRIVERS FOR STI
3668 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
3669 M:      Vincent Abriou <vincent.abriou@st.com>
3670 L:      dri-devel@lists.freedesktop.org
3671 T:      git http://git.linaro.org/people/benjamin.gaignard/kernel.git
3672 S:      Maintained
3673 F:      drivers/gpu/drm/sti
3674 F:      Documentation/devicetree/bindings/gpu/st,stih4xx.txt
3675
3676 DSBR100 USB FM RADIO DRIVER
3677 M:      Alexey Klimov <klimov.linux@gmail.com>
3678 L:      linux-media@vger.kernel.org
3679 T:      git git://linuxtv.org/media_tree.git
3680 S:      Maintained
3681 F:      drivers/media/radio/dsbr100.c
3682
3683 DSCC4 DRIVER
3684 M:      Francois Romieu <romieu@fr.zoreil.com>
3685 L:      netdev@vger.kernel.org
3686 S:      Maintained
3687 F:      drivers/net/wan/dscc4.c
3688
3689 DT3155 MEDIA DRIVER
3690 M:      Hans Verkuil <hverkuil@xs4all.nl>
3691 L:      linux-media@vger.kernel.org
3692 T:      git git://linuxtv.org/media_tree.git
3693 W:      http://linuxtv.org
3694 S:      Odd Fixes
3695 F:      drivers/media/pci/dt3155/
3696
3697 DVB_USB_AF9015 MEDIA DRIVER
3698 M:      Antti Palosaari <crope@iki.fi>
3699 L:      linux-media@vger.kernel.org
3700 W:      http://linuxtv.org/
3701 W:      http://palosaari.fi/linux/
3702 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3703 T:      git git://linuxtv.org/anttip/media_tree.git
3704 S:      Maintained
3705 F:      drivers/media/usb/dvb-usb-v2/af9015*
3706
3707 DVB_USB_AF9035 MEDIA DRIVER
3708 M:      Antti Palosaari <crope@iki.fi>
3709 L:      linux-media@vger.kernel.org
3710 W:      http://linuxtv.org/
3711 W:      http://palosaari.fi/linux/
3712 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3713 T:      git git://linuxtv.org/anttip/media_tree.git
3714 S:      Maintained
3715 F:      drivers/media/usb/dvb-usb-v2/af9035*
3716
3717 DVB_USB_ANYSEE MEDIA DRIVER
3718 M:      Antti Palosaari <crope@iki.fi>
3719 L:      linux-media@vger.kernel.org
3720 W:      http://linuxtv.org/
3721 W:      http://palosaari.fi/linux/
3722 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3723 T:      git git://linuxtv.org/anttip/media_tree.git
3724 S:      Maintained
3725 F:      drivers/media/usb/dvb-usb-v2/anysee*
3726
3727 DVB_USB_AU6610 MEDIA DRIVER
3728 M:      Antti Palosaari <crope@iki.fi>
3729 L:      linux-media@vger.kernel.org
3730 W:      http://linuxtv.org/
3731 W:      http://palosaari.fi/linux/
3732 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3733 T:      git git://linuxtv.org/anttip/media_tree.git
3734 S:      Maintained
3735 F:      drivers/media/usb/dvb-usb-v2/au6610*
3736
3737 DVB_USB_CE6230 MEDIA DRIVER
3738 M:      Antti Palosaari <crope@iki.fi>
3739 L:      linux-media@vger.kernel.org
3740 W:      http://linuxtv.org/
3741 W:      http://palosaari.fi/linux/
3742 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3743 T:      git git://linuxtv.org/anttip/media_tree.git
3744 S:      Maintained
3745 F:      drivers/media/usb/dvb-usb-v2/ce6230*
3746
3747 DVB_USB_CXUSB MEDIA DRIVER
3748 M:      Michael Krufky <mkrufky@linuxtv.org>
3749 L:      linux-media@vger.kernel.org
3750 W:      http://linuxtv.org/
3751 W:      http://github.com/mkrufky
3752 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3753 T:      git git://linuxtv.org/media_tree.git
3754 S:      Maintained
3755 F:      drivers/media/usb/dvb-usb/cxusb*
3756
3757 DVB_USB_EC168 MEDIA DRIVER
3758 M:      Antti Palosaari <crope@iki.fi>
3759 L:      linux-media@vger.kernel.org
3760 W:      http://linuxtv.org/
3761 W:      http://palosaari.fi/linux/
3762 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3763 T:      git git://linuxtv.org/anttip/media_tree.git
3764 S:      Maintained
3765 F:      drivers/media/usb/dvb-usb-v2/ec168*
3766
3767 DVB_USB_GL861 MEDIA DRIVER
3768 M:      Antti Palosaari <crope@iki.fi>
3769 L:      linux-media@vger.kernel.org
3770 W:      http://linuxtv.org/
3771 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3772 T:      git git://linuxtv.org/anttip/media_tree.git
3773 S:      Maintained
3774 F:      drivers/media/usb/dvb-usb-v2/gl861*
3775
3776 DVB_USB_MXL111SF MEDIA DRIVER
3777 M:      Michael Krufky <mkrufky@linuxtv.org>
3778 L:      linux-media@vger.kernel.org
3779 W:      http://linuxtv.org/
3780 W:      http://github.com/mkrufky
3781 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3782 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
3783 S:      Maintained
3784 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
3785
3786 DVB_USB_RTL28XXU MEDIA DRIVER
3787 M:      Antti Palosaari <crope@iki.fi>
3788 L:      linux-media@vger.kernel.org
3789 W:      http://linuxtv.org/
3790 W:      http://palosaari.fi/linux/
3791 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3792 T:      git git://linuxtv.org/anttip/media_tree.git
3793 S:      Maintained
3794 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
3795
3796 DVB_USB_V2 MEDIA DRIVER
3797 M:      Antti Palosaari <crope@iki.fi>
3798 L:      linux-media@vger.kernel.org
3799 W:      http://linuxtv.org/
3800 W:      http://palosaari.fi/linux/
3801 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3802 T:      git git://linuxtv.org/anttip/media_tree.git
3803 S:      Maintained
3804 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
3805 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
3806
3807 DYNAMIC DEBUG
3808 M:      Jason Baron <jbaron@akamai.com>
3809 S:      Maintained
3810 F:      lib/dynamic_debug.c
3811 F:      include/linux/dynamic_debug.h
3812
3813 DZ DECSTATION DZ11 SERIAL DRIVER
3814 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3815 S:      Maintained
3816 F:      drivers/tty/serial/dz.*
3817
3818 E3X0 POWER BUTTON DRIVER
3819 M:      Moritz Fischer <moritz.fischer@ettus.com>
3820 L:      usrp-users@lists.ettus.com
3821 W:      http://www.ettus.com
3822 S:      Supported
3823 F:      drivers/input/misc/e3x0-button.c
3824 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
3825
3826 E4000 MEDIA DRIVER
3827 M:      Antti Palosaari <crope@iki.fi>
3828 L:      linux-media@vger.kernel.org
3829 W:      http://linuxtv.org/
3830 W:      http://palosaari.fi/linux/
3831 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3832 T:      git git://linuxtv.org/anttip/media_tree.git
3833 S:      Maintained
3834 F:      drivers/media/tuners/e4000*
3835
3836 EATA ISA/EISA/PCI SCSI DRIVER
3837 M:      Dario Ballabio <ballabio_dario@emc.com>
3838 L:      linux-scsi@vger.kernel.org
3839 S:      Maintained
3840 F:      drivers/scsi/eata.c
3841
3842 EC100 MEDIA DRIVER
3843 M:      Antti Palosaari <crope@iki.fi>
3844 L:      linux-media@vger.kernel.org
3845 W:      http://linuxtv.org/
3846 W:      http://palosaari.fi/linux/
3847 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3848 T:      git git://linuxtv.org/anttip/media_tree.git
3849 S:      Maintained
3850 F:      drivers/media/dvb-frontends/ec100*
3851
3852 ECRYPT FILE SYSTEM
3853 M:      Tyler Hicks <tyhicks@canonical.com>
3854 L:      ecryptfs@vger.kernel.org
3855 W:      http://ecryptfs.org
3856 W:      https://launchpad.net/ecryptfs
3857 S:      Supported
3858 F:      Documentation/filesystems/ecryptfs.txt
3859 F:      fs/ecryptfs/
3860
3861 EDAC-CORE
3862 M:      Doug Thompson <dougthompson@xmission.com>
3863 M:      Borislav Petkov <bp@alien8.de>
3864 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3865 L:      linux-edac@vger.kernel.org
3866 W:      bluesmoke.sourceforge.net
3867 T:      git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git#for-next
3868 T:      git://git.kernel.org/pub/linux/kernel/git/mchehab/linux-edac.git#linux_next
3869 S:      Supported
3870 F:      Documentation/edac.txt
3871 F:      drivers/edac/
3872 F:      include/linux/edac.h
3873
3874 EDAC-AMD64
3875 M:      Doug Thompson <dougthompson@xmission.com>
3876 M:      Borislav Petkov <bp@alien8.de>
3877 L:      linux-edac@vger.kernel.org
3878 W:      bluesmoke.sourceforge.net
3879 S:      Maintained
3880 F:      drivers/edac/amd64_edac*
3881
3882 EDAC-CALXEDA
3883 M:      Doug Thompson <dougthompson@xmission.com>
3884 M:      Robert Richter <rric@kernel.org>
3885 L:      linux-edac@vger.kernel.org
3886 W:      bluesmoke.sourceforge.net
3887 S:      Maintained
3888 F:      drivers/edac/highbank*
3889
3890 EDAC-CAVIUM
3891 M:      Ralf Baechle <ralf@linux-mips.org>
3892 M:      David Daney <david.daney@cavium.com>
3893 L:      linux-edac@vger.kernel.org
3894 L:      linux-mips@linux-mips.org
3895 W:      bluesmoke.sourceforge.net
3896 S:      Supported
3897 F:      drivers/edac/octeon_edac*
3898
3899 EDAC-E752X
3900 M:      Mark Gross <mark.gross@intel.com>
3901 M:      Doug Thompson <dougthompson@xmission.com>
3902 L:      linux-edac@vger.kernel.org
3903 W:      bluesmoke.sourceforge.net
3904 S:      Maintained
3905 F:      drivers/edac/e752x_edac.c
3906
3907 EDAC-E7XXX
3908 M:      Doug Thompson <dougthompson@xmission.com>
3909 L:      linux-edac@vger.kernel.org
3910 W:      bluesmoke.sourceforge.net
3911 S:      Maintained
3912 F:      drivers/edac/e7xxx_edac.c
3913
3914 EDAC-GHES
3915 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3916 L:      linux-edac@vger.kernel.org
3917 W:      bluesmoke.sourceforge.net
3918 S:      Maintained
3919 F:      drivers/edac/ghes_edac.c
3920
3921 EDAC-I82443BXGX
3922 M:      Tim Small <tim@buttersideup.com>
3923 L:      linux-edac@vger.kernel.org
3924 W:      bluesmoke.sourceforge.net
3925 S:      Maintained
3926 F:      drivers/edac/i82443bxgx_edac.c
3927
3928 EDAC-I3000
3929 M:      Jason Uhlenkott <juhlenko@akamai.com>
3930 L:      linux-edac@vger.kernel.org
3931 W:      bluesmoke.sourceforge.net
3932 S:      Maintained
3933 F:      drivers/edac/i3000_edac.c
3934
3935 EDAC-I5000
3936 M:      Doug Thompson <dougthompson@xmission.com>
3937 L:      linux-edac@vger.kernel.org
3938 W:      bluesmoke.sourceforge.net
3939 S:      Maintained
3940 F:      drivers/edac/i5000_edac.c
3941
3942 EDAC-I5400
3943 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3944 L:      linux-edac@vger.kernel.org
3945 W:      bluesmoke.sourceforge.net
3946 S:      Maintained
3947 F:      drivers/edac/i5400_edac.c
3948
3949 EDAC-I7300
3950 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3951 L:      linux-edac@vger.kernel.org
3952 W:      bluesmoke.sourceforge.net
3953 S:      Maintained
3954 F:      drivers/edac/i7300_edac.c
3955
3956 EDAC-I7CORE
3957 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3958 L:      linux-edac@vger.kernel.org
3959 W:      bluesmoke.sourceforge.net
3960 S:      Maintained
3961 F:      drivers/edac/i7core_edac.c
3962
3963 EDAC-I82975X
3964 M:      Ranganathan Desikan <ravi@jetztechnologies.com>
3965 M:      "Arvind R." <arvino55@gmail.com>
3966 L:      linux-edac@vger.kernel.org
3967 W:      bluesmoke.sourceforge.net
3968 S:      Maintained
3969 F:      drivers/edac/i82975x_edac.c
3970
3971 EDAC-IE31200
3972 M:      Jason Baron <jbaron@akamai.com>
3973 L:      linux-edac@vger.kernel.org
3974 W:      bluesmoke.sourceforge.net
3975 S:      Maintained
3976 F:      drivers/edac/ie31200_edac.c
3977
3978 EDAC-MPC85XX
3979 M:      Johannes Thumshirn <morbidrsa@gmail.com>
3980 L:      linux-edac@vger.kernel.org
3981 W:      bluesmoke.sourceforge.net
3982 S:      Maintained
3983 F:      drivers/edac/mpc85xx_edac.[ch]
3984
3985 EDAC-PASEMI
3986 M:      Egor Martovetsky <egor@pasemi.com>
3987 L:      linux-edac@vger.kernel.org
3988 W:      bluesmoke.sourceforge.net
3989 S:      Maintained
3990 F:      drivers/edac/pasemi_edac.c
3991
3992 EDAC-R82600
3993 M:      Tim Small <tim@buttersideup.com>
3994 L:      linux-edac@vger.kernel.org
3995 W:      bluesmoke.sourceforge.net
3996 S:      Maintained
3997 F:      drivers/edac/r82600_edac.c
3998
3999 EDAC-SBRIDGE
4000 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4001 L:      linux-edac@vger.kernel.org
4002 W:      bluesmoke.sourceforge.net
4003 S:      Maintained
4004 F:      drivers/edac/sb_edac.c
4005
4006 EDAC-XGENE
4007 APPLIED MICRO (APM) X-GENE SOC EDAC
4008 M:     Loc Ho <lho@apm.com>
4009 S:     Supported
4010 F:     drivers/edac/xgene_edac.c
4011 F:     Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
4012
4013 EDIROL UA-101/UA-1000 DRIVER
4014 M:      Clemens Ladisch <clemens@ladisch.de>
4015 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4016 T:      git git://git.alsa-project.org/alsa-kernel.git
4017 S:      Maintained
4018 F:      sound/usb/misc/ua101.c
4019
4020 EXTENSIBLE FIRMWARE INTERFACE (EFI)
4021 M:      Matt Fleming <matt.fleming@intel.com>
4022 L:      linux-efi@vger.kernel.org
4023 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4024 S:      Maintained
4025 F:      Documentation/efi-stub.txt
4026 F:      arch/ia64/kernel/efi.c
4027 F:      arch/x86/boot/compressed/eboot.[ch]
4028 F:      arch/x86/include/asm/efi.h
4029 F:      arch/x86/platform/efi/*
4030 F:      drivers/firmware/efi/*
4031 F:      include/linux/efi*.h
4032
4033 EFI VARIABLE FILESYSTEM
4034 M:      Matthew Garrett <matthew.garrett@nebula.com>
4035 M:      Jeremy Kerr <jk@ozlabs.org>
4036 M:      Matt Fleming <matt.fleming@intel.com>
4037 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4038 L:      linux-efi@vger.kernel.org
4039 S:      Maintained
4040 F:      fs/efivarfs/
4041
4042 EFIFB FRAMEBUFFER DRIVER
4043 L:      linux-fbdev@vger.kernel.org
4044 M:      Peter Jones <pjones@redhat.com>
4045 S:      Maintained
4046 F:      drivers/video/fbdev/efifb.c
4047
4048 EFS FILESYSTEM
4049 W:      http://aeschi.ch.eu.org/efs/
4050 S:      Orphan
4051 F:      fs/efs/
4052
4053 EHCA (IBM GX bus InfiniBand adapter) DRIVER
4054 M:      Hoang-Nam Nguyen <hnguyen@de.ibm.com>
4055 M:      Christoph Raisch <raisch@de.ibm.com>
4056 L:      linux-rdma@vger.kernel.org
4057 S:      Supported
4058 F:      drivers/infiniband/hw/ehca/
4059
4060 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
4061 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
4062 L:      netdev@vger.kernel.org
4063 S:      Maintained
4064 F:      drivers/net/ethernet/ibm/ehea/
4065
4066 EM28XX VIDEO4LINUX DRIVER
4067 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4068 L:      linux-media@vger.kernel.org
4069 W:      http://linuxtv.org
4070 T:      git git://linuxtv.org/media_tree.git
4071 S:      Maintained
4072 F:      drivers/media/usb/em28xx/
4073
4074 EMBEDDED LINUX
4075 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
4076 M:      Matt Mackall <mpm@selenic.com>
4077 M:      David Woodhouse <dwmw2@infradead.org>
4078 L:      linux-embedded@vger.kernel.org
4079 S:      Maintained
4080
4081 EMULEX/AVAGO LPFC FC/FCOE SCSI DRIVER
4082 M:      James Smart <james.smart@avagotech.com>
4083 M:      Dick Kennedy <dick.kennedy@avagotech.com>
4084 L:      linux-scsi@vger.kernel.org
4085 W:      http://www.avagotech.com
4086 S:      Supported
4087 F:      drivers/scsi/lpfc/
4088
4089 ENE CB710 FLASH CARD READER DRIVER
4090 M:      MichaÅ‚ MirosÅ‚aw <mirq-linux@rere.qmqm.pl>
4091 S:      Maintained
4092 F:      drivers/misc/cb710/
4093 F:      drivers/mmc/host/cb710-mmc.*
4094 F:      include/linux/cb710.h
4095
4096 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
4097 M:      Maxim Levitsky <maximlevitsky@gmail.com>
4098 S:      Maintained
4099 F:      drivers/media/rc/ene_ir.*
4100
4101 ENHANCED ERROR HANDLING (EEH)
4102 M:      Gavin Shan <shangw@linux.vnet.ibm.com>
4103 L:      linuxppc-dev@lists.ozlabs.org
4104 S:      Supported
4105 F:      Documentation/powerpc/eeh-pci-error-recovery.txt
4106 F:      arch/powerpc/kernel/eeh*.c
4107
4108 EPSON S1D13XXX FRAMEBUFFER DRIVER
4109 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
4110 S:      Maintained
4111 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
4112 F:      drivers/video/fbdev/s1d13xxxfb.c
4113 F:      include/video/s1d13xxxfb.h
4114
4115 ET131X NETWORK DRIVER
4116 M:      Mark Einon <mark.einon@gmail.com>
4117 S:      Odd Fixes
4118 F:      drivers/net/ethernet/agere/
4119
4120 ETHERNET BRIDGE
4121 M:      Stephen Hemminger <stephen@networkplumber.org>
4122 L:      bridge@lists.linux-foundation.org
4123 L:      netdev@vger.kernel.org
4124 W:      http://www.linuxfoundation.org/en/Net:Bridge
4125 S:      Maintained
4126 F:      include/linux/netfilter_bridge/
4127 F:      net/bridge/
4128
4129 ETHERNET PHY LIBRARY
4130 M:      Florian Fainelli <f.fainelli@gmail.com>
4131 L:      netdev@vger.kernel.org
4132 S:      Maintained
4133 F:      include/linux/phy.h
4134 F:      include/linux/phy_fixed.h
4135 F:      drivers/net/phy/
4136 F:      Documentation/networking/phy.txt
4137 F:      drivers/of/of_mdio.c
4138 F:      drivers/of/of_net.c
4139
4140 EXT2 FILE SYSTEM
4141 M:      Jan Kara <jack@suse.com>
4142 L:      linux-ext4@vger.kernel.org
4143 S:      Maintained
4144 F:      Documentation/filesystems/ext2.txt
4145 F:      fs/ext2/
4146 F:      include/linux/ext2*
4147
4148 EXT4 FILE SYSTEM
4149 M:      "Theodore Ts'o" <tytso@mit.edu>
4150 M:      Andreas Dilger <adilger.kernel@dilger.ca>
4151 L:      linux-ext4@vger.kernel.org
4152 W:      http://ext4.wiki.kernel.org
4153 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
4154 S:      Maintained
4155 F:      Documentation/filesystems/ext4.txt
4156 F:      fs/ext4/
4157
4158 Extended Verification Module (EVM)
4159 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
4160 L:      linux-ima-devel@lists.sourceforge.net
4161 L:      linux-security-module@vger.kernel.org
4162 S:      Supported
4163 F:      security/integrity/evm/
4164
4165 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
4166 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
4167 M:      Chanwoo Choi <cw00.choi@samsung.com>
4168 L:      linux-kernel@vger.kernel.org
4169 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
4170 S:      Maintained
4171 F:      drivers/extcon/
4172 F:      Documentation/extcon/
4173
4174 EXYNOS DP DRIVER
4175 M:      Jingoo Han <jingoohan1@gmail.com>
4176 L:      dri-devel@lists.freedesktop.org
4177 S:      Maintained
4178 F:      drivers/gpu/drm/exynos/exynos_dp*
4179
4180 EXYNOS MIPI DISPLAY DRIVERS
4181 M:      Inki Dae <inki.dae@samsung.com>
4182 M:      Donghwa Lee <dh09.lee@samsung.com>
4183 M:      Kyungmin Park <kyungmin.park@samsung.com>
4184 L:      linux-fbdev@vger.kernel.org
4185 S:      Maintained
4186 F:      drivers/video/fbdev/exynos/exynos_mipi*
4187 F:      include/video/exynos_mipi*
4188
4189 F71805F HARDWARE MONITORING DRIVER
4190 M:      Jean Delvare <jdelvare@suse.com>
4191 L:      lm-sensors@lm-sensors.org
4192 S:      Maintained
4193 F:      Documentation/hwmon/f71805f
4194 F:      drivers/hwmon/f71805f.c
4195
4196 FC0011 TUNER DRIVER
4197 M:      Michael Buesch <m@bues.ch>
4198 L:      linux-media@vger.kernel.org
4199 S:      Maintained
4200 F:      drivers/media/tuners/fc0011.h
4201 F:      drivers/media/tuners/fc0011.c
4202
4203 FC2580 MEDIA DRIVER
4204 M:      Antti Palosaari <crope@iki.fi>
4205 L:      linux-media@vger.kernel.org
4206 W:      http://linuxtv.org/
4207 W:      http://palosaari.fi/linux/
4208 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4209 T:      git git://linuxtv.org/anttip/media_tree.git
4210 S:      Maintained
4211 F:      drivers/media/tuners/fc2580*
4212
4213 FANOTIFY
4214 M:      Eric Paris <eparis@redhat.com>
4215 S:      Maintained
4216 F:      fs/notify/fanotify/
4217 F:      include/linux/fanotify.h
4218 F:      include/uapi/linux/fanotify.h
4219
4220 FARSYNC SYNCHRONOUS DRIVER
4221 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
4222 W:      http://www.farsite.co.uk/
4223 S:      Supported
4224 F:      drivers/net/wan/farsync.*
4225
4226 FAULT INJECTION SUPPORT
4227 M:      Akinobu Mita <akinobu.mita@gmail.com>
4228 S:      Supported
4229 F:      Documentation/fault-injection/
4230 F:      lib/fault-inject.c
4231
4232 FBTFT Framebuffer drivers
4233 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
4234 M:      Noralf Trønnes <noralf@tronnes.org>
4235 S:      Maintained
4236 F:      drivers/staging/fbtft/
4237
4238 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
4239 M:      Vasu Dev <vasu.dev@intel.com>
4240 L:      fcoe-devel@open-fcoe.org
4241 W:      www.Open-FCoE.org
4242 S:      Supported
4243 F:      drivers/scsi/libfc/
4244 F:      drivers/scsi/fcoe/
4245 F:      include/scsi/fc/
4246 F:      include/scsi/libfc.h
4247 F:      include/scsi/libfcoe.h
4248 F:      include/uapi/scsi/fc/
4249
4250 FILE LOCKING (flock() and fcntl()/lockf())
4251 M:      Jeff Layton <jlayton@poochiereds.net>
4252 M:      "J. Bruce Fields" <bfields@fieldses.org>
4253 L:      linux-fsdevel@vger.kernel.org
4254 S:      Maintained
4255 F:      include/linux/fcntl.h
4256 F:      include/linux/fs.h
4257 F:      include/uapi/linux/fcntl.h
4258 F:      include/uapi/linux/fs.h
4259 F:      fs/fcntl.c
4260 F:      fs/locks.c
4261
4262 FILESYSTEMS (VFS and infrastructure)
4263 M:      Alexander Viro <viro@zeniv.linux.org.uk>
4264 L:      linux-fsdevel@vger.kernel.org
4265 S:      Maintained
4266 F:      fs/*
4267
4268 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
4269 M:      Riku Voipio <riku.voipio@iki.fi>
4270 L:      lm-sensors@lm-sensors.org
4271 S:      Maintained
4272 F:      drivers/hwmon/f75375s.c
4273 F:      include/linux/f75375s.h
4274
4275 FIREWIRE AUDIO DRIVERS
4276 M:      Clemens Ladisch <clemens@ladisch.de>
4277 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4278 T:      git git://git.alsa-project.org/alsa-kernel.git
4279 S:      Maintained
4280 F:      sound/firewire/
4281
4282 FIREWIRE MEDIA DRIVERS (firedtv)
4283 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4284 L:      linux-media@vger.kernel.org
4285 L:      linux1394-devel@lists.sourceforge.net
4286 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
4287 S:      Maintained
4288 F:      drivers/media/firewire/
4289
4290 FIREWIRE SBP-2 TARGET
4291 M:      Chris Boot <bootc@bootc.net>
4292 L:      linux-scsi@vger.kernel.org
4293 L:      target-devel@vger.kernel.org
4294 L:      linux1394-devel@lists.sourceforge.net
4295 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
4296 S:      Maintained
4297 F:      drivers/target/sbp/
4298
4299 FIREWIRE SUBSYSTEM
4300 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4301 L:      linux1394-devel@lists.sourceforge.net
4302 W:      http://ieee1394.wiki.kernel.org/
4303 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
4304 S:      Maintained
4305 F:      drivers/firewire/
4306 F:      include/linux/firewire.h
4307 F:      include/uapi/linux/firewire*.h
4308 F:      tools/firewire/
4309
4310 FIRMWARE LOADER (request_firmware)
4311 M:      Ming Lei <ming.lei@canonical.com>
4312 L:      linux-kernel@vger.kernel.org
4313 S:      Maintained
4314 F:      Documentation/firmware_class/
4315 F:      drivers/base/firmware*.c
4316 F:      include/linux/firmware.h
4317
4318 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
4319 M:      Joshua Morris <josh.h.morris@us.ibm.com>
4320 M:      Philip Kelleher <pjk1939@linux.vnet.ibm.com>
4321 S:      Maintained
4322 F:      drivers/block/rsxx/
4323
4324 FLOPPY DRIVER
4325 M:      Jiri Kosina <jikos@kernel.org>
4326 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
4327 S:      Odd fixes
4328 F:      drivers/block/floppy.c
4329
4330 FMC SUBSYSTEM
4331 M:      Alessandro Rubini <rubini@gnudd.com>
4332 W:      http://www.ohwr.org/projects/fmc-bus
4333 S:      Supported
4334 F:      drivers/fmc/
4335 F:      include/linux/fmc*.h
4336 F:      include/linux/ipmi-fru.h
4337 K:      fmc_d.*register
4338
4339 FPU EMULATOR
4340 M:      Bill Metzenthen <billm@melbpc.org.au>
4341 W:      http://floatingpoint.sourceforge.net/emulator/index.html
4342 S:      Maintained
4343 F:      arch/x86/math-emu/
4344
4345 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
4346 L:      netdev@vger.kernel.org
4347 S:      Orphan
4348 F:      drivers/net/wan/dlci.c
4349 F:      drivers/net/wan/sdla.c
4350
4351 FRAMEBUFFER LAYER
4352 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
4353 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
4354 L:      linux-fbdev@vger.kernel.org
4355 W:      http://linux-fbdev.sourceforge.net/
4356 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
4357 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git
4358 S:      Maintained
4359 F:      Documentation/fb/
4360 F:      Documentation/devicetree/bindings/fb/
4361 F:      drivers/video/
4362 F:      include/video/
4363 F:      include/linux/fb.h
4364 F:      include/uapi/video/
4365 F:      include/uapi/linux/fb.h
4366
4367 FREESCALE DIU FRAMEBUFFER DRIVER
4368 M:      Timur Tabi <timur@tabi.org>
4369 L:      linux-fbdev@vger.kernel.org
4370 S:      Maintained
4371 F:      drivers/video/fbdev/fsl-diu-fb.*
4372
4373 FREESCALE DMA DRIVER
4374 M:      Li Yang <leoli@freescale.com>
4375 M:      Zhang Wei <zw@zh-kernel.org>
4376 L:      linuxppc-dev@lists.ozlabs.org
4377 S:      Maintained
4378 F:      drivers/dma/fsldma.*
4379
4380 FREESCALE I2C CPM DRIVER
4381 M:      Jochen Friedrich <jochen@scram.de>
4382 L:      linuxppc-dev@lists.ozlabs.org
4383 L:      linux-i2c@vger.kernel.org
4384 S:      Maintained
4385 F:      drivers/i2c/busses/i2c-cpm.c
4386
4387 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
4388 M:      Sascha Hauer <kernel@pengutronix.de>
4389 L:      linux-fbdev@vger.kernel.org
4390 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4391 S:      Maintained
4392 F:      include/linux/platform_data/video-imxfb.h
4393 F:      drivers/video/fbdev/imxfb.c
4394
4395 FREESCALE QUAD SPI DRIVER
4396 M:      Han Xu <han.xu@freescale.com>
4397 L:      linux-mtd@lists.infradead.org
4398 S:      Maintained
4399 F:      drivers/mtd/spi-nor/fsl-quadspi.c
4400
4401 FREESCALE SOC FS_ENET DRIVER
4402 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
4403 M:      Vitaly Bordug <vbordug@ru.mvista.com>
4404 L:      linuxppc-dev@lists.ozlabs.org
4405 L:      netdev@vger.kernel.org
4406 S:      Maintained
4407 F:      drivers/net/ethernet/freescale/fs_enet/
4408 F:      include/linux/fs_enet_pd.h
4409
4410 FREESCALE QUICC ENGINE LIBRARY
4411 L:      linuxppc-dev@lists.ozlabs.org
4412 S:      Orphan
4413 F:      arch/powerpc/sysdev/qe_lib/
4414 F:      arch/powerpc/include/asm/*qe.h
4415
4416 FREESCALE USB PERIPHERAL DRIVERS
4417 M:      Li Yang <leoli@freescale.com>
4418 L:      linux-usb@vger.kernel.org
4419 L:      linuxppc-dev@lists.ozlabs.org
4420 S:      Maintained
4421 F:      drivers/usb/gadget/udc/fsl*
4422
4423 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
4424 M:      Li Yang <leoli@freescale.com>
4425 L:      netdev@vger.kernel.org
4426 L:      linuxppc-dev@lists.ozlabs.org
4427 S:      Maintained
4428 F:      drivers/net/ethernet/freescale/ucc_geth*
4429
4430 FREESCALE QUICC ENGINE UCC UART DRIVER
4431 M:      Timur Tabi <timur@tabi.org>
4432 L:      linuxppc-dev@lists.ozlabs.org
4433 S:      Maintained
4434 F:      drivers/tty/serial/ucc_uart.c
4435
4436 FREESCALE SOC SOUND DRIVERS
4437 M:      Timur Tabi <timur@tabi.org>
4438 M:      Nicolin Chen <nicoleotsuka@gmail.com>
4439 M:      Xiubo Li <Xiubo.Lee@gmail.com>
4440 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4441 L:      linuxppc-dev@lists.ozlabs.org
4442 S:      Maintained
4443 F:      sound/soc/fsl/fsl*
4444 F:      sound/soc/fsl/imx*
4445 F:      sound/soc/fsl/mpc8610_hpcd.c
4446
4447 FREESCALE QORIQ MANAGEMENT COMPLEX DRIVER
4448 M:      "J. German Rivera" <German.Rivera@freescale.com>
4449 L:      linux-kernel@vger.kernel.org
4450 S:      Maintained
4451 F:      drivers/staging/fsl-mc/
4452
4453 FREEVXFS FILESYSTEM
4454 M:      Christoph Hellwig <hch@infradead.org>
4455 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
4456 S:      Maintained
4457 F:      fs/freevxfs/
4458
4459 FREEZER
4460 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4461 M:      Pavel Machek <pavel@ucw.cz>
4462 L:      linux-pm@vger.kernel.org
4463 S:      Supported
4464 F:      Documentation/power/freezing-of-tasks.txt
4465 F:      include/linux/freezer.h
4466 F:      kernel/freezer.c
4467
4468 FRONTSWAP API
4469 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4470 L:      linux-kernel@vger.kernel.org
4471 S:      Maintained
4472 F:      mm/frontswap.c
4473 F:      include/linux/frontswap.h
4474
4475 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
4476 M:      David Howells <dhowells@redhat.com>
4477 L:      linux-cachefs@redhat.com
4478 S:      Supported
4479 F:      Documentation/filesystems/caching/
4480 F:      fs/fscache/
4481 F:      include/linux/fscache*.h
4482
4483 F2FS FILE SYSTEM
4484 M:      Jaegeuk Kim <jaegeuk@kernel.org>
4485 M:      Changman Lee <cm224.lee@samsung.com>
4486 R:      Chao Yu <chao2.yu@samsung.com>
4487 L:      linux-f2fs-devel@lists.sourceforge.net
4488 W:      http://en.wikipedia.org/wiki/F2FS
4489 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
4490 S:      Maintained
4491 F:      Documentation/filesystems/f2fs.txt
4492 F:      Documentation/ABI/testing/sysfs-fs-f2fs
4493 F:      fs/f2fs/
4494 F:      include/linux/f2fs_fs.h
4495 F:      include/trace/events/f2fs.h
4496
4497 FUJITSU FR-V (FRV) PORT
4498 M:      David Howells <dhowells@redhat.com>
4499 S:      Maintained
4500 F:      arch/frv/
4501
4502 FUJITSU LAPTOP EXTRAS
4503 M:      Jonathan Woithe <jwoithe@just42.net>
4504 L:      platform-driver-x86@vger.kernel.org
4505 S:      Maintained
4506 F:      drivers/platform/x86/fujitsu-laptop.c
4507
4508 FUJITSU M-5MO LS CAMERA ISP DRIVER
4509 M:      Kyungmin Park <kyungmin.park@samsung.com>
4510 M:      Heungjun Kim <riverful.kim@samsung.com>
4511 L:      linux-media@vger.kernel.org
4512 S:      Maintained
4513 F:      drivers/media/i2c/m5mols/
4514 F:      include/media/m5mols.h
4515
4516 FUJITSU TABLET EXTRAS
4517 M:      Robert Gerlach <khnz@gmx.de>
4518 L:      platform-driver-x86@vger.kernel.org
4519 S:      Maintained
4520 F:      drivers/platform/x86/fujitsu-tablet.c
4521
4522 FUSE: FILESYSTEM IN USERSPACE
4523 M:      Miklos Szeredi <miklos@szeredi.hu>
4524 L:      fuse-devel@lists.sourceforge.net
4525 W:      http://fuse.sourceforge.net/
4526 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
4527 S:      Maintained
4528 F:      fs/fuse/
4529 F:      include/uapi/linux/fuse.h
4530 F:      Documentation/filesystems/fuse.txt
4531
4532 FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
4533 M:      Rik Faith <faith@cs.unc.edu>
4534 L:      linux-scsi@vger.kernel.org
4535 S:      Odd Fixes (e.g., new signatures)
4536 F:      drivers/scsi/fdomain.*
4537
4538 GCOV BASED KERNEL PROFILING
4539 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
4540 S:      Maintained
4541 F:      kernel/gcov/
4542 F:      Documentation/gcov.txt
4543
4544 GDT SCSI DISK ARRAY CONTROLLER DRIVER
4545 M:      Achim Leubner <achim_leubner@adaptec.com>
4546 L:      linux-scsi@vger.kernel.org
4547 W:      http://www.icp-vortex.com/
4548 S:      Supported
4549 F:      drivers/scsi/gdt*
4550
4551 GDB KERNEL DEBUGGING HELPER SCRIPTS
4552 M:      Jan Kiszka <jan.kiszka@siemens.com>
4553 S:      Supported
4554 F:      scripts/gdb/
4555
4556 GEMTEK FM RADIO RECEIVER DRIVER
4557 M:      Hans Verkuil <hverkuil@xs4all.nl>
4558 L:      linux-media@vger.kernel.org
4559 T:      git git://linuxtv.org/media_tree.git
4560 W:      http://linuxtv.org
4561 S:      Maintained
4562 F:      drivers/media/radio/radio-gemtek*
4563
4564 GENERIC GPIO I2C DRIVER
4565 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
4566 S:      Supported
4567 F:      drivers/i2c/busses/i2c-gpio.c
4568 F:      include/linux/i2c-gpio.h
4569
4570 GENERIC GPIO I2C MULTIPLEXER DRIVER
4571 M:      Peter Korsgaard <peter.korsgaard@barco.com>
4572 L:      linux-i2c@vger.kernel.org
4573 S:      Supported
4574 F:      drivers/i2c/muxes/i2c-mux-gpio.c
4575 F:      include/linux/i2c-mux-gpio.h
4576 F:      Documentation/i2c/muxes/i2c-mux-gpio
4577
4578 GENERIC HDLC (WAN) DRIVERS
4579 M:      Krzysztof Halasa <khc@pm.waw.pl>
4580 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
4581 S:      Maintained
4582 F:      drivers/net/wan/c101.c
4583 F:      drivers/net/wan/hd6457*
4584 F:      drivers/net/wan/hdlc*
4585 F:      drivers/net/wan/n2.c
4586 F:      drivers/net/wan/pc300too.c
4587 F:      drivers/net/wan/pci200syn.c
4588 F:      drivers/net/wan/wanxl*
4589
4590 GENERIC INCLUDE/ASM HEADER FILES
4591 M:      Arnd Bergmann <arnd@arndb.de>
4592 L:      linux-arch@vger.kernel.org
4593 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
4594 S:      Maintained
4595 F:      include/asm-generic/
4596 F:      include/uapi/asm-generic/
4597
4598 GENERIC PHY FRAMEWORK
4599 M:      Kishon Vijay Abraham I <kishon@ti.com>
4600 L:      linux-kernel@vger.kernel.org
4601 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
4602 S:      Supported
4603 F:      drivers/phy/
4604 F:      include/linux/phy/
4605
4606 GENERIC PM DOMAINS
4607 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4608 M:      Kevin Hilman <khilman@kernel.org>
4609 M:      Ulf Hansson <ulf.hansson@linaro.org>
4610 L:      linux-pm@vger.kernel.org
4611 S:      Supported
4612 F:      drivers/base/power/domain*.c
4613 F:      include/linux/pm_domain.h
4614
4615 GENERIC UIO DRIVER FOR PCI DEVICES
4616 M:      "Michael S. Tsirkin" <mst@redhat.com>
4617 L:      kvm@vger.kernel.org
4618 S:      Supported
4619 F:      drivers/uio/uio_pci_generic.c
4620
4621 GET_MAINTAINER SCRIPT
4622 M:      Joe Perches <joe@perches.com>
4623 S:      Maintained
4624 F:      scripts/get_maintainer.pl
4625
4626 GFS2 FILE SYSTEM
4627 M:      Steven Whitehouse <swhiteho@redhat.com>
4628 M:      Bob Peterson <rpeterso@redhat.com>
4629 L:      cluster-devel@redhat.com
4630 W:      http://sources.redhat.com/cluster/
4631 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
4632 S:      Supported
4633 F:      Documentation/filesystems/gfs2*.txt
4634 F:      fs/gfs2/
4635 F:      include/uapi/linux/gfs2_ondisk.h
4636
4637 GIGASET ISDN DRIVERS
4638 M:      Paul Bolle <pebolle@tiscali.nl>
4639 L:      gigaset307x-common@lists.sourceforge.net
4640 W:      http://gigaset307x.sourceforge.net/
4641 S:      Odd Fixes
4642 F:      Documentation/isdn/README.gigaset
4643 F:      drivers/isdn/gigaset/
4644 F:      include/uapi/linux/gigaset_dev.h
4645
4646 GO7007 MPEG CODEC
4647 M:      Hans Verkuil <hans.verkuil@cisco.com>
4648 L:      linux-media@vger.kernel.org
4649 S:      Maintained
4650 F:      drivers/media/usb/go7007/
4651
4652 GOODIX TOUCHSCREEN
4653 M:      Bastien Nocera <hadess@hadess.net>
4654 L:      linux-input@vger.kernel.org
4655 S:      Maintained
4656 F:      drivers/input/touchscreen/goodix.c
4657
4658 GPIO SUBSYSTEM
4659 M:      Linus Walleij <linus.walleij@linaro.org>
4660 M:      Alexandre Courbot <gnurou@gmail.com>
4661 L:      linux-gpio@vger.kernel.org
4662 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
4663 S:      Maintained
4664 F:      Documentation/gpio/
4665 F:      drivers/gpio/
4666 F:      include/linux/gpio/
4667 F:      include/linux/gpio.h
4668 F:      include/asm-generic/gpio.h
4669
4670 GRE DEMULTIPLEXER DRIVER
4671 M:      Dmitry Kozlov <xeb@mail.ru>
4672 L:      netdev@vger.kernel.org
4673 S:      Maintained
4674 F:      net/ipv4/gre_demux.c
4675 F:      net/ipv4/gre_offload.c
4676 F:      include/net/gre.h
4677
4678 GRETH 10/100/1G Ethernet MAC device driver
4679 M:      Kristoffer Glembo <kristoffer@gaisler.com>
4680 L:      netdev@vger.kernel.org
4681 S:      Maintained
4682 F:      drivers/net/ethernet/aeroflex/
4683
4684 GSPCA FINEPIX SUBDRIVER
4685 M:      Frank Zago <frank@zago.net>
4686 L:      linux-media@vger.kernel.org
4687 T:      git git://linuxtv.org/media_tree.git
4688 S:      Maintained
4689 F:      drivers/media/usb/gspca/finepix.c
4690
4691 GSPCA GL860 SUBDRIVER
4692 M:      Olivier Lorin <o.lorin@laposte.net>
4693 L:      linux-media@vger.kernel.org
4694 T:      git git://linuxtv.org/media_tree.git
4695 S:      Maintained
4696 F:      drivers/media/usb/gspca/gl860/
4697
4698 GSPCA M5602 SUBDRIVER
4699 M:      Erik Andren <erik.andren@gmail.com>
4700 L:      linux-media@vger.kernel.org
4701 T:      git git://linuxtv.org/media_tree.git
4702 S:      Maintained
4703 F:      drivers/media/usb/gspca/m5602/
4704
4705 GSPCA PAC207 SONIXB SUBDRIVER
4706 M:      Hans de Goede <hdegoede@redhat.com>
4707 L:      linux-media@vger.kernel.org
4708 T:      git git://linuxtv.org/media_tree.git
4709 S:      Maintained
4710 F:      drivers/media/usb/gspca/pac207.c
4711
4712 GSPCA SN9C20X SUBDRIVER
4713 M:      Brian Johnson <brijohn@gmail.com>
4714 L:      linux-media@vger.kernel.org
4715 T:      git git://linuxtv.org/media_tree.git
4716 S:      Maintained
4717 F:      drivers/media/usb/gspca/sn9c20x.c
4718
4719 GSPCA T613 SUBDRIVER
4720 M:      Leandro Costantino <lcostantino@gmail.com>
4721 L:      linux-media@vger.kernel.org
4722 T:      git git://linuxtv.org/media_tree.git
4723 S:      Maintained
4724 F:      drivers/media/usb/gspca/t613.c
4725
4726 GSPCA USB WEBCAM DRIVER
4727 M:      Hans de Goede <hdegoede@redhat.com>
4728 L:      linux-media@vger.kernel.org
4729 T:      git git://linuxtv.org/media_tree.git
4730 S:      Maintained
4731 F:      drivers/media/usb/gspca/
4732
4733 GUID PARTITION TABLE (GPT)
4734 M:      Davidlohr Bueso <dave@stgolabs.net>
4735 L:      linux-efi@vger.kernel.org
4736 S:      Maintained
4737 F:      block/partitions/efi.*
4738
4739 STK1160 USB VIDEO CAPTURE DRIVER
4740 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
4741 L:      linux-media@vger.kernel.org
4742 T:      git git://linuxtv.org/media_tree.git
4743 S:      Maintained
4744 F:      drivers/media/usb/stk1160/
4745
4746 H8/300 ARCHITECTURE
4747 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
4748 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
4749 W:      http://uclinux-h8.sourceforge.jp
4750 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
4751 S:      Maintained
4752 F:      arch/h8300/
4753 F:      drivers/clocksource/h8300_*.c
4754 F:      drivers/clk/h8300/
4755 F:      drivers/irqchip/irq-renesas-h8*.c
4756
4757 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
4758 M:      Frank Seidel <frank@f-seidel.de>
4759 L:      platform-driver-x86@vger.kernel.org
4760 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
4761 S:      Maintained
4762 F:      drivers/platform/x86/hdaps.c
4763
4764 HDPVR USB VIDEO ENCODER DRIVER
4765 M:      Hans Verkuil <hverkuil@xs4all.nl>
4766 L:      linux-media@vger.kernel.org
4767 T:      git git://linuxtv.org/media_tree.git
4768 W:      http://linuxtv.org
4769 S:      Odd Fixes
4770 F:      drivers/media/usb/hdpvr/
4771
4772 HWPOISON MEMORY FAILURE HANDLING
4773 M:      Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
4774 L:      linux-mm@kvack.org
4775 S:      Maintained
4776 F:      mm/memory-failure.c
4777 F:      mm/hwpoison-inject.c
4778
4779 HYPERVISOR VIRTUAL CONSOLE DRIVER
4780 L:      linuxppc-dev@lists.ozlabs.org
4781 S:      Odd Fixes
4782 F:      drivers/tty/hvc/
4783
4784 HACKRF MEDIA DRIVER
4785 M:      Antti Palosaari <crope@iki.fi>
4786 L:      linux-media@vger.kernel.org
4787 W:      http://linuxtv.org/
4788 W:      http://palosaari.fi/linux/
4789 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4790 T:      git git://linuxtv.org/anttip/media_tree.git
4791 S:      Maintained
4792 F:      drivers/media/usb/hackrf/
4793
4794 HARDWARE MONITORING
4795 M:      Jean Delvare <jdelvare@suse.com>
4796 M:      Guenter Roeck <linux@roeck-us.net>
4797 L:      lm-sensors@lm-sensors.org
4798 W:      http://www.lm-sensors.org/
4799 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/
4800 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
4801 S:      Maintained
4802 F:      Documentation/hwmon/
4803 F:      drivers/hwmon/
4804 F:      include/linux/hwmon*.h
4805
4806 HARDWARE RANDOM NUMBER GENERATOR CORE
4807 M:      Matt Mackall <mpm@selenic.com>
4808 M:      Herbert Xu <herbert@gondor.apana.org.au>
4809 L:      linux-crypto@vger.kernel.org
4810 S:      Odd fixes
4811 F:      Documentation/hw_random.txt
4812 F:      drivers/char/hw_random/
4813 F:      include/linux/hw_random.h
4814
4815 HARDWARE SPINLOCK CORE
4816 M:      Ohad Ben-Cohen <ohad@wizery.com>
4817 S:      Maintained
4818 F:      Documentation/hwspinlock.txt
4819 F:      drivers/hwspinlock/hwspinlock_*
4820 F:      include/linux/hwspinlock.h
4821
4822 HARMONY SOUND DRIVER
4823 L:      linux-parisc@vger.kernel.org
4824 S:      Maintained
4825 F:      sound/parisc/harmony.*
4826
4827 HD29L2 MEDIA DRIVER
4828 M:      Antti Palosaari <crope@iki.fi>
4829 L:      linux-media@vger.kernel.org
4830 W:      http://linuxtv.org/
4831 W:      http://palosaari.fi/linux/
4832 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4833 T:      git git://linuxtv.org/anttip/media_tree.git
4834 S:      Maintained
4835 F:      drivers/media/dvb-frontends/hd29l2*
4836
4837 HEWLETT-PACKARD SMART2 RAID DRIVER
4838 L:      iss_storagedev@hp.com
4839 S:      Orphan
4840 F:      Documentation/blockdev/cpqarray.txt
4841 F:      drivers/block/cpqarray.*
4842
4843 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
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/scsi/hpsa.txt
4850 F:      drivers/scsi/hpsa*.[ch]
4851 F:      include/linux/cciss*.h
4852 F:      include/uapi/linux/cciss*.h
4853
4854 HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
4855 M:      Don Brace <don.brace@pmcs.com>
4856 L:      iss_storagedev@hp.com
4857 L:      storagedev@pmcs.com
4858 L:      linux-scsi@vger.kernel.org
4859 S:      Supported
4860 F:      Documentation/blockdev/cciss.txt
4861 F:      drivers/block/cciss*
4862 F:      include/linux/cciss_ioctl.h
4863 F:      include/uapi/linux/cciss_ioctl.h
4864
4865 HFS FILESYSTEM
4866 L:      linux-fsdevel@vger.kernel.org
4867 S:      Orphan
4868 F:      Documentation/filesystems/hfs.txt
4869 F:      fs/hfs/
4870
4871 HFSPLUS FILESYSTEM
4872 L:      linux-fsdevel@vger.kernel.org
4873 S:      Orphan
4874 F:      Documentation/filesystems/hfsplus.txt
4875 F:      fs/hfsplus/
4876
4877 HGA FRAMEBUFFER DRIVER
4878 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
4879 L:      linux-nvidia@lists.surfsouth.com
4880 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
4881 S:      Maintained
4882 F:      drivers/video/fbdev/hgafb.c
4883
4884 HIBERNATION (aka Software Suspend, aka swsusp)
4885 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4886 M:      Pavel Machek <pavel@ucw.cz>
4887 L:      linux-pm@vger.kernel.org
4888 S:      Supported
4889 F:      arch/x86/power/
4890 F:      drivers/base/power/
4891 F:      kernel/power/
4892 F:      include/linux/suspend.h
4893 F:      include/linux/freezer.h
4894 F:      include/linux/pm.h
4895 F:      arch/*/include/asm/suspend*.h
4896
4897 HID CORE LAYER
4898 M:      Jiri Kosina <jikos@kernel.org>
4899 L:      linux-input@vger.kernel.org
4900 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
4901 S:      Maintained
4902 F:      drivers/hid/
4903 F:      include/linux/hid*
4904 F:      include/uapi/linux/hid*
4905
4906 HID SENSOR HUB DRIVERS
4907 M:      Jiri Kosina <jikos@kernel.org>
4908 M:      Jonathan Cameron <jic23@kernel.org>
4909 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
4910 L:      linux-input@vger.kernel.org
4911 L:      linux-iio@vger.kernel.org
4912 S:      Maintained
4913 F:      Documentation/hid/hid-sensor*
4914 F:      drivers/hid/hid-sensor-*
4915 F:      drivers/iio/*/hid-*
4916 F:      include/linux/hid-sensor-*
4917
4918 HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
4919 M:      Thomas Gleixner <tglx@linutronix.de>
4920 L:      linux-kernel@vger.kernel.org
4921 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4922 S:      Maintained
4923 F:      Documentation/timers/
4924 F:      kernel/time/hrtimer.c
4925 F:      kernel/time/clockevents.c
4926 F:      kernel/time/tick*.*
4927 F:      kernel/time/timer_*.c
4928 F:      include/linux/clockchips.h
4929 F:      include/linux/hrtimer.h
4930
4931 HIGH-SPEED SCC DRIVER FOR AX.25
4932 L:      linux-hams@vger.kernel.org
4933 S:      Orphan
4934 F:      drivers/net/hamradio/dmascc.c
4935 F:      drivers/net/hamradio/scc.c
4936
4937 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
4938 M:      HighPoint Linux Team <linux@highpoint-tech.com>
4939 W:      http://www.highpoint-tech.com
4940 S:      Supported
4941 F:      Documentation/scsi/hptiop.txt
4942 F:      drivers/scsi/hptiop.c
4943
4944 HIPPI
4945 M:      Jes Sorensen <jes@trained-monkey.org>
4946 L:      linux-hippi@sunsite.dk
4947 S:      Maintained
4948 F:      include/linux/hippidevice.h
4949 F:      include/uapi/linux/if_hippi.h
4950 F:      net/802/hippi.c
4951 F:      drivers/net/hippi/
4952
4953 HOST AP DRIVER
4954 M:      Jouni Malinen <j@w1.fi>
4955 L:      hostap@shmoo.com (subscribers-only)
4956 L:      linux-wireless@vger.kernel.org
4957 W:      http://hostap.epitest.fi/
4958 S:      Maintained
4959 F:      drivers/net/wireless/hostap/
4960
4961 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
4962 L:      platform-driver-x86@vger.kernel.org
4963 S:      Orphan
4964 F:      drivers/platform/x86/tc1100-wmi.c
4965
4966 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
4967 M:      Jaroslav Kysela <perex@perex.cz>
4968 S:      Maintained
4969 F:      drivers/net/ethernet/hp/hp100.*
4970
4971 HPET:   High Precision Event Timers driver
4972 M:      Clemens Ladisch <clemens@ladisch.de>
4973 S:      Maintained
4974 F:      Documentation/timers/hpet.txt
4975 F:      drivers/char/hpet.c
4976 F:      include/linux/hpet.h
4977 F:      include/uapi/linux/hpet.h
4978
4979 HPET:   x86
4980 S:      Orphan
4981 F:      arch/x86/kernel/hpet.c
4982 F:      arch/x86/include/asm/hpet.h
4983
4984 HPFS FILESYSTEM
4985 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
4986 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
4987 S:      Maintained
4988 F:      fs/hpfs/
4989
4990 HSI SUBSYSTEM
4991 M:      Sebastian Reichel <sre@kernel.org>
4992 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
4993 S:      Maintained
4994 F:      Documentation/ABI/testing/sysfs-bus-hsi
4995 F:      Documentation/hsi.txt
4996 F:      drivers/hsi/
4997 F:      include/linux/hsi/
4998 F:      include/uapi/linux/hsi/
4999
5000 HSO 3G MODEM DRIVER
5001 M:      Jan Dumon <j.dumon@option.com>
5002 W:      http://www.pharscape.org
5003 S:      Maintained
5004 F:      drivers/net/usb/hso.c
5005
5006 HSR NETWORK PROTOCOL
5007 M:      Arvid Brodin <arvid.brodin@alten.se>
5008 L:      netdev@vger.kernel.org
5009 S:      Maintained
5010 F:      net/hsr/
5011
5012 HTCPEN TOUCHSCREEN DRIVER
5013 M:      Pau Oliva Fora <pof@eslack.org>
5014 L:      linux-input@vger.kernel.org
5015 S:      Maintained
5016 F:      drivers/input/touchscreen/htcpen.c
5017
5018 HUGETLB FILESYSTEM
5019 M:      Nadia Yvette Chambers <nyc@holomorphy.com>
5020 S:      Maintained
5021 F:      fs/hugetlbfs/
5022
5023 Hyper-V CORE AND DRIVERS
5024 M:      "K. Y. Srinivasan" <kys@microsoft.com>
5025 M:      Haiyang Zhang <haiyangz@microsoft.com>
5026 L:      devel@linuxdriverproject.org
5027 S:      Maintained
5028 F:      arch/x86/include/asm/mshyperv.h
5029 F:      arch/x86/include/uapi/asm/hyperv.h
5030 F:      arch/x86/kernel/cpu/mshyperv.c
5031 F:      drivers/hid/hid-hyperv.c
5032 F:      drivers/hv/
5033 F:      drivers/input/serio/hyperv-keyboard.c
5034 F:      drivers/net/hyperv/
5035 F:      drivers/scsi/storvsc_drv.c
5036 F:      drivers/video/fbdev/hyperv_fb.c
5037 F:      include/linux/hyperv.h
5038 F:      tools/hv/
5039 F:      Documentation/ABI/stable/sysfs-bus-vmbus
5040
5041 I2C OVER PARALLEL PORT
5042 M:      Jean Delvare <jdelvare@suse.com>
5043 L:      linux-i2c@vger.kernel.org
5044 S:      Maintained
5045 F:      Documentation/i2c/busses/i2c-parport
5046 F:      Documentation/i2c/busses/i2c-parport-light
5047 F:      drivers/i2c/busses/i2c-parport.c
5048 F:      drivers/i2c/busses/i2c-parport-light.c
5049
5050 I2C/SMBUS CONTROLLER DRIVERS FOR PC
5051 M:      Jean Delvare <jdelvare@suse.com>
5052 L:      linux-i2c@vger.kernel.org
5053 S:      Maintained
5054 F:      Documentation/i2c/busses/i2c-ali1535
5055 F:      Documentation/i2c/busses/i2c-ali1563
5056 F:      Documentation/i2c/busses/i2c-ali15x3
5057 F:      Documentation/i2c/busses/i2c-amd756
5058 F:      Documentation/i2c/busses/i2c-amd8111
5059 F:      Documentation/i2c/busses/i2c-i801
5060 F:      Documentation/i2c/busses/i2c-nforce2
5061 F:      Documentation/i2c/busses/i2c-piix4
5062 F:      Documentation/i2c/busses/i2c-sis5595
5063 F:      Documentation/i2c/busses/i2c-sis630
5064 F:      Documentation/i2c/busses/i2c-sis96x
5065 F:      Documentation/i2c/busses/i2c-via
5066 F:      Documentation/i2c/busses/i2c-viapro
5067 F:      drivers/i2c/busses/i2c-ali1535.c
5068 F:      drivers/i2c/busses/i2c-ali1563.c
5069 F:      drivers/i2c/busses/i2c-ali15x3.c
5070 F:      drivers/i2c/busses/i2c-amd756.c
5071 F:      drivers/i2c/busses/i2c-amd756-s4882.c
5072 F:      drivers/i2c/busses/i2c-amd8111.c
5073 F:      drivers/i2c/busses/i2c-i801.c
5074 F:      drivers/i2c/busses/i2c-isch.c
5075 F:      drivers/i2c/busses/i2c-nforce2.c
5076 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
5077 F:      drivers/i2c/busses/i2c-piix4.c
5078 F:      drivers/i2c/busses/i2c-sis5595.c
5079 F:      drivers/i2c/busses/i2c-sis630.c
5080 F:      drivers/i2c/busses/i2c-sis96x.c
5081 F:      drivers/i2c/busses/i2c-via.c
5082 F:      drivers/i2c/busses/i2c-viapro.c
5083
5084 I2C/SMBUS ISMT DRIVER
5085 M:      Seth Heasley <seth.heasley@intel.com>
5086 M:      Neil Horman <nhorman@tuxdriver.com>
5087 L:      linux-i2c@vger.kernel.org
5088 F:      drivers/i2c/busses/i2c-ismt.c
5089 F:      Documentation/i2c/busses/i2c-ismt
5090
5091 I2C/SMBUS STUB DRIVER
5092 M:      Jean Delvare <jdelvare@suse.com>
5093 L:      linux-i2c@vger.kernel.org
5094 S:      Maintained
5095 F:      drivers/i2c/i2c-stub.c
5096
5097 I2C SUBSYSTEM
5098 M:      Wolfram Sang <wsa@the-dreams.de>
5099 L:      linux-i2c@vger.kernel.org
5100 W:      https://i2c.wiki.kernel.org/
5101 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
5102 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
5103 S:      Maintained
5104 F:      Documentation/devicetree/bindings/i2c/
5105 F:      Documentation/i2c/
5106 F:      drivers/i2c/
5107 F:      include/linux/i2c.h
5108 F:      include/linux/i2c-*.h
5109 F:      include/uapi/linux/i2c.h
5110 F:      include/uapi/linux/i2c-*.h
5111
5112 I2C ACPI SUPPORT
5113 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
5114 L:      linux-i2c@vger.kernel.org
5115 L:      linux-acpi@vger.kernel.org
5116 S:      Maintained
5117
5118 I2C-TAOS-EVM DRIVER
5119 M:      Jean Delvare <jdelvare@suse.com>
5120 L:      linux-i2c@vger.kernel.org
5121 S:      Maintained
5122 F:      Documentation/i2c/busses/i2c-taos-evm
5123 F:      drivers/i2c/busses/i2c-taos-evm.c
5124
5125 I2C-TINY-USB DRIVER
5126 M:      Till Harbaum <till@harbaum.org>
5127 L:      linux-i2c@vger.kernel.org
5128 W:      http://www.harbaum.org/till/i2c_tiny_usb
5129 S:      Maintained
5130 F:      drivers/i2c/busses/i2c-tiny-usb.c
5131
5132 i386 BOOT CODE
5133 M:      "H. Peter Anvin" <hpa@zytor.com>
5134 S:      Maintained
5135 F:      arch/x86/boot/
5136
5137 i386 SETUP CODE / CPU ERRATA WORKAROUNDS
5138 M:      "H. Peter Anvin" <hpa@zytor.com>
5139 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
5140 S:      Maintained
5141
5142 IA64 (Itanium) PLATFORM
5143 M:      Tony Luck <tony.luck@intel.com>
5144 M:      Fenghua Yu <fenghua.yu@intel.com>
5145 L:      linux-ia64@vger.kernel.org
5146 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
5147 S:      Maintained
5148 F:      arch/ia64/
5149
5150 IBM Power VMX Cryptographic instructions
5151 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5152 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5153 L:      linux-crypto@vger.kernel.org
5154 S:      Supported
5155 F:      drivers/crypto/vmx/Makefile
5156 F:      drivers/crypto/vmx/Kconfig
5157 F:      drivers/crypto/vmx/vmx.c
5158 F:      drivers/crypto/vmx/aes*
5159 F:      drivers/crypto/vmx/ghash*
5160 F:      drivers/crypto/vmx/ppc-xlate.pl
5161
5162 IBM Power in-Nest Crypto Acceleration
5163 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5164 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5165 L:      linux-crypto@vger.kernel.org
5166 S:      Supported
5167 F:      drivers/crypto/nx/Makefile
5168 F:      drivers/crypto/nx/Kconfig
5169 F:      drivers/crypto/nx/nx-aes*
5170 F:      drivers/crypto/nx/nx-sha*
5171 F:      drivers/crypto/nx/nx.*
5172 F:      drivers/crypto/nx/nx_csbcpb.h
5173 F:      drivers/crypto/nx/nx_debugfs.h
5174
5175 IBM Power 842 compression accelerator
5176 M:      Dan Streetman <ddstreet@ieee.org>
5177 S:      Supported
5178 F:      drivers/crypto/nx/Makefile
5179 F:      drivers/crypto/nx/Kconfig
5180 F:      drivers/crypto/nx/nx-842*
5181 F:      include/linux/sw842.h
5182 F:      crypto/842.c
5183 F:      lib/842/
5184
5185 IBM Power Linux RAID adapter
5186 M:      Brian King <brking@us.ibm.com>
5187 S:      Supported
5188 F:      drivers/scsi/ipr.*
5189
5190 IBM Power Virtual Ethernet Device Driver
5191 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
5192 L:      netdev@vger.kernel.org
5193 S:      Supported
5194 F:      drivers/net/ethernet/ibm/ibmveth.*
5195
5196 IBM Power Virtual SCSI Device Drivers
5197 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5198 L:      linux-scsi@vger.kernel.org
5199 S:      Supported
5200 F:      drivers/scsi/ibmvscsi/ibmvscsi*
5201 F:      drivers/scsi/ibmvscsi/viosrp.h
5202
5203 IBM Power Virtual FC Device Drivers
5204 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5205 L:      linux-scsi@vger.kernel.org
5206 S:      Supported
5207 F:      drivers/scsi/ibmvscsi/ibmvfc*
5208
5209 IBM ServeRAID RAID DRIVER
5210 S:      Orphan
5211 F:      drivers/scsi/ips.*
5212
5213 ICH LPC AND GPIO DRIVER
5214 M:      Peter Tyser <ptyser@xes-inc.com>
5215 S:      Maintained
5216 F:      drivers/mfd/lpc_ich.c
5217 F:      drivers/gpio/gpio-ich.c
5218
5219 IDE SUBSYSTEM
5220 M:      "David S. Miller" <davem@davemloft.net>
5221 L:      linux-ide@vger.kernel.org
5222 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
5223 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
5224 S:      Maintained
5225 F:      Documentation/ide/
5226 F:      drivers/ide/
5227 F:      include/linux/ide.h
5228
5229 IDEAPAD LAPTOP EXTRAS DRIVER
5230 M:      Ike Panhc <ike.pan@canonical.com>
5231 L:      platform-driver-x86@vger.kernel.org
5232 W:      http://launchpad.net/ideapad-laptop
5233 S:      Maintained
5234 F:      drivers/platform/x86/ideapad-laptop.c
5235
5236 IDEAPAD LAPTOP SLIDEBAR DRIVER
5237 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
5238 L:      linux-input@vger.kernel.org
5239 W:      https://github.com/o2genum/ideapad-slidebar
5240 S:      Maintained
5241 F:      drivers/input/misc/ideapad_slidebar.c
5242
5243 IDE/ATAPI DRIVERS
5244 M:      Borislav Petkov <bp@alien8.de>
5245 L:      linux-ide@vger.kernel.org
5246 S:      Maintained
5247 F:      Documentation/cdrom/ide-cd
5248 F:      drivers/ide/ide-cd*
5249
5250 IDLE-I7300
5251 M:      Andy Henroid <andrew.d.henroid@intel.com>
5252 L:      linux-pm@vger.kernel.org
5253 S:      Supported
5254 F:      drivers/idle/i7300_idle.c
5255
5256 IEEE 802.15.4 SUBSYSTEM
5257 M:      Alexander Aring <alex.aring@gmail.com>
5258 L:      linux-wpan@vger.kernel.org
5259 W:      https://github.com/linux-wpan
5260 T:      git git://github.com/linux-wpan/linux-wpan-next.git
5261 S:      Maintained
5262 F:      net/ieee802154/
5263 F:      net/mac802154/
5264 F:      drivers/net/ieee802154/
5265 F:      include/linux/nl802154.h
5266 F:      include/linux/ieee802154.h
5267 F:      include/net/nl802154.h
5268 F:      include/net/mac802154.h
5269 F:      include/net/af_ieee802154.h
5270 F:      include/net/cfg802154.h
5271 F:      include/net/ieee802154_netdev.h
5272 F:      Documentation/networking/ieee802154.txt
5273
5274 IGORPLUG-USB IR RECEIVER
5275 M:      Sean Young <sean@mess.org>
5276 L:      linux-media@vger.kernel.org
5277 S:      Maintained
5278 F:      drivers/media/rc/igorplugusb.c
5279
5280 IGUANAWORKS USB IR TRANSCEIVER
5281 M:      Sean Young <sean@mess.org>
5282 L:      linux-media@vger.kernel.org
5283 S:      Maintained
5284 F:      drivers/media/rc/iguanair.c
5285
5286 IIO SUBSYSTEM AND DRIVERS
5287 M:      Jonathan Cameron <jic23@kernel.org>
5288 R:      Hartmut Knaack <knaack.h@gmx.de>
5289 R:      Lars-Peter Clausen <lars@metafoo.de>
5290 R:      Peter Meerwald <pmeerw@pmeerw.net>
5291 L:      linux-iio@vger.kernel.org
5292 S:      Maintained
5293 F:      drivers/iio/
5294 F:      drivers/staging/iio/
5295 F:      include/linux/iio/
5296 F:      tools/iio/
5297
5298 IKANOS/ADI EAGLE ADSL USB DRIVER
5299 M:      Matthieu Castet <castet.matthieu@free.fr>
5300 M:      Stanislaw Gruszka <stf_xl@wp.pl>
5301 S:      Maintained
5302 F:      drivers/usb/atm/ueagle-atm.c
5303
5304 INA209 HARDWARE MONITOR DRIVER
5305 M:      Guenter Roeck <linux@roeck-us.net>
5306 L:      lm-sensors@lm-sensors.org
5307 S:      Maintained
5308 F:      Documentation/hwmon/ina209
5309 F:      Documentation/devicetree/bindings/i2c/ina209.txt
5310 F:      drivers/hwmon/ina209.c
5311
5312 INA2XX HARDWARE MONITOR DRIVER
5313 M:      Guenter Roeck <linux@roeck-us.net>
5314 L:      lm-sensors@lm-sensors.org
5315 S:      Maintained
5316 F:      Documentation/hwmon/ina2xx
5317 F:      drivers/hwmon/ina2xx.c
5318 F:      include/linux/platform_data/ina2xx.h
5319
5320 INDUSTRY PACK SUBSYSTEM (IPACK)
5321 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
5322 M:      Jens Taprogge <jens.taprogge@taprogge.org>
5323 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5324 L:      industrypack-devel@lists.sourceforge.net
5325 W:      http://industrypack.sourceforge.net
5326 S:      Maintained
5327 F:      drivers/ipack/
5328
5329 INGENIC JZ4780 DMA Driver
5330 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
5331 S:      Maintained
5332 F:      drivers/dma/dma-jz4780.c
5333
5334 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
5335 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
5336 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
5337 L:      linux-ima-devel@lists.sourceforge.net
5338 L:      linux-ima-user@lists.sourceforge.net
5339 L:      linux-security-module@vger.kernel.org
5340 S:      Supported
5341 F:      security/integrity/ima/
5342
5343 IMGTEC IR DECODER DRIVER
5344 M:      James Hogan <james.hogan@imgtec.com>
5345 S:      Maintained
5346 F:      drivers/media/rc/img-ir/
5347
5348 IMS TWINTURBO FRAMEBUFFER DRIVER
5349 L:      linux-fbdev@vger.kernel.org
5350 S:      Orphan
5351 F:      drivers/video/fbdev/imsttfb.c
5352
5353 INFINIBAND SUBSYSTEM
5354 M:      Doug Ledford <dledford@redhat.com>
5355 M:      Sean Hefty <sean.hefty@intel.com>
5356 M:      Hal Rosenstock <hal.rosenstock@gmail.com>
5357 L:      linux-rdma@vger.kernel.org
5358 W:      http://www.openfabrics.org/
5359 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5360 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git
5361 S:      Supported
5362 F:      Documentation/infiniband/
5363 F:      drivers/infiniband/
5364 F:      drivers/staging/rdma/
5365 F:      include/uapi/linux/if_infiniband.h
5366 F:      include/uapi/rdma/
5367 F:      include/rdma/
5368
5369 INOTIFY
5370 M:      John McCutchan <john@johnmccutchan.com>
5371 M:      Robert Love <rlove@rlove.org>
5372 M:      Eric Paris <eparis@parisplace.org>
5373 S:      Maintained
5374 F:      Documentation/filesystems/inotify.txt
5375 F:      fs/notify/inotify/
5376 F:      include/linux/inotify.h
5377 F:      include/uapi/linux/inotify.h
5378
5379 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
5380 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
5381 L:      linux-input@vger.kernel.org
5382 Q:      http://patchwork.kernel.org/project/linux-input/list/
5383 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
5384 S:      Maintained
5385 F:      drivers/input/
5386 F:      include/linux/input.h
5387 F:      include/uapi/linux/input.h
5388 F:      include/linux/input/
5389
5390 INPUT MULTITOUCH (MT) PROTOCOL
5391 M:      Henrik Rydberg <rydberg@bitmath.org>
5392 L:      linux-input@vger.kernel.org
5393 S:      Odd fixes
5394 F:      Documentation/input/multi-touch-protocol.txt
5395 F:      drivers/input/input-mt.c
5396 K:      \b(ABS|SYN)_MT_
5397
5398 INTEL ASoC BDW/HSW DRIVERS
5399 M:      Jie Yang <yang.jie@linux.intel.com>
5400 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5401 S:      Supported
5402 F:      sound/soc/intel/common/sst-dsp*
5403 F:      sound/soc/intel/common/sst-firmware.c
5404 F:      sound/soc/intel/boards/broadwell.c
5405 F:      sound/soc/intel/haswell/
5406
5407 INTEL C600 SERIES SAS CONTROLLER DRIVER
5408 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
5409 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
5410 L:      linux-scsi@vger.kernel.org
5411 T:      git git://git.code.sf.net/p/intel-sas/isci
5412 S:      Supported
5413 F:      drivers/scsi/isci/
5414
5415 INTEL IDLE DRIVER
5416 M:      Len Brown <lenb@kernel.org>
5417 L:      linux-pm@vger.kernel.org
5418 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
5419 S:      Supported
5420 F:      drivers/idle/intel_idle.c
5421
5422 INTEL PSTATE DRIVER
5423 M:      Kristen Carlson Accardi <kristen@linux.intel.com>
5424 L:      linux-pm@vger.kernel.org
5425 S:      Supported
5426 F:      drivers/cpufreq/intel_pstate.c
5427
5428 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
5429 M:      Maik Broemme <mbroemme@plusserver.de>
5430 L:      linux-fbdev@vger.kernel.org
5431 S:      Maintained
5432 F:      Documentation/fb/intelfb.txt
5433 F:      drivers/video/fbdev/intelfb/
5434
5435 INTEL 810/815 FRAMEBUFFER DRIVER
5436 M:      Antonino Daplas <adaplas@gmail.com>
5437 L:      linux-fbdev@vger.kernel.org
5438 S:      Maintained
5439 F:      drivers/video/fbdev/i810/
5440
5441 INTEL MENLOW THERMAL DRIVER
5442 M:      Sujith Thomas <sujith.thomas@intel.com>
5443 L:      platform-driver-x86@vger.kernel.org
5444 W:      https://01.org/linux-acpi
5445 S:      Supported
5446 F:      drivers/platform/x86/intel_menlow.c
5447
5448 INTEL IA32 MICROCODE UPDATE SUPPORT
5449 M:      Borislav Petkov <bp@alien8.de>
5450 S:      Maintained
5451 F:      arch/x86/kernel/cpu/microcode/core*
5452 F:      arch/x86/kernel/cpu/microcode/intel*
5453
5454 INTEL I/OAT DMA DRIVER
5455 M:      Dave Jiang <dave.jiang@intel.com>
5456 R:      Dan Williams <dan.j.williams@intel.com>
5457 L:      dmaengine@vger.kernel.org
5458 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5459 S:      Supported
5460 F:      drivers/dma/ioat*
5461
5462 INTEL IOMMU (VT-d)
5463 M:      David Woodhouse <dwmw2@infradead.org>
5464 L:      iommu@lists.linux-foundation.org
5465 T:      git git://git.infradead.org/iommu-2.6.git
5466 S:      Supported
5467 F:      drivers/iommu/intel-iommu.c
5468 F:      include/linux/intel-iommu.h
5469
5470 INTEL IOP-ADMA DMA DRIVER
5471 R:      Dan Williams <dan.j.williams@intel.com>
5472 S:      Odd fixes
5473 F:      drivers/dma/iop-adma.c
5474
5475 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
5476 M:      Krzysztof Halasa <khalasa@piap.pl>
5477 S:      Maintained
5478 F:      arch/arm/mach-ixp4xx/include/mach/qmgr.h
5479 F:      arch/arm/mach-ixp4xx/include/mach/npe.h
5480 F:      arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
5481 F:      arch/arm/mach-ixp4xx/ixp4xx_npe.c
5482 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
5483 F:      drivers/net/wan/ixp4xx_hss.c
5484
5485 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
5486 M:      Deepak Saxena <dsaxena@plexity.net>
5487 S:      Maintained
5488 F:      drivers/char/hw_random/ixp4xx-rng.c
5489
5490 INTEL ETHERNET DRIVERS
5491 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
5492 R:      Jesse Brandeburg <jesse.brandeburg@intel.com>
5493 R:      Shannon Nelson <shannon.nelson@intel.com>
5494 R:      Carolyn Wyborny <carolyn.wyborny@intel.com>
5495 R:      Don Skidmore <donald.c.skidmore@intel.com>
5496 R:      Matthew Vick <matthew.vick@intel.com>
5497 R:      John Ronciak <john.ronciak@intel.com>
5498 R:      Mitch Williams <mitch.a.williams@intel.com>
5499 L:      intel-wired-lan@lists.osuosl.org
5500 W:      http://www.intel.com/support/feedback.htm
5501 W:      http://e1000.sourceforge.net/
5502 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
5503 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
5504 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
5505 S:      Supported
5506 F:      Documentation/networking/e100.txt
5507 F:      Documentation/networking/e1000.txt
5508 F:      Documentation/networking/e1000e.txt
5509 F:      Documentation/networking/igb.txt
5510 F:      Documentation/networking/igbvf.txt
5511 F:      Documentation/networking/ixgb.txt
5512 F:      Documentation/networking/ixgbe.txt
5513 F:      Documentation/networking/ixgbevf.txt
5514 F:      Documentation/networking/i40e.txt
5515 F:      Documentation/networking/i40evf.txt
5516 F:      drivers/net/ethernet/intel/
5517 F:      drivers/net/ethernet/intel/*/
5518
5519 INTEL-MID GPIO DRIVER
5520 M:      David Cohen <david.a.cohen@linux.intel.com>
5521 L:      linux-gpio@vger.kernel.org
5522 S:      Maintained
5523 F:      drivers/gpio/gpio-intel-mid.c
5524
5525 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
5526 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
5527 L:      linux-wireless@vger.kernel.org
5528 S:      Maintained
5529 F:      Documentation/networking/README.ipw2100
5530 F:      Documentation/networking/README.ipw2200
5531 F:      drivers/net/wireless/ipw2x00/
5532
5533 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
5534 M:      Richard L Maliszewski <richard.l.maliszewski@intel.com>
5535 M:      Gang Wei <gang.wei@intel.com>
5536 M:      Shane Wang <shane.wang@intel.com>
5537 L:      tboot-devel@lists.sourceforge.net
5538 W:      http://tboot.sourceforge.net
5539 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
5540 S:      Supported
5541 F:      Documentation/intel_txt.txt
5542 F:      include/linux/tboot.h
5543 F:      arch/x86/kernel/tboot.c
5544
5545 INTEL WIRELESS WIMAX CONNECTION 2400
5546 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
5547 M:      linux-wimax@intel.com
5548 L:      wimax@linuxwimax.org (subscribers-only)
5549 S:      Supported
5550 W:      http://linuxwimax.org
5551 F:      Documentation/wimax/README.i2400m
5552 F:      drivers/net/wimax/i2400m/
5553 F:      include/uapi/linux/wimax/i2400m.h
5554
5555 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
5556 M:      Stanislaw Gruszka <sgruszka@redhat.com>
5557 L:      linux-wireless@vger.kernel.org
5558 S:      Supported
5559 F:      drivers/net/wireless/iwlegacy/
5560
5561 INTEL WIRELESS WIFI LINK (iwlwifi)
5562 M:      Johannes Berg <johannes.berg@intel.com>
5563 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
5564 M:      Intel Linux Wireless <ilw@linux.intel.com>
5565 L:      linux-wireless@vger.kernel.org
5566 W:      http://intellinuxwireless.org
5567 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
5568 S:      Supported
5569 F:      drivers/net/wireless/iwlwifi/
5570
5571 INTEL MANAGEMENT ENGINE (mei)
5572 M:      Tomas Winkler <tomas.winkler@intel.com>
5573 L:      linux-kernel@vger.kernel.org
5574 S:      Supported
5575 F:      include/uapi/linux/mei.h
5576 F:      include/linux/mei_cl_bus.h
5577 F:      drivers/misc/mei/*
5578 F:      Documentation/misc-devices/mei/*
5579
5580 INTEL PMC IPC DRIVER
5581 M:      Zha Qipeng<qipeng.zha@intel.com>
5582 L:      platform-driver-x86@vger.kernel.org
5583 S:      Maintained
5584 F:      drivers/platform/x86/intel_pmc_ipc.c
5585 F:      arch/x86/include/asm/intel_pmc_ipc.h
5586
5587 IOC3 ETHERNET DRIVER
5588 M:      Ralf Baechle <ralf@linux-mips.org>
5589 L:      linux-mips@linux-mips.org
5590 S:      Maintained
5591 F:      drivers/net/ethernet/sgi/ioc3-eth.c
5592
5593 IOC3 SERIAL DRIVER
5594 M:      Pat Gefre <pfg@sgi.com>
5595 L:      linux-serial@vger.kernel.org
5596 S:      Maintained
5597 F:      drivers/tty/serial/ioc3_serial.c
5598
5599 IOMMU DRIVERS
5600 M:      Joerg Roedel <joro@8bytes.org>
5601 L:      iommu@lists.linux-foundation.org
5602 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
5603 S:      Maintained
5604 F:      drivers/iommu/
5605
5606 IP MASQUERADING
5607 M:      Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
5608 S:      Maintained
5609 F:      net/ipv4/netfilter/ipt_MASQUERADE.c
5610
5611 IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
5612 M:      Francois Romieu <romieu@fr.zoreil.com>
5613 M:      Sorbica Shieh <sorbica@icplus.com.tw>
5614 L:      netdev@vger.kernel.org
5615 S:      Maintained
5616 F:      drivers/net/ethernet/icplus/ipg.*
5617
5618 IPATH DRIVER
5619 M:      Mike Marciniszyn <infinipath@intel.com>
5620 L:      linux-rdma@vger.kernel.org
5621 S:      Maintained
5622 F:      drivers/staging/rdma/ipath/
5623
5624 IPMI SUBSYSTEM
5625 M:      Corey Minyard <minyard@acm.org>
5626 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
5627 W:      http://openipmi.sourceforge.net/
5628 S:      Supported
5629 F:      Documentation/IPMI.txt
5630 F:      drivers/char/ipmi/
5631 F:      include/linux/ipmi*
5632 F:      include/uapi/linux/ipmi*
5633
5634 QCOM AUDIO (ASoC) DRIVERS
5635 M:      Patrick Lai <plai@codeaurora.org>
5636 M:      Banajit Goswami <bgoswami@codeaurora.org>
5637 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5638 S:      Supported
5639 F:      sound/soc/qcom/
5640
5641 IPS SCSI RAID DRIVER
5642 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
5643 L:      linux-scsi@vger.kernel.org
5644 W:      http://www.adaptec.com/
5645 S:      Maintained
5646 F:      drivers/scsi/ips*
5647
5648 IPVS
5649 M:      Wensong Zhang <wensong@linux-vs.org>
5650 M:      Simon Horman <horms@verge.net.au>
5651 M:      Julian Anastasov <ja@ssi.bg>
5652 L:      netdev@vger.kernel.org
5653 L:      lvs-devel@vger.kernel.org
5654 S:      Maintained
5655 F:      Documentation/networking/ipvs-sysctl.txt
5656 F:      include/net/ip_vs.h
5657 F:      include/uapi/linux/ip_vs.h
5658 F:      net/netfilter/ipvs/
5659
5660 IPWIRELESS DRIVER
5661 M:      Jiri Kosina <jikos@kernel.org>
5662 M:      David Sterba <dsterba@suse.com>
5663 S:      Odd Fixes
5664 F:      drivers/tty/ipwireless/
5665
5666 IPX NETWORK LAYER
5667 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
5668 L:      netdev@vger.kernel.org
5669 S:      Maintained
5670 F:      include/net/ipx.h
5671 F:      include/uapi/linux/ipx.h
5672 F:      net/ipx/
5673
5674 IRDA SUBSYSTEM
5675 M:      Samuel Ortiz <samuel@sortiz.org>
5676 L:      irda-users@lists.sourceforge.net (subscribers-only)
5677 L:      netdev@vger.kernel.org
5678 W:      http://irda.sourceforge.net/
5679 S:      Maintained
5680 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
5681 F:      Documentation/networking/irda.txt
5682 F:      drivers/net/irda/
5683 F:      include/net/irda/
5684 F:      net/irda/
5685
5686 IRQ SUBSYSTEM
5687 M:      Thomas Gleixner <tglx@linutronix.de>
5688 L:      linux-kernel@vger.kernel.org
5689 S:      Maintained
5690 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5691 F:      kernel/irq/
5692
5693 IRQCHIP DRIVERS
5694 M:      Thomas Gleixner <tglx@linutronix.de>
5695 M:      Jason Cooper <jason@lakedaemon.net>
5696 M:      Marc Zyngier <marc.zyngier@arm.com>
5697 L:      linux-kernel@vger.kernel.org
5698 S:      Maintained
5699 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5700 T:      git git://git.infradead.org/users/jcooper/linux.git irqchip/core
5701 F:      Documentation/devicetree/bindings/interrupt-controller/
5702 F:      drivers/irqchip/
5703
5704 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
5705 M:      Jiang Liu <jiang.liu@linux.intel.com>
5706 M:      Marc Zyngier <marc.zyngier@arm.com>
5707 S:      Maintained
5708 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5709 F:      Documentation/IRQ-domain.txt
5710 F:      include/linux/irqdomain.h
5711 F:      kernel/irq/irqdomain.c
5712 F:      kernel/irq/msi.c
5713
5714 ISAPNP
5715 M:      Jaroslav Kysela <perex@perex.cz>
5716 S:      Maintained
5717 F:      Documentation/isapnp.txt
5718 F:      drivers/pnp/isapnp/
5719 F:      include/linux/isapnp.h
5720
5721 ISA RADIO MODULE
5722 M:      Hans Verkuil <hverkuil@xs4all.nl>
5723 L:      linux-media@vger.kernel.org
5724 T:      git git://linuxtv.org/media_tree.git
5725 W:      http://linuxtv.org
5726 S:      Maintained
5727 F:      drivers/media/radio/radio-isa*
5728
5729 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
5730 M:      Peter Jones <pjones@redhat.com>
5731 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
5732 S:      Maintained
5733 F:      drivers/firmware/iscsi_ibft*
5734
5735 ISCSI
5736 M:      Mike Christie <michaelc@cs.wisc.edu>
5737 L:      open-iscsi@googlegroups.com
5738 W:      www.open-iscsi.org
5739 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
5740 S:      Maintained
5741 F:      drivers/scsi/*iscsi*
5742 F:      include/scsi/*iscsi*
5743
5744 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
5745 M:      Or Gerlitz <ogerlitz@mellanox.com>
5746 M:      Sagi Grimberg <sagig@mellanox.com>
5747 M:      Roi Dayan <roid@mellanox.com>
5748 L:      linux-rdma@vger.kernel.org
5749 S:      Supported
5750 W:      http://www.openfabrics.org
5751 W:      www.open-iscsi.org
5752 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5753 F:      drivers/infiniband/ulp/iser/
5754
5755 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
5756 M:      Sagi Grimberg <sagig@mellanox.com>
5757 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
5758 L:      linux-rdma@vger.kernel.org
5759 L:      target-devel@vger.kernel.org
5760 S:      Supported
5761 W:      http://www.linux-iscsi.org
5762 F:      drivers/infiniband/ulp/isert
5763
5764 ISDN SUBSYSTEM
5765 M:      Karsten Keil <isdn@linux-pingi.de>
5766 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5767 L:      netdev@vger.kernel.org
5768 W:      http://www.isdn4linux.de
5769 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
5770 S:      Maintained
5771 F:      Documentation/isdn/
5772 F:      drivers/isdn/
5773 F:      include/linux/isdn.h
5774 F:      include/linux/isdn/
5775 F:      include/uapi/linux/isdn.h
5776 F:      include/uapi/linux/isdn/
5777
5778 ISDN SUBSYSTEM (Eicon active card driver)
5779 M:      Armin Schindler <mac@melware.de>
5780 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5781 W:      http://www.melware.de
5782 S:      Maintained
5783 F:      drivers/isdn/hardware/eicon/
5784
5785 IT87 HARDWARE MONITORING DRIVER
5786 M:      Jean Delvare <jdelvare@suse.com>
5787 L:      lm-sensors@lm-sensors.org
5788 S:      Maintained
5789 F:      Documentation/hwmon/it87
5790 F:      drivers/hwmon/it87.c
5791
5792 IT913X MEDIA DRIVER
5793 M:      Antti Palosaari <crope@iki.fi>
5794 L:      linux-media@vger.kernel.org
5795 W:      http://linuxtv.org/
5796 W:      http://palosaari.fi/linux/
5797 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5798 T:      git git://linuxtv.org/anttip/media_tree.git
5799 S:      Maintained
5800 F:      drivers/media/tuners/it913x*
5801
5802 IVTV VIDEO4LINUX DRIVER
5803 M:      Andy Walls <awalls@md.metrocast.net>
5804 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
5805 L:      linux-media@vger.kernel.org
5806 T:      git git://linuxtv.org/media_tree.git
5807 W:      http://www.ivtvdriver.org
5808 S:      Maintained
5809 F:      Documentation/video4linux/*.ivtv
5810 F:      drivers/media/pci/ivtv/
5811 F:      include/uapi/linux/ivtv*
5812
5813 IX2505V MEDIA DRIVER
5814 M:      Malcolm Priestley <tvboxspy@gmail.com>
5815 L:      linux-media@vger.kernel.org
5816 W:      http://linuxtv.org/
5817 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5818 S:      Maintained
5819 F:      drivers/media/dvb-frontends/ix2505v*
5820
5821 JC42.4 TEMPERATURE SENSOR DRIVER
5822 M:      Guenter Roeck <linux@roeck-us.net>
5823 L:      lm-sensors@lm-sensors.org
5824 S:      Maintained
5825 F:      drivers/hwmon/jc42.c
5826 F:      Documentation/hwmon/jc42
5827
5828 JFS FILESYSTEM
5829 M:      Dave Kleikamp <shaggy@kernel.org>
5830 L:      jfs-discussion@lists.sourceforge.net
5831 W:      http://jfs.sourceforge.net/
5832 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
5833 S:      Maintained
5834 F:      Documentation/filesystems/jfs.txt
5835 F:      fs/jfs/
5836
5837 JME NETWORK DRIVER
5838 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
5839 L:      netdev@vger.kernel.org
5840 S:      Maintained
5841 F:      drivers/net/ethernet/jme.*
5842
5843 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
5844 M:      David Woodhouse <dwmw2@infradead.org>
5845 L:      linux-mtd@lists.infradead.org
5846 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
5847 S:      Maintained
5848 F:      fs/jffs2/
5849 F:      include/uapi/linux/jffs2.h
5850
5851 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
5852 M:      "Theodore Ts'o" <tytso@mit.edu>
5853 M:      Jan Kara <jack@suse.com>
5854 L:      linux-ext4@vger.kernel.org
5855 S:      Maintained
5856 F:      fs/jbd2/
5857 F:      include/linux/jbd2.h
5858
5859 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
5860 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
5861 L:      linux-media@vger.kernel.org
5862 S:      Maintained
5863 F:      drivers/media/platform/rcar_jpu.c
5864
5865 JSM Neo PCI based serial card
5866 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
5867 L:      linux-serial@vger.kernel.org
5868 S:      Maintained
5869 F:      drivers/tty/serial/jsm/
5870
5871 K10TEMP HARDWARE MONITORING DRIVER
5872 M:      Clemens Ladisch <clemens@ladisch.de>
5873 L:      lm-sensors@lm-sensors.org
5874 S:      Maintained
5875 F:      Documentation/hwmon/k10temp
5876 F:      drivers/hwmon/k10temp.c
5877
5878 K8TEMP HARDWARE MONITORING DRIVER
5879 M:      Rudolf Marek <r.marek@assembler.cz>
5880 L:      lm-sensors@lm-sensors.org
5881 S:      Maintained
5882 F:      Documentation/hwmon/k8temp
5883 F:      drivers/hwmon/k8temp.c
5884
5885 KCONFIG
5886 M:      "Yann E. MORIN" <yann.morin.1998@free.fr>
5887 L:      linux-kbuild@vger.kernel.org
5888 T:      git git://gitorious.org/linux-kconfig/linux-kconfig
5889 S:      Maintained
5890 F:      Documentation/kbuild/kconfig-language.txt
5891 F:      scripts/kconfig/
5892
5893 KDUMP
5894 M:      Vivek Goyal <vgoyal@redhat.com>
5895 M:      Haren Myneni <hbabu@us.ibm.com>
5896 L:      kexec@lists.infradead.org
5897 W:      http://lse.sourceforge.net/kdump/
5898 S:      Maintained
5899 F:      Documentation/kdump/
5900
5901 KEENE FM RADIO TRANSMITTER DRIVER
5902 M:      Hans Verkuil <hverkuil@xs4all.nl>
5903 L:      linux-media@vger.kernel.org
5904 T:      git git://linuxtv.org/media_tree.git
5905 W:      http://linuxtv.org
5906 S:      Maintained
5907 F:      drivers/media/radio/radio-keene*
5908
5909 KERNEL AUTOMOUNTER v4 (AUTOFS4)
5910 M:      Ian Kent <raven@themaw.net>
5911 L:      autofs@vger.kernel.org
5912 S:      Maintained
5913 F:      fs/autofs4/
5914
5915 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
5916 M:      Michal Marek <mmarek@suse.com>
5917 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
5918 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
5919 L:      linux-kbuild@vger.kernel.org
5920 S:      Maintained
5921 F:      Documentation/kbuild/
5922 F:      Makefile
5923 F:      scripts/Makefile.*
5924 F:      scripts/basic/
5925 F:      scripts/mk*
5926 F:      scripts/package/
5927
5928 KERNEL JANITORS
5929 L:      kernel-janitors@vger.kernel.org
5930 W:      http://kernelnewbies.org/KernelJanitors
5931 S:      Odd Fixes
5932
5933 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
5934 M:      "J. Bruce Fields" <bfields@fieldses.org>
5935 M:      Jeff Layton <jlayton@poochiereds.net>
5936 L:      linux-nfs@vger.kernel.org
5937 W:      http://nfs.sourceforge.net/
5938 S:      Supported
5939 F:      fs/nfsd/
5940 F:      include/uapi/linux/nfsd/
5941 F:      fs/lockd/
5942 F:      fs/nfs_common/
5943 F:      net/sunrpc/
5944 F:      include/linux/lockd/
5945 F:      include/linux/sunrpc/
5946 F:      include/uapi/linux/sunrpc/
5947
5948 KERNEL SELFTEST FRAMEWORK
5949 M:      Shuah Khan <shuahkh@osg.samsung.com>
5950 L:      linux-api@vger.kernel.org
5951 T:      git git://git.kernel.org/pub/scm/shuah/linux-kselftest
5952 S:      Maintained
5953 F:      tools/testing/selftests
5954
5955 KERNEL VIRTUAL MACHINE (KVM)
5956 M:      Gleb Natapov <gleb@kernel.org>
5957 M:      Paolo Bonzini <pbonzini@redhat.com>
5958 L:      kvm@vger.kernel.org
5959 W:      http://www.linux-kvm.org
5960 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
5961 S:      Supported
5962 F:      Documentation/*/kvm*.txt
5963 F:      Documentation/virtual/kvm/
5964 F:      arch/*/kvm/
5965 F:      arch/x86/kernel/kvm.c
5966 F:      arch/x86/kernel/kvmclock.c
5967 F:      arch/*/include/asm/kvm*
5968 F:      include/linux/kvm*
5969 F:      include/uapi/linux/kvm*
5970 F:      virt/kvm/
5971
5972 KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
5973 M:      Joerg Roedel <joro@8bytes.org>
5974 L:      kvm@vger.kernel.org
5975 W:      http://www.linux-kvm.org/
5976 S:      Maintained
5977 F:      arch/x86/include/asm/svm.h
5978 F:      arch/x86/kvm/svm.c
5979
5980 KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
5981 M:      Alexander Graf <agraf@suse.com>
5982 L:      kvm-ppc@vger.kernel.org
5983 W:      http://www.linux-kvm.org/
5984 T:      git git://github.com/agraf/linux-2.6.git
5985 S:      Supported
5986 F:      arch/powerpc/include/asm/kvm*
5987 F:      arch/powerpc/kvm/
5988
5989 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
5990 M:      Christian Borntraeger <borntraeger@de.ibm.com>
5991 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
5992 L:      linux-s390@vger.kernel.org
5993 W:      http://www.ibm.com/developerworks/linux/linux390/
5994 S:      Supported
5995 F:      Documentation/s390/kvm.txt
5996 F:      arch/s390/include/asm/kvm*
5997 F:      arch/s390/kvm/
5998
5999 KERNEL VIRTUAL MACHINE (KVM) FOR ARM
6000 M:      Christoffer Dall <christoffer.dall@linaro.org>
6001 M:      Marc Zyngier <marc.zyngier@arm.com>
6002 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6003 L:      kvmarm@lists.cs.columbia.edu
6004 W:      http://systems.cs.columbia.edu/projects/kvm-arm
6005 S:      Supported
6006 F:      arch/arm/include/uapi/asm/kvm*
6007 F:      arch/arm/include/asm/kvm*
6008 F:      arch/arm/kvm/
6009 F:      virt/kvm/arm/
6010 F:      include/kvm/arm_*
6011
6012 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
6013 M:      Christoffer Dall <christoffer.dall@linaro.org>
6014 M:      Marc Zyngier <marc.zyngier@arm.com>
6015 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6016 L:      kvmarm@lists.cs.columbia.edu
6017 S:      Maintained
6018 F:      arch/arm64/include/uapi/asm/kvm*
6019 F:      arch/arm64/include/asm/kvm*
6020 F:      arch/arm64/kvm/
6021
6022 KEXEC
6023 M:      Eric Biederman <ebiederm@xmission.com>
6024 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
6025 L:      kexec@lists.infradead.org
6026 S:      Maintained
6027 F:      include/linux/kexec.h
6028 F:      include/uapi/linux/kexec.h
6029 F:      kernel/kexec.c
6030
6031 KEYS/KEYRINGS:
6032 M:      David Howells <dhowells@redhat.com>
6033 L:      keyrings@vger.kernel.org
6034 S:      Maintained
6035 F:      Documentation/security/keys.txt
6036 F:      include/linux/key.h
6037 F:      include/linux/key-type.h
6038 F:      include/keys/
6039 F:      security/keys/
6040
6041 KEYS-TRUSTED
6042 M:      David Safford <safford@us.ibm.com>
6043 M:      Mimi Zohar <zohar@linux.vnet.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/trusted-type.h
6049 F:      security/keys/trusted.c
6050 F:      security/keys/trusted.h
6051
6052 KEYS-ENCRYPTED
6053 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6054 M:      David Safford <safford@us.ibm.com>
6055 L:      linux-security-module@vger.kernel.org
6056 L:      keyrings@vger.kernel.org
6057 S:      Supported
6058 F:      Documentation/security/keys-trusted-encrypted.txt
6059 F:      include/keys/encrypted-type.h
6060 F:      security/keys/encrypted-keys/
6061
6062 KGDB / KDB /debug_core
6063 M:      Jason Wessel <jason.wessel@windriver.com>
6064 W:      http://kgdb.wiki.kernel.org/
6065 L:      kgdb-bugreport@lists.sourceforge.net
6066 S:      Maintained
6067 F:      Documentation/DocBook/kgdb.tmpl
6068 F:      drivers/misc/kgdbts.c
6069 F:      drivers/tty/serial/kgdboc.c
6070 F:      include/linux/kdb.h
6071 F:      include/linux/kgdb.h
6072 F:      kernel/debug/
6073
6074 KMEMCHECK
6075 M:      Vegard Nossum <vegardno@ifi.uio.no>
6076 M:      Pekka Enberg <penberg@kernel.org>
6077 S:      Maintained
6078 F:      Documentation/kmemcheck.txt
6079 F:      arch/x86/include/asm/kmemcheck.h
6080 F:      arch/x86/mm/kmemcheck/
6081 F:      include/linux/kmemcheck.h
6082 F:      mm/kmemcheck.c
6083
6084 KMEMLEAK
6085 M:      Catalin Marinas <catalin.marinas@arm.com>
6086 S:      Maintained
6087 F:      Documentation/kmemleak.txt
6088 F:      include/linux/kmemleak.h
6089 F:      mm/kmemleak.c
6090 F:      mm/kmemleak-test.c
6091
6092 KPROBES
6093 M:      Ananth N Mavinakayanahalli <ananth@in.ibm.com>
6094 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
6095 M:      "David S. Miller" <davem@davemloft.net>
6096 M:      Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
6097 S:      Maintained
6098 F:      Documentation/kprobes.txt
6099 F:      include/linux/kprobes.h
6100 F:      kernel/kprobes.c
6101
6102 KS0108 LCD CONTROLLER DRIVER
6103 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
6104 W:      http://miguelojeda.es/auxdisplay.htm
6105 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
6106 S:      Maintained
6107 F:      Documentation/auxdisplay/ks0108
6108 F:      drivers/auxdisplay/ks0108.c
6109 F:      include/linux/ks0108.h
6110
6111 LAPB module
6112 L:      linux-x25@vger.kernel.org
6113 S:      Orphan
6114 F:      Documentation/networking/lapb-module.txt
6115 F:      include/*/lapb.h
6116 F:      net/lapb/
6117
6118 LASI 53c700 driver for PARISC
6119 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
6120 L:      linux-scsi@vger.kernel.org
6121 S:      Maintained
6122 F:      Documentation/scsi/53c700.txt
6123 F:      drivers/scsi/53c700*
6124
6125 LED SUBSYSTEM
6126 M:      Richard Purdie <rpurdie@rpsys.net>
6127 M:      Jacek Anaszewski <j.anaszewski@samsung.com>
6128 L:      linux-leds@vger.kernel.org
6129 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
6130 S:      Maintained
6131 F:      drivers/leds/
6132 F:      include/linux/leds.h
6133
6134 LEGACY EEPROM DRIVER
6135 M:      Jean Delvare <jdelvare@suse.com>
6136 S:      Maintained
6137 F:      Documentation/misc-devices/eeprom
6138 F:      drivers/misc/eeprom/eeprom.c
6139
6140 LEGO USB Tower driver
6141 M:      Juergen Stuber <starblue@users.sourceforge.net>
6142 L:      legousb-devel@lists.sourceforge.net
6143 W:      http://legousb.sourceforge.net/
6144 S:      Maintained
6145 F:      drivers/usb/misc/legousbtower.c
6146
6147 LG2160 MEDIA DRIVER
6148 M:      Michael Krufky <mkrufky@linuxtv.org>
6149 L:      linux-media@vger.kernel.org
6150 W:      http://linuxtv.org/
6151 W:      http://github.com/mkrufky
6152 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6153 T:      git git://linuxtv.org/mkrufky/tuners.git
6154 S:      Maintained
6155 F:      drivers/media/dvb-frontends/lg2160.*
6156
6157 LGDT3305 MEDIA DRIVER
6158 M:      Michael Krufky <mkrufky@linuxtv.org>
6159 L:      linux-media@vger.kernel.org
6160 W:      http://linuxtv.org/
6161 W:      http://github.com/mkrufky
6162 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6163 T:      git git://linuxtv.org/mkrufky/tuners.git
6164 S:      Maintained
6165 F:      drivers/media/dvb-frontends/lgdt3305.*
6166
6167 LGUEST
6168 M:      Rusty Russell <rusty@rustcorp.com.au>
6169 L:      lguest@lists.ozlabs.org
6170 W:      http://lguest.ozlabs.org/
6171 S:      Odd Fixes
6172 F:      arch/x86/include/asm/lguest*.h
6173 F:      arch/x86/lguest/
6174 F:      drivers/lguest/
6175 F:      include/linux/lguest*.h
6176 F:      tools/lguest/
6177
6178 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
6179 M:      Tejun Heo <tj@kernel.org>
6180 L:      linux-ide@vger.kernel.org
6181 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6182 S:      Maintained
6183 F:      drivers/ata/
6184 F:      include/linux/ata.h
6185 F:      include/linux/libata.h
6186
6187 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
6188 M:      Viresh Kumar <vireshk@kernel.org>
6189 L:      linux-ide@vger.kernel.org
6190 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6191 S:      Maintained
6192 F:      include/linux/pata_arasan_cf_data.h
6193 F:      drivers/ata/pata_arasan_cf.c
6194
6195 LIBATA PATA DRIVERS
6196 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6197 M:      Tejun Heo <tj@kernel.org>
6198 L:      linux-ide@vger.kernel.org
6199 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6200 S:      Maintained
6201 F:      drivers/ata/pata_*.c
6202 F:      drivers/ata/ata_generic.c
6203
6204 LIBATA SATA AHCI PLATFORM devices support
6205 M:      Hans de Goede <hdegoede@redhat.com>
6206 M:      Tejun Heo <tj@kernel.org>
6207 L:      linux-ide@vger.kernel.org
6208 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6209 S:      Maintained
6210 F:      drivers/ata/ahci_platform.c
6211 F:      drivers/ata/libahci_platform.c
6212 F:      include/linux/ahci_platform.h
6213
6214 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
6215 M:      Mikael Pettersson <mikpelinux@gmail.com>
6216 L:      linux-ide@vger.kernel.org
6217 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6218 S:      Maintained
6219 F:      drivers/ata/sata_promise.*
6220
6221 LIBLOCKDEP
6222 M:      Sasha Levin <sasha.levin@oracle.com>
6223 S:      Maintained
6224 F:      tools/lib/lockdep/
6225
6226 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
6227 M:      Dan Williams <dan.j.williams@intel.com>
6228 L:      linux-nvdimm@lists.01.org
6229 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6230 S:      Supported
6231 F:      drivers/nvdimm/*
6232 F:      include/linux/nd.h
6233 F:      include/linux/libnvdimm.h
6234 F:      include/uapi/linux/ndctl.h
6235
6236 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
6237 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6238 L:      linux-nvdimm@lists.01.org
6239 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6240 S:      Supported
6241 F:      drivers/nvdimm/blk.c
6242 F:      drivers/nvdimm/region_devs.c
6243 F:      drivers/acpi/nfit*
6244
6245 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
6246 M:      Vishal Verma <vishal.l.verma@intel.com>
6247 L:      linux-nvdimm@lists.01.org
6248 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6249 S:      Supported
6250 F:      drivers/nvdimm/btt*
6251
6252 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
6253 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6254 L:      linux-nvdimm@lists.01.org
6255 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6256 S:      Supported
6257 F:      drivers/nvdimm/pmem.c
6258 F:      include/linux/pmem.h
6259 F:      arch/*/include/asm/pmem.h
6260
6261 LINUX FOR IBM pSERIES (RS/6000)
6262 M:      Paul Mackerras <paulus@au.ibm.com>
6263 W:      http://www.ibm.com/linux/ltc/projects/ppc
6264 S:      Supported
6265 F:      arch/powerpc/boot/rs6000.h
6266
6267 LINUX FOR POWERPC (32-BIT AND 64-BIT)
6268 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6269 M:      Paul Mackerras <paulus@samba.org>
6270 M:      Michael Ellerman <mpe@ellerman.id.au>
6271 W:      http://www.penguinppc.org/
6272 L:      linuxppc-dev@lists.ozlabs.org
6273 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
6274 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
6275 S:      Supported
6276 F:      Documentation/powerpc/
6277 F:      arch/powerpc/
6278
6279 LINUX FOR POWER MACINTOSH
6280 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6281 W:      http://www.penguinppc.org/
6282 L:      linuxppc-dev@lists.ozlabs.org
6283 S:      Maintained
6284 F:      arch/powerpc/platforms/powermac/
6285 F:      drivers/macintosh/
6286
6287 LINUX FOR POWERPC EMBEDDED MPC5XXX
6288 M:      Anatolij Gustschin <agust@denx.de>
6289 L:      linuxppc-dev@lists.ozlabs.org
6290 T:      git git://git.denx.de/linux-denx-agust.git
6291 S:      Maintained
6292 F:      arch/powerpc/platforms/512x/
6293 F:      arch/powerpc/platforms/52xx/
6294
6295 LINUX FOR POWERPC EMBEDDED PPC4XX
6296 M:      Alistair Popple <alistair@popple.id.au>
6297 M:      Matt Porter <mporter@kernel.crashing.org>
6298 W:      http://www.penguinppc.org/
6299 L:      linuxppc-dev@lists.ozlabs.org
6300 S:      Maintained
6301 F:      arch/powerpc/platforms/40x/
6302 F:      arch/powerpc/platforms/44x/
6303
6304 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
6305 L:      linuxppc-dev@lists.ozlabs.org
6306 S:      Orphan
6307 F:      arch/powerpc/*/*virtex*
6308 F:      arch/powerpc/*/*/*virtex*
6309
6310 LINUX FOR POWERPC EMBEDDED PPC8XX
6311 M:      Vitaly Bordug <vitb@kernel.crashing.org>
6312 W:      http://www.penguinppc.org/
6313 L:      linuxppc-dev@lists.ozlabs.org
6314 S:      Maintained
6315 F:      arch/powerpc/platforms/8xx/
6316
6317 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
6318 M:      Scott Wood <scottwood@freescale.com>
6319 M:      Kumar Gala <galak@kernel.crashing.org>
6320 W:      http://www.penguinppc.org/
6321 L:      linuxppc-dev@lists.ozlabs.org
6322 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
6323 S:      Maintained
6324 F:      arch/powerpc/platforms/83xx/
6325 F:      arch/powerpc/platforms/85xx/
6326
6327 LINUX FOR POWERPC PA SEMI PWRFICIENT
6328 M:      Olof Johansson <olof@lixom.net>
6329 L:      linuxppc-dev@lists.ozlabs.org
6330 S:      Maintained
6331 F:      arch/powerpc/platforms/pasemi/
6332 F:      drivers/*/*pasemi*
6333 F:      drivers/*/*/*pasemi*
6334
6335 LINUX SECURITY MODULE (LSM) FRAMEWORK
6336 M:      Chris Wright <chrisw@sous-sol.org>
6337 L:      linux-security-module@vger.kernel.org
6338 S:      Supported
6339
6340 LIS3LV02D ACCELEROMETER DRIVER
6341 M:      Eric Piel <eric.piel@tremplin-utc.net>
6342 S:      Maintained
6343 F:      Documentation/misc-devices/lis3lv02d
6344 F:      drivers/misc/lis3lv02d/
6345 F:      drivers/platform/x86/hp_accel.c
6346
6347 LIVE PATCHING
6348 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6349 M:      Seth Jennings <sjenning@redhat.com>
6350 M:      Jiri Kosina <jikos@kernel.org>
6351 M:      Vojtech Pavlik <vojtech@suse.com>
6352 S:      Maintained
6353 F:      kernel/livepatch/
6354 F:      include/linux/livepatch.h
6355 F:      arch/x86/include/asm/livepatch.h
6356 F:      arch/x86/kernel/livepatch.c
6357 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
6358 F:      samples/livepatch/
6359 L:      live-patching@vger.kernel.org
6360 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
6361
6362 LLC (802.2)
6363 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
6364 S:      Maintained
6365 F:      include/linux/llc.h
6366 F:      include/uapi/linux/llc.h
6367 F:      include/net/llc*
6368 F:      net/llc/
6369
6370 LM73 HARDWARE MONITOR DRIVER
6371 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
6372 L:      lm-sensors@lm-sensors.org
6373 S:      Maintained
6374 F:      drivers/hwmon/lm73.c
6375
6376 LM78 HARDWARE MONITOR DRIVER
6377 M:      Jean Delvare <jdelvare@suse.com>
6378 L:      lm-sensors@lm-sensors.org
6379 S:      Maintained
6380 F:      Documentation/hwmon/lm78
6381 F:      drivers/hwmon/lm78.c
6382
6383 LM83 HARDWARE MONITOR DRIVER
6384 M:      Jean Delvare <jdelvare@suse.com>
6385 L:      lm-sensors@lm-sensors.org
6386 S:      Maintained
6387 F:      Documentation/hwmon/lm83
6388 F:      drivers/hwmon/lm83.c
6389
6390 LM90 HARDWARE MONITOR DRIVER
6391 M:      Jean Delvare <jdelvare@suse.com>
6392 L:      lm-sensors@lm-sensors.org
6393 S:      Maintained
6394 F:      Documentation/hwmon/lm90
6395 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
6396 F:      drivers/hwmon/lm90.c
6397
6398 LM95234 HARDWARE MONITOR DRIVER
6399 M:      Guenter Roeck <linux@roeck-us.net>
6400 L:      lm-sensors@lm-sensors.org
6401 S:      Maintained
6402 F:      Documentation/hwmon/lm95234
6403 F:      drivers/hwmon/lm95234.c
6404
6405 LME2510 MEDIA DRIVER
6406 M:      Malcolm Priestley <tvboxspy@gmail.com>
6407 L:      linux-media@vger.kernel.org
6408 W:      http://linuxtv.org/
6409 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6410 S:      Maintained
6411 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
6412
6413 LOCKDEP AND LOCKSTAT
6414 M:      Peter Zijlstra <peterz@infradead.org>
6415 M:      Ingo Molnar <mingo@redhat.com>
6416 L:      linux-kernel@vger.kernel.org
6417 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
6418 S:      Maintained
6419 F:      Documentation/locking/lockdep*.txt
6420 F:      Documentation/locking/lockstat.txt
6421 F:      include/linux/lockdep.h
6422 F:      kernel/locking/
6423
6424 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
6425 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
6426 L:      linux-ntfs-dev@lists.sourceforge.net
6427 W:      http://www.linux-ntfs.org/content/view/19/37/
6428 S:      Maintained
6429 F:      Documentation/ldm.txt
6430 F:      block/partitions/ldm.*
6431
6432 LogFS
6433 M:      Joern Engel <joern@logfs.org>
6434 M:      Prasad Joshi <prasadjoshi.linux@gmail.com>
6435 L:      logfs@logfs.org
6436 W:      logfs.org
6437 S:      Maintained
6438 F:      fs/logfs/
6439
6440 LPC32XX MACHINE SUPPORT
6441 M:      Roland Stigge <stigge@antcom.de>
6442 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6443 S:      Maintained
6444 F:      arch/arm/mach-lpc32xx/
6445
6446 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
6447 M:      Nagalakshmi Nandigama <nagalakshmi.nandigama@avagotech.com>
6448 M:      Praveen Krishnamoorthy <praveen.krishnamoorthy@avagotech.com>
6449 M:      Sreekanth Reddy <sreekanth.reddy@avagotech.com>
6450 M:      Abhijit Mahajan <abhijit.mahajan@avagotech.com>
6451 L:      MPT-FusionLinux.pdl@avagotech.com
6452 L:      linux-scsi@vger.kernel.org
6453 W:      http://www.lsilogic.com/support
6454 S:      Supported
6455 F:      drivers/message/fusion/
6456 F:      drivers/scsi/mpt2sas/
6457 F:      drivers/scsi/mpt3sas/
6458
6459 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
6460 M:      Matthew Wilcox <matthew@wil.cx>
6461 L:      linux-scsi@vger.kernel.org
6462 S:      Maintained
6463 F:      drivers/scsi/sym53c8xx_2/
6464
6465 LTC4261 HARDWARE MONITOR DRIVER
6466 M:      Guenter Roeck <linux@roeck-us.net>
6467 L:      lm-sensors@lm-sensors.org
6468 S:      Maintained
6469 F:      Documentation/hwmon/ltc4261
6470 F:      drivers/hwmon/ltc4261.c
6471
6472 LTP (Linux Test Project)
6473 M:      Mike Frysinger <vapier@gentoo.org>
6474 M:      Cyril Hrubis <chrubis@suse.cz>
6475 M:      Wanlong Gao <wanlong.gao@gmail.com>
6476 M:      Jan Stancek <jstancek@redhat.com>
6477 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
6478 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
6479 L:      ltp@lists.linux.it (subscribers-only)
6480 W:      http://linux-test-project.github.io/
6481 T:      git git://github.com/linux-test-project/ltp.git
6482 S:      Maintained
6483
6484 M32R ARCHITECTURE
6485 W:      http://www.linux-m32r.org/
6486 S:      Orphan
6487 F:      arch/m32r/
6488
6489 M68K ARCHITECTURE
6490 M:      Geert Uytterhoeven <geert@linux-m68k.org>
6491 L:      linux-m68k@lists.linux-m68k.org
6492 W:      http://www.linux-m68k.org/
6493 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
6494 S:      Maintained
6495 F:      arch/m68k/
6496 F:      drivers/zorro/
6497
6498 M68K ON APPLE MACINTOSH
6499 M:      Joshua Thompson <funaho@jurai.org>
6500 W:      http://www.mac.linux-m68k.org/
6501 L:      linux-m68k@lists.linux-m68k.org
6502 S:      Maintained
6503 F:      arch/m68k/mac/
6504
6505 M68K ON HP9000/300
6506 M:      Philip Blundell <philb@gnu.org>
6507 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
6508 S:      Maintained
6509 F:      arch/m68k/hp300/
6510
6511 M88DS3103 MEDIA DRIVER
6512 M:      Antti Palosaari <crope@iki.fi>
6513 L:      linux-media@vger.kernel.org
6514 W:      http://linuxtv.org/
6515 W:      http://palosaari.fi/linux/
6516 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6517 T:      git git://linuxtv.org/anttip/media_tree.git
6518 S:      Maintained
6519 F:      drivers/media/dvb-frontends/m88ds3103*
6520
6521 M88RS2000 MEDIA DRIVER
6522 M:      Malcolm Priestley <tvboxspy@gmail.com>
6523 L:      linux-media@vger.kernel.org
6524 W:      http://linuxtv.org/
6525 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6526 S:      Maintained
6527 F:      drivers/media/dvb-frontends/m88rs2000*
6528
6529 MA901 MASTERKIT USB FM RADIO DRIVER
6530 M:      Alexey Klimov <klimov.linux@gmail.com>
6531 L:      linux-media@vger.kernel.org
6532 T:      git git://linuxtv.org/media_tree.git
6533 S:      Maintained
6534 F:      drivers/media/radio/radio-ma901.c
6535
6536 MAC80211
6537 M:      Johannes Berg <johannes@sipsolutions.net>
6538 L:      linux-wireless@vger.kernel.org
6539 W:      http://wireless.kernel.org/
6540 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6541 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
6542 S:      Maintained
6543 F:      Documentation/networking/mac80211-injection.txt
6544 F:      include/net/mac80211.h
6545 F:      net/mac80211/
6546
6547 MACVLAN DRIVER
6548 M:      Patrick McHardy <kaber@trash.net>
6549 L:      netdev@vger.kernel.org
6550 S:      Maintained
6551 F:      drivers/net/macvlan.c
6552 F:      include/linux/if_macvlan.h
6553
6554 MAILBOX API
6555 M:      Jassi Brar <jassisinghbrar@gmail.com>
6556 L:      linux-kernel@vger.kernel.org
6557 S:      Maintained
6558 F:      drivers/mailbox/
6559 F:      include/linux/mailbox_client.h
6560 F:      include/linux/mailbox_controller.h
6561
6562 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
6563 M:      Michael Kerrisk <mtk.manpages@gmail.com>
6564 W:      http://www.kernel.org/doc/man-pages
6565 L:      linux-man@vger.kernel.org
6566 S:      Maintained
6567
6568 MARVELL ARMADA DRM SUPPORT
6569 M:      Russell King <rmk+kernel@arm.linux.org.uk>
6570 S:      Maintained
6571 F:      drivers/gpu/drm/armada/
6572
6573 MARVELL 88E6352 DSA support
6574 M:      Guenter Roeck <linux@roeck-us.net>
6575 S:      Maintained
6576 F:      drivers/net/dsa/mv88e6352.c
6577
6578 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
6579 M:      Mirko Lindner <mlindner@marvell.com>
6580 M:      Stephen Hemminger <stephen@networkplumber.org>
6581 L:      netdev@vger.kernel.org
6582 S:      Maintained
6583 F:      drivers/net/ethernet/marvell/sk*
6584
6585 MARVELL LIBERTAS WIRELESS DRIVER
6586 L:      libertas-dev@lists.infradead.org
6587 S:      Orphan
6588 F:      drivers/net/wireless/libertas/
6589
6590 MARVELL MV643XX ETHERNET DRIVER
6591 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
6592 L:      netdev@vger.kernel.org
6593 S:      Maintained
6594 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
6595 F:      include/linux/mv643xx.h
6596
6597 MARVELL MVNETA ETHERNET DRIVER
6598 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
6599 L:      netdev@vger.kernel.org
6600 S:      Maintained
6601 F:      drivers/net/ethernet/marvell/mvneta.*
6602
6603 MARVELL MWIFIEX WIRELESS DRIVER
6604 M:      Amitkumar Karwar <akarwar@marvell.com>
6605 M:      Nishant Sarmukadam <nishants@marvell.com>
6606 L:      linux-wireless@vger.kernel.org
6607 S:      Maintained
6608 F:      drivers/net/wireless/mwifiex/
6609
6610 MARVELL MWL8K WIRELESS DRIVER
6611 M:      Lennert Buytenhek <buytenh@wantstofly.org>
6612 L:      linux-wireless@vger.kernel.org
6613 S:      Odd Fixes
6614 F:      drivers/net/wireless/mwl8k.c
6615
6616 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
6617 M:      Nicolas Pitre <nico@fluxnic.net>
6618 S:      Odd Fixes
6619 F:      drivers/mmc/host/mvsdio.*
6620
6621 MATROX FRAMEBUFFER DRIVER
6622 L:      linux-fbdev@vger.kernel.org
6623 S:      Orphan
6624 F:      drivers/video/fbdev/matrox/matroxfb_*
6625 F:      include/uapi/linux/matroxfb.h
6626
6627 MAX16065 HARDWARE MONITOR DRIVER
6628 M:      Guenter Roeck <linux@roeck-us.net>
6629 L:      lm-sensors@lm-sensors.org
6630 S:      Maintained
6631 F:      Documentation/hwmon/max16065
6632 F:      drivers/hwmon/max16065.c
6633
6634 MAX20751 HARDWARE MONITOR DRIVER
6635 M:      Guenter Roeck <linux@roeck-us.net>
6636 L:      lm-sensors@lm-sensors.org
6637 S:      Maintained
6638 F:      Documentation/hwmon/max20751
6639 F:      drivers/hwmon/max20751.c
6640
6641 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6642 M:      "Hans J. Koch" <hjk@hansjkoch.de>
6643 L:      lm-sensors@lm-sensors.org
6644 S:      Maintained
6645 F:      Documentation/hwmon/max6650
6646 F:      drivers/hwmon/max6650.c
6647
6648 MAX6697 HARDWARE MONITOR DRIVER
6649 M:      Guenter Roeck <linux@roeck-us.net>
6650 L:      lm-sensors@lm-sensors.org
6651 S:      Maintained
6652 F:      Documentation/hwmon/max6697
6653 F:      Documentation/devicetree/bindings/i2c/max6697.txt
6654 F:      drivers/hwmon/max6697.c
6655 F:      include/linux/platform_data/max6697.h
6656
6657 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
6658 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6659 L:      linux-pm@vger.kernel.org
6660 S:      Supported
6661 F:      drivers/power/max14577_charger.c
6662 F:      drivers/power/max77693_charger.c
6663
6664 MAXIM MAX77802 MULTIFUNCTION PMIC DEVICE DRIVERS
6665 M:      Javier Martinez Canillas <javier@osg.samsung.com>
6666 L:      linux-kernel@vger.kernel.org
6667 S:      Supported
6668 F:      drivers/*/*max77802.c
6669 F:      Documentation/devicetree/bindings/*/*max77802.txt
6670 F:      include/dt-bindings/*/*max77802.h
6671
6672 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
6673 M:      Chanwoo Choi <cw00.choi@samsung.com>
6674 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6675 L:      linux-kernel@vger.kernel.org
6676 S:      Supported
6677 F:      drivers/*/max14577.c
6678 F:      drivers/*/max77686.c
6679 F:      drivers/*/max77693.c
6680 F:      drivers/extcon/extcon-max14577.c
6681 F:      drivers/extcon/extcon-max77693.c
6682 F:      drivers/rtc/rtc-max77686.c
6683 F:      drivers/clk/clk-max77686.c
6684 F:      Documentation/devicetree/bindings/mfd/max14577.txt
6685 F:      Documentation/devicetree/bindings/*/max77686.txt
6686 F:      Documentation/devicetree/bindings/mfd/max77693.txt
6687 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
6688 F:      include/linux/mfd/max14577*.h
6689 F:      include/linux/mfd/max77686*.h
6690 F:      include/linux/mfd/max77693*.h
6691
6692 MAXIRADIO FM RADIO RECEIVER DRIVER
6693 M:      Hans Verkuil <hverkuil@xs4all.nl>
6694 L:      linux-media@vger.kernel.org
6695 T:      git git://linuxtv.org/media_tree.git
6696 W:      http://linuxtv.org
6697 S:      Maintained
6698 F:      drivers/media/radio/radio-maxiradio*
6699
6700 MEDIA DRIVERS FOR RENESAS - VSP1
6701 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6702 L:      linux-media@vger.kernel.org
6703 L:      linux-sh@vger.kernel.org
6704 T:      git git://linuxtv.org/media_tree.git
6705 S:      Supported
6706 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
6707 F:      drivers/media/platform/vsp1/
6708
6709 MEDIA DRIVERS FOR ASCOT2E
6710 M:      Sergey Kozlov <serjk@netup.ru>
6711 L:      linux-media@vger.kernel.org
6712 W:      http://linuxtv.org
6713 W:      http://netup.tv/
6714 T:      git git://linuxtv.org/media_tree.git
6715 S:      Supported
6716 F:      drivers/media/dvb-frontends/ascot2e*
6717
6718 MEDIA DRIVERS FOR CXD2841ER
6719 M:      Sergey Kozlov <serjk@netup.ru>
6720 L:      linux-media@vger.kernel.org
6721 W:      http://linuxtv.org/
6722 W:      http://netup.tv/
6723 T:      git git://linuxtv.org/media_tree.git
6724 S:      Supported
6725 F:      drivers/media/dvb-frontends/cxd2841er*
6726
6727 MEDIA DRIVERS FOR HORUS3A
6728 M:      Sergey Kozlov <serjk@netup.ru>
6729 L:      linux-media@vger.kernel.org
6730 W:      http://linuxtv.org/
6731 W:      http://netup.tv/
6732 T:      git git://linuxtv.org/media_tree.git
6733 S:      Supported
6734 F:      drivers/media/dvb-frontends/horus3a*
6735
6736 MEDIA DRIVERS FOR LNBH25
6737 M:      Sergey Kozlov <serjk@netup.ru>
6738 L:      linux-media@vger.kernel.org
6739 W:      http://linuxtv.org/
6740 W:      http://netup.tv/
6741 T:      git git://linuxtv.org/media_tree.git
6742 S:      Supported
6743 F:      drivers/media/dvb-frontends/lnbh25*
6744
6745 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
6746 M:      Sergey Kozlov <serjk@netup.ru>
6747 L:      linux-media@vger.kernel.org
6748 W:      http://linuxtv.org/
6749 W:      http://netup.tv/
6750 T:      git git://linuxtv.org/media_tree.git
6751 S:      Supported
6752 F:      drivers/media/pci/netup_unidvb/*
6753
6754 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
6755 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
6756 P:      LinuxTV.org Project
6757 L:      linux-media@vger.kernel.org
6758 W:      http://linuxtv.org
6759 Q:      http://patchwork.kernel.org/project/linux-media/list/
6760 T:      git git://linuxtv.org/media_tree.git
6761 S:      Maintained
6762 F:      Documentation/dvb/
6763 F:      Documentation/video4linux/
6764 F:      Documentation/DocBook/media/
6765 F:      drivers/media/
6766 F:      drivers/staging/media/
6767 F:      include/media/
6768 F:      include/uapi/linux/dvb/
6769 F:      include/uapi/linux/videodev2.h
6770 F:      include/uapi/linux/media.h
6771 F:      include/uapi/linux/v4l2-*
6772 F:      include/uapi/linux/meye.h
6773 F:      include/uapi/linux/ivtv*
6774 F:      include/uapi/linux/uvcvideo.h
6775
6776 MEDIATEK MT7601U WIRELESS LAN DRIVER
6777 M:      Jakub Kicinski <kubakici@wp.pl>
6778 L:      linux-wireless@vger.kernel.org
6779 S:      Maintained
6780 F:      drivers/net/wireless/mediatek/mt7601u/
6781
6782 MEGARAID SCSI/SAS DRIVERS
6783 M:      Kashyap Desai <kashyap.desai@avagotech.com>
6784 M:      Sumit Saxena <sumit.saxena@avagotech.com>
6785 M:      Uday Lingala <uday.lingala@avagotech.com>
6786 L:      megaraidlinux.pdl@avagotech.com
6787 L:      linux-scsi@vger.kernel.org
6788 W:      http://www.lsi.com
6789 S:      Maintained
6790 F:      Documentation/scsi/megaraid.txt
6791 F:      drivers/scsi/megaraid.*
6792 F:      drivers/scsi/megaraid/
6793
6794 MELLANOX ETHERNET DRIVER (mlx4_en)
6795 M:      Amir Vadai <amirv@mellanox.com>
6796 M:      Ido Shamay <idos@mellanox.com>
6797 L:      netdev@vger.kernel.org
6798 S:      Supported
6799 W:      http://www.mellanox.com
6800 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6801 F:      drivers/net/ethernet/mellanox/mlx4/en_*
6802
6803 MELLANOX ETHERNET SWITCH DRIVERS
6804 M:      Jiri Pirko <jiri@mellanox.com>
6805 M:      Ido Schimmel <idosch@mellanox.com>
6806 L:      netdev@vger.kernel.org
6807 S:      Supported
6808 W:      http://www.mellanox.com
6809 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6810 F:      drivers/net/ethernet/mellanox/mlxsw/
6811
6812 MEMBARRIER SUPPORT
6813 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
6814 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
6815 L:      linux-kernel@vger.kernel.org
6816 S:      Supported
6817 F:      kernel/membarrier.c
6818 F:      include/uapi/linux/membarrier.h
6819
6820 MEMORY MANAGEMENT
6821 L:      linux-mm@kvack.org
6822 W:      http://www.linux-mm.org
6823 S:      Maintained
6824 F:      include/linux/mm.h
6825 F:      include/linux/gfp.h
6826 F:      include/linux/mmzone.h
6827 F:      include/linux/memory_hotplug.h
6828 F:      include/linux/vmalloc.h
6829 F:      mm/
6830
6831 MEMORY TECHNOLOGY DEVICES (MTD)
6832 M:      David Woodhouse <dwmw2@infradead.org>
6833 M:      Brian Norris <computersforpeace@gmail.com>
6834 L:      linux-mtd@lists.infradead.org
6835 W:      http://www.linux-mtd.infradead.org/
6836 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
6837 T:      git git://git.infradead.org/linux-mtd.git
6838 T:      git git://git.infradead.org/l2-mtd.git
6839 S:      Maintained
6840 F:      drivers/mtd/
6841 F:      include/linux/mtd/
6842 F:      include/uapi/mtd/
6843
6844 MEN A21 WATCHDOG DRIVER
6845 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6846 L:      linux-watchdog@vger.kernel.org
6847 S:      Maintained
6848 F:      drivers/watchdog/mena21_wdt.c
6849
6850 MEN CHAMELEON BUS (mcb)
6851 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6852 S:      Maintained
6853 F:      drivers/mcb/
6854 F:      include/linux/mcb.h
6855 F:      Documentation/men-chameleon-bus.txt
6856
6857 MEN F21BMC (Board Management Controller)
6858 M:      Andreas Werner <andreas.werner@men.de>
6859 S:      Supported
6860 F:      drivers/mfd/menf21bmc.c
6861 F:      drivers/watchdog/menf21bmc_wdt.c
6862 F:      drivers/leds/leds-menf21bmc.c
6863 F:      drivers/hwmon/menf21bmc_hwmon.c
6864 F:      Documentation/hwmon/menf21bmc
6865
6866 METAG ARCHITECTURE
6867 M:      James Hogan <james.hogan@imgtec.com>
6868 L:      linux-metag@vger.kernel.org
6869 S:      Supported
6870 F:      arch/metag/
6871 F:      Documentation/metag/
6872 F:      Documentation/devicetree/bindings/metag/
6873 F:      drivers/clocksource/metag_generic.c
6874 F:      drivers/irqchip/irq-metag.c
6875 F:      drivers/irqchip/irq-metag-ext.c
6876 F:      drivers/tty/metag_da.c
6877
6878 MICROBLAZE ARCHITECTURE
6879 M:      Michal Simek <monstr@monstr.eu>
6880 W:      http://www.monstr.eu/fdt/
6881 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
6882 S:      Supported
6883 F:      arch/microblaze/
6884
6885 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
6886 M:      Chen Yu <yu.c.chen@intel.com>
6887 L:      platform-driver-x86@vger.kernel.org
6888 S:      Supported
6889 F:      drivers/platform/x86/surfacepro3_button.c
6890
6891 MICROTEK X6 SCANNER
6892 M:      Oliver Neukum <oliver@neukum.org>
6893 S:      Maintained
6894 F:      drivers/usb/image/microtek.*
6895
6896 MIPS
6897 M:      Ralf Baechle <ralf@linux-mips.org>
6898 L:      linux-mips@linux-mips.org
6899 W:      http://www.linux-mips.org/
6900 T:      git git://git.linux-mips.org/pub/scm/ralf/linux.git
6901 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
6902 S:      Supported
6903 F:      Documentation/mips/
6904 F:      arch/mips/
6905
6906 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
6907 M:      Hans Verkuil <hverkuil@xs4all.nl>
6908 L:      linux-media@vger.kernel.org
6909 T:      git git://linuxtv.org/media_tree.git
6910 W:      http://linuxtv.org
6911 S:      Odd Fixes
6912 F:      drivers/media/radio/radio-miropcm20*
6913
6914 Mellanox MLX5 core VPI driver
6915 M:      Eli Cohen <eli@mellanox.com>
6916 L:      netdev@vger.kernel.org
6917 L:      linux-rdma@vger.kernel.org
6918 W:      http://www.mellanox.com
6919 Q:      http://patchwork.ozlabs.org/project/netdev/list/
6920 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
6921 T:      git git://openfabrics.org/~eli/connect-ib.git
6922 S:      Supported
6923 F:      drivers/net/ethernet/mellanox/mlx5/core/
6924 F:      include/linux/mlx5/
6925
6926 Mellanox MLX5 IB driver
6927 M:      Eli Cohen <eli@mellanox.com>
6928 L:      linux-rdma@vger.kernel.org
6929 W:      http://www.mellanox.com
6930 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
6931 T:      git git://openfabrics.org/~eli/connect-ib.git
6932 S:      Supported
6933 F:      include/linux/mlx5/
6934 F:      drivers/infiniband/hw/mlx5/
6935
6936 MN88472 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/mn88472/
6945 F:      drivers/media/dvb-frontends/mn88472.h
6946
6947 MN88473 MEDIA DRIVER
6948 M:      Antti Palosaari <crope@iki.fi>
6949 L:      linux-media@vger.kernel.org
6950 W:      http://linuxtv.org/
6951 W:      http://palosaari.fi/linux/
6952 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6953 T:      git git://linuxtv.org/anttip/media_tree.git
6954 S:      Maintained
6955 F:      drivers/staging/media/mn88473/
6956 F:      drivers/media/dvb-frontends/mn88473.h
6957
6958 MODULE SUPPORT
6959 M:      Rusty Russell <rusty@rustcorp.com.au>
6960 S:      Maintained
6961 F:      include/linux/module.h
6962 F:      kernel/module.c
6963
6964 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
6965 W:      http://popies.net/meye/
6966 S:      Orphan
6967 F:      Documentation/video4linux/meye.txt
6968 F:      drivers/media/pci/meye/
6969 F:      include/uapi/linux/meye.h
6970
6971 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
6972 M:      Jiri Slaby <jirislaby@gmail.com>
6973 S:      Maintained
6974 F:      Documentation/serial/moxa-smartio
6975 F:      drivers/tty/mxser.*
6976
6977 MR800 AVERMEDIA USB FM RADIO DRIVER
6978 M:      Alexey Klimov <klimov.linux@gmail.com>
6979 L:      linux-media@vger.kernel.org
6980 T:      git git://linuxtv.org/media_tree.git
6981 S:      Maintained
6982 F:      drivers/media/radio/radio-mr800.c
6983
6984 MRF24J40 IEEE 802.15.4 RADIO DRIVER
6985 M:      Alan Ott <alan@signal11.us>
6986 L:      linux-wpan@vger.kernel.org
6987 S:      Maintained
6988 F:      drivers/net/ieee802154/mrf24j40.c
6989
6990 MSI LAPTOP SUPPORT
6991 M:      "Lee, Chun-Yi" <jlee@suse.com>
6992 L:      platform-driver-x86@vger.kernel.org
6993 S:      Maintained
6994 F:      drivers/platform/x86/msi-laptop.c
6995
6996 MSI WMI SUPPORT
6997 L:      platform-driver-x86@vger.kernel.org
6998 S:      Orphan
6999 F:      drivers/platform/x86/msi-wmi.c
7000
7001 MSI001 MEDIA DRIVER
7002 M:      Antti Palosaari <crope@iki.fi>
7003 L:      linux-media@vger.kernel.org
7004 W:      http://linuxtv.org/
7005 W:      http://palosaari.fi/linux/
7006 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7007 T:      git git://linuxtv.org/anttip/media_tree.git
7008 S:      Maintained
7009 F:      drivers/media/tuners/msi001*
7010
7011 MSI2500 MEDIA DRIVER
7012 M:      Antti Palosaari <crope@iki.fi>
7013 L:      linux-media@vger.kernel.org
7014 W:      http://linuxtv.org/
7015 W:      http://palosaari.fi/linux/
7016 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7017 T:      git git://linuxtv.org/anttip/media_tree.git
7018 S:      Maintained
7019 F:      drivers/media/usb/msi2500/
7020
7021 MSYSTEMS DISKONCHIP G3 MTD DRIVER
7022 M:      Robert Jarzmik <robert.jarzmik@free.fr>
7023 L:      linux-mtd@lists.infradead.org
7024 S:      Maintained
7025 F:      drivers/mtd/devices/docg3*
7026
7027 MT9M032 APTINA SENSOR DRIVER
7028 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7029 L:      linux-media@vger.kernel.org
7030 T:      git git://linuxtv.org/media_tree.git
7031 S:      Maintained
7032 F:      drivers/media/i2c/mt9m032.c
7033 F:      include/media/mt9m032.h
7034
7035 MT9P031 APTINA CAMERA SENSOR
7036 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7037 L:      linux-media@vger.kernel.org
7038 T:      git git://linuxtv.org/media_tree.git
7039 S:      Maintained
7040 F:      drivers/media/i2c/mt9p031.c
7041 F:      include/media/mt9p031.h
7042
7043 MT9T001 APTINA CAMERA SENSOR
7044 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7045 L:      linux-media@vger.kernel.org
7046 T:      git git://linuxtv.org/media_tree.git
7047 S:      Maintained
7048 F:      drivers/media/i2c/mt9t001.c
7049 F:      include/media/mt9t001.h
7050
7051 MT9V032 APTINA CAMERA SENSOR
7052 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7053 L:      linux-media@vger.kernel.org
7054 T:      git git://linuxtv.org/media_tree.git
7055 S:      Maintained
7056 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
7057 F:      drivers/media/i2c/mt9v032.c
7058 F:      include/media/mt9v032.h
7059
7060 MULTIFUNCTION DEVICES (MFD)
7061 M:      Samuel Ortiz <sameo@linux.intel.com>
7062 M:      Lee Jones <lee.jones@linaro.org>
7063 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
7064 S:      Supported
7065 F:      drivers/mfd/
7066 F:      include/linux/mfd/
7067
7068 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
7069 M:      Ulf Hansson <ulf.hansson@linaro.org>
7070 L:      linux-mmc@vger.kernel.org
7071 T:      git git://git.linaro.org/people/ulf.hansson/mmc.git
7072 S:      Maintained
7073 F:      drivers/mmc/
7074 F:      include/linux/mmc/
7075 F:      include/uapi/linux/mmc/
7076
7077 MULTIMEDIA CARD (MMC) ETC. OVER SPI
7078 S:      Orphan
7079 F:      drivers/mmc/host/mmc_spi.c
7080 F:      include/linux/spi/mmc_spi.h
7081
7082 MULTISOUND SOUND DRIVER
7083 M:      Andrew Veliath <andrewtv@usa.net>
7084 S:      Maintained
7085 F:      Documentation/sound/oss/MultiSound
7086 F:      sound/oss/msnd*
7087
7088 MULTITECH MULTIPORT CARD (ISICOM)
7089 S:      Orphan
7090 F:      drivers/tty/isicom.c
7091 F:      include/linux/isicom.h
7092
7093 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
7094 M:      Felipe Balbi <balbi@ti.com>
7095 L:      linux-usb@vger.kernel.org
7096 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7097 S:      Maintained
7098 F:      drivers/usb/musb/
7099
7100 MXL5007T MEDIA DRIVER
7101 M:      Michael Krufky <mkrufky@linuxtv.org>
7102 L:      linux-media@vger.kernel.org
7103 W:      http://linuxtv.org/
7104 W:      http://github.com/mkrufky
7105 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7106 T:      git git://linuxtv.org/mkrufky/tuners.git
7107 S:      Maintained
7108 F:      drivers/media/tuners/mxl5007t.*
7109
7110 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
7111 M:      Hyong-Youb Kim <hykim@myri.com>
7112 L:      netdev@vger.kernel.org
7113 W:      https://www.myricom.com/support/downloads/myri10ge.html
7114 S:      Supported
7115 F:      drivers/net/ethernet/myricom/myri10ge/
7116
7117 NATSEMI ETHERNET DRIVER (DP8381x)
7118 S:      Orphan
7119 F:      drivers/net/ethernet/natsemi/natsemi.c
7120
7121 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
7122 M:      Daniel Mack <zonque@gmail.com>
7123 S:      Maintained
7124 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7125 W:      http://www.native-instruments.com
7126 F:      sound/usb/caiaq/
7127
7128 NCP FILESYSTEM
7129 M:      Petr Vandrovec <petr@vandrovec.name>
7130 S:      Odd Fixes
7131 F:      fs/ncpfs/
7132
7133 NCR 5380 SCSI DRIVERS
7134 M:      Finn Thain <fthain@telegraphics.com.au>
7135 M:      Michael Schmitz <schmitzmic@gmail.com>
7136 L:      linux-scsi@vger.kernel.org
7137 S:      Maintained
7138 F:      Documentation/scsi/g_NCR5380.txt
7139 F:      drivers/scsi/NCR5380.*
7140 F:      drivers/scsi/arm/cumana_1.c
7141 F:      drivers/scsi/arm/oak.c
7142 F:      drivers/scsi/atari_NCR5380.c
7143 F:      drivers/scsi/atari_scsi.*
7144 F:      drivers/scsi/dmx3191d.c
7145 F:      drivers/scsi/dtc.*
7146 F:      drivers/scsi/g_NCR5380.*
7147 F:      drivers/scsi/g_NCR5380_mmio.c
7148 F:      drivers/scsi/mac_scsi.*
7149 F:      drivers/scsi/pas16.*
7150 F:      drivers/scsi/sun3_scsi.*
7151 F:      drivers/scsi/sun3_scsi_vme.c
7152 F:      drivers/scsi/t128.*
7153
7154 NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
7155 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
7156 L:      linux-scsi@vger.kernel.org
7157 S:      Maintained
7158 F:      drivers/scsi/NCR_D700.*
7159
7160 NCT6775 HARDWARE MONITOR DRIVER
7161 M:      Guenter Roeck <linux@roeck-us.net>
7162 L:      lm-sensors@lm-sensors.org
7163 S:      Maintained
7164 F:      Documentation/hwmon/nct6775
7165 F:      drivers/hwmon/nct6775.c
7166
7167 NETEFFECT IWARP RNIC DRIVER (IW_NES)
7168 M:      Faisal Latif <faisal.latif@intel.com>
7169 L:      linux-rdma@vger.kernel.org
7170 W:      http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
7171 S:      Supported
7172 F:      drivers/infiniband/hw/nes/
7173
7174 NETEM NETWORK EMULATOR
7175 M:      Stephen Hemminger <stephen@networkplumber.org>
7176 L:      netem@lists.linux-foundation.org
7177 S:      Maintained
7178 F:      net/sched/sch_netem.c
7179
7180 NETERION 10GbE DRIVERS (s2io/vxge)
7181 M:      Jon Mason <jdmason@kudzu.us>
7182 L:      netdev@vger.kernel.org
7183 S:      Supported
7184 F:      Documentation/networking/s2io.txt
7185 F:      Documentation/networking/vxge.txt
7186 F:      drivers/net/ethernet/neterion/
7187
7188 NETFILTER ({IP,IP6,ARP,EB,NF}TABLES)
7189 M:      Pablo Neira Ayuso <pablo@netfilter.org>
7190 M:      Patrick McHardy <kaber@trash.net>
7191 M:      Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
7192 L:      netfilter-devel@vger.kernel.org
7193 L:      coreteam@netfilter.org
7194 W:      http://www.netfilter.org/
7195 W:      http://www.iptables.org/
7196 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
7197 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
7198 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
7199 S:      Supported
7200 F:      include/linux/netfilter*
7201 F:      include/linux/netfilter/
7202 F:      include/net/netfilter/
7203 F:      include/uapi/linux/netfilter*
7204 F:      include/uapi/linux/netfilter/
7205 F:      net/*/netfilter.c
7206 F:      net/*/netfilter/
7207 F:      net/netfilter/
7208 F:      net/bridge/br_netfilter*.c
7209
7210 NETLABEL
7211 M:      Paul Moore <paul@paul-moore.com>
7212 W:      http://netlabel.sf.net
7213 L:      netdev@vger.kernel.org
7214 S:      Maintained
7215 F:      Documentation/netlabel/
7216 F:      include/net/netlabel.h
7217 F:      net/netlabel/
7218
7219 NETROM NETWORK LAYER
7220 M:      Ralf Baechle <ralf@linux-mips.org>
7221 L:      linux-hams@vger.kernel.org
7222 W:      http://www.linux-ax25.org/
7223 S:      Maintained
7224 F:      include/net/netrom.h
7225 F:      include/uapi/linux/netrom.h
7226 F:      net/netrom/
7227
7228 NETWORK BLOCK DEVICE (NBD)
7229 M:      Markus Pargmann <mpa@pengutronix.de>
7230 S:      Maintained
7231 L:      nbd-general@lists.sourceforge.net
7232 T:      git git://git.pengutronix.de/git/mpa/linux-nbd.git
7233 F:      Documentation/blockdev/nbd.txt
7234 F:      drivers/block/nbd.c
7235 F:      include/uapi/linux/nbd.h
7236
7237 NETWORK DROP MONITOR
7238 M:      Neil Horman <nhorman@tuxdriver.com>
7239 L:      netdev@vger.kernel.org
7240 S:      Maintained
7241 W:      https://fedorahosted.org/dropwatch/
7242 F:      net/core/drop_monitor.c
7243
7244 NETWORKING [GENERAL]
7245 M:      "David S. Miller" <davem@davemloft.net>
7246 L:      netdev@vger.kernel.org
7247 W:      http://www.linuxfoundation.org/en/Net
7248 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7249 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7250 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7251 S:      Maintained
7252 F:      net/
7253 F:      include/net/
7254 F:      include/linux/in.h
7255 F:      include/linux/net.h
7256 F:      include/linux/netdevice.h
7257 F:      include/uapi/linux/in.h
7258 F:      include/uapi/linux/net.h
7259 F:      include/uapi/linux/netdevice.h
7260 F:      include/uapi/linux/net_namespace.h
7261 F:      tools/net/
7262 F:      tools/testing/selftests/net/
7263 F:      lib/random32.c
7264 F:      lib/test_bpf.c
7265
7266 NETWORKING [IPv4/IPv6]
7267 M:      "David S. Miller" <davem@davemloft.net>
7268 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
7269 M:      James Morris <jmorris@namei.org>
7270 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
7271 M:      Patrick McHardy <kaber@trash.net>
7272 L:      netdev@vger.kernel.org
7273 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7274 S:      Maintained
7275 F:      net/ipv4/
7276 F:      net/ipv6/
7277 F:      include/net/ip*
7278 F:      arch/x86/net/*
7279
7280 NETWORKING [IPSEC]
7281 M:      Steffen Klassert <steffen.klassert@secunet.com>
7282 M:      Herbert Xu <herbert@gondor.apana.org.au>
7283 M:      "David S. Miller" <davem@davemloft.net>
7284 L:      netdev@vger.kernel.org
7285 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
7286 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
7287 S:      Maintained
7288 F:      net/core/flow.c
7289 F:      net/xfrm/
7290 F:      net/key/
7291 F:      net/ipv4/xfrm*
7292 F:      net/ipv4/esp4.c
7293 F:      net/ipv4/ah4.c
7294 F:      net/ipv4/ipcomp.c
7295 F:      net/ipv4/ip_vti.c
7296 F:      net/ipv6/xfrm*
7297 F:      net/ipv6/esp6.c
7298 F:      net/ipv6/ah6.c
7299 F:      net/ipv6/ipcomp6.c
7300 F:      net/ipv6/ip6_vti.c
7301 F:      include/uapi/linux/xfrm.h
7302 F:      include/net/xfrm.h
7303
7304 NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
7305 M:      Paul Moore <paul@paul-moore.com>
7306 L:      netdev@vger.kernel.org
7307 S:      Maintained
7308
7309 NETWORKING [WIRELESS]
7310 L:      linux-wireless@vger.kernel.org
7311 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7312
7313 NETWORKING DRIVERS
7314 L:      netdev@vger.kernel.org
7315 W:      http://www.linuxfoundation.org/en/Net
7316 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7317 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7318 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7319 S:      Odd Fixes
7320 F:      drivers/net/
7321 F:      include/linux/if_*
7322 F:      include/linux/netdevice.h
7323 F:      include/linux/arcdevice.h
7324 F:      include/linux/etherdevice.h
7325 F:      include/linux/fcdevice.h
7326 F:      include/linux/fddidevice.h
7327 F:      include/linux/hippidevice.h
7328 F:      include/linux/inetdevice.h
7329 F:      include/uapi/linux/if_*
7330 F:      include/uapi/linux/netdevice.h
7331
7332 NETWORKING DRIVERS (WIRELESS)
7333 M:      Kalle Valo <kvalo@codeaurora.org>
7334 L:      linux-wireless@vger.kernel.org
7335 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7336 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git/
7337 S:      Maintained
7338 F:      drivers/net/wireless/
7339
7340 NETXEN (1/10) GbE SUPPORT
7341 M:      Manish Chopra <manish.chopra@qlogic.com>
7342 M:      Sony Chacko <sony.chacko@qlogic.com>
7343 M:      Rajesh Borundia <rajesh.borundia@qlogic.com>
7344 L:      netdev@vger.kernel.org
7345 W:      http://www.qlogic.com
7346 S:      Supported
7347 F:      drivers/net/ethernet/qlogic/netxen/
7348
7349 NFC SUBSYSTEM
7350 M:      Lauro Ramos Venancio <lauro.venancio@openbossa.org>
7351 M:      Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
7352 M:      Samuel Ortiz <sameo@linux.intel.com>
7353 L:      linux-wireless@vger.kernel.org
7354 L:      linux-nfc@lists.01.org (subscribers-only)
7355 S:      Supported
7356 F:      net/nfc/
7357 F:      include/net/nfc/
7358 F:      include/uapi/linux/nfc.h
7359 F:      drivers/nfc/
7360 F:      include/linux/platform_data/pn544.h
7361 F:      Documentation/devicetree/bindings/net/nfc/
7362
7363 NFS, SUNRPC, AND LOCKD CLIENTS
7364 M:      Trond Myklebust <trond.myklebust@primarydata.com>
7365 M:      Anna Schumaker <anna.schumaker@netapp.com>
7366 L:      linux-nfs@vger.kernel.org
7367 W:      http://client.linux-nfs.org
7368 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
7369 S:      Maintained
7370 F:      fs/lockd/
7371 F:      fs/nfs/
7372 F:      fs/nfs_common/
7373 F:      net/sunrpc/
7374 F:      include/linux/lockd/
7375 F:      include/linux/nfs*
7376 F:      include/linux/sunrpc/
7377 F:      include/uapi/linux/nfs*
7378 F:      include/uapi/linux/sunrpc/
7379
7380 NILFS2 FILESYSTEM
7381 M:      Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
7382 L:      linux-nilfs@vger.kernel.org
7383 W:      http://nilfs.sourceforge.net/
7384 T:      git git://github.com/konis/nilfs2.git
7385 S:      Supported
7386 F:      Documentation/filesystems/nilfs2.txt
7387 F:      fs/nilfs2/
7388 F:      include/linux/nilfs2_fs.h
7389
7390 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
7391 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7392 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7393 S:      Maintained
7394 F:      Documentation/scsi/NinjaSCSI.txt
7395 F:      drivers/scsi/pcmcia/nsp_*
7396
7397 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
7398 M:      GOTO Masanori <gotom@debian.or.jp>
7399 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7400 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7401 S:      Maintained
7402 F:      Documentation/scsi/NinjaSCSI.txt
7403 F:      drivers/scsi/nsp32*
7404
7405 NIOS2 ARCHITECTURE
7406 M:      Ley Foon Tan <lftan@altera.com>
7407 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
7408 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
7409 S:      Maintained
7410 F:      arch/nios2/
7411
7412 NOKIA N900 POWER SUPPLY DRIVERS
7413 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
7414 S:      Maintained
7415 F:      include/linux/power/bq2415x_charger.h
7416 F:      include/linux/power/bq27x00_battery.h
7417 F:      include/linux/power/isp1704_charger.h
7418 F:      drivers/power/bq2415x_charger.c
7419 F:      drivers/power/bq27x00_battery.c
7420 F:      drivers/power/isp1704_charger.c
7421 F:      drivers/power/rx51_battery.c
7422
7423 NTB DRIVER CORE
7424 M:      Jon Mason <jdmason@kudzu.us>
7425 M:      Dave Jiang <dave.jiang@intel.com>
7426 M:      Allen Hubbe <Allen.Hubbe@emc.com>
7427 L:      linux-ntb@googlegroups.com
7428 S:      Supported
7429 W:      https://github.com/jonmason/ntb/wiki
7430 T:      git git://github.com/jonmason/ntb.git
7431 F:      drivers/ntb/
7432 F:      drivers/net/ntb_netdev.c
7433 F:      include/linux/ntb.h
7434 F:      include/linux/ntb_transport.h
7435
7436 NTB INTEL DRIVER
7437 M:      Jon Mason <jdmason@kudzu.us>
7438 M:      Dave Jiang <dave.jiang@intel.com>
7439 L:      linux-ntb@googlegroups.com
7440 S:      Supported
7441 W:      https://github.com/jonmason/ntb/wiki
7442 T:      git git://github.com/jonmason/ntb.git
7443 F:      drivers/ntb/hw/intel/
7444
7445 NTFS FILESYSTEM
7446 M:      Anton Altaparmakov <anton@tuxera.com>
7447 L:      linux-ntfs-dev@lists.sourceforge.net
7448 W:      http://www.tuxera.com/
7449 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
7450 S:      Supported
7451 F:      Documentation/filesystems/ntfs.txt
7452 F:      fs/ntfs/
7453
7454 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
7455 M:      Antonino Daplas <adaplas@gmail.com>
7456 L:      linux-fbdev@vger.kernel.org
7457 S:      Maintained
7458 F:      drivers/video/fbdev/riva/
7459 F:      drivers/video/fbdev/nvidia/
7460
7461 NVM EXPRESS DRIVER
7462 M:      Matthew Wilcox <willy@linux.intel.com>
7463 L:      linux-nvme@lists.infradead.org
7464 T:      git git://git.infradead.org/users/willy/linux-nvme.git
7465 S:      Supported
7466 F:      drivers/block/nvme*
7467 F:      include/linux/nvme.h
7468
7469 NVMEM FRAMEWORK
7470 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
7471 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
7472 S:      Maintained
7473 F:      drivers/nvmem/
7474 F:      Documentation/devicetree/bindings/nvmem/
7475 F:      include/linux/nvmem-consumer.h
7476 F:      include/linux/nvmem-provider.h
7477
7478 NXP-NCI NFC DRIVER
7479 M:      ClĂ©ment Perrochaud <clement.perrochaud@effinnov.com>
7480 R:      Charles Gorand <charles.gorand@effinnov.com>
7481 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
7482 S:      Supported
7483 F:      drivers/nfc/nxp-nci
7484
7485 NXP TDA998X DRM DRIVER
7486 M:      Russell King <rmk+kernel@arm.linux.org.uk>
7487 S:      Supported
7488 F:      drivers/gpu/drm/i2c/tda998x_drv.c
7489 F:      include/drm/i2c/tda998x.h
7490
7491 NXP TFA9879 DRIVER
7492 M:      Peter Rosin <peda@axentia.se>
7493 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7494 S:      Maintained
7495 F:      sound/soc/codecs/tfa9879*
7496
7497 OMAP SUPPORT
7498 M:      Tony Lindgren <tony@atomide.com>
7499 L:      linux-omap@vger.kernel.org
7500 W:      http://www.muru.com/linux/omap/
7501 W:      http://linux.omap.com/
7502 Q:      http://patchwork.kernel.org/project/linux-omap/list/
7503 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
7504 S:      Maintained
7505 F:      arch/arm/*omap*/
7506 F:      arch/arm/configs/omap1_defconfig
7507 F:      arch/arm/configs/omap2plus_defconfig
7508 F:      drivers/i2c/busses/i2c-omap.c
7509 F:      drivers/irqchip/irq-omap-intc.c
7510 F:      drivers/mfd/*omap*.c
7511 F:      drivers/mfd/menelaus.c
7512 F:      drivers/mfd/palmas.c
7513 F:      drivers/mfd/tps65217.c
7514 F:      drivers/mfd/tps65218.c
7515 F:      drivers/mfd/tps65910.c
7516 F:      drivers/mfd/twl-core.[ch]
7517 F:      drivers/mfd/twl4030*.c
7518 F:      drivers/mfd/twl6030*.c
7519 F:      drivers/mfd/twl6040*.c
7520 F:      drivers/regulator/palmas-regulator*.c
7521 F:      drivers/regulator/pbias-regulator.c
7522 F:      drivers/regulator/tps65217-regulator.c
7523 F:      drivers/regulator/tps65218-regulator.c
7524 F:      drivers/regulator/tps65910-regulator.c
7525 F:      drivers/regulator/twl-regulator.c
7526 F:      include/linux/i2c-omap.h
7527
7528 OMAP DEVICE TREE SUPPORT
7529 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7530 M:      Tony Lindgren <tony@atomide.com>
7531 L:      linux-omap@vger.kernel.org
7532 L:      devicetree@vger.kernel.org
7533 S:      Maintained
7534 F:      arch/arm/boot/dts/*omap*
7535 F:      arch/arm/boot/dts/*am3*
7536 F:      arch/arm/boot/dts/*am4*
7537 F:      arch/arm/boot/dts/*am5*
7538 F:      arch/arm/boot/dts/*dra7*
7539
7540 OMAP CLOCK FRAMEWORK SUPPORT
7541 M:      Paul Walmsley <paul@pwsan.com>
7542 L:      linux-omap@vger.kernel.org
7543 S:      Maintained
7544 F:      arch/arm/*omap*/*clock*
7545
7546 OMAP POWER MANAGEMENT SUPPORT
7547 M:      Kevin Hilman <khilman@deeprootsystems.com>
7548 L:      linux-omap@vger.kernel.org
7549 S:      Maintained
7550 F:      arch/arm/*omap*/*pm*
7551 F:      drivers/cpufreq/omap-cpufreq.c
7552
7553 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
7554 M:      Rajendra Nayak <rnayak@ti.com>
7555 M:      Paul Walmsley <paul@pwsan.com>
7556 L:      linux-omap@vger.kernel.org
7557 S:      Maintained
7558 F:      arch/arm/mach-omap2/prm*
7559
7560 OMAP AUDIO SUPPORT
7561 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
7562 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
7563 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7564 L:      linux-omap@vger.kernel.org
7565 S:      Maintained
7566 F:      sound/soc/omap/
7567
7568 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
7569 M:      Roger Quadros <rogerq@ti.com>
7570 M:      Tony Lindgren <tony@atomide.com>
7571 L:      linux-omap@vger.kernel.org
7572 S:      Maintained
7573 F:      drivers/memory/omap-gpmc.c
7574 F:      arch/arm/mach-omap2/*gpmc*
7575
7576 OMAP FRAMEBUFFER SUPPORT
7577 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
7578 L:      linux-fbdev@vger.kernel.org
7579 L:      linux-omap@vger.kernel.org
7580 S:      Maintained
7581 F:      drivers/video/fbdev/omap/
7582
7583 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
7584 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
7585 L:      linux-omap@vger.kernel.org
7586 L:      linux-fbdev@vger.kernel.org
7587 S:      Maintained
7588 F:      drivers/video/fbdev/omap2/
7589 F:      Documentation/arm/OMAP/DSS
7590
7591 OMAP HARDWARE SPINLOCK SUPPORT
7592 M:      Ohad Ben-Cohen <ohad@wizery.com>
7593 L:      linux-omap@vger.kernel.org
7594 S:      Maintained
7595 F:      drivers/hwspinlock/omap_hwspinlock.c
7596
7597 OMAP MMC SUPPORT
7598 M:      Jarkko Lavinen <jarkko.lavinen@nokia.com>
7599 L:      linux-omap@vger.kernel.org
7600 S:      Maintained
7601 F:      drivers/mmc/host/omap.c
7602
7603 OMAP HS MMC SUPPORT
7604 L:      linux-mmc@vger.kernel.org
7605 L:      linux-omap@vger.kernel.org
7606 S:      Orphan
7607 F:      drivers/mmc/host/omap_hsmmc.c
7608
7609 OMAP RANDOM NUMBER GENERATOR SUPPORT
7610 M:      Deepak Saxena <dsaxena@plexity.net>
7611 S:      Maintained
7612 F:      drivers/char/hw_random/omap-rng.c
7613
7614 OMAP HWMOD SUPPORT
7615 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7616 M:      Paul Walmsley <paul@pwsan.com>
7617 L:      linux-omap@vger.kernel.org
7618 S:      Maintained
7619 F:      arch/arm/mach-omap2/omap_hwmod.*
7620
7621 OMAP HWMOD DATA
7622 M:      Paul Walmsley <paul@pwsan.com>
7623 L:      linux-omap@vger.kernel.org
7624 S:      Maintained
7625 F:      arch/arm/mach-omap2/omap_hwmod*data*
7626
7627 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
7628 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7629 L:      linux-omap@vger.kernel.org
7630 S:      Maintained
7631 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
7632
7633 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
7634 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7635 L:      linux-media@vger.kernel.org
7636 S:      Maintained
7637 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
7638 F:      drivers/media/platform/omap3isp/
7639 F:      drivers/staging/media/omap4iss/
7640
7641 OMAP USB SUPPORT
7642 M:      Felipe Balbi <balbi@ti.com>
7643 L:      linux-usb@vger.kernel.org
7644 L:      linux-omap@vger.kernel.org
7645 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7646 S:      Maintained
7647 F:      drivers/usb/*/*omap*
7648 F:      arch/arm/*omap*/usb*
7649
7650 OMAP GPIO DRIVER
7651 M:      Javier Martinez Canillas <javier@dowhile0.org>
7652 M:      Santosh Shilimkar <ssantosh@kernel.org>
7653 M:      Kevin Hilman <khilman@deeprootsystems.com>
7654 L:      linux-omap@vger.kernel.org
7655 S:      Maintained
7656 F:      drivers/gpio/gpio-omap.c
7657
7658 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
7659 M:      Mark Jackson <mpfj@newflow.co.uk>
7660 L:      linux-omap@vger.kernel.org
7661 S:      Maintained
7662 F:      arch/arm/boot/dts/am335x-nano.dts
7663
7664 OMFS FILESYSTEM
7665 M:      Bob Copeland <me@bobcopeland.com>
7666 L:      linux-karma-devel@lists.sourceforge.net
7667 S:      Maintained
7668 F:      Documentation/filesystems/omfs.txt
7669 F:      fs/omfs/
7670
7671 OMNIKEY CARDMAN 4000 DRIVER
7672 M:      Harald Welte <laforge@gnumonks.org>
7673 S:      Maintained
7674 F:      drivers/char/pcmcia/cm4000_cs.c
7675 F:      include/linux/cm4000_cs.h
7676 F:      include/uapi/linux/cm4000_cs.h
7677
7678 OMNIKEY CARDMAN 4040 DRIVER
7679 M:      Harald Welte <laforge@gnumonks.org>
7680 S:      Maintained
7681 F:      drivers/char/pcmcia/cm4040_cs.*
7682
7683 OMNIVISION OV7670 SENSOR DRIVER
7684 M:      Jonathan Corbet <corbet@lwn.net>
7685 L:      linux-media@vger.kernel.org
7686 T:      git git://linuxtv.org/media_tree.git
7687 S:      Maintained
7688 F:      drivers/media/i2c/ov7670.c
7689
7690 ONENAND FLASH DRIVER
7691 M:      Kyungmin Park <kyungmin.park@samsung.com>
7692 L:      linux-mtd@lists.infradead.org
7693 S:      Maintained
7694 F:      drivers/mtd/onenand/
7695 F:      include/linux/mtd/onenand*.h
7696
7697 ONSTREAM SCSI TAPE DRIVER
7698 M:      Willem Riede <osst@riede.org>
7699 L:      osst-users@lists.sourceforge.net
7700 L:      linux-scsi@vger.kernel.org
7701 S:      Maintained
7702 F:      Documentation/scsi/osst.txt
7703 F:      drivers/scsi/osst.*
7704 F:      drivers/scsi/osst_*.h
7705 F:      drivers/scsi/st.h
7706
7707 OPENCORES I2C BUS DRIVER
7708 M:      Peter Korsgaard <jacmet@sunsite.dk>
7709 L:      linux-i2c@vger.kernel.org
7710 S:      Maintained
7711 F:      Documentation/i2c/busses/i2c-ocores
7712 F:      drivers/i2c/busses/i2c-ocores.c
7713
7714 OPEN FIRMWARE AND FLATTENED DEVICE TREE
7715 M:      Rob Herring <robh+dt@kernel.org>
7716 M:      Frank Rowand <frowand.list@gmail.com>
7717 M:      Grant Likely <grant.likely@linaro.org>
7718 L:      devicetree@vger.kernel.org
7719 W:      http://www.devicetree.org/
7720 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/glikely/linux.git
7721 S:      Maintained
7722 F:      drivers/of/
7723 F:      include/linux/of*.h
7724 F:      scripts/dtc/
7725
7726 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
7727 M:      Rob Herring <robh+dt@kernel.org>
7728 M:      Pawel Moll <pawel.moll@arm.com>
7729 M:      Mark Rutland <mark.rutland@arm.com>
7730 M:      Ian Campbell <ijc+devicetree@hellion.org.uk>
7731 M:      Kumar Gala <galak@codeaurora.org>
7732 L:      devicetree@vger.kernel.org
7733 S:      Maintained
7734 F:      Documentation/devicetree/
7735 F:      arch/*/boot/dts/
7736 F:      include/dt-bindings/
7737
7738 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
7739 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
7740 L:      devicetree@vger.kernel.org
7741 S:      Maintained
7742 F:      Documentation/devicetree/dynamic-resolution-notes.txt
7743 F:      Documentation/devicetree/overlay-notes.txt
7744 F:      drivers/of/overlay.c
7745 F:      drivers/of/resolver.c
7746
7747 OPENRISC ARCHITECTURE
7748 M:      Jonas Bonn <jonas@southpole.se>
7749 W:      http://openrisc.net
7750 L:      linux@lists.openrisc.net (moderated for non-subscribers)
7751 S:      Maintained
7752 T:      git git://openrisc.net/~jonas/linux
7753 F:      arch/openrisc/
7754
7755 OPENVSWITCH
7756 M:      Pravin Shelar <pshelar@nicira.com>
7757 L:      netdev@vger.kernel.org
7758 L:      dev@openvswitch.org
7759 W:      http://openvswitch.org
7760 S:      Maintained
7761 F:      net/openvswitch/
7762 F:      include/uapi/linux/openvswitch.h
7763
7764 OPL4 DRIVER
7765 M:      Clemens Ladisch <clemens@ladisch.de>
7766 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7767 T:      git git://git.alsa-project.org/alsa-kernel.git
7768 S:      Maintained
7769 F:      sound/drivers/opl4/
7770
7771 OPROFILE
7772 M:      Robert Richter <rric@kernel.org>
7773 L:      oprofile-list@lists.sf.net
7774 S:      Maintained
7775 F:      arch/*/include/asm/oprofile*.h
7776 F:      arch/*/oprofile/
7777 F:      drivers/oprofile/
7778 F:      include/linux/oprofile.h
7779
7780 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
7781 M:      Mark Fasheh <mfasheh@suse.com>
7782 M:      Joel Becker <jlbec@evilplan.org>
7783 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
7784 W:      http://ocfs2.wiki.kernel.org
7785 S:      Supported
7786 F:      Documentation/filesystems/ocfs2.txt
7787 F:      Documentation/filesystems/dlmfs.txt
7788 F:      fs/ocfs2/
7789
7790 ORINOCO DRIVER
7791 L:      linux-wireless@vger.kernel.org
7792 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
7793 W:      http://www.nongnu.org/orinoco/
7794 S:      Orphan
7795 F:      drivers/net/wireless/orinoco/
7796
7797 OSD LIBRARY and FILESYSTEM
7798 M:      Boaz Harrosh <ooo@electrozaur.com>
7799 M:      Benny Halevy <bhalevy@primarydata.com>
7800 L:      osd-dev@open-osd.org
7801 W:      http://open-osd.org
7802 T:      git git://git.open-osd.org/open-osd.git
7803 S:      Maintained
7804 F:      drivers/scsi/osd/
7805 F:      include/scsi/osd_*
7806 F:      fs/exofs/
7807
7808 OVERLAY FILESYSTEM
7809 M:      Miklos Szeredi <miklos@szeredi.hu>
7810 L:      linux-unionfs@vger.kernel.org
7811 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
7812 S:      Supported
7813 F:      fs/overlayfs/
7814 F:      Documentation/filesystems/overlayfs.txt
7815
7816 P54 WIRELESS DRIVER
7817 M:      Christian Lamparter <chunkeey@googlemail.com>
7818 L:      linux-wireless@vger.kernel.org
7819 W:      http://wireless.kernel.org/en/users/Drivers/p54
7820 S:      Maintained
7821 F:      drivers/net/wireless/p54/
7822
7823 PA SEMI ETHERNET DRIVER
7824 M:      Olof Johansson <olof@lixom.net>
7825 L:      netdev@vger.kernel.org
7826 S:      Maintained
7827 F:      drivers/net/ethernet/pasemi/*
7828
7829 PA SEMI SMBUS DRIVER
7830 M:      Olof Johansson <olof@lixom.net>
7831 L:      linux-i2c@vger.kernel.org
7832 S:      Maintained
7833 F:      drivers/i2c/busses/i2c-pasemi.c
7834
7835 PADATA PARALLEL EXECUTION MECHANISM
7836 M:      Steffen Klassert <steffen.klassert@secunet.com>
7837 L:      linux-crypto@vger.kernel.org
7838 S:      Maintained
7839 F:      kernel/padata.c
7840 F:      include/linux/padata.h
7841 F:      Documentation/padata.txt
7842
7843 PANASONIC LAPTOP ACPI EXTRAS DRIVER
7844 M:      Harald Welte <laforge@gnumonks.org>
7845 L:      platform-driver-x86@vger.kernel.org
7846 S:      Maintained
7847 F:      drivers/platform/x86/panasonic-laptop.c
7848
7849 PANASONIC MN10300/AM33/AM34 PORT
7850 M:      David Howells <dhowells@redhat.com>
7851 M:      Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
7852 L:      linux-am33-list@redhat.com (moderated for non-subscribers)
7853 W:      ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
7854 S:      Maintained
7855 F:      Documentation/mn10300/
7856 F:      arch/mn10300/
7857
7858 PARALLEL PORT SUBSYSTEM
7859 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
7860 M:      Sudip Mukherjee <sudip@vectorindia.org>
7861 L:      linux-parport@lists.infradead.org (subscribers-only)
7862 S:      Maintained
7863 F:      drivers/parport/
7864 F:      include/linux/parport*.h
7865 F:      drivers/char/ppdev.c
7866 F:      include/uapi/linux/ppdev.h
7867 F:      Documentation/parport*.txt
7868
7869 PARAVIRT_OPS INTERFACE
7870 M:      Jeremy Fitzhardinge <jeremy@goop.org>
7871 M:      Chris Wright <chrisw@sous-sol.org>
7872 M:      Alok Kataria <akataria@vmware.com>
7873 M:      Rusty Russell <rusty@rustcorp.com.au>
7874 L:      virtualization@lists.linux-foundation.org
7875 S:      Supported
7876 F:      Documentation/virtual/paravirt_ops.txt
7877 F:      arch/*/kernel/paravirt*
7878 F:      arch/*/include/asm/paravirt.h
7879
7880 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
7881 M:      Tim Waugh <tim@cyberelk.net>
7882 L:      linux-parport@lists.infradead.org (subscribers-only)
7883 S:      Maintained
7884 F:      Documentation/blockdev/paride.txt
7885 F:      drivers/block/paride/
7886
7887 PARISC ARCHITECTURE
7888 M:      "James E.J. Bottomley" <jejb@parisc-linux.org>
7889 M:      Helge Deller <deller@gmx.de>
7890 L:      linux-parisc@vger.kernel.org
7891 W:      http://www.parisc-linux.org/
7892 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
7893 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
7894 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
7895 S:      Maintained
7896 F:      arch/parisc/
7897 F:      Documentation/parisc/
7898 F:      drivers/parisc/
7899 F:      drivers/char/agp/parisc-agp.c
7900 F:      drivers/input/serio/gscps2.c
7901 F:      drivers/parport/parport_gsc.*
7902 F:      drivers/tty/serial/8250/8250_gsc.c
7903 F:      drivers/video/fbdev/sti*
7904 F:      drivers/video/console/sti*
7905 F:      drivers/video/logo/logo_parisc*
7906
7907 PC87360 HARDWARE MONITORING DRIVER
7908 M:      Jim Cromie <jim.cromie@gmail.com>
7909 L:      lm-sensors@lm-sensors.org
7910 S:      Maintained
7911 F:      Documentation/hwmon/pc87360
7912 F:      drivers/hwmon/pc87360.c
7913
7914 PC8736x GPIO DRIVER
7915 M:      Jim Cromie <jim.cromie@gmail.com>
7916 S:      Maintained
7917 F:      drivers/char/pc8736x_gpio.c
7918
7919 PC87427 HARDWARE MONITORING DRIVER
7920 M:      Jean Delvare <jdelvare@suse.com>
7921 L:      lm-sensors@lm-sensors.org
7922 S:      Maintained
7923 F:      Documentation/hwmon/pc87427
7924 F:      drivers/hwmon/pc87427.c
7925
7926 PCA9532 LED DRIVER
7927 M:      Riku Voipio <riku.voipio@iki.fi>
7928 S:      Maintained
7929 F:      drivers/leds/leds-pca9532.c
7930 F:      include/linux/leds-pca9532.h
7931
7932 PCA9541 I2C BUS MASTER SELECTOR DRIVER
7933 M:      Guenter Roeck <linux@roeck-us.net>
7934 L:      linux-i2c@vger.kernel.org
7935 S:      Maintained
7936 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
7937
7938 PCDP - PRIMARY CONSOLE AND DEBUG PORT
7939 M:      Khalid Aziz <khalid@gonehiking.org>
7940 S:      Maintained
7941 F:      drivers/firmware/pcdp.*
7942
7943 PCI ERROR RECOVERY
7944 M:      Linas Vepstas <linasvepstas@gmail.com>
7945 L:      linux-pci@vger.kernel.org
7946 S:      Supported
7947 F:      Documentation/PCI/pci-error-recovery.txt
7948
7949 PCI SUBSYSTEM
7950 M:      Bjorn Helgaas <bhelgaas@google.com>
7951 L:      linux-pci@vger.kernel.org
7952 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
7953 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
7954 S:      Supported
7955 F:      Documentation/PCI/
7956 F:      drivers/pci/
7957 F:      include/linux/pci*
7958 F:      arch/x86/pci/
7959 F:      arch/x86/kernel/quirks.c
7960
7961 PCI DRIVER FOR ARM VERSATILE PLATFORM
7962 M:      Rob Herring <robh@kernel.org>
7963 L:      linux-pci@vger.kernel.org
7964 L:      linux-arm-kernel@lists.infradead.org
7965 S:      Maintained
7966 F:      Documentation/devicetree/bindings/pci/versatile.txt
7967 F:      drivers/pci/host/pci-versatile.c
7968
7969 PCI DRIVER FOR APPLIEDMICRO XGENE
7970 M:      Tanmay Inamdar <tinamdar@apm.com>
7971 L:      linux-pci@vger.kernel.org
7972 L:      linux-arm-kernel@lists.infradead.org
7973 S:      Maintained
7974 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
7975 F:      drivers/pci/host/pci-xgene.c
7976
7977 PCI DRIVER FOR FREESCALE LAYERSCAPE
7978 M:      Minghuan Lian <minghuan.Lian@freescale.com>
7979 M:      Mingkai Hu <mingkai.hu@freescale.com>
7980 M:      Roy Zang <tie-fei.zang@freescale.com>
7981 L:      linuxppc-dev@lists.ozlabs.org
7982 L:      linux-pci@vger.kernel.org
7983 L:      linux-arm-kernel@lists.infradead.org
7984 S:      Maintained
7985 F:      drivers/pci/host/*layerscape*
7986
7987 PCI DRIVER FOR IMX6
7988 M:      Richard Zhu <Richard.Zhu@freescale.com>
7989 M:      Lucas Stach <l.stach@pengutronix.de>
7990 L:      linux-pci@vger.kernel.org
7991 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7992 S:      Maintained
7993 F:      drivers/pci/host/*imx6*
7994
7995 PCI DRIVER FOR TI KEYSTONE
7996 M:      Murali Karicheri <m-karicheri2@ti.com>
7997 L:      linux-pci@vger.kernel.org
7998 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7999 S:      Maintained
8000 F:      drivers/pci/host/*keystone*
8001
8002 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
8003 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8004 M:      Jason Cooper <jason@lakedaemon.net>
8005 L:      linux-pci@vger.kernel.org
8006 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8007 S:      Maintained
8008 F:      drivers/pci/host/*mvebu*
8009
8010 PCI DRIVER FOR NVIDIA TEGRA
8011 M:      Thierry Reding <thierry.reding@gmail.com>
8012 L:      linux-tegra@vger.kernel.org
8013 L:      linux-pci@vger.kernel.org
8014 S:      Supported
8015 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
8016 F:      drivers/pci/host/pci-tegra.c
8017
8018 PCI DRIVER FOR TI DRA7XX
8019 M:      Kishon Vijay Abraham I <kishon@ti.com>
8020 L:      linux-omap@vger.kernel.org
8021 L:      linux-pci@vger.kernel.org
8022 S:      Supported
8023 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
8024 F:      drivers/pci/host/pci-dra7xx.c
8025
8026 PCI DRIVER FOR RENESAS R-CAR
8027 M:      Simon Horman <horms@verge.net.au>
8028 L:      linux-pci@vger.kernel.org
8029 L:      linux-sh@vger.kernel.org
8030 S:      Maintained
8031 F:      drivers/pci/host/*rcar*
8032
8033 PCI DRIVER FOR SAMSUNG EXYNOS
8034 M:      Jingoo Han <jingoohan1@gmail.com>
8035 L:      linux-pci@vger.kernel.org
8036 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8037 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8038 S:      Maintained
8039 F:      drivers/pci/host/pci-exynos.c
8040
8041 PCI DRIVER FOR SYNOPSIS DESIGNWARE
8042 M:      Jingoo Han <jingoohan1@gmail.com>
8043 M:      Pratyush Anand <pratyush.anand@gmail.com>
8044 L:      linux-pci@vger.kernel.org
8045 S:      Maintained
8046 F:      drivers/pci/host/*designware*
8047
8048 PCI DRIVER FOR GENERIC OF HOSTS
8049 M:      Will Deacon <will.deacon@arm.com>
8050 L:      linux-pci@vger.kernel.org
8051 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8052 S:      Maintained
8053 F:      Documentation/devicetree/bindings/pci/host-generic-pci.txt
8054 F:      drivers/pci/host/pci-host-generic.c
8055
8056 PCIE DRIVER FOR ST SPEAR13XX
8057 M:      Pratyush Anand <pratyush.anand@gmail.com>
8058 L:      linux-pci@vger.kernel.org
8059 S:      Maintained
8060 F:      drivers/pci/host/*spear*
8061
8062 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
8063 M:      Duc Dang <dhdang@apm.com>
8064 L:      linux-pci@vger.kernel.org
8065 L:      linux-arm-kernel@lists.infradead.org
8066 S:      Maintained
8067 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
8068 F:      drivers/pci/host/pci-xgene-msi.c
8069
8070 PCMCIA SUBSYSTEM
8071 P:      Linux PCMCIA Team
8072 L:      linux-pcmcia@lists.infradead.org
8073 W:      http://lists.infradead.org/mailman/listinfo/linux-pcmcia
8074 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
8075 S:      Maintained
8076 F:      Documentation/pcmcia/
8077 F:      drivers/pcmcia/
8078 F:      include/pcmcia/
8079
8080 PCNET32 NETWORK DRIVER
8081 M:      Don Fry <pcnet32@frontier.com>
8082 L:      netdev@vger.kernel.org
8083 S:      Maintained
8084 F:      drivers/net/ethernet/amd/pcnet32.c
8085
8086 PCRYPT PARALLEL CRYPTO ENGINE
8087 M:      Steffen Klassert <steffen.klassert@secunet.com>
8088 L:      linux-crypto@vger.kernel.org
8089 S:      Maintained
8090 F:      crypto/pcrypt.c
8091 F:      include/crypto/pcrypt.h
8092
8093 PER-CPU MEMORY ALLOCATOR
8094 M:      Tejun Heo <tj@kernel.org>
8095 M:      Christoph Lameter <cl@linux-foundation.org>
8096 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
8097 S:      Maintained
8098 F:      include/linux/percpu*.h
8099 F:      mm/percpu*.c
8100 F:      arch/*/include/asm/percpu.h
8101
8102 PER-TASK DELAY ACCOUNTING
8103 M:      Balbir Singh <bsingharora@gmail.com>
8104 S:      Maintained
8105 F:      include/linux/delayacct.h
8106 F:      kernel/delayacct.c
8107
8108 PERFORMANCE EVENTS SUBSYSTEM
8109 M:      Peter Zijlstra <a.p.zijlstra@chello.nl>
8110 M:      Ingo Molnar <mingo@redhat.com>
8111 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
8112 L:      linux-kernel@vger.kernel.org
8113 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
8114 S:      Supported
8115 F:      kernel/events/*
8116 F:      include/linux/perf_event.h
8117 F:      include/uapi/linux/perf_event.h
8118 F:      arch/*/kernel/perf_event*.c
8119 F:      arch/*/kernel/*/perf_event*.c
8120 F:      arch/*/kernel/*/*/perf_event*.c
8121 F:      arch/*/include/asm/perf_event.h
8122 F:      arch/*/kernel/perf_callchain.c
8123 F:      tools/perf/
8124
8125 PERSONALITY HANDLING
8126 M:      Christoph Hellwig <hch@infradead.org>
8127 L:      linux-abi-devel@lists.sourceforge.net
8128 S:      Maintained
8129 F:      include/linux/personality.h
8130 F:      include/uapi/linux/personality.h
8131
8132 PHONET PROTOCOL
8133 M:      Remi Denis-Courmont <courmisch@gmail.com>
8134 S:      Supported
8135 F:      Documentation/networking/phonet.txt
8136 F:      include/linux/phonet.h
8137 F:      include/net/phonet/
8138 F:      include/uapi/linux/phonet.h
8139 F:      net/phonet/
8140
8141 PHRAM MTD DRIVER
8142 M:      Joern Engel <joern@lazybastard.org>
8143 L:      linux-mtd@lists.infradead.org
8144 S:      Maintained
8145 F:      drivers/mtd/devices/phram.c
8146
8147 PICOLCD HID DRIVER
8148 M:      Bruno PrĂ©mont <bonbons@linux-vserver.org>
8149 L:      linux-input@vger.kernel.org
8150 S:      Maintained
8151 F:      drivers/hid/hid-picolcd*
8152
8153 PICOXCELL SUPPORT
8154 M:      Jamie Iles <jamie@jamieiles.com>
8155 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8156 T:      git git://github.com/jamieiles/linux-2.6-ji.git
8157 S:      Supported
8158 F:      arch/arm/boot/dts/picoxcell*
8159 F:      arch/arm/mach-picoxcell/
8160 F:      drivers/crypto/picoxcell*
8161
8162 PIN CONTROL SUBSYSTEM
8163 M:      Linus Walleij <linus.walleij@linaro.org>
8164 L:      linux-gpio@vger.kernel.org
8165 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
8166 S:      Maintained
8167 F:      drivers/pinctrl/
8168 F:      include/linux/pinctrl/
8169
8170 PIN CONTROLLER - ATMEL AT91
8171 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
8172 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8173 S:      Maintained
8174 F:      drivers/pinctrl/pinctrl-at91.*
8175
8176 PIN CONTROLLER - INTEL
8177 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8178 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
8179 S:      Maintained
8180 F:      drivers/pinctrl/intel/
8181
8182 PIN CONTROLLER - RENESAS
8183 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8184 L:      linux-sh@vger.kernel.org
8185 S:      Maintained
8186 F:      drivers/pinctrl/sh-pfc/
8187
8188 PIN CONTROLLER - SAMSUNG
8189 M:      Tomasz Figa <tomasz.figa@gmail.com>
8190 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8191 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8192 S:      Maintained
8193 F:      drivers/pinctrl/samsung/
8194
8195 PIN CONTROLLER - ST SPEAR
8196 M:      Viresh Kumar <vireshk@kernel.org>
8197 L:      spear-devel@list.st.com
8198 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8199 W:      http://www.st.com/spear
8200 S:      Maintained
8201 F:      drivers/pinctrl/spear/
8202
8203 PKTCDVD DRIVER
8204 M:      Jiri Kosina <jikos@kernel.org>
8205 S:      Maintained
8206 F:      drivers/block/pktcdvd.c
8207 F:      include/linux/pktcdvd.h
8208 F:      include/uapi/linux/pktcdvd.h
8209
8210 PKUNITY SOC DRIVERS
8211 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
8212 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
8213 S:      Maintained
8214 T:      git git://github.com/gxt/linux.git
8215 F:      drivers/input/serio/i8042-unicore32io.h
8216 F:      drivers/i2c/busses/i2c-puv3.c
8217 F:      drivers/video/fbdev/fb-puv3.c
8218 F:      drivers/rtc/rtc-puv3.c
8219
8220 PMBUS HARDWARE MONITORING DRIVERS
8221 M:      Guenter Roeck <linux@roeck-us.net>
8222 L:      lm-sensors@lm-sensors.org
8223 W:      http://www.lm-sensors.org/
8224 W:      http://www.roeck-us.net/linux/drivers/
8225 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8226 S:      Maintained
8227 F:      Documentation/hwmon/pmbus
8228 F:      drivers/hwmon/pmbus/
8229 F:      include/linux/i2c/pmbus.h
8230
8231 PMC SIERRA MaxRAID DRIVER
8232 L:      linux-scsi@vger.kernel.org
8233 W:      http://www.pmc-sierra.com/
8234 S:      Orphan
8235 F:      drivers/scsi/pmcraid.*
8236
8237 PMC SIERRA PM8001 DRIVER
8238 M:      Jack Wang <jinpu.wang@profitbricks.com>
8239 M:      lindar_liu@usish.com
8240 L:      pmchba@pmcs.com
8241 L:      linux-scsi@vger.kernel.org
8242 S:      Supported
8243 F:      drivers/scsi/pm8001/
8244
8245 POSIX CLOCKS and TIMERS
8246 M:      Thomas Gleixner <tglx@linutronix.de>
8247 L:      linux-kernel@vger.kernel.org
8248 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8249 S:      Maintained
8250 F:      fs/timerfd.c
8251 F:      include/linux/timer*
8252 F:      kernel/time/*timer*
8253
8254 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
8255 M:      Sebastian Reichel <sre@kernel.org>
8256 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
8257 M:      David Woodhouse <dwmw2@infradead.org>
8258 L:      linux-pm@vger.kernel.org
8259 T:      git git://git.infradead.org/battery-2.6.git
8260 S:      Maintained
8261 F:      include/linux/power_supply.h
8262 F:      drivers/power/
8263 X:      drivers/power/avs/
8264
8265 POWER STATE COORDINATION INTERFACE (PSCI)
8266 M:      Mark Rutland <mark.rutland@arm.com>
8267 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
8268 L:      linux-arm-kernel@lists.infradead.org
8269 S:      Maintained
8270 F:      drivers/firmware/psci.c
8271 F:      include/linux/psci.h
8272 F:      include/uapi/linux/psci.h
8273
8274 PNP SUPPORT
8275 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
8276 S:      Maintained
8277 F:      drivers/pnp/
8278
8279 PNXxxxx I2C DRIVER
8280 M:      Vitaly Wool <vitalywool@gmail.com>
8281 L:      linux-i2c@vger.kernel.org
8282 S:      Maintained
8283 F:      drivers/i2c/busses/i2c-pnx.c
8284
8285 PPP PROTOCOL DRIVERS AND COMPRESSORS
8286 M:      Paul Mackerras <paulus@samba.org>
8287 L:      linux-ppp@vger.kernel.org
8288 S:      Maintained
8289 F:      drivers/net/ppp/ppp_*
8290
8291 PPP OVER ATM (RFC 2364)
8292 M:      Mitchell Blank Jr <mitch@sfgoth.com>
8293 S:      Maintained
8294 F:      net/atm/pppoatm.c
8295 F:      include/uapi/linux/atmppp.h
8296
8297 PPP OVER ETHERNET
8298 M:      Michal Ostrowski <mostrows@earthlink.net>
8299 S:      Maintained
8300 F:      drivers/net/ppp/pppoe.c
8301 F:      drivers/net/ppp/pppox.c
8302
8303 PPP OVER L2TP
8304 M:      James Chapman <jchapman@katalix.com>
8305 S:      Maintained
8306 F:      net/l2tp/l2tp_ppp.c
8307 F:      include/linux/if_pppol2tp.h
8308 F:      include/uapi/linux/if_pppol2tp.h
8309
8310 PPS SUPPORT
8311 M:      Rodolfo Giometti <giometti@enneenne.com>
8312 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
8313 L:      linuxpps@ml.enneenne.com (subscribers-only)
8314 S:      Maintained
8315 F:      Documentation/pps/
8316 F:      drivers/pps/
8317 F:      include/linux/pps*.h
8318
8319 PPTP DRIVER
8320 M:      Dmitry Kozlov <xeb@mail.ru>
8321 L:      netdev@vger.kernel.org
8322 S:      Maintained
8323 F:      drivers/net/ppp/pptp.c
8324 W:      http://sourceforge.net/projects/accel-pptp
8325
8326 PREEMPTIBLE KERNEL
8327 M:      Robert Love <rml@tech9.net>
8328 L:      kpreempt-tech@lists.sourceforge.net
8329 W:      ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
8330 S:      Supported
8331 F:      Documentation/preempt-locking.txt
8332 F:      include/linux/preempt.h
8333
8334 PRISM54 WIRELESS DRIVER
8335 M:      "Luis R. Rodriguez" <mcgrof@gmail.com>
8336 L:      linux-wireless@vger.kernel.org
8337 W:      http://wireless.kernel.org/en/users/Drivers/p54
8338 S:      Obsolete
8339 F:      drivers/net/wireless/prism54/
8340
8341 PS3 NETWORK SUPPORT
8342 M:      Geoff Levand <geoff@infradead.org>
8343 L:      netdev@vger.kernel.org
8344 L:      linuxppc-dev@lists.ozlabs.org
8345 S:      Maintained
8346 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
8347
8348 PS3 PLATFORM SUPPORT
8349 M:      Geoff Levand <geoff@infradead.org>
8350 L:      linuxppc-dev@lists.ozlabs.org
8351 S:      Maintained
8352 F:      arch/powerpc/boot/ps3*
8353 F:      arch/powerpc/include/asm/lv1call.h
8354 F:      arch/powerpc/include/asm/ps3*.h
8355 F:      arch/powerpc/platforms/ps3/
8356 F:      drivers/*/ps3*
8357 F:      drivers/ps3/
8358 F:      drivers/rtc/rtc-ps3.c
8359 F:      drivers/usb/host/*ps3.c
8360 F:      sound/ppc/snd_ps3*
8361
8362 PS3VRAM DRIVER
8363 M:      Jim Paris <jim@jtan.com>
8364 M:      Geoff Levand <geoff@infradead.org>
8365 L:      linuxppc-dev@lists.ozlabs.org
8366 S:      Maintained
8367 F:      drivers/block/ps3vram.c
8368
8369 PSTORE FILESYSTEM
8370 M:      Anton Vorontsov <anton@enomsg.org>
8371 M:      Colin Cross <ccross@android.com>
8372 M:      Kees Cook <keescook@chromium.org>
8373 M:      Tony Luck <tony.luck@intel.com>
8374 S:      Maintained
8375 T:      git git://git.infradead.org/users/cbou/linux-pstore.git
8376 F:      fs/pstore/
8377 F:      include/linux/pstore*
8378 F:      drivers/firmware/efi/efi-pstore.c
8379 F:      drivers/acpi/apei/erst.c
8380
8381 PTP HARDWARE CLOCK SUPPORT
8382 M:      Richard Cochran <richardcochran@gmail.com>
8383 L:      netdev@vger.kernel.org
8384 S:      Maintained
8385 W:      http://linuxptp.sourceforge.net/
8386 F:      Documentation/ABI/testing/sysfs-ptp
8387 F:      Documentation/ptp/*
8388 F:      drivers/net/ethernet/freescale/gianfar_ptp.c
8389 F:      drivers/net/phy/dp83640*
8390 F:      drivers/ptp/*
8391 F:      include/linux/ptp_cl*
8392
8393 PTRACE SUPPORT
8394 M:      Roland McGrath <roland@hack.frob.com>
8395 M:      Oleg Nesterov <oleg@redhat.com>
8396 S:      Maintained
8397 F:      include/asm-generic/syscall.h
8398 F:      include/linux/ptrace.h
8399 F:      include/linux/regset.h
8400 F:      include/linux/tracehook.h
8401 F:      include/uapi/linux/ptrace.h
8402 F:      kernel/ptrace.c
8403
8404 PVRUSB2 VIDEO4LINUX DRIVER
8405 M:      Mike Isely <isely@pobox.com>
8406 L:      pvrusb2@isely.net       (subscribers-only)
8407 L:      linux-media@vger.kernel.org
8408 W:      http://www.isely.net/pvrusb2/
8409 T:      git git://linuxtv.org/media_tree.git
8410 S:      Maintained
8411 F:      Documentation/video4linux/README.pvrusb2
8412 F:      drivers/media/usb/pvrusb2/
8413
8414 PWC WEBCAM DRIVER
8415 M:      Hans de Goede <hdegoede@redhat.com>
8416 L:      linux-media@vger.kernel.org
8417 T:      git git://linuxtv.org/media_tree.git
8418 S:      Maintained
8419 F:      drivers/media/usb/pwc/*
8420
8421 PWM FAN DRIVER
8422 M:      Kamil Debski <k.debski@samsung.com>
8423 L:      lm-sensors@lm-sensors.org
8424 S:      Supported
8425 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
8426 F:      Documentation/hwmon/pwm-fan
8427 F:      drivers/hwmon/pwm-fan.c
8428
8429 PWM SUBSYSTEM
8430 M:      Thierry Reding <thierry.reding@gmail.com>
8431 L:      linux-pwm@vger.kernel.org
8432 S:      Maintained
8433 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
8434 F:      Documentation/pwm.txt
8435 F:      Documentation/devicetree/bindings/pwm/
8436 F:      include/linux/pwm.h
8437 F:      drivers/pwm/
8438 F:      drivers/video/backlight/pwm_bl.c
8439 F:      include/linux/pwm_backlight.h
8440
8441 PXA2xx/PXA3xx SUPPORT
8442 M:      Daniel Mack <daniel@zonque.org>
8443 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
8444 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8445 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8446 T:      git git://github.com/hzhuang1/linux.git
8447 T:      git git://github.com/rjarzmik/linux.git
8448 S:      Maintained
8449 F:      arch/arm/mach-pxa/
8450 F:      drivers/dma/pxa*
8451 F:      drivers/pcmcia/pxa2xx*
8452 F:      drivers/spi/spi-pxa2xx*
8453 F:      drivers/usb/gadget/udc/pxa2*
8454 F:      include/sound/pxa2xx-lib.h
8455 F:      sound/arm/pxa*
8456 F:      sound/soc/pxa/
8457
8458 PXA3xx NAND FLASH DRIVER
8459 M:      Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
8460 L:      linux-mtd@lists.infradead.org
8461 S:      Maintained
8462 F:      drivers/mtd/nand/pxa3xx_nand.c
8463
8464 MMP SUPPORT
8465 M:      Eric Miao <eric.y.miao@gmail.com>
8466 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
8467 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8468 T:      git git://github.com/hzhuang1/linux.git
8469 T:      git git://git.linaro.org/people/ycmiao/pxa-linux.git
8470 S:      Maintained
8471 F:      arch/arm/mach-mmp/
8472
8473 PXA MMCI DRIVER
8474 S:      Orphan
8475
8476 PXA RTC DRIVER
8477 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8478 L:      rtc-linux@googlegroups.com
8479 S:      Maintained
8480
8481 QAT DRIVER
8482 M:      Tadeusz Struk <tadeusz.struk@intel.com>
8483 L:      qat-linux@intel.com
8484 S:      Supported
8485 F:      drivers/crypto/qat/
8486
8487 QIB DRIVER
8488 M:      Mike Marciniszyn <infinipath@intel.com>
8489 L:      linux-rdma@vger.kernel.org
8490 S:      Supported
8491 F:      drivers/infiniband/hw/qib/
8492
8493 QLOGIC QLA1280 SCSI DRIVER
8494 M:      Michael Reed <mdr@sgi.com>
8495 L:      linux-scsi@vger.kernel.org
8496 S:      Maintained
8497 F:      drivers/scsi/qla1280.[ch]
8498
8499 QLOGIC QLA2XXX FC-SCSI DRIVER
8500 M:      qla2xxx-upstream@qlogic.com
8501 L:      linux-scsi@vger.kernel.org
8502 S:      Supported
8503 F:      Documentation/scsi/LICENSE.qla2xxx
8504 F:      drivers/scsi/qla2xxx/
8505
8506 QLOGIC QLA4XXX iSCSI DRIVER
8507 M:      QLogic-Storage-Upstream@qlogic.com
8508 L:      linux-scsi@vger.kernel.org
8509 S:      Supported
8510 F:      Documentation/scsi/LICENSE.qla4xxx
8511 F:      drivers/scsi/qla4xxx/
8512
8513 QLOGIC QLA3XXX NETWORK DRIVER
8514 M:      Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
8515 M:      Ron Mercer <ron.mercer@qlogic.com>
8516 M:      linux-driver@qlogic.com
8517 L:      netdev@vger.kernel.org
8518 S:      Supported
8519 F:      Documentation/networking/LICENSE.qla3xxx
8520 F:      drivers/net/ethernet/qlogic/qla3xxx.*
8521
8522 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
8523 M:      Dept-GELinuxNICDev@qlogic.com
8524 L:      netdev@vger.kernel.org
8525 S:      Supported
8526 F:      drivers/net/ethernet/qlogic/qlcnic/
8527
8528 QLOGIC QLGE 10Gb ETHERNET DRIVER
8529 M:      Harish Patil <harish.patil@qlogic.com>
8530 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
8531 M:      Dept-GELinuxNICDev@qlogic.com
8532 M:      linux-driver@qlogic.com
8533 L:      netdev@vger.kernel.org
8534 S:      Supported
8535 F:      drivers/net/ethernet/qlogic/qlge/
8536
8537 QNX4 FILESYSTEM
8538 M:      Anders Larsen <al@alarsen.net>
8539 W:      http://www.alarsen.net/linux/qnx4fs/
8540 S:      Maintained
8541 F:      fs/qnx4/
8542 F:      include/uapi/linux/qnx4_fs.h
8543 F:      include/uapi/linux/qnxtypes.h
8544
8545 QT1010 MEDIA DRIVER
8546 M:      Antti Palosaari <crope@iki.fi>
8547 L:      linux-media@vger.kernel.org
8548 W:      http://linuxtv.org/
8549 W:      http://palosaari.fi/linux/
8550 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8551 T:      git git://linuxtv.org/anttip/media_tree.git
8552 S:      Maintained
8553 F:      drivers/media/tuners/qt1010*
8554
8555 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
8556 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
8557 L:      linux-wireless@vger.kernel.org
8558 L:      ath9k-devel@lists.ath9k.org
8559 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
8560 S:      Supported
8561 F:      drivers/net/wireless/ath/ath9k/
8562
8563 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
8564 M:      Kalle Valo <kvalo@qca.qualcomm.com>
8565 L:      ath10k@lists.infradead.org
8566 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
8567 T:      git git://github.com/kvalo/ath.git
8568 S:      Supported
8569 F:      drivers/net/wireless/ath/ath10k/
8570
8571 QUALCOMM HEXAGON ARCHITECTURE
8572 M:      Richard Kuo <rkuo@codeaurora.org>
8573 L:      linux-hexagon@vger.kernel.org
8574 S:      Supported
8575 F:      arch/hexagon/
8576
8577 QUALCOMM WCN36XX WIRELESS DRIVER
8578 M:      Eugene Krasnikov <k.eugene.e@gmail.com>
8579 L:      wcn36xx@lists.infradead.org
8580 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
8581 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
8582 S:      Supported
8583 F:      drivers/net/wireless/ath/wcn36xx/
8584
8585 RADOS BLOCK DEVICE (RBD)
8586 M:      Ilya Dryomov <idryomov@gmail.com>
8587 M:      Sage Weil <sage@redhat.com>
8588 M:      Alex Elder <elder@kernel.org>
8589 L:      ceph-devel@vger.kernel.org
8590 W:      http://ceph.com/
8591 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
8592 T:      git git://github.com/ceph/ceph-client.git
8593 S:      Supported
8594 F:      Documentation/ABI/testing/sysfs-bus-rbd
8595 F:      drivers/block/rbd.c
8596 F:      drivers/block/rbd_types.h
8597
8598 RADEON FRAMEBUFFER DISPLAY DRIVER
8599 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
8600 L:      linux-fbdev@vger.kernel.org
8601 S:      Maintained
8602 F:      drivers/video/fbdev/aty/radeon*
8603 F:      include/uapi/linux/radeonfb.h
8604
8605 RADIOSHARK RADIO DRIVER
8606 M:      Hans de Goede <hdegoede@redhat.com>
8607 L:      linux-media@vger.kernel.org
8608 T:      git git://linuxtv.org/media_tree.git
8609 S:      Maintained
8610 F:      drivers/media/radio/radio-shark.c
8611
8612 RADIOSHARK2 RADIO DRIVER
8613 M:      Hans de Goede <hdegoede@redhat.com>
8614 L:      linux-media@vger.kernel.org
8615 T:      git git://linuxtv.org/media_tree.git
8616 S:      Maintained
8617 F:      drivers/media/radio/radio-shark2.c
8618 F:      drivers/media/radio/radio-tea5777.c
8619
8620 RAGE128 FRAMEBUFFER DISPLAY DRIVER
8621 M:      Paul Mackerras <paulus@samba.org>
8622 L:      linux-fbdev@vger.kernel.org
8623 S:      Maintained
8624 F:      drivers/video/fbdev/aty/aty128fb.c
8625
8626 RALINK RT2X00 WIRELESS LAN DRIVER
8627 P:      rt2x00 project
8628 M:      Stanislaw Gruszka <sgruszka@redhat.com>
8629 M:      Helmut Schaa <helmut.schaa@googlemail.com>
8630 L:      linux-wireless@vger.kernel.org
8631 S:      Maintained
8632 F:      drivers/net/wireless/rt2x00/
8633
8634 RAMDISK RAM BLOCK DEVICE DRIVER
8635 M:      Jens Axboe <axboe@kernel.dk>
8636 S:      Maintained
8637 F:      Documentation/blockdev/ramdisk.txt
8638 F:      drivers/block/brd.c
8639
8640 RANDOM NUMBER DRIVER
8641 M:      "Theodore Ts'o" <tytso@mit.edu>
8642 S:      Maintained
8643 F:      drivers/char/random.c
8644
8645 RAPIDIO SUBSYSTEM
8646 M:      Matt Porter <mporter@kernel.crashing.org>
8647 M:      Alexandre Bounine <alexandre.bounine@idt.com>
8648 S:      Maintained
8649 F:      drivers/rapidio/
8650
8651 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
8652 L:      linux-wireless@vger.kernel.org
8653 S:      Orphan
8654 F:      drivers/net/wireless/ray*
8655
8656 RCUTORTURE MODULE
8657 M:      Josh Triplett <josh@joshtriplett.org>
8658 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8659 L:      linux-kernel@vger.kernel.org
8660 S:      Supported
8661 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8662 F:      Documentation/RCU/torture.txt
8663 F:      kernel/rcu/rcutorture.c
8664
8665 RCUTORTURE TEST FRAMEWORK
8666 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8667 M:      Josh Triplett <josh@joshtriplett.org>
8668 R:      Steven Rostedt <rostedt@goodmis.org>
8669 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8670 R:      Lai Jiangshan <jiangshanlai@gmail.com>
8671 L:      linux-kernel@vger.kernel.org
8672 S:      Supported
8673 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8674 F:      tools/testing/selftests/rcutorture
8675
8676 RDC R-321X SoC
8677 M:      Florian Fainelli <florian@openwrt.org>
8678 S:      Maintained
8679
8680 RDC R6040 FAST ETHERNET DRIVER
8681 M:      Florian Fainelli <florian@openwrt.org>
8682 L:      netdev@vger.kernel.org
8683 S:      Maintained
8684 F:      drivers/net/ethernet/rdc/r6040.c
8685
8686 RDS - RELIABLE DATAGRAM SOCKETS
8687 M:      Chien Yen <chien.yen@oracle.com>
8688 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
8689 S:      Supported
8690 F:      net/rds/
8691
8692 READ-COPY UPDATE (RCU)
8693 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8694 M:      Josh Triplett <josh@joshtriplett.org>
8695 R:      Steven Rostedt <rostedt@goodmis.org>
8696 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8697 R:      Lai Jiangshan <jiangshanlai@gmail.com>
8698 L:      linux-kernel@vger.kernel.org
8699 W:      http://www.rdrop.com/users/paulmck/RCU/
8700 S:      Supported
8701 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8702 F:      Documentation/RCU/
8703 X:      Documentation/RCU/torture.txt
8704 F:      include/linux/rcu*
8705 X:      include/linux/srcu.h
8706 F:      kernel/rcu/
8707 X:      kernel/torture.c
8708
8709 REAL TIME CLOCK (RTC) SUBSYSTEM
8710 M:      Alessandro Zummo <a.zummo@towertech.it>
8711 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
8712 L:      rtc-linux@googlegroups.com
8713 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
8714 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
8715 S:      Maintained
8716 F:      Documentation/rtc.txt
8717 F:      drivers/rtc/
8718 F:      include/linux/rtc.h
8719 F:      include/uapi/linux/rtc.h
8720
8721 REALTEK AUDIO CODECS
8722 M:      Bard Liao <bardliao@realtek.com>
8723 M:      Oder Chiou <oder_chiou@realtek.com>
8724 S:      Maintained
8725 F:      sound/soc/codecs/rt*
8726 F:      include/sound/rt*.h
8727
8728 REISERFS FILE SYSTEM
8729 L:      reiserfs-devel@vger.kernel.org
8730 S:      Supported
8731 F:      fs/reiserfs/
8732
8733 REGISTER MAP ABSTRACTION
8734 M:      Mark Brown <broonie@kernel.org>
8735 L:      linux-kernel@vger.kernel.org
8736 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
8737 S:      Supported
8738 F:      drivers/base/regmap/
8739 F:      include/linux/regmap.h
8740
8741 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
8742 M:      Ohad Ben-Cohen <ohad@wizery.com>
8743 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
8744 S:      Maintained
8745 F:      drivers/remoteproc/
8746 F:      Documentation/remoteproc.txt
8747 F:      include/linux/remoteproc.h
8748
8749 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
8750 M:      Ohad Ben-Cohen <ohad@wizery.com>
8751 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
8752 S:      Maintained
8753 F:      drivers/rpmsg/
8754 F:      Documentation/rpmsg.txt
8755 F:      include/linux/rpmsg.h
8756
8757 RESET CONTROLLER FRAMEWORK
8758 M:      Philipp Zabel <p.zabel@pengutronix.de>
8759 S:      Maintained
8760 F:      drivers/reset/
8761 F:      Documentation/devicetree/bindings/reset/
8762 F:      include/dt-bindings/reset/
8763 F:      include/linux/reset.h
8764 F:      include/linux/reset-controller.h
8765
8766 RFKILL
8767 M:      Johannes Berg <johannes@sipsolutions.net>
8768 L:      linux-wireless@vger.kernel.org
8769 W:      http://wireless.kernel.org/
8770 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
8771 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
8772 S:      Maintained
8773 F:      Documentation/rfkill.txt
8774 F:      net/rfkill/
8775
8776 RHASHTABLE
8777 M:      Thomas Graf <tgraf@suug.ch>
8778 L:      netdev@vger.kernel.org
8779 S:      Maintained
8780 F:      lib/rhashtable.c
8781 F:      include/linux/rhashtable.h
8782
8783 RICOH SMARTMEDIA/XD DRIVER
8784 M:      Maxim Levitsky <maximlevitsky@gmail.com>
8785 S:      Maintained
8786 F:      drivers/mtd/nand/r852.c
8787 F:      drivers/mtd/nand/r852.h
8788
8789 RICOH R5C592 MEMORYSTICK DRIVER
8790 M:      Maxim Levitsky <maximlevitsky@gmail.com>
8791 S:      Maintained
8792 F:      drivers/memstick/host/r592.*
8793
8794 ROCCAT DRIVERS
8795 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
8796 W:      http://sourceforge.net/projects/roccat/
8797 S:      Maintained
8798 F:      drivers/hid/hid-roccat*
8799 F:      include/linux/hid-roccat*
8800 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
8801
8802 ROCKER DRIVER
8803 M:      Jiri Pirko <jiri@resnulli.us>
8804 M:      Scott Feldman <sfeldma@gmail.com>
8805 L:      netdev@vger.kernel.org
8806 S:      Supported
8807 F:      drivers/net/ethernet/rocker/
8808
8809 ROCKETPORT DRIVER
8810 P:      Comtrol Corp.
8811 W:      http://www.comtrol.com
8812 S:      Maintained
8813 F:      Documentation/serial/rocket.txt
8814 F:      drivers/tty/rocket*
8815
8816 ROCKETPORT EXPRESS/INFINITY DRIVER
8817 M:      Kevin Cernekee <cernekee@gmail.com>
8818 L:      linux-serial@vger.kernel.org
8819 S:      Odd Fixes
8820 F:      drivers/tty/serial/rp2.*
8821
8822 ROSE NETWORK LAYER
8823 M:      Ralf Baechle <ralf@linux-mips.org>
8824 L:      linux-hams@vger.kernel.org
8825 W:      http://www.linux-ax25.org/
8826 S:      Maintained
8827 F:      include/net/rose.h
8828 F:      include/uapi/linux/rose.h
8829 F:      net/rose/
8830
8831 RTL2830 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/rtl2830*
8840
8841 RTL2832 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*
8850
8851 RTL2832_SDR MEDIA DRIVER
8852 M:      Antti Palosaari <crope@iki.fi>
8853 L:      linux-media@vger.kernel.org
8854 W:      http://linuxtv.org/
8855 W:      http://palosaari.fi/linux/
8856 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8857 T:      git git://linuxtv.org/anttip/media_tree.git
8858 S:      Maintained
8859 F:      drivers/media/dvb-frontends/rtl2832_sdr*
8860
8861 RTL8180 WIRELESS DRIVER
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:      Orphan
8866 F:      drivers/net/wireless/rtl818x/rtl8180/
8867
8868 RTL8187 WIRELESS DRIVER
8869 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
8870 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
8871 M:      Larry Finger <Larry.Finger@lwfinger.net>
8872 L:      linux-wireless@vger.kernel.org
8873 W:      http://wireless.kernel.org/
8874 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8875 S:      Maintained
8876 F:      drivers/net/wireless/rtl818x/rtl8187/
8877
8878 RTL8192CE WIRELESS DRIVER
8879 M:      Larry Finger <Larry.Finger@lwfinger.net>
8880 M:      Chaoming Li <chaoming_li@realsil.com.cn>
8881 L:      linux-wireless@vger.kernel.org
8882 W:      http://wireless.kernel.org/
8883 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
8884 S:      Maintained
8885 F:      drivers/net/wireless/rtlwifi/
8886 F:      drivers/net/wireless/rtlwifi/rtl8192ce/
8887
8888 S3 SAVAGE FRAMEBUFFER DRIVER
8889 M:      Antonino Daplas <adaplas@gmail.com>
8890 L:      linux-fbdev@vger.kernel.org
8891 S:      Maintained
8892 F:      drivers/video/fbdev/savage/
8893
8894 S390
8895 M:      Martin Schwidefsky <schwidefsky@de.ibm.com>
8896 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
8897 L:      linux-s390@vger.kernel.org
8898 W:      http://www.ibm.com/developerworks/linux/linux390/
8899 S:      Supported
8900 F:      arch/s390/
8901 F:      drivers/s390/
8902 F:      Documentation/s390/
8903 F:      Documentation/DocBook/s390*
8904
8905 S390 COMMON I/O LAYER
8906 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
8907 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
8908 L:      linux-s390@vger.kernel.org
8909 W:      http://www.ibm.com/developerworks/linux/linux390/
8910 S:      Supported
8911 F:      drivers/s390/cio/
8912
8913 S390 DASD DRIVER
8914 M:      Stefan Weinhuber <wein@de.ibm.com>
8915 M:      Stefan Haberland <stefan.haberland@de.ibm.com>
8916 L:      linux-s390@vger.kernel.org
8917 W:      http://www.ibm.com/developerworks/linux/linux390/
8918 S:      Supported
8919 F:      drivers/s390/block/dasd*
8920 F:      block/partitions/ibm.c
8921
8922 S390 NETWORK DRIVERS
8923 M:      Ursula Braun <ursula.braun@de.ibm.com>
8924 L:      linux-s390@vger.kernel.org
8925 W:      http://www.ibm.com/developerworks/linux/linux390/
8926 S:      Supported
8927 F:      drivers/s390/net/
8928
8929 S390 PCI SUBSYSTEM
8930 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
8931 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
8932 L:      linux-s390@vger.kernel.org
8933 W:      http://www.ibm.com/developerworks/linux/linux390/
8934 S:      Supported
8935 F:      arch/s390/pci/
8936 F:      drivers/pci/hotplug/s390_pci_hpc.c
8937
8938 S390 ZCRYPT DRIVER
8939 M:      Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
8940 L:      linux-s390@vger.kernel.org
8941 W:      http://www.ibm.com/developerworks/linux/linux390/
8942 S:      Supported
8943 F:      drivers/s390/crypto/
8944
8945 S390 ZFCP DRIVER
8946 M:      Steffen Maier <maier@linux.vnet.ibm.com>
8947 L:      linux-s390@vger.kernel.org
8948 W:      http://www.ibm.com/developerworks/linux/linux390/
8949 S:      Supported
8950 F:      drivers/s390/scsi/zfcp_*
8951
8952 S390 IUCV NETWORK LAYER
8953 M:      Ursula Braun <ursula.braun@de.ibm.com>
8954 L:      linux-s390@vger.kernel.org
8955 W:      http://www.ibm.com/developerworks/linux/linux390/
8956 S:      Supported
8957 F:      drivers/s390/net/*iucv*
8958 F:      include/net/iucv/
8959 F:      net/iucv/
8960
8961 S3C24XX SD/MMC Driver
8962 M:      Ben Dooks <ben-linux@fluff.org>
8963 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8964 S:      Supported
8965 F:      drivers/mmc/host/s3cmci.*
8966
8967 SAA6588 RDS RECEIVER DRIVER
8968 M:      Hans Verkuil <hverkuil@xs4all.nl>
8969 L:      linux-media@vger.kernel.org
8970 T:      git git://linuxtv.org/media_tree.git
8971 W:      http://linuxtv.org
8972 S:      Odd Fixes
8973 F:      drivers/media/i2c/saa6588*
8974
8975 SAA7134 VIDEO4LINUX DRIVER
8976 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
8977 L:      linux-media@vger.kernel.org
8978 W:      http://linuxtv.org
8979 T:      git git://linuxtv.org/media_tree.git
8980 S:      Odd fixes
8981 F:      Documentation/video4linux/*.saa7134
8982 F:      drivers/media/pci/saa7134/
8983
8984 SAA7146 VIDEO4LINUX-2 DRIVER
8985 M:      Hans Verkuil <hverkuil@xs4all.nl>
8986 L:      linux-media@vger.kernel.org
8987 T:      git git://linuxtv.org/media_tree.git
8988 S:      Maintained
8989 F:      drivers/media/common/saa7146/
8990 F:      drivers/media/pci/saa7146/
8991 F:      include/media/saa7146*
8992
8993 SAMSUNG LAPTOP DRIVER
8994 M:      Corentin Chary <corentin.chary@gmail.com>
8995 L:      platform-driver-x86@vger.kernel.org
8996 S:      Maintained
8997 F:      drivers/platform/x86/samsung-laptop.c
8998
8999 SAMSUNG AUDIO (ASoC) DRIVERS
9000 M:      Sangbeom Kim <sbkim73@samsung.com>
9001 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9002 S:      Supported
9003 F:      sound/soc/samsung/
9004
9005 SAMSUNG FRAMEBUFFER DRIVER
9006 M:      Jingoo Han <jingoohan1@gmail.com>
9007 L:      linux-fbdev@vger.kernel.org
9008 S:      Maintained
9009 F:      drivers/video/fbdev/s3c-fb.c
9010
9011 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
9012 M:      Sangbeom Kim <sbkim73@samsung.com>
9013 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
9014 L:      linux-kernel@vger.kernel.org
9015 L:      linux-samsung-soc@vger.kernel.org
9016 S:      Supported
9017 F:      drivers/mfd/sec*.c
9018 F:      drivers/regulator/s2m*.c
9019 F:      drivers/regulator/s5m*.c
9020 F:      drivers/clk/clk-s2mps11.c
9021 F:      drivers/rtc/rtc-s5m.c
9022 F:      include/linux/mfd/samsung/
9023 F:      Documentation/devicetree/bindings/regulator/s5m8767-regulator.txt
9024 F:      Documentation/devicetree/bindings/mfd/s2mp*.txt
9025
9026 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
9027 M:      Kyungmin Park <kyungmin.park@samsung.com>
9028 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
9029 L:      linux-media@vger.kernel.org
9030 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
9031 S:      Supported
9032 F:      drivers/media/platform/exynos4-is/
9033
9034 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
9035 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
9036 L:      linux-media@vger.kernel.org
9037 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9038 S:      Maintained
9039 F:      drivers/media/platform/s3c-camif/
9040 F:      include/media/s3c_camif.h
9041
9042 SAMSUNG S5C73M3 CAMERA DRIVER
9043 M:      Kyungmin Park <kyungmin.park@samsung.com>
9044 M:      Andrzej Hajda <a.hajda@samsung.com>
9045 L:      linux-media@vger.kernel.org
9046 S:      Supported
9047 F:      drivers/media/i2c/s5c73m3/*
9048
9049 SAMSUNG S5K5BAF CAMERA DRIVER
9050 M:      Kyungmin Park <kyungmin.park@samsung.com>
9051 M:      Andrzej Hajda <a.hajda@samsung.com>
9052 L:      linux-media@vger.kernel.org
9053 S:      Supported
9054 F:      drivers/media/i2c/s5k5baf.c
9055
9056 SAMSUNG S3FWRN5 NFC DRIVER
9057 M:      Robert Baldyga <r.baldyga@samsung.com>
9058 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
9059 S:      Supported
9060 F:      drivers/nfc/s3fwrn5
9061
9062 SAMSUNG SOC CLOCK DRIVERS
9063 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
9064 M:      Tomasz Figa <tomasz.figa@gmail.com>
9065 S:      Supported
9066 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9067 F:      drivers/clk/samsung/
9068
9069 SAMSUNG SXGBE DRIVERS
9070 M:      Byungho An <bh74.an@samsung.com>
9071 M:      Girish K S <ks.giri@samsung.com>
9072 M:      Vipul Pandya <vipul.pandya@samsung.com>
9073 S:      Supported
9074 L:      netdev@vger.kernel.org
9075 F:      drivers/net/ethernet/samsung/sxgbe/
9076
9077 SAMSUNG THERMAL DRIVER
9078 M:      Lukasz Majewski <l.majewski@samsung.com>
9079 L:      linux-pm@vger.kernel.org
9080 L:      linux-samsung-soc@vger.kernel.org
9081 S:      Supported
9082 T:      https://github.com/lmajewski/linux-samsung-thermal.git
9083 F:      drivers/thermal/samsung/
9084
9085 SAMSUNG USB2 PHY DRIVER
9086 M:      Kamil Debski <k.debski@samsung.com>
9087 L:      linux-kernel@vger.kernel.org
9088 S:      Supported
9089 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
9090 F:      Documentation/phy/samsung-usb2.txt
9091 F:      drivers/phy/phy-exynos4210-usb2.c
9092 F:      drivers/phy/phy-exynos4x12-usb2.c
9093 F:      drivers/phy/phy-exynos5250-usb2.c
9094 F:      drivers/phy/phy-s5pv210-usb2.c
9095 F:      drivers/phy/phy-samsung-usb2.c
9096 F:      drivers/phy/phy-samsung-usb2.h
9097
9098 SERIAL DRIVERS
9099 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9100 L:      linux-serial@vger.kernel.org
9101 S:      Maintained
9102 F:      drivers/tty/serial/
9103
9104 SYNOPSYS DESIGNWARE DMAC DRIVER
9105 M:      Viresh Kumar <vireshk@kernel.org>
9106 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9107 S:      Maintained
9108 F:      include/linux/dma/dw.h
9109 F:      include/linux/platform_data/dma-dw.h
9110 F:      drivers/dma/dw/
9111
9112 SYNOPSYS DESIGNWARE ETHERNET QOS 4.10a driver
9113 M: Lars Persson <lars.persson@axis.com>
9114 L: netdev@vger.kernel.org
9115 S: Supported
9116 F: Documentation/devicetree/bindings/net/snps,dwc-qos-ethernet.txt
9117 F: drivers/net/ethernet/synopsys/dwc_eth_qos.c
9118
9119 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
9120 M:      Seungwon Jeon <tgih.jun@samsung.com>
9121 M:      Jaehoon Chung <jh80.chung@samsung.com>
9122 L:      linux-mmc@vger.kernel.org
9123 S:      Maintained
9124 F:      include/linux/mmc/dw_mmc.h
9125 F:      drivers/mmc/host/dw_mmc*
9126
9127 THUNDERBOLT DRIVER
9128 M:      Andreas Noever <andreas.noever@gmail.com>
9129 S:      Maintained
9130 F:      drivers/thunderbolt/
9131
9132 TIMEKEEPING, CLOCKSOURCE CORE, NTP
9133 M:      John Stultz <john.stultz@linaro.org>
9134 M:      Thomas Gleixner <tglx@linutronix.de>
9135 L:      linux-kernel@vger.kernel.org
9136 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
9137 S:      Supported
9138 F:      include/linux/clocksource.h
9139 F:      include/linux/time.h
9140 F:      include/linux/timex.h
9141 F:      include/uapi/linux/time.h
9142 F:      include/uapi/linux/timex.h
9143 F:      kernel/time/clocksource.c
9144 F:      kernel/time/time*.c
9145 F:      kernel/time/ntp.c
9146 F:      tools/testing/selftests/timers/
9147
9148 SC1200 WDT DRIVER
9149 M:      Zwane Mwaikambo <zwanem@gmail.com>
9150 S:      Maintained
9151 F:      drivers/watchdog/sc1200wdt.c
9152
9153 SCHEDULER
9154 M:      Ingo Molnar <mingo@redhat.com>
9155 M:      Peter Zijlstra <peterz@infradead.org>
9156 L:      linux-kernel@vger.kernel.org
9157 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
9158 S:      Maintained
9159 F:      kernel/sched/
9160 F:      include/linux/sched.h
9161 F:      include/uapi/linux/sched.h
9162 F:      include/linux/wait.h
9163
9164 SCORE ARCHITECTURE
9165 M:      Chen Liqin <liqin.linux@gmail.com>
9166 M:      Lennox Wu <lennox.wu@gmail.com>
9167 W:      http://www.sunplus.com
9168 S:      Supported
9169 F:      arch/score/
9170
9171 SCSI CDROM DRIVER
9172 M:      Jens Axboe <axboe@kernel.dk>
9173 L:      linux-scsi@vger.kernel.org
9174 W:      http://www.kernel.dk
9175 S:      Maintained
9176 F:      drivers/scsi/sr*
9177
9178 SCSI RDMA PROTOCOL (SRP) INITIATOR
9179 M:      Bart Van Assche <bart.vanassche@sandisk.com>
9180 L:      linux-rdma@vger.kernel.org
9181 S:      Supported
9182 W:      http://www.openfabrics.org
9183 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9184 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
9185 F:      drivers/infiniband/ulp/srp/
9186 F:      include/scsi/srp.h
9187
9188 SCSI SG DRIVER
9189 M:      Doug Gilbert <dgilbert@interlog.com>
9190 L:      linux-scsi@vger.kernel.org
9191 W:      http://sg.danny.cz/sg
9192 S:      Maintained
9193 F:      Documentation/scsi/scsi-generic.txt
9194 F:      drivers/scsi/sg.c
9195 F:      include/scsi/sg.h
9196
9197 SCSI SUBSYSTEM
9198 M:      "James E.J. Bottomley" <JBottomley@odin.com>
9199 L:      linux-scsi@vger.kernel.org
9200 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
9201 S:      Maintained
9202 F:      drivers/scsi/
9203 F:      include/scsi/
9204
9205 SCSI TAPE DRIVER
9206 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
9207 L:      linux-scsi@vger.kernel.org
9208 S:      Maintained
9209 F:      Documentation/scsi/st.txt
9210 F:      drivers/scsi/st.*
9211 F:      drivers/scsi/st_*.h
9212
9213 SCTP PROTOCOL
9214 M:      Vlad Yasevich <vyasevich@gmail.com>
9215 M:      Neil Horman <nhorman@tuxdriver.com>
9216 L:      linux-sctp@vger.kernel.org
9217 W:      http://lksctp.sourceforge.net
9218 S:      Maintained
9219 F:      Documentation/networking/sctp.txt
9220 F:      include/linux/sctp.h
9221 F:      include/uapi/linux/sctp.h
9222 F:      include/net/sctp/
9223 F:      net/sctp/
9224
9225 SCx200 CPU SUPPORT
9226 M:      Jim Cromie <jim.cromie@gmail.com>
9227 S:      Odd Fixes
9228 F:      Documentation/i2c/busses/scx200_acb
9229 F:      arch/x86/platform/scx200/
9230 F:      drivers/watchdog/scx200_wdt.c
9231 F:      drivers/i2c/busses/scx200*
9232 F:      drivers/mtd/maps/scx200_docflash.c
9233 F:      include/linux/scx200.h
9234
9235 SCx200 GPIO DRIVER
9236 M:      Jim Cromie <jim.cromie@gmail.com>
9237 S:      Maintained
9238 F:      drivers/char/scx200_gpio.c
9239 F:      include/linux/scx200_gpio.h
9240
9241 SCx200 HRT CLOCKSOURCE DRIVER
9242 M:      Jim Cromie <jim.cromie@gmail.com>
9243 S:      Maintained
9244 F:      drivers/clocksource/scx200_hrt.c
9245
9246 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
9247 M:      Sascha Sommer <saschasommer@freenet.de>
9248 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
9249 S:      Maintained
9250 F:      drivers/mmc/host/sdricoh_cs.c
9251
9252 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
9253 L:      linux-mmc@vger.kernel.org
9254 S:      Orphan
9255 F:      drivers/mmc/host/sdhci.*
9256 F:      drivers/mmc/host/sdhci-pltfm.[ch]
9257
9258 SECURE COMPUTING
9259 M:      Kees Cook <keescook@chromium.org>
9260 R:      Andy Lutomirski <luto@amacapital.net>
9261 R:      Will Drewry <wad@chromium.org>
9262 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
9263 S:      Supported
9264 F:      kernel/seccomp.c
9265 F:      include/uapi/linux/seccomp.h
9266 F:      include/linux/seccomp.h
9267 F:      tools/testing/selftests/seccomp/*
9268 K:      \bsecure_computing
9269 K:      \bTIF_SECCOMP\b
9270
9271 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
9272 M:      Ben Dooks <ben-linux@fluff.org>
9273 M:      Jaehoon Chung <jh80.chung@samsung.com>
9274 L:      linux-mmc@vger.kernel.org
9275 S:      Maintained
9276 F:      drivers/mmc/host/sdhci-s3c*
9277
9278 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
9279 M:      Viresh Kumar <vireshk@kernel.org>
9280 L:      spear-devel@list.st.com
9281 L:      linux-mmc@vger.kernel.org
9282 S:      Maintained
9283 F:      drivers/mmc/host/sdhci-spear.c
9284
9285 SECURITY SUBSYSTEM
9286 M:      James Morris <james.l.morris@oracle.com>
9287 M:      "Serge E. Hallyn" <serge@hallyn.com>
9288 L:      linux-security-module@vger.kernel.org (suggested Cc:)
9289 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
9290 W:      http://kernsec.org/
9291 S:      Supported
9292 F:      security/
9293
9294 SECURITY CONTACT
9295 M:      Security Officers <security@kernel.org>
9296 S:      Supported
9297
9298 SELINUX SECURITY MODULE
9299 M:      Paul Moore <paul@paul-moore.com>
9300 M:      Stephen Smalley <sds@tycho.nsa.gov>
9301 M:      Eric Paris <eparis@parisplace.org>
9302 L:      selinux@tycho.nsa.gov (moderated for non-subscribers)
9303 W:      http://selinuxproject.org
9304 T:      git git://git.infradead.org/users/pcmoore/selinux
9305 S:      Supported
9306 F:      include/linux/selinux*
9307 F:      security/selinux/
9308 F:      scripts/selinux/
9309
9310 APPARMOR SECURITY MODULE
9311 M:      John Johansen <john.johansen@canonical.com>
9312 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
9313 W:      apparmor.wiki.kernel.org
9314 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
9315 S:      Supported
9316 F:      security/apparmor/
9317
9318 YAMA SECURITY MODULE
9319 M:      Kees Cook <keescook@chromium.org>
9320 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
9321 S:      Supported
9322 F:      security/yama/
9323
9324 SENSABLE PHANTOM
9325 M:      Jiri Slaby <jirislaby@gmail.com>
9326 S:      Maintained
9327 F:      drivers/misc/phantom.c
9328 F:      include/uapi/linux/phantom.h
9329
9330 SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
9331 M:      Jayamohan Kallickal <jayamohan.kallickal@avagotech.com>
9332 M:      Minh Tran <minh.tran@avagotech.com>
9333 M:      John Soni Jose <sony.john-n@avagotech.com>
9334 L:      linux-scsi@vger.kernel.org
9335 W:      http://www.avagotech.com
9336 S:      Supported
9337 F:      drivers/scsi/be2iscsi/
9338
9339 Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER
9340 M:      Sathya Perla <sathya.perla@avagotech.com>
9341 M:      Ajit Khaparde <ajit.khaparde@avagotech.com>
9342 M:      Padmanabh Ratnakar <padmanabh.ratnakar@avagotech.com>
9343 M:      Sriharsha Basavapatna <sriharsha.basavapatna@avagotech.com>
9344 L:      netdev@vger.kernel.org
9345 W:      http://www.emulex.com
9346 S:      Supported
9347 F:      drivers/net/ethernet/emulex/benet/
9348
9349 EMULEX ONECONNECT ROCE DRIVER
9350 M:      Selvin Xavier <selvin.xavier@avagotech.com>
9351 M:      Devesh Sharma <devesh.sharma@avagotech.com>
9352 M:      Mitesh Ahuja <mitesh.ahuja@avagotech.com>
9353 L:      linux-rdma@vger.kernel.org
9354 W:      http://www.emulex.com
9355 S:      Supported
9356 F:      drivers/infiniband/hw/ocrdma/
9357
9358 SFC NETWORK DRIVER
9359 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
9360 M:      Shradha Shah <sshah@solarflare.com>
9361 L:      netdev@vger.kernel.org
9362 S:      Supported
9363 F:      drivers/net/ethernet/sfc/
9364
9365 SGI GRU DRIVER
9366 M:      Dimitri Sivanich <sivanich@sgi.com>
9367 S:      Maintained
9368 F:      drivers/misc/sgi-gru/
9369
9370 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
9371 M:      Pat Gefre <pfg@sgi.com>
9372 L:      linux-ia64@vger.kernel.org
9373 S:      Supported
9374 F:      Documentation/ia64/serial.txt
9375 F:      drivers/tty/serial/ioc?_serial.c
9376 F:      include/linux/ioc?.h
9377
9378 SGI XP/XPC/XPNET DRIVER
9379 M:      Cliff Whickman <cpw@sgi.com>
9380 M:      Robin Holt <robinmholt@gmail.com>
9381 S:      Maintained
9382 F:      drivers/misc/sgi-xp/
9383
9384 SI2157 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/tuners/si2157*
9393
9394 SI2168 MEDIA DRIVER
9395 M:      Antti Palosaari <crope@iki.fi>
9396 L:      linux-media@vger.kernel.org
9397 W:      http://linuxtv.org/
9398 W:      http://palosaari.fi/linux/
9399 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9400 T:      git git://linuxtv.org/anttip/media_tree.git
9401 S:      Maintained
9402 F:      drivers/media/dvb-frontends/si2168*
9403
9404 SI470X FM RADIO RECEIVER I2C DRIVER
9405 M:      Hans Verkuil <hverkuil@xs4all.nl>
9406 L:      linux-media@vger.kernel.org
9407 T:      git git://linuxtv.org/media_tree.git
9408 W:      http://linuxtv.org
9409 S:      Odd Fixes
9410 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
9411
9412 SI470X FM RADIO RECEIVER USB DRIVER
9413 M:      Hans Verkuil <hverkuil@xs4all.nl>
9414 L:      linux-media@vger.kernel.org
9415 T:      git git://linuxtv.org/media_tree.git
9416 W:      http://linuxtv.org
9417 S:      Maintained
9418 F:      drivers/media/radio/si470x/radio-si470x-common.c
9419 F:      drivers/media/radio/si470x/radio-si470x.h
9420 F:      drivers/media/radio/si470x/radio-si470x-usb.c
9421
9422 SI4713 FM RADIO TRANSMITTER I2C DRIVER
9423 M:      Eduardo Valentin <edubezval@gmail.com>
9424 L:      linux-media@vger.kernel.org
9425 T:      git git://linuxtv.org/media_tree.git
9426 W:      http://linuxtv.org
9427 S:      Odd Fixes
9428 F:      drivers/media/radio/si4713/si4713.?
9429
9430 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
9431 M:      Eduardo Valentin <edubezval@gmail.com>
9432 L:      linux-media@vger.kernel.org
9433 T:      git git://linuxtv.org/media_tree.git
9434 W:      http://linuxtv.org
9435 S:      Odd Fixes
9436 F:      drivers/media/radio/si4713/radio-platform-si4713.c
9437
9438 SI4713 FM RADIO TRANSMITTER USB DRIVER
9439 M:      Hans Verkuil <hverkuil@xs4all.nl>
9440 L:      linux-media@vger.kernel.org
9441 T:      git git://linuxtv.org/media_tree.git
9442 W:      http://linuxtv.org
9443 S:      Maintained
9444 F:      drivers/media/radio/si4713/radio-usb-si4713.c
9445
9446 SIANO DVB DRIVER
9447 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9448 L:      linux-media@vger.kernel.org
9449 W:      http://linuxtv.org
9450 T:      git git://linuxtv.org/media_tree.git
9451 S:      Odd fixes
9452 F:      drivers/media/common/siano/
9453 F:      drivers/media/usb/siano/
9454 F:      drivers/media/usb/siano/
9455 F:      drivers/media/mmc/siano/
9456
9457 SIMPLEFB FB DRIVER
9458 M:      Hans de Goede <hdegoede@redhat.com>
9459 L:      linux-fbdev@vger.kernel.org
9460 S:      Maintained
9461 F:      Documentation/devicetree/bindings/video/simple-framebuffer.txt
9462 F:      drivers/video/fbdev/simplefb.c
9463 F:      include/linux/platform_data/simplefb.h
9464
9465 SH_VEU V4L2 MEM2MEM DRIVER
9466 L:      linux-media@vger.kernel.org
9467 S:      Orphan
9468 F:      drivers/media/platform/sh_veu.c
9469
9470 SH_VOU V4L2 OUTPUT DRIVER
9471 L:      linux-media@vger.kernel.org
9472 S:      Orphan
9473 F:      drivers/media/platform/sh_vou.c
9474 F:      include/media/sh_vou.h
9475
9476 SIMPLE FIRMWARE INTERFACE (SFI)
9477 M:      Len Brown <lenb@kernel.org>
9478 L:      sfi-devel@simplefirmware.org
9479 W:      http://simplefirmware.org/
9480 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
9481 S:      Supported
9482 F:      arch/x86/platform/sfi/
9483 F:      drivers/sfi/
9484 F:      include/linux/sfi*.h
9485
9486 SIMTEC EB110ATX (Chalice CATS)
9487 P:      Ben Dooks
9488 P:      Vincent Sanders <vince@simtec.co.uk>
9489 M:      Simtec Linux Team <linux@simtec.co.uk>
9490 W:      http://www.simtec.co.uk/products/EB110ATX/
9491 S:      Supported
9492
9493 SIMTEC EB2410ITX (BAST)
9494 P:      Ben Dooks
9495 P:      Vincent Sanders <vince@simtec.co.uk>
9496 M:      Simtec Linux Team <linux@simtec.co.uk>
9497 W:      http://www.simtec.co.uk/products/EB2410ITX/
9498 S:      Supported
9499 F:      arch/arm/mach-s3c24xx/mach-bast.c
9500 F:      arch/arm/mach-s3c24xx/bast-ide.c
9501 F:      arch/arm/mach-s3c24xx/bast-irq.c
9502
9503 TI DAVINCI MACHINE SUPPORT
9504 M:      Sekhar Nori <nsekhar@ti.com>
9505 M:      Kevin Hilman <khilman@deeprootsystems.com>
9506 T:      git git://gitorious.org/linux-davinci/linux-davinci.git
9507 Q:      http://patchwork.kernel.org/project/linux-davinci/list/
9508 S:      Supported
9509 F:      arch/arm/mach-davinci/
9510 F:      drivers/i2c/busses/i2c-davinci.c
9511
9512 TI DAVINCI SERIES MEDIA 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/davinci/
9520 F:      include/media/davinci/
9521
9522 TI AM437X VPFE DRIVER
9523 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9524 L:      linux-media@vger.kernel.org
9525 W:      http://linuxtv.org/
9526 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9527 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9528 S:      Maintained
9529 F:      drivers/media/platform/am437x/
9530
9531 OV2659 OMNIVISION SENSOR DRIVER
9532 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9533 L:      linux-media@vger.kernel.org
9534 W:      http://linuxtv.org/
9535 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9536 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9537 S:      Maintained
9538 F:      drivers/media/i2c/ov2659.c
9539 F:      include/media/ov2659.h
9540
9541 SILICON MOTION SM712 FRAME BUFFER DRIVER
9542 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
9543 M:      Teddy Wang <teddy.wang@siliconmotion.com>
9544 M:      Sudip Mukherjee <sudip@vectorindia.org>
9545 L:      linux-fbdev@vger.kernel.org
9546 S:      Maintained
9547 F:      drivers/video/fbdev/sm712*
9548 F:      Documentation/fb/sm712fb.txt
9549
9550 SIS 190 ETHERNET DRIVER
9551 M:      Francois Romieu <romieu@fr.zoreil.com>
9552 L:      netdev@vger.kernel.org
9553 S:      Maintained
9554 F:      drivers/net/ethernet/sis/sis190.c
9555
9556 SIS 900/7016 FAST ETHERNET DRIVER
9557 M:      Daniele Venzano <venza@brownhat.org>
9558 W:      http://www.brownhat.org/sis900.html
9559 L:      netdev@vger.kernel.org
9560 S:      Maintained
9561 F:      drivers/net/ethernet/sis/sis900.*
9562
9563 SIS FRAMEBUFFER DRIVER
9564 M:      Thomas Winischhofer <thomas@winischhofer.net>
9565 W:      http://www.winischhofer.net/linuxsisvga.shtml
9566 S:      Maintained
9567 F:      Documentation/fb/sisfb.txt
9568 F:      drivers/video/fbdev/sis/
9569 F:      include/video/sisfb.h
9570
9571 SIS USB2VGA DRIVER
9572 M:      Thomas Winischhofer <thomas@winischhofer.net>
9573 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
9574 S:      Maintained
9575 F:      drivers/usb/misc/sisusbvga/
9576
9577 SLAB ALLOCATOR
9578 M:      Christoph Lameter <cl@linux.com>
9579 M:      Pekka Enberg <penberg@kernel.org>
9580 M:      David Rientjes <rientjes@google.com>
9581 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
9582 M:      Andrew Morton <akpm@linux-foundation.org>
9583 L:      linux-mm@kvack.org
9584 S:      Maintained
9585 F:      include/linux/sl?b*.h
9586 F:      mm/sl?b*
9587
9588 SLEEPABLE READ-COPY UPDATE (SRCU)
9589 M:      Lai Jiangshan <jiangshanlai@gmail.com>
9590 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9591 M:      Josh Triplett <josh@joshtriplett.org>
9592 R:      Steven Rostedt <rostedt@goodmis.org>
9593 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9594 L:      linux-kernel@vger.kernel.org
9595 W:      http://www.rdrop.com/users/paulmck/RCU/
9596 S:      Supported
9597 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9598 F:      include/linux/srcu.h
9599 F:      kernel/rcu/srcu.c
9600
9601 SMACK SECURITY MODULE
9602 M:      Casey Schaufler <casey@schaufler-ca.com>
9603 L:      linux-security-module@vger.kernel.org
9604 W:      http://schaufler-ca.com
9605 T:      git git://git.gitorious.org/smack-next/kernel.git
9606 S:      Maintained
9607 F:      Documentation/security/Smack.txt
9608 F:      security/smack/
9609
9610 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
9611 M:      Kevin Hilman <khilman@kernel.org>
9612 M:      Nishanth Menon <nm@ti.com>
9613 S:      Maintained
9614 F:      drivers/power/avs/
9615 F:      include/linux/power/smartreflex.h
9616 L:      linux-pm@vger.kernel.org
9617
9618 SMC91x ETHERNET DRIVER
9619 M:      Nicolas Pitre <nico@fluxnic.net>
9620 S:      Odd Fixes
9621 F:      drivers/net/ethernet/smsc/smc91x.*
9622
9623 SMIA AND SMIA++ IMAGE SENSOR DRIVER
9624 M:      Sakari Ailus <sakari.ailus@iki.fi>
9625 L:      linux-media@vger.kernel.org
9626 S:      Maintained
9627 F:      drivers/media/i2c/smiapp/
9628 F:      include/media/smiapp.h
9629 F:      drivers/media/i2c/smiapp-pll.c
9630 F:      drivers/media/i2c/smiapp-pll.h
9631 F:      include/uapi/linux/smiapp.h
9632 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
9633
9634 SMM665 HARDWARE MONITOR DRIVER
9635 M:      Guenter Roeck <linux@roeck-us.net>
9636 L:      lm-sensors@lm-sensors.org
9637 S:      Maintained
9638 F:      Documentation/hwmon/smm665
9639 F:      drivers/hwmon/smm665.c
9640
9641 SMSC EMC2103 HARDWARE MONITOR DRIVER
9642 M:      Steve Glendinning <steve.glendinning@shawell.net>
9643 L:      lm-sensors@lm-sensors.org
9644 S:      Maintained
9645 F:      Documentation/hwmon/emc2103
9646 F:      drivers/hwmon/emc2103.c
9647
9648 SMSC SCH5627 HARDWARE MONITOR DRIVER
9649 M:      Hans de Goede <hdegoede@redhat.com>
9650 L:      lm-sensors@lm-sensors.org
9651 S:      Supported
9652 F:      Documentation/hwmon/sch5627
9653 F:      drivers/hwmon/sch5627.c
9654
9655 SMSC47B397 HARDWARE MONITOR DRIVER
9656 M:      Jean Delvare <jdelvare@suse.com>
9657 L:      lm-sensors@lm-sensors.org
9658 S:      Maintained
9659 F:      Documentation/hwmon/smsc47b397
9660 F:      drivers/hwmon/smsc47b397.c
9661
9662 SMSC911x ETHERNET DRIVER
9663 M:      Steve Glendinning <steve.glendinning@shawell.net>
9664 L:      netdev@vger.kernel.org
9665 S:      Maintained
9666 F:      include/linux/smsc911x.h
9667 F:      drivers/net/ethernet/smsc/smsc911x.*
9668
9669 SMSC9420 PCI ETHERNET DRIVER
9670 M:      Steve Glendinning <steve.glendinning@shawell.net>
9671 L:      netdev@vger.kernel.org
9672 S:      Maintained
9673 F:      drivers/net/ethernet/smsc/smsc9420.*
9674
9675 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
9676 M:      Steve Glendinning <steve.glendinning@shawell.net>
9677 L:      linux-fbdev@vger.kernel.org
9678 S:      Maintained
9679 F:      drivers/video/fbdev/smscufx.c
9680
9681 SOC-CAMERA V4L2 SUBSYSTEM
9682 M:      Guennadi Liakhovetski <g.liakhovetski@gmx.de>
9683 L:      linux-media@vger.kernel.org
9684 T:      git git://linuxtv.org/media_tree.git
9685 S:      Maintained
9686 F:      include/media/soc*
9687 F:      drivers/media/i2c/soc_camera/
9688 F:      drivers/media/platform/soc_camera/
9689
9690 SOEKRIS NET48XX LED SUPPORT
9691 M:      Chris Boot <bootc@bootc.net>
9692 S:      Maintained
9693 F:      drivers/leds/leds-net48xx.c
9694
9695 SOFTLOGIC 6x10 MPEG CODEC
9696 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
9697 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
9698 M:      Andrey Utkin <andrey.krieger.utkin@gmail.com>
9699 M:      Ismael Luceno <ismael@iodev.co.uk>
9700 L:      linux-media@vger.kernel.org
9701 S:      Supported
9702 F:      drivers/media/pci/solo6x10/
9703
9704 SOFTWARE RAID (Multiple Disks) SUPPORT
9705 M:      Neil Brown <neilb@suse.com>
9706 L:      linux-raid@vger.kernel.org
9707 S:      Supported
9708 F:      drivers/md/
9709 F:      include/linux/raid/
9710 F:      include/uapi/linux/raid/
9711
9712 SONIC NETWORK DRIVER
9713 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
9714 L:      netdev@vger.kernel.org
9715 S:      Maintained
9716 F:      drivers/net/ethernet/natsemi/sonic.*
9717
9718 SONICS SILICON BACKPLANE DRIVER (SSB)
9719 M:      Michael Buesch <m@bues.ch>
9720 L:      netdev@vger.kernel.org
9721 S:      Maintained
9722 F:      drivers/ssb/
9723 F:      include/linux/ssb/
9724
9725 SONY VAIO CONTROL DEVICE DRIVER
9726 M:      Mattia Dongili <malattia@linux.it>
9727 L:      platform-driver-x86@vger.kernel.org
9728 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
9729 S:      Maintained
9730 F:      Documentation/laptops/sony-laptop.txt
9731 F:      drivers/char/sonypi.c
9732 F:      drivers/platform/x86/sony-laptop.c
9733 F:      include/linux/sony-laptop.h
9734
9735 SONY MEMORYSTICK CARD SUPPORT
9736 M:      Alex Dubov <oakad@yahoo.com>
9737 W:      http://tifmxx.berlios.de/
9738 S:      Maintained
9739 F:      drivers/memstick/host/tifm_ms.c
9740
9741 SONY MEMORYSTICK STANDARD SUPPORT
9742 M:      Maxim Levitsky <maximlevitsky@gmail.com>
9743 S:      Maintained
9744 F:      drivers/memstick/core/ms_block.*
9745
9746 SOUND
9747 M:      Jaroslav Kysela <perex@perex.cz>
9748 M:      Takashi Iwai <tiwai@suse.com>
9749 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9750 W:      http://www.alsa-project.org/
9751 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
9752 T:      git git://git.alsa-project.org/alsa-kernel.git
9753 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
9754 S:      Maintained
9755 F:      Documentation/sound/
9756 F:      include/sound/
9757 F:      include/uapi/sound/
9758 F:      sound/
9759
9760 SOUND - COMPRESSED AUDIO
9761 M:      Vinod Koul <vinod.koul@intel.com>
9762 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9763 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
9764 S:      Supported
9765 F:      Documentation/sound/alsa/compress_offload.txt
9766 F:      include/sound/compress_driver.h
9767 F:      include/uapi/sound/compress_*
9768 F:      sound/core/compress_offload.c
9769 F:      sound/soc/soc-compress.c
9770
9771 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
9772 M:      Liam Girdwood <lgirdwood@gmail.com>
9773 M:      Mark Brown <broonie@kernel.org>
9774 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
9775 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9776 W:      http://alsa-project.org/main/index.php/ASoC
9777 S:      Supported
9778 F:      Documentation/sound/alsa/soc/
9779 F:      sound/soc/
9780 F:      include/sound/soc*
9781
9782 SOUND - DMAENGINE HELPERS
9783 M:      Lars-Peter Clausen <lars@metafoo.de>
9784 S:      Supported
9785 F:      include/sound/dmaengine_pcm.h
9786 F:      sound/core/pcm_dmaengine.c
9787 F:      sound/soc/soc-generic-dmaengine-pcm.c
9788
9789 SP2 MEDIA DRIVER
9790 M:      Olli Salonen <olli.salonen@iki.fi>
9791 L:      linux-media@vger.kernel.org
9792 W:      http://linuxtv.org/
9793 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9794 S:      Maintained
9795 F:      drivers/media/dvb-frontends/sp2*
9796
9797 SPARC + UltraSPARC (sparc/sparc64)
9798 M:      "David S. Miller" <davem@davemloft.net>
9799 L:      sparclinux@vger.kernel.org
9800 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
9801 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
9802 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
9803 S:      Maintained
9804 F:      arch/sparc/
9805 F:      drivers/sbus/
9806
9807 SPARC SERIAL DRIVERS
9808 M:      "David S. Miller" <davem@davemloft.net>
9809 L:      sparclinux@vger.kernel.org
9810 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
9811 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
9812 S:      Maintained
9813 F:      include/linux/sunserialcore.h
9814 F:      drivers/tty/serial/suncore.c
9815 F:      drivers/tty/serial/sunhv.c
9816 F:      drivers/tty/serial/sunsab.c
9817 F:      drivers/tty/serial/sunsab.h
9818 F:      drivers/tty/serial/sunsu.c
9819 F:      drivers/tty/serial/sunzilog.c
9820 F:      drivers/tty/serial/sunzilog.h
9821
9822 SPARSE CHECKER
9823 M:      "Christopher Li" <sparse@chrisli.org>
9824 L:      linux-sparse@vger.kernel.org
9825 W:      https://sparse.wiki.kernel.org/
9826 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
9827 T:      git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
9828 S:      Maintained
9829 F:      include/linux/compiler.h
9830
9831 SPEAR PLATFORM SUPPORT
9832 M:      Viresh Kumar <vireshk@kernel.org>
9833 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
9834 L:      spear-devel@list.st.com
9835 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9836 W:      http://www.st.com/spear
9837 S:      Maintained
9838 F:      arch/arm/mach-spear/
9839
9840 SPEAR CLOCK FRAMEWORK SUPPORT
9841 M:      Viresh Kumar <vireshk@kernel.org>
9842 L:      spear-devel@list.st.com
9843 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9844 W:      http://www.st.com/spear
9845 S:      Maintained
9846 F:      drivers/clk/spear/
9847
9848 SPI SUBSYSTEM
9849 M:      Mark Brown <broonie@kernel.org>
9850 L:      linux-spi@vger.kernel.org
9851 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
9852 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
9853 S:      Maintained
9854 F:      Documentation/spi/
9855 F:      drivers/spi/
9856 F:      include/linux/spi/
9857 F:      include/uapi/linux/spi/
9858
9859 SPIDERNET NETWORK DRIVER for CELL
9860 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
9861 L:      netdev@vger.kernel.org
9862 S:      Supported
9863 F:      Documentation/networking/spider_net.txt
9864 F:      drivers/net/ethernet/toshiba/spider_net*
9865
9866 SPU FILE SYSTEM
9867 M:      Jeremy Kerr <jk@ozlabs.org>
9868 L:      linuxppc-dev@lists.ozlabs.org
9869 W:      http://www.ibm.com/developerworks/power/cell/
9870 S:      Supported
9871 F:      Documentation/filesystems/spufs.txt
9872 F:      arch/powerpc/platforms/cell/spufs/
9873
9874 SQUASHFS FILE SYSTEM
9875 M:      Phillip Lougher <phillip@squashfs.org.uk>
9876 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
9877 W:      http://squashfs.org.uk
9878 S:      Maintained
9879 F:      Documentation/filesystems/squashfs.txt
9880 F:      fs/squashfs/
9881
9882 SRM (Alpha) environment access
9883 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
9884 S:      Maintained
9885 F:      arch/alpha/kernel/srm_env.c
9886
9887 STABLE BRANCH
9888 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9889 L:      stable@vger.kernel.org
9890 S:      Supported
9891 F:      Documentation/stable_kernel_rules.txt
9892
9893 STAGING SUBSYSTEM
9894 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9895 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
9896 L:      devel@driverdev.osuosl.org
9897 S:      Supported
9898 F:      drivers/staging/
9899
9900 STAGING - COMEDI
9901 M:      Ian Abbott <abbotti@mev.co.uk>
9902 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
9903 S:      Odd Fixes
9904 F:      drivers/staging/comedi/
9905
9906 STAGING - FLARION FT1000 DRIVERS
9907 M:      Marek Belisko <marek.belisko@gmail.com>
9908 S:      Odd Fixes
9909 F:      drivers/staging/ft1000/
9910
9911 STAGING - INDUSTRIAL IO
9912 M:      Jonathan Cameron <jic23@kernel.org>
9913 L:      linux-iio@vger.kernel.org
9914 S:      Odd Fixes
9915 F:      drivers/staging/iio/
9916
9917 STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
9918 M:      Jarod Wilson <jarod@wilsonet.com>
9919 W:      http://www.lirc.org/
9920 S:      Odd Fixes
9921 F:      drivers/staging/media/lirc/
9922
9923 STAGING - LUSTRE PARALLEL FILESYSTEM
9924 M:      Oleg Drokin <oleg.drokin@intel.com>
9925 M:      Andreas Dilger <andreas.dilger@intel.com>
9926 L:      lustre-devel@lists.lustre.org (moderated for non-subscribers)
9927 W:      http://wiki.lustre.org/
9928 S:      Maintained
9929 F:      drivers/staging/lustre
9930
9931 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
9932 M:      Julian Andres Klode <jak@jak-linux.org>
9933 M:      Marc Dietrich <marvin24@gmx.de>
9934 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
9935 L:      linux-tegra@vger.kernel.org
9936 S:      Maintained
9937 F:      drivers/staging/nvec/
9938
9939 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
9940 M:      Jens Frederich <jfrederich@gmail.com>
9941 M:      Daniel Drake <dsd@laptop.org>
9942 M:      Jon Nettleton <jon.nettleton@gmail.com>
9943 W:      http://wiki.laptop.org/go/DCON
9944 S:      Maintained
9945 F:      drivers/staging/olpc_dcon/
9946
9947 STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
9948 M:      Willy Tarreau <willy@meta-x.org>
9949 S:      Odd Fixes
9950 F:      drivers/staging/panel/
9951
9952 STAGING - REALTEK RTL8712U DRIVERS
9953 M:      Larry Finger <Larry.Finger@lwfinger.net>
9954 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
9955 S:      Odd Fixes
9956 F:      drivers/staging/rtl8712/
9957
9958 STAGING - REALTEK RTL8723U WIRELESS DRIVER
9959 M:      Larry Finger <Larry.Finger@lwfinger.net>
9960 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
9961 L:      linux-wireless@vger.kernel.org
9962 S:      Maintained
9963 F:      drivers/staging/rtl8723au/
9964
9965 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
9966 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
9967 M:      Teddy Wang <teddy.wang@siliconmotion.com>
9968 M:      Sudip Mukherjee <sudip@vectorindia.org>
9969 L:      linux-fbdev@vger.kernel.org
9970 S:      Maintained
9971 F:      drivers/staging/sm750fb/
9972
9973 STAGING - SLICOSS
9974 M:      Lior Dotan <liodot@gmail.com>
9975 M:      Christopher Harrer <charrer@alacritech.com>
9976 S:      Odd Fixes
9977 F:      drivers/staging/slicoss/
9978
9979 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
9980 M:      William Hubbs <w.d.hubbs@gmail.com>
9981 M:      Chris Brannon <chris@the-brannons.com>
9982 M:      Kirk Reiser <kirk@reisers.ca>
9983 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
9984 L:      speakup@linux-speakup.org
9985 W:      http://www.linux-speakup.org/
9986 S:      Odd Fixes
9987 F:      drivers/staging/speakup/
9988
9989 STAGING - VIA VT665X DRIVERS
9990 M:      Forest Bond <forest@alittletooquiet.net>
9991 S:      Odd Fixes
9992 F:      drivers/staging/vt665?/
9993
9994 STAGING - WILC1000 WIFI DRIVER
9995 M:      Johnny Kim <johnny.kim@atmel.com>
9996 M:      Rachel Kim <rachel.kim@atmel.com>
9997 M:      Dean Lee <dean.lee@atmel.com>
9998 M:      Chris Park <chris.park@atmel.com>
9999 L:      linux-wireless@vger.kernel.org
10000 S:      Supported
10001 F:      drivers/staging/wilc1000/
10002
10003 STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
10004 M:      Arnaud Patard <arnaud.patard@rtp-net.org>
10005 S:      Odd Fixes
10006 F:      drivers/staging/xgifb/
10007
10008 HFI1 DRIVER
10009 M:      Mike Marciniszyn <infinipath@intel.com>
10010 L:      linux-rdma@vger.kernel.org
10011 S:      Supported
10012 F:      drivers/staging/rdma/hfi1
10013
10014 STARFIRE/DURALAN NETWORK DRIVER
10015 M:      Ion Badulescu <ionut@badula.org>
10016 S:      Odd Fixes
10017 F:      drivers/net/ethernet/adaptec/starfire*
10018
10019 SUN3/3X
10020 M:      Sam Creasey <sammy@sammy.net>
10021 W:      http://sammy.net/sun3/
10022 S:      Maintained
10023 F:      arch/m68k/kernel/*sun3*
10024 F:      arch/m68k/sun3*/
10025 F:      arch/m68k/include/asm/sun3*
10026 F:      drivers/net/ethernet/i825xx/sun3*
10027
10028 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
10029 M:      Hans de Goede <hdegoede@redhat.com>
10030 L:      linux-input@vger.kernel.org
10031 S:      Maintained
10032 F:      Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
10033 F:      drivers/input/keyboard/sun4i-lradc-keys.c
10034
10035 SUNDANCE NETWORK DRIVER
10036 M:      Denis Kirjanov <kda@linux-powerpc.org>
10037 L:      netdev@vger.kernel.org
10038 S:      Maintained
10039 F:      drivers/net/ethernet/dlink/sundance.c
10040
10041 SUPERH
10042 L:      linux-sh@vger.kernel.org
10043 Q:      http://patchwork.kernel.org/project/linux-sh/list/
10044 S:      Orphan
10045 F:      Documentation/sh/
10046 F:      arch/sh/
10047 F:      drivers/sh/
10048
10049 SUSPEND TO RAM
10050 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
10051 M:      Len Brown <len.brown@intel.com>
10052 M:      Pavel Machek <pavel@ucw.cz>
10053 L:      linux-pm@vger.kernel.org
10054 S:      Supported
10055 F:      Documentation/power/
10056 F:      arch/x86/kernel/acpi/
10057 F:      drivers/base/power/
10058 F:      kernel/power/
10059 F:      include/linux/suspend.h
10060 F:      include/linux/freezer.h
10061 F:      include/linux/pm.h
10062
10063 SVGA HANDLING
10064 M:      Martin Mares <mj@ucw.cz>
10065 L:      linux-video@atrey.karlin.mff.cuni.cz
10066 S:      Maintained
10067 F:      Documentation/svga.txt
10068 F:      arch/x86/boot/video*
10069
10070 SWIOTLB SUBSYSTEM
10071 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10072 L:      linux-kernel@vger.kernel.org
10073 S:      Supported
10074 F:      lib/swiotlb.c
10075 F:      arch/*/kernel/pci-swiotlb.c
10076 F:      include/linux/swiotlb.h
10077
10078 SWITCHDEV
10079 M:      Jiri Pirko <jiri@resnulli.us>
10080 L:      netdev@vger.kernel.org
10081 S:      Supported
10082 F:      net/switchdev/
10083 F:      include/net/switchdev.h
10084
10085 SYNOPSYS ARC ARCHITECTURE
10086 M:      Vineet Gupta <vgupta@synopsys.com>
10087 S:      Supported
10088 F:      arch/arc/
10089 F:      Documentation/devicetree/bindings/arc/*
10090 F:      drivers/tty/serial/arc_uart.c
10091 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
10092
10093 SYNOPSYS ARC SDP platform support
10094 M:      Alexey Brodkin <abrodkin@synopsys.com>
10095 S:      Supported
10096 F:      arch/arc/plat-axs10x
10097 F:      arch/arc/boot/dts/ax*
10098 F:      Documentation/devicetree/bindings/arc/axs10*
10099
10100 SYSTEM CONFIGURATION (SYSCON)
10101 M:      Lee Jones <lee.jones@linaro.org>
10102 M:      Arnd Bergmann <arnd@arndb.de>
10103 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
10104 S:      Supported
10105 F:      drivers/mfd/syscon.c
10106
10107 SYSV FILESYSTEM
10108 M:      Christoph Hellwig <hch@infradead.org>
10109 S:      Maintained
10110 F:      Documentation/filesystems/sysv-fs.txt
10111 F:      fs/sysv/
10112 F:      include/linux/sysv_fs.h
10113
10114 TARGET SUBSYSTEM
10115 M:      "Nicholas A. Bellinger" <nab@linux-iscsi.org>
10116 L:      linux-scsi@vger.kernel.org
10117 L:      target-devel@vger.kernel.org
10118 W:      http://www.linux-iscsi.org
10119 W:      http://groups.google.com/group/linux-iscsi-target-dev
10120 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10121 S:      Supported
10122 F:      drivers/target/
10123 F:      include/target/
10124 F:      Documentation/target/
10125
10126 TASKSTATS STATISTICS INTERFACE
10127 M:      Balbir Singh <bsingharora@gmail.com>
10128 S:      Maintained
10129 F:      Documentation/accounting/taskstats*
10130 F:      include/linux/taskstats*
10131 F:      kernel/taskstats.c
10132
10133 TC CLASSIFIER
10134 M:      Jamal Hadi Salim <jhs@mojatatu.com>
10135 L:      netdev@vger.kernel.org
10136 S:      Maintained
10137 F:      include/net/pkt_cls.h
10138 F:      include/uapi/linux/pkt_cls.h
10139 F:      net/sched/
10140
10141 TCP LOW PRIORITY MODULE
10142 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
10143 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
10144 W:      http://tcp-lp-mod.sourceforge.net/
10145 S:      Maintained
10146 F:      net/ipv4/tcp_lp.c
10147
10148 TDA10071 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/dvb-frontends/tda10071*
10157
10158 TDA18212 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/tda18212*
10167
10168 TDA18218 MEDIA DRIVER
10169 M:      Antti Palosaari <crope@iki.fi>
10170 L:      linux-media@vger.kernel.org
10171 W:      http://linuxtv.org/
10172 W:      http://palosaari.fi/linux/
10173 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10174 T:      git git://linuxtv.org/anttip/media_tree.git
10175 S:      Maintained
10176 F:      drivers/media/tuners/tda18218*
10177
10178 TDA18271 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/tda18271*
10187
10188 TDA827x 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 TDA8290 MEDIA DRIVER
10199 M:      Michael Krufky <mkrufky@linuxtv.org>
10200 L:      linux-media@vger.kernel.org
10201 W:      http://linuxtv.org/
10202 W:      http://github.com/mkrufky
10203 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10204 T:      git git://linuxtv.org/mkrufky/tuners.git
10205 S:      Maintained
10206 F:      drivers/media/tuners/tda8290.*
10207
10208 TDA9840 MEDIA DRIVER
10209 M:      Hans Verkuil <hverkuil@xs4all.nl>
10210 L:      linux-media@vger.kernel.org
10211 T:      git git://linuxtv.org/media_tree.git
10212 W:      http://linuxtv.org
10213 S:      Maintained
10214 F:      drivers/media/i2c/tda9840*
10215
10216 TEA5761 TUNER DRIVER
10217 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10218 L:      linux-media@vger.kernel.org
10219 W:      http://linuxtv.org
10220 T:      git git://linuxtv.org/media_tree.git
10221 S:      Odd fixes
10222 F:      drivers/media/tuners/tea5761.*
10223
10224 TEA5767 TUNER DRIVER
10225 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10226 L:      linux-media@vger.kernel.org
10227 W:      http://linuxtv.org
10228 T:      git git://linuxtv.org/media_tree.git
10229 S:      Maintained
10230 F:      drivers/media/tuners/tea5767.*
10231
10232 TEA6415C MEDIA DRIVER
10233 M:      Hans Verkuil <hverkuil@xs4all.nl>
10234 L:      linux-media@vger.kernel.org
10235 T:      git git://linuxtv.org/media_tree.git
10236 W:      http://linuxtv.org
10237 S:      Maintained
10238 F:      drivers/media/i2c/tea6415c*
10239
10240 TEA6420 MEDIA DRIVER
10241 M:      Hans Verkuil <hverkuil@xs4all.nl>
10242 L:      linux-media@vger.kernel.org
10243 T:      git git://linuxtv.org/media_tree.git
10244 W:      http://linuxtv.org
10245 S:      Maintained
10246 F:      drivers/media/i2c/tea6420*
10247
10248 TEAM DRIVER
10249 M:      Jiri Pirko <jiri@resnulli.us>
10250 L:      netdev@vger.kernel.org
10251 S:      Supported
10252 F:      drivers/net/team/
10253 F:      include/linux/if_team.h
10254 F:      include/uapi/linux/if_team.h
10255
10256 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
10257 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
10258 S:      Maintained
10259 F:      arch/x86/platform/ts5500/
10260
10261 TECHNOTREND USB IR RECEIVER
10262 M:      Sean Young <sean@mess.org>
10263 L:      linux-media@vger.kernel.org
10264 S:      Maintained
10265 F:      drivers/media/rc/ttusbir.c
10266
10267 TEGRA ARCHITECTURE SUPPORT
10268 M:      Stephen Warren <swarren@wwwdotorg.org>
10269 M:      Thierry Reding <thierry.reding@gmail.com>
10270 M:      Alexandre Courbot <gnurou@gmail.com>
10271 L:      linux-tegra@vger.kernel.org
10272 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
10273 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
10274 S:      Supported
10275 N:      [^a-z]tegra
10276
10277 TEGRA CLOCK DRIVER
10278 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
10279 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
10280 S:      Supported
10281 F:      drivers/clk/tegra/
10282
10283 TEGRA DMA DRIVER
10284 M:      Laxman Dewangan <ldewangan@nvidia.com>
10285 S:      Supported
10286 F:      drivers/dma/tegra20-apb-dma.c
10287
10288 TEGRA I2C DRIVER
10289 M:      Laxman Dewangan <ldewangan@nvidia.com>
10290 S:      Supported
10291 F:      drivers/i2c/busses/i2c-tegra.c
10292
10293 TEGRA IOMMU DRIVERS
10294 M:      Hiroshi Doyu <hdoyu@nvidia.com>
10295 S:      Supported
10296 F:      drivers/iommu/tegra*
10297
10298 TEGRA KBC DRIVER
10299 M:      Rakesh Iyer <riyer@nvidia.com>
10300 M:      Laxman Dewangan <ldewangan@nvidia.com>
10301 S:      Supported
10302 F:      drivers/input/keyboard/tegra-kbc.c
10303
10304 TEGRA PWM DRIVER
10305 M:      Thierry Reding <thierry.reding@gmail.com>
10306 S:      Supported
10307 F:      drivers/pwm/pwm-tegra.c
10308
10309 TEGRA SERIAL DRIVER
10310 M:      Laxman Dewangan <ldewangan@nvidia.com>
10311 S:      Supported
10312 F:      drivers/tty/serial/serial-tegra.c
10313
10314 TEGRA SPI DRIVER
10315 M:      Laxman Dewangan <ldewangan@nvidia.com>
10316 S:      Supported
10317 F:      drivers/spi/spi-tegra*
10318
10319 TEHUTI ETHERNET DRIVER
10320 M:      Andy Gospodarek <andy@greyhouse.net>
10321 L:      netdev@vger.kernel.org
10322 S:      Supported
10323 F:      drivers/net/ethernet/tehuti/*
10324
10325 Telecom Clock Driver for MCPL0010
10326 M:      Mark Gross <mark.gross@intel.com>
10327 S:      Supported
10328 F:      drivers/char/tlclk.c
10329
10330 TENSILICA XTENSA PORT (xtensa)
10331 M:      Chris Zankel <chris@zankel.net>
10332 M:      Max Filippov <jcmvbkbc@gmail.com>
10333 L:      linux-xtensa@linux-xtensa.org
10334 S:      Maintained
10335 F:      arch/xtensa/
10336 F:      drivers/irqchip/irq-xtensa-*
10337
10338 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
10339 M:      Hans Verkuil <hverkuil@xs4all.nl>
10340 L:      linux-media@vger.kernel.org
10341 T:      git git://linuxtv.org/media_tree.git
10342 W:      http://linuxtv.org
10343 S:      Maintained
10344 F:      drivers/media/radio/radio-raremono.c
10345
10346 THERMAL
10347 M:      Zhang Rui <rui.zhang@intel.com>
10348 M:      Eduardo Valentin <edubezval@gmail.com>
10349 L:      linux-pm@vger.kernel.org
10350 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
10351 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
10352 Q:      https://patchwork.kernel.org/project/linux-pm/list/
10353 S:      Supported
10354 F:      drivers/thermal/
10355 F:      include/linux/thermal.h
10356 F:      include/uapi/linux/thermal.h
10357 F:      include/linux/cpu_cooling.h
10358 F:      Documentation/devicetree/bindings/thermal/
10359
10360 THERMAL/CPU_COOLING
10361 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
10362 M:      Viresh Kumar <viresh.kumar@linaro.org>
10363 M:      Javi Merino <javi.merino@arm.com>
10364 L:      linux-pm@vger.kernel.org
10365 S:      Supported
10366 F:      Documentation/thermal/cpu-cooling-api.txt
10367 F:      drivers/thermal/cpu_cooling.c
10368 F:      include/linux/cpu_cooling.h
10369
10370 THINGM BLINK(1) USB RGB LED DRIVER
10371 M:      Vivien Didelot <vivien.didelot@savoirfairelinux.com>
10372 S:      Maintained
10373 F:      drivers/hid/hid-thingm.c
10374
10375 THINKPAD ACPI EXTRAS DRIVER
10376 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
10377 L:      ibm-acpi-devel@lists.sourceforge.net
10378 L:      platform-driver-x86@vger.kernel.org
10379 W:      http://ibm-acpi.sourceforge.net
10380 W:      http://thinkwiki.org/wiki/Ibm-acpi
10381 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
10382 S:      Maintained
10383 F:      drivers/platform/x86/thinkpad_acpi.c
10384
10385 TI BANDGAP AND THERMAL DRIVER
10386 M:      Eduardo Valentin <edubezval@gmail.com>
10387 L:      linux-pm@vger.kernel.org
10388 L:      linux-omap@vger.kernel.org
10389 S:      Maintained
10390 F:      drivers/thermal/ti-soc-thermal/
10391
10392 TI CDCE706 CLOCK DRIVER
10393 M:      Max Filippov <jcmvbkbc@gmail.com>
10394 S:      Maintained
10395 F:      drivers/clk/clk-cdce706.c
10396
10397 TI CLOCK DRIVER
10398 M:      Tero Kristo <t-kristo@ti.com>
10399 L:      linux-omap@vger.kernel.org
10400 S:      Maintained
10401 F:      drivers/clk/ti/
10402 F:      include/linux/clk/ti.h
10403
10404 TI FLASH MEDIA INTERFACE DRIVER
10405 M:      Alex Dubov <oakad@yahoo.com>
10406 S:      Maintained
10407 F:      drivers/misc/tifm*
10408 F:      drivers/mmc/host/tifm_sd.c
10409 F:      include/linux/tifm.h
10410
10411 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
10412 M:      Santosh Shilimkar <ssantosh@kernel.org>
10413 L:      linux-kernel@vger.kernel.org
10414 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10415 S:      Maintained
10416 F:      drivers/soc/ti/*
10417 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
10418
10419
10420 TI LM49xxx FAMILY ASoC CODEC DRIVERS
10421 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
10422 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
10423 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10424 S:      Maintained
10425 F:      sound/soc/codecs/lm49453*
10426 F:      sound/soc/codecs/isabelle*
10427
10428 TI LP855x BACKLIGHT DRIVER
10429 M:      Milo Kim <milo.kim@ti.com>
10430 S:      Maintained
10431 F:      Documentation/backlight/lp855x-driver.txt
10432 F:      drivers/video/backlight/lp855x_bl.c
10433 F:      include/linux/platform_data/lp855x.h
10434
10435 TI LP8727 CHARGER DRIVER
10436 M:      Milo Kim <milo.kim@ti.com>
10437 S:      Maintained
10438 F:      drivers/power/lp8727_charger.c
10439 F:      include/linux/platform_data/lp8727.h
10440
10441 TI LP8788 MFD DRIVER
10442 M:      Milo Kim <milo.kim@ti.com>
10443 S:      Maintained
10444 F:      drivers/iio/adc/lp8788_adc.c
10445 F:      drivers/leds/leds-lp8788.c
10446 F:      drivers/mfd/lp8788*.c
10447 F:      drivers/power/lp8788-charger.c
10448 F:      drivers/regulator/lp8788-*.c
10449 F:      include/linux/mfd/lp8788*.h
10450
10451 TI NETCP ETHERNET DRIVER
10452 M:      Wingman Kwok <w-kwok2@ti.com>
10453 M:      Murali Karicheri <m-karicheri2@ti.com>
10454 L:      netdev@vger.kernel.org
10455 S:      Maintained
10456 F:      drivers/net/ethernet/ti/netcp*
10457
10458 TI TAS571X FAMILY ASoC CODEC DRIVER
10459 M:      Kevin Cernekee <cernekee@chromium.org>
10460 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10461 S:      Odd Fixes
10462 F:      sound/soc/codecs/tas571x*
10463
10464 TI TWL4030 SERIES SOC CODEC DRIVER
10465 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
10466 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10467 S:      Maintained
10468 F:      sound/soc/codecs/twl4030*
10469
10470 TI WILINK WIRELESS DRIVERS
10471 L:      linux-wireless@vger.kernel.org
10472 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
10473 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
10474 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
10475 S:      Orphan
10476 F:      drivers/net/wireless/ti/
10477 F:      include/linux/wl12xx.h
10478
10479 TIPC NETWORK LAYER
10480 M:      Jon Maloy <jon.maloy@ericsson.com>
10481 M:      Ying Xue <ying.xue@windriver.com>
10482 L:      netdev@vger.kernel.org (core kernel code)
10483 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
10484 W:      http://tipc.sourceforge.net/
10485 S:      Maintained
10486 F:      include/uapi/linux/tipc*.h
10487 F:      net/tipc/
10488
10489 TILE ARCHITECTURE
10490 M:      Chris Metcalf <cmetcalf@ezchip.com>
10491 W:      http://www.ezchip.com/scm/
10492 S:      Supported
10493 F:      arch/tile/
10494 F:      drivers/char/tile-srom.c
10495 F:      drivers/edac/tile_edac.c
10496 F:      drivers/net/ethernet/tile/
10497 F:      drivers/rtc/rtc-tile.c
10498 F:      drivers/tty/hvc/hvc_tile.c
10499 F:      drivers/tty/serial/tilegx.c
10500 F:      drivers/usb/host/*-tilegx.c
10501 F:      include/linux/usb/tilegx.h
10502
10503 TLAN NETWORK DRIVER
10504 M:      Samuel Chessman <chessman@tux.org>
10505 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
10506 W:      http://sourceforge.net/projects/tlan/
10507 S:      Maintained
10508 F:      Documentation/networking/tlan.txt
10509 F:      drivers/net/ethernet/ti/tlan.*
10510
10511 TOMOYO SECURITY MODULE
10512 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
10513 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
10514 L:      tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
10515 L:      tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
10516 L:      tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
10517 L:      tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
10518 W:      http://tomoyo.sourceforge.jp/
10519 T:      quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
10520 S:      Maintained
10521 F:      security/tomoyo/
10522
10523 TOPSTAR LAPTOP EXTRAS DRIVER
10524 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
10525 L:      platform-driver-x86@vger.kernel.org
10526 S:      Maintained
10527 F:      drivers/platform/x86/topstar-laptop.c
10528
10529 TOSHIBA ACPI EXTRAS DRIVER
10530 M:      Azael Avalos <coproscefalo@gmail.com>
10531 L:      platform-driver-x86@vger.kernel.org
10532 S:      Maintained
10533 F:      drivers/platform/x86/toshiba_acpi.c
10534
10535 TOSHIBA BLUETOOTH DRIVER
10536 M:      Azael Avalos <coproscefalo@gmail.com>
10537 L:      platform-driver-x86@vger.kernel.org
10538 S:      Maintained
10539 F:      drivers/platform/x86/toshiba_bluetooth.c
10540
10541 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
10542 M:      Azael Avalos <coproscefalo@gmail.com>
10543 L:      platform-driver-x86@vger.kernel.org
10544 S:      Maintained
10545 F:      drivers/platform/x86/toshiba_haps.c
10546
10547 TOSHIBA SMM DRIVER
10548 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
10549 W:      http://www.buzzard.org.uk/toshiba/
10550 S:      Maintained
10551 F:      drivers/char/toshiba.c
10552 F:      include/linux/toshiba.h
10553 F:      include/uapi/linux/toshiba.h
10554
10555 TOSHIBA TC358743 DRIVER
10556 M:      Mats Randgaard <matrandg@cisco.com>
10557 L:      linux-media@vger.kernel.org
10558 S:      Maintained
10559 F:      drivers/media/i2c/tc358743*
10560 F:      include/media/tc358743.h
10561
10562 TMIO MMC DRIVER
10563 M:      Ian Molton <ian@mnementh.co.uk>
10564 L:      linux-mmc@vger.kernel.org
10565 S:      Maintained
10566 F:      drivers/mmc/host/tmio_mmc*
10567 F:      drivers/mmc/host/sh_mobile_sdhi.c
10568 F:      include/linux/mmc/tmio.h
10569 F:      include/linux/mmc/sh_mobile_sdhi.h
10570
10571 TMP401 HARDWARE MONITOR DRIVER
10572 M:      Guenter Roeck <linux@roeck-us.net>
10573 L:      lm-sensors@lm-sensors.org
10574 S:      Maintained
10575 F:      Documentation/hwmon/tmp401
10576 F:      drivers/hwmon/tmp401.c
10577
10578 TMPFS (SHMEM FILESYSTEM)
10579 M:      Hugh Dickins <hughd@google.com>
10580 L:      linux-mm@kvack.org
10581 S:      Maintained
10582 F:      include/linux/shmem_fs.h
10583 F:      mm/shmem.c
10584
10585 TM6000 VIDEO4LINUX DRIVER
10586 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10587 L:      linux-media@vger.kernel.org
10588 W:      http://linuxtv.org
10589 T:      git git://linuxtv.org/media_tree.git
10590 S:      Odd fixes
10591 F:      drivers/media/usb/tm6000/
10592
10593 TW68 VIDEO4LINUX DRIVER
10594 M:      Hans Verkuil <hverkuil@xs4all.nl>
10595 L:      linux-media@vger.kernel.org
10596 T:      git git://linuxtv.org/media_tree.git
10597 W:      http://linuxtv.org
10598 S:      Odd Fixes
10599 F:      drivers/media/pci/tw68/
10600
10601 TPM DEVICE DRIVER
10602 M:      Peter Huewe <peterhuewe@gmx.de>
10603 M:      Marcel Selhorst <tpmdd@selhorst.net>
10604 R:      Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
10605 W:      http://tpmdd.sourceforge.net
10606 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
10607 Q:      git git://github.com/PeterHuewe/linux-tpmdd.git
10608 T:      https://github.com/PeterHuewe/linux-tpmdd
10609 S:      Maintained
10610 F:      drivers/char/tpm/
10611
10612 TPM IBM_VTPM DEVICE DRIVER
10613 M:      Ashley Lai <ashleydlai@gmail.com>
10614 W:      http://tpmdd.sourceforge.net
10615 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
10616 S:      Maintained
10617 F:      drivers/char/tpm/tpm_ibmvtpm*
10618
10619 TRACING
10620 M:      Steven Rostedt <rostedt@goodmis.org>
10621 M:      Ingo Molnar <mingo@redhat.com>
10622 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
10623 S:      Maintained
10624 F:      Documentation/trace/ftrace.txt
10625 F:      arch/*/*/*/ftrace.h
10626 F:      arch/*/kernel/ftrace.c
10627 F:      include/*/ftrace.h
10628 F:      include/linux/trace*.h
10629 F:      include/trace/
10630 F:      kernel/trace/
10631 F:      tools/testing/selftests/ftrace/
10632
10633 TRIVIAL PATCHES
10634 M:      Jiri Kosina <trivial@kernel.org>
10635 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
10636 S:      Maintained
10637 K:      ^Subject:.*(?i)trivial
10638
10639 TTY LAYER
10640 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10641 M:      Jiri Slaby <jslaby@suse.com>
10642 S:      Supported
10643 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
10644 F:      Documentation/serial/
10645 F:      drivers/tty/
10646 F:      drivers/tty/serial/serial_core.c
10647 F:      include/linux/serial_core.h
10648 F:      include/linux/serial.h
10649 F:      include/linux/tty.h
10650 F:      include/uapi/linux/serial_core.h
10651 F:      include/uapi/linux/serial.h
10652 F:      include/uapi/linux/tty.h
10653
10654 TUA9001 MEDIA DRIVER
10655 M:      Antti Palosaari <crope@iki.fi>
10656 L:      linux-media@vger.kernel.org
10657 W:      http://linuxtv.org/
10658 W:      http://palosaari.fi/linux/
10659 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10660 T:      git git://linuxtv.org/anttip/media_tree.git
10661 S:      Maintained
10662 F:      drivers/media/tuners/tua9001*
10663
10664 TULIP NETWORK DRIVERS
10665 M:      Grant Grundler <grundler@parisc-linux.org>
10666 L:      netdev@vger.kernel.org
10667 S:      Maintained
10668 F:      drivers/net/ethernet/dec/tulip/
10669
10670 TUN/TAP driver
10671 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
10672 W:      http://vtun.sourceforge.net/tun
10673 S:      Maintained
10674 F:      Documentation/networking/tuntap.txt
10675 F:      arch/um/os-Linux/drivers/
10676
10677 TURBOCHANNEL SUBSYSTEM
10678 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
10679 M:      Ralf Baechle <ralf@linux-mips.org>
10680 L:      linux-mips@linux-mips.org
10681 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
10682 S:      Maintained
10683 F:      drivers/tc/
10684 F:      include/linux/tc.h
10685
10686 U14-34F SCSI DRIVER
10687 M:      Dario Ballabio <ballabio_dario@emc.com>
10688 L:      linux-scsi@vger.kernel.org
10689 S:      Maintained
10690 F:      drivers/scsi/u14-34f.c
10691
10692 UBI FILE SYSTEM (UBIFS)
10693 M:      Artem Bityutskiy <dedekind1@gmail.com>
10694 M:      Adrian Hunter <adrian.hunter@intel.com>
10695 L:      linux-mtd@lists.infradead.org
10696 T:      git git://git.infradead.org/ubifs-2.6.git
10697 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
10698 S:      Maintained
10699 F:      Documentation/filesystems/ubifs.txt
10700 F:      fs/ubifs/
10701
10702 UCLINUX (M68KNOMMU AND COLDFIRE)
10703 M:      Greg Ungerer <gerg@uclinux.org>
10704 W:      http://www.uclinux.org/
10705 L:      linux-m68k@lists.linux-m68k.org
10706 L:      uclinux-dev@uclinux.org  (subscribers-only)
10707 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
10708 S:      Maintained
10709 F:      arch/m68k/coldfire/
10710 F:      arch/m68k/68*/
10711 F:      arch/m68k/*/*_no.*
10712 F:      arch/m68k/include/asm/*_no.*
10713
10714 UDF FILESYSTEM
10715 M:      Jan Kara <jack@suse.com>
10716 S:      Maintained
10717 F:      Documentation/filesystems/udf.txt
10718 F:      fs/udf/
10719
10720 UFS FILESYSTEM
10721 M:      Evgeniy Dushistov <dushistov@mail.ru>
10722 S:      Maintained
10723 F:      Documentation/filesystems/ufs.txt
10724 F:      fs/ufs/
10725
10726 UHID USERSPACE HID IO DRIVER:
10727 M:      David Herrmann <dh.herrmann@googlemail.com>
10728 L:      linux-input@vger.kernel.org
10729 S:      Maintained
10730 F:      drivers/hid/uhid.c
10731 F:      include/uapi/linux/uhid.h
10732
10733 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
10734 L:      linux-usb@vger.kernel.org
10735 S:      Orphan
10736 F:      drivers/uwb/
10737 F:      include/linux/uwb.h
10738 F:      include/linux/uwb/
10739
10740 UNICORE32 ARCHITECTURE:
10741 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
10742 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
10743 S:      Maintained
10744 T:      git git://github.com/gxt/linux.git
10745 F:      arch/unicore32/
10746
10747 UNIFDEF
10748 M:      Tony Finch <dot@dotat.at>
10749 W:      http://dotat.at/prog/unifdef
10750 S:      Maintained
10751 F:      scripts/unifdef.c
10752
10753 UNIFORM CDROM DRIVER
10754 M:      Jens Axboe <axboe@kernel.dk>
10755 W:      http://www.kernel.dk
10756 S:      Maintained
10757 F:      Documentation/cdrom/
10758 F:      drivers/cdrom/cdrom.c
10759 F:      include/linux/cdrom.h
10760 F:      include/uapi/linux/cdrom.h
10761
10762 UNISYS S-PAR DRIVERS
10763 M:      Benjamin Romer <benjamin.romer@unisys.com>
10764 M:      David Kershner <david.kershner@unisys.com>
10765 L:      sparmaintainer@unisys.com (Unisys internal)
10766 S:      Supported
10767 F:      drivers/staging/unisys/
10768
10769 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
10770 M:      Vinayak Holikatti <vinholikatti@gmail.com>
10771 L:      linux-scsi@vger.kernel.org
10772 S:      Supported
10773 F:      Documentation/scsi/ufs.txt
10774 F:      drivers/scsi/ufs/
10775
10776 UNSORTED BLOCK IMAGES (UBI)
10777 M:      Artem Bityutskiy <dedekind1@gmail.com>
10778 M:      Richard Weinberger <richard@nod.at>
10779 W:      http://www.linux-mtd.infradead.org/
10780 L:      linux-mtd@lists.infradead.org
10781 T:      git git://git.infradead.org/ubifs-2.6.git
10782 S:      Supported
10783 F:      drivers/mtd/ubi/
10784 F:      include/linux/mtd/ubi.h
10785 F:      include/uapi/mtd/ubi-user.h
10786
10787 USB ACM DRIVER
10788 M:      Oliver Neukum <oliver@neukum.org>
10789 L:      linux-usb@vger.kernel.org
10790 S:      Maintained
10791 F:      Documentation/usb/acm.txt
10792 F:      drivers/usb/class/cdc-acm.*
10793
10794 USB AR5523 WIRELESS DRIVER
10795 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
10796 L:      linux-wireless@vger.kernel.org
10797 S:      Maintained
10798 F:      drivers/net/wireless/ath/ar5523/
10799
10800 USB ATTACHED SCSI
10801 M:      Hans de Goede <hdegoede@redhat.com>
10802 M:      Gerd Hoffmann <kraxel@redhat.com>
10803 L:      linux-usb@vger.kernel.org
10804 L:      linux-scsi@vger.kernel.org
10805 S:      Maintained
10806 F:      drivers/usb/storage/uas.c
10807
10808 USB CDC ETHERNET DRIVER
10809 M:      Oliver Neukum <oliver@neukum.org>
10810 L:      linux-usb@vger.kernel.org
10811 S:      Maintained
10812 F:      drivers/net/usb/cdc_*.c
10813 F:      include/uapi/linux/usb/cdc.h
10814
10815 USB CHAOSKEY DRIVER
10816 M:      Keith Packard <keithp@keithp.com>
10817 L:      linux-usb@vger.kernel.org
10818 S:      Maintained
10819 F:      drivers/usb/misc/chaoskey.c
10820
10821 USB CYPRESS C67X00 DRIVER
10822 M:      Peter Korsgaard <jacmet@sunsite.dk>
10823 L:      linux-usb@vger.kernel.org
10824 S:      Maintained
10825 F:      drivers/usb/c67x00/
10826
10827 USB DAVICOM DM9601 DRIVER
10828 M:      Peter Korsgaard <jacmet@sunsite.dk>
10829 L:      netdev@vger.kernel.org
10830 W:      http://www.linux-usb.org/usbnet
10831 S:      Maintained
10832 F:      drivers/net/usb/dm9601.c
10833
10834 USB DIAMOND RIO500 DRIVER
10835 M:      Cesar Miquel <miquel@df.uba.ar>
10836 L:      rio500-users@lists.sourceforge.net
10837 W:      http://rio500.sourceforge.net
10838 S:      Maintained
10839 F:      drivers/usb/misc/rio500*
10840
10841 USB EHCI DRIVER
10842 M:      Alan Stern <stern@rowland.harvard.edu>
10843 L:      linux-usb@vger.kernel.org
10844 S:      Maintained
10845 F:      Documentation/usb/ehci.txt
10846 F:      drivers/usb/host/ehci*
10847
10848 USB GADGET/PERIPHERAL SUBSYSTEM
10849 M:      Felipe Balbi <balbi@ti.com>
10850 L:      linux-usb@vger.kernel.org
10851 W:      http://www.linux-usb.org/gadget
10852 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
10853 S:      Maintained
10854 F:      drivers/usb/gadget/
10855 F:      include/linux/usb/gadget*
10856
10857 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
10858 M:      Jiri Kosina <jikos@kernel.org>
10859 L:      linux-usb@vger.kernel.org
10860 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
10861 S:      Maintained
10862 F:      Documentation/hid/hiddev.txt
10863 F:      drivers/hid/usbhid/
10864
10865 USB ISP116X DRIVER
10866 M:      Olav Kongas <ok@artecdesign.ee>
10867 L:      linux-usb@vger.kernel.org
10868 S:      Maintained
10869 F:      drivers/usb/host/isp116x*
10870 F:      include/linux/usb/isp116x.h
10871
10872 USB MASS STORAGE DRIVER
10873 M:      Matthew Dharm <mdharm-usb@one-eyed-alien.net>
10874 L:      linux-usb@vger.kernel.org
10875 L:      usb-storage@lists.one-eyed-alien.net
10876 S:      Maintained
10877 W:      http://www.one-eyed-alien.net/~mdharm/linux-usb/
10878 F:      drivers/usb/storage/
10879
10880 USB MIDI DRIVER
10881 M:      Clemens Ladisch <clemens@ladisch.de>
10882 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10883 T:      git git://git.alsa-project.org/alsa-kernel.git
10884 S:      Maintained
10885 F:      sound/usb/midi.*
10886
10887 USB NETWORKING DRIVERS
10888 L:      linux-usb@vger.kernel.org
10889 S:      Odd Fixes
10890 F:      drivers/net/usb/
10891
10892 USB OHCI DRIVER
10893 M:      Alan Stern <stern@rowland.harvard.edu>
10894 L:      linux-usb@vger.kernel.org
10895 S:      Maintained
10896 F:      Documentation/usb/ohci.txt
10897 F:      drivers/usb/host/ohci*
10898
10899 USB OTG FSM (Finite State Machine)
10900 M:      Peter Chen <Peter.Chen@freescale.com>
10901 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
10902 L:      linux-usb@vger.kernel.org
10903 S:      Maintained
10904 F:      drivers/usb/common/usb-otg-fsm.c
10905
10906 USB OVER IP DRIVER
10907 M:      Valentina Manea <valentina.manea.m@gmail.com>
10908 M:      Shuah Khan <shuah.kh@samsung.com>
10909 L:      linux-usb@vger.kernel.org
10910 S:      Maintained
10911 F:      drivers/usb/usbip/
10912 F:      tools/usb/usbip/
10913
10914 USB PEGASUS DRIVER
10915 M:      Petko Manolov <petkan@nucleusys.com>
10916 L:      linux-usb@vger.kernel.org
10917 L:      netdev@vger.kernel.org
10918 T:      git git://github.com/petkan/pegasus.git
10919 W:      https://github.com/petkan/pegasus
10920 S:      Maintained
10921 F:      drivers/net/usb/pegasus.*
10922
10923 USB PHY LAYER
10924 M:      Felipe Balbi <balbi@ti.com>
10925 L:      linux-usb@vger.kernel.org
10926 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
10927 S:      Maintained
10928 F:      drivers/usb/phy/
10929
10930 USB PRINTER DRIVER (usblp)
10931 M:      Pete Zaitcev <zaitcev@redhat.com>
10932 L:      linux-usb@vger.kernel.org
10933 S:      Supported
10934 F:      drivers/usb/class/usblp.c
10935
10936 USB RTL8150 DRIVER
10937 M:      Petko Manolov <petkan@nucleusys.com>
10938 L:      linux-usb@vger.kernel.org
10939 L:      netdev@vger.kernel.org
10940 T:      git git://github.com/petkan/rtl8150.git
10941 W:      https://github.com/petkan/rtl8150
10942 S:      Maintained
10943 F:      drivers/net/usb/rtl8150.c
10944
10945 USB SERIAL SUBSYSTEM
10946 M:      Johan Hovold <johan@kernel.org>
10947 L:      linux-usb@vger.kernel.org
10948 S:      Maintained
10949 F:      Documentation/usb/usb-serial.txt
10950 F:      drivers/usb/serial/
10951 F:      include/linux/usb/serial.h
10952
10953 USB SMSC75XX ETHERNET DRIVER
10954 M:      Steve Glendinning <steve.glendinning@shawell.net>
10955 L:      netdev@vger.kernel.org
10956 S:      Maintained
10957 F:      drivers/net/usb/smsc75xx.*
10958
10959 USB SMSC95XX ETHERNET DRIVER
10960 M:      Steve Glendinning <steve.glendinning@shawell.net>
10961 L:      netdev@vger.kernel.org
10962 S:      Maintained
10963 F:      drivers/net/usb/smsc95xx.*
10964
10965 USB SUBSYSTEM
10966 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10967 L:      linux-usb@vger.kernel.org
10968 W:      http://www.linux-usb.org
10969 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
10970 S:      Supported
10971 F:      Documentation/usb/
10972 F:      drivers/usb/
10973 F:      include/linux/usb.h
10974 F:      include/linux/usb/
10975
10976 USB UHCI DRIVER
10977 M:      Alan Stern <stern@rowland.harvard.edu>
10978 L:      linux-usb@vger.kernel.org
10979 S:      Maintained
10980 F:      drivers/usb/host/uhci*
10981
10982 USB "USBNET" DRIVER FRAMEWORK
10983 M:      Oliver Neukum <oneukum@suse.com>
10984 L:      netdev@vger.kernel.org
10985 W:      http://www.linux-usb.org/usbnet
10986 S:      Maintained
10987 F:      drivers/net/usb/usbnet.c
10988 F:      include/linux/usb/usbnet.h
10989
10990 USB VIDEO CLASS
10991 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10992 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
10993 L:      linux-media@vger.kernel.org
10994 T:      git git://linuxtv.org/media_tree.git
10995 W:      http://www.ideasonboard.org/uvc/
10996 S:      Maintained
10997 F:      drivers/media/usb/uvc/
10998 F:      include/uapi/linux/uvcvideo.h
10999
11000 USB VISION DRIVER
11001 M:      Hans Verkuil <hverkuil@xs4all.nl>
11002 L:      linux-media@vger.kernel.org
11003 T:      git git://linuxtv.org/media_tree.git
11004 W:      http://linuxtv.org
11005 S:      Odd Fixes
11006 F:      drivers/media/usb/usbvision/
11007
11008 USB WEBCAM GADGET
11009 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11010 L:      linux-usb@vger.kernel.org
11011 S:      Maintained
11012 F:      drivers/usb/gadget/function/*uvc*
11013 F:      drivers/usb/gadget/legacy/webcam.c
11014
11015 USB WIRELESS RNDIS DRIVER (rndis_wlan)
11016 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
11017 L:      linux-wireless@vger.kernel.org
11018 S:      Maintained
11019 F:      drivers/net/wireless/rndis_wlan.c
11020
11021 USB XHCI DRIVER
11022 M:      Mathias Nyman <mathias.nyman@intel.com>
11023 L:      linux-usb@vger.kernel.org
11024 S:      Supported
11025 F:      drivers/usb/host/xhci*
11026 F:      drivers/usb/host/pci-quirks*
11027
11028 USB ZD1201 DRIVER
11029 L:      linux-wireless@vger.kernel.org
11030 W:      http://linux-lc100020.sourceforge.net
11031 S:      Orphan
11032 F:      drivers/net/wireless/zd1201.*
11033
11034 USB ZR364XX DRIVER
11035 M:      Antoine Jacquet <royale@zerezo.com>
11036 L:      linux-usb@vger.kernel.org
11037 L:      linux-media@vger.kernel.org
11038 T:      git git://linuxtv.org/media_tree.git
11039 W:      http://royale.zerezo.com/zr364xx/
11040 S:      Maintained
11041 F:      Documentation/video4linux/zr364xx.txt
11042 F:      drivers/media/usb/zr364xx/
11043
11044 ULPI BUS
11045 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
11046 L:      linux-usb@vger.kernel.org
11047 S:      Maintained
11048 F:      drivers/usb/common/ulpi.c
11049 F:      include/linux/ulpi/
11050
11051 USER-MODE LINUX (UML)
11052 M:      Jeff Dike <jdike@addtoit.com>
11053 M:      Richard Weinberger <richard@nod.at>
11054 L:      user-mode-linux-devel@lists.sourceforge.net
11055 L:      user-mode-linux-user@lists.sourceforge.net
11056 W:      http://user-mode-linux.sourceforge.net
11057 S:      Maintained
11058 F:      Documentation/virtual/uml/
11059 F:      arch/um/
11060 F:      arch/x86/um/
11061 F:      fs/hostfs/
11062 F:      fs/hppfs/
11063
11064 USERSPACE I/O (UIO)
11065 M:      "Hans J. Koch" <hjk@hansjkoch.de>
11066 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11067 S:      Maintained
11068 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
11069 F:      Documentation/DocBook/uio-howto.tmpl
11070 F:      drivers/uio/
11071 F:      include/linux/uio*.h
11072
11073 UTIL-LINUX PACKAGE
11074 M:      Karel Zak <kzak@redhat.com>
11075 L:      util-linux@vger.kernel.org
11076 W:      http://en.wikipedia.org/wiki/Util-linux
11077 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
11078 S:      Maintained
11079
11080 UVESAFB DRIVER
11081 M:      Michal Januszewski <spock@gentoo.org>
11082 L:      linux-fbdev@vger.kernel.org
11083 W:      http://dev.gentoo.org/~spock/projects/uvesafb/
11084 S:      Maintained
11085 F:      Documentation/fb/uvesafb.txt
11086 F:      drivers/video/fbdev/uvesafb.*
11087
11088 VFAT/FAT/MSDOS FILESYSTEM
11089 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
11090 S:      Maintained
11091 F:      Documentation/filesystems/vfat.txt
11092 F:      fs/fat/
11093
11094 VFIO DRIVER
11095 M:      Alex Williamson <alex.williamson@redhat.com>
11096 L:      kvm@vger.kernel.org
11097 S:      Maintained
11098 F:      Documentation/vfio.txt
11099 F:      drivers/vfio/
11100 F:      include/linux/vfio.h
11101 F:      include/uapi/linux/vfio.h
11102
11103 VFIO PLATFORM DRIVER
11104 M:      Baptiste Reynal <b.reynal@virtualopensystems.com>
11105 L:      kvm@vger.kernel.org
11106 S:      Maintained
11107 F:      drivers/vfio/platform/
11108
11109 VIDEOBUF2 FRAMEWORK
11110 M:      Pawel Osciak <pawel@osciak.com>
11111 M:      Marek Szyprowski <m.szyprowski@samsung.com>
11112 M:      Kyungmin Park <kyungmin.park@samsung.com>
11113 L:      linux-media@vger.kernel.org
11114 S:      Maintained
11115 F:      drivers/media/v4l2-core/videobuf2-*
11116 F:      include/media/videobuf2-*
11117
11118 VIRTIO CONSOLE DRIVER
11119 M:      Amit Shah <amit.shah@redhat.com>
11120 L:      virtualization@lists.linux-foundation.org
11121 S:      Maintained
11122 F:      drivers/char/virtio_console.c
11123 F:      include/linux/virtio_console.h
11124 F:      include/uapi/linux/virtio_console.h
11125
11126 VIRTIO CORE, NET AND BLOCK DRIVERS
11127 M:      "Michael S. Tsirkin" <mst@redhat.com>
11128 L:      virtualization@lists.linux-foundation.org
11129 S:      Maintained
11130 F:      drivers/virtio/
11131 F:      tools/virtio/
11132 F:      drivers/net/virtio_net.c
11133 F:      drivers/block/virtio_blk.c
11134 F:      include/linux/virtio_*.h
11135 F:      include/uapi/linux/virtio_*.h
11136
11137 VIRTIO DRIVERS FOR S390
11138 M:      Christian Borntraeger <borntraeger@de.ibm.com>
11139 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
11140 L:      linux-s390@vger.kernel.org
11141 L:      virtualization@lists.linux-foundation.org
11142 L:      kvm@vger.kernel.org
11143 S:      Supported
11144 F:      drivers/s390/virtio/
11145
11146 VIRTIO GPU DRIVER
11147 M:      David Airlie <airlied@linux.ie>
11148 M:      Gerd Hoffmann <kraxel@redhat.com>
11149 L:      dri-devel@lists.freedesktop.org
11150 L:      virtualization@lists.linux-foundation.org
11151 S:      Maintained
11152 F:      drivers/gpu/drm/virtio/
11153 F:      include/uapi/linux/virtio_gpu.h
11154
11155 VIRTIO HOST (VHOST)
11156 M:      "Michael S. Tsirkin" <mst@redhat.com>
11157 L:      kvm@vger.kernel.org
11158 L:      virtualization@lists.linux-foundation.org
11159 L:      netdev@vger.kernel.org
11160 S:      Maintained
11161 F:      drivers/vhost/
11162 F:      include/uapi/linux/vhost.h
11163
11164 VIRTIO INPUT DRIVER
11165 M:      Gerd Hoffmann <kraxel@redhat.com>
11166 S:      Maintained
11167 F:      drivers/virtio/virtio_input.c
11168 F:      include/uapi/linux/virtio_input.h
11169
11170 VIA RHINE NETWORK DRIVER
11171 S:      Orphan
11172 F:      drivers/net/ethernet/via/via-rhine.c
11173
11174 VIA SD/MMC CARD CONTROLLER DRIVER
11175 M:      Bruce Chang <brucechang@via.com.tw>
11176 M:      Harald Welte <HaraldWelte@viatech.com>
11177 S:      Maintained
11178 F:      drivers/mmc/host/via-sdmmc.c
11179
11180 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
11181 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
11182 L:      linux-fbdev@vger.kernel.org
11183 S:      Maintained
11184 F:      include/linux/via-core.h
11185 F:      include/linux/via-gpio.h
11186 F:      include/linux/via_i2c.h
11187 F:      drivers/video/fbdev/via/
11188
11189 VIA VELOCITY NETWORK DRIVER
11190 M:      Francois Romieu <romieu@fr.zoreil.com>
11191 L:      netdev@vger.kernel.org
11192 S:      Maintained
11193 F:      drivers/net/ethernet/via/via-velocity.*
11194
11195 VIVID VIRTUAL VIDEO DRIVER
11196 M:      Hans Verkuil <hverkuil@xs4all.nl>
11197 L:      linux-media@vger.kernel.org
11198 T:      git git://linuxtv.org/media_tree.git
11199 W:      http://linuxtv.org
11200 S:      Maintained
11201 F:      drivers/media/platform/vivid/*
11202
11203 VLAN (802.1Q)
11204 M:      Patrick McHardy <kaber@trash.net>
11205 L:      netdev@vger.kernel.org
11206 S:      Maintained
11207 F:      drivers/net/macvlan.c
11208 F:      include/linux/if_*vlan.h
11209 F:      net/8021q/
11210
11211 VLYNQ BUS
11212 M:      Florian Fainelli <florian@openwrt.org>
11213 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
11214 S:      Maintained
11215 F:      drivers/vlynq/vlynq.c
11216 F:      include/linux/vlynq.h
11217
11218 VME SUBSYSTEM
11219 M:      Martyn Welch <martyn@welchs.me.uk>
11220 M:      Manohar Vanga <manohar.vanga@gmail.com>
11221 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11222 L:      devel@driverdev.osuosl.org
11223 S:      Maintained
11224 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
11225 F:      Documentation/vme_api.txt
11226 F:      drivers/staging/vme/
11227 F:      drivers/vme/
11228 F:      include/linux/vme*
11229
11230 VMWARE HYPERVISOR INTERFACE
11231 M:      Alok Kataria <akataria@vmware.com>
11232 L:      virtualization@lists.linux-foundation.org
11233 S:      Supported
11234 F:      arch/x86/kernel/cpu/vmware.c
11235
11236 VMWARE BALLOON DRIVER
11237 M:      Xavier Deguillard <xdeguillard@vmware.com>
11238 M:      Philip Moltmann <moltmann@vmware.com>
11239 M:      "VMware, Inc." <pv-drivers@vmware.com>
11240 L:      linux-kernel@vger.kernel.org
11241 S:      Maintained
11242 F:      drivers/misc/vmw_balloon.c
11243
11244 VMWARE VMMOUSE SUBDRIVER
11245 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
11246 M:      "VMware, Inc." <pv-drivers@vmware.com>
11247 L:      linux-input@vger.kernel.org
11248 S:      Maintained
11249 F:      drivers/input/mouse/vmmouse.c
11250 F:      drivers/input/mouse/vmmouse.h
11251
11252 VMWARE VMXNET3 ETHERNET DRIVER
11253 M:      Shrikrishna Khare <skhare@vmware.com>
11254 M:      "VMware, Inc." <pv-drivers@vmware.com>
11255 L:      netdev@vger.kernel.org
11256 S:      Maintained
11257 F:      drivers/net/vmxnet3/
11258
11259 VMware PVSCSI driver
11260 M:      Arvind Kumar <arvindkumar@vmware.com>
11261 M:      VMware PV-Drivers <pv-drivers@vmware.com>
11262 L:      linux-scsi@vger.kernel.org
11263 S:      Maintained
11264 F:      drivers/scsi/vmw_pvscsi.c
11265 F:      drivers/scsi/vmw_pvscsi.h
11266
11267 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
11268 M:      Liam Girdwood <lgirdwood@gmail.com>
11269 M:      Mark Brown <broonie@kernel.org>
11270 L:      linux-kernel@vger.kernel.org
11271 W:      http://www.slimlogic.co.uk/?p=48
11272 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
11273 S:      Supported
11274 F:      drivers/regulator/
11275 F:      include/linux/regulator/
11276
11277 VRF
11278 M:      David Ahern <dsa@cumulusnetworks.com>
11279 M:      Shrijeet Mukherjee <shm@cumulusnetworks.com>
11280 L:      netdev@vger.kernel.org
11281 S:      Maintained
11282 F:      drivers/net/vrf.c
11283 F:      include/net/vrf.h
11284 F:      Documentation/networking/vrf.txt
11285
11286 VT1211 HARDWARE MONITOR DRIVER
11287 M:      Juerg Haefliger <juergh@gmail.com>
11288 L:      lm-sensors@lm-sensors.org
11289 S:      Maintained
11290 F:      Documentation/hwmon/vt1211
11291 F:      drivers/hwmon/vt1211.c
11292
11293 VT8231 HARDWARE MONITOR DRIVER
11294 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
11295 L:      lm-sensors@lm-sensors.org
11296 S:      Maintained
11297 F:      drivers/hwmon/vt8231.c
11298
11299 VUB300 USB to SDIO/SD/MMC bridge chip
11300 M:      Tony Olech <tony.olech@elandigitalsystems.com>
11301 L:      linux-mmc@vger.kernel.org
11302 L:      linux-usb@vger.kernel.org
11303 S:      Supported
11304 F:      drivers/mmc/host/vub300.c
11305
11306 W1 DALLAS'S 1-WIRE BUS
11307 M:      Evgeniy Polyakov <zbr@ioremap.net>
11308 S:      Maintained
11309 F:      Documentation/w1/
11310 F:      drivers/w1/
11311
11312 W83791D HARDWARE MONITORING DRIVER
11313 M:      Marc Hulsman <m.hulsman@tudelft.nl>
11314 L:      lm-sensors@lm-sensors.org
11315 S:      Maintained
11316 F:      Documentation/hwmon/w83791d
11317 F:      drivers/hwmon/w83791d.c
11318
11319 W83793 HARDWARE MONITORING DRIVER
11320 M:      Rudolf Marek <r.marek@assembler.cz>
11321 L:      lm-sensors@lm-sensors.org
11322 S:      Maintained
11323 F:      Documentation/hwmon/w83793
11324 F:      drivers/hwmon/w83793.c
11325
11326 W83795 HARDWARE MONITORING DRIVER
11327 M:      Jean Delvare <jdelvare@suse.com>
11328 L:      lm-sensors@lm-sensors.org
11329 S:      Maintained
11330 F:      drivers/hwmon/w83795.c
11331
11332 W83L51xD SD/MMC CARD INTERFACE DRIVER
11333 M:      Pierre Ossman <pierre@ossman.eu>
11334 S:      Maintained
11335 F:      drivers/mmc/host/wbsd.*
11336
11337 WACOM PROTOCOL 4 SERIAL TABLETS
11338 M:      Julian Squires <julian@cipht.net>
11339 M:      Hans de Goede <hdegoede@redhat.com>
11340 L:      linux-input@vger.kernel.org
11341 S:      Maintained
11342 F:      drivers/input/tablet/wacom_serial4.c
11343
11344 WATCHDOG DEVICE DRIVERS
11345 M:      Wim Van Sebroeck <wim@iguana.be>
11346 L:      linux-watchdog@vger.kernel.org
11347 W:      http://www.linux-watchdog.org/
11348 T:      git git://www.linux-watchdog.org/linux-watchdog.git
11349 S:      Maintained
11350 F:      Documentation/watchdog/
11351 F:      drivers/watchdog/
11352 F:      include/linux/watchdog.h
11353 F:      include/uapi/linux/watchdog.h
11354
11355 WD7000 SCSI DRIVER
11356 M:      Miroslav Zagorac <zaga@fly.cc.fer.hr>
11357 L:      linux-scsi@vger.kernel.org
11358 S:      Maintained
11359 F:      drivers/scsi/wd7000.c
11360
11361 WIIMOTE HID DRIVER
11362 M:      David Herrmann <dh.herrmann@googlemail.com>
11363 L:      linux-input@vger.kernel.org
11364 S:      Maintained
11365 F:      drivers/hid/hid-wiimote*
11366
11367 WINBOND CIR DRIVER
11368 M:      David Härdeman <david@hardeman.nu>
11369 S:      Maintained
11370 F:      drivers/media/rc/winbond-cir.c
11371
11372 WIMAX STACK
11373 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
11374 M:      linux-wimax@intel.com
11375 L:      wimax@linuxwimax.org (subscribers-only)
11376 S:      Supported
11377 W:      http://linuxwimax.org
11378 F:      Documentation/wimax/README.wimax
11379 F:      include/linux/wimax/debug.h
11380 F:      include/net/wimax.h
11381 F:      include/uapi/linux/wimax.h
11382 F:      net/wimax/
11383
11384 WISTRON LAPTOP BUTTON DRIVER
11385 M:      Miloslav Trmac <mitr@volny.cz>
11386 S:      Maintained
11387 F:      drivers/input/misc/wistron_btns.c
11388
11389 WL3501 WIRELESS PCMCIA CARD DRIVER
11390 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
11391 L:      linux-wireless@vger.kernel.org
11392 W:      http://oops.ghostprotocols.net:81/blog
11393 S:      Maintained
11394 F:      drivers/net/wireless/wl3501*
11395
11396 WM97XX TOUCHSCREEN DRIVERS
11397 M:      Mark Brown <broonie@kernel.org>
11398 M:      Liam Girdwood <lrg@slimlogic.co.uk>
11399 L:      linux-input@vger.kernel.org
11400 W:      https://github.com/CirrusLogic/linux-drivers/wiki
11401 S:      Supported
11402 F:      drivers/input/touchscreen/*wm97*
11403 F:      include/linux/wm97xx.h
11404
11405 WOLFSON MICROELECTRONICS DRIVERS
11406 L:      patches@opensource.wolfsonmicro.com
11407 T:      git https://github.com/CirrusLogic/linux-drivers.git
11408 W:      https://github.com/CirrusLogic/linux-drivers/wiki
11409 S:      Supported
11410 F:      Documentation/hwmon/wm83??
11411 F:      arch/arm/mach-s3c64xx/mach-crag6410*
11412 F:      drivers/clk/clk-wm83*.c
11413 F:      drivers/extcon/extcon-arizona.c
11414 F:      drivers/leds/leds-wm83*.c
11415 F:      drivers/gpio/gpio-*wm*.c
11416 F:      drivers/gpio/gpio-arizona.c
11417 F:      drivers/hwmon/wm83??-hwmon.c
11418 F:      drivers/input/misc/wm831x-on.c
11419 F:      drivers/input/touchscreen/wm831x-ts.c
11420 F:      drivers/input/touchscreen/wm97*.c
11421 F:      drivers/mfd/arizona*
11422 F:      drivers/mfd/wm*.c
11423 F:      drivers/power/wm83*.c
11424 F:      drivers/rtc/rtc-wm83*.c
11425 F:      drivers/regulator/wm8*.c
11426 F:      drivers/video/backlight/wm83*_bl.c
11427 F:      drivers/watchdog/wm83*_wdt.c
11428 F:      include/linux/mfd/arizona/
11429 F:      include/linux/mfd/wm831x/
11430 F:      include/linux/mfd/wm8350/
11431 F:      include/linux/mfd/wm8400*
11432 F:      include/linux/wm97xx.h
11433 F:      include/sound/wm????.h
11434 F:      sound/soc/codecs/arizona.?
11435 F:      sound/soc/codecs/wm*
11436
11437 WORKQUEUE
11438 M:      Tejun Heo <tj@kernel.org>
11439 R:      Lai Jiangshan <jiangshanlai@gmail.com>
11440 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
11441 S:      Maintained
11442 F:      include/linux/workqueue.h
11443 F:      kernel/workqueue.c
11444 F:      Documentation/workqueue.txt
11445
11446 X.25 NETWORK LAYER
11447 M:      Andrew Hendry <andrew.hendry@gmail.com>
11448 L:      linux-x25@vger.kernel.org
11449 S:      Odd Fixes
11450 F:      Documentation/networking/x25*
11451 F:      include/net/x25*
11452 F:      net/x25/
11453
11454 X86 ARCHITECTURE (32-BIT AND 64-BIT)
11455 M:      Thomas Gleixner <tglx@linutronix.de>
11456 M:      Ingo Molnar <mingo@redhat.com>
11457 M:      "H. Peter Anvin" <hpa@zytor.com>
11458 M:      x86@kernel.org
11459 L:      linux-kernel@vger.kernel.org
11460 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
11461 S:      Maintained
11462 F:      Documentation/x86/
11463 F:      arch/x86/
11464
11465 X86 PLATFORM DRIVERS
11466 M:      Darren Hart <dvhart@infradead.org>
11467 L:      platform-driver-x86@vger.kernel.org
11468 T:      git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git
11469 S:      Maintained
11470 F:      drivers/platform/x86/
11471
11472 X86 MCE INFRASTRUCTURE
11473 M:      Tony Luck <tony.luck@intel.com>
11474 M:      Borislav Petkov <bp@alien8.de>
11475 L:      linux-edac@vger.kernel.org
11476 S:      Maintained
11477 F:      arch/x86/kernel/cpu/mcheck/*
11478
11479 X86 VDSO
11480 M:      Andy Lutomirski <luto@amacapital.net>
11481 L:      linux-kernel@vger.kernel.org
11482 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
11483 S:      Maintained
11484 F:      arch/x86/entry/vdso/
11485
11486 XC2028/3028 TUNER DRIVER
11487 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
11488 L:      linux-media@vger.kernel.org
11489 W:      http://linuxtv.org
11490 T:      git git://linuxtv.org/media_tree.git
11491 S:      Maintained
11492 F:      drivers/media/tuners/tuner-xc2028.*
11493
11494 XEN HYPERVISOR INTERFACE
11495 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11496 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
11497 M:      David Vrabel <david.vrabel@citrix.com>
11498 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11499 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
11500 S:      Supported
11501 F:      arch/x86/xen/
11502 F:      drivers/*/xen-*front.c
11503 F:      drivers/xen/
11504 F:      arch/x86/include/asm/xen/
11505 F:      include/xen/
11506 F:      include/uapi/xen/
11507
11508 XEN HYPERVISOR ARM
11509 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
11510 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11511 S:      Supported
11512 F:      arch/arm/xen/
11513 F:      arch/arm/include/asm/xen/
11514
11515 XEN HYPERVISOR ARM64
11516 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
11517 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11518 S:      Supported
11519 F:      arch/arm64/xen/
11520 F:      arch/arm64/include/asm/xen/
11521
11522 XEN NETWORK BACKEND DRIVER
11523 M:      Ian Campbell <ian.campbell@citrix.com>
11524 M:      Wei Liu <wei.liu2@citrix.com>
11525 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11526 L:      netdev@vger.kernel.org
11527 S:      Supported
11528 F:      drivers/net/xen-netback/*
11529
11530 XEN PCI SUBSYSTEM
11531 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11532 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11533 S:      Supported
11534 F:      arch/x86/pci/*xen*
11535 F:      drivers/pci/*xen*
11536
11537 XEN BLOCK SUBSYSTEM
11538 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11539 M:      Roger Pau MonnĂ© <roger.pau@citrix.com>
11540 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11541 S:      Supported
11542 F:      drivers/block/xen-blkback/*
11543 F:      drivers/block/xen*
11544
11545 XEN PVSCSI DRIVERS
11546 M:      Juergen Gross <jgross@suse.com>
11547 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11548 L:      linux-scsi@vger.kernel.org
11549 S:      Supported
11550 F:      drivers/scsi/xen-scsifront.c
11551 F:      drivers/xen/xen-scsiback.c
11552 F:      include/xen/interface/io/vscsiif.h
11553
11554 XEN SWIOTLB SUBSYSTEM
11555 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11556 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11557 S:      Supported
11558 F:      arch/x86/xen/*swiotlb*
11559 F:      drivers/xen/*swiotlb*
11560
11561 XFS FILESYSTEM
11562 P:      Silicon Graphics Inc
11563 M:      Dave Chinner <david@fromorbit.com>
11564 M:      xfs@oss.sgi.com
11565 L:      xfs@oss.sgi.com
11566 W:      http://oss.sgi.com/projects/xfs
11567 T:      git git://oss.sgi.com/xfs/xfs.git
11568 S:      Supported
11569 F:      Documentation/filesystems/xfs.txt
11570 F:      fs/xfs/
11571
11572 XILINX AXI ETHERNET DRIVER
11573 M:      Anirudha Sarangi <anirudh@xilinx.com>
11574 M:      John Linn <John.Linn@xilinx.com>
11575 S:      Maintained
11576 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
11577
11578 XILINX UARTLITE SERIAL DRIVER
11579 M:      Peter Korsgaard <jacmet@sunsite.dk>
11580 L:      linux-serial@vger.kernel.org
11581 S:      Maintained
11582 F:      drivers/tty/serial/uartlite.c
11583
11584 XILINX VIDEO IP CORES
11585 M:      Hyun Kwon <hyun.kwon@xilinx.com>
11586 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11587 L:      linux-media@vger.kernel.org
11588 T:      git git://linuxtv.org/media_tree.git
11589 S:      Supported
11590 F:      Documentation/devicetree/bindings/media/xilinx/
11591 F:      drivers/media/platform/xilinx/
11592 F:      include/uapi/linux/xilinx-v4l2-controls.h
11593
11594 XILLYBUS DRIVER
11595 M:      Eli Billauer <eli.billauer@gmail.com>
11596 L:      linux-kernel@vger.kernel.org
11597 S:      Supported
11598 F:      drivers/char/xillybus/
11599
11600 XTENSA XTFPGA PLATFORM SUPPORT
11601 M:      Max Filippov <jcmvbkbc@gmail.com>
11602 L:      linux-xtensa@linux-xtensa.org
11603 S:      Maintained
11604 F:      drivers/spi/spi-xtensa-xtfpga.c
11605 F:      sound/soc/xtensa/xtfpga-i2s.c
11606
11607 YAM DRIVER FOR AX.25
11608 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
11609 L:      linux-hams@vger.kernel.org
11610 S:      Maintained
11611 F:      drivers/net/hamradio/yam*
11612 F:      include/linux/yam.h
11613
11614 YEALINK PHONE DRIVER
11615 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
11616 L:      usbb2k-api-dev@nongnu.org
11617 S:      Maintained
11618 F:      Documentation/input/yealink.txt
11619 F:      drivers/input/misc/yealink.*
11620
11621 Z8530 DRIVER FOR AX.25
11622 M:      Joerg Reuter <jreuter@yaina.de>
11623 W:      http://yaina.de/jreuter/
11624 W:      http://www.qsl.net/dl1bke/
11625 L:      linux-hams@vger.kernel.org
11626 S:      Maintained
11627 F:      Documentation/networking/z8530drv.txt
11628 F:      drivers/net/hamradio/*scc.c
11629 F:      drivers/net/hamradio/z8530.h
11630
11631 ZBUD COMPRESSED PAGE ALLOCATOR
11632 M:      Seth Jennings <sjennings@variantweb.net>
11633 L:      linux-mm@kvack.org
11634 S:      Maintained
11635 F:      mm/zbud.c
11636 F:      include/linux/zbud.h
11637
11638 ZD1211RW WIRELESS DRIVER
11639 M:      Daniel Drake <dsd@gentoo.org>
11640 M:      Ulrich Kunitz <kune@deine-taler.de>
11641 W:      http://zd1211.ath.cx/wiki/DriverRewrite
11642 L:      linux-wireless@vger.kernel.org
11643 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
11644 S:      Maintained
11645 F:      drivers/net/wireless/zd1211rw/
11646
11647 ZPOOL COMPRESSED PAGE STORAGE API
11648 M:      Dan Streetman <ddstreet@ieee.org>
11649 L:      linux-mm@kvack.org
11650 S:      Maintained
11651 F:      mm/zpool.c
11652 F:      include/linux/zpool.h
11653
11654 ZR36067 VIDEO FOR LINUX DRIVER
11655 L:      mjpeg-users@lists.sourceforge.net
11656 L:      linux-media@vger.kernel.org
11657 W:      http://mjpeg.sourceforge.net/driver-zoran/
11658 T:      hg http://linuxtv.org/hg/v4l-dvb
11659 S:      Odd Fixes
11660 F:      drivers/media/pci/zoran/
11661
11662 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
11663 M:      Minchan Kim <minchan@kernel.org>
11664 M:      Nitin Gupta <ngupta@vflare.org>
11665 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
11666 L:      linux-kernel@vger.kernel.org
11667 S:      Maintained
11668 F:      drivers/block/zram/
11669 F:      Documentation/blockdev/zram.txt
11670
11671 ZS DECSTATION Z85C30 SERIAL DRIVER
11672 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
11673 S:      Maintained
11674 F:      drivers/tty/serial/zs.*
11675
11676 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
11677 M:      Minchan Kim <minchan@kernel.org>
11678 M:      Nitin Gupta <ngupta@vflare.org>
11679 L:      linux-mm@kvack.org
11680 S:      Maintained
11681 F:      mm/zsmalloc.c
11682 F:      include/linux/zsmalloc.h
11683 F:      Documentation/vm/zsmalloc.txt
11684
11685 ZSWAP COMPRESSED SWAP CACHING
11686 M:      Seth Jennings <sjennings@variantweb.net>
11687 L:      linux-mm@kvack.org
11688 S:      Maintained
11689 F:      mm/zswap.c
11690
11691 THE REST
11692 M:      Linus Torvalds <torvalds@linux-foundation.org>
11693 L:      linux-kernel@vger.kernel.org
11694 Q:      http://patchwork.kernel.org/project/LKML/list/
11695 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
11696 S:      Buried alive in reporters
11697 F:      *
11698 F:      */